[ZBXNEXT-2442] Support parallel processing of alerts Created: 2014 Sep 06  Updated: 2018 Aug 31  Resolved: 2017 Jul 19

Status: Closed
Project: ZABBIX FEATURE REQUESTS
Component/s: Server (S)
Affects Version/s: 2.2.6
Fix Version/s: 3.4.0alpha1, 3.4 (plan)

Type: Change Request Priority: Major
Reporter: Marc Assignee: Unassigned
Resolution: Fixed Votes: 20
Labels: alerts, multiple, performance, process
Σ Remaining Estimate: Not Specified Remaining Estimate: Not Specified
Σ Time Spent: Not Specified Time Spent: Not Specified
Σ Original Estimate: Not Specified Original Estimate: Not Specified

Attachments: PNG File retries_left.png     PNG File sub_issue_1.png     PNG File sub_issue_2.png     File sub_issue_6.log     File zabbix_server.log.part    
Issue Links:
Duplicate
is duplicated by ZBXNEXT-2714 Split out alerter process to multiple... Closed
is duplicated by ZBXNEXT-3020 Multiple Alert Processes Closed
is duplicated by ZBXNEXT-3560 email notification slowdown Closed
is duplicated by ZBX-12315 Zabbix Alerter 100% Closed
is duplicated by ZBX-9446 Escalations via custom media types wi... Closed
is duplicated by ZBX-9654 if the jabber server is unavailable, ... Closed
is duplicated by ZBX-9702 Simultaneous access to a serial GSM m... Closed
is duplicated by ZBX-9705 Alert sending from watchdog can block... Closed
Sub-Tasks:
Key
Summary
Type
Status
Assignee
ZBXNEXT-3773 Documentation for parallel processing... Change Request (Sub-task) Closed  
ZBXNEXT-3774 Fix frontend issues for parallel proc... Change Request (Sub-task) Closed  
Team: Team A
Sprint: Sprint 2, Sprint 3, Sprint 4, Sprint 5, Sprint 6, Sprint 7, Sprint 8, Sprint 9, Sprint 10, Sprint 11
Story Points: 10

 Description   

Alerter process may be overloaded very quickly.
How about adding support for multiple alerter processes?



 Comments   
Comment by Oleksii Zagorskyi [ 2015 Jun 11 ]

Just a note - multiple escalators requested in ZBXNEXT-2844 (with a patch).

Comment by Mathew [ 2015 Jun 11 ]

Just a note the same method as in ZBXNEXT-2844 could also be applied for alerter processes. While ours is not overloaded currently, its good to be prepared for future scalability concerns.

Comment by Sandis Neilands (Inactive) [ 2015 Sep 17 ]

Note that ZBX-9702 should be fixed in context with this improvement.

Comment by Sandeep Madhu Renuka [ 2015 Dec 06 ]

We started facing problem with alerter after upgrade to 2.4.6. It used to be busy at 5% and after ugprade this weekend, it started peaking 100% . Do you have a patch that can be used? This is creating delays in monitoring

Comment by Sandis Neilands (Inactive) [ 2015 Dec 07 ]

We do not have a patch for this feature at this time. Consider reaching out to our support team to determine the root cause of the increased load on alerter.

Comment by Oleksii Zagorskyi [ 2015 Dec 07 ]

Note - this project is not dedicated for such discussions at all

Comment by Andris Zeila [ 2017 Mar 14 ]

Server side ready for testing in development branch svn://svn.zabbix.com/branches/dev/ZBXNEXT-2442

Comment by Andris Zeila [ 2017 Mar 15 ]

(1) [I] Media_type table attempts field in database schema was not renamed to maxattempts.

RESOLVED

vso CLOSED

Comment by Rostislav Palivoda [ 2017 Mar 16 ]

Please review fronted changes.

wiper It appears to be working, but should be properly reviewed/tested by frontend developers.

Comment by Andris Zeila [ 2017 Mar 16 ]

Frontend ready for testing.

Comment by Vladislavs Sokurenko [ 2017 Mar 20 ]

(1) [FS] Newly created alerts are shown as done in frontend, then in progress and again done. Also if you click inside it shows fail (see picture)

Expected:
Newly created alerts are in progress.

Actual:

To reproduce set SenderFrequency=60

Same for get_escalation_history() where zbx_alert_status_string() does not handle ALERT_STATUS_NEW properly

gcalenko RESOLVED r67119 resolved as part of ZBXNEXT-3774

vso REOPENED, now yes, it shows in progress but if you click it will still say failed.

gcalenko RESOLVED r67142

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 20 ]

(2) [S] Delay between in progress and resolved is always not less than SenderFrequency, while message might be delivered long time ago

I know that this might be by design and probably makes sense from implementation point of view that's why it's separate from (1).

Actual:
When SenderFrequency=60
Before sender frequency time has come it shows done for 60 seconds as per sub issue (1).
After sender frequency time has come, it shows in progress for 60 seconds until it shows resolved so it's total of 120~ seconds to reach resolved. For default value it's 60 seconds. So it's always 2 x SenderFrequency

Expected:
When sender frequency time has come it shows in progress for short period of time which is similar to time of delivered message.

wiper It was decided to drop SenderFrequency parameter and simply read/flush alerts once per second.

wiper It's still possible to restart server while losing latest alert status updates, but in the worst case duplicated alert will be sent after server restart.
RESOLVED in r66989

vso Is it expected that I get error, should simply document it in upgrade notes ?

zabbix_server [25472]: unknown parameter "SenderFrequency" in config file "/etc/zabbix/zabbix_server.conf", line 342

wiper Yes.

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 20 ]

(3) [S] Stopping server while in progress which lasts for SenderFrequency but actually delivered long time ago causes all messages to be sent again after restart.

it takes SenderFrequency seconds to call am_db_flush_alert_updates() so if server is stopped during this time then am_db_flush_alert_updates are not called.

Maybe signal handler should call flush ?

wiper There is quite limited number of functions that can be safely used in signal handler. So there is not much that can be done until the process exiting logic is changed. One improvement to mitigate this could be flushing alert updates at least once per second. This will be handled in (2).
CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 20 ]

(4) [S] There is possible scenario where alert is freed but then used

			am_remove_alert(manager, alert);
			zabbix_log(LOG_LEVEL_ERR, "cannot process alertid:" ZBX_FS_UI64 ": unsupported media type: %d",
					alert->alertid, mediatype->type);
			goto out;

wiper RESOLVED in r66954

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 20 ]

(5) [S] If database is down during am_db_flush_alert_updates then nested transaction is detected on next flush

 22553:20170320:162415.553 In am_db_flush_alert_updates() updates:3
 22553:20170320:162415.553 ERROR: nested transaction detected. Please report it to Zabbix Team.
zabbix_server: alert manager #1 [sent 1, failed 0 alerts, idle 30.108500 sec during 30.109021 sec]: db.c:791: zbx_db_begin: Assertion `0' failed.
 22526:20170320:162415.752 cannot read alerter service request
 22524:20170320:162415.752 One child process died (PID:22553,exitcode/signal:6). Exiting ...

You see that it escapes commit

		if (ZBX_DB_DOWN == DBexecute_once("%s", sql))
		{
			zabbix_log(LOG_LEVEL_INFORMATION, "TOTAL FAIL");
			ret = FAIL;
			goto cleanup;
		}
	}

	DBcommit();

Also this code does not handle other database failure possibilities.
For example other places do

if (ZBX_DB_OK > DBexecute("%s", sql))

wiper Database reconnection after connection failure was absent. Also DBbegin(), DBcommit() calls would stuck until the database is reconnected, preventing normal watchdog operation.
Also mediatype/alertpool reference count was not properly incremented when sending watchdog alerts.
Regarding the last comment - only recoverable errors (connection problems) are handled.
RESOLVED in r66962, r66976

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 20 ]

(6) Server exits with failure when caching new alerts which should belong to same pool, while old are in progress of sending

When processing batch of alerts of same pool then they are processed one after another, not in parallel
But when new alert come while old one already is sent to alerter but result still not received then it is sent immediately in parallel, which is not expected behavior and not handled.

Same apply to server reboot and receiving new alerts which should be in same pool

Consider following scenario:
1. SenderFrequency=5 and you make trap1 go into problem state in multiple event generation mode.
2. sleep for 15 seconds before sending mail.
3. See that alert manager has sent alert to alerter and waiting for result.
4. During this generate one more alert.
5. See that new alert is added and sent from alert manager to other free alerter. (This should never happen)

The code cannot handle this situation when one alert pool is processed in parallel.
1. When alert is created it is added to alert pool and alert pool refcount is incremented.
2. Then alert pool is added to media
3. alertpool is removed from media queue when sending to alerter.
4. When performing am_remove_alert it will see if refcount is not 0 then add alertpool back to media.
But as you see while refcount is 2 there are no more alerts in alertpool, because they are all sent to alerter already, so it must not be added to media queue.
This code only makes sense when sending alerts one by one.

More info:

This happens because when allocating alertpool using am_db_queue_alerts() it is stored in
manager->alertpools
and pointer here &mediatype->queue

But when deallocating
It will try to deallocate manager->alertpools
Though if alert pool is still referenced then it is added to mediatype

if (SUCCEED != am_release_alertpool(manager, alertpool))
	am_push_alertpool(mediatype, alertpool);

For &mediatype->queue
It will try to release mediatype am_release_mediatype()
But if someone still references this media type then it will not free &mediatype->queue so there will be garbage data from alert pool, which later causes duplicate key.

sub_issue_6.log is attached
To reproduce, simply send 100 problem events then 100 recovery events where SenderFrequency=5 and multiple event generation is on.

here is valgrind log

==24284== Invalid read of size 4
==24284==    at 0x482320: zbx_binary_heap_empty (binaryheap.c:211)
==24284==    by 0x422B3F: am_check_queue (alert_manager.c:1813)
==24284==    by 0x422B3F: alert_manager_thread (alert_manager.c:1914)
==24284==    by 0x489FA4: zbx_thread_start (threads.c:128)
==24284==    by 0x41F8FE: MAIN_ZABBIX_ENTRY (server.c:1055)
==24284==    by 0x47E75E: daemon_start (daemon.c:392)
==24284==    by 0x417343: main (server.c:799)
==24284==  Address 0xde6b998 is 40 bytes inside a block of size 104 free'd
==24284==    at 0x4C2EDEB: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==24284==    by 0x48469C: __hashset_free_entry (hashset.c:41)
==24284==    by 0x48469C: zbx_hashset_remove_direct (hashset.c:326)
==24284==    by 0x422749: am_release_alertpool (alert_manager.c:609)
==24284==    by 0x422749: am_remove_alert (alert_manager.c:737)
==24284==    by 0x4230D7: am_process_result (alert_manager.c:1756)
==24284==    by 0x4230D7: alert_manager_thread (alert_manager.c:1938)
==24284==    by 0x489FA4: zbx_thread_start (threads.c:128)
==24284==    by 0x41F8FE: MAIN_ZABBIX_ENTRY (server.c:1055)
==24284==    by 0x47E75E: daemon_start (daemon.c:392)
==24284==    by 0x417343: main (server.c:799)
==24284==  Block was alloc'd at
==24284==    at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==24284==    by 0x48E5C7: zbx_malloc2 (misc.c:467)
==24284==    by 0x48446E: zbx_hashset_insert_ext (hashset.c:203)
==24284==    by 0x4221A1: am_get_alertpool (alert_manager.c:523)
==24284==    by 0x423724: am_db_queue_alerts (alert_manager.c:1276)
==24284==    by 0x423724: alert_manager_thread (alert_manager.c:1896)
==24284==    by 0x489FA4: zbx_thread_start (threads.c:128)
==24284==    by 0x41F8FE: MAIN_ZABBIX_ENTRY (server.c:1055)
==24284==    by 0x47E75E: daemon_start (daemon.c:392)
==24284==    by 0x417343: main (server.c:799)

Also "asking minimum in an empty heap." error was displayed on other test.
Also some times suddenly I have 1375 alerts in my database.

 28198:20170320:180415.263 asking for a minimum in an empty heap
 28172:20170320:180415.409 cannot read alerter service request
 28173:20170320:180415.409 cannot read alerter service request
 28171:20170320:180415.409 cannot read alerter service request
 28169:20170320:180415.409 One child process died (PID:28198,exitcode/signal:1). Exiting ...
 28169:20170320:180417.433 syncing history data...
 28169:20170320:180417.442 syncing history data done
 28169:20170320:180417.444 syncing trend data...
 28169:20170320:180417.483 syncing trend data done
 28169:20170320:180417.493 Zabbix Server stopped. Zabbix 3.4.0alpha1 (revision {ZABBIX_REVISION})
