2018年3月27日 星期二

Install MariaDB + PHP + PhpMyAdmin on MacOS

注意事項:
    1. 文章內容為小編完工後憑印象撰寫,如有錯誤需自行排除
    2. 文章僅供參考

問題

某日小編想測試一下 Java Hibernate 連線 MariaDB 進行測試,順利告一個段落後,心想把 PhpMyAdmin 也安裝好方便使用,沒想到一路跌跌撞撞一堆問題,終於安裝完成特寫此篇文章以抒發心情。(謎之音:其實怕哪天又要裝寫文章記錄)

安裝 MariaDB

一開始小編不知道為什麼想去官網下載安裝包下來手動安裝,殊不知連續換三兩個版本都會在最後一步忽然告知安裝失敗,而且不寫原因... 最後安裝方式...
$ brew install mariadb
P.S. 請愛用 brew 真心好用...

安裝 PHP

在 MacOS 裡面其實有內建 apachectl 可以直接使用指令 sudo apachectl start,不過預設 PHP 沒有被引用需要手動開啟。
開啟方法如下:
  • 步驟一: vim 編輯 /etc/apache2/httpd.conf
  • 步驟二:找到 #LoadModule php5_module libexec/apache2/libphp5.so 將 # 移除
  • 步驟三:除新啟動伺服器sudo apachectl restart

安裝 PhpMyAdmin

從官網上下載最新的 PhpMyAdmin 解壓縮後放入/Library/WebServer/Documents/,之後由此開始小編遇到一連串的 Permission Denied 跟一些怪怪問題。
  • 問題一:session_start 時出現 Permission Denied (13)
解決方法:
$ echo '<? session_start(); ?>' > /Library/WebServer/Documents/session.php
使用網頁開啟http://localhost/session.php後會顯示 Denied 的路徑小編遇到的位置是 /var/tmp,將此路徑的權限更改為當前使用者即可排除。
  • 問題二:使用登入後出現 mysqli_real_connect(): (HY000/2002)