+---------+----------+---------+--------+------------+-------------+--------+---------+-----------+-----------+
| alertid | actionid | eventid | userid | clock      | mediatypeid | status | retries | alerttype | p_eventid |
+---------+----------+---------+--------+------------+-------------+--------+---------+-----------+-----------+
|       1 |        3 |      23 |      1 | 1489499235 |           1 |      1 |       0 |         0 |      NULL |
|       2 |        3 |      24 |      1 | 1489499448 |           1 |      1 |       0 |         0 |        23 |
|       3 |        3 |      25 |      1 | 1489499451 |           1 |      1 |       0 |         0 |      NULL |
|       4 |        3 |      26 |      1 | 1489499460 |           1 |      1 |       0 |         0 |        25 |
|       5 |        3 |      27 |      1 | 1489499470 |           1 |      1 |       0 |         0 |      NULL |
|       6 |        3 |      28 |      1 | 1489500896 |           1 |      1 |       0 |         0 |        27 |
|       7 |        3 |      29 |      1 | 1489500944 |           1 |      1 |       0 |         0 |      NULL |
|       8 |        3 |      30 |      1 | 1489500974 |           1 |      1 |       0 |         0 |        29 |
|       9 |        3 |      31 |      1 | 1489501035 |           1 |      1 |       0 |         0 |      NULL |
|      10 |        3 |      32 |      1 | 1489501035 |           1 |      1 |       0 |         0 |      NULL |
|      11 |        3 |      33 |      1 | 1489501254 |           1 |      1 |       0 |         0 |        31 |
|      12 |        3 |      34 |      1 | 1489501266 |           1 |      1 |       0 |         0 |        32 |
|      13 |        3 |      35 |      1 | 1489501290 |           1 |      1 |       0 |         0 |      NULL |
|      14 |        3 |      36 |      1 | 1489501507 |           1 |      1 |       0 |         0 |        35 |
|      15 |        3 |      37 |      1 | 1489501537 |           1 |      1 |       0 |         0 |      NULL |
|      16 |        3 |      38 |      1 | 1489501579 |           1 |      1 |       0 |         0 |      NULL |
|      17 |        3 |      39 |      1 | 1489501618 |           1 |      1 |       0 |         0 |        38 |
|      18 |        3 |      40 |      1 | 1489501621 |           1 |      1 |       0 |         0 |        37 |
|      19 |        3 |      41 |      1 | 1489501639 |           1 |      1 |       0 |         0 |      NULL |
|      20 |        3 |      42 |      1 | 1489502804 |           1 |      1 |       0 |         0 |        41 |
|      21 |        3 |      43 |      1 | 1489503081 |           1 |      1 |       0 |         0 |      NULL |
|      22 |        3 |      44 |      1 | 1489503235 |           1 |      1 |       0 |         0 |        43 |
|      23 |        3 |      45 |      1 | 1489504646 |           1 |      1 |       0 |         0 |      NULL |
|      24 |        3 |      46 |      1 | 1489504963 |           1 |      1 |       0 |         0 |        45 |
|      25 |        3 |      47 |      1 | 1489504969 |           1 |      1 |       0 |         0 |      NULL |
|      26 |        3 |      54 |      1 | 1489753117 |           1 |      1 |       0 |         0 |      NULL |
|      27 |        3 |      55 |      1 | 1489753561 |           1 |      1 |       0 |         0 |      NULL |
|      28 |        3 |      56 |      1 | 1489753561 |           1 |      1 |       0 |         0 |        54 |
|      29 |        3 |      57 |      1 | 1489753564 |           1 |      1 |       0 |         0 |      NULL |
|      30 |        3 |      58 |      1 | 1489753654 |        NULL |      2 |       3 |         0 |        57 |
|      32 |        3 |      59 |      1 | 1489753657 |        NULL |      2 |       3 |         0 |      NULL |
|      34 |        3 |      61 |      1 | 1489753694 |        NULL |      2 |       3 |         0 |      NULL |
|      36 |        3 |      63 |      1 | 1489753796 |           1 |      2 |       0 |         0 |      NULL |
|      37 |        3 |      64 |      1 | 1489753814 |           1 |      1 |       0 |         0 |        63 |
|      39 |        3 |      65 |      1 | 1489753817 |           1 |      1 |       0 |         0 |      NULL |
|      41 |        3 |      66 |      1 | 1489753877 |           1 |      2 |       0 |         0 |      NULL |
|      43 |        3 |      67 |      1 | 1489753952 |           1 |      1 |       0 |         0 |      NULL |
|      45 |        7 |      67 |      1 | 1489753952 |        NULL |      2 |       3 |         0 |      NULL |
|      47 |        3 |      68 |      1 | 1489754096 |           1 |      1 |       0 |         0 |      NULL |
|      49 |        7 |      68 |      1 | 1489754096 |        NULL |      2 |       3 |         0 |      NULL |
|      51 |        3 |      69 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      53 |        3 |      70 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      55 |        3 |      71 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      57 |        3 |      72 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      59 |        3 |      73 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      61 |        3 |      74 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      63 |        3 |      75 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      65 |        3 |      76 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      67 |        3 |      77 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      69 |        3 |      78 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      71 |        3 |      79 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      73 |        3 |      80 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      75 |        3 |      81 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      77 |        3 |      82 |      1 | 1489754295 |           1 |      1 |       0 |         0 |      NULL |
|      79 |        3 |      83 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      81 |        3 |      84 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      83 |        3 |      85 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      85 |        3 |      86 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      87 |        3 |      87 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      89 |        3 |      88 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      91 |        3 |      89 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      93 |        3 |      90 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      95 |        3 |      91 |      1 | 1489754296 |           1 |      1 |       0 |         0 |      NULL |
|      97 |        3 |      69 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|      99 |        3 |      70 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     101 |        3 |      71 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     103 |        3 |      72 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     105 |        3 |      73 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     107 |        3 |      74 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     109 |        3 |      75 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     111 |        3 |      76 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     113 |        3 |      77 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     115 |        3 |      78 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     117 |        3 |      79 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     119 |        3 |      80 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     121 |        3 |      81 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     123 |        3 |      82 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     125 |        3 |      83 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     127 |        3 |      84 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     129 |        3 |      85 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     131 |        3 |      86 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     133 |        3 |      87 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     135 |        3 |      88 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     137 |        3 |      89 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     139 |        3 |      90 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     141 |        3 |      91 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     143 |        3 |      92 |      1 | 1489754666 |           1 |      1 |       0 |         0 |      NULL |
|     145 |        3 |      93 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     147 |        3 |      94 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     149 |        3 |      95 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     151 |        3 |      96 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     153 |        3 |      97 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     155 |        3 |      98 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     157 |        3 |      99 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     159 |        3 |     100 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     161 |        3 |     101 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     163 |        3 |     102 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     165 |        3 |     103 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     167 |        3 |     104 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     169 |        3 |     105 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     171 |        3 |     106 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     173 |        3 |     107 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     175 |        3 |     108 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     177 |        3 |     109 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     179 |        3 |     110 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     181 |        3 |     111 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     183 |        3 |     112 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     185 |        3 |     113 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     187 |        3 |     114 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     189 |        3 |     115 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     191 |        3 |     116 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     193 |        3 |     117 |      1 | 1489754667 |           1 |      1 |       0 |         0 |      NULL |
|     195 |        3 |     118 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     197 |        3 |     119 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     199 |        3 |     120 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     201 |        3 |     121 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     203 |        3 |     122 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     205 |        3 |     123 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     207 |        3 |     124 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     209 |        3 |     125 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     211 |        3 |     126 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     213 |        3 |     127 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     215 |        3 |     128 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     217 |        3 |     129 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     219 |        3 |     130 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     221 |        3 |     131 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     223 |        3 |     132 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     225 |        3 |     133 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     227 |        3 |     134 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     229 |        3 |     135 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     231 |        3 |     136 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     233 |        3 |     137 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     235 |        3 |     138 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     237 |        3 |     139 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     239 |        3 |     140 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     241 |        3 |     141 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     243 |        3 |     142 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     245 |        3 |     143 |      1 | 1489754668 |           1 |      1 |       0 |         0 |      NULL |
|     247 |        3 |     144 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     249 |        3 |     145 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     251 |        3 |     146 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     253 |        3 |     147 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     255 |        3 |     148 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     257 |        3 |     149 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     259 |        3 |     150 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     261 |        3 |     151 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     263 |        3 |     152 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     265 |        3 |     153 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     267 |        3 |     154 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     269 |        3 |     155 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     271 |        3 |     156 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     273 |        3 |     157 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     275 |        3 |     158 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     277 |        3 |     159 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     279 |        3 |     160 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     281 |        3 |     161 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     283 |        3 |     162 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     285 |        3 |     163 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     287 |        3 |     164 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     289 |        3 |     165 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     291 |        3 |     166 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     293 |        3 |     167 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     295 |        3 |     168 |      1 | 1489754669 |           1 |      1 |       0 |         0 |      NULL |
|     297 |        7 |      69 |      1 | 1489754669 |        NULL |      2 |       3 |         0 |      NULL |
|     299 |        7 |      70 |      1 | 1489754669 |        NULL |      2 |       3 |         0 |      NULL |
|     301 |        7 |      71 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     303 |        7 |      72 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     305 |        7 |      73 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     307 |        7 |      74 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     309 |        7 |      75 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     311 |        7 |      76 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     313 |        7 |      77 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     315 |        7 |      78 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     317 |        7 |      79 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     319 |        7 |      80 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     321 |        7 |      81 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     323 |        7 |      82 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     325 |        7 |      83 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     327 |        7 |      84 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     329 |        7 |      85 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     331 |        7 |      86 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     333 |        7 |      87 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     335 |        7 |      88 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     337 |        7 |      89 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     339 |        7 |      90 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     341 |        7 |      91 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     343 |        7 |      92 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     345 |        7 |      93 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     347 |        7 |      94 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     349 |        7 |      95 |      1 | 1489754670 |        NULL |      2 |       3 |         0 |      NULL |
|     351 |        7 |      96 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     353 |        7 |      97 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     355 |        7 |      98 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     357 |        7 |      99 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     359 |        7 |     100 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     361 |        7 |     101 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     363 |        7 |     102 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     365 |        7 |     103 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     367 |        7 |     104 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     369 |        7 |     105 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     371 |        7 |     106 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     373 |        7 |     107 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     375 |        7 |     108 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     377 |        7 |     109 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     379 |        7 |     110 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     381 |        7 |     111 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     383 |        7 |     112 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     385 |        7 |     113 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     387 |        7 |     114 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     389 |        7 |     115 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     391 |        7 |     116 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     393 |        7 |     117 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     395 |        7 |     118 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     397 |        7 |     119 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     399 |        7 |     120 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     401 |        7 |     121 |      1 | 1489754671 |        NULL |      2 |       3 |         0 |      NULL |
|     403 |        7 |     122 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     405 |        7 |     123 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     407 |        7 |     124 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     409 |        7 |     125 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     411 |        7 |     126 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     413 |        7 |     127 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     415 |        7 |     128 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     417 |        7 |     129 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     419 |        7 |     130 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     421 |        7 |     131 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     423 |        7 |     132 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     425 |        7 |     133 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     427 |        7 |     134 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     429 |        7 |     135 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     431 |        7 |     136 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     433 |        7 |     137 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     435 |        7 |     138 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     437 |        7 |     139 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     439 |        7 |     140 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     441 |        7 |     141 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     443 |        7 |     142 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     445 |        7 |     143 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     447 |        7 |     144 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     449 |        7 |     145 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     451 |        7 |     146 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     453 |        7 |     147 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     455 |        7 |     148 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     457 |        7 |     149 |      1 | 1489754672 |        NULL |      2 |       3 |         0 |      NULL |
|     459 |        7 |     150 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     461 |        7 |     151 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     463 |        7 |     152 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     465 |        7 |     153 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     467 |        7 |     154 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     469 |        7 |     155 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     471 |        7 |     156 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     473 |        7 |     157 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     475 |        7 |     158 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     477 |        7 |     159 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     479 |        7 |     160 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     481 |        7 |     161 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     483 |        7 |     162 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     485 |        7 |     163 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     487 |        7 |     164 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     489 |        7 |     165 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     491 |        7 |     166 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     493 |        7 |     167 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     495 |        7 |     168 |      1 | 1489754673 |        NULL |      2 |       3 |         0 |      NULL |
|     496 |        3 |     169 |      1 | 1489754904 |           1 |      2 |       0 |         0 |      NULL |
|     497 |        3 |     170 |      1 | 1489754904 |           1 |      2 |       0 |         0 |      NULL |
|     498 |        3 |     171 |      1 | 1489754904 |           1 |      2 |       0 |         0 |      NULL |
|     499 |        3 |     172 |      1 | 1489754904 |           1 |      2 |       0 |         0 |      NULL |
|     500 |        3 |     173 |      1 | 1489754904 |           1 |      2 |       0 |         0 |      NULL |
|     501 |        3 |     174 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     502 |        3 |     175 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     503 |        3 |     176 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     504 |        3 |     177 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     505 |        3 |     178 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     506 |        3 |     179 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     507 |        3 |     180 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     508 |        3 |     181 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     509 |        3 |     182 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     510 |        3 |     183 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     511 |        3 |     184 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     512 |        3 |     185 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     513 |        3 |     186 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     514 |        3 |     187 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     515 |        3 |     188 |      1 | 1489754905 |           1 |      2 |       0 |         0 |      NULL |
|     516 |        7 |     169 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     517 |        7 |     170 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     518 |        7 |     171 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     519 |        7 |     172 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     520 |        7 |     173 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     521 |        7 |     174 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     522 |        7 |     175 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     523 |        7 |     176 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     524 |        7 |     177 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     525 |        7 |     178 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     526 |        7 |     179 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     527 |        7 |     180 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     528 |        7 |     181 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     529 |        7 |     182 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     530 |        7 |     183 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     531 |        7 |     184 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     532 |        7 |     185 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     533 |        7 |     186 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     534 |        7 |     187 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     535 |        7 |     188 |      1 | 1489754905 |        NULL |      2 |       3 |         0 |      NULL |
|     536 |        3 |     189 |      1 | 1489755282 |           1 |      2 |       0 |         0 |      NULL |
|     537 |        3 |     190 |      1 | 1489755282 |           1 |      2 |       0 |         0 |      NULL |
|     538 |        3 |     191 |      1 | 1489755282 |           1 |      2 |       0 |         0 |      NULL |
|     539 |        3 |     192 |      1 | 1489755282 |           1 |      2 |       0 |         0 |      NULL |
|     540 |        3 |     193 |      1 | 1489755282 |           1 |      2 |       0 |         0 |      NULL |
|     541 |        3 |     194 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     542 |        3 |     195 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     543 |        3 |     196 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     544 |        3 |     197 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     545 |        3 |     198 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     546 |        3 |     199 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     547 |        3 |     200 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     548 |        3 |     201 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     549 |        3 |     202 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     550 |        3 |     203 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     551 |        3 |     204 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     552 |        3 |     205 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     553 |        3 |     206 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     554 |        3 |     207 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     555 |        3 |     208 |      1 | 1489755283 |           1 |      2 |       0 |         0 |      NULL |
|     556 |        7 |     189 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     557 |        7 |     190 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     558 |        7 |     191 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     559 |        7 |     192 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     560 |        7 |     193 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     561 |        7 |     194 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     562 |        7 |     195 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     563 |        7 |     196 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     564 |        7 |     197 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     565 |        7 |     198 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     566 |        7 |     199 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     567 |        7 |     200 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     568 |        7 |     201 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     569 |        7 |     202 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     570 |        7 |     203 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     571 |        7 |     204 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     572 |        7 |     205 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     573 |        7 |     206 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     574 |        7 |     207 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     575 |        7 |     208 |      1 | 1489755283 |        NULL |      2 |       3 |         0 |      NULL |
|     576 |        3 |     209 |      1 | 1489755472 |           1 |      2 |       0 |         0 |      NULL |
|     579 |        3 |     210 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     581 |        3 |     211 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     583 |        3 |     212 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     585 |        3 |     213 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     587 |        3 |     214 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     589 |        3 |     215 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     591 |        3 |     216 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     593 |        3 |     217 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     595 |        3 |     218 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     597 |        3 |     219 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     599 |        3 |     220 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     601 |        3 |     221 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     603 |        3 |     222 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     605 |        3 |     223 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     607 |        3 |     224 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     609 |        3 |     225 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     611 |        3 |     226 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     613 |        3 |     227 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     615 |        3 |     228 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     617 |        3 |     229 |      1 | 1489755592 |           1 |      2 |       0 |         0 |      NULL |
|     639 |        3 |     230 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     641 |        3 |     231 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     643 |        3 |     232 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     645 |        3 |     233 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     647 |        3 |     234 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     649 |        3 |     235 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     651 |        3 |     236 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     653 |        3 |     237 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     655 |        3 |     238 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     657 |        3 |     239 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     659 |        3 |     240 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     661 |        3 |     241 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     663 |        3 |     242 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     665 |        3 |     243 |      1 | 1489755738 |           1 |      2 |       0 |         0 |      NULL |
|     666 |        3 |     230 |      1 | 1489755866 |           1 |      1 |       0 |         0 |      NULL |
|     667 |        3 |     231 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     668 |        3 |     232 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     669 |        3 |     233 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     670 |        3 |     234 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     671 |        3 |     235 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     672 |        3 |     236 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     673 |        3 |     237 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     674 |        3 |     238 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     675 |        3 |     239 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     676 |        3 |     240 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     677 |        3 |     241 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     678 |        3 |     242 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     679 |        3 |     243 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     680 |        3 |     244 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     681 |        3 |     245 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     682 |        3 |     246 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     683 |        3 |     247 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     684 |        3 |     248 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     685 |        3 |     249 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     686 |        7 |     230 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     687 |        7 |     231 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     688 |        7 |     232 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     689 |        7 |     233 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     690 |        7 |     234 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     691 |        7 |     235 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     692 |        7 |     236 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     693 |        7 |     237 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     694 |        7 |     238 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     695 |        7 |     239 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     696 |        7 |     240 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     697 |        7 |     241 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     698 |        7 |     242 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     699 |        7 |     243 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     700 |        7 |     244 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     701 |        7 |     245 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     702 |        7 |     246 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     703 |        7 |     247 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     704 |        7 |     248 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     705 |        7 |     249 |      1 | 1489755867 |           1 |      1 |       0 |         0 |      NULL |
|     706 |        3 |     250 |      1 | 1489757826 |           1 |      1 |       0 |         0 |      NULL |
|     707 |        3 |     251 |      1 | 1489757826 |           1 |      1 |       0 |         0 |      NULL |
|     708 |        3 |     252 |      1 | 1489757826 |           1 |      1 |       0 |         0 |      NULL |
|     709 |        3 |     253 |      1 | 1489757826 |           1 |      1 |       0 |         0 |      NULL |
|     710 |        3 |     254 |      1 | 1489757826 |           1 |      1 |       0 |         0 |      NULL |
|     711 |        3 |     255 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     712 |        3 |     256 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     713 |        3 |     257 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     714 |        3 |     258 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     715 |        3 |     259 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     716 |        3 |     260 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     717 |        3 |     261 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     718 |        3 |     262 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     719 |        3 |     263 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     720 |        3 |     264 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     721 |        3 |     265 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     722 |        3 |     266 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     723 |        3 |     267 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     724 |        3 |     268 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     725 |        3 |     269 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     726 |        7 |     250 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     727 |        7 |     251 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     728 |        7 |     252 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     729 |        7 |     253 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     730 |        7 |     254 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     731 |        7 |     255 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     732 |        7 |     256 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     733 |        7 |     257 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     734 |        7 |     258 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     735 |        7 |     259 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     736 |        7 |     260 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     737 |        7 |     261 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     738 |        7 |     262 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     739 |        7 |     263 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     740 |        7 |     264 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     741 |        7 |     265 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     742 |        7 |     266 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     743 |        7 |     267 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     744 |        7 |     268 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     745 |        7 |     269 |      1 | 1489757827 |           1 |      1 |       0 |         0 |      NULL |
|     746 |        3 |     270 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     747 |        3 |     271 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     748 |        3 |     272 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     749 |        3 |     273 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     750 |        3 |     274 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     751 |        3 |     275 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     752 |        3 |     276 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     753 |        3 |     277 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     754 |        3 |     278 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     755 |        3 |     279 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     756 |        3 |     280 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     757 |        3 |     281 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     758 |        3 |     282 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     759 |        3 |     283 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     760 |        3 |     284 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     761 |        3 |     285 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     762 |        3 |     286 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     763 |        3 |     287 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     764 |        3 |     288 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     765 |        3 |     289 |      1 | 1489759162 |           1 |      1 |       0 |         0 |      NULL |
|     766 |        7 |     270 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     767 |        7 |     271 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     768 |        7 |     272 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     769 |        7 |     273 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     770 |        7 |     274 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     771 |        7 |     275 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     772 |        7 |     276 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     773 |        7 |     277 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     774 |        7 |     278 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     775 |        7 |     279 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     776 |        7 |     280 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     777 |        7 |     281 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     778 |        7 |     282 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     779 |        7 |     283 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     780 |        7 |     284 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     781 |        7 |     285 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     782 |        7 |     286 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     783 |        7 |     287 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     784 |        7 |     288 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     785 |        7 |     289 |      1 | 1489759163 |        NULL |      2 |       3 |         0 |      NULL |
|     786 |        3 |     290 |      1 | 1489759228 |           1 |      1 |       0 |         0 |      NULL |
|     787 |        3 |     291 |      1 | 1489759228 |           1 |      1 |       0 |         0 |      NULL |
|     788 |        3 |     292 |      1 | 1489759228 |           1 |      1 |       0 |         0 |      NULL |
|     789 |        3 |     293 |      1 | 1489759228 |           1 |      1 |       0 |         0 |      NULL |
|     790 |        3 |     294 |      1 | 1489759228 |           1 |      1 |       0 |         0 |      NULL |
|     791 |        3 |     295 |      1 | 1489759228 |           1 |      1 |       0 |         0 |      NULL |
|     792 |        3 |     296 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     793 |        3 |     297 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     794 |        3 |     298 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     795 |        3 |     299 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     796 |        3 |     300 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     797 |        3 |     301 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     798 |        3 |     302 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     799 |        3 |     303 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     800 |        3 |     304 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     801 |        3 |     305 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     802 |        3 |     306 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     803 |        3 |     307 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     804 |        3 |     308 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     805 |        3 |     309 |      1 | 1489759229 |           1 |      1 |       0 |         0 |      NULL |
|     806 |        7 |     290 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     807 |        7 |     291 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     808 |        7 |     292 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     809 |        7 |     293 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     810 |        7 |     294 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     811 |        7 |     295 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     812 |        7 |     296 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     813 |        7 |     297 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     814 |        7 |     298 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     815 |        7 |     299 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     816 |        7 |     300 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     817 |        7 |     301 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     818 |        7 |     302 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     819 |        7 |     303 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     820 |        7 |     304 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     821 |        7 |     305 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     822 |        7 |     306 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     823 |        7 |     307 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     824 |        7 |     308 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     825 |        7 |     309 |      1 | 1489759229 |           5 |      1 |       0 |         0 |      NULL |
|     826 |        3 |     310 |      1 | 1489759890 |           1 |      1 |       0 |         0 |      NULL |
|     827 |        3 |     311 |      1 | 1489759890 |           1 |      1 |       0 |         0 |      NULL |
|     828 |        3 |     312 |      1 | 1489759890 |           1 |      1 |       0 |         0 |      NULL |
|     829 |        3 |     313 |      1 | 1489759890 |           1 |      1 |       0 |         0 |      NULL |
|     830 |        7 |     310 |      1 | 1489759890 |           5 |      1 |       0 |         0 |      NULL |
|     831 |        7 |     311 |      1 | 1489759890 |           5 |      1 |       0 |         0 |      NULL |
|     832 |        7 |     312 |      1 | 1489759890 |           5 |      1 |       0 |         0 |      NULL |
|     833 |        7 |     313 |      1 | 1489759890 |           5 |      1 |       0 |         0 |      NULL |
|     834 |        3 |     314 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     835 |        3 |     315 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     836 |        3 |     316 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     837 |        3 |     317 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     838 |        3 |     318 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     839 |        3 |     319 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     840 |        3 |     320 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     841 |        3 |     321 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     842 |        3 |     322 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     843 |        3 |     323 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     844 |        3 |     324 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     845 |        3 |     325 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     846 |        3 |     326 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     847 |        3 |     327 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     848 |        3 |     328 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     849 |        3 |     329 |      1 | 1489759893 |           1 |      1 |       0 |         0 |      NULL |
|     850 |        7 |     314 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     851 |        7 |     315 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     852 |        7 |     316 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     853 |        7 |     317 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     854 |        7 |     318 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     855 |        7 |     319 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     856 |        7 |     320 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     857 |        7 |     321 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     858 |        7 |     322 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     859 |        7 |     323 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     860 |        7 |     324 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     861 |        7 |     325 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     862 |        7 |     326 |      1 | 1489759893 |           5 |      1 |       0 |         0 |      NULL |
|     863 |        7 |     327 |      1 | 1489759894 |           5 |      1 |       0 |         0 |      NULL |
|     864 |        7 |     328 |      1 | 1489759894 |           5 |      1 |       0 |         0 |      NULL |
|     865 |        7 |     329 |      1 | 1489759894 |           5 |      1 |       0 |         0 |      NULL |
|     866 |        3 |     330 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     867 |        3 |     331 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     868 |        3 |     332 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     869 |        3 |     333 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     870 |        3 |     334 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     871 |        3 |     335 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     872 |        3 |     336 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     873 |        3 |     337 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     874 |        3 |     338 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     875 |        3 |     339 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     876 |        3 |     340 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     877 |        3 |     341 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     878 |        3 |     342 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     879 |        3 |     343 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     880 |        3 |     344 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     881 |        3 |     345 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     882 |        3 |     346 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     883 |        3 |     347 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     884 |        3 |     348 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     885 |        3 |     349 |      1 | 1489760283 |           1 |      1 |       0 |         0 |      NULL |
|     886 |        7 |     330 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     887 |        7 |     331 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     888 |        7 |     332 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     889 |        7 |     333 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     890 |        7 |     334 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     891 |        7 |     335 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     892 |        7 |     336 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     893 |        7 |     337 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     894 |        7 |     338 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     895 |        7 |     339 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     896 |        7 |     340 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     897 |        7 |     341 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     898 |        7 |     342 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     899 |        7 |     343 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     900 |        7 |     344 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     901 |        7 |     345 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     902 |        7 |     346 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     903 |        7 |     347 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     904 |        7 |     348 |      1 | 1489760283 |           5 |      1 |       0 |         0 |      NULL |
|     905 |        7 |     349 |      1 | 1489760284 |           5 |      1 |       0 |         0 |      NULL |
|     906 |        3 |     350 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     907 |        3 |     351 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     908 |        3 |     352 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     909 |        3 |     353 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     910 |        3 |     354 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     911 |        3 |     355 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     912 |        3 |     356 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     913 |        3 |     357 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     914 |        3 |     358 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     915 |        3 |     359 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     916 |        3 |     360 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     917 |        3 |     361 |      1 | 1489762130 |           1 |      1 |       0 |         0 |      NULL |
|     918 |        3 |     362 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     919 |        3 |     363 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     920 |        3 |     364 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     921 |        3 |     365 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     922 |        3 |     366 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     923 |        3 |     367 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     924 |        3 |     368 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     925 |        3 |     369 |      1 | 1489762131 |           1 |      1 |       0 |         0 |      NULL |
|     926 |        7 |     350 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     927 |        7 |     351 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     928 |        7 |     352 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     929 |        7 |     353 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     930 |        7 |     354 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     931 |        7 |     355 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     932 |        7 |     356 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     933 |        7 |     357 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     934 |        7 |     358 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     935 |        7 |     359 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     936 |        7 |     360 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     937 |        7 |     361 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     938 |        7 |     362 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     939 |        7 |     363 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     940 |        7 |     364 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     941 |        7 |     365 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     942 |        7 |     366 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     943 |        7 |     367 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     944 |        7 |     368 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     945 |        7 |     369 |      1 | 1489762131 |           5 |      1 |       0 |         0 |      NULL |
|     946 |        3 |     370 |      1 | 1490000353 |           1 |      1 |       0 |         0 |      NULL |
|     947 |        7 |     370 |      1 | 1490000353 |           5 |      1 |       0 |         0 |      NULL |
|     948 |        3 |     371 |      1 | 1490000468 |           1 |      1 |       0 |         0 |      NULL |
|     949 |        7 |     371 |      1 | 1490000468 |           5 |      1 |       0 |         0 |      NULL |
|     950 |        3 |     372 |      1 | 1490000598 |           1 |      1 |       0 |         0 |      NULL |
|     951 |        7 |     372 |      1 | 1490000599 |           5 |      1 |       0 |         0 |      NULL |
|     952 |        3 |     373 |      1 | 1490000644 |           1 |      1 |       0 |         0 |      NULL |
|     953 |        7 |     373 |      1 | 1490000644 |           5 |      1 |       0 |         0 |      NULL |
|     954 |        3 |     374 |      1 | 1490000830 |           1 |      1 |       0 |         0 |      NULL |
|     955 |        7 |     374 |      1 | 1490000830 |           5 |      1 |       0 |         0 |      NULL |
|     956 |        3 |     375 |      1 | 1490000921 |           1 |      1 |       0 |         0 |      NULL |
|     957 |        7 |     375 |      1 | 1490000921 |           5 |      1 |       0 |         0 |      NULL |
|     958 |        3 |     376 |      1 | 1490001143 |           1 |      1 |       0 |         0 |      NULL |
|     959 |        7 |     376 |      1 | 1490001143 |           5 |      1 |       0 |         0 |      NULL |
|     960 |        3 |     377 |      1 | 1490002703 |           1 |      1 |       0 |         0 |      NULL |
|     961 |        7 |     377 |      1 | 1490002704 |           5 |      1 |       0 |         0 |      NULL |
|     962 |        3 |     378 |      1 | 1490002944 |           1 |      1 |       0 |         0 |      NULL |
|     963 |        7 |     378 |      1 | 1490002944 |           5 |      1 |       0 |         0 |      NULL |
|     964 |        3 |     379 |      1 | 1490004089 |           1 |      1 |       0 |         0 |      NULL |
|     965 |        7 |     379 |      1 | 1490004089 |           5 |      1 |       0 |         0 |      NULL |
|     966 |        3 |     380 |      1 | 1490008301 |           1 |      1 |       0 |         0 |      NULL |
|     967 |        7 |     380 |      1 | 1490008301 |           5 |      1 |       0 |         0 |      NULL |
|     968 |        3 |     381 |      1 | 1490008340 |           1 |      1 |       0 |         0 |      NULL |
|     969 |        7 |     381 |      1 | 1490008340 |           5 |      1 |       0 |         0 |      NULL |
|     970 |        3 |     382 |      1 | 1490008595 |           1 |      1 |       0 |         0 |      NULL |
|     971 |        7 |     382 |      1 | 1490008595 |           5 |      1 |       0 |         0 |      NULL |
|     972 |        3 |     383 |      1 | 1490009674 |           1 |      1 |       0 |         0 |      NULL |
|     973 |        7 |     383 |      1 | 1490009674 |           5 |      1 |       0 |         0 |      NULL |
|     974 |        3 |     384 |      1 | 1490010318 |           1 |      1 |       0 |         0 |      NULL |
|     975 |        7 |     384 |      1 | 1490010319 |           5 |      1 |       0 |         0 |      NULL |
|     976 |        3 |     385 |      1 | 1490010415 |           1 |      1 |       0 |         0 |      NULL |
|     977 |        3 |     386 |      1 | 1490010416 |           1 |      1 |       0 |         0 |      NULL |
|     978 |        7 |     385 |      1 | 1490010416 |           5 |      1 |       0 |         0 |      NULL |
|     979 |        7 |     386 |      1 | 1490010416 |           5 |      1 |       0 |         0 |      NULL |
|     980 |        3 |     387 |      1 | 1490010432 |           1 |      1 |       0 |         0 |      NULL |
|     981 |        7 |     387 |      1 | 1490010432 |           5 |      1 |       0 |         0 |      NULL |
|     982 |        3 |     388 |      1 | 1490010562 |           1 |      1 |       0 |         0 |      NULL |
|     983 |        7 |     388 |      1 | 1490010562 |           5 |      1 |       0 |         0 |      NULL |
|     984 |        3 |     389 |      1 | 1490011377 |           1 |      1 |       0 |         0 |      NULL |
|     985 |        7 |     389 |      1 | 1490011377 |           5 |      1 |       0 |         0 |      NULL |
|     986 |        3 |     390 |      1 | 1490011908 |           1 |      2 |       0 |         0 |      NULL |
|     987 |        7 |     390 |      1 | 1490011908 |           5 |      2 |       0 |         0 |      NULL |
|     988 |        3 |     391 |      1 | 1490014575 |           1 |      1 |       0 |         0 |      NULL |
|     989 |        7 |     391 |      1 | 1490014575 |           5 |      1 |       0 |         0 |      NULL |
|     990 |        3 |     392 |      1 | 1490014832 |           1 |      1 |       0 |         0 |      NULL |
|     991 |        7 |     392 |      1 | 1490014832 |           5 |      1 |       0 |         0 |      NULL |
|     992 |        3 |     393 |      1 | 1490017096 |           1 |      1 |       0 |         0 |      NULL |
|     993 |        3 |     394 |      1 | 1490017096 |           1 |      1 |       0 |         0 |      NULL |
|     994 |        7 |     393 |      1 | 1490017096 |           5 |      1 |       0 |         0 |      NULL |
|     995 |        7 |     394 |      1 | 1490017096 |           5 |      1 |       0 |         0 |      NULL |
|     996 |        3 |     395 |      1 | 1490017378 |           1 |      1 |       0 |         0 |      NULL |
|     997 |        7 |     395 |      1 | 1490017378 |           5 |      1 |       0 |         0 |      NULL |
|     998 |        3 |     396 |      1 | 1490019650 |           1 |      1 |       0 |         0 |      NULL |
|     999 |        7 |     396 |      1 | 1490019650 |           5 |      1 |       0 |         0 |      NULL |
|    1000 |        3 |     397 |      1 | 1490019799 |           1 |      1 |       0 |         0 |      NULL |
|    1001 |        7 |     397 |      1 | 1490019799 |           5 |      1 |       0 |         0 |      NULL |
|    1002 |        3 |     398 |      1 | 1490020420 |           1 |      1 |       0 |         0 |      NULL |
|    1003 |        7 |     398 |      1 | 1490020420 |           5 |      1 |       0 |         0 |      NULL |
|    1004 |        3 |     399 |      1 | 1490020500 |           1 |      1 |       0 |         0 |      NULL |
|    1005 |        7 |     399 |      1 | 1490020500 |           5 |      1 |       0 |         0 |      NULL |
|    1006 |        3 |     400 |      1 | 1490020536 |           1 |      1 |       0 |         0 |      NULL |
|    1007 |        7 |     400 |      1 | 1490020536 |           5 |      1 |       0 |         0 |      NULL |
|    1008 |        3 |     401 |      1 | 1490020563 |           1 |      1 |       0 |         0 |      NULL |
|    1009 |        7 |     401 |      1 | 1490020563 |           5 |      1 |       0 |         0 |      NULL |
|    1010 |        3 |     402 |      1 | 1490020596 |           1 |      1 |       0 |         0 |      NULL |
|    1011 |        7 |     402 |      1 | 1490020596 |           5 |      1 |       0 |         0 |      NULL |
|    1012 |        3 |     403 |      1 | 1490020640 |           1 |      1 |       0 |         0 |      NULL |
|    1013 |        7 |     403 |      1 | 1490020640 |           5 |      1 |       0 |         0 |      NULL |
|    1014 |        3 |     404 |      1 | 1490023512 |           1 |      1 |       0 |         0 |      NULL |
|    1015 |        7 |     404 |      1 | 1490023512 |           5 |      1 |       0 |         0 |      NULL |
|    1016 |        3 |     405 |      1 | 1490023728 |           1 |      1 |       0 |         0 |      NULL |
|    1017 |        7 |     405 |      1 | 1490023728 |           5 |      1 |       0 |         0 |      NULL |
|    1018 |        3 |     406 |      1 | 1490024005 |           1 |      1 |       0 |         0 |      NULL |
|    1019 |        7 |     406 |      1 | 1490024005 |           5 |      1 |       0 |         0 |      NULL |
|    1020 |        3 |     407 |      1 | 1490025614 |           1 |      1 |       0 |         0 |      NULL |
|    1021 |        7 |     407 |      1 | 1490025614 |           5 |      1 |       0 |         0 |      NULL |
|    1022 |        3 |     408 |      1 | 1490025617 |           1 |      1 |       0 |         0 |        55 |
|    1023 |        3 |     408 |      1 | 1490025617 |           1 |      1 |       0 |         0 |        66 |
|    1024 |        3 |     408 |      1 | 1490025617 |           1 |      1 |       0 |         0 |        67 |
|    1025 |        3 |     408 |      1 | 1490025617 |           1 |      1 |       0 |         0 |        68 |
|    1026 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        69 |
|    1027 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        70 |
|    1028 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        71 |
|    1029 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        72 |
|    1030 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        73 |
|    1031 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        74 |
|    1032 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        75 |
|    1033 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        76 |
|    1034 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        77 |
|    1035 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        78 |
|    1036 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        79 |
|    1037 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        80 |
|    1038 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        81 |
|    1039 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        82 |
|    1040 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        83 |
|    1041 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        84 |
|    1042 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        85 |
|    1043 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        86 |
|    1044 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        87 |
|    1045 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        88 |
|    1046 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        89 |
|    1047 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        90 |
|    1048 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        91 |
|    1049 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        92 |
|    1050 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        93 |
|    1051 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        94 |
|    1052 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        95 |
|    1053 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        96 |
|    1054 |        3 |     408 |      1 | 1490025617 |           1 |      0 |       0 |         0 |        97 |
|    1055 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |        98 |
|    1056 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |        99 |
|    1057 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       100 |
|    1058 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       101 |
|    1059 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       102 |
|    1060 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       103 |
|    1061 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       104 |
|    1062 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       105 |
|    1063 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       106 |
|    1064 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       107 |
|    1065 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       108 |
|    1066 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       109 |
|    1067 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       110 |
|    1068 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       111 |
|    1069 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       112 |
|    1070 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       113 |
|    1071 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       114 |
|    1072 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       115 |
|    1073 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       116 |
|    1074 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       117 |
|    1075 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       118 |
|    1076 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       119 |
|    1077 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       120 |
|    1078 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       121 |
|    1079 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       122 |
|    1080 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       123 |
|    1081 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       124 |
|    1082 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       125 |
|    1083 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       126 |
|    1084 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       127 |
|    1085 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       128 |
|    1086 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       129 |
|    1087 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       130 |
|    1088 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       131 |
|    1089 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       132 |
|    1090 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       133 |
|    1091 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       134 |
|    1092 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       135 |
|    1093 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       136 |
|    1094 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       137 |
|    1095 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       138 |
|    1096 |        3 |     408 |      1 | 1490025618 |           1 |      0 |       0 |         0 |       139 |
|    1097 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       140 |
|    1098 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       141 |
|    1099 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       142 |
|    1100 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       143 |
|    1101 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       144 |
|    1102 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       145 |
|    1103 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       146 |
|    1104 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       147 |
|    1105 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       148 |
|    1106 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       149 |
|    1107 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       150 |
|    1108 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       151 |
|    1109 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       152 |
|    1110 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       153 |
|    1111 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       154 |
|    1112 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       155 |
|    1113 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       156 |
|    1114 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       157 |
|    1115 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       158 |
|    1116 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       159 |
|    1117 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       160 |
|    1118 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       161 |
|    1119 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       162 |
|    1120 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       163 |
|    1121 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       164 |
|    1122 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       165 |
|    1123 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       166 |
|    1124 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       167 |
|    1125 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       168 |
|    1126 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       169 |
|    1127 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       170 |
|    1128 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       171 |
|    1129 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       172 |
|    1130 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       173 |
|    1131 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       174 |
|    1132 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       175 |
|    1133 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       176 |
|    1134 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       177 |
|    1135 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       178 |
|    1136 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       179 |
|    1137 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       180 |
|    1138 |        3 |     408 |      1 | 1490025619 |           1 |      0 |       0 |         0 |       181 |
|    1139 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       182 |
|    1140 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       183 |
|    1141 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       184 |
|    1142 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       185 |
|    1143 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       186 |
|    1144 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       187 |
|    1145 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       188 |
|    1146 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       189 |
|    1147 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       190 |
|    1148 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       191 |
|    1149 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       192 |
|    1150 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       193 |
|    1151 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       194 |
|    1152 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       195 |
|    1153 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       196 |
|    1154 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       197 |
|    1155 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       198 |
|    1156 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       199 |
|    1157 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       200 |
|    1158 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       201 |
|    1159 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       202 |
|    1160 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       203 |
|    1161 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       204 |
|    1162 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       205 |
|    1163 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       206 |
|    1164 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       207 |
|    1165 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       208 |
|    1166 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       209 |
|    1167 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       210 |
|    1168 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       211 |
|    1169 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       212 |
|    1170 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       213 |
|    1171 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       214 |
|    1172 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       215 |
|    1173 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       216 |
|    1174 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       217 |
|    1175 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       218 |
|    1176 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       219 |
|    1177 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       220 |
|    1178 |        3 |     408 |      1 | 1490025620 |           1 |      0 |       0 |         0 |       221 |
|    1179 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       222 |
|    1180 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       223 |
|    1181 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       224 |
|    1182 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       225 |
|    1183 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       226 |
|    1184 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       227 |
|    1185 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       228 |
|    1186 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       229 |
|    1187 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       230 |
|    1188 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       231 |
|    1189 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       232 |
|    1190 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       233 |
|    1191 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       234 |
|    1192 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       235 |
|    1193 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       236 |
|    1194 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       237 |
|    1195 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       238 |
|    1196 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       239 |
|    1197 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       240 |
|    1198 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       241 |
|    1199 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       242 |
|    1200 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       243 |
|    1201 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       244 |
|    1202 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       245 |
|    1203 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       246 |
|    1204 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       247 |
|    1205 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       248 |
|    1206 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       249 |
|    1207 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       250 |
|    1208 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       251 |
|    1209 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       252 |
|    1210 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       253 |
|    1211 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       254 |
|    1212 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       255 |
|    1213 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       256 |
|    1214 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       257 |
|    1215 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       258 |
|    1216 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       259 |
|    1217 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       260 |
|    1218 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       261 |
|    1219 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       262 |
|    1220 |        3 |     408 |      1 | 1490025621 |           1 |      0 |       0 |         0 |       263 |
|    1221 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       264 |
|    1222 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       265 |
|    1223 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       266 |
|    1224 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       267 |
|    1225 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       268 |
|    1226 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       269 |
|    1227 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       270 |
|    1228 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       271 |
|    1229 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       272 |
|    1230 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       273 |
|    1231 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       274 |
|    1232 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       275 |
|    1233 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       276 |
|    1234 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       277 |
|    1235 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       278 |
|    1236 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       279 |
|    1237 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       280 |
|    1238 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       281 |
|    1239 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       282 |
|    1240 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       283 |
|    1241 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       284 |
|    1242 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       285 |
|    1243 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       286 |
|    1244 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       287 |
|    1245 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       288 |
|    1246 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       289 |
|    1247 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       290 |
|    1248 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       291 |
|    1249 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       292 |
|    1250 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       293 |
|    1251 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       294 |
|    1252 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       295 |
|    1253 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       296 |
|    1254 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       297 |
|    1255 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       298 |
|    1256 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       299 |
|    1257 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       300 |
|    1258 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       301 |
|    1259 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       302 |
|    1260 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       303 |
|    1261 |        3 |     408 |      1 | 1490025622 |           1 |      0 |       0 |         0 |       304 |
|    1262 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       305 |
|    1263 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       306 |
|    1264 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       307 |
|    1265 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       308 |
|    1266 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       309 |
|    1267 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       310 |
|    1268 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       311 |
|    1269 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       312 |
|    1270 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       313 |
|    1271 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       314 |
|    1272 |        3 |     408 |      1 | 1490025623 |           1 |      1 |       0 |         0 |       315 |
|    1273 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       316 |
|    1274 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       317 |
|    1275 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       318 |
|    1276 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       319 |
|    1277 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       320 |
|    1278 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       321 |
|    1279 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       322 |
|    1280 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       323 |
|    1281 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       324 |
|    1282 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       325 |
|    1283 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       326 |
|    1284 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       327 |
|    1285 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       328 |
|    1286 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       329 |
|    1287 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       330 |
|    1288 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       331 |
|    1289 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       332 |
|    1290 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       333 |
|    1291 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       334 |
|    1292 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       335 |
|    1293 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       336 |
|    1294 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       337 |
|    1295 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       338 |
|    1296 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       339 |
|    1297 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       340 |
|    1298 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       341 |
|    1299 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       342 |
|    1300 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       343 |
|    1301 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       344 |
|    1302 |        3 |     408 |      1 | 1490025623 |           1 |      0 |       0 |         0 |       345 |
|    1303 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       346 |
|    1304 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       347 |
|    1305 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       348 |
|    1306 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       349 |
|    1307 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       350 |
|    1308 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       351 |
|    1309 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       352 |
|    1310 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       353 |
|    1311 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       354 |
|    1312 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       355 |
|    1313 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       356 |
|    1314 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       357 |
|    1315 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       358 |
|    1316 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       359 |
|    1317 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       360 |
|    1318 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       361 |
|    1319 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       362 |
|    1320 |        3 |     408 |      1 | 1490025624 |           1 |      0 |       0 |         0 |       363 |
|    1321 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       364 |
|    1322 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       365 |
|    1323 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       366 |
|    1324 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       367 |
|    1325 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       368 |
|    1326 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       369 |
|    1327 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       370 |
|    1328 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       371 |
|    1329 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       372 |
|    1330 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       373 |
|    1331 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       374 |
|    1332 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       375 |
|    1333 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       376 |
|    1334 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       377 |
|    1335 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       378 |
|    1336 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       379 |
|    1337 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       380 |
|    1338 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       381 |
|    1339 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       382 |
|    1340 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       383 |
|    1341 |        3 |     408 |      1 | 1490025624 |           1 |      1 |       0 |         0 |       384 |
|    1342 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       385 |
|    1343 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       386 |
|    1344 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       387 |
|    1345 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       388 |
|    1346 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       389 |
|    1347 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       390 |
|    1348 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       391 |
|    1349 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       392 |
|    1350 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       393 |
|    1351 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       394 |
|    1352 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       395 |
|    1353 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       396 |
|    1354 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       397 |
|    1355 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       398 |
|    1356 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       399 |
|    1357 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       400 |
|    1358 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       401 |
|    1359 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       402 |
|    1360 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       403 |
|    1361 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       404 |
|    1362 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       405 |
|    1363 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       406 |
|    1364 |        3 |     408 |      1 | 1490025625 |           1 |      1 |       0 |         0 |       407 |
|    1365 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       230 |
|    1366 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       231 |
|    1367 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       232 |
|    1368 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       233 |
|    1369 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       234 |
|    1370 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       235 |
|    1371 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       236 |
|    1372 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       237 |
|    1373 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       238 |
|    1374 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       239 |
|    1375 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       240 |
|    1376 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       241 |
|    1377 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       242 |
|    1378 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       243 |
|    1379 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       244 |
|    1380 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       245 |
|    1381 |        7 |     408 |      1 | 1490025626 |           1 |      1 |       0 |         0 |       246 |
|    1382 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       247 |
|    1383 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       248 |
|    1384 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       249 |
|    1385 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       250 |
|    1386 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       251 |
|    1387 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       252 |
|    1388 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       253 |
|    1389 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       254 |
|    1390 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       255 |
|    1391 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       256 |
|    1392 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       257 |
|    1393 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       258 |
|    1394 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       259 |
|    1395 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       260 |
|    1396 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       261 |
|    1397 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       262 |
|    1398 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       263 |
|    1399 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       264 |
|    1400 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       265 |
|    1401 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       266 |
|    1402 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       267 |
|    1403 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       268 |
|    1404 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       269 |
|    1405 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       270 |
|    1406 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       271 |
|    1407 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       272 |
|    1408 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       273 |
|    1409 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       274 |
|    1410 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       275 |
|    1411 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       276 |
|    1412 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       277 |
|    1413 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       278 |
|    1414 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       279 |
|    1415 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       280 |
|    1416 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       281 |
|    1417 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       282 |
|    1418 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       283 |
|    1419 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       284 |
|    1420 |        7 |     408 |      1 | 1490025627 |           1 |      1 |       0 |         0 |       285 |
|    1421 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       286 |
|    1422 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       287 |
|    1423 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       288 |
|    1424 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       289 |
|    1425 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       290 |
|    1426 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       290 |
|    1427 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       291 |
|    1428 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       291 |
|    1429 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       292 |
|    1430 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       292 |
|    1431 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       293 |
|    1432 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       293 |
|    1433 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       294 |
|    1434 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       294 |
|    1435 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       295 |
|    1436 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       295 |
|    1437 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       296 |
|    1438 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       296 |
|    1439 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       297 |
|    1440 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       297 |
|    1441 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       298 |
|    1442 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       298 |
|    1443 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       299 |
|    1444 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       299 |
|    1445 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       300 |
|    1446 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       300 |
|    1447 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       301 |
|    1448 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       301 |
|    1449 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       302 |
|    1450 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       302 |
|    1451 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       303 |
|    1452 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       303 |
|    1453 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       304 |
|    1454 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       304 |
|    1455 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       305 |
|    1456 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       305 |
|    1457 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       306 |
|    1458 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       306 |
|    1459 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       307 |
|    1460 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       307 |
|    1461 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       308 |
|    1462 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       308 |
|    1463 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       309 |
|    1464 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       309 |
|    1465 |        7 |     408 |      1 | 1490025628 |           1 |      1 |       0 |         0 |       310 |
|    1466 |        7 |     408 |      1 | 1490025628 |           5 |      1 |       0 |         0 |       310 |
|    1467 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       311 |
|    1468 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       311 |
|    1469 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       312 |
|    1470 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       312 |
|    1471 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       313 |
|    1472 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       313 |
|    1473 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       314 |
|    1474 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       314 |
|    1475 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       315 |
|    1476 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       315 |
|    1477 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       316 |
|    1478 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       316 |
|    1479 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       317 |
|    1480 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       317 |
|    1481 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       318 |
|    1482 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       318 |
|    1483 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       319 |
|    1484 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       319 |
|    1485 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       320 |
|    1486 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       320 |
|    1487 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       321 |
|    1488 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       321 |
|    1489 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       322 |
|    1490 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       322 |
|    1491 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       323 |
|    1492 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       323 |
|    1493 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       324 |
|    1494 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       324 |
|    1495 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       325 |
|    1496 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       325 |
|    1497 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       326 |
|    1498 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       326 |
|    1499 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       327 |
|    1500 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       327 |
|    1501 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       328 |
|    1502 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       328 |
|    1503 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       329 |
|    1504 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       329 |
|    1505 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       330 |
|    1506 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       330 |
|    1507 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       331 |
|    1508 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       331 |
|    1509 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       332 |
|    1510 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       332 |
|    1511 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       333 |
|    1512 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       333 |
|    1513 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       334 |
|    1514 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       334 |
|    1515 |        7 |     408 |      1 | 1490025629 |           1 |      1 |       0 |         0 |       335 |
|    1516 |        7 |     408 |      1 | 1490025629 |           5 |      1 |       0 |         0 |       335 |
|    1517 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       336 |
|    1518 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       336 |
|    1519 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       337 |
|    1520 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       337 |
|    1521 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       338 |
|    1522 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       338 |
|    1523 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       339 |
|    1524 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       339 |
|    1525 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       340 |
|    1526 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       340 |
|    1527 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       341 |
|    1528 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       341 |
|    1529 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       342 |
|    1530 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       342 |
|    1531 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       343 |
|    1532 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       343 |
|    1533 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       344 |
|    1534 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       344 |
|    1535 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       345 |
|    1536 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       345 |
|    1537 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       346 |
|    1538 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       346 |
|    1539 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       347 |
|    1540 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       347 |
|    1541 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       348 |
|    1542 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       348 |
|    1543 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       349 |
|    1544 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       349 |
|    1545 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       350 |
|    1546 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       350 |
|    1547 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       351 |
|    1548 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       351 |
|    1549 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       352 |
|    1550 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       352 |
|    1551 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       353 |
|    1552 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       353 |
|    1553 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       354 |
|    1554 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       354 |
|    1555 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       355 |
|    1556 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       355 |
|    1557 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       356 |
|    1558 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       356 |
|    1559 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       357 |
|    1560 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       357 |
|    1561 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       358 |
|    1562 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       358 |
|    1563 |        7 |     408 |      1 | 1490025630 |           1 |      1 |       0 |         0 |       359 |
|    1564 |        7 |     408 |      1 | 1490025630 |           5 |      1 |       0 |         0 |       359 |
|    1565 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       360 |
|    1566 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       360 |
|    1567 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       361 |
|    1568 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       361 |
|    1569 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       362 |
|    1570 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       362 |
|    1571 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       363 |
|    1572 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       363 |
|    1573 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       364 |
|    1574 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       364 |
|    1575 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       365 |
|    1576 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       365 |
|    1577 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       366 |
|    1578 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       366 |
|    1579 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       367 |
|    1580 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       367 |
|    1581 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       368 |
|    1582 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       368 |
|    1583 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       369 |
|    1584 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       369 |
|    1585 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       370 |
|    1586 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       370 |
|    1587 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       371 |
|    1588 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       371 |
|    1589 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       372 |
|    1590 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       372 |
|    1591 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       373 |
|    1592 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       373 |
|    1593 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       374 |
|    1594 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       374 |
|    1595 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       375 |
|    1596 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       375 |
|    1597 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       376 |
|    1598 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       376 |
|    1599 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       377 |
|    1600 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       377 |
|    1601 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       378 |
|    1602 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       378 |
|    1603 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       379 |
|    1604 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       379 |
|    1605 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       380 |
|    1606 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       380 |
|    1607 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       381 |
|    1608 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       381 |
|    1609 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       382 |
|    1610 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       382 |
|    1611 |        7 |     408 |      1 | 1490025631 |           1 |      1 |       0 |         0 |       383 |
|    1612 |        7 |     408 |      1 | 1490025631 |           5 |      1 |       0 |         0 |       383 |
|    1613 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       384 |
|    1614 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       384 |
|    1615 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       385 |
|    1616 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       385 |
|    1617 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       386 |
|    1618 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       386 |
|    1619 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       387 |
|    1620 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       387 |
|    1621 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       388 |
|    1622 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       388 |
|    1623 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       389 |
|    1624 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       389 |
|    1625 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       390 |
|    1626 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       390 |
|    1627 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       391 |
|    1628 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       391 |
|    1629 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       392 |
|    1630 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       392 |
|    1631 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       393 |
|    1632 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       393 |
|    1633 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       394 |
|    1634 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       394 |
|    1635 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       395 |
|    1636 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       395 |
|    1637 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       396 |
|    1638 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       396 |
|    1639 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       397 |
|    1640 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       397 |
|    1641 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       398 |
|    1642 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       398 |
|    1643 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       399 |
|    1644 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       399 |
|    1645 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       400 |
|    1646 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       400 |
|    1647 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       401 |
|    1648 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       401 |
|    1649 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       402 |
|    1650 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       402 |
|    1651 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       403 |
|    1652 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       403 |
|    1653 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       404 |
|    1654 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       404 |
|    1655 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       405 |
|    1656 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       405 |
|    1657 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       406 |
|    1658 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       406 |
|    1659 |        7 |     408 |      1 | 1490025632 |           1 |      1 |       0 |         0 |       407 |
|    1660 |        7 |     408 |      1 | 1490025632 |           5 |      1 |       0 |         0 |       407 |
|    1661 |        3 |     409 |      1 | 1490025754 |           1 |      1 |       0 |         0 |      NULL |
|    1662 |        7 |     409 |      1 | 1490025754 |           5 |      1 |       0 |         0 |      NULL |
+---------+----------+---------+--------+------------+-------------+--------+---------+-----------+-----------+
1375 rows in set (0,00 sec)

wiper RESOLVED in r66982

vso CLOSED

Comment by Alex [ 2017 Mar 20 ]

I have question, what's happen if action is failed? Nothing? Can you add condition "do another action or step" if first action is failed? For example send email from server1, if send failed send over server2.

vso you can use https://www.zabbix.com/documentation/3.4/manual/config/notifications/media/script there are no such feature for other media types.

Comment by Alex [ 2017 Mar 21 ]

Yes i can, but what happen if script exec failed? We must create second script for search in database action stream and watchdog on status execution script, if status "failed" do another action. Why next step for run action have operation condition only "Event acknowledged" and not have "Previous step status"? You can add this condition or accept patch for web and server?

vso you need to create separate feature request for this, and fill in all the details.

Comment by Alex [ 2017 Mar 21 ]

Ok thx.

Comment by Vladislavs Sokurenko [ 2017 Mar 23 ]

(7) Cached alerts are sent in random order

In version before the changes there was order by a.alertid, but in this version there is no order.

Make 3 triggers to go into problem state.

Expected:
Oldest alerts are sent first

Actual:
it sends alert for trigger 1 then goes trigger 3 and then goes trigger 2.

Currently nextsend is equal between all alerts that are synced after SenderFrequency has elapsed.

Function: am_alert_compare

The same problem is when selecting pool with oldest alert ( in case if more than one session is allowed )
and in case of multiple media, selecting media with oldest alert.