按照網路上說法好像是 MacOS 在解析 config.inc.php 中的 localhost 會判斷錯誤,因此將此檔案中的值更改為 127.0.0.1 即可排除。
指令如下:
cd /Library/WebServer/Documents/{your phpmyadmin's folder name}
cp config.sample.inc.php config.inc.php
vim config.inc.php
修改 $cfg['Servers'][$i]['host'] = 'localhost'; 的 localhost 改成 127.0.0.1

總結

破除各種麻煩後終於成功登入,這是小編從學生時代至現在第一次覺得 PhpMyAdmin 這麼難安裝,給跟小編一樣想不開在 MacOS 安裝伺服器的朋友們。

2018年3月12日 星期一

從 Log 來進行伺服器的優化

注意事項:
    1. 文章內使用的資料皆為小編自行製作的仿真資料非實際資料
    2. 建議使用 Google Chrome 進行閱讀
    3. 文章內容僅作參考使用

目錄

前言

由於一些原因存在平常的小編在工作上沒有辦法直接取得 Log,很難當下即時去看伺服器的狀況,且在面臨到伺服器基本運作,如:Asynchronous HTTP Server 、SLF4J... 等功能已經盡可能優化過後,又沒有顯著問題下,伺服器必須優化效能的問題時,小編想起了多年前學過的 Log 分析,決定將此真正的應用在伺服器的優化上,發現確實有效的找到了問題點,免於像無頭蒼蠅成天忙於找問題卻無法真正解決。
這篇文章最主要就是要講述,小編這次遇到的問題利用 Log 找到伺服器緩慢的過程與工具。

過程

如前言大概提到,小編遇到伺服器緩慢卻不知道原因的問題,所幸可以經過一些行政流程拿到伺服器的日誌。
在過程中最初會拿到一個很龐大的 Log,一份亂七八糟很多資料都沒有用的檔案,經過第一次的簡單處理,取出伺服器的收到的 Request 和回應給前端的 Response,資料大會如本篇文章所附上的 Data Set,之後通過 log2csv.py 轉換成 csv ,小編再將其放入 Hive 中利用 Impala 進行 SQL Query 來進行分析。這過程中有使用到一些技巧,如:讓 Log 中的 Request 跟 Response 可以合併成一筆計算出所運行的時間。
最後,通過資料、圖表及簡單的統計,就成功找到對於伺服器負擔最大的功能,進而找到可能造成的原因及發生的平台,甚至通過資料知道還了解到使用者的行為,找到了潛在的問題。

練習

Data Set

2016-03-17 14:26:00.044 [INFO ][Worker(3)] - 6237373 * Server has received a request on thread Worker(3) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: d8d2a5a0cfd8 && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: k00000Ja1H && user-agent: Android && x-forwarded-for: 42.77.0.69 && x-forwarded-proto: http && x-real_ip: 42.77.0.69
2016-03-17 14:26:00.054 [INFO ][Worker(3)] - 6237374 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.160 [INFO ][Worker(2)] - 6237375 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 466dbd5d3258 && connection: close && host: localhost && li: zh_TW && ui: t00000JG5C && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:00.164 [INFO ][Worker(2)] - 6237376 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.250 [INFO ][Worker(1)] - 6237377 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept-encoding: gzip && at: 466dbd5d3258 && connection: close && host: localhost && li: zh_TW && ui: t00000JG5C && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:00.257 [INFO ][Worker(8)] - 6237378 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:00.262 [INFO ][Worker(8)] - 6237379 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.304 [INFO ][Worker(1)] - 6237380 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.483 [INFO ][Worker(4)] - 6237381 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: d8d2a5a0cfd8 && connection: close && host: localhost && li: zh_TW && ui: k00000Ja1H && user-agent: Android && x-forwarded-for: 42.77.0.69 && x-forwarded-proto: http && x-real_ip: 42.77.0.69
2016-03-17 14:26:00.488 [INFO ][Worker(4)] - 6237382 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.498 [INFO ][Worker(7)] - 6237383 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 199b2cecaf2a && connection: close && host: localhost && li: zh_TW && ui: E00000XC5o && user-agent: Android && x-forwarded-for: 223.139.190.138 && x-forwarded-proto: http && x-real_ip: 223.139.190.138
2016-03-17 14:26:00.508 [INFO ][Worker(7)] - 6237384 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.540 [INFO ][Worker(5)] - 6237385 * Server has received a request on thread Worker(5) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 5efd821879e2 && connection: close && content-length: 0 && host: localhost && li: zh-TW && uat: 5efd821879e2 && ui: 700000Hj1c && user-agent: iPhone && uui: 700000Hj1c && x-forwarded-for: 1.171.167.230 && x-forwarded-proto: http && x-real_ip: 1.171.167.230
2016-03-17 14:26:00.549 [INFO ][Worker(5)] - 6237386 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.582 [INFO ][Worker(6)] - 6237387 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:00.588 [INFO ][Worker(6)] - 6237388 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.597 [INFO ][Worker(3)] - 6237389 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:00.601 [INFO ][Worker(3)] - 6237390 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.635 [INFO ][Worker(2)] - 6237391 * Server has received a request on thread Worker(2) && GET /api/v1/action/chats && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:00.636 [INFO ][Worker(8)] - 6237392 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:00.673 [INFO ][Worker(2)] - 6237393 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.742 [INFO ][Worker(1)] - 6237394 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 83f6115f9102 && connection: close && cookie: _ga=GA1.2.357338248.1516870251 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7849 && ui: j00000KG5p && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:00.745 [INFO ][Worker(4)] - 6237395 * Server has received a request on thread Worker(4) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && content-length: 190 && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:00.751 [INFO ][Worker(4)] - 6237396 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.781 [INFO ][Worker(1)] - 6237397 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.810 [INFO ][Worker(7)] - 6237398 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 616506f0c571 && connection: close && cookie: _ga=GA1.2.27660779.1517823698; _gid=GA1.2.217770643.1517823698 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8676 && ui: V000000J9B && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:00.816 [INFO ][Worker(7)] - 6237399 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.834 [INFO ][Worker(5)] - 6237400 * Server has received a request on thread Worker(5) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:00.842 [INFO ][Worker(5)] - 6237401 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.898 [INFO ][Worker(6)] - 6237402 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 369cefbf4996 && connection: close && cookie: _ga=GA1.2.816907492.1517557919; _gid=GA1.2.1129582589.1517790885 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2063 && ui: t000000OF6 && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:00.903 [INFO ][Worker(6)] - 6237403 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.913 [INFO ][Worker(3)] - 6237404 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 7a49ddd51d16 && connection: close && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=9092 && ui: D00000Je1P && user-agent: webkit && x-forwarded-for: 210.71.216.251 && x-forwarded-proto: http && x-real_ip: 210.71.216.251
2016-03-17 14:26:00.917 [INFO ][Worker(3)] - 6237405 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.944 [INFO ][Worker(8)] - 6237406 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:00.970 [INFO ][Worker(2)] - 6237407 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:00.974 [INFO ][Worker(2)] - 6237408 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.003 [INFO ][Worker(4)] - 6237409 * Server has received a request on thread Worker(4) && POST /api/v1/action/messages && accept-encoding: gzip && at: 466dbd5d3258 && connection: close && content-length: 111 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: t00000JG5C && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:01.040 [INFO ][Worker(1)] - 6237410 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a2bf1dfe5f94 && connection: close && cookie: _ga=GA1.2.890131171.1516869873; _gid=GA1.2.270262551.1517884275 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5453 && ui: 1000000JCu && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:01.040 [INFO ][Worker(4)] - 6237411 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.043 [INFO ][Worker(7)] - 6237412 * Server has received a request on thread Worker(7) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: 620074f617dc && connection: close && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:01.044 [INFO ][Worker(1)] - 6237413 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.047 [INFO ][Worker(7)] - 6237414 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.060 [INFO ][Worker(5)] - 6237415 * Server has received a request on thread Worker(5) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:01.072 [INFO ][Worker(5)] - 6237416 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.074 [INFO ][Worker(6)] - 6237417 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: d776d9b438e1 && connection: close && host: localhost && li: zh-TW && ui: 000000JH20 && user-agent: iPhone && x-forwarded-for: 223.140.185.240 && x-forwarded-proto: http && x-real_ip: 223.140.185.240
2016-03-17 14:26:01.081 [INFO ][Worker(6)] - 6237418 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.123 [INFO ][Worker(3)] - 6237419 * Server has received a request on thread Worker(3) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:01.150 [INFO ][Worker(3)] - 6237420 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.191 [INFO ][Worker(8)] - 6237421 * Server has received a request on thread Worker(8) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:01.199 [INFO ][Worker(8)] - 6237422 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.228 [INFO ][Worker(2)] - 6237423 * Server has received a request on thread Worker(2) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 7a49ddd51d16 && connection: close && content-length: 77 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=9092 && uat: 7a49ddd51d16 && ui: D00000Je1P && user-agent: webkit && uui: D00000Je1P && x-forwarded-for: 210.71.216.251 && x-forwarded-proto: http && x-real_ip: 210.71.216.251
2016-03-17 14:26:01.234 [INFO ][Worker(2)] - 6237424 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.234 [INFO ][Worker(4)] - 6237425 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: d776d9b438e1 && connection: close && host: localhost && li: zh-TW && ui: 000000JH20 && user-agent: iPhone && x-forwarded-for: 223.140.185.240 && x-forwarded-proto: http && x-real_ip: 223.140.185.240
2016-03-17 14:26:01.239 [INFO ][Worker(4)] - 6237426 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.349 [INFO ][Worker(1)] - 6237427 * Server has received a request on thread Worker(1) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:01.358 [INFO ][Worker(1)] - 6237428 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.375 [INFO ][Worker(7)] - 6237429 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: f96a9a398802 && connection: close && host: localhost && li: zh-TW && ui: W00000ENF3 && user-agent: iPhone && x-forwarded-for: 223.136.38.165 && x-forwarded-proto: http && x-real_ip: 223.136.38.165
2016-03-17 14:26:01.387 [INFO ][Worker(5)] - 6237430 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:01.389 [INFO ][Worker(6)] - 6237431 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,en-us;q=0.8,en;q=0.6 && at: 315a9b8b84b0 && connection: close && cookie: _ga=GA1.2.324018008.1500365284; _gid=GA1.2.1631175925.1517852444 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4968 && ui: f00000Jd0T && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:01.392 [INFO ][Worker(5)] - 6237432 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.395 [INFO ][Worker(6)] - 6237433 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.396 [INFO ][Worker(7)] - 6237434 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.466 [INFO ][Worker(3)] - 6237435 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:01.471 [INFO ][Worker(3)] - 6237436 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.509 [INFO ][Worker(8)] - 6237437 * Server has received a request on thread Worker(8) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:01.518 [INFO ][Worker(8)] - 6237438 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.549 [INFO ][Worker(2)] - 6237439 * Server has received a request on thread Worker(2) && GET /api/v1/action/chats && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:01.630 [INFO ][Worker(4)] - 6237440 * Server has received a request on thread Worker(4) && PUT /api/v1/action/messages_read && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 20 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:01.644 [INFO ][Worker(1)] - 6237441 * Server has received a request on thread Worker(1) && GET /api/v1/action/images && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:01.648 [INFO ][Worker(5)] - 6237442 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:01.654 [INFO ][Worker(5)] - 6237443 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.687 [INFO ][Worker(1)] - 6237444 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.695 [INFO ][Worker(6)] - 6237445 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && av: 2.1.1 && connection: close && host: localhost && li: zh-TW && os: 0 && tp: 0 && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:01.701 [INFO ][Worker(6)] - 6237446 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.712 [INFO ][Worker(4)] - 6237447 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.718 [INFO ][Worker(2)] - 6237448 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.773 [INFO ][Worker(7)] - 6237449 * Server has received a request on thread Worker(7) && GET /api/v1/action/me/sticker_packages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:01.776 [INFO ][Worker(7)] - 6237450 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.784 [INFO ][Worker(3)] - 6237451 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && ui: t00000HkCr && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:01.792 [INFO ][Worker(8)] - 6237452 * Server has received a request on thread Worker(8) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: d776d9b438e1 && connection: close && host: localhost && li: zh-TW && ui: 000000JH20 && user-agent: iPhone && x-forwarded-for: 223.140.185.240 && x-forwarded-proto: http && x-real_ip: 223.140.185.240
2016-03-17 14:26:01.800 [INFO ][Worker(3)] - 6237453 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.807 [INFO ][Worker(8)] - 6237454 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.834 [INFO ][Worker(5)] - 6237455 * Server has received a request on thread Worker(5) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: 95dfab6e47db && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:01.843 [INFO ][Worker(5)] - 6237456 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.917 [INFO ][Worker(1)] - 6237457 * Server has received a request on thread Worker(1) && GET /api/v1/action/top_events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: d776d9b438e1 && connection: close && host: localhost && li: zh-TW && ui: 000000JH20 && user-agent: iPhone && x-forwarded-for: 223.140.185.240 && x-forwarded-proto: http && x-real_ip: 223.140.185.240
2016-03-17 14:26:01.926 [INFO ][Worker(1)] - 6237458 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:01.948 [INFO ][Worker(6)] - 6237459 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:01.953 [INFO ][Worker(6)] - 6237460 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.013 [INFO ][Worker(4)] - 6237461 * Server has received a request on thread Worker(4) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:02.048 [INFO ][Worker(4)] - 6237462 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.085 [INFO ][Worker(2)] - 6237463 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:02.093 [INFO ][Worker(2)] - 6237464 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.166 [INFO ][Worker(7)] - 6237465 * Server has received a request on thread Worker(7) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:02.174 [INFO ][Worker(3)] - 6237466 * Server has received a request on thread Worker(3) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && ui: t00000HkCr && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:02.176 [INFO ][Worker(7)] - 6237467 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.199 [INFO ][Worker(8)] - 6237468 * Server has received a request on thread Worker(8) && GET /api/v1/action/events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: d776d9b438e1 && connection: close && host: localhost && li: zh-TW && ui: 000000JH20 && user-agent: iPhone && x-forwarded-for: 223.140.185.240 && x-forwarded-proto: http && x-real_ip: 223.140.185.240
2016-03-17 14:26:02.220 [INFO ][Worker(8)] - 6237469 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.232 [INFO ][Worker(5)] - 6237470 * Server has received a request on thread Worker(5) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:02.237 [INFO ][Worker(1)] - 6237471 * Server has received a request on thread Worker(1) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: a3f166a053a5 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: X00000GPCL && user-agent: iPhone && x-forwarded-for: 220.136.63.88 && x-forwarded-proto: http && x-real_ip: 220.136.63.88
2016-03-17 14:26:02.253 [INFO ][Worker(6)] - 6237472 * Server has received a request on thread Worker(6) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:02.257 [INFO ][Worker(5)] - 6237473 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.257 [INFO ][Worker(6)] - 6237474 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.257 [INFO ][Worker(3)] - 6237475 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.268 [INFO ][Worker(1)] - 6237476 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.285 [INFO ][Worker(4)] - 6237477 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: b589721959a3 && connection: close && host: localhost && li: zh_TW && ui: 300000JHDq && user-agent: Android && x-forwarded-for: 1.164.13.127 && x-forwarded-proto: http && x-real_ip: 1.164.13.127
2016-03-17 14:26:02.289 [INFO ][Worker(2)] - 6237478 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:02.293 [INFO ][Worker(4)] - 6237479 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.293 [INFO ][Worker(2)] - 6237480 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.337 [INFO ][Worker(7)] - 6237481 * Server has received a request on thread Worker(7) && GET /api/v1/action/messages && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:02.345 [INFO ][Worker(7)] - 6237482 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.363 [INFO ][Worker(8)] - 6237483 * Server has received a request on thread Worker(8) && POST /api/v1/action/login && accept: */* && accept-encoding: gzip, deflate && connection: close && content-length: 115 && host: localhost && li: zh_TW && user-agent: python && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:02.372 [INFO ][Worker(8)] - 6237484 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.492 [INFO ][Worker(5)] - 6237485 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:02.492 [INFO ][Worker(6)] - 6237486 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:02.497 [INFO ][Worker(6)] - 6237487 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.498 [INFO ][Worker(5)] - 6237488 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.669 [INFO ][Worker(3)] - 6237489 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:02.673 [INFO ][Worker(3)] - 6237490 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.676 [INFO ][Worker(1)] - 6237491 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:02.680 [INFO ][Worker(1)] - 6237492 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.690 [INFO ][Worker(4)] - 6237493 * Server has received a request on thread Worker(4) && PUT /api/v1/action/messages_read && accept-encoding: gzip && at: eca036aac033 && connection: close && content-length: 20 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:02.719 [INFO ][Worker(4)] - 6237494 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.787 [INFO ][Worker(2)] - 6237495 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: e9939978ef61 && connection: close && cookie: _ga=GA1.2.152166145.1516688144; _gid=GA1.2.1099392341.1517785486 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5550 && ui: w00000F6Bj && user-agent: webkit && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:02.798 [INFO ][Worker(2)] - 6237496 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:02.868 [INFO ][Worker(7)] - 6237497 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:02.872 [INFO ][Worker(7)] - 6237498 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.026 [INFO ][Worker(8)] - 6237499 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 63d0e148988a && connection: close && cookie: _ga=GA1.2.1851703346.1517789460; _gid=GA1.2.1041870897.1517789460 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=6181 && ui: j00000GL9b && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:03.031 [INFO ][Worker(8)] - 6237500 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.114 [INFO ][Worker(6)] - 6237501 * Server has received a request on thread Worker(6) && GET /api/v1/action/me/accounts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:03.117 [INFO ][Worker(6)] - 6237502 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.166 [INFO ][Worker(5)] - 6237503 * Server has received a request on thread Worker(5) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:03.176 [INFO ][Worker(5)] - 6237504 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.192 [INFO ][Worker(3)] - 6237505 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 2f6e96822a48 && connection: close && cookie: _ga=GA1.2.1406805857.1516872658; _gid=GA1.2.2117626729.1517896168 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=37 && ui: 1000000LEF && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:03.199 [INFO ][Worker(3)] - 6237506 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.209 [INFO ][Worker(1)] - 6237507 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:03.210 [INFO ][Worker(4)] - 6237508 * Server has received a request on thread Worker(4) && GET /api/v1/action/top_events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:03.218 [INFO ][Worker(4)] - 6237509 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.219 [INFO ][Worker(1)] - 6237510 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.274 [INFO ][Worker(2)] - 6237511 * Server has received a request on thread Worker(2) && GET /api/v1/action/events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:03.287 [INFO ][Worker(2)] - 6237512 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.510 [INFO ][Worker(7)] - 6237513 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a7e79ddc18c2 && connection: close && cookie: _ga=GA1.2.1664620491.1516788333; _gid=GA1.2.1772992382.1517795862 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=9775 && ui: 0000000M4x && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:03.516 [INFO ][Worker(7)] - 6237514 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.517 [INFO ][Worker(8)] - 6237515 * Server has received a request on thread Worker(8) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && content-length: 190 && host: localhost && li: zh-TW && uat: 7eae2149113e && ui: t00000HkCr && user-agent: iPhone && uui: t00000HkCr && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:03.523 [INFO ][Worker(8)] - 6237516 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.576 [INFO ][Worker(6)] - 6237517 * Server has received a request on thread Worker(6) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && content-length: 28 && host: localhost && li: zh-TW && uat: 7eae2149113e && ui: t00000HkCr && user-agent: iPhone && uui: t00000HkCr && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:03.599 [INFO ][Worker(5)] - 6237518 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 223.140.168.25 && x-forwarded-proto: http && x-real_ip: 223.140.168.25
2016-03-17 14:26:03.604 [INFO ][Worker(5)] - 6237519 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.609 [INFO ][Worker(6)] - 6237520 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.657 [INFO ][Worker(3)] - 6237521 * Server has received a request on thread Worker(3) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && content-length: 0 && host: localhost && li: zh-TW && uat: 7eae2149113e && ui: t00000HkCr && user-agent: iPhone && uui: t00000HkCr && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:03.657 [INFO ][Worker(4)] - 6237522 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a976a43ff900 && connection: close && cookie: _ga=GA1.2.672735970.1516759915; _gid=GA1.2.142270734.1517789381 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8130 && ui: C00000GY15 && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:03.660 [INFO ][Worker(1)] - 6237523 * Server has received a request on thread Worker(1) && PUT /api/v1/action/sys/info && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && content-length: 214 && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:03.663 [INFO ][Worker(2)] - 6237524 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && ui: t00000HkCr && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:03.666 [INFO ][Worker(3)] - 6237525 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.669 [INFO ][Worker(1)] - 6237526 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.672 [INFO ][Worker(2)] - 6237527 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.721 [INFO ][Worker(7)] - 6237528 * Server has received a request on thread Worker(7) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && uat: 7eae2149113e && ui: t00000HkCr && user-agent: iPhone && uui: t00000HkCr && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:03.721 [INFO ][Worker(4)] - 6237529 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.729 [INFO ][Worker(7)] - 6237530 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.729 [INFO ][Worker(8)] - 6237531 * Server has received a request on thread Worker(8) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && uat: 7eae2149113e && ui: t00000HkCr && user-agent: iPhone && uui: t00000HkCr && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:03.765 [INFO ][Worker(8)] - 6237532 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.891 [INFO ][Worker(5)] - 6237533 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:03.896 [INFO ][Worker(5)] - 6237534 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.940 [INFO ][Worker(6)] - 6237535 * Server has received a request on thread Worker(6) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:03.948 [INFO ][Worker(6)] - 6237536 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:03.994 [INFO ][Worker(3)] - 6237537 * Server has received a request on thread Worker(3) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: a3f166a053a5 && connection: close && host: localhost && li: zh-TW && ui: X00000GPCL && user-agent: iPhone && x-forwarded-for: 220.136.63.88 && x-forwarded-proto: http && x-real_ip: 220.136.63.88
2016-03-17 14:26:04.009 [INFO ][Worker(3)] - 6237538 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.013 [INFO ][Worker(1)] - 6237539 * Server has received a request on thread Worker(1) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:04.020 [INFO ][Worker(1)] - 6237540 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.053 [INFO ][Worker(2)] - 6237541 * Server has received a request on thread Worker(2) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: 620074f617dc && connection: close && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:04.057 [INFO ][Worker(2)] - 6237542 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.104 [INFO ][Worker(4)] - 6237543 * Server has received a request on thread Worker(4) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: a3f166a053a5 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: X00000GPCL && user-agent: iPhone && x-forwarded-for: 220.136.63.88 && x-forwarded-proto: http && x-real_ip: 220.136.63.88
2016-03-17 14:26:04.132 [INFO ][Worker(4)] - 6237544 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.205 [INFO ][Worker(7)] - 6237545 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:04.210 [INFO ][Worker(7)] - 6237546 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.386 [INFO ][Worker(8)] - 6237547 * Server has received a request on thread Worker(8) && GET /api/v1/action/reports && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: ee6c52200c5e && connection: close && host: localhost && li: zh-TW && ui: E00000DGDm && user-agent: iPhone && x-forwarded-for: 223.136.253.38 && x-forwarded-proto: http && x-real_ip: 223.136.253.38
2016-03-17 14:26:04.393 [INFO ][Worker(8)] - 6237548 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.537 [INFO ][Worker(5)] - 6237549 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:04.552 [INFO ][Worker(5)] - 6237550 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.594 [INFO ][Worker(6)] - 6237551 * Server has received a request on thread Worker(6) && POST /api/v1/action/login && accept: */* && accept-encoding: gzip, deflate && connection: close && content-length: 115 && host: localhost && li: zh_TW && user-agent: python && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:04.597 [INFO ][Worker(3)] - 6237552 * Server has received a request on thread Worker(3) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:04.604 [INFO ][Worker(6)] - 6237553 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.605 [INFO ][Worker(1)] - 6237554 * Server has received a request on thread Worker(1) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:04.610 [INFO ][Worker(1)] - 6237555 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.622 [INFO ][Worker(3)] - 6237556 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.704 [INFO ][Worker(2)] - 6237557 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && uat: b298c1646d3b && ui: 200000IG6i && user-agent: iPhone && uui: 200000IG6i && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:04.712 [INFO ][Worker(2)] - 6237558 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.766 [INFO ][Worker(4)] - 6237559 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:04.772 [INFO ][Worker(4)] - 6237560 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.832 [INFO ][Worker(7)] - 6237561 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: c43358784aca && connection: close && cookie: _ga=GA1.2.353669437.1504921279; _gid=GA1.2.1845573779.1517896920 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4089 && ui: s00000EC8C && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:04.834 [INFO ][Worker(8)] - 6237562 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a166fbbc315f && connection: close && cookie: _ga=GA1.2.2047144028.1516701732; _gid=GA1.2.573804594.1517703983 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7182 && ui: 600000Gf1c && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:04.838 [INFO ][Worker(7)] - 6237563 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.838 [INFO ][Worker(5)] - 6237564 * Server has received a request on thread Worker(5) && POST /api/v1/action/sys/group_users && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && content-length: 766 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:04.839 [INFO ][Worker(6)] - 6237565 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:04.842 [INFO ][Worker(8)] - 6237566 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.844 [INFO ][Worker(6)] - 6237567 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:04.971 [INFO ][Worker(5)] - 6237568 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.075 [INFO ][Worker(1)] - 6237569 * Server has received a request on thread Worker(1) && GET /api/v1/action/events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 5eee0cc34a32 && connection: close && host: localhost && li: zh-TW && tp: delete && uat: 5eee0cc34a32 && ui: g00000E07u && user-agent: iPhone && uui: g00000E07u && x-forwarded-for: 111.250.216.241 && x-forwarded-proto: http && x-real_ip: 111.250.216.241
2016-03-17 14:26:05.093 [INFO ][Worker(1)] - 6237570 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.195 [INFO ][Worker(3)] - 6237571 * Server has received a request on thread Worker(3) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 5eee0cc34a32 && connection: close && host: localhost && li: zh-TW && uat: 5eee0cc34a32 && ui: g00000E07u && user-agent: iPhone && uui: g00000E07u && x-forwarded-for: 111.250.216.241 && x-forwarded-proto: http && x-real_ip: 111.250.216.241
2016-03-17 14:26:05.223 [INFO ][Worker(3)] - 6237572 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.275 [INFO ][Worker(2)] - 6237573 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:05.277 [INFO ][Worker(4)] - 6237574 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:05.283 [INFO ][Worker(4)] - 6237575 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.284 [INFO ][Worker(2)] - 6237576 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.306 [INFO ][Worker(7)] - 6237577 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:05.311 [INFO ][Worker(7)] - 6237578 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.321 [INFO ][Worker(8)] - 6237579 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 3d53398b6ed4 && connection: close && cookie: _ga=GA1.2.118585145.1508487651; _gid=GA1.2.616245660.1517809063 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: t000000p2s && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:05.327 [INFO ][Worker(8)] - 6237580 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.346 [INFO ][Worker(6)] - 6237581 * Server has received a request on thread Worker(6) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 5eee0cc34a32 && connection: close && content-length: 28 && host: localhost && li: zh-TW && uat: 5eee0cc34a32 && ui: g00000E07u && user-agent: iPhone && uui: g00000E07u && x-forwarded-for: 111.250.216.241 && x-forwarded-proto: http && x-real_ip: 111.250.216.241
2016-03-17 14:26:05.351 [INFO ][Worker(5)] - 6237582 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:05.355 [INFO ][Worker(5)] - 6237583 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.380 [INFO ][Worker(6)] - 6237584 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.443 [INFO ][Worker(1)] - 6237585 * Server has received a request on thread Worker(1) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: eca036aac033 && connection: close && content-length: 66 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:05.449 [INFO ][Worker(1)] - 6237586 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.637 [INFO ][Worker(3)] - 6237587 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:05.642 [INFO ][Worker(3)] - 6237588 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.652 [INFO ][Worker(4)] - 6237589 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && host: localhost && li: zh-TW && ui: b00000Hn18 && user-agent: iPhone && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:05.660 [INFO ][Worker(4)] - 6237590 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.777 [INFO ][Worker(2)] - 6237591 * Server has received a request on thread Worker(2) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && content-length: 28 && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:05.817 [INFO ][Worker(7)] - 6237592 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:05.823 [INFO ][Worker(7)] - 6237593 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.835 [INFO ][Worker(2)] - 6237594 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.876 [INFO ][Worker(8)] - 6237595 * Server has received a request on thread Worker(8) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && content-length: 0 && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:05.883 [INFO ][Worker(5)] - 6237596 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:05.886 [INFO ][Worker(8)] - 6237597 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.896 [INFO ][Worker(5)] - 6237598 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:05.928 [INFO ][Worker(6)] - 6237599 * Server has received a request on thread Worker(6) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && origin: https://localhost && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:05.930 [INFO ][Worker(6)] - 6237600 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.017 [INFO ][Worker(1)] - 6237601 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:06.022 [INFO ][Worker(1)] - 6237602 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.207 [INFO ][Worker(3)] - 6237603 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:06.212 [INFO ][Worker(3)] - 6237604 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.212 [INFO ][Worker(4)] - 6237605 * Server has received a request on thread Worker(4) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: fd2a9d939157 && connection: close && content-length: 28 && host: localhost && li: zh-TW && uat: fd2a9d939157 && ui: 400000006D && user-agent: iPhone && uui: 400000006D && x-forwarded-for: 220.132.16.98 && x-forwarded-proto: http && x-real_ip: 220.132.16.98
2016-03-17 14:26:06.235 [INFO ][Worker(4)] - 6237606 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.397 [INFO ][Worker(7)] - 6237607 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:06.402 [INFO ][Worker(7)] - 6237608 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.481 [INFO ][Worker(2)] - 6237609 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:06.486 [INFO ][Worker(2)] - 6237610 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.525 [INFO ][Worker(8)] - 6237611 * Server has received a request on thread Worker(8) && GET /api/v1/action/images && accept-encoding: gzip && at: d8d2a5a0cfd8 && connection: close && host: localhost && li: zh_TW && ui: k00000Ja1H && user-agent: Android && x-forwarded-for: 42.77.0.69 && x-forwarded-proto: http && x-real_ip: 42.77.0.69
2016-03-17 14:26:06.529 [INFO ][Worker(5)] - 6237612 * Server has received a request on thread Worker(5) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 94f58bac7cb5 && connection: close && content-length: 0 && cookie: __auc=4229dc471602208617a1f6e9d9c; __utma=156942895.808722351.1512399463.1512399463.1512399463.1; __utmz=156942895.1512399463.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _ga=GA1.2.808722351.1512399463 && host: localhost && li: zh-TW && uat: 94f58bac7cb5 && ui: m00000CxAo && user-agent: iPhone && uui: m00000CxAo && x-forwarded-for: 42.77.107.15 && x-forwarded-proto: http && x-real_ip: 42.77.107.15
2016-03-17 14:26:06.538 [INFO ][Worker(5)] - 6237613 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.542 [INFO ][Worker(8)] - 6237614 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.671 [INFO ][Worker(6)] - 6237615 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:06.683 [INFO ][Worker(6)] - 6237616 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.741 [INFO ][Worker(1)] - 6237617 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 83f6115f9102 && connection: close && cookie: _ga=GA1.2.357338248.1516870251 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7849 && ui: j00000KG5p && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:06.746 [INFO ][Worker(1)] - 6237618 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.810 [INFO ][Worker(3)] - 6237619 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 616506f0c571 && connection: close && cookie: _ga=GA1.2.27660779.1517823698; _gid=GA1.2.217770643.1517823698 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8676 && ui: V000000J9B && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:06.815 [INFO ][Worker(3)] - 6237620 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.840 [INFO ][Worker(4)] - 6237621 * Server has received a request on thread Worker(4) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: d8d2a5a0cfd8 && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: k00000Ja1H && user-agent: Android && x-forwarded-for: 42.77.0.69 && x-forwarded-proto: http && x-real_ip: 42.77.0.69
2016-03-17 14:26:06.849 [INFO ][Worker(4)] - 6237622 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.894 [INFO ][Worker(7)] - 6237623 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 369cefbf4996 && connection: close && cookie: _ga=GA1.2.816907492.1517557919; _gid=GA1.2.1129582589.1517790885 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2063 && ui: t000000OF6 && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:06.901 [INFO ][Worker(7)] - 6237624 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:06.907 [INFO ][Worker(2)] - 6237625 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:06.912 [INFO ][Worker(2)] - 6237626 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.000 [INFO ][Worker(5)] - 6237627 * Server has received a request on thread Worker(5) && PUT /api/v1/action/sys/info && accept-encoding: gzip && at: 620074f617dc && connection: close && content-length: 192 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:07.011 [INFO ][Worker(5)] - 6237628 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.034 [INFO ][Worker(8)] - 6237629 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a2bf1dfe5f94 && connection: close && cookie: _ga=GA1.2.890131171.1516869873; _gid=GA1.2.270262551.1517884275 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5453 && ui: 1000000JCu && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:07.042 [INFO ][Worker(8)] - 6237630 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.081 [INFO ][Worker(6)] - 6237631 * Server has received a request on thread Worker(6) && GET /api/v1/action/notices && accept-encoding: gzip && at: 620074f617dc && connection: close && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:07.267 [INFO ][Worker(1)] - 6237632 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:07.273 [INFO ][Worker(1)] - 6237633 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.334 [INFO ][Worker(6)] - 6237634 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.374 [INFO ][Worker(3)] - 6237635 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:07.385 [INFO ][Worker(3)] - 6237636 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.394 [INFO ][Worker(4)] - 6237637 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,en-us;q=0.8,en;q=0.6 && at: 315a9b8b84b0 && connection: close && cookie: _ga=GA1.2.324018008.1500365284; _gid=GA1.2.1631175925.1517852444 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4968 && ui: f00000Jd0T && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:07.398 [INFO ][Worker(4)] - 6237638 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.458 [INFO ][Worker(7)] - 6237639 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: b589721959a3 && connection: close && host: localhost && li: zh_TW && ui: 300000JHDq && user-agent: Android && x-forwarded-for: 1.164.13.127 && x-forwarded-proto: http && x-real_ip: 1.164.13.127
2016-03-17 14:26:07.463 [INFO ][Worker(7)] - 6237640 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.467 [INFO ][Worker(2)] - 6237641 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:07.468 [INFO ][Worker(5)] - 6237642 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:07.473 [INFO ][Worker(5)] - 6237643 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.476 [INFO ][Worker(2)] - 6237644 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.547 [INFO ][Worker(1)] - 6237645 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:07.547 [INFO ][Worker(8)] - 6237646 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:07.552 [INFO ][Worker(1)] - 6237647 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.579 [INFO ][Worker(6)] - 6237648 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:07.601 [INFO ][Worker(3)] - 6237649 * Server has received a request on thread Worker(3) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:07.609 [INFO ][Worker(4)] - 6237650 * Server has received a request on thread Worker(4) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:07.613 [INFO ][Worker(4)] - 6237651 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.615 [INFO ][Worker(7)] - 6237652 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:07.622 [INFO ][Worker(7)] - 6237653 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.622 [INFO ][Worker(5)] - 6237654 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:07.627 [INFO ][Worker(5)] - 6237655 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.628 [INFO ][Worker(3)] - 6237656 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.637 [INFO ][Worker(6)] - 6237657 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.667 [INFO ][Worker(2)] - 6237658 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:07.671 [INFO ][Worker(2)] - 6237659 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.744 [INFO ][Worker(1)] - 6237660 * Server has received a request on thread Worker(1) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:07.753 [INFO ][Worker(1)] - 6237661 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.782 [INFO ][Worker(8)] - 6237662 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.826 [INFO ][Worker(4)] - 6237663 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: e9939978ef61 && connection: close && cookie: _ga=GA1.2.152166145.1516688144; _gid=GA1.2.1099392341.1517785486 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5550 && ui: w00000F6Bj && user-agent: webkit && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:07.836 [INFO ][Worker(4)] - 6237664 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.845 [INFO ][Worker(7)] - 6237665 * Server has received a request on thread Worker(7) && GET /api/v1/action/chats && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:07.889 [INFO ][Worker(5)] - 6237666 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:07.893 [INFO ][Worker(5)] - 6237667 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.919 [INFO ][Worker(7)] - 6237668 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.923 [INFO ][Worker(3)] - 6237669 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:07.924 [INFO ][Worker(6)] - 6237670 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:07.934 [INFO ][Worker(3)] - 6237671 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:07.936 [INFO ][Worker(6)] - 6237672 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.006 [INFO ][Worker(2)] - 6237673 * Server has received a request on thread Worker(2) && GET /api/v1/action/notices && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:08.060 [INFO ][Worker(1)] - 6237674 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 63d0e148988a && connection: close && cookie: _ga=GA1.2.1851703346.1517789460; _gid=GA1.2.1041870897.1517789460 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=6181 && ui: j00000GL9b && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:08.066 [INFO ][Worker(1)] - 6237675 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.118 [INFO ][Worker(8)] - 6237676 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:08.122 [INFO ][Worker(4)] - 6237677 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 2c4a28c00579 && connection: close && host: localhost && li: zh-TW && ui: u00000IFAs && user-agent: iPhone && x-forwarded-for: 114.24.157.152 && x-forwarded-proto: http && x-real_ip: 114.24.157.152
2016-03-17 14:26:08.123 [INFO ][Worker(8)] - 6237678 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.128 [INFO ][Worker(4)] - 6237679 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.130 [INFO ][Worker(5)] - 6237680 * Server has received a request on thread Worker(5) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && content-length: 0 && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:08.141 [INFO ][Worker(5)] - 6237681 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.218 [INFO ][Worker(7)] - 6237682 * Server has received a request on thread Worker(7) && PUT /api/v1/action/sys/info && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && content-length: 192 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:08.229 [INFO ][Worker(7)] - 6237683 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.276 [INFO ][Worker(2)] - 6237684 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.309 [INFO ][Worker(3)] - 6237685 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:08.315 [INFO ][Worker(3)] - 6237686 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.325 [INFO ][Worker(6)] - 6237687 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:08.330 [INFO ][Worker(6)] - 6237688 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.356 [INFO ][Worker(1)] - 6237689 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:08.362 [INFO ][Worker(1)] - 6237690 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.390 [INFO ][Worker(8)] - 6237691 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:08.435 [INFO ][Worker(4)] - 6237692 * Server has received a request on thread Worker(4) && GET /api/v1/action/chats && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:08.489 [INFO ][Worker(4)] - 6237693 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.537 [INFO ][Worker(5)] - 6237694 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:08.542 [INFO ][Worker(5)] - 6237695 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.628 [INFO ][Worker(8)] - 6237696 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.656 [INFO ][Worker(7)] - 6237697 * Server has received a request on thread Worker(7) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:08.675 [INFO ][Worker(7)] - 6237698 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.710 [INFO ][Worker(2)] - 6237699 * Server has received a request on thread Worker(2) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && content-length: 28 && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:08.753 [INFO ][Worker(3)] - 6237700 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && ui: t00000HkCr && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:08.753 [INFO ][Worker(6)] - 6237701 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && ui: t00000HkCr && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:08.757 [INFO ][Worker(1)] - 6237702 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:08.762 [INFO ][Worker(1)] - 6237703 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.762 [INFO ][Worker(3)] - 6237704 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.770 [INFO ][Worker(2)] - 6237705 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.783 [INFO ][Worker(4)] - 6237706 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 2.1.1 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:08.783 [INFO ][Worker(5)] - 6237707 * Server has received a request on thread Worker(5) && GET /api/v1/action/me/accounts && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:08.787 [INFO ][Worker(5)] - 6237708 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.788 [INFO ][Worker(4)] - 6237709 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.828 [INFO ][Worker(6)] - 6237710 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.860 [INFO ][Worker(8)] - 6237711 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:08.870 [INFO ][Worker(8)] - 6237712 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.907 [INFO ][Worker(7)] - 6237713 * Server has received a request on thread Worker(7) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: 84c73e63c00a && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:08.909 [INFO ][Worker(7)] - 6237714 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.941 [INFO ][Worker(1)] - 6237715 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:08.944 [INFO ][Worker(3)] - 6237716 * Server has received a request on thread Worker(3) && GET /api/v1/action/chats && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:08.948 [INFO ][Worker(2)] - 6237717 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/notification && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:08.950 [INFO ][Worker(2)] - 6237718 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:08.984 [INFO ][Worker(1)] - 6237719 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.003 [INFO ][Worker(5)] - 6237720 * Server has received a request on thread Worker(5) && GET /api/v1/action/me/accounts && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:09.006 [INFO ][Worker(5)] - 6237721 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.020 [INFO ][Worker(3)] - 6237722 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.040 [INFO ][Worker(4)] - 6237723 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:09.048 [INFO ][Worker(4)] - 6237724 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.105 [INFO ][Worker(6)] - 6237725 * Server has received a request on thread Worker(6) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && content-length: 190 && host: localhost && li: zh-TW && uat: 7eae2149113e && ui: t00000HkCr && user-agent: iPhone && uui: t00000HkCr && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:09.111 [INFO ][Worker(6)] - 6237726 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.177 [INFO ][Worker(8)] - 6237727 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:09.181 [INFO ][Worker(8)] - 6237728 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.192 [INFO ][Worker(7)] - 6237729 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 2f6e96822a48 && connection: close && cookie: _ga=GA1.2.1406805857.1516872658; _gid=GA1.2.2117626729.1517896168 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=37 && ui: 1000000LEF && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:09.197 [INFO ][Worker(7)] - 6237730 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.273 [INFO ][Worker(2)] - 6237731 * Server has received a request on thread Worker(2) && POST /api/v1/action/sys/group_users && accept-encoding: gzip && at: 84c73e63c00a && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:09.481 [INFO ][Worker(2)] - 6237732 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.503 [INFO ][Worker(1)] - 6237733 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a7e79ddc18c2 && connection: close && cookie: _ga=GA1.2.1664620491.1516788333; _gid=GA1.2.1772992382.1517795862 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=9775 && ui: 0000000M4x && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:09.508 [INFO ][Worker(1)] - 6237734 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.643 [INFO ][Worker(5)] - 6237735 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a976a43ff900 && connection: close && cookie: _ga=GA1.2.672735970.1516759915; _gid=GA1.2.142270734.1517789381 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8130 && ui: C00000GY15 && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:09.652 [INFO ][Worker(5)] - 6237736 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.827 [INFO ][Worker(3)] - 6237737 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:09.831 [INFO ][Worker(3)] - 6237738 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.844 [INFO ][Worker(4)] - 6237739 * Server has received a request on thread Worker(4) && GET /api/v1/action/notices && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:09.852 [INFO ][Worker(6)] - 6237740 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: c43358784aca && connection: close && cookie: _ga=GA1.2.353669437.1504921279; _gid=GA1.2.1845573779.1517896920 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4089 && ui: s00000EC8C && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:09.858 [INFO ][Worker(6)] - 6237741 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.873 [INFO ][Worker(8)] - 6237742 * Server has received a request on thread Worker(8) && PUT /api/v1/action/sys/info && accept-encoding: gzip && at: 84c73e63c00a && connection: close && content-length: 192 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:09.883 [INFO ][Worker(8)] - 6237743 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:09.942 [INFO ][Worker(7)] - 6237744 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:09.949 [INFO ][Worker(7)] - 6237745 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.016 [INFO ][Worker(2)] - 6237746 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:10.022 [INFO ][Worker(2)] - 6237747 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.037 [INFO ][Worker(4)] - 6237748 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.133 [INFO ][Worker(1)] - 6237749 * Server has received a request on thread Worker(1) && POST /api/v1/action/login && accept: */* && accept-encoding: gzip, deflate && connection: close && content-length: 115 && host: localhost && li: zh_TW && user-agent: python && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:10.142 [INFO ][Worker(1)] - 6237750 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.190 [INFO ][Worker(5)] - 6237751 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:10.194 [INFO ][Worker(5)] - 6237752 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.202 [INFO ][Worker(3)] - 6237753 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:10.207 [INFO ][Worker(3)] - 6237754 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.261 [INFO ][Worker(6)] - 6237755 * Server has received a request on thread Worker(6) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: 620074f617dc && connection: close && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:10.266 [INFO ][Worker(6)] - 6237756 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.384 [INFO ][Worker(8)] - 6237757 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:10.473 [INFO ][Worker(7)] - 6237758 * Server has received a request on thread Worker(7) && GET /api/v1/action/chats && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:10.516 [INFO ][Worker(7)] - 6237759 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.538 [INFO ][Worker(2)] - 6237760 * Server has received a request on thread Worker(2) && GET /api/v1/action/notification && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:10.544 [INFO ][Worker(2)] - 6237761 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.576 [INFO ][Worker(8)] - 6237762 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.597 [INFO ][Worker(4)] - 6237763 * Server has received a request on thread Worker(4) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: 95dfab6e47db && connection: close && content-length: 66 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:10.602 [INFO ][Worker(4)] - 6237764 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.707 [INFO ][Worker(1)] - 6237765 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:10.711 [INFO ][Worker(1)] - 6237766 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.763 [INFO ][Worker(5)] - 6237767 * Server has received a request on thread Worker(5) && GET /api/v1/action/chats && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:10.776 [INFO ][Worker(5)] - 6237768 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.818 [INFO ][Worker(3)] - 6237769 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a166fbbc315f && connection: close && cookie: _ga=GA1.2.2047144028.1516701732; _gid=GA1.2.573804594.1517703983 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7182 && ui: 600000Gf1c && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:10.828 [INFO ][Worker(3)] - 6237770 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.848 [INFO ][Worker(6)] - 6237771 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:10.855 [INFO ][Worker(6)] - 6237772 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.908 [INFO ][Worker(7)] - 6237773 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:10.912 [INFO ][Worker(7)] - 6237774 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.925 [INFO ][Worker(2)] - 6237775 * Server has received a request on thread Worker(2) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && content-length: 190 && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:10.930 [INFO ][Worker(2)] - 6237776 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.940 [INFO ][Worker(8)] - 6237777 * Server has received a request on thread Worker(8) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:10.948 [INFO ][Worker(8)] - 6237778 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:10.992 [INFO ][Worker(4)] - 6237779 * Server has received a request on thread Worker(4) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:11.000 [INFO ][Worker(4)] - 6237780 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.039 [INFO ][Worker(1)] - 6237781 * Server has received a request on thread Worker(1) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:11.046 [INFO ][Worker(1)] - 6237782 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.083 [INFO ][Worker(5)] - 6237783 * Server has received a request on thread Worker(5) && GET /api/v1/action/events && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:11.112 [INFO ][Worker(3)] - 6237784 * Server has received a request on thread Worker(3) && GET /api/v1/action/notices && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:11.117 [INFO ][Worker(6)] - 6237785 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:11.118 [INFO ][Worker(5)] - 6237786 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.121 [INFO ][Worker(6)] - 6237787 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.131 [INFO ][Worker(3)] - 6237788 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.260 [INFO ][Worker(7)] - 6237789 * Server has received a request on thread Worker(7) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:11.289 [INFO ][Worker(7)] - 6237790 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.320 [INFO ][Worker(2)] - 6237791 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 3d53398b6ed4 && connection: close && cookie: _ga=GA1.2.118585145.1508487651; _gid=GA1.2.616245660.1517809063 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: t000000p2s && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:11.327 [INFO ][Worker(2)] - 6237792 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.453 [INFO ][Worker(8)] - 6237793 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:11.473 [INFO ][Worker(4)] - 6237794 * Server has received a request on thread Worker(4) && PUT /api/v1/action/sys/info && accept-encoding: gzip && at: 84c73e63c00a && connection: close && content-length: 192 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:11.481 [INFO ][Worker(4)] - 6237795 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.524 [INFO ][Worker(1)] - 6237796 * Server has received a request on thread Worker(1) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: 95dfab6e47db && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:11.589 [INFO ][Worker(1)] - 6237797 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.738 [INFO ][Worker(8)] - 6237798 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.887 [INFO ][Worker(5)] - 6237799 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:11.897 [INFO ][Worker(5)] - 6237800 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:11.921 [INFO ][Worker(6)] - 6237801 * Server has received a request on thread Worker(6) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && origin: https://localhost && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:11.923 [INFO ][Worker(6)] - 6237802 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.073 [INFO ][Worker(3)] - 6237803 * Server has received a request on thread Worker(3) && GET /api/v1/action/me && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.171 && x-forwarded-proto: http && x-real_ip: 42.77.240.171
2016-03-17 14:26:12.076 [INFO ][Worker(3)] - 6237804 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.104 [INFO ][Worker(7)] - 6237805 * Server has received a request on thread Worker(7) && GET /api/v1/action/notices && accept-encoding: gzip && at: 620074f617dc && connection: close && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:12.177 [INFO ][Worker(2)] - 6237806 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:12.181 [INFO ][Worker(2)] - 6237807 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.182 [INFO ][Worker(4)] - 6237808 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:12.189 [INFO ][Worker(4)] - 6237809 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.222 [INFO ][Worker(1)] - 6237810 * Server has received a request on thread Worker(1) && GET /api/v1/action/notices && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:12.241 [INFO ][Worker(1)] - 6237811 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.356 [INFO ][Worker(7)] - 6237812 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.587 [INFO ][Worker(8)] - 6237813 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:12.592 [INFO ][Worker(8)] - 6237814 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.661 [INFO ][Worker(5)] - 6237815 * Server has received a request on thread Worker(5) && PUT /api/v1/action/sys/info && accept-encoding: gzip && at: 620074f617dc && connection: close && content-length: 192 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:12.670 [INFO ][Worker(5)] - 6237816 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.739 [INFO ][Worker(6)] - 6237817 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 83f6115f9102 && connection: close && cookie: _ga=GA1.2.357338248.1516870251 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7849 && ui: j00000KG5p && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:12.745 [INFO ][Worker(6)] - 6237818 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.785 [INFO ][Worker(3)] - 6237819 * Server has received a request on thread Worker(3) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && content-length: 190 && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:12.791 [INFO ][Worker(3)] - 6237820 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.810 [INFO ][Worker(2)] - 6237821 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 616506f0c571 && connection: close && cookie: _ga=GA1.2.27660779.1517823698; _gid=GA1.2.217770643.1517823698 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8676 && ui: V000000J9B && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:12.816 [INFO ][Worker(2)] - 6237822 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.845 [INFO ][Worker(4)] - 6237823 * Server has received a request on thread Worker(4) && GET /api/v1/action/top_events && accept-encoding: gzip && at: 20f5a8cfc553 && connection: close && host: localhost && li: zh_TW && ui: u00000I3FF && user-agent: Android && x-forwarded-for: 114.136.127.112 && x-forwarded-proto: http && x-real_ip: 114.136.127.112
2016-03-17 14:26:12.848 [INFO ][Worker(1)] - 6237824 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: e9939978ef61 && connection: close && cookie: _ga=GA1.2.152166145.1516688144; _gid=GA1.2.1099392341.1517785486 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5550 && ui: w00000F6Bj && user-agent: webkit && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:12.855 [INFO ][Worker(4)] - 6237825 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.860 [INFO ][Worker(1)] - 6237826 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.903 [INFO ][Worker(7)] - 6237827 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 369cefbf4996 && connection: close && cookie: _ga=GA1.2.816907492.1517557919; _gid=GA1.2.1129582589.1517790885 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2063 && ui: t000000OF6 && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:12.908 [INFO ][Worker(7)] - 6237828 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.911 [INFO ][Worker(8)] - 6237829 * Server has received a request on thread Worker(8) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 435562a89151 && connection: close && host: localhost && li: zh-TW && ui: v00000Hw6U && user-agent: iPhone && x-forwarded-for: 42.74.0.11 && x-forwarded-proto: http && x-real_ip: 42.74.0.11
2016-03-17 14:26:12.913 [INFO ][Worker(8)] - 6237830 * Server responded with a response on thread Worker(8) && 401 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.942 [INFO ][Worker(5)] - 6237831 * Server has received a request on thread Worker(5) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:12.944 [INFO ][Worker(6)] - 6237832 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:12.949 [INFO ][Worker(6)] - 6237833 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.951 [INFO ][Worker(3)] - 6237834 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/notification && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:12.953 [INFO ][Worker(3)] - 6237835 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:12.964 [INFO ][Worker(5)] - 6237836 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.006 [INFO ][Worker(2)] - 6237837 * Server has received a request on thread Worker(2) && GET /api/v1/action/events && accept-encoding: gzip && at: 20f5a8cfc553 && connection: close && host: localhost && li: zh_TW && tp: 02 && ui: u00000I3FF && user-agent: Android && x-forwarded-for: 114.136.127.112 && x-forwarded-proto: http && x-real_ip: 114.136.127.112
2016-03-17 14:26:13.025 [INFO ][Worker(4)] - 6237838 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:13.032 [INFO ][Worker(4)] - 6237839 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.042 [INFO ][Worker(1)] - 6237840 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a2bf1dfe5f94 && connection: close && cookie: _ga=GA1.2.890131171.1516869873; _gid=GA1.2.270262551.1517884275 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5453 && ui: 1000000JCu && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:13.046 [INFO ][Worker(2)] - 6237841 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.048 [INFO ][Worker(1)] - 6237842 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.094 [INFO ][Worker(7)] - 6237843 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 63d0e148988a && connection: close && cookie: _ga=GA1.2.1851703346.1517789460; _gid=GA1.2.1041870897.1517789460 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=6181 && ui: j00000GL9b && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:13.099 [INFO ][Worker(7)] - 6237844 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.122 [INFO ][Worker(8)] - 6237845 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:13.153 [INFO ][Worker(6)] - 6237846 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: 5b9250e205a3 && connection: close && host: localhost && li: zh_TW && ui: t00000EA4C && user-agent: Android && x-forwarded-for: 59.126.246.50 && x-forwarded-proto: http && x-real_ip: 59.126.246.50
2016-03-17 14:26:13.190 [INFO ][Worker(6)] - 6237847 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.205 [INFO ][Worker(3)] - 6237848 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:13.212 [INFO ][Worker(3)] - 6237849 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.395 [INFO ][Worker(5)] - 6237850 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,en-us;q=0.8,en;q=0.6 && at: 315a9b8b84b0 && connection: close && cookie: _ga=GA1.2.324018008.1500365284; _gid=GA1.2.1631175925.1517852444 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4968 && ui: f00000Jd0T && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:13.395 [INFO ][Worker(4)] - 6237851 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:13.404 [INFO ][Worker(4)] - 6237852 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.408 [INFO ][Worker(5)] - 6237853 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.433 [INFO ][Worker(8)] - 6237854 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.569 [INFO ][Worker(2)] - 6237855 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:13.579 [INFO ][Worker(2)] - 6237856 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.589 [INFO ][Worker(1)] - 6237857 * Server has received a request on thread Worker(1) && PUT /api/v1/action/sys/info && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && content-length: 192 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:13.597 [INFO ][Worker(1)] - 6237858 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.654 [INFO ][Worker(7)] - 6237859 * Server has received a request on thread Worker(7) && GET /api/v1/action/chats && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:13.728 [INFO ][Worker(7)] - 6237860 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.845 [INFO ][Worker(6)] - 6237861 * Server has received a request on thread Worker(6) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: 620074f617dc && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:13.846 [INFO ][Worker(6)] - 6237862 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.862 [INFO ][Worker(3)] - 6237863 * Server has received a request on thread Worker(3) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: 95dfab6e47db && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:13.871 [INFO ][Worker(3)] - 6237864 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:13.961 [INFO ][Worker(4)] - 6237865 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:13.966 [INFO ][Worker(4)] - 6237866 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.028 [INFO ][Worker(5)] - 6237867 * Server has received a request on thread Worker(5) && GET /api/v1/action/events && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:14.040 [INFO ][Worker(8)] - 6237868 * Server has received a request on thread Worker(8) && GET /api/v1/action/chats && accept-encoding: gzip && at: 620074f617dc && connection: close && host: localhost && li: zh_TW && ui: N000000vDT && user-agent: Android && x-forwarded-for: 42.76.166.43 && x-forwarded-proto: http && x-real_ip: 42.76.166.43
2016-03-17 14:26:14.060 [INFO ][Worker(5)] - 6237869 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.144 [INFO ][Worker(8)] - 6237870 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.321 [INFO ][Worker(2)] - 6237871 * Server has received a request on thread Worker(2) && GET /api/v1/action/top_events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 2c4a28c00579 && connection: close && host: localhost && li: zh-TW && ui: u00000IFAs && user-agent: iPhone && x-forwarded-for: 114.24.157.152 && x-forwarded-proto: http && x-real_ip: 114.24.157.152
2016-03-17 14:26:14.328 [INFO ][Worker(2)] - 6237872 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.343 [INFO ][Worker(1)] - 6237873 * Server has received a request on thread Worker(1) && GET /api/v1/action/me/accounts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && ui: 200000HpAo && user-agent: iPhone && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:14.346 [INFO ][Worker(1)] - 6237874 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.365 [INFO ][Worker(7)] - 6237875 * Server has received a request on thread Worker(7) && GET /api/v1/action/events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 2c4a28c00579 && connection: close && host: localhost && li: zh-TW && ui: u00000IFAs && user-agent: iPhone && x-forwarded-for: 114.24.157.152 && x-forwarded-proto: http && x-real_ip: 114.24.157.152
2016-03-17 14:26:14.366 [INFO ][Worker(6)] - 6237876 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && ui: 200000HpAo && user-agent: iPhone && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:14.375 [INFO ][Worker(6)] - 6237877 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.378 [INFO ][Worker(7)] - 6237878 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.386 [INFO ][Worker(3)] - 6237879 * Server has received a request on thread Worker(3) && GET /api/v1/action/me/accounts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && ui: 200000HpAo && user-agent: iPhone && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:14.388 [INFO ][Worker(3)] - 6237880 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.394 [INFO ][Worker(4)] - 6237881 * Server has received a request on thread Worker(4) && GET /api/v1/action/sip/status && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:14.397 [INFO ][Worker(4)] - 6237882 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.635 [INFO ][Worker(5)] - 6237883 * Server has received a request on thread Worker(5) && GET /api/v1/action/top_events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && ui: 200000HpAo && user-agent: iPhone && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:14.642 [INFO ][Worker(5)] - 6237884 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.661 [INFO ][Worker(8)] - 6237885 * Server has received a request on thread Worker(8) && GET /api/v1/action/events && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && ui: 200000HpAo && user-agent: iPhone && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:14.674 [INFO ][Worker(8)] - 6237886 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.684 [INFO ][Worker(2)] - 6237887 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:14.690 [INFO ][Worker(2)] - 6237888 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.859 [INFO ][Worker(1)] - 6237889 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:14.863 [INFO ][Worker(1)] - 6237890 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:14.872 [INFO ][Worker(6)] - 6237891 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: c43358784aca && connection: close && cookie: _ga=GA1.2.353669437.1504921279; _gid=GA1.2.1845573779.1517896920 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4089 && ui: s00000EC8C && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:14.877 [INFO ][Worker(6)] - 6237892 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.103 [INFO ][Worker(7)] - 6237893 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:15.109 [INFO ][Worker(7)] - 6237894 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.130 [INFO ][Worker(3)] - 6237895 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 998dd2780cdb && connection: close && host: localhost && li: zh_TW && ui: X000000KEe && user-agent: Android && x-forwarded-for: 126.212.88.98 && x-forwarded-proto: http && x-real_ip: 126.212.88.98
2016-03-17 14:26:15.138 [INFO ][Worker(3)] - 6237896 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.190 [INFO ][Worker(4)] - 6237897 * Server has received a request on thread Worker(4) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:15.192 [INFO ][Worker(5)] - 6237898 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 2f6e96822a48 && connection: close && cookie: _ga=GA1.2.1406805857.1516872658; _gid=GA1.2.2117626729.1517896168 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=37 && ui: 1000000LEF && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:15.198 [INFO ][Worker(5)] - 6237899 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.202 [INFO ][Worker(4)] - 6237900 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.411 [INFO ][Worker(8)] - 6237901 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: 998dd2780cdb && connection: close && host: localhost && li: zh_TW && ui: X000000KEe && user-agent: Android && x-forwarded-for: 126.212.88.98 && x-forwarded-proto: http && x-real_ip: 126.212.88.98
2016-03-17 14:26:15.433 [INFO ][Worker(2)] - 6237902 * Server has received a request on thread Worker(2) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:15.435 [INFO ][Worker(2)] - 6237903 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.448 [INFO ][Worker(1)] - 6237904 * Server has received a request on thread Worker(1) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:15.488 [INFO ][Worker(6)] - 6237905 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:15.512 [INFO ][Worker(7)] - 6237906 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a7e79ddc18c2 && connection: close && cookie: _ga=GA1.2.1664620491.1516788333; _gid=GA1.2.1772992382.1517795862 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=9775 && ui: 0000000M4x && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:15.518 [INFO ][Worker(7)] - 6237907 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.522 [INFO ][Worker(8)] - 6237908 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.545 [INFO ][Worker(6)] - 6237909 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.572 [INFO ][Worker(3)] - 6237910 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:15.577 [INFO ][Worker(3)] - 6237911 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.625 [INFO ][Worker(5)] - 6237912 * Server has received a request on thread Worker(5) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:15.626 [INFO ][Worker(4)] - 6237913 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a976a43ff900 && connection: close && cookie: _ga=GA1.2.672735970.1516759915; _gid=GA1.2.142270734.1517789381 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8130 && ui: C00000GY15 && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:15.634 [INFO ][Worker(4)] - 6237914 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.635 [INFO ][Worker(5)] - 6237915 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.652 [INFO ][Worker(1)] - 6237916 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.656 [INFO ][Worker(2)] - 6237917 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:15.661 [INFO ][Worker(2)] - 6237918 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.700 [INFO ][Worker(7)] - 6237919 * Server has received a request on thread Worker(7) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:15.706 [INFO ][Worker(8)] - 6237920 * Server has received a request on thread Worker(8) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:15.708 [INFO ][Worker(7)] - 6237921 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.714 [INFO ][Worker(8)] - 6237922 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.757 [INFO ][Worker(6)] - 6237923 * Server has received a request on thread Worker(6) && GET /api/v1/action/messages && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:15.765 [INFO ][Worker(6)] - 6237924 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.791 [INFO ][Worker(3)] - 6237925 * Server has received a request on thread Worker(3) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:15.793 [INFO ][Worker(4)] - 6237926 * Server has received a request on thread Worker(4) && GET /api/v1/action/notification && accept-encoding: gzip && at: bfd0319231cc && connection: close && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:15.798 [INFO ][Worker(4)] - 6237927 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.821 [INFO ][Worker(3)] - 6237928 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.821 [INFO ][Worker(5)] - 6237929 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:15.827 [INFO ][Worker(5)] - 6237930 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.828 [INFO ][Worker(1)] - 6237931 * Server has received a request on thread Worker(1) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:15.855 [INFO ][Worker(1)] - 6237932 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.924 [INFO ][Worker(2)] - 6237933 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:15.930 [INFO ][Worker(2)] - 6237934 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:15.960 [INFO ][Worker(7)] - 6237935 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:15.965 [INFO ][Worker(7)] - 6237936 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.000 [INFO ][Worker(8)] - 6237937 * Server has received a request on thread Worker(8) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:16.008 [INFO ][Worker(8)] - 6237938 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.030 [INFO ][Worker(6)] - 6237939 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: a3f166a053a5 && connection: close && host: localhost && li: zh-TW && ui: X00000GPCL && user-agent: iPhone && x-forwarded-for: 220.136.63.88 && x-forwarded-proto: http && x-real_ip: 220.136.63.88
2016-03-17 14:26:16.035 [INFO ][Worker(4)] - 6237940 * Server has received a request on thread Worker(4) && GET /api/v1/action/messages && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:16.043 [INFO ][Worker(4)] - 6237941 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.044 [INFO ][Worker(3)] - 6237942 * Server has received a request on thread Worker(3) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 66 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:16.047 [INFO ][Worker(6)] - 6237943 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.049 [INFO ][Worker(3)] - 6237944 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.097 [INFO ][Worker(5)] - 6237945 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:16.101 [INFO ][Worker(5)] - 6237946 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.120 [INFO ][Worker(1)] - 6237947 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: b589721959a3 && connection: close && host: localhost && li: zh_TW && ui: 300000JHDq && user-agent: Android && x-forwarded-for: 1.164.13.127 && x-forwarded-proto: http && x-real_ip: 1.164.13.127
2016-03-17 14:26:16.127 [INFO ][Worker(1)] - 6237948 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.128 [INFO ][Worker(2)] - 6237949 * Server has received a request on thread Worker(2) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:16.139 [INFO ][Worker(2)] - 6237950 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.139 [INFO ][Worker(7)] - 6237951 * Server has received a request on thread Worker(7) && GET /api/v1/action/messages && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:16.147 [INFO ][Worker(7)] - 6237952 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.168 [INFO ][Worker(8)] - 6237953 * Server has received a request on thread Worker(8) && GET /api/v1/action/me/accounts && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:16.171 [INFO ][Worker(8)] - 6237954 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.192 [INFO ][Worker(4)] - 6237955 * Server has received a request on thread Worker(4) && PUT /api/v1/action/messages_read && accept-encoding: gzip && at: eca036aac033 && connection: close && content-length: 20 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:16.200 [INFO ][Worker(6)] - 6237956 * Server has received a request on thread Worker(6) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: a3f166a053a5 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: X00000GPCL && user-agent: iPhone && x-forwarded-for: 220.136.63.88 && x-forwarded-proto: http && x-real_ip: 220.136.63.88
2016-03-17 14:26:16.222 [INFO ][Worker(4)] - 6237957 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.234 [INFO ][Worker(6)] - 6237958 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.287 [INFO ][Worker(3)] - 6237959 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:16.292 [INFO ][Worker(3)] - 6237960 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.339 [INFO ][Worker(5)] - 6237961 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && uat: 7098820d1d5b && ui: 200000HpAo && user-agent: iPhone && uui: 200000HpAo && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:16.345 [INFO ][Worker(5)] - 6237962 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.382 [INFO ][Worker(1)] - 6237963 * Server has received a request on thread Worker(1) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && content-length: 190 && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:16.385 [INFO ][Worker(2)] - 6237964 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:16.388 [INFO ][Worker(1)] - 6237965 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.390 [INFO ][Worker(2)] - 6237966 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.395 [INFO ][Worker(7)] - 6237967 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 27bbefa06326 && connection: close && host: localhost && li: zh_TW && ui: h00000CT29 && user-agent: Android && x-forwarded-for: 42.77.135.111 && x-forwarded-proto: http && x-real_ip: 42.77.135.111
2016-03-17 14:26:16.400 [INFO ][Worker(7)] - 6237968 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.436 [INFO ][Worker(8)] - 6237969 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && ui: 200000HpAo && user-agent: iPhone && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:16.442 [INFO ][Worker(8)] - 6237970 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.454 [INFO ][Worker(4)] - 6237971 * Server has received a request on thread Worker(4) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:16.465 [INFO ][Worker(4)] - 6237972 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.477 [INFO ][Worker(6)] - 6237973 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:16.481 [INFO ][Worker(6)] - 6237974 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.494 [INFO ][Worker(3)] - 6237975 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 7098820d1d5b && connection: close && host: localhost && li: zh-TW && ui: 200000HpAo && user-agent: iPhone && x-forwarded-for: 1.165.214.8 && x-forwarded-proto: http && x-real_ip: 1.165.214.8
2016-03-17 14:26:16.498 [INFO ][Worker(3)] - 6237976 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.575 [INFO ][Worker(5)] - 6237977 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:16.581 [INFO ][Worker(5)] - 6237978 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.697 [INFO ][Worker(1)] - 6237979 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:16.702 [INFO ][Worker(1)] - 6237980 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.704 [INFO ][Worker(2)] - 6237981 * Server has received a request on thread Worker(2) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, ja-TW;q=0.8, zh-Hans-TW;q=0.7 && at: 8288785b9c21 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: l00000JV2x && user-agent: iPhone && x-forwarded-for: 123.194.176.62 && x-forwarded-proto: http && x-real_ip: 123.194.176.62
2016-03-17 14:26:16.704 [INFO ][Worker(7)] - 6237982 * Server has received a request on thread Worker(7) && PUT /api/v1/action/messages_read && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, ja-TW;q=0.8, zh-Hans-TW;q=0.7 && at: 8288785b9c21 && connection: close && content-length: 28 && host: localhost && li: zh-TW && ui: l00000JV2x && user-agent: iPhone && x-forwarded-for: 123.194.176.62 && x-forwarded-proto: http && x-real_ip: 123.194.176.62
2016-03-17 14:26:16.717 [INFO ][Worker(8)] - 6237983 * Server has received a request on thread Worker(8) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:16.736 [INFO ][Worker(8)] - 6237984 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.746 [INFO ][Worker(7)] - 6237985 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.804 [INFO ][Worker(4)] - 6237986 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a166fbbc315f && connection: close && cookie: _ga=GA1.2.2047144028.1516701732; _gid=GA1.2.573804594.1517703983 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7182 && ui: 600000Gf1c && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:16.804 [INFO ][Worker(2)] - 6237987 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.811 [INFO ][Worker(4)] - 6237988 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.907 [INFO ][Worker(6)] - 6237989 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:16.912 [INFO ][Worker(6)] - 6237990 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:16.943 [INFO ][Worker(3)] - 6237991 * Server has received a request on thread Worker(3) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1, zh-Hans-TW;q=0.9, bn-TW;q=0.8 && at: d4951b527a54 && connection: close && content-length: 190 && host: localhost && li: zh-TW && ui: Y00000JY8v && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:16.949 [INFO ][Worker(3)] - 6237992 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.044 [INFO ][Worker(5)] - 6237993 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:17.049 [INFO ][Worker(5)] - 6237994 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.158 [INFO ][Worker(1)] - 6237995 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:17.162 [INFO ][Worker(1)] - 6237996 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.319 [INFO ][Worker(8)] - 6237997 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 3d53398b6ed4 && connection: close && cookie: _ga=GA1.2.118585145.1508487651; _gid=GA1.2.616245660.1517809063 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: t000000p2s && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:17.325 [INFO ][Worker(8)] - 6237998 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.524 [INFO ][Worker(7)] - 6237999 * Server has received a request on thread Worker(7) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:17.528 [INFO ][Worker(7)] - 6238000 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.534 [INFO ][Worker(2)] - 6238001 * Server has received a request on thread Worker(2) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:17.535 [INFO ][Worker(4)] - 6238002 * Server has received a request on thread Worker(4) && GET /api/v1/action/me/accounts && accept-encoding: gzip && at: b2f1fcd65a64 && connection: close && host: localhost && li: zh_TW && ui: T00000HhGa && user-agent: Android && x-forwarded-for: 42.77.240.173 && x-forwarded-proto: http && x-real_ip: 42.77.240.173
2016-03-17 14:26:17.538 [INFO ][Worker(4)] - 6238003 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.558 [INFO ][Worker(2)] - 6238004 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.657 [INFO ][Worker(6)] - 6238005 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:17.662 [INFO ][Worker(6)] - 6238006 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.739 [INFO ][Worker(3)] - 6238007 * Server has received a request on thread Worker(3) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:17.749 [INFO ][Worker(3)] - 6238008 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.847 [INFO ][Worker(5)] - 6238009 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:17.852 [INFO ][Worker(5)] - 6238010 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.872 [INFO ][Worker(1)] - 6238011 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: e9939978ef61 && connection: close && cookie: _ga=GA1.2.152166145.1516688144; _gid=GA1.2.1099392341.1517785486 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5550 && ui: w00000F6Bj && user-agent: webkit && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:17.882 [INFO ][Worker(1)] - 6238012 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.889 [INFO ][Worker(8)] - 6238013 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:17.901 [INFO ][Worker(8)] - 6238014 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:17.925 [INFO ][Worker(7)] - 6238015 * Server has received a request on thread Worker(7) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && origin: https://localhost && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:17.927 [INFO ][Worker(7)] - 6238016 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.002 [INFO ][Worker(4)] - 6238017 * Server has received a request on thread Worker(4) && GET /api/v1/action/chats && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:18.057 [INFO ][Worker(2)] - 6238018 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:18.062 [INFO ][Worker(2)] - 6238019 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.076 [INFO ][Worker(4)] - 6238020 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.126 [INFO ][Worker(6)] - 6238021 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 63d0e148988a && connection: close && cookie: _ga=GA1.2.1851703346.1517789460; _gid=GA1.2.1041870897.1517789460 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=6181 && ui: j00000GL9b && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:18.132 [INFO ][Worker(6)] - 6238022 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.138 [INFO ][Worker(3)] - 6238023 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.146 [INFO ][Worker(3)] - 6238024 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.206 [INFO ][Worker(5)] - 6238025 * Server has received a request on thread Worker(5) && GET /api/v1/action/notices && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.267 [INFO ][Worker(1)] - 6238026 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.295 [INFO ][Worker(8)] - 6238027 * Server has received a request on thread Worker(8) && GET /api/v1/action/images && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:18.343 [INFO ][Worker(8)] - 6238028 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.379 [INFO ][Worker(7)] - 6238029 * Server has received a request on thread Worker(7) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.398 [INFO ][Worker(2)] - 6238030 * Server has received a request on thread Worker(2) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.405 [INFO ][Worker(1)] - 6238031 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.443 [INFO ][Worker(5)] - 6238032 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.458 [INFO ][Worker(4)] - 6238033 * Server has received a request on thread Worker(4) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && content-length: 0 && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:18.467 [INFO ][Worker(6)] - 6238034 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:18.467 [INFO ][Worker(4)] - 6238035 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.471 [INFO ][Worker(6)] - 6238036 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.513 [INFO ][Worker(3)] - 6238037 * Server has received a request on thread Worker(3) && GET /api/v1/action/events && accept-encoding: gzip && at: bfd0319231cc && connection: close && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:18.556 [INFO ][Worker(3)] - 6238038 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.588 [INFO ][Worker(7)] - 6238039 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.605 [INFO ][Worker(2)] - 6238040 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.741 [INFO ][Worker(8)] - 6238041 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 83f6115f9102 && connection: close && cookie: _ga=GA1.2.357338248.1516870251 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7849 && ui: j00000KG5p && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:18.745 [INFO ][Worker(8)] - 6238042 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.764 [INFO ][Worker(1)] - 6238043 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.770 [INFO ][Worker(1)] - 6238044 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.810 [INFO ][Worker(5)] - 6238045 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 616506f0c571 && connection: close && cookie: _ga=GA1.2.27660779.1517823698; _gid=GA1.2.217770643.1517823698 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8676 && ui: V000000J9B && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:18.814 [INFO ][Worker(5)] - 6238046 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.839 [INFO ][Worker(4)] - 6238047 * Server has received a request on thread Worker(4) && GET /api/v1/action/notices && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.893 [INFO ][Worker(6)] - 6238048 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: c4ead61636dc && connection: close && host: localhost && li: zh_TW && ui: X00000EC09 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:18.900 [INFO ][Worker(3)] - 6238049 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 369cefbf4996 && connection: close && cookie: _ga=GA1.2.816907492.1517557919; _gid=GA1.2.1129582589.1517790885 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2063 && ui: t000000OF6 && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:18.907 [INFO ][Worker(7)] - 6238050 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:18.907 [INFO ][Worker(3)] - 6238051 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.912 [INFO ][Worker(7)] - 6238052 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.949 [INFO ][Worker(6)] - 6238053 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:18.950 [INFO ][Worker(2)] - 6238054 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:18.955 [INFO ][Worker(2)] - 6238055 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.033 [INFO ][Worker(8)] - 6238056 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a2bf1dfe5f94 && connection: close && cookie: _ga=GA1.2.890131171.1516869873; _gid=GA1.2.270262551.1517884275 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5453 && ui: 1000000JCu && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:19.040 [INFO ][Worker(8)] - 6238057 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.055 [INFO ][Worker(1)] - 6238058 * Server has received a request on thread Worker(1) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:19.063 [INFO ][Worker(5)] - 6238059 * Server has received a request on thread Worker(5) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:19.067 [INFO ][Worker(5)] - 6238060 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.078 [INFO ][Worker(1)] - 6238062 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.079 [INFO ][Worker(4)] - 6238061 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.097 [INFO ][Worker(3)] - 6238063 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:19.101 [INFO ][Worker(3)] - 6238064 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.230 [INFO ][Worker(7)] - 6238065 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:19.238 [INFO ][Worker(7)] - 6238066 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.257 [INFO ][Worker(6)] - 6238067 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:19.270 [INFO ][Worker(6)] - 6238068 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.307 [INFO ][Worker(2)] - 6238069 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:19.311 [INFO ][Worker(2)] - 6238070 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.338 [INFO ][Worker(8)] - 6238071 * Server has received a request on thread Worker(8) && GET /api/v1/action/chats && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:19.390 [INFO ][Worker(5)] - 6238072 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,en-us;q=0.8,en;q=0.6 && at: 315a9b8b84b0 && connection: close && cookie: _ga=GA1.2.324018008.1500365284; _gid=GA1.2.1631175925.1517852444 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4968 && ui: f00000Jd0T && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:19.395 [INFO ][Worker(5)] - 6238073 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.413 [INFO ][Worker(8)] - 6238074 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.507 [INFO ][Worker(1)] - 6238075 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:19.511 [INFO ][Worker(1)] - 6238076 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.707 [INFO ][Worker(4)] - 6238077 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:19.711 [INFO ][Worker(4)] - 6238078 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:19.855 [INFO ][Worker(3)] - 6238079 * Server has received a request on thread Worker(3) && GET /api/v1/action/notices && accept-encoding: gzip && at: b68fdc17502c && connection: close && host: localhost && li: zh_TW && ui: u000003u5Z && user-agent: Android && x-forwarded-for: 111.83.146.155 && x-forwarded-proto: http && x-real_ip: 111.83.146.155
2016-03-17 14:26:19.890 [INFO ][Worker(7)] - 6238080 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: c43358784aca && connection: close && cookie: _ga=GA1.2.353669437.1504921279; _gid=GA1.2.1845573779.1517896920 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4089 && ui: s00000EC8C && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:19.896 [INFO ][Worker(7)] - 6238081 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.065 [INFO ][Worker(3)] - 6238082 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.127 [INFO ][Worker(6)] - 6238083 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:20.132 [INFO ][Worker(6)] - 6238084 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.193 [INFO ][Worker(2)] - 6238085 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:20.198 [INFO ][Worker(2)] - 6238086 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.264 [INFO ][Worker(5)] - 6238087 * Server has received a request on thread Worker(5) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && ui: t00000HkCr && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:20.427 [INFO ][Worker(5)] - 6238088 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.526 [INFO ][Worker(8)] - 6238089 * Server has received a request on thread Worker(8) && GET /api/v1/action/notification && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:20.531 [INFO ][Worker(8)] - 6238090 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.612 [INFO ][Worker(1)] - 6238091 * Server has received a request on thread Worker(1) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: 95dfab6e47db && connection: close && content-length: 66 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:20.619 [INFO ][Worker(1)] - 6238092 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.670 [INFO ][Worker(4)] - 6238093 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 0a877e23b0f9 && connection: close && host: localhost && li: zh_TW && ui: 800000DaEZ && user-agent: Android && x-forwarded-for: 1.200.213.81 && x-forwarded-proto: http && x-real_ip: 1.200.213.81
2016-03-17 14:26:20.677 [INFO ][Worker(4)] - 6238094 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.692 [INFO ][Worker(7)] - 6238095 * Server has received a request on thread Worker(7) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: 95dfab6e47db && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:20.700 [INFO ][Worker(7)] - 6238096 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:20.826 [INFO ][Worker(3)] - 6238097 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: a3f166a053a5 && connection: close && host: localhost && li: zh-TW && ui: X00000GPCL && user-agent: iPhone && x-forwarded-for: 220.136.63.88 && x-forwarded-proto: http && x-real_ip: 220.136.63.88
2016-03-17 14:26:20.833 [INFO ][Worker(3)] - 6238098 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.091 [INFO ][Worker(6)] - 6238099 * Server has received a request on thread Worker(6) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: a3f166a053a5 && connection: close && content-length: 0 && host: localhost && li: zh-TW && ui: X00000GPCL && user-agent: iPhone && x-forwarded-for: 220.136.63.88 && x-forwarded-proto: http && x-real_ip: 220.136.63.88
2016-03-17 14:26:21.100 [INFO ][Worker(6)] - 6238100 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.192 [INFO ][Worker(2)] - 6238101 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 2f6e96822a48 && connection: close && cookie: _ga=GA1.2.1406805857.1516872658; _gid=GA1.2.2117626729.1517896168 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=37 && ui: 1000000LEF && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:21.197 [INFO ][Worker(2)] - 6238102 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.331 [INFO ][Worker(5)] - 6238103 * Server has received a request on thread Worker(5) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 435562a89151 && connection: close && host: localhost && li: zh-TW && ui: v00000Hw6U && user-agent: iPhone && x-forwarded-for: 42.74.0.11 && x-forwarded-proto: http && x-real_ip: 42.74.0.11
2016-03-17 14:26:21.333 [INFO ][Worker(5)] - 6238104 * Server responded with a response on thread Worker(5) && 401 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.407 [INFO ][Worker(8)] - 6238105 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:21.411 [INFO ][Worker(8)] - 6238106 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.506 [INFO ][Worker(1)] - 6238107 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a7e79ddc18c2 && connection: close && cookie: _ga=GA1.2.1664620491.1516788333; _gid=GA1.2.1772992382.1517795862 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=9775 && ui: 0000000M4x && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:21.508 [INFO ][Worker(4)] - 6238108 * Server has received a request on thread Worker(4) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:21.509 [INFO ][Worker(7)] - 6238109 * Server has received a request on thread Worker(7) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:21.510 [INFO ][Worker(1)] - 6238110 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.557 [INFO ][Worker(3)] - 6238111 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:21.562 [INFO ][Worker(3)] - 6238112 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.628 [INFO ][Worker(6)] - 6238113 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a976a43ff900 && connection: close && cookie: _ga=GA1.2.672735970.1516759915; _gid=GA1.2.142270734.1517789381 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8130 && ui: C00000GY15 && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:21.637 [INFO ][Worker(6)] - 6238114 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.723 [INFO ][Worker(7)] - 6238115 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.726 [INFO ][Worker(4)] - 6238116 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:21.931 [INFO ][Worker(2)] - 6238117 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:21.937 [INFO ][Worker(2)] - 6238118 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:22.351 [INFO ][Worker(5)] - 6238119 * Server has received a request on thread Worker(5) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:22.352 [INFO ][Worker(8)] - 6238120 * Server has received a request on thread Worker(8) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:22.356 [INFO ][Worker(8)] - 6238121 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:22.375 [INFO ][Worker(5)] - 6238122 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:22.458 [INFO ][Worker(1)] - 6238123 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.83.151.225 && x-forwarded-proto: http && x-real_ip: 111.83.151.225
2016-03-17 14:26:22.463 [INFO ][Worker(1)] - 6238124 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:22.486 [INFO ][Worker(3)] - 6238125 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, zh-Hans-TW;q=0.8 && at: cf4df493012c && connection: close && host: localhost && li: zh-TW && ui: H00000FoDi && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:22.493 [INFO ][Worker(3)] - 6238126 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:22.584 [INFO ][Worker(6)] - 6238127 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:22.590 [INFO ][Worker(6)] - 6238128 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:22.803 [INFO ][Worker(7)] - 6238129 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a166fbbc315f && connection: close && cookie: _ga=GA1.2.2047144028.1516701732; _gid=GA1.2.573804594.1517703983 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7182 && ui: 600000Gf1c && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:22.812 [INFO ][Worker(7)] - 6238130 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:22.911 [INFO ][Worker(4)] - 6238131 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: e9939978ef61 && connection: close && cookie: _ga=GA1.2.152166145.1516688144; _gid=GA1.2.1099392341.1517785486 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5550 && ui: w00000F6Bj && user-agent: webkit && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:22.922 [INFO ][Worker(4)] - 6238132 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.145 [INFO ][Worker(2)] - 6238133 * Server has received a request on thread Worker(2) && GET /api/v1/action/images && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:23.160 [INFO ][Worker(2)] - 6238134 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.161 [INFO ][Worker(8)] - 6238135 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 63d0e148988a && connection: close && cookie: _ga=GA1.2.1851703346.1517789460; _gid=GA1.2.1041870897.1517789460 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=6181 && ui: j00000GL9b && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:23.165 [INFO ][Worker(8)] - 6238136 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.291 [INFO ][Worker(5)] - 6238137 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1 && at: 7eae2149113e && connection: close && host: localhost && li: zh-TW && ui: t00000HkCr && user-agent: iPhone && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:23.305 [INFO ][Worker(5)] - 6238138 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.322 [INFO ][Worker(1)] - 6238139 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 3d53398b6ed4 && connection: close && cookie: _ga=GA1.2.118585145.1508487651; _gid=GA1.2.616245660.1517809063 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: t000000p2s && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:23.329 [INFO ][Worker(1)] - 6238140 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.364 [INFO ][Worker(3)] - 6238141 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/notification && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:23.367 [INFO ][Worker(3)] - 6238142 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.394 [INFO ][Worker(6)] - 6238143 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: bfd0319231cc && connection: close && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:23.402 [INFO ][Worker(7)] - 6238144 * Server has received a request on thread Worker(7) && GET /api/v1/action/me/accounts && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:23.405 [INFO ][Worker(7)] - 6238145 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.420 [INFO ][Worker(6)] - 6238146 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.446 [INFO ][Worker(4)] - 6238147 * Server has received a request on thread Worker(4) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: 95dfab6e47db && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:23.454 [INFO ][Worker(4)] - 6238148 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.472 [INFO ][Worker(2)] - 6238149 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:23.478 [INFO ][Worker(2)] - 6238150 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.542 [INFO ][Worker(8)] - 6238151 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:23.542 [INFO ][Worker(5)] - 6238152 * Server has received a request on thread Worker(5) && GET /api/v1/action/notices && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:23.634 [INFO ][Worker(1)] - 6238153 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept-encoding: gzip && at: 95dfab6e47db && connection: close && host: localhost && li: zh_TW && ui: u00000I99C && user-agent: Android && x-forwarded-for: 42.78.225.172 && x-forwarded-proto: http && x-real_ip: 42.78.225.172
2016-03-17 14:26:23.659 [INFO ][Worker(3)] - 6238154 * Server has received a request on thread Worker(3) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && content-length: 190 && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:23.664 [INFO ][Worker(3)] - 6238155 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.705 [INFO ][Worker(7)] - 6238156 * Server has received a request on thread Worker(7) && GET /api/v1/action/chats && accept-encoding: gzip && at: bfd0319231cc && connection: close && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:23.714 [INFO ][Worker(1)] - 6238157 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.730 [INFO ][Worker(7)] - 6238158 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.742 [INFO ][Worker(6)] - 6238160 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: 84c73e63c00a && connection: close && host: localhost && li: zh_TW && ui: U00000HwAQ && user-agent: Android && x-forwarded-for: 42.76.116.144 && x-forwarded-proto: http && x-real_ip: 42.76.116.144
2016-03-17 14:26:23.743 [INFO ][Worker(5)] - 6238159 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.751 [INFO ][Worker(8)] - 6238161 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.781 [INFO ][Worker(6)] - 6238162 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.784 [INFO ][Worker(4)] - 6238163 * Server has received a request on thread Worker(4) && PUT /api/v1/action/sys/counts && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 66 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:23.789 [INFO ][Worker(4)] - 6238164 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.798 [INFO ][Worker(2)] - 6238165 * Server has received a request on thread Worker(2) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f65b3fe8deec && connection: close && host: localhost && li: zh-TW && uat: f65b3fe8deec && ui: b00000Hn18 && user-agent: iPhone && uui: b00000Hn18 && x-forwarded-for: 220.129.154.19 && x-forwarded-proto: http && x-real_ip: 220.129.154.19
2016-03-17 14:26:23.816 [INFO ][Worker(2)] - 6238166 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:23.997 [INFO ][Worker(3)] - 6238167 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:24.006 [INFO ][Worker(3)] - 6238168 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.028 [INFO ][Worker(1)] - 6238169 * Server has received a request on thread Worker(1) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && origin: https://localhost && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:24.030 [INFO ][Worker(1)] - 6238170 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.048 [INFO ][Worker(7)] - 6238171 * Server has received a request on thread Worker(7) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && cache-control: max-age=0 && connection: close && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.064 [INFO ][Worker(7)] - 6238172 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.342 [INFO ][Worker(5)] - 6238173 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:24.348 [INFO ][Worker(5)] - 6238174 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.402 [INFO ][Worker(8)] - 6238175 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: ee6c52200c5e && connection: close && host: localhost && li: zh-TW && ui: E00000DGDm && user-agent: iPhone && x-forwarded-for: 223.136.253.38 && x-forwarded-proto: http && x-real_ip: 223.136.253.38
2016-03-17 14:26:24.408 [INFO ][Worker(8)] - 6238176 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.629 [INFO ][Worker(6)] - 6238177 * Server has received a request on thread Worker(6) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:24.635 [INFO ][Worker(4)] - 6238178 * Server has received a request on thread Worker(4) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:24.639 [INFO ][Worker(2)] - 6238179 * Server has received a request on thread Worker(2) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, ja-TW;q=0.8, zh-Hans-TW;q=0.7 && at: 8288785b9c21 && connection: close && content-length: 190 && host: localhost && li: zh-TW && ui: l00000JV2x && user-agent: iPhone && x-forwarded-for: 123.194.176.62 && x-forwarded-proto: http && x-real_ip: 123.194.176.62
2016-03-17 14:26:24.645 [INFO ][Worker(2)] - 6238180 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.663 [INFO ][Worker(3)] - 6238181 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, ja-TW;q=0.8, zh-Hans-TW;q=0.7 && at: 8288785b9c21 && connection: close && host: localhost && li: zh-TW && ui: l00000JV2x && user-agent: iPhone && x-forwarded-for: 123.194.176.62 && x-forwarded-proto: http && x-real_ip: 123.194.176.62
2016-03-17 14:26:24.670 [INFO ][Worker(3)] - 6238182 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.779 [INFO ][Worker(1)] - 6238183 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2590 && ui: v00000JrBO && user-agent: webkit && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.780 [INFO ][Worker(7)] - 6238184 * Server has received a request on thread Worker(7) && GET /api/v1/action/notices && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2590 && ui: v00000JrBO && user-agent: webkit && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.793 [INFO ][Worker(5)] - 6238185 * Server has received a request on thread Worker(5) && GET /api/v1/action/top_events && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.794 [INFO ][Worker(1)] - 6238186 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.801 [INFO ][Worker(8)] - 6238187 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 6d7329eb9ebc && connection: close && host: localhost && li: zh-TW && ui: f00000Hk4c && user-agent: iPhone && x-forwarded-for: 114.136.48.18 && x-forwarded-proto: http && x-real_ip: 114.136.48.18
2016-03-17 14:26:24.805 [INFO ][Worker(5)] - 6238188 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.810 [INFO ][Worker(2)] - 6238189 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 616506f0c571 && connection: close && cookie: _ga=GA1.2.27660779.1517823698; _gid=GA1.2.217770643.1517823698 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8676 && ui: V000000J9B && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:24.811 [INFO ][Worker(8)] - 6238190 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.817 [INFO ][Worker(2)] - 6238191 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.832 [INFO ][Worker(3)] - 6238192 * Server has received a request on thread Worker(3) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.832 [INFO ][Worker(1)] - 6238193 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2590 && ui: v00000JrBO && user-agent: webkit && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.834 [INFO ][Worker(3)] - 6238194 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.838 [INFO ][Worker(1)] - 6238195 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.840 [INFO ][Worker(6)] - 6238196 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.855 [INFO ][Worker(4)] - 6238197 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.876 [INFO ][Worker(5)] - 6238198 * Server has received a request on thread Worker(5) && GET /api/v1/action/chats && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1, en-TW;q=0.9, ja-TW;q=0.8, zh-Hans-TW;q=0.7 && at: 8288785b9c21 && connection: close && host: localhost && li: zh-TW && ui: l00000JV2x && user-agent: iPhone && x-forwarded-for: 123.194.176.62 && x-forwarded-proto: http && x-real_ip: 123.194.176.62
2016-03-17 14:26:24.891 [INFO ][Worker(5)] - 6238199 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.894 [INFO ][Worker(8)] - 6238200 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 369cefbf4996 && connection: close && cookie: _ga=GA1.2.816907492.1517557919; _gid=GA1.2.1129582589.1517790885 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2063 && ui: t000000OF6 && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:24.899 [INFO ][Worker(8)] - 6238201 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.910 [INFO ][Worker(2)] - 6238202 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: c43358784aca && connection: close && cookie: _ga=GA1.2.353669437.1504921279; _gid=GA1.2.1845573779.1517896920 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4089 && ui: s00000EC8C && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:24.912 [INFO ][Worker(3)] - 6238203 * Server has received a request on thread Worker(3) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.914 [INFO ][Worker(2)] - 6238204 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.919 [INFO ][Worker(3)] - 6238205 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.932 [INFO ][Worker(1)] - 6238206 * Server has received a request on thread Worker(1) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.934 [INFO ][Worker(6)] - 6238207 * Server has received a request on thread Worker(6) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:24.935 [INFO ][Worker(4)] - 6238208 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:24.939 [INFO ][Worker(1)] - 6238209 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.941 [INFO ][Worker(4)] - 6238210 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:24.941 [INFO ][Worker(6)] - 6238211 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.026 [INFO ][Worker(5)] - 6238212 * Server has received a request on thread Worker(5) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: b35aa72a64cf && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: k000003sAD && user-agent: Android && x-forwarded-for: 111.82.99.118 && x-forwarded-proto: http && x-real_ip: 111.82.99.118
2016-03-17 14:26:25.033 [INFO ][Worker(5)] - 6238213 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.044 [INFO ][Worker(8)] - 6238214 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a2bf1dfe5f94 && connection: close && cookie: _ga=GA1.2.890131171.1516869873; _gid=GA1.2.270262551.1517884275 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5453 && ui: 1000000JCu && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:25.048 [INFO ][Worker(8)] - 6238215 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.075 [INFO ][Worker(7)] - 6238216 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.277 [INFO ][Worker(2)] - 6238217 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:25.282 [INFO ][Worker(2)] - 6238218 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.288 [INFO ][Worker(3)] - 6238219 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:25.299 [INFO ][Worker(3)] - 6238220 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.381 [INFO ][Worker(1)] - 6238221 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:25.390 [INFO ][Worker(4)] - 6238222 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,en-us;q=0.8,en;q=0.6 && at: 315a9b8b84b0 && connection: close && cookie: _ga=GA1.2.324018008.1500365284; _gid=GA1.2.1631175925.1517852444 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4968 && ui: f00000Jd0T && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:25.396 [INFO ][Worker(4)] - 6238223 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.444 [INFO ][Worker(1)] - 6238224 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.586 [INFO ][Worker(6)] - 6238225 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:25.592 [INFO ][Worker(6)] - 6238226 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.637 [INFO ][Worker(5)] - 6238227 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:25.642 [INFO ][Worker(5)] - 6238228 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.652 [INFO ][Worker(8)] - 6238229 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:25.657 [INFO ][Worker(8)] - 6238230 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.797 [INFO ][Worker(7)] - 6238231 * Server has received a request on thread Worker(7) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:25.805 [INFO ][Worker(2)] - 6238232 * Server has received a request on thread Worker(2) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:25.810 [INFO ][Worker(2)] - 6238233 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.811 [INFO ][Worker(3)] - 6238234 * Server has received a request on thread Worker(3) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: b35aa72a64cf && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: k000003sAD && user-agent: Android && x-forwarded-for: 111.82.99.118 && x-forwarded-proto: http && x-real_ip: 111.82.99.118
2016-03-17 14:26:25.821 [INFO ][Worker(7)] - 6238235 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.821 [INFO ][Worker(3)] - 6238236 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:25.847 [INFO ][Worker(4)] - 6238237 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:25.851 [INFO ][Worker(4)] - 6238238 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.057 [INFO ][Worker(1)] - 6238239 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:26.062 [INFO ][Worker(1)] - 6238240 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.117 [INFO ][Worker(6)] - 6238241 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:26.121 [INFO ][Worker(6)] - 6238242 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.248 [INFO ][Worker(5)] - 6238243 * Server has received a request on thread Worker(5) && GET /api/v1/action/images && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:26.300 [INFO ][Worker(5)] - 6238244 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.326 [INFO ][Worker(8)] - 6238245 * Server has received a request on thread Worker(8) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: b35aa72a64cf && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: k000003sAD && user-agent: Android && x-forwarded-for: 111.82.99.118 && x-forwarded-proto: http && x-real_ip: 111.82.99.118
2016-03-17 14:26:26.336 [INFO ][Worker(8)] - 6238246 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.337 [INFO ][Worker(2)] - 6238247 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:26.342 [INFO ][Worker(2)] - 6238248 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.451 [INFO ][Worker(7)] - 6238249 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:26.456 [INFO ][Worker(7)] - 6238250 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.473 [INFO ][Worker(3)] - 6238251 * Server has received a request on thread Worker(3) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && content-length: 0 && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:26.481 [INFO ][Worker(3)] - 6238252 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.487 [INFO ][Worker(4)] - 6238253 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:26.491 [INFO ][Worker(4)] - 6238254 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.501 [INFO ][Worker(1)] - 6238255 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW;q=1, zh-Hans-TW;q=0.9, en-TW;q=0.8 && at: f4f28adf3a00 && connection: close && host: localhost && li: zh-TW && ui: 100000GP9S && user-agent: iPhone && x-forwarded-for: 36.231.15.184 && x-forwarded-proto: http && x-real_ip: 36.231.15.184
2016-03-17 14:26:26.513 [INFO ][Worker(1)] - 6238256 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.646 [INFO ][Worker(6)] - 6238257 * Server has received a request on thread Worker(6) && POST /api/v1/action/login && accept: */* && accept-encoding: gzip, deflate && connection: close && content-length: 115 && host: localhost && li: zh_TW && user-agent: python && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:26.656 [INFO ][Worker(6)] - 6238258 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.667 [INFO ][Worker(5)] - 6238259 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:26.671 [INFO ][Worker(5)] - 6238260 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.772 [INFO ][Worker(8)] - 6238261 * Server has received a request on thread Worker(8) && GET /api/v1/action/users && accept: */* && accept-encoding: gzip, deflate && at: 305da97fb8ac && connection: close && host: localhost && li: zh_TW && ui: v000000G94 && user-agent: python && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:26.781 [INFO ][Worker(8)] - 6238262 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:26.998 [INFO ][Worker(2)] - 6238263 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: b298c1646d3b && connection: close && host: localhost && li: zh-TW && ui: 200000IG6i && user-agent: iPhone && x-forwarded-for: 223.140.120.209 && x-forwarded-proto: http && x-real_ip: 223.140.120.209
2016-03-17 14:26:27.002 [INFO ][Worker(2)] - 6238264 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.097 [INFO ][Worker(7)] - 6238265 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:27.102 [INFO ][Worker(7)] - 6238266 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.192 [INFO ][Worker(3)] - 6238267 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 2f6e96822a48 && connection: close && cookie: _ga=GA1.2.1406805857.1516872658; _gid=GA1.2.2117626729.1517896168 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=37 && ui: 1000000LEF && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:27.200 [INFO ][Worker(3)] - 6238268 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.204 [INFO ][Worker(4)] - 6238269 * Server has received a request on thread Worker(4) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:27.205 [INFO ][Worker(4)] - 6238270 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.229 [INFO ][Worker(1)] - 6238271 * Server has received a request on thread Worker(1) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:27.236 [INFO ][Worker(1)] - 6238272 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.247 [INFO ][Worker(6)] - 6238273 * Server has received a request on thread Worker(6) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:27.253 [INFO ][Worker(6)] - 6238274 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.258 [INFO ][Worker(5)] - 6238275 * Server has received a request on thread Worker(5) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:27.260 [INFO ][Worker(8)] - 6238276 * Server has received a request on thread Worker(8) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:27.265 [INFO ][Worker(5)] - 6238277 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.266 [INFO ][Worker(8)] - 6238278 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.448 [INFO ][Worker(2)] - 6238279 * Server has received a request on thread Worker(2) && POST /api/v1/action/files/dl && accept-encoding: gzip && at: bfd0319231cc && connection: close && content-length: 0 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: O00000EDG8 && user-agent: Android && x-forwarded-for: 118.168.113.153 && x-forwarded-proto: http && x-real_ip: 118.168.113.153
2016-03-17 14:26:27.457 [INFO ][Worker(2)] - 6238280 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.515 [INFO ][Worker(7)] - 6238281 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a7e79ddc18c2 && connection: close && cookie: _ga=GA1.2.1664620491.1516788333; _gid=GA1.2.1772992382.1517795862 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=9775 && ui: 0000000M4x && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:27.524 [INFO ][Worker(7)] - 6238282 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.566 [INFO ][Worker(3)] - 6238283 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:27.571 [INFO ][Worker(3)] - 6238284 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.627 [INFO ][Worker(4)] - 6238285 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a976a43ff900 && connection: close && cookie: _ga=GA1.2.672735970.1516759915; _gid=GA1.2.142270734.1517789381 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8130 && ui: C00000GY15 && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:27.633 [INFO ][Worker(4)] - 6238286 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.748 [INFO ][Worker(1)] - 6238287 * Server has received a request on thread Worker(1) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:27.768 [INFO ][Worker(6)] - 6238288 * Server has received a request on thread Worker(6) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:27.776 [INFO ][Worker(5)] - 6238289 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:27.781 [INFO ][Worker(5)] - 6238290 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.950 [INFO ][Worker(8)] - 6238292 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: e9939978ef61 && connection: close && cookie: _ga=GA1.2.152166145.1516688144; _gid=GA1.2.1099392341.1517785486 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5550 && ui: w00000F6Bj && user-agent: webkit && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:27.952 [INFO ][Worker(1)] - 6238291 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.960 [INFO ][Worker(8)] - 6238293 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.971 [INFO ][Worker(6)] - 6238294 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:27.977 [INFO ][Worker(2)] - 6238295 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:27.981 [INFO ][Worker(2)] - 6238296 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.195 [INFO ][Worker(7)] - 6238297 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 63d0e148988a && connection: close && cookie: _ga=GA1.2.1851703346.1517789460; _gid=GA1.2.1041870897.1517789460 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=6181 && ui: j00000GL9b && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:28.202 [INFO ][Worker(7)] - 6238298 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.213 [INFO ][Worker(3)] - 6238299 * Server has received a request on thread Worker(3) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:28.224 [INFO ][Worker(4)] - 6238300 * Server has received a request on thread Worker(4) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:28.230 [INFO ][Worker(4)] - 6238301 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.236 [INFO ][Worker(3)] - 6238302 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.287 [INFO ][Worker(5)] - 6238303 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/version && accept-encoding: gzip && av: 0.0.0 && connection: close && host: localhost && li: zh_TW && os: 1 && tp: 1 && user-agent: Android && x-forwarded-for: 111.82.164.71 && x-forwarded-proto: http && x-real_ip: 111.82.164.71
2016-03-17 14:26:28.292 [INFO ][Worker(5)] - 6238304 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.408 [INFO ][Worker(1)] - 6238305 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:28.414 [INFO ][Worker(1)] - 6238306 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.418 [INFO ][Worker(8)] - 6238307 * Server has received a request on thread Worker(8) && GET /api/v1/action/images && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 94f58bac7cb5 && connection: close && cookie: __auc=4229dc471602208617a1f6e9d9c; __utma=156942895.808722351.1512399463.1512399463.1512399463.1; __utmz=156942895.1512399463.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _ga=GA1.2.808722351.1512399463 && host: localhost && li: zh-TW && uat: 94f58bac7cb5 && ui: m00000CxAo && user-agent: iPhone && uui: m00000CxAo && x-forwarded-for: 42.77.107.15 && x-forwarded-proto: http && x-real_ip: 42.77.107.15
2016-03-17 14:26:28.435 [INFO ][Worker(8)] - 6238308 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.480 [INFO ][Worker(6)] - 6238309 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:28.505 [INFO ][Worker(2)] - 6238310 * Server has received a request on thread Worker(2) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 20f5a8cfc553 && connection: close && host: localhost && li: zh_TW && ui: u00000I3FF && user-agent: Android && x-forwarded-for: 114.136.127.112 && x-forwarded-proto: http && x-real_ip: 114.136.127.112
2016-03-17 14:26:28.515 [INFO ][Worker(2)] - 6238311 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.528 [INFO ][Worker(7)] - 6238312 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 94f58bac7cb5 && connection: close && cookie: __auc=4229dc471602208617a1f6e9d9c; __utma=156942895.808722351.1512399463.1512399463.1512399463.1; __utmz=156942895.1512399463.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _ga=GA1.2.808722351.1512399463 && host: localhost && li: zh-TW && ui: m00000CxAo && user-agent: iPhone && x-forwarded-for: 42.77.107.15 && x-forwarded-proto: http && x-real_ip: 42.77.107.15
2016-03-17 14:26:28.535 [INFO ][Worker(7)] - 6238313 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.536 [INFO ][Worker(4)] - 6238314 * Server has received a request on thread Worker(4) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: 94f58bac7cb5 && connection: close && content-length: 0 && cookie: __auc=4229dc471602208617a1f6e9d9c; __utma=156942895.808722351.1512399463.1512399463.1512399463.1; __utmz=156942895.1512399463.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _ga=GA1.2.808722351.1512399463 && host: localhost && li: zh-TW && uat: 94f58bac7cb5 && ui: m00000CxAo && user-agent: iPhone && uui: m00000CxAo && x-forwarded-for: 42.77.107.15 && x-forwarded-proto: http && x-real_ip: 42.77.107.15
2016-03-17 14:26:28.544 [INFO ][Worker(4)] - 6238315 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.548 [INFO ][Worker(6)] - 6238316 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.595 [INFO ][Worker(3)] - 6238317 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:28.599 [INFO ][Worker(3)] - 6238318 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.787 [INFO ][Worker(5)] - 6238319 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a166fbbc315f && connection: close && cookie: _ga=GA1.2.2047144028.1516701732; _gid=GA1.2.573804594.1517703983 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=7182 && ui: 600000Gf1c && user-agent: webkit && x-forwarded-for: 59.125.229.250 && x-forwarded-proto: http && x-real_ip: 59.125.229.250
2016-03-17 14:26:28.788 [INFO ][Worker(1)] - 6238320 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept-encoding: gzip && at: 20f5a8cfc553 && connection: close && host: localhost && li: zh_TW && ui: u00000I3FF && user-agent: Android && x-forwarded-for: 114.136.127.112 && x-forwarded-proto: http && x-real_ip: 114.136.127.112
2016-03-17 14:26:28.795 [INFO ][Worker(5)] - 6238321 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:28.841 [INFO ][Worker(1)] - 6238322 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.138 [INFO ][Worker(8)] - 6238323 * Server has received a request on thread Worker(8) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:29.145 [INFO ][Worker(8)] - 6238324 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.156 [INFO ][Worker(2)] - 6238325 * Server has received a request on thread Worker(2) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:29.160 [INFO ][Worker(7)] - 6238326 * Server has received a request on thread Worker(7) && POST /api/v1/action/files/dl && accept: */* && accept-encoding: gzip, deflate && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: f6e373c3043c && connection: close && content-length: 4 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.634846174.1517218811; _gid=GA1.2.883780015.1517668638; _gat=1 && host: localhost && li: zh_TW && origin: https://localhost && referer: https://localhost/po/app/?v=2590 && uat: f6e373c3043c && ui: v00000JrBO && user-agent: webkit && uui: v00000JrBO && x-forwarded-for: 210.71.217.251 && x-forwarded-proto: http && x-real_ip: 210.71.217.251
2016-03-17 14:26:29.162 [INFO ][Worker(2)] - 6238327 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.166 [INFO ][Worker(7)] - 6238328 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.216 [INFO ][Worker(4)] - 6238329 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:29.222 [INFO ][Worker(4)] - 6238330 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.282 [INFO ][Worker(6)] - 6238331 * Server has received a request on thread Worker(6) && GET /api/v1/action/chats && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:29.312 [INFO ][Worker(3)] - 6238332 * Server has received a request on thread Worker(3) && PUT /api/v1/action/sys/info && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && content-length: 192 && content-type: application/x-www-form-urlencoded && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:29.319 [INFO ][Worker(5)] - 6238333 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 3d53398b6ed4 && connection: close && cookie: _ga=GA1.2.118585145.1508487651; _gid=GA1.2.616245660.1517809063 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: t000000p2s && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:29.320 [INFO ][Worker(3)] - 6238334 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.325 [INFO ][Worker(5)] - 6238335 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.346 [INFO ][Worker(6)] - 6238336 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.680 [INFO ][Worker(1)] - 6238337 * Server has received a request on thread Worker(1) && GET /api/v1/action/chats && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:29.704 [INFO ][Worker(1)] - 6238338 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.885 [INFO ][Worker(8)] - 6238339 * Server has received a request on thread Worker(8) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:29.896 [INFO ][Worker(8)] - 6238340 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.919 [INFO ][Worker(2)] - 6238341 * Server has received a request on thread Worker(2) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: en-US,en;q=0.8 && at: 64123f7fd90e && connection: close && content-length: 49 && content-type: application/x-www-form-urlencoded; charset=UTF-8 && cookie: _ga=GA1.2.2060567998.1517216268; _gid=GA1.2.644341586.1517903279 && host: localhost && li: en_US && origin: https://localhost && referer: https://localhost/po/app/ && ui: G0000000Em && user-agent: webkit && x-forwarded-for: 150.117.200.204 && x-forwarded-proto: http && x-real_ip: 150.117.200.204
2016-03-17 14:26:29.921 [INFO ][Worker(2)] - 6238342 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:29.929 [INFO ][Worker(7)] - 6238343 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: c43358784aca && connection: close && cookie: _ga=GA1.2.353669437.1504921279; _gid=GA1.2.1845573779.1517896920 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=4089 && ui: s00000EC8C && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:29.935 [INFO ][Worker(7)] - 6238344 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:30.231 [INFO ][Worker(4)] - 6238345 * Server has received a request on thread Worker(4) && PUT /api/v1/action/sys/counts && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-Hant-TW;q=1 && at: f7d27608ca6b && connection: close && content-length: 190 && host: localhost && li: zh-TW && ui: 500000XJ3v && user-agent: iPhone && x-forwarded-for: 36.228.49.121 && x-forwarded-proto: http && x-real_ip: 36.228.49.121
2016-03-17 14:26:30.236 [INFO ][Worker(4)] - 6238346 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:30.615 [INFO ][Worker(3)] - 6238347 * Server has received a request on thread Worker(3) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: 199b2cecaf2a && connection: close && host: localhost && li: zh_TW && ui: E00000XC5o && user-agent: Android && x-forwarded-for: 223.139.190.138 && x-forwarded-proto: http && x-real_ip: 223.139.190.138
2016-03-17 14:26:30.622 [INFO ][Worker(3)] - 6238348 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:30.810 [INFO ][Worker(5)] - 6238349 * Server has received a request on thread Worker(5) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 616506f0c571 && connection: close && cookie: _ga=GA1.2.27660779.1517823698; _gid=GA1.2.217770643.1517823698 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=8676 && ui: V000000J9B && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:30.810 [INFO ][Worker(6)] - 6238350 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: 6d7329eb9ebc && connection: close && host: localhost && li: zh-TW && ui: f00000Hk4c && user-agent: iPhone && x-forwarded-for: 114.136.48.18 && x-forwarded-proto: http && x-real_ip: 114.136.48.18
2016-03-17 14:26:30.812 [INFO ][Worker(1)] - 6238351 * Server has received a request on thread Worker(1) && GET /api/v1/action/sys/polling && accept-encoding: gzip && at: eca036aac033 && connection: close && host: localhost && li: zh_TW && ui: G00000CR2Q && user-agent: Android && x-forwarded-for: 36.225.149.42 && x-forwarded-proto: http && x-real_ip: 36.225.149.42
2016-03-17 14:26:30.817 [INFO ][Worker(5)] - 6238352 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:30.818 [INFO ][Worker(6)] - 6238353 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:30.822 [INFO ][Worker(1)] - 6238354 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:30.878 [INFO ][Worker(8)] - 6238355 * Server has received a request on thread Worker(8) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:30.898 [INFO ][Worker(2)] - 6238356 * Server has received a request on thread Worker(2) && GET /api/v1/action/notices && accept-encoding: gzip && at: 85902e1af437 && connection: close && host: localhost && li: zh_TW && ui: 000000Hp12 && user-agent: Android && x-forwarded-for: 203.75.129.247 && x-forwarded-proto: http && x-real_ip: 203.75.129.247
2016-03-17 14:26:30.905 [INFO ][Worker(7)] - 6238357 * Server has received a request on thread Worker(7) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: 369cefbf4996 && connection: close && cookie: _ga=GA1.2.816907492.1517557919; _gid=GA1.2.1129582589.1517790885 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=2063 && ui: t000000OF6 && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:30.912 [INFO ][Worker(7)] - 6238358 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.039 [INFO ][Worker(4)] - 6238359 * Server has received a request on thread Worker(4) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: gzip, deflate, sdch && accept-language: zh-TW,zh;q=0.8,en-US;q=0.6,en;q=0.4 && at: a2bf1dfe5f94 && connection: close && cookie: _ga=GA1.2.890131171.1516869873; _gid=GA1.2.270262551.1517884275 && host: localhost && li: zh_TW && referer: https://localhost/po/app/?v=5453 && ui: 1000000JCu && user-agent: webkit && x-forwarded-for: 118.163.25.228 && x-forwarded-proto: http && x-real_ip: 118.163.25.228
2016-03-17 14:26:31.077 [INFO ][Worker(3)] - 6238360 * Server has received a request on thread Worker(3) && GET /api/v1/action/events && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:31.081 [INFO ][Worker(4)] - 6238361 * Server responded with a response on thread Worker(4) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.086 [INFO ][Worker(5)] - 6238362 * Server has received a request on thread Worker(5) && GET /api/v1/action/events/participants && accept-encoding: gzip && at: a912ae2e8a24 && connection: close && host: localhost && li: zh_TW && ui: C000000M9n && user-agent: Android && x-forwarded-for: 49.214.183.76 && x-forwarded-proto: http && x-real_ip: 49.214.183.76
2016-03-17 14:26:31.091 [INFO ][Worker(5)] - 6238363 * Server responded with a response on thread Worker(5) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.109 [INFO ][Worker(3)] - 6238364 * Server responded with a response on thread Worker(3) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.124 [INFO ][Worker(8)] - 6238365 * Server responded with a response on thread Worker(8) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.157 [INFO ][Worker(2)] - 6238366 * Server responded with a response on thread Worker(2) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.243 [INFO ][Worker(6)] - 6238367 * Server has received a request on thread Worker(6) && GET /api/v1/action/sys/polling && accept: */* && accept-encoding: br, gzip, deflate && accept-language: zh-TW;q=1 && at: f96a9a398802 && connection: close && host: localhost && li: zh-TW && ui: W00000ENF3 && user-agent: iPhone && x-forwarded-for: 223.136.38.165 && x-forwarded-proto: http && x-real_ip: 223.136.38.165
2016-03-17 14:26:31.261 [INFO ][Worker(6)] - 6238368 * Server responded with a response on thread Worker(6) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.279 [INFO ][Worker(1)] - 6238369 * Server has received a request on thread Worker(1) && GET /api/v1/action/messages && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:31.280 [INFO ][Worker(7)] - 6238370 * Server has received a request on thread Worker(7) && GET /api/v1/action/notification && accept-encoding: gzip && at: 82e5dc3eda37 && connection: close && host: localhost && li: zh_TW && ui: x00000Cu14 && user-agent: Android && x-forwarded-for: 221.120.80.192 && x-forwarded-proto: http && x-real_ip: 221.120.80.192
2016-03-17 14:26:31.285 [INFO ][Worker(7)] - 6238371 * Server responded with a response on thread Worker(7) && 200 && Content-Type: application/json; charset=utf-8
2016-03-17 14:26:31.288 [INFO ][Worker(1)] - 6238372 * Server responded with a response on thread Worker(1) && 200 && Content-Type: application/json; charset=utf-8

log2csv.py

#!/usr/bin/python
#coding:utf-8

import sys
import re
import csv
from datetime import datetime

index = {
    "time": 0,
    "ui": 1,
    "li": 2,
    "api": 3,
    "user-agent": 4,
    "run_time": 5,
    "http_status": 6
}

writer = csv.writer(sys.stdout)
dict = {}

for line in sys.stdin:
    row = [
        "NA",
        "NA",
        "NA",
        "NA",
        "NA",
        "NA",
        "NA"
    ]

    parts = line.split(' && ')

    m = re.match(r'^([0-9-]+) ([0-9:.]+) \[[^]]+\]\[([^]]+)\]', parts[0])
    row[index["time"]] = m.group(1) + " " + m.group(2)
    worker = m.group(3)

    row[index["api"]] = parts[1]
    headers = parts[2:]

    for header in headers:
        array = header.split(':')
        key = array[0].strip()
        val = array[1].strip()
        if key in index:
            row[index[key]] = re.sub(r',', '', val)


    if re.search(r'Server has received', parts[0]):
        data = dict.get(worker)
        if data:
            data[index["run_time"]] = -1
            writer.writerow(data)
            del dict[worker]
        else:
            dict[worker] = row
    elif re.search(r'Server responded with', parts[0]):
        data = dict.get(worker)
        if data:
            reqTime = datetime.strptime(data[index["time"]], "%Y-%m-%d %H:%M:%S.%f")
            resTime = datetime.strptime(row[index["time"]], "%Y-%m-%d %H:%M:%S.%f")
            runTime = resTime - reqTime
            data[index["run_time"]] = int(runTime.total_seconds() * 1000)
            data[index["http_status"]] = parts[1]
            writer.writerow(data)
            del dict[worker]
  • 通過指令cat {Data Set Path} | python log2csv.py 進行資料轉換
2016-03-17 14:26:00.044,0000Jak01H,zh_TW,POST /apiv1/groups/G/chats/T/files/65b98e2d9ae4/dl,Android,10,200
2016-03-17 14:26:00.160,0000JGt05C,zh_TW,GET /apiv1/sys/polling?pt=1517932790374,Android,4,200
2016-03-17 14:26:00.257,NA,zh_TW,GET /apiv1/sys/version,Android,5,200
2016-03-17 14:26:00.250,0000JGt05C,zh_TW,GET /apiv1/chats,Android,54,200
2016-03-17 14:26:00.483,0000Jak01H,zh_TW,GET /apiv1/sys/polling?pt=1517932791413,Android,5,200
2016-03-17 14:26:00.498,0000XCE05o,zh_TW,GET /apiv1/sys/polling?pt=1517932617745,Android,10,200
2016-03-17 14:26:00.540,0000Hj701c,zh-TW,POST /apiv1/groups/G/chats/T/files/24a6848f5dff/dl,iPhone,9,200
2016-03-17 14:26:00.582,0000EAt04C,zh_TW,GET /apiv1/sys/polling?pt=1517932791413,Android,6,200
2016-03-17 14:26:00.597,NA,zh_TW,GET /apiv1/sys/version,Android,4,200
... (略)
  • 將轉換出的 csv 檔案存放到 VM 的 hdfs://tmp/log(以下為示意指令)
$ scp log.csv cloudera@quickstart:~
$ ssh cloudera@quickstart
$ hadoop fs -mkdir /tmp/log
$ hadoop fs -put log.csv /tmp/log
  • 進入 Hive 並新增 Log Table(以下為示意指令)
$ beeline -u jdbc:hive2://localhost:10000

---------開始 hive 指令,建立 table----------

hive> CREATE EXTERNAL TABLE Log (
  t TIMESTAMP,
  ui STRING,
  li STRING,
  api STRING,
  ua STRING,
  rt INT,
  st STRING
)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ','
STORED AS TEXTFILE
LOCATION '/tmp/log';

---------hive 指令,離開----------

hive> !q
  • 進入 Impala 同步 Hive metadata 並查詢(以下為示意指令)
$ impala-shell

---------開始 impala 指令----------

impala> invalidate metadata;
impala> SELECT to_date(t), api, ua, rt FROM Log LIMIT 10;

---------以下為示意 SQL Query 後的結果(仿真資料)----------

Query: select to_date(t), api, ua, rt FROM Log LIMIT 10
Query submitted at: 2018-03-12 20:20:07 (Coordinator: http://quickstart.cloudera:25000)
Query progress can be monitored at: 
http://quickstart.cloudera:25000/query_plan?query_id=1f42417161f938df:4a26f7c00000000
+------------+--------------------------------+---------+----+
| to_date(t) | api                            | ua      | rt |
+------------+--------------------------------+---------+----+
| 2016-03-17 | POST /api/v1/action/files/dl   | Android | 10 |
| 2016-03-17 | GET /api/v1/action/sys/polling | Android | 4  |
| 2016-03-17 | GET /api/v1/action/sys/version | Android | 5  |
| 2016-03-17 | GET /api/v1/action/chats       | Android | 54 |
| 2016-03-17 | GET /api/v1/action/sys/polling | Android | 5  |
| 2016-03-17 | GET /api/v1/action/sys/polling | Android | 10 |
| 2016-03-17 | POST /api/v1/action/files/dl   | iPhone  | 9  |
| 2016-03-17 | GET /api/v1/action/sys/polling | Android | 6  |
| 2016-03-17 | GET /api/v1/action/sys/version | Android | 4  |
| 2016-03-17 | GET /api/v1/action/chats       | Android | 38 |
+------------+--------------------------------+---------+----+
Fetched 10 row(s) in 0.12s
P.S. 想產生些簡單的圖表可以透過 Hue(可將 Query 結果轉換成圖表) 去產生,或是有學過 python 或 R 也可以使用相關的套件去產生,這邊就不多闡述。

結語

在這過程中除了找到伺服器緩慢的原因,因為這些資料是伺服器上最準確使用者操作的過程,所以甚至可以獲得很多真正使用者是如何使用小編所維護的這套系統。所以通過這一次的 Log 分析無論是在維護上、開發上甚至未來規劃上,都有了更為明確的方向。