Specification states:

Alerts having the same event source, object and objectid must be processed sequentially.

Does it make sense to process them sequentially if they are not ordered for example by clock,ns or alertid

wiper RESOLVED in r66984

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 23 ]

(8) Default value of sender frequency is not changed as per specification

The default SenderFrequency (CONFIG_SENDER_FREQUENCY) value must be changed to 5.

wiper RESOLVED in r66985

vso CLOSED

Comment by richlv [ 2017 Mar 23 ]

if the default SenderFrequency is changed, will this affect for how long the alert is attempted to be sent ?
with the current default of 30, that's 90 seconds, with 5 seconds that would be just 15 seconds total - or is the logic changing in some way here ?

vso This only affect caching of new alerts, for retry there will be "Retry interval - the interval between retry attempts (supports suffixes - 5s, 1m), " and max attempts also configurable.

<richlv> thank you, sounds great

Comment by Vladislavs Sokurenko [ 2017 Mar 24 ]

(9) [F] When selecting Media types it shows options as a first screen instead of Media type, if last time options screen was used.

gcalenko RESOLVED r67111 resolved as part of ZBXNEXT-3774

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 24 ]

(10) [F] Script and all other media types except sms has now unlimited simultaneous session count by default when creating.

Frontend max session selection is not consistent with data and upgrade patch.

When upgrading, all except email are set to maxsessions 1.

But when creating media then all except sms are set to maxsessions unlimited.

It makes sense especially for Script not to create by default with unlimited session count, since we do not know if user script can handle that, and if user is aware that now when creating user scripts they will be processed in parallel, since he might not even click in options but get different result than it was before.

I think this can cause very strange bugs.

wiper For SMS the unlimited and custom options are disabled. That looks fine. However for all other media types (including email) we should select 'One' by default.

gcalenko RESOLVED r67104 resolved as part of ZBXNEXT-3774

vso sorry wiper but what about upgrade patch ? If mail one is by default in frontend then why upgrade it to unlimited ?

wiper Good point, upgrading to unlimited might not work for everyone, so it's not really a safe choice. Will clarify it later.

vso REOPENED, when selecting mail then sms, then value gets reset to 1 max sessions, but when selecting script it does not get reset to default value of 1. moved server side to separate issue (19) .

gcalenko REOLVED r67143

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 24 ]

(11) [I] Suffixes are not consistent

This is very minor

When creating new media there is '10s' by default displayed.
However in schema, data it's '10' and upgrade patch it's '10'.

wiper Changed schema and upgrade patch.
RESOLVED in r66999

vso CLOSED with version fix in r67137

Comment by Vladislavs Sokurenko [ 2017 Mar 24 ]

(12) [F] Frontend allows custom concurrent sessions to be set to be more than 100, this is misleading since server only supports max 100 concurrent sessions.

gcalenko RESOLVED r67107 resolved as part of ZBXNEXT-3774

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 24 ]

(13) Server sometimes may exit with "asking for a minimum in an empty heap"
Flows which can cause it should be investigated, I don't have steps to reproduce yet.

wiper This could have happened after sending watchdog alerts.
RESOLVED

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Mar 24 ]

(14) [S] Media is not removed from cache when removed from action.

watchdog increases reference counter for each media so it will never be deleted until there is database down condition.
But then it will also send database down message to deleted medias.

wiper The watchdog media reference counting was broken, so it might have messed up media type removal. The am_db_sync_watchdog() seems to correctly remove the disabled/deleted mediatype/media. Please recheck it.
RESOLVED

vso CLOSED

Comment by Andris Zeila [ 2017 Mar 31 ]

(15) [I] There is an index on alert table by status,retries. Neither server nor frontend has queries using retries in where or order by, therefore retries field must be removed from the index, leaving index by status.

wiper RESOLVED in r66991

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Apr 06 ]

(16) [D] SenderFrequency parameter is removed, documentation shall be updated.
Users might get error:

zabbix_server [25472]: unknown parameter "SenderFrequency" in config file "/etc/zabbix/zabbix_server.conf", line 342

wiper We also should mention somewhere (upgrade notes?) that the SenderFrequency was used as a retry interval for failed alerts and now it's default value is 10s (it was 30s before).

martins-v RESOLVED in the upgrade notes.

vso maybe it is better to write that it must be removed instead of saying should not be present, since it sound optional to delete. But in fact it will give error.

martins-v RESOLVED

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Apr 06 ]

(17) [S] Should consider alert caching limit. (maybe as separate task)

Currently it is possible that there will be some kind of period where there will be many alerts coming and getting cached faster than sent, or not send due to some outage.

Expected:
Zabbix should not cache whole database of alerts but take some portions.

Actual:
There is no limit.

Also if there is no limit then there is no need to read alerts from database, we could read them through pipe instead and avoid useless reads and status updates of alert in database when it has been cached.

wiper That's true, it would be more efficient to send new alerts directly to alert manager and alert manager then would flush them to database. But let's consider it as a next step.

wiper Media type maxsessions and maxattempts limits will be added in (21) and alert queue size monitoring will be added in ZBXNEXT-3782. With those fixes there is only theoretical need for built in queue size limits, WONTFIX

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Apr 07 ]

(18) [S] StartAlerters parameter is missing from zabbix_server.conf

Expected:

### Option: StartAlerters
#	Number of pre-forked instances of Alerters
#
# Mandatory: no
# Range: 0-100
# Default:
# StartAlerters=3

wiper RESOLVED in r67160

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Apr 07 ]

(19) [S] Upgrade patch and clean install makes emails to go with unlimited parallel session count, is it safe choice?

Should make a decision here if it's Ok to upgrade like that then add to upgrade notes.

wiper No, it is not. There might be configuration when only one session is allowed on smtp server. Upgrade would break such setups. Let's remove the patch so the max sessions will be defaulted to 1 for all media types.
RESOLVED in r67161

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Apr 07 ]

(20) Multiple differences between upgrade and clean install

diff clean_install_dump.sql upgrade_dump.sql | colordiff
117d116
<   KEY `alerts_4` (`status`),
120a120
>   KEY `alerts_4` (`status`),
471c471,472
< INSERT INTO `auditlog` VALUES (1,2,1491553766,3,0,'','127.0.0.1',0,'');
---
> INSERT INTO `auditlog` VALUES (1,2,1491554232,3,0,'','127.0.0.1',0,'');
> INSERT INTO `auditlog` VALUES (2,1,1491554597,3,0,'','127.0.0.1',0,'');
2955c2956,2957
< INSERT INTO `ids` VALUES ('auditlog','auditid',1);
---
> INSERT INTO `ids` VALUES ('auditlog','auditid',2);
> INSERT INTO `ids` VALUES ('profiles','profileid',8);
3738c3740
< INSERT INTO `items` VALUES (22410,5,'','',10047,'Zabbix $4 $2 processes, in %','zabbix[process,alert manager,avg,busy]',60,7,365,0,0,'','%','',0,'','','','',0,'',NULL,NULL,'','','',0,'','','','',0,0,NULL,'','',0,'0',0,0,0,'',0);
---
> INSERT INTO `items` VALUES (22410,5,'','',10047,'Zabbix $4 $2 processes, in %','zabbix[process,db watchdog,avg,busy]',60,7,365,0,0,'','%','',0,'','','','',0,'',NULL,NULL,'','','',0,'','','','',0,0,NULL,'','',0,'0',0,0,0,'',0);
4199c4201
< INSERT INTO `items` VALUES (23254,5,'','',10084,'Zabbix $4 $2 processes, in %','zabbix[process,alert manager,avg,busy]',60,7,365,0,0,'','%','',0,'','','','',0,'',22410,NULL,'','','',0,'','','','',0,0,NULL,'','',0,'0',0,0,0,'',0);
---
> INSERT INTO `items` VALUES (23254,5,'','',10084,'Zabbix $4 $2 processes, in %','zabbix[process,db watchdog,avg,busy]',60,7,365,0,0,'','%','',0,'','','','',0,'',22410,NULL,'','','',0,'','','','',0,0,NULL,'','',0,'0',0,0,0,'',0);
5590c5592
<   `attempt_interval` varchar(32) COLLATE utf8mb4_bin NOT NULL DEFAULT '10',
---
>   `attempt_interval` varchar(32) COLLATE utf8_bin NOT NULL DEFAULT '10s',
6041a6044,6051
> INSERT INTO `profiles` VALUES (1,1,'web.menu.config.last',0,0,0,'hosts.php','',3);
> INSERT INTO `profiles` VALUES (2,1,'web.config.groupid',0,0,0,'','',1);
> INSERT INTO `profiles` VALUES (3,1,'web.latest.groupid',0,0,0,'','',1);
> INSERT INTO `profiles` VALUES (4,1,'web.hosts.php.sort',0,0,0,'name','',3);
> INSERT INTO `profiles` VALUES (5,1,'web.hosts.php.sortorder',0,0,0,'ASC','',3);
> INSERT INTO `profiles` VALUES (6,1,'web.paging.lastpage',0,0,0,'hosts.php','',3);
> INSERT INTO `profiles` VALUES (7,1,'web.media_type.php.sort',0,0,0,'description','',3);
> INSERT INTO `profiles` VALUES (8,1,'web.media_types.php.sortorder',0,0,0,'ASC','',3);
6572c6582
< INSERT INTO `sessions` VALUES ('2e8e6afc6cb61295d386f5b5cd31adfe',2,1491553796,0);
---
> INSERT INTO `sessions` VALUES ('ddbdd6c870d32c7c88967cda83b3dcbe',1,1491554657,0);
7298c7308
< INSERT INTO `triggers` VALUES (13082,'{13168}>75','Zabbix alert manager processes more than 75% busy','',0,0,3,0,'','',NULL,0,0,0,1,'{13168}<65',0,'',0);
---
> INSERT INTO `triggers` VALUES (13082,'{13168}>75','Zabbix db watchdog processes more than 75% busy','',0,0,3,0,'','',NULL,0,0,0,1,'{13168}<65',0,'',0);
7475c7485
< INSERT INTO `triggers` VALUES (13469,'{13169}>75','Zabbix alert manager processes more than 75% busy','',0,0,3,0,'','',13082,0,0,0,1,'{13169}<65',0,'',0);
---
> INSERT INTO `triggers` VALUES (13469,'{13169}>75','Zabbix db watchdog processes more than 75% busy','',0,0,3,0,'','',13082,0,0,0,1,'{13169}<65',0,'',0);
7725c7735
< -- Dump completed on 2017-04-07 11:29:59
---
> -- Dump completed on 2017-04-07 11:44:24

wiper There are differences in media_type attempt_interval and the maxsessions value for default email type.
RESOLVED in r67170

vso CLOSED

Comment by richlv [ 2017 Apr 07 ]

apparently, alert caching has been introduced with this development (hard to say without a specification).
has there been any consideration for an internal item to determine the length of the alert queue in this cache ?

wiper Yes, there was, but we decided to do it in separate issue - ZBXNEXT-3782

<richlv> great, thanks for the update

Comment by Andris Zeila [ 2017 Apr 10 ]

(21) [F] Add more validation for the new media type properties:

  • maxsessions: 0-100 (1 for SMS as it is now)
  • maxattempts: 0-10
  • attempt_interval: 0-60s (1m)

gcalenko RESOLVED r67188

oleg.egorov REOPENED. Missed validation

gcalenko RESOLVED r67802

iivs That was not the final version of the code. I assume the latest is r68029, but anyway field "maxattempts" is incorrectly validated.

Undefined index: maxsessions [... ? CFrontendApiWrapper->create() ? CApiWrapper->__call() ? CFrontendApiWrapper->callMethod() ? CApiWrapper->callMethod() ? CFrontendApiWrapper->callClientMethod() ? CLocalApiClient->callMethod() ? call_user_func_array() ? CMediatype->create() ? CMediatype->validateCreate() in include\classes\api\services\CMediatype.php:387]
Undefined index: maxsessions [... ? CFrontendApiWrapper->update() ? CApiWrapper->__call() ? CFrontendApiWrapper->callMethod() ? CApiWrapper->callMethod() ? CFrontendApiWrapper->callClientMethod() ? CLocalApiClient->callMethod() ? call_user_func_array() ? CMediatype->update() ? CMediatype->validateUpdate() in include\classes\api\services\CMediatype.php:724]

REOPENED

gcalenko RESOLVED r68545

iivs CLOSED

Comment by Vladislavs Sokurenko [ 2017 Apr 10 ]

(22) [D] Should be very well documented what is now launched in parallel.
For example if user created 2 medias with the type script.

He must ensure that there are no concurrency for the same resource between those 2 scripts.

martins-v] The fact that media types are processed in parallel is now included in what's new / upgrade notes. Also, I've added a note about two script media types possibly getting processed in parallel to script media type configuration. RESOLVED

vso looks good to me, wiper could you please take a look and close if it's OK.

wiper No objections. CLOSED

Comment by Vladislavs Sokurenko [ 2017 Apr 10 ]

Server side successfully tested.

Comment by Oleg Egorov (Inactive) [ 2017 Apr 24 ]

(23) [F] Coding style issues:

  • Function setMaxSessionsBeforeSubmit used only once and can be removed
  • Many var definition:
    var mstype = $('#maxsessionsType :radio:checked').val();
    var inputBox = $('#maxsessions');
    

Better use:

var mstype = $('#maxsessionsType :radio:checked').val(),
     inputBox = $('#maxsessions');
  • Condition structure:
    if (mstype != 'custom') {
    	inputBox.val(mstype == 'one' ? 1 : 0);
    }
    if (mstype == 'custom' && $.trim(inputBox.val()) == '') {
    	inputBox.val(0);
    }
    

Change to:

if (mstype != 'custom') {
	inputBox.val(mstype == 'one' ? 1 : 0);
}
else if (mstype == 'custom' && $.trim(inputBox.val()) == '') {
	inputBox.val(0);
}
  • CamelCase usage in CMediaType.php:375

gcalenko RESOLVED r67512

oleg.egorov

  • JS comparing, use === for strings.
    administration.mediatype.js.php:84, 87...
  • Please remove CSimpleIntervalParser.php from dev branch

REOPENED

gcalenko RESOLVED r68007, r68008, r68009, r68029

iivs More coding style issues:

CMediatype.php

  • Function convertFunctionValue() is for different purposes. Use timeUnitToSeconds().
  • No reason to add another $value = $mediatype['maxsessions']; variable, since it's not temporary. That concerns all other new parameters as well.
  • Add blank line before if (!$valid_value || $value ... lines. Otherwise it looks bad.
  • $ge_value and $le_value are long bad names and shouldn't be uses together with < and >, but rather <= and >=. So it's better to use $min and $max. Also $ge_value = 0; is also quite useless. You can use 0 directly in if statement.
  • L403,739: parenthesis should be on new line.
  • L724-726: why this is different style than on line 389?
  • L770-772,807-809: sentences must start with capital letter and end with a dot.
  • Duplicate code for validateUpdate(). There is no reason to execute a block of code and parse strings if the gven value is the same as value in DB. Add comparison to $db_mediatype[...].
  • Most of the time I was guessing what value to enter. New errors don't give any information of what value is expected. must be one of, must be between, cannot be empty etc. Find and use existing error messages.

administration.mediatype.edit.js.php

  • Functions setMaxSessionsTypeSMS() and setMaxSessionsTypeOther() are almost identical. A small if inside one function would suffice.
  • initialized is very vague and generic name. A lot of things can be initialized. Does it mean the script is initialized? A variable is initialized?
  • toggleMaxSessionsType() function has only one use and that's it.
  • L82,83: declare varibales at start of the function and add more blank lines.
  • L85: missing parenthesis.
  • L138-139: why there are two lines? Sentences fit into one line.
  • L139,161,172: sentences must start with capital letter and end with a dot.
  • L142-143: wrong formatting.
  • L144: missing space after switch
  • L145,148,151 extra spaces.
  • L147,150: missing blank lines.
  • L167-168,181: indendation is wrong.

administration.mediatype.edit.php

  • L20: missing blank line.
  • L151,157,160,163,166,190: camelCase usage.
  • L151: missing parenthesis.
  • L151: why there is type casting required?
  • L155: missing space.
  • L156,159,162: extra spaces.
  • L164: break; can be ommited.
  • L179: wrong indentation.

CControllerMediaTypeEdit.php

  • L87: 'maxsessions' fits into previous line.
  • L159: extra line.

CControllerMediaTypeCreate.php and CControllerMediaTypeUpdate.php

  • L64-75 and L65-76: code is useless (and wrong in several ways), since validation happens on API side and error message is more descriptive there.

actions.inc.php

  • L1333,1428,1487: $status = $alert['status'] == ALERT_STATUS_NEW ? ALERT_STATUS_NOT_SENT : $alert['status']; can be replaced by adding a new case ALERT_STATUS_NEW:.
  • Variable $in_progress has only one use, so we can add that whole statement directly into if.
  • $status and $status_str are the same, but in different functions. Please unify variable names.

REOPENED

gcalenko RESOLVED r68593, r68601, r68602, r68607, r68612

iivs Some lines overflow, some parenthesis end on wrong lines, attempt_inteval was not properly validated causing undefined offset error, not everything was fixed, some unnecessary blank lines added and few other incorrect coding style fixes found. Please, see my changes in r68644.

gcalenko CLOSED

Comment by Oleg Egorov (Inactive) [ 2017 Apr 24 ]

(24) [F] Possible set for "Attempt interval" any value, for example:
10msmsms
10sssssss
...

gcalenko could be implemented when ZBXNEXT-1675 will be done

gcalenko RESOLVED r67802

oleg.egorov CLOSED

Comment by Oleg Egorov (Inactive) [ 2017 Apr 24 ]

(25) [F] Field default value should use schema value.

'attempt_interval' => '10s',

Is incorrect

gcalenko RESOLVED r67533

oleg.egorov Please improve old code and use schema default values for other elements. For example, smtp_verify_peer, smtp_port...

gcalenko RESOLVED r68005

iivs CLOSED

Comment by Oleg Egorov (Inactive) [ 2017 Apr 24 ]

(26) [F] ZXNEXT-2442 dev branch should be merged with ZBXNEXT-1675, because there finished interval validator and current checks like:

if ($ret && $this->hasInput('attempt_interval')) {
	$interval = convertFunctionValue($this->getInput('attempt_interval'));
	$maximum = convertFunctionValue('1m');
	if (bccomp($maximum, $interval) == -1) {
		info(_s('Incorrect value "%1$s" for "%2$s" field.', $this->getInput('attempt_interval'),
			'attempt_interval'
			)
		);
		$ret = false;
		$error = self::VALIDATION_ERROR;
	}
}

Should be removed

gcalenko could be implemented when ZBXNEXT-1675 will be done

gcalenko RESOLVED r67802

oleg.egorov CLOSED, but as was said in (23)
Please remove CSimpleIntervalParser.php from dev branch

Comment by Oleg Egorov (Inactive) [ 2017 Apr 25 ]

(28) [F] Translation strings changes?

gcalenko Strings added:

  • Attempt interval
  • Concurrent sessions
  • Custom
  • One
  • Options
  • Unlimited

oleg.egorov CLOSED

Comment by Andris Zeila [ 2017 May 08 ]

(29) [S] Fixed compilator warnings. Also fixed build errors on AIX (and possibly other non Linux) systems
RESOLVED in r67868, r67869
vso CLOSED

Comment by Andris Zeila [ 2017 Jun 02 ]

(31) Fixed few clang scan-build "Value stored to '...' is never read" warnings. Please review r68849
vso CLOSED

Comment by Natalja Romancaka [ 2017 Jun 02 ]

(32) [F] On event details page "Retries left" always starts from number 3, but should starts from attempts number in media type options. So if there are more than 3 retries set, "Retries left" goes to minus

gcalenko RESOLVED r68860 Please review changes.

iivs CLOSED

Comment by Vladislavs Sokurenko [ 2017 Jun 02 ]

(33) Max attempts 0 behavior equals to Max attempts 1 behavior

Sorry for brief description, I will provide more information later but current situation is:

Documentation states:

Number of attempts for trying to resend a notification in case the sending failed (0-10).

If you set max attempts to 0 then it will send 1 time (no resend is fine)
If you set max attempts to 1 then it will send 1 time, same as previous (there should be one resend)
If you set max attempts to 2 then it will only send 2 times. (according to documentation it should be 3 times total, one sending failed, 2 resends)

First impression is that documentation is wrong, it must state 1-10 maximum number of total attempts and frontend must not allow 0 because of that.

martins-v It seems that 0-10 was suggested in (21). If it's wrong and should be 1-10, then the 0-60 for retry interval must also be reviewed.

wiper I clarified this with sasha - the 0 value for maxattempts should be disallowed. In this context 0 would mean unlimitted attempts, while we want to limit the maximum numbber of attempts to 10.

0-60 retry interval is fine, 0 meaning immediate retry.

martins-v Thanks, I've tried to fix the documentation part. Frontend still to do.

gcalenko RESOLVED r68946. API will not allow to save 'maxattempts' field with value not between 1 and 10.

iivs CLOSED

Comment by Natalja Romancaka [ 2017 Jun 05 ]

(34) [A] for SMS media type can set concurrent sessions 0 (unlimited), should allow only 1

    "method": "mediatype.create",
    "params": {
        "description": "API sms",
        "type": 2,
        "gsm_modem": "test",
        "maxsessions":  0
    }

gcalenko RESOLVED r68945

iivs CLOSED

Comment by Natalja Romancaka [ 2017 Jun 05 ]

(35) [A] mediatype.update: not changed maxsessions for SMS media type
Steps to reproduce:
1. Create email media type and set maxsessions to 100
2. Change media type to SMS by API

{
    	"mediatypeid": "28",
        "description": "API update",
        "type": 2,
        "gsm_modem": "test"
}

Result: in DB maxsessions left 100
Expected result: maxsessions=1

gcalenko RESOLVED r68944 API will not allow to change media type to SMS when 'maxattempts' contain invalid value.

iivs CLOSED

Comment by Vladislavs Sokurenko [ 2017 Jun 06 ]

(36) [D] API documentation

gcalenko RESOLVED

iivs Changes from 3.2 to 3.4 and inproperly desribed. That information belongs to regular changelog. In API, there should be mentioned new properties/fields and things of that nature.

REOPENED

gcalenko RESOLVED

  • fixed range definition for field attempt_interval in media type object description page.
  • fixed message in changes from 3.2 to 3.4 page

iivs CLOSED

Comment by Gregory Chalenko [ 2017 Jun 07 ]

(38) [F] Remove frontend validation for fields 'maxsessions', 'maxattempts', 'attempt_interval'. This will allow to keep validation error messages identical in frontend and API requests.

gcalenko RESOLVED r69021 Please review changes.

iivs OK, that seems very reasonable.
CLOSED

Comment by Natalja Romancaka [ 2017 Jun 09 ]

(39) [AF] can't remove media type in list
Steps to reproduce:
1. Create a media type via API
2. Go to Administration->Media types
3. Mark the checkbox before the respective media and click Delete button
4. Repeat again 1-3 steps
Result: Access denied You are logged in as "Admin". You have no permissions to access this page.

gcalenko fixed in ZBX-11309
CLOSED

Comment by Andris Zeila [ 2017 Jun 22 ]

(42) [S] Server was not correctly updating the retries field. Actually the more correct description would be 'number of failed attempts' rather than 'Number of used retries' (database schema documentation)
RESOLVED in r69494, r69495, r69497

vso CLOSED

Comment by Andris Zeila [ 2017 Jun 22 ]

(43) [S] This sounds more like a bug than feature, but when executing custom script alerts server will immediately fail scripts without access rights (without retries). Previously server still tried executing commands. I think we should keep the old functionality, this must be discussed.

wiper It was decided to leave as it is currently - alert manager will fail alert script with invalid access rights without retrying.
CLOSED

Comment by Andris Zeila [ 2017 Jun 22 ]

(44) [S] Sever updates media types only for new alerts. It should probably update all cached media types so queued alerts that uses other media types are also affected (to be discussed).

wiper So media types for all queued alerts must be updated. RESOLVED in r69533

vso CLOSED

Comment by Vladislavs Sokurenko [ 2017 Jun 26 ]

(45) [S] If alert is NULL there is flow should never happen and goto statement which does not clear alerter.

This is extremely minor as should never happen but still see:

	if (NULL == alerter->alert)
	{
		THIS_SHOULD_NEVER_HAPPEN;
		goto out;
	}

wiper This situation could happen only if manager receives unexpected result message from free alerter. In this improbable case the alerter will already be in the free alerters queue.
WONTFIX

Comment by Vladislavs Sokurenko [ 2017 Jun 26 ]

Sub issues still open
(41) [F] Needs review by iivs

(45) [S] Minor optional fix.

Comment by richlv [ 2017 Jun 27 ]

regarding (43), worth documenting the change in the upgrade notes ?

martins-v I've added a sentence about it to the upgrade notes.

Comment by Andris Zeila [ 2017 Jul 05 ]

Released in:

  • 3.4.0alpha1 r69820
Comment by Vladislavs Sokurenko [ 2017 Jul 12 ]

Fixed in:

  • 3.4.0alpha1 r70075
Comment by Ivo Kurzemnieks [ 2017 Jul 19 ]
 32429:20170719:114442.818 server #2 started [alerter #1]
 32429:20170719:114442.818 __zbx_zbx_setproctitle() title:'alerter [connecting to the database]'
 32429:20170719:114442.818 In zbx_ipc_socket_open()
 32429:20170719:114442.818 End of zbx_ipc_socket_open():SUCCEED
 32429:20170719:114442.818 In zbx_ipc_socket_write()
 32429:20170719:114442.818 End of zbx_ipc_socket_write():SUCCEED
 32429:20170719:114442.818 __zbx_zbx_setproctitle() title:'alerter #1 started'
 32429:20170719:114442.818 In zbx_ipc_socket_read()
 32429:20170719:114442.818 End of zbx_ipc_socket_read():FAIL
 32429:20170719:114442.818 cannot read alerter service request
 32426:20170719:114442.820 One child process died (PID:32429,exitcode/signal:1). Exiting ...
 32433:20170719:114442.820 server #6 started [timer #1]
 32426:20170719:114442.820 zbx_on_exit() called
 32431:20170719:114442.820 server #4 started [alerter #3]
 32433:20170719:114442.820 __zbx_zbx_setproctitle() title:'timer #1 [connecting to the database]'
 32428:20170719:114442.820 Got signal [signal:15(SIGTERM),sender_pid:32426,sender_uid:1028,reason:0]. Exiting ...
 32432:20170719:114442.821 Got signal [signal:15(SIGTERM),sender_pid:32426,sender_uid:1028,reason:0]. Exiting ...
 32431:20170719:114442.822 Got signal [signal:15(SIGTERM),sender_pid:32426,sender_uid:1028,reason:0]. Exiting ...
 32430:20170719:114442.822 Got signal [signal:15(SIGTERM),sender_pid:32426,sender_uid:1028,reason:0]. Exiting ...
 32433:20170719:114442.823 In DBconnect() flag:0
 32433:20170719:114442.831 End of DBconnect():0
 32433:20170719:114442.831 In flush_correlated_events() events_num:0
 32433:20170719:114442.831 End of flush_correlated_events() events_num:0
 32433:20170719:114442.831 __zbx_zbx_setproctitle() title:'timer #1 [processed 0 triggers, 0 events in 0.000000 sec, 0 maintenances in 0.000000 sec, idle 18 sec]'
 32426:20170719:114444.820 In DBconnect() flag:1
 32426:20170719:114444.827 End of DBconnect():0
 32426:20170719:114444.827 In free_database_cache()
 32426:20170719:114444.827 In DCsync_all()
 32426:20170719:114444.827 In DCsync_history() history_num:0
 32426:20170719:114444.827 syncing history data...
 32426:20170719:114444.827 In flush_correlated_events() events_num:0
 32426:20170719:114444.827 End of flush_correlated_events() events_num:0
 32426:20170719:114444.827 In flush_correlated_events() events_num:0
 32426:20170719:114444.828 End of flush_correlated_events() events_num:0
 32426:20170719:114444.828 syncing history data done
 32426:20170719:114444.828 In DCsync_trends() trends_num:0
 32426:20170719:114444.828 syncing trend data...
 32426:20170719:114444.828 query [txnlev:1] [begin;]
 32426:20170719:114444.828 query [txnlev:1] [commit;]
 32426:20170719:114444.829 syncing trend data done
 32426:20170719:114444.829 End of DCsync_trends()
 32426:20170719:114444.829 End of DCsync_all()
 32426:20170719:114444.829 End of free_database_cache()
 32426:20170719:114444.829 In free_configuration_cache()
 32426:20170719:114444.829 End of free_configuration_cache()
 32426:20170719:114444.829 In zbx_vc_destroy()
 32426:20170719:114444.829 End of zbx_vc_destroy()
 32426:20170719:114444.830 In free_selfmon_collector() collector:0x7f476acff000
 32426:20170719:114444.830 End of free_selfmon_collector()
 32426:20170719:114444.830 In zbx_unload_modules()
 32426:20170719:114444.830 End of zbx_unload_modules()
 32426:20170719:114444.830 Zabbix Server stopped. Zabbix 3.4.0alpha1 (revision {ZABBIX_REVISION}).

As discussed with sasha most likely the problem is somewhere here in this development.

iivs Tried to run two instances simultaneously.

vso this below should help

# SocketDir=/tmp
Comment by Oleksii Zagorskyi [ 2017 Sep 14 ]

This commit has override a change in ZBX-11909

Generated at Fri Mar 29 02:56:47 EET 2024 using Jira 9.12.4#9120004-sha1:625303b708afdb767e17cb2838290c41888e9ff0.