-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreq_alt-schedule-bf278.html
917 lines (884 loc) · 97.7 KB
/
req_alt-schedule-bf278.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/gatling.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/all_sessions.js"></script>
<script type="text/javascript" src="js/stats.js"></script>
<script type="text/javascript" src="js/highstock.js"></script>
<script type="text/javascript" src="js/highcharts-more.js"></script>
<script type="text/javascript" src="js/theme.js"></script>
<script type="text/javascript" src="js/unpack.js"></script>
<title>Gatling Stats - alt schedule</title>
</head>
<body>
<div class="frise"></div>
<div class="container details">
<div class="head">
<a href="http://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo.png"/></a>
</div>
<div class="main">
<div class="cadre">
<div class="onglet">
<img src="style/cible.png" />
<p><span>masscopyandretardsimulation</span></p>
</div>
<div class="content">
<div class="sous-menu">
<div class="item "><a href="index.html">GLOBAL</a></div>
<div class="item ouvert"><a id="details_link" href="#">DETAILS</a></div>
<script type="text/javascript">
var timestamp = 1528987419764;
var runStartHumanDate = moment(timestamp).format("YYYY-MM-DD HH:mm:ss Z");
document.writeln("<p class='sim_desc' title='"+ runStartHumanDate +", duration : 3596 seconds' data-content=''>");
document.writeln("<b>" + runStartHumanDate + ", duration : 3596 seconds </b>");
document.writeln("</p>");
</script>
</div>
<div class="content-in">
<h1><span>> </span>alt schedule</h1>
<div class="article">
<div class="infos">
<div class="infos-in">
<div class="infos-title">STATISTICS</div>
<div class="repli"></div>
<div class="info">
<h2 class="first">Executions</h2>
<table>
<thead>
<tr><th></th><th>Total</th><th>OK</th><th>KO</th></tr>
</thead>
<tbody>
<tr>
<td class="title"></td>
<td id="numberOfRequests" class="total"></td>
<td id="numberOfRequestsOK" class="ok"></td>
<td id="numberOfRequestsKO" class="ko"></td>
</tr>
<tr>
<td class="title">Mean req/s</td>
<td id="meanNumberOfRequestsPerSecond" class="total"></td>
<td id="meanNumberOfRequestsPerSecondOK" class="ok"></td>
<td id="meanNumberOfRequestsPerSecondKO" class="ko"></td>
</tr>
</tbody>
</table>
<h2 class="second">Response Time (ms)</h2>
<table>
<thead>
<tr>
<th></th>
<th>Total</th>
<th>OK</th>
<th>KO</th>
</tr>
</thead>
<tbody>
<tr>
<td class="title">Min</td>
<td id="minResponseTime" class="total"></td>
<td id="minResponseTimeOK" class="ok"></td>
<td id="minResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">50th percentile</td>
<td id="percentiles1" class="total"></td>
<td id="percentiles1OK" class="ok"></td>
<td id="percentiles1KO" class="ko"></td>
</tr>
<tr>
<td class="title">75th percentile</td>
<td id="percentiles2" class="total"></td>
<td id="percentiles2OK" class="ok"></td>
<td id="percentiles2KO" class="ko"></td>
</tr>
<tr>
<td class="title">95th percentile</td>
<td id="percentiles3" class="total"></td>
<td id="percentiles3OK" class="ok"></td>
<td id="percentiles3KO" class="ko"></td>
</tr>
<tr>
<td class="title">99th percentile</td>
<td id="percentiles4" class="total"></td>
<td id="percentiles4OK" class="ok"></td>
<td id="percentiles4KO" class="ko"></td>
</tr>
<tr>
<td class="title">Max</td>
<td id="maxResponseTime" class="total"></td>
<td id="maxResponseTimeOK" class="ok"></td>
<td id="maxResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">Mean</td>
<td id="meanResponseTime" class="total"></td>
<td id="meanResponseTimeOK" class="ok"></td>
<td id="meanResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">Std Deviation</td>
<td id="standardDeviation" class="total"></td>
<td id="standardDeviationOK" class="ok"></td>
<td id="standardDeviationKO" class="ko"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="schema demi">
<div id="container_indicators" class="demi"></div>
</div>
<div class="statistics extensible-geant collapsed">
<div class="title">
<div class="title_collapsed" style="cursor: auto;">ERRORS</div>
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total">bodyString.find.transform.exists failed, could not extract: transform crashed: Object is missing required member 'alternateSchedules'<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total">5</td>
<td class="value error-col-3 total">83.333 %</td>
</tr>
<tr>
<td class="error-col-1 total">j.u.c.TimeoutException: Request timeout to perf.kronos.itv.com/10.220.210.244:443 after 60000ms<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total">1</td>
<td class="value error-col-3 total">16.667 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="container_distrib" class="geant"></div>
</div>
<div class="schema geant">
<div id="container" class="geant"></div>
</div>
<div class="schema geant">
<a name="requests"></a>
<div id="container_requests" class="geant"></div>
</div>
<div class="schema geant">
<a name="responses"></a>
<div id="container_responses" class="geant"></div>
</div>
<div class="schema geant">
<div id="container_response_time_dispersion" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="nav">
<ul></ul>
</div>
</div>
<div class="foot">
<a href="http://gatling.io" title="Gatling Home Page"><img alt="Gatling" src="style/logo-gatling.jpg"/></a>
</div>
<script type="text/javascript">
var pageStats = stats.contents['req_alt-schedule-bf278'].stats;
$(document).ready(function() {
$('.sim_desc').popover({trigger:'hover', placement:'bottom'});
setDetailsLinkUrl();
setDetailsMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var indicatorsChart = new Highcharts.Chart({
chart: {
renderTo: 'container_indicators',
marginRight: 150
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.name,
pageStats.group2.name,
pageStats.group3.name,
pageStats.group4.name
]
},
yAxis: {
title: { text: 'Number of Requests' }
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#A0B228',
data: [pageStats.group1.count,0,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FFDD00',
data: [0,pageStats.group2.count,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF9D00',
data: [0,0,pageStats.group3.count,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
data: [0,0,0,pageStats.group4.count],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#A0B228'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FF9D00'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#FF0000'
}
],
center: [470, 85],
size: 100,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
indicatorsChart.setTitle({
text: '<span class="chart_title">Indicators</span>',
useHTML: true
});
$('#container_errors').sortable('#container_errors');
var responseTimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'container_distrib',
type: 'column'
},
credits: {
enabled: false
},
legend: {
enabled: true,
floating: true,
y: -285,
borderWidth: 0,
itemStyle: {
fontWeight: "normal"
}
},
title: {
text: 'A title to let highcharts reserve the place for the title set later'
},
xAxis: {
categories: ['310', '910', '1510', '2110', '2710', '3310', '3910', '4510', '5110', '5710', '6310', '6910', '7510', '8109', '8709', '9309', '9909', '10509', '11109', '11709', '12309', '12909', '13509', '14109', '14709', '15309', '15909', '16509', '17109', '17709', '18309', '18909', '19509', '20109', '20709', '21309', '21909', '22509', '23108', '23708', '24308', '24908', '25508', '26108', '26708', '27308', '27908', '28508', '29108', '29708', '30308', '30908', '31508', '32108', '32708', '33308', '33908', '34508', '35108', '35708', '36308', '36908', '37508', '38107', '38707', '39307', '39907', '40507', '41107', '41707', '42307', '42907', '43507', '44107', '44707', '45307', '45907', '46507', '47107', '47707', '48307', '48907', '49507', '50107', '50707', '51307', '51907', '52507', '53106', '53706', '54306', '54906', '55506', '56106', '56706', '57306', '57906', '58506', '59106', '59706'],
tickInterval: 20
},
yAxis: {
min: 0,
title: {
text: 'Percentage of Requests'
}
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#4572A7',
name: 'OK',
data: [
93.33,2.0,1.33,0.66,0.33,0.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
name: 'KO',
data: [
1.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responseTimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responseTimePercentiles = unpack([[1528987422,null],[1528987425,[153,153,153,153,153,153,153,153,153,153]],[1528987429,[115,120,126,132,133,134,135,136,137,138]],[1528987433,null],[1528987436,[224,224,224,224,224,224,224,224,224,224]],[1528987440,[167,167,167,167,167,167,167,167,167,167]],[1528987443,[111,111,111,111,111,111,111,111,111,111]],[1528987447,null],[1528987451,null],[1528987454,null],[1528987458,null],[1528987461,null],[1528987465,null],[1528987469,null],[1528987472,null],[1528987476,null],[1528987479,null],[1528987483,[240,240,240,240,240,240,240,240,240,240]],[1528987486,[117,117,117,117,117,117,117,117,117,117]],[1528987490,null],[1528987494,[148,148,148,148,148,148,148,148,148,148]],[1528987497,[140,140,140,140,140,140,140,140,140,140]],[1528987501,[110,110,110,110,110,110,110,110,110,110]],[1528987504,null],[1528987508,null],[1528987512,null],[1528987515,null],[1528987519,null],[1528987522,[152,152,152,152,152,152,152,152,152,152]],[1528987526,null],[1528987530,null],[1528987533,null],[1528987537,null],[1528987540,null],[1528987544,null],[1528987548,null],[1528987551,null],[1528987555,null],[1528987558,null],[1528987562,[106,123,140,142,142,142,143,143,143,144]],[1528987566,null],[1528987569,[142,142,143,143,143,143,143,143,143,144]],[1528987573,null],[1528987576,null],[1528987580,null],[1528987584,null],[1528987587,null],[1528987591,null],[1528987594,null],[1528987598,null],[1528987602,[148,148,148,148,148,148,148,148,148,148]],[1528987605,null],[1528987609,null],[1528987612,null],[1528987616,null],[1528987620,[123,123,123,123,123,123,123,123,123,123]],[1528987623,[142,154,166,178,181,183,186,188,190,191]],[1528987627,null],[1528987630,null],[1528987634,null],[1528987638,[174,174,174,174,174,174,174,174,174,174]],[1528987641,[134,134,134,134,134,134,134,134,134,134]],[1528987645,null],[1528987648,null],[1528987652,null],[1528987656,null],[1528987659,null],[1528987663,null],[1528987666,null],[1528987670,[176,176,176,176,176,176,176,176,176,176]],[1528987674,[127,127,127,127,127,127,127,127,127,127]],[1528987677,null],[1528987681,null],[1528987684,[129,129,129,129,129,129,129,129,129,129]],[1528987688,null],[1528987692,null],[1528987695,[798,798,798,798,798,798,798,798,798,798]],[1528987699,null],[1528987702,null],[1528987706,[182,182,182,182,182,182,182,182,182,182]],[1528987710,null],[1528987713,[253,253,253,253,253,253,253,253,253,253]],[1528987717,null],[1528987720,null],[1528987724,null],[1528987727,null],[1528987731,null],[1528987735,null],[1528987738,[138,138,138,138,138,138,138,138,138,138]],[1528987742,[149,149,149,149,149,149,149,149,149,149]],[1528987745,null],[1528987749,null],[1528987753,[133,133,133,133,133,133,133,133,133,133]],[1528987756,[181,181,181,181,181,181,181,181,181,181]],[1528987760,[117,117,117,117,117,117,117,117,117,117]],[1528987763,null],[1528987767,null],[1528987771,[152,152,152,152,152,152,152,152,152,152]],[1528987774,null],[1528987778,null],[1528987781,null],[1528987785,null],[1528987789,[130,130,130,130,130,130,130,130,130,130]],[1528987792,null],[1528987796,null],[1528987799,null],[1528987803,[126,126,126,126,126,126,126,126,126,126]],[1528987807,null],[1528987810,null],[1528987814,null],[1528987817,[142,142,142,142,142,142,142,142,142,142]],[1528987821,null],[1528987825,null],[1528987828,null],[1528987832,null],[1528987835,null],[1528987839,null],[1528987843,null],[1528987846,[96,124,152,157,158,159,160,161,162,163]],[1528987850,null],[1528987853,null],[1528987857,null],[1528987861,null],[1528987864,null],[1528987868,[149,149,149,149,149,149,149,149,149,149]],[1528987871,null],[1528987875,null],[1528987879,[129,129,129,129,129,129,129,129,129,129]],[1528987882,null],[1528987886,null],[1528987889,[163,163,163,163,163,163,163,163,163,163]],[1528987893,null],[1528987897,null],[1528987900,null],[1528987904,[117,117,117,117,117,117,117,117,117,117]],[1528987907,null],[1528987911,[91,91,91,91,91,91,91,91,91,91]],[1528987915,null],[1528987918,null],[1528987922,[156,156,156,156,156,156,156,156,156,156]],[1528987925,null],[1528987929,[622,622,622,622,622,622,622,622,622,622]],[1528987933,null],[1528987936,null],[1528987940,[120,120,120,120,120,120,120,120,120,120]],[1528987943,null],[1528987947,null],[1528987951,null],[1528987954,null],[1528987958,[111,111,111,111,111,111,111,111,111,111]],[1528987961,null],[1528987965,null],[1528987968,[146,146,146,146,146,146,146,146,146,146]],[1528987972,null],[1528987976,null],[1528987979,[116,116,116,116,116,116,116,116,116,116]],[1528987983,null],[1528987986,null],[1528987990,null],[1528987994,null],[1528987997,null],[1528988001,[95,109,123,137,139,142,145,148,150,151]],[1528988004,null],[1528988008,null],[1528988012,[147,147,147,147,147,147,147,147,147,147]],[1528988015,null],[1528988019,null],[1528988022,null],[1528988026,null],[1528988030,null],[1528988033,[172,172,172,172,172,172,172,172,172,172]],[1528988037,[138,138,138,138,138,138,138,138,138,138]],[1528988040,null],[1528988044,null],[1528988048,null],[1528988051,[139,139,139,139,139,139,139,139,139,139]],[1528988055,[283,283,283,283,283,283,283,283,283,283]],[1528988058,[117,117,117,117,117,117,117,117,117,117]],[1528988062,null],[1528988066,null],[1528988069,null],[1528988073,null],[1528988076,null],[1528988080,[1351,1351,1351,1351,1351,1351,1351,1351,1351,1351]],[1528988084,null],[1528988087,null],[1528988091,null],[1528988094,null],[1528988098,null],[1528988102,[154,154,154,154,154,154,154,154,154,154]],[1528988105,null],[1528988109,null],[1528988112,null],[1528988116,[123,123,123,123,123,123,123,123,123,123]],[1528988120,null],[1528988123,[127,128,130,131,131,132,132,132,132,133]],[1528988127,[107,107,107,107,107,107,107,107,107,107]],[1528988130,null],[1528988134,null],[1528988138,null],[1528988141,null],[1528988145,null],[1528988148,null],[1528988152,null],[1528988156,null],[1528988159,[160,160,160,160,160,160,160,160,160,160]],[1528988163,null],[1528988166,null],[1528988170,null],[1528988174,null],[1528988177,null],[1528988181,[129,129,129,129,129,129,129,129,129,129]],[1528988184,null],[1528988188,[157,157,157,157,157,157,157,157,157,157]],[1528988191,[180,180,180,180,180,180,180,180,180,180]],[1528988195,null],[1528988199,null],[1528988202,null],[1528988206,[154,154,154,154,154,154,154,154,154,154]],[1528988209,[215,215,215,215,215,215,215,215,215,215]],[1528988213,null],[1528988217,null],[1528988220,null],[1528988224,null],[1528988227,null],[1528988231,null],[1528988235,null],[1528988238,null],[1528988242,null],[1528988245,null],[1528988249,null],[1528988253,[129,129,129,129,129,129,129,129,129,129]],[1528988256,null],[1528988260,null],[1528988263,null],[1528988267,null],[1528988271,null],[1528988274,null],[1528988278,null],[1528988281,null],[1528988285,null],[1528988289,[101,101,101,101,101,101,101,101,101,101]],[1528988292,[194,194,194,194,194,194,194,194,194,194]],[1528988296,null],[1528988299,null],[1528988303,null],[1528988307,null],[1528988310,[189,189,189,189,189,189,189,189,189,189]],[1528988314,null],[1528988317,[127,127,127,127,127,127,127,127,127,127]],[1528988321,null],[1528988325,null],[1528988328,[251,251,251,251,251,251,251,251,251,251]],[1528988332,[151,151,151,151,151,151,151,151,151,151]],[1528988335,null],[1528988339,null],[1528988343,null],[1528988346,[142,142,142,142,142,142,142,142,142,142]],[1528988350,[124,124,124,124,124,124,124,124,124,124]],[1528988353,null],[1528988357,null],[1528988361,null],[1528988364,null],[1528988368,null],[1528988371,null],[1528988375,null],[1528988379,null],[1528988382,null],[1528988386,[102,111,120,129,130,132,134,136,137,138]],[1528988389,[102,102,102,102,102,102,102,102,102,102]],[1528988393,null],[1528988397,null],[1528988400,null],[1528988404,null],[1528988407,null],[1528988411,null],[1528988415,null],[1528988418,null],[1528988422,null],[1528988425,null],[1528988429,null],[1528988432,[155,155,155,155,155,155,155,155,155,155]],[1528988436,null],[1528988440,null],[1528988443,null],[1528988447,null],[1528988450,[174,174,174,174,174,174,174,174,174,174]],[1528988454,[110,231,352,473,498,522,546,570,590,595]],[1528988458,[210,231,252,273,278,282,286,290,294,295]],[1528988461,null],[1528988465,null],[1528988468,null],[1528988472,null],[1528988476,null],[1528988479,null],[1528988483,null],[1528988486,null],[1528988490,null],[1528988494,null],[1528988497,null],[1528988501,null],[1528988504,null],[1528988508,null],[1528988512,null],[1528988515,null],[1528988519,null],[1528988522,null],[1528988526,null],[1528988530,null],[1528988533,null],[1528988537,null],[1528988540,null],[1528988544,[833,833,833,833,833,833,833,833,833,833]],[1528988548,null],[1528988551,null],[1528988555,[1087,1087,1087,1087,1087,1087,1087,1087,1087,1087]],[1528988558,null],[1528988562,[269,314,360,405,414,423,432,441,449,451]],[1528988566,[167,218,270,322,332,342,353,363,371,374]],[1528988569,null],[1528988573,null],[1528988576,null],[1528988580,null],[1528988584,null],[1528988587,null],[1528988591,null],[1528988594,null],[1528988598,null],[1528988602,null],[1528988605,[1273,1273,1273,1273,1273,1273,1273,1273,1273,1273]],[1528988609,null],[1528988612,null],[1528988616,null],[1528988620,null],[1528988623,null],[1528988627,null],[1528988630,null],[1528988634,[118,118,118,118,118,118,118,118,118,118]],[1528988638,[216,216,216,216,216,216,216,216,216,216]],[1528988641,[130,130,130,130,130,130,130,130,130,130]],[1528988645,null],[1528988648,[197,197,197,197,197,197,197,197,197,197]],[1528988652,null],[1528988656,null],[1528988659,null],[1528988663,null],[1528988666,[123,123,123,123,123,123,123,123,123,123]],[1528988670,null],[1528988673,null],[1528988677,null],[1528988681,null],[1528988684,[1202,1202,1202,1202,1202,1202,1202,1202,1202,1202]],[1528988688,null],[1528988691,[210,210,210,210,210,210,210,210,210,210]],[1528988695,null],[1528988699,null],[1528988702,null],[1528988706,null],[1528988709,null],[1528988713,null],[1528988717,null],[1528988720,null],[1528988724,null],[1528988727,null],[1528988731,null],[1528988735,null],[1528988738,null],[1528988742,null],[1528988745,null],[1528988749,null],[1528988753,null],[1528988756,null],[1528988760,null],[1528988763,null],[1528988767,null],[1528988771,null],[1528988774,null],[1528988778,null],[1528988781,null],[1528988785,null],[1528988789,null],[1528988792,null],[1528988796,null],[1528988799,null],[1528988803,null],[1528988807,null],[1528988810,null],[1528988814,[159,159,159,159,159,159,159,159,159,159]],[1528988817,[139,139,139,139,139,139,139,139,139,139]],[1528988821,null],[1528988825,null],[1528988828,null],[1528988832,null],[1528988835,null],[1528988839,null],[1528988843,null],[1528988846,null],[1528988850,null],[1528988853,[115,115,115,115,115,115,115,115,115,115]],[1528988857,null],[1528988861,null],[1528988864,[134,137,140,143,144,145,145,146,146,147]],[1528988868,null],[1528988871,[177,177,177,177,177,177,177,177,177,177]],[1528988875,null],[1528988879,[160,160,160,160,160,160,160,160,160,160]],[1528988882,null],[1528988886,null],[1528988889,null],[1528988893,null],[1528988897,null],[1528988900,null],[1528988904,[181,181,181,181,181,181,181,181,181,181]],[1528988907,null],[1528988911,null],[1528988914,null],[1528988918,null],[1528988922,null],[1528988925,null],[1528988929,null],[1528988932,[132,141,150,159,161,163,165,167,168,169]],[1528988936,null],[1528988940,null],[1528988943,[128,128,128,128,128,128,128,128,128,128]],[1528988947,[151,151,151,151,151,151,151,151,151,151]],[1528988950,null],[1528988954,null],[1528988958,null],[1528988961,null],[1528988965,null],[1528988968,null],[1528988972,null],[1528988976,null],[1528988979,[150,150,150,150,150,150,150,150,150,150]],[1528988983,null],[1528988986,null],[1528988990,null],[1528988994,[155,155,155,155,155,155,155,155,155,155]],[1528988997,null],[1528989001,[123,123,123,123,123,123,123,123,123,123]],[1528989004,null],[1528989008,null],[1528989012,[104,117,131,145,148,150,153,156,158,159]],[1528989015,null],[1528989019,null],[1528989022,null],[1528989026,null],[1528989030,null],[1528989033,null],[1528989037,null],[1528989040,null],[1528989044,null],[1528989048,[246,246,246,246,246,246,246,246,246,246]],[1528989051,null],[1528989055,[111,133,155,177,181,185,190,194,198,199]],[1528989058,null],[1528989062,null],[1528989066,[190,190,190,190,190,190,190,190,190,190]],[1528989069,null],[1528989073,null],[1528989076,null],[1528989080,[127,127,127,127,127,127,127,127,127,127]],[1528989084,null],[1528989087,null],[1528989091,[114,114,114,114,114,114,114,114,114,114]],[1528989094,null],[1528989098,null],[1528989102,null],[1528989105,null],[1528989109,[100,113,127,127,127,127,127,127,127,128]],[1528989112,null],[1528989116,[172,172,172,172,172,172,172,172,172,172]],[1528989120,null],[1528989123,null],[1528989127,null],[1528989130,null],[1528989134,null],[1528989138,null],[1528989141,null],[1528989145,null],[1528989148,null],[1528989152,null],[1528989155,[148,148,148,148,148,148,148,148,148,148]],[1528989159,null],[1528989163,null],[1528989166,[129,129,129,129,129,129,129,129,129,129]],[1528989170,null],[1528989173,[137,139,142,144,145,145,146,146,146,147]],[1528989177,[124,124,124,124,124,124,124,124,124,124]],[1528989181,null],[1528989184,null],[1528989188,null],[1528989191,null],[1528989195,[135,135,135,135,135,135,135,135,135,135]],[1528989199,null],[1528989202,[160,160,160,160,160,160,160,160,160,160]],[1528989206,null],[1528989209,null],[1528989213,null],[1528989217,null],[1528989220,[147,147,147,147,147,147,147,147,147,147]],[1528989224,null],[1528989227,null],[1528989231,[168,168,168,168,168,168,168,168,168,168]],[1528989235,null],[1528989238,null],[1528989242,null],[1528989245,[107,107,107,107,107,107,107,107,107,107]],[1528989249,null],[1528989253,[139,139,139,139,139,139,139,139,139,139]],[1528989256,null],[1528989260,[134,134,134,134,134,134,134,134,134,134]],[1528989263,[111,111,111,111,111,111,111,111,111,111]],[1528989267,null],[1528989271,null],[1528989274,null],[1528989278,null],[1528989281,null],[1528989285,null],[1528989289,[156,156,156,156,156,156,156,156,156,156]],[1528989292,[124,124,124,124,124,124,124,124,124,124]],[1528989296,[161,161,161,161,161,161,161,161,161,161]],[1528989299,null],[1528989303,null],[1528989307,null],[1528989310,null],[1528989314,null],[1528989317,[155,155,155,155,155,155,155,155,155,155]],[1528989321,[159,159,159,159,159,159,159,159,159,159]],[1528989325,null],[1528989328,null],[1528989332,null],[1528989335,null],[1528989339,null],[1528989343,[149,149,149,149,149,149,149,149,149,149]],[1528989346,null],[1528989350,null],[1528989353,null],[1528989357,null],[1528989361,null],[1528989364,[154,154,154,154,154,154,154,154,154,154]],[1528989368,[185,185,185,185,185,185,185,185,185,185]],[1528989371,null],[1528989375,null],[1528989379,[128,132,137,142,143,144,145,146,146,147]],[1528989382,null],[1528989386,null],[1528989389,null],[1528989393,[151,151,151,151,151,151,151,151,151,151]],[1528989396,null],[1528989400,[149,149,149,149,149,149,149,149,149,149]],[1528989404,null],[1528989407,null],[1528989411,null],[1528989414,null],[1528989418,[111,111,111,111,111,111,111,111,111,111]],[1528989422,null],[1528989425,null],[1528989429,[172,172,172,172,172,172,172,172,172,172]],[1528989432,null],[1528989436,null],[1528989440,null],[1528989443,[179,179,179,179,179,179,179,179,179,179]],[1528989447,null],[1528989450,[135,135,135,135,135,135,135,135,135,135]],[1528989454,[140,140,140,140,140,140,140,140,140,140]],[1528989458,null],[1528989461,null],[1528989465,null],[1528989468,[158,158,158,158,158,158,158,158,158,158]],[1528989472,null],[1528989476,null],[1528989479,[134,134,134,134,134,134,134,134,134,134]],[1528989483,null],[1528989486,null],[1528989490,null],[1528989494,null],[1528989497,[104,108,112,116,116,117,118,119,119,120]],[1528989501,null],[1528989504,null],[1528989508,null],[1528989512,[97,97,97,97,97,97,97,97,97,97]],[1528989515,null],[1528989519,null],[1528989522,[146,146,146,146,146,146,146,146,146,146]],[1528989526,null],[1528989530,null],[1528989533,[121,121,121,121,121,121,121,121,121,121]],[1528989537,null],[1528989540,null],[1528989544,null],[1528989548,null],[1528989551,null],[1528989555,[145,145,145,145,145,145,145,145,145,145]],[1528989558,null],[1528989562,null],[1528989566,[123,123,123,123,123,123,123,123,123,124]],[1528989569,null],[1528989573,null],[1528989576,null],[1528989580,[132,132,132,132,132,132,132,132,132,132]],[1528989584,null],[1528989587,null],[1528989591,null],[1528989594,[118,118,118,118,118,118,118,118,118,118]],[1528989598,null],[1528989602,null],[1528989605,null],[1528989609,[190,190,190,190,190,190,190,190,190,190]],[1528989612,[96,96,96,96,96,96,96,96,96,96]],[1528989616,null],[1528989620,[125,125,125,125,125,125,125,125,125,125]],[1528989623,null],[1528989627,null],[1528989630,null],[1528989634,null],[1528989637,null],[1528989641,null],[1528989645,null],[1528989648,null],[1528989652,null],[1528989655,[125,131,137,143,145,146,147,148,149,150]],[1528989659,null],[1528989663,null],[1528989666,null],[1528989670,[131,131,131,131,131,131,131,131,131,131]],[1528989673,null],[1528989677,[121,125,129,133,134,135,136,137,137,138]],[1528989681,[137,137,137,137,137,137,137,137,137,137]],[1528989684,null],[1528989688,null],[1528989691,null],[1528989695,null],[1528989699,null],[1528989702,null],[1528989706,null],[1528989709,null],[1528989713,[135,135,135,135,135,135,135,135,135,135]],[1528989717,null],[1528989720,null],[1528989724,null],[1528989727,null],[1528989731,null],[1528989735,[131,131,131,131,131,131,131,131,131,131]],[1528989738,[138,140,142,144,145,145,146,146,146,147]],[1528989742,null],[1528989745,[131,137,143,149,150,151,152,153,154,155]],[1528989749,null],[1528989753,null],[1528989756,null],[1528989760,null],[1528989763,null],[1528989767,null],[1528989771,null],[1528989774,null],[1528989778,null],[1528989781,null],[1528989785,null],[1528989789,[108,130,153,176,180,185,189,194,198,199]],[1528989792,null],[1528989796,null],[1528989799,null],[1528989803,null],[1528989807,null],[1528989810,[1283,1283,1283,1283,1283,1283,1283,1283,1283,1283]],[1528989814,null],[1528989817,null],[1528989821,[157,168,180,191,193,196,198,200,202,203]],[1528989825,null],[1528989828,[2096,2096,2096,2096,2096,2096,2096,2096,2096,2096]],[1528989832,null],[1528989835,null],[1528989839,null],[1528989843,null],[1528989846,null],[1528989850,[398,436,475,514,522,529,537,545,551,553]],[1528989853,null],[1528989857,null],[1528989861,null],[1528989864,null],[1528989868,null],[1528989871,null],[1528989875,[475,475,475,475,475,475,475,475,475,475]],[1528989878,null],[1528989882,null],[1528989886,null],[1528989889,null],[1528989893,[2696,2696,2696,2696,2696,2696,2696,2696,2696,2696]],[1528989896,null],[1528989900,null],[1528989904,[880,1491,2103,2715,2837,2959,3082,3204,3302,3327]],[1528989907,null],[1528989911,null],[1528989914,null],[1528989918,null],[1528989922,null],[1528989925,[106,106,106,106,106,106,106,106,106,106]],[1528989929,null],[1528989932,[503,503,503,503,503,503,503,503,503,503]],[1528989936,null],[1528989940,null],[1528989943,null],[1528989947,null],[1528989950,null],[1528989954,null],[1528989958,null],[1528989961,null],[1528989965,[2306,2306,2306,2306,2306,2306,2306,2306,2306,2306]],[1528989968,null],[1528989972,null],[1528989976,[105,105,105,105,105,105,105,105,105,105]],[1528989979,null],[1528989983,null],[1528989986,null],[1528989990,null],[1528989994,[118,118,118,118,118,118,118,118,118,118]],[1528989997,null],[1528990001,null],[1528990004,null],[1528990008,null],[1528990012,null],[1528990015,null],[1528990019,[171,171,171,171,171,171,171,171,171,171]],[1528990022,null],[1528990026,[123,123,123,123,123,123,123,123,123,123]],[1528990030,null],[1528990033,null],[1528990037,[141,141,141,141,141,141,141,141,141,141]],[1528990040,[164,164,164,164,164,164,164,164,164,164]],[1528990044,null],[1528990048,null],[1528990051,null],[1528990055,null],[1528990058,null],[1528990062,null],[1528990066,null],[1528990069,null],[1528990073,null],[1528990076,[174,174,174,174,174,174,174,174,174,174]],[1528990080,[123,123,123,123,123,123,123,123,123,123]],[1528990084,null],[1528990087,null],[1528990091,[122,122,122,122,122,122,122,122,122,122]],[1528990094,null],[1528990098,[132,132,132,132,132,132,132,132,132,132]],[1528990102,null],[1528990105,null],[1528990109,null],[1528990112,null],[1528990116,null],[1528990119,null],[1528990123,null],[1528990127,[156,156,156,156,156,156,156,156,156,156]],[1528990130,[155,155,155,155,155,155,155,155,155,155]],[1528990134,null],[1528990137,[151,151,151,151,151,151,151,151,151,151]],[1528990141,[154,154,154,154,154,154,154,154,154,154]],[1528990145,null],[1528990148,null],[1528990152,null],[1528990155,[119,119,119,119,119,119,119,119,119,119]],[1528990159,null],[1528990163,null],[1528990166,null],[1528990170,[109,109,109,109,109,109,109,109,109,109]],[1528990173,null],[1528990177,null],[1528990181,null],[1528990184,null],[1528990188,null],[1528990191,[159,159,159,159,159,159,159,159,159,159]],[1528990195,null],[1528990199,null],[1528990202,null],[1528990206,[191,191,191,191,191,191,191,191,191,191]],[1528990209,[110,110,110,110,110,110,110,110,110,110]],[1528990213,[109,117,125,133,134,136,137,139,140,141]],[1528990217,null],[1528990220,null],[1528990224,[140,140,140,140,140,140,140,140,140,140]],[1528990227,null],[1528990231,null],[1528990235,null],[1528990238,null],[1528990242,null],[1528990245,null],[1528990249,null],[1528990253,null],[1528990256,[205,205,205,205,205,205,205,205,205,205]],[1528990260,null],[1528990263,null],[1528990267,[103,103,103,103,103,103,103,103,103,103]],[1528990271,[207,207,207,207,207,207,207,207,207,207]],[1528990274,null],[1528990278,null],[1528990281,null],[1528990285,[121,134,148,161,164,166,169,172,174,175]],[1528990289,null],[1528990292,[127,127,127,127,127,127,127,127,127,127]],[1528990296,null],[1528990299,null],[1528990303,null],[1528990307,null],[1528990310,null],[1528990314,null],[1528990317,null],[1528990321,null],[1528990325,null],[1528990328,null],[1528990332,[96,99,103,106,107,107,108,109,109,110]],[1528990335,null],[1528990339,[129,129,129,129,129,129,129,129,129,129]],[1528990343,null],[1528990346,[121,149,177,205,211,217,222,228,232,234]],[1528990350,[96,96,96,96,96,96,96,96,96,96]],[1528990353,null],[1528990357,null],[1528990360,null],[1528990364,null],[1528990368,null],[1528990371,null],[1528990375,null],[1528990378,null],[1528990382,[135,135,135,135,135,135,135,135,135,135]],[1528990386,null],[1528990389,null],[1528990393,[133,145,157,169,172,174,177,179,181,182]],[1528990396,null],[1528990400,[124,124,124,124,124,124,124,124,124,124]],[1528990404,null],[1528990407,null],[1528990411,null],[1528990414,null],[1528990418,null],[1528990422,[144,144,144,144,144,144,144,144,144,144]],[1528990425,[176,176,176,176,176,176,176,176,176,176]],[1528990429,null],[1528990432,null],[1528990436,null],[1528990440,null],[1528990443,[217,217,217,217,217,217,217,217,217,217]],[1528990447,null],[1528990450,null],[1528990454,[140,140,140,140,140,140,140,140,140,140]],[1528990458,[140,140,140,140,140,140,140,140,140,140]],[1528990461,null],[1528990465,null],[1528990468,null],[1528990472,null],[1528990476,null],[1528990479,[118,122,126,130,131,132,133,134,134,135]],[1528990483,null],[1528990486,[202,202,202,202,202,202,202,202,202,202]],[1528990490,null],[1528990494,null],[1528990497,null],[1528990501,null],[1528990504,null],[1528990508,null],[1528990512,null],[1528990515,null],[1528990519,[142,142,142,142,142,142,142,142,142,142]],[1528990522,null],[1528990526,[128,128,128,128,128,128,128,128,128,128]],[1528990530,null],[1528990533,[120,120,120,120,120,120,120,120,120,120]],[1528990537,null],[1528990540,null],[1528990544,null],[1528990548,null],[1528990551,null],[1528990555,[150,150,150,150,150,150,150,150,150,150]],[1528990558,null],[1528990562,[104,104,104,104,104,104,104,104,104,104]],[1528990566,null],[1528990569,[121,121,121,121,121,121,121,121,121,121]],[1528990573,[159,159,159,159,159,159,159,159,159,159]],[1528990576,null],[1528990580,null],[1528990584,null],[1528990587,null],[1528990591,null],[1528990594,[111,111,111,111,111,111,111,111,111,111]],[1528990598,null],[1528990601,[122,122,122,122,122,122,122,122,122,122]],[1528990605,null],[1528990609,null],[1528990612,null],[1528990616,null],[1528990619,[124,125,126,127,128,128,128,128,128,129]],[1528990623,null],[1528990627,null],[1528990630,null],[1528990634,[108,108,108,108,108,108,108,108,108,108]],[1528990637,null],[1528990641,null],[1528990645,null],[1528990648,null],[1528990652,[149,149,149,149,149,149,149,149,149,149]],[1528990655,null],[1528990659,null],[1528990663,[148,148,148,148,148,148,148,148,148,148]],[1528990666,null],[1528990670,null],[1528990673,[142,142,142,142,142,142,142,142,142,142]],[1528990677,null],[1528990681,null],[1528990684,null],[1528990688,[123,123,123,123,123,123,123,123,123,123]],[1528990691,null],[1528990695,[111,116,121,126,127,128,129,130,131,132]],[1528990699,null],[1528990702,null],[1528990706,null],[1528990709,null],[1528990713,null],[1528990717,null],[1528990720,null],[1528990724,null],[1528990727,[108,108,108,108,108,108,108,108,108,108]],[1528990731,null],[1528990735,[169,169,169,169,169,169,169,169,169,169]],[1528990738,null],[1528990742,null],[1528990745,null],[1528990749,null],[1528990753,[134,134,134,134,134,134,134,134,134,134]],[1528990756,[128,128,128,128,128,128,128,128,128,129]],[1528990760,null],[1528990763,null],[1528990767,null],[1528990771,[144,144,144,144,144,144,144,144,144,144]],[1528990774,null],[1528990778,[120,120,120,120,120,120,120,120,120,120]],[1528990781,null],[1528990785,null],[1528990789,null],[1528990792,null],[1528990796,null],[1528990799,[284,284,284,284,284,284,284,284,284,284]],[1528990803,null],[1528990807,null],[1528990810,null],[1528990814,null],[1528990817,null],[1528990821,[132,163,194,266,280,294,309,323,335,338]],[1528990825,[184,184,184,184,184,184,184,184,184,184]],[1528990828,null],[1528990832,null],[1528990835,null],[1528990839,null],[1528990842,null],[1528990846,null],[1528990850,null],[1528990853,null],[1528990857,[219,219,219,219,219,219,219,219,219,219]],[1528990860,[127,127,127,127,127,127,127,127,127,127]],[1528990864,null],[1528990868,null],[1528990871,null],[1528990875,null],[1528990878,null],[1528990882,null],[1528990886,null],[1528990889,[1595,1595,1595,1595,1595,1595,1595,1595,1595,1595]],[1528990893,[215,215,215,215,215,215,215,215,215,215]],[1528990896,[142,146,150,154,154,155,156,157,157,158]],[1528990900,null],[1528990904,null],[1528990907,null],[1528990911,null],[1528990914,null],[1528990918,null],[1528990922,[197,208,220,231,233,236,238,240,242,243]],[1528990925,null],[1528990929,null],[1528990932,null],[1528990936,null],[1528990940,null],[1528990943,null],[1528990947,null],[1528990950,[324,324,324,324,324,324,324,324,324,324]],[1528990954,null],[1528990958,[147,147,147,147,147,147,147,147,147,147]],[1528990961,[202,202,202,202,202,202,202,202,202,202]],[1528990965,null],[1528990968,null],[1528990972,[568,568,568,568,568,568,568,568,568,568]],[1528990976,null],[1528990979,null],[1528990983,null],[1528990986,[305,305,305,305,305,305,305,305,305,305]],[1528990990,null],[1528990994,null],[1528990997,null],[1528991001,null],[1528991004,null],[1528991008,[161,161,161,161,161,161,161,161,161,161]],[1528991012,[291,291,291,291,291,291,291,291,291,291]],[1528991015,null]]);
var responseTimeChart = new Highcharts.StockChart({
chart: {
renderTo: 'container',
zoomType: 'x'
},
colors: ['#C4FD90', '#7FF77F', '#6FF2AD', '#60ECE5', '#51A8E7', '#4353E2', '#7335DC', '#BC28D7', '#D11C97', '#C73905', 'Orange'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: { baseSeries: 9 },
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Response Time (ms)',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responseTimePercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responseTimePercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responseTimePercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responseTimePercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responseTimePercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responseTimePercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responseTimePercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responseTimePercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responseTimePercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responseTimePercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responseTimeChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var container_requests = unpack([[1528987422,[0,0, 0]],[1528987425,[0,0, 0]],[1528987429,[1,0, 1]],[1528987433,[0,0, 0]],[1528987436,[0,0, 0]],[1528987440,[0,0, 0]],[1528987443,[0,0, 0]],[1528987447,[0,0, 0]],[1528987451,[0,0, 0]],[1528987454,[0,0, 0]],[1528987458,[0,0, 0]],[1528987461,[0,0, 0]],[1528987465,[0,0, 0]],[1528987469,[0,0, 0]],[1528987472,[0,0, 0]],[1528987476,[0,0, 0]],[1528987479,[0,0, 0]],[1528987483,[0,0, 0]],[1528987486,[0,0, 0]],[1528987490,[0,0, 0]],[1528987494,[0,0, 0]],[1528987497,[0,0, 0]],[1528987501,[0,0, 0]],[1528987504,[0,0, 0]],[1528987508,[0,0, 0]],[1528987512,[0,0, 0]],[1528987515,[0,0, 0]],[1528987519,[0,0, 0]],[1528987522,[0,0, 0]],[1528987526,[0,0, 0]],[1528987530,[0,0, 0]],[1528987533,[0,0, 0]],[1528987537,[0,0, 0]],[1528987540,[0,0, 0]],[1528987544,[0,0, 0]],[1528987548,[0,0, 0]],[1528987551,[0,0, 0]],[1528987555,[0,0, 0]],[1528987558,[0,0, 0]],[1528987562,[1,0, 1]],[1528987566,[0,0, 0]],[1528987569,[1,0, 1]],[1528987573,[0,0, 0]],[1528987576,[0,0, 0]],[1528987580,[0,0, 0]],[1528987584,[0,0, 0]],[1528987587,[0,0, 0]],[1528987591,[0,0, 0]],[1528987594,[0,0, 0]],[1528987598,[0,0, 0]],[1528987602,[0,0, 0]],[1528987605,[0,0, 0]],[1528987609,[0,0, 0]],[1528987612,[0,0, 0]],[1528987616,[0,0, 0]],[1528987620,[0,0, 0]],[1528987623,[1,0, 1]],[1528987627,[0,0, 0]],[1528987630,[0,0, 0]],[1528987634,[0,0, 0]],[1528987638,[0,0, 0]],[1528987641,[0,0, 0]],[1528987645,[0,0, 0]],[1528987648,[0,0, 0]],[1528987652,[0,0, 0]],[1528987656,[0,0, 0]],[1528987659,[0,0, 0]],[1528987663,[0,0, 0]],[1528987666,[0,0, 0]],[1528987670,[0,0, 0]],[1528987674,[0,0, 0]],[1528987677,[0,0, 0]],[1528987681,[0,0, 0]],[1528987684,[0,0, 0]],[1528987688,[0,0, 0]],[1528987692,[0,0, 0]],[1528987695,[0,0, 0]],[1528987699,[0,0, 0]],[1528987702,[0,0, 0]],[1528987706,[0,0, 0]],[1528987710,[0,0, 0]],[1528987713,[0,0, 0]],[1528987717,[0,0, 0]],[1528987720,[0,0, 0]],[1528987724,[0,0, 0]],[1528987727,[0,0, 0]],[1528987731,[0,0, 0]],[1528987735,[0,0, 0]],[1528987738,[0,0, 0]],[1528987742,[0,0, 0]],[1528987745,[0,0, 0]],[1528987749,[0,0, 0]],[1528987753,[0,0, 0]],[1528987756,[0,0, 0]],[1528987760,[0,0, 0]],[1528987763,[0,0, 0]],[1528987767,[0,0, 0]],[1528987771,[0,0, 0]],[1528987774,[0,0, 0]],[1528987778,[0,0, 0]],[1528987781,[0,0, 0]],[1528987785,[0,0, 0]],[1528987789,[0,0, 0]],[1528987792,[0,0, 0]],[1528987796,[0,0, 0]],[1528987799,[0,0, 0]],[1528987803,[0,0, 0]],[1528987807,[0,0, 0]],[1528987810,[0,0, 0]],[1528987814,[0,0, 0]],[1528987817,[0,0, 0]],[1528987821,[0,0, 0]],[1528987825,[0,0, 0]],[1528987828,[0,0, 0]],[1528987832,[0,0, 0]],[1528987835,[0,0, 0]],[1528987839,[0,0, 0]],[1528987843,[0,0, 0]],[1528987846,[1,0, 1]],[1528987850,[0,0, 0]],[1528987853,[0,0, 0]],[1528987857,[0,0, 0]],[1528987861,[0,0, 0]],[1528987864,[0,0, 0]],[1528987868,[0,0, 0]],[1528987871,[0,0, 0]],[1528987875,[0,0, 0]],[1528987879,[0,0, 0]],[1528987882,[0,0, 0]],[1528987886,[0,0, 0]],[1528987889,[0,0, 0]],[1528987893,[0,0, 0]],[1528987897,[0,0, 0]],[1528987900,[0,0, 0]],[1528987904,[0,0, 0]],[1528987907,[0,0, 0]],[1528987911,[0,0, 0]],[1528987915,[0,0, 0]],[1528987918,[0,0, 0]],[1528987922,[0,0, 0]],[1528987925,[0,0, 0]],[1528987929,[0,0, 0]],[1528987933,[0,0, 0]],[1528987936,[0,0, 0]],[1528987940,[0,0, 0]],[1528987943,[0,0, 0]],[1528987947,[0,0, 0]],[1528987951,[0,0, 0]],[1528987954,[0,0, 0]],[1528987958,[0,0, 0]],[1528987961,[0,0, 0]],[1528987965,[0,0, 0]],[1528987968,[0,0, 0]],[1528987972,[0,0, 0]],[1528987976,[0,0, 0]],[1528987979,[0,0, 0]],[1528987983,[0,0, 0]],[1528987986,[0,0, 0]],[1528987990,[0,0, 0]],[1528987994,[0,0, 0]],[1528987997,[0,0, 0]],[1528988001,[1,0, 1]],[1528988004,[0,0, 0]],[1528988008,[0,0, 0]],[1528988012,[0,0, 0]],[1528988015,[0,0, 0]],[1528988019,[0,0, 0]],[1528988022,[0,0, 0]],[1528988026,[0,0, 0]],[1528988030,[0,0, 0]],[1528988033,[0,0, 0]],[1528988037,[0,0, 0]],[1528988040,[0,0, 0]],[1528988044,[0,0, 0]],[1528988048,[0,0, 0]],[1528988051,[0,0, 0]],[1528988055,[0,0, 0]],[1528988058,[0,0, 0]],[1528988062,[0,0, 0]],[1528988066,[0,0, 0]],[1528988069,[0,0, 0]],[1528988073,[0,0, 0]],[1528988076,[0,0, 0]],[1528988080,[0,0, 0]],[1528988084,[0,0, 0]],[1528988087,[0,0, 0]],[1528988091,[0,0, 0]],[1528988094,[0,0, 0]],[1528988098,[0,0, 0]],[1528988102,[0,0, 0]],[1528988105,[0,0, 0]],[1528988109,[0,0, 0]],[1528988112,[0,0, 0]],[1528988116,[0,0, 0]],[1528988120,[0,0, 0]],[1528988123,[1,0, 1]],[1528988127,[0,0, 0]],[1528988130,[0,0, 0]],[1528988134,[0,0, 0]],[1528988138,[0,0, 0]],[1528988141,[0,0, 0]],[1528988145,[0,0, 0]],[1528988148,[0,0, 0]],[1528988152,[0,0, 0]],[1528988156,[0,0, 0]],[1528988159,[0,0, 0]],[1528988163,[0,0, 0]],[1528988166,[0,0, 0]],[1528988170,[0,0, 0]],[1528988174,[0,0, 0]],[1528988177,[0,0, 0]],[1528988181,[0,0, 0]],[1528988184,[0,0, 0]],[1528988188,[0,0, 0]],[1528988191,[0,0, 0]],[1528988195,[0,0, 0]],[1528988199,[0,0, 0]],[1528988202,[0,0, 0]],[1528988206,[0,0, 0]],[1528988209,[0,0, 0]],[1528988213,[0,0, 0]],[1528988217,[0,0, 0]],[1528988220,[0,0, 0]],[1528988224,[0,0, 0]],[1528988227,[0,0, 0]],[1528988231,[0,0, 0]],[1528988235,[0,0, 0]],[1528988238,[0,0, 0]],[1528988242,[0,0, 0]],[1528988245,[0,0, 0]],[1528988249,[0,0, 0]],[1528988253,[0,0, 0]],[1528988256,[0,0, 0]],[1528988260,[0,0, 0]],[1528988263,[0,0, 0]],[1528988267,[0,0, 0]],[1528988271,[0,0, 0]],[1528988274,[0,0, 0]],[1528988278,[0,0, 0]],[1528988281,[0,0, 0]],[1528988285,[0,0, 0]],[1528988289,[0,0, 0]],[1528988292,[0,0, 0]],[1528988296,[0,0, 0]],[1528988299,[0,0, 0]],[1528988303,[0,0, 0]],[1528988307,[0,0, 0]],[1528988310,[0,0, 0]],[1528988314,[0,0, 0]],[1528988317,[0,0, 0]],[1528988321,[0,0, 0]],[1528988325,[0,0, 0]],[1528988328,[0,0, 0]],[1528988332,[0,0, 0]],[1528988335,[0,0, 0]],[1528988339,[0,0, 0]],[1528988343,[0,0, 0]],[1528988346,[0,0, 0]],[1528988350,[0,0, 0]],[1528988353,[0,0, 0]],[1528988357,[0,0, 0]],[1528988361,[0,0, 0]],[1528988364,[0,0, 0]],[1528988368,[0,0, 0]],[1528988371,[0,0, 0]],[1528988375,[0,0, 0]],[1528988379,[0,0, 0]],[1528988382,[0,0, 0]],[1528988386,[1,0, 1]],[1528988389,[0,0, 0]],[1528988393,[0,0, 0]],[1528988397,[0,0, 0]],[1528988400,[0,0, 0]],[1528988404,[0,0, 0]],[1528988407,[0,0, 0]],[1528988411,[0,0, 0]],[1528988415,[0,0, 0]],[1528988418,[0,0, 0]],[1528988422,[0,0, 0]],[1528988425,[0,0, 0]],[1528988429,[0,0, 0]],[1528988432,[0,0, 0]],[1528988436,[0,0, 0]],[1528988440,[0,0, 0]],[1528988443,[0,0, 0]],[1528988447,[0,0, 0]],[1528988450,[0,0, 0]],[1528988454,[1,0, 1]],[1528988458,[1,0, 1]],[1528988461,[0,0, 0]],[1528988465,[0,0, 0]],[1528988468,[0,0, 0]],[1528988472,[0,0, 0]],[1528988476,[0,0, 0]],[1528988479,[0,0, 0]],[1528988483,[0,0, 0]],[1528988486,[0,0, 0]],[1528988490,[0,0, 0]],[1528988494,[0,0, 0]],[1528988497,[0,0, 0]],[1528988501,[0,0, 0]],[1528988504,[0,0, 0]],[1528988508,[0,0, 0]],[1528988512,[0,0, 0]],[1528988515,[0,0, 0]],[1528988519,[0,0, 0]],[1528988522,[0,0, 0]],[1528988526,[0,0, 0]],[1528988530,[0,0, 0]],[1528988533,[0,0, 0]],[1528988537,[0,0, 0]],[1528988540,[0,0, 0]],[1528988544,[0,0, 0]],[1528988548,[0,0, 0]],[1528988551,[0,0, 0]],[1528988555,[0,0, 0]],[1528988558,[0,0, 0]],[1528988562,[1,0, 1]],[1528988566,[1,0, 1]],[1528988569,[0,0, 0]],[1528988573,[0,0, 0]],[1528988576,[0,0, 0]],[1528988580,[0,0, 0]],[1528988584,[0,0, 0]],[1528988587,[0,0, 0]],[1528988591,[0,0, 0]],[1528988594,[0,0, 0]],[1528988598,[0,0, 0]],[1528988602,[0,0, 0]],[1528988605,[0,0, 0]],[1528988609,[0,0, 0]],[1528988612,[0,0, 0]],[1528988616,[0,0, 0]],[1528988620,[0,0, 0]],[1528988623,[0,0, 0]],[1528988627,[0,0, 0]],[1528988630,[0,0, 0]],[1528988634,[0,0, 0]],[1528988638,[0,0, 0]],[1528988641,[0,0, 0]],[1528988645,[0,0, 0]],[1528988648,[0,0, 0]],[1528988652,[0,0, 0]],[1528988656,[0,0, 0]],[1528988659,[0,0, 0]],[1528988663,[0,0, 0]],[1528988666,[0,0, 0]],[1528988670,[0,0, 0]],[1528988673,[0,0, 0]],[1528988677,[0,0, 0]],[1528988681,[0,0, 0]],[1528988684,[0,0, 0]],[1528988688,[0,0, 0]],[1528988691,[0,0, 0]],[1528988695,[0,0, 0]],[1528988699,[0,0, 0]],[1528988702,[0,0, 0]],[1528988706,[0,0, 0]],[1528988709,[0,0, 0]],[1528988713,[0,0, 0]],[1528988717,[0,0, 0]],[1528988720,[0,0, 0]],[1528988724,[0,0, 0]],[1528988727,[0,0, 0]],[1528988731,[0,0, 0]],[1528988735,[0,0, 0]],[1528988738,[0,0, 0]],[1528988742,[0,0, 0]],[1528988745,[0,0, 0]],[1528988749,[0,0, 0]],[1528988753,[0,0, 0]],[1528988756,[0,0, 0]],[1528988760,[0,0, 0]],[1528988763,[0,0, 0]],[1528988767,[0,0, 0]],[1528988771,[0,0, 0]],[1528988774,[0,0, 0]],[1528988778,[0,0, 0]],[1528988781,[0,0, 0]],[1528988785,[0,0, 0]],[1528988789,[0,0, 0]],[1528988792,[0,0, 0]],[1528988796,[0,0, 0]],[1528988799,[0,0, 0]],[1528988803,[0,0, 0]],[1528988807,[0,0, 0]],[1528988810,[0,0, 0]],[1528988814,[0,0, 0]],[1528988817,[0,0, 0]],[1528988821,[0,0, 0]],[1528988825,[0,0, 0]],[1528988828,[0,0, 0]],[1528988832,[0,0, 0]],[1528988835,[0,0, 0]],[1528988839,[0,0, 0]],[1528988843,[0,0, 0]],[1528988846,[0,0, 0]],[1528988850,[0,0, 0]],[1528988853,[0,0, 0]],[1528988857,[0,0, 0]],[1528988861,[0,0, 0]],[1528988864,[1,0, 1]],[1528988868,[0,0, 0]],[1528988871,[0,0, 0]],[1528988875,[0,0, 0]],[1528988879,[0,0, 0]],[1528988882,[0,0, 0]],[1528988886,[0,0, 0]],[1528988889,[0,0, 0]],[1528988893,[0,0, 0]],[1528988897,[0,0, 0]],[1528988900,[0,0, 0]],[1528988904,[0,0, 0]],[1528988907,[0,0, 0]],[1528988911,[0,0, 0]],[1528988914,[0,0, 0]],[1528988918,[0,0, 0]],[1528988922,[0,0, 0]],[1528988925,[0,0, 0]],[1528988929,[0,0, 0]],[1528988932,[1,0, 1]],[1528988936,[0,0, 0]],[1528988940,[0,0, 0]],[1528988943,[0,0, 0]],[1528988947,[0,0, 0]],[1528988950,[0,0, 0]],[1528988954,[0,0, 0]],[1528988958,[0,0, 0]],[1528988961,[0,0, 0]],[1528988965,[0,0, 0]],[1528988968,[0,0, 0]],[1528988972,[0,0, 0]],[1528988976,[0,0, 0]],[1528988979,[0,0, 0]],[1528988983,[0,0, 0]],[1528988986,[0,0, 0]],[1528988990,[0,0, 0]],[1528988994,[0,0, 0]],[1528988997,[0,0, 0]],[1528989001,[0,0, 0]],[1528989004,[0,0, 0]],[1528989008,[0,0, 0]],[1528989012,[1,0, 1]],[1528989015,[0,0, 0]],[1528989019,[0,0, 0]],[1528989022,[0,0, 0]],[1528989026,[0,0, 0]],[1528989030,[0,0, 0]],[1528989033,[0,0, 0]],[1528989037,[0,0, 0]],[1528989040,[0,0, 0]],[1528989044,[0,0, 0]],[1528989048,[0,0, 0]],[1528989051,[0,0, 0]],[1528989055,[1,0, 1]],[1528989058,[0,0, 0]],[1528989062,[0,0, 0]],[1528989066,[0,0, 0]],[1528989069,[0,0, 0]],[1528989073,[0,0, 0]],[1528989076,[0,0, 0]],[1528989080,[0,0, 0]],[1528989084,[0,0, 0]],[1528989087,[0,0, 0]],[1528989091,[0,0, 0]],[1528989094,[0,0, 0]],[1528989098,[0,0, 0]],[1528989102,[0,0, 0]],[1528989105,[0,0, 0]],[1528989109,[1,0, 1]],[1528989112,[0,0, 0]],[1528989116,[0,0, 0]],[1528989120,[0,0, 0]],[1528989123,[0,0, 0]],[1528989127,[0,0, 0]],[1528989130,[0,0, 0]],[1528989134,[0,0, 0]],[1528989138,[0,0, 0]],[1528989141,[0,0, 0]],[1528989145,[0,0, 0]],[1528989148,[0,0, 0]],[1528989152,[0,0, 0]],[1528989155,[0,0, 0]],[1528989159,[0,0, 0]],[1528989163,[0,0, 0]],[1528989166,[0,0, 0]],[1528989170,[0,0, 0]],[1528989173,[1,0, 1]],[1528989177,[0,0, 0]],[1528989181,[0,0, 0]],[1528989184,[0,0, 0]],[1528989188,[0,0, 0]],[1528989191,[0,0, 0]],[1528989195,[0,0, 0]],[1528989199,[0,0, 0]],[1528989202,[0,0, 0]],[1528989206,[0,0, 0]],[1528989209,[0,0, 0]],[1528989213,[0,0, 0]],[1528989217,[0,0, 0]],[1528989220,[0,0, 0]],[1528989224,[0,0, 0]],[1528989227,[0,0, 0]],[1528989231,[0,0, 0]],[1528989235,[0,0, 0]],[1528989238,[0,0, 0]],[1528989242,[0,0, 0]],[1528989245,[0,0, 0]],[1528989249,[0,0, 0]],[1528989253,[0,0, 0]],[1528989256,[0,0, 0]],[1528989260,[0,0, 0]],[1528989263,[0,0, 0]],[1528989267,[0,0, 0]],[1528989271,[0,0, 0]],[1528989274,[0,0, 0]],[1528989278,[0,0, 0]],[1528989281,[0,0, 0]],[1528989285,[0,0, 0]],[1528989289,[0,0, 0]],[1528989292,[0,0, 0]],[1528989296,[0,0, 0]],[1528989299,[0,0, 0]],[1528989303,[0,0, 0]],[1528989307,[0,0, 0]],[1528989310,[0,0, 0]],[1528989314,[0,0, 0]],[1528989317,[0,0, 0]],[1528989321,[0,0, 0]],[1528989325,[0,0, 0]],[1528989328,[0,0, 0]],[1528989332,[0,0, 0]],[1528989335,[0,0, 0]],[1528989339,[0,0, 0]],[1528989343,[0,0, 0]],[1528989346,[0,0, 0]],[1528989350,[0,0, 0]],[1528989353,[0,0, 0]],[1528989357,[0,0, 0]],[1528989361,[0,0, 0]],[1528989364,[0,0, 0]],[1528989368,[0,0, 0]],[1528989371,[0,0, 0]],[1528989375,[0,0, 0]],[1528989379,[1,0, 1]],[1528989382,[0,0, 0]],[1528989386,[0,0, 0]],[1528989389,[0,0, 0]],[1528989393,[0,0, 0]],[1528989396,[0,0, 0]],[1528989400,[0,0, 0]],[1528989404,[0,0, 0]],[1528989407,[0,0, 0]],[1528989411,[0,0, 0]],[1528989414,[0,0, 0]],[1528989418,[0,0, 0]],[1528989422,[0,0, 0]],[1528989425,[0,0, 0]],[1528989429,[0,0, 0]],[1528989432,[0,0, 0]],[1528989436,[0,0, 0]],[1528989440,[0,0, 0]],[1528989443,[0,0, 0]],[1528989447,[0,0, 0]],[1528989450,[0,0, 0]],[1528989454,[0,0, 0]],[1528989458,[0,0, 0]],[1528989461,[0,0, 0]],[1528989465,[0,0, 0]],[1528989468,[0,0, 0]],[1528989472,[0,0, 0]],[1528989476,[0,0, 0]],[1528989479,[0,0, 0]],[1528989483,[0,0, 0]],[1528989486,[0,0, 0]],[1528989490,[0,0, 0]],[1528989494,[0,0, 0]],[1528989497,[1,0, 1]],[1528989501,[0,0, 0]],[1528989504,[0,0, 0]],[1528989508,[0,0, 0]],[1528989512,[0,0, 0]],[1528989515,[0,0, 0]],[1528989519,[0,0, 0]],[1528989522,[0,0, 0]],[1528989526,[0,0, 0]],[1528989530,[0,0, 0]],[1528989533,[0,0, 0]],[1528989537,[0,0, 0]],[1528989540,[0,0, 0]],[1528989544,[0,0, 0]],[1528989548,[0,0, 0]],[1528989551,[0,0, 0]],[1528989555,[0,0, 0]],[1528989558,[0,0, 0]],[1528989562,[0,0, 0]],[1528989566,[1,0, 1]],[1528989569,[0,0, 0]],[1528989573,[0,0, 0]],[1528989576,[0,0, 0]],[1528989580,[0,0, 0]],[1528989584,[0,0, 0]],[1528989587,[0,0, 0]],[1528989591,[0,0, 0]],[1528989594,[0,0, 0]],[1528989598,[0,0, 0]],[1528989602,[0,0, 0]],[1528989605,[0,0, 0]],[1528989609,[0,0, 0]],[1528989612,[0,0, 0]],[1528989616,[0,0, 0]],[1528989620,[0,0, 0]],[1528989623,[0,0, 0]],[1528989627,[0,0, 0]],[1528989630,[0,0, 0]],[1528989634,[0,0, 0]],[1528989637,[0,0, 0]],[1528989641,[0,0, 0]],[1528989645,[0,0, 0]],[1528989648,[0,0, 0]],[1528989652,[0,0, 0]],[1528989655,[1,0, 1]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[0,0, 0]],[1528989673,[0,0, 0]],[1528989677,[1,0, 1]],[1528989681,[0,0, 0]],[1528989684,[0,0, 0]],[1528989688,[0,0, 0]],[1528989691,[0,0, 0]],[1528989695,[0,0, 0]],[1528989699,[0,0, 0]],[1528989702,[0,0, 0]],[1528989706,[0,0, 0]],[1528989709,[0,0, 0]],[1528989713,[0,0, 0]],[1528989717,[0,0, 0]],[1528989720,[0,0, 0]],[1528989724,[0,0, 0]],[1528989727,[0,0, 0]],[1528989731,[0,0, 0]],[1528989735,[0,0, 0]],[1528989738,[1,0, 1]],[1528989742,[0,0, 0]],[1528989745,[1,0, 1]],[1528989749,[0,0, 0]],[1528989753,[0,0, 0]],[1528989756,[0,0, 0]],[1528989760,[0,0, 0]],[1528989763,[0,0, 0]],[1528989767,[0,0, 0]],[1528989771,[0,0, 0]],[1528989774,[0,0, 0]],[1528989778,[0,0, 0]],[1528989781,[0,0, 0]],[1528989785,[0,0, 0]],[1528989789,[1,0, 1]],[1528989792,[0,0, 0]],[1528989796,[0,0, 0]],[1528989799,[0,0, 0]],[1528989803,[0,0, 0]],[1528989807,[0,0, 0]],[1528989810,[0,0, 0]],[1528989814,[0,0, 0]],[1528989817,[0,0, 0]],[1528989821,[1,0, 1]],[1528989825,[0,0, 0]],[1528989828,[0,0, 0]],[1528989832,[0,0, 0]],[1528989835,[0,0, 0]],[1528989839,[0,0, 0]],[1528989843,[0,0, 0]],[1528989846,[0,0, 0]],[1528989850,[1,0, 1]],[1528989853,[0,0, 0]],[1528989857,[0,0, 0]],[1528989861,[0,0, 0]],[1528989864,[0,0, 0]],[1528989868,[0,0, 0]],[1528989871,[0,0, 0]],[1528989875,[0,0, 0]],[1528989878,[0,0, 0]],[1528989882,[0,0, 0]],[1528989886,[0,0, 0]],[1528989889,[0,0, 0]],[1528989893,[0,0, 0]],[1528989896,[0,0, 0]],[1528989900,[0,0, 0]],[1528989904,[1,0, 1]],[1528989907,[0,0, 0]],[1528989911,[0,0, 0]],[1528989914,[0,0, 0]],[1528989918,[0,0, 0]],[1528989922,[0,0, 0]],[1528989925,[0,0, 0]],[1528989929,[0,0, 0]],[1528989932,[0,0, 0]],[1528989936,[0,0, 0]],[1528989940,[0,0, 0]],[1528989943,[0,0, 0]],[1528989947,[0,0, 0]],[1528989950,[0,0, 0]],[1528989954,[0,0, 0]],[1528989958,[0,0, 0]],[1528989961,[0,0, 0]],[1528989965,[0,0, 0]],[1528989968,[0,0, 0]],[1528989972,[0,0, 0]],[1528989976,[0,0, 0]],[1528989979,[0,0, 0]],[1528989983,[0,0, 0]],[1528989986,[0,0, 0]],[1528989990,[0,0, 0]],[1528989994,[0,0, 0]],[1528989997,[0,0, 0]],[1528990001,[0,0, 0]],[1528990004,[0,0, 0]],[1528990008,[0,0, 0]],[1528990012,[0,0, 0]],[1528990015,[0,0, 0]],[1528990019,[0,0, 0]],[1528990022,[0,0, 0]],[1528990026,[0,0, 0]],[1528990030,[0,0, 0]],[1528990033,[0,0, 0]],[1528990037,[0,0, 0]],[1528990040,[0,0, 0]],[1528990044,[0,0, 0]],[1528990048,[0,0, 0]],[1528990051,[0,0, 0]],[1528990055,[0,0, 0]],[1528990058,[0,0, 0]],[1528990062,[0,0, 0]],[1528990066,[0,0, 0]],[1528990069,[0,0, 0]],[1528990073,[0,0, 0]],[1528990076,[0,0, 0]],[1528990080,[0,0, 0]],[1528990084,[0,0, 0]],[1528990087,[0,0, 0]],[1528990091,[0,0, 0]],[1528990094,[0,0, 0]],[1528990098,[0,0, 0]],[1528990102,[0,0, 0]],[1528990105,[0,0, 0]],[1528990109,[0,0, 0]],[1528990112,[0,0, 0]],[1528990116,[0,0, 0]],[1528990119,[0,0, 0]],[1528990123,[0,0, 0]],[1528990127,[0,0, 0]],[1528990130,[0,0, 0]],[1528990134,[0,0, 0]],[1528990137,[0,0, 0]],[1528990141,[0,0, 0]],[1528990145,[0,0, 0]],[1528990148,[0,0, 0]],[1528990152,[0,0, 0]],[1528990155,[0,0, 0]],[1528990159,[0,0, 0]],[1528990163,[0,0, 0]],[1528990166,[0,0, 0]],[1528990170,[0,0, 0]],[1528990173,[0,0, 0]],[1528990177,[0,0, 0]],[1528990181,[0,0, 0]],[1528990184,[0,0, 0]],[1528990188,[0,0, 0]],[1528990191,[0,0, 0]],[1528990195,[0,0, 0]],[1528990199,[0,0, 0]],[1528990202,[0,0, 0]],[1528990206,[0,0, 0]],[1528990209,[0,0, 0]],[1528990213,[1,0, 1]],[1528990217,[0,0, 0]],[1528990220,[0,0, 0]],[1528990224,[0,0, 0]],[1528990227,[0,0, 0]],[1528990231,[0,0, 0]],[1528990235,[0,0, 0]],[1528990238,[0,0, 0]],[1528990242,[0,0, 0]],[1528990245,[0,0, 0]],[1528990249,[0,0, 0]],[1528990253,[0,0, 0]],[1528990256,[0,0, 0]],[1528990260,[0,0, 0]],[1528990263,[0,0, 0]],[1528990267,[0,0, 0]],[1528990271,[0,0, 0]],[1528990274,[0,0, 0]],[1528990278,[0,0, 0]],[1528990281,[0,0, 0]],[1528990285,[1,0, 1]],[1528990289,[0,0, 0]],[1528990292,[0,0, 0]],[1528990296,[0,0, 0]],[1528990299,[0,0, 0]],[1528990303,[0,0, 0]],[1528990307,[0,0, 0]],[1528990310,[0,0, 0]],[1528990314,[0,0, 0]],[1528990317,[0,0, 0]],[1528990321,[0,0, 0]],[1528990325,[0,0, 0]],[1528990328,[0,0, 0]],[1528990332,[1,0, 1]],[1528990335,[0,0, 0]],[1528990339,[0,0, 0]],[1528990343,[0,0, 0]],[1528990346,[1,0, 1]],[1528990350,[0,0, 0]],[1528990353,[0,0, 0]],[1528990357,[0,0, 0]],[1528990360,[0,0, 0]],[1528990364,[0,0, 0]],[1528990368,[0,0, 0]],[1528990371,[0,0, 0]],[1528990375,[0,0, 0]],[1528990378,[0,0, 0]],[1528990382,[0,0, 0]],[1528990386,[0,0, 0]],[1528990389,[0,0, 0]],[1528990393,[1,0, 1]],[1528990396,[0,0, 0]],[1528990400,[0,0, 0]],[1528990404,[0,0, 0]],[1528990407,[0,0, 0]],[1528990411,[0,0, 0]],[1528990414,[0,0, 0]],[1528990418,[0,0, 0]],[1528990422,[0,0, 0]],[1528990425,[0,0, 0]],[1528990429,[0,0, 0]],[1528990432,[0,0, 0]],[1528990436,[0,0, 0]],[1528990440,[0,0, 0]],[1528990443,[0,0, 0]],[1528990447,[0,0, 0]],[1528990450,[0,0, 0]],[1528990454,[0,0, 0]],[1528990458,[0,0, 0]],[1528990461,[0,0, 0]],[1528990465,[0,0, 0]],[1528990468,[0,0, 0]],[1528990472,[0,0, 0]],[1528990476,[0,0, 0]],[1528990479,[1,0, 1]],[1528990483,[0,0, 0]],[1528990486,[0,0, 0]],[1528990490,[0,0, 0]],[1528990494,[0,0, 0]],[1528990497,[0,0, 0]],[1528990501,[0,0, 0]],[1528990504,[0,0, 0]],[1528990508,[0,0, 0]],[1528990512,[0,0, 0]],[1528990515,[0,0, 0]],[1528990519,[0,0, 0]],[1528990522,[0,0, 0]],[1528990526,[0,0, 0]],[1528990530,[0,0, 0]],[1528990533,[0,0, 0]],[1528990537,[0,0, 0]],[1528990540,[0,0, 0]],[1528990544,[0,0, 0]],[1528990548,[0,0, 0]],[1528990551,[0,0, 0]],[1528990555,[0,0, 0]],[1528990558,[0,0, 0]],[1528990562,[0,0, 0]],[1528990566,[0,0, 0]],[1528990569,[0,0, 0]],[1528990573,[0,0, 0]],[1528990576,[0,0, 0]],[1528990580,[0,0, 0]],[1528990584,[0,0, 0]],[1528990587,[0,0, 0]],[1528990591,[0,0, 0]],[1528990594,[0,0, 0]],[1528990598,[0,0, 0]],[1528990601,[0,0, 0]],[1528990605,[0,0, 0]],[1528990609,[0,0, 0]],[1528990612,[0,0, 0]],[1528990616,[0,0, 0]],[1528990619,[1,0, 1]],[1528990623,[0,0, 0]],[1528990627,[0,0, 0]],[1528990630,[0,0, 0]],[1528990634,[0,0, 0]],[1528990637,[0,0, 0]],[1528990641,[0,0, 0]],[1528990645,[0,0, 0]],[1528990648,[0,0, 0]],[1528990652,[0,0, 0]],[1528990655,[0,0, 0]],[1528990659,[0,0, 0]],[1528990663,[0,0, 0]],[1528990666,[0,0, 0]],[1528990670,[0,0, 0]],[1528990673,[0,0, 0]],[1528990677,[0,0, 0]],[1528990681,[0,0, 0]],[1528990684,[0,0, 0]],[1528990688,[0,0, 0]],[1528990691,[0,0, 0]],[1528990695,[1,0, 1]],[1528990699,[0,0, 0]],[1528990702,[0,0, 0]],[1528990706,[0,0, 0]],[1528990709,[0,0, 0]],[1528990713,[0,0, 0]],[1528990717,[0,0, 0]],[1528990720,[0,0, 0]],[1528990724,[0,0, 0]],[1528990727,[0,0, 0]],[1528990731,[0,0, 0]],[1528990735,[0,0, 0]],[1528990738,[0,0, 0]],[1528990742,[0,0, 0]],[1528990745,[0,0, 0]],[1528990749,[0,0, 0]],[1528990753,[0,0, 0]],[1528990756,[1,0, 1]],[1528990760,[0,0, 0]],[1528990763,[0,0, 0]],[1528990767,[0,0, 0]],[1528990771,[0,0, 0]],[1528990774,[0,0, 0]],[1528990778,[0,0, 0]],[1528990781,[0,0, 0]],[1528990785,[0,0, 0]],[1528990789,[0,0, 0]],[1528990792,[0,0, 0]],[1528990796,[0,0, 0]],[1528990799,[0,0, 0]],[1528990803,[0,0, 0]],[1528990807,[0,0, 0]],[1528990810,[0,0, 0]],[1528990814,[0,0, 0]],[1528990817,[0,0, 0]],[1528990821,[1,0, 1]],[1528990825,[0,0, 0]],[1528990828,[0,0, 0]],[1528990832,[0,0, 0]],[1528990835,[0,0, 0]],[1528990839,[0,0, 0]],[1528990842,[0,0, 0]],[1528990846,[0,0, 0]],[1528990850,[0,0, 0]],[1528990853,[0,0, 0]],[1528990857,[0,0, 0]],[1528990860,[0,0, 0]],[1528990864,[0,0, 0]],[1528990868,[0,0, 0]],[1528990871,[0,0, 0]],[1528990875,[0,0, 0]],[1528990878,[0,0, 0]],[1528990882,[0,0, 0]],[1528990886,[0,0, 0]],[1528990889,[0,0, 0]],[1528990893,[0,0, 0]],[1528990896,[1,0, 1]],[1528990900,[0,0, 0]],[1528990904,[0,0, 0]],[1528990907,[0,0, 0]],[1528990911,[0,0, 0]],[1528990914,[0,0, 0]],[1528990918,[0,0, 0]],[1528990922,[1,0, 1]],[1528990925,[0,0, 0]],[1528990929,[0,0, 0]],[1528990932,[0,0, 0]],[1528990936,[0,0, 0]],[1528990940,[0,0, 0]],[1528990943,[0,0, 0]],[1528990947,[0,0, 0]],[1528990950,[0,0, 0]],[1528990954,[0,0, 0]],[1528990958,[0,0, 0]],[1528990961,[0,0, 0]],[1528990965,[0,0, 0]],[1528990968,[0,0, 0]],[1528990972,[0,0, 0]],[1528990976,[0,0, 0]],[1528990979,[0,0, 0]],[1528990983,[0,0, 0]],[1528990986,[0,0, 0]],[1528990990,[0,0, 0]],[1528990994,[0,0, 0]],[1528990997,[0,0, 0]],[1528991001,[0,0, 0]],[1528991004,[0,0, 0]],[1528991008,[0,0, 0]],[1528991012,[0,0, 0]],[1528991015,[0,0, 0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_requests',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Number of requests',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
series: [
{
color: '#4572A7',
name: 'All',
data: container_requests[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData
]
});
requestsChart.setTitle({
text: '<span class="chart_title">Number of requests per second</span>',
useHTML: true
});
var container_responses = unpack([[1528987422,[0,0, 0]],[1528987425,[0,0, 0]],[1528987429,[1,0, 1]],[1528987433,[0,0, 0]],[1528987436,[0,0, 0]],[1528987440,[0,0, 0]],[1528987443,[0,0, 0]],[1528987447,[0,0, 0]],[1528987451,[0,0, 0]],[1528987454,[0,0, 0]],[1528987458,[0,0, 0]],[1528987461,[0,0, 0]],[1528987465,[0,0, 0]],[1528987469,[0,0, 0]],[1528987472,[0,0, 0]],[1528987476,[0,0, 0]],[1528987479,[0,0, 0]],[1528987483,[0,0, 0]],[1528987486,[0,0, 0]],[1528987490,[0,0, 0]],[1528987494,[0,0, 0]],[1528987497,[0,0, 0]],[1528987501,[0,0, 0]],[1528987504,[0,0, 0]],[1528987508,[0,0, 0]],[1528987512,[0,0, 0]],[1528987515,[0,0, 0]],[1528987519,[0,0, 0]],[1528987522,[0,0, 0]],[1528987526,[0,0, 0]],[1528987530,[0,0, 0]],[1528987533,[0,0, 0]],[1528987537,[0,0, 0]],[1528987540,[0,0, 0]],[1528987544,[0,0, 0]],[1528987548,[0,0, 0]],[1528987551,[0,0, 0]],[1528987555,[0,0, 0]],[1528987558,[0,0, 0]],[1528987562,[1,0, 1]],[1528987566,[0,0, 0]],[1528987569,[1,0, 1]],[1528987573,[0,0, 0]],[1528987576,[0,0, 0]],[1528987580,[0,0, 0]],[1528987584,[0,0, 0]],[1528987587,[0,0, 0]],[1528987591,[0,0, 0]],[1528987594,[0,0, 0]],[1528987598,[0,0, 0]],[1528987602,[0,0, 0]],[1528987605,[0,0, 0]],[1528987609,[0,0, 0]],[1528987612,[0,0, 0]],[1528987616,[0,0, 0]],[1528987620,[0,0, 0]],[1528987623,[1,0, 1]],[1528987627,[0,0, 0]],[1528987630,[0,0, 0]],[1528987634,[0,0, 0]],[1528987638,[0,0, 0]],[1528987641,[0,0, 0]],[1528987645,[0,0, 0]],[1528987648,[0,0, 0]],[1528987652,[0,0, 0]],[1528987656,[0,0, 0]],[1528987659,[0,0, 0]],[1528987663,[0,0, 0]],[1528987666,[0,0, 0]],[1528987670,[0,0, 0]],[1528987674,[0,0, 0]],[1528987677,[0,0, 0]],[1528987681,[0,0, 0]],[1528987684,[0,0, 0]],[1528987688,[0,0, 0]],[1528987692,[0,0, 0]],[1528987695,[0,0, 0]],[1528987699,[0,0, 0]],[1528987702,[0,0, 0]],[1528987706,[0,0, 0]],[1528987710,[0,0, 0]],[1528987713,[0,0, 0]],[1528987717,[0,0, 0]],[1528987720,[0,0, 0]],[1528987724,[0,0, 0]],[1528987727,[0,0, 0]],[1528987731,[0,0, 0]],[1528987735,[0,0, 0]],[1528987738,[0,0, 0]],[1528987742,[0,0, 0]],[1528987745,[0,0, 0]],[1528987749,[0,0, 0]],[1528987753,[0,0, 0]],[1528987756,[0,0, 0]],[1528987760,[0,0, 0]],[1528987763,[0,0, 0]],[1528987767,[0,0, 0]],[1528987771,[0,0, 0]],[1528987774,[0,0, 0]],[1528987778,[0,0, 0]],[1528987781,[0,0, 0]],[1528987785,[0,0, 0]],[1528987789,[0,0, 0]],[1528987792,[0,0, 0]],[1528987796,[0,0, 0]],[1528987799,[0,0, 0]],[1528987803,[0,0, 0]],[1528987807,[0,0, 0]],[1528987810,[0,0, 0]],[1528987814,[0,0, 0]],[1528987817,[0,0, 0]],[1528987821,[0,0, 0]],[1528987825,[0,0, 0]],[1528987828,[0,0, 0]],[1528987832,[0,0, 0]],[1528987835,[0,0, 0]],[1528987839,[0,0, 0]],[1528987843,[0,0, 0]],[1528987846,[1,0, 1]],[1528987850,[0,0, 0]],[1528987853,[0,0, 0]],[1528987857,[0,0, 0]],[1528987861,[0,0, 0]],[1528987864,[0,0, 0]],[1528987868,[0,0, 0]],[1528987871,[0,0, 0]],[1528987875,[0,0, 0]],[1528987879,[0,0, 0]],[1528987882,[0,0, 0]],[1528987886,[0,0, 0]],[1528987889,[0,0, 0]],[1528987893,[0,0, 0]],[1528987897,[0,0, 0]],[1528987900,[0,0, 0]],[1528987904,[0,0, 0]],[1528987907,[0,0, 0]],[1528987911,[0,0, 0]],[1528987915,[0,0, 0]],[1528987918,[0,0, 0]],[1528987922,[0,0, 0]],[1528987925,[0,0, 0]],[1528987929,[0,0, 0]],[1528987933,[0,0, 0]],[1528987936,[0,0, 0]],[1528987940,[0,0, 0]],[1528987943,[0,0, 0]],[1528987947,[0,0, 0]],[1528987951,[0,0, 0]],[1528987954,[0,0, 0]],[1528987958,[0,0, 0]],[1528987961,[0,0, 0]],[1528987965,[0,0, 0]],[1528987968,[0,0, 0]],[1528987972,[0,0, 0]],[1528987976,[0,0, 0]],[1528987979,[0,0, 0]],[1528987983,[0,0, 0]],[1528987986,[0,0, 0]],[1528987990,[0,0, 0]],[1528987994,[0,0, 0]],[1528987997,[0,0, 0]],[1528988001,[1,0, 1]],[1528988004,[0,0, 0]],[1528988008,[0,0, 0]],[1528988012,[0,0, 0]],[1528988015,[0,0, 0]],[1528988019,[0,0, 0]],[1528988022,[0,0, 0]],[1528988026,[0,0, 0]],[1528988030,[0,0, 0]],[1528988033,[0,0, 0]],[1528988037,[0,0, 0]],[1528988040,[0,0, 0]],[1528988044,[0,0, 0]],[1528988048,[0,0, 0]],[1528988051,[0,0, 0]],[1528988055,[0,0, 0]],[1528988058,[0,0, 0]],[1528988062,[0,0, 0]],[1528988066,[0,0, 0]],[1528988069,[0,0, 0]],[1528988073,[0,0, 0]],[1528988076,[0,0, 0]],[1528988080,[0,0, 0]],[1528988084,[0,0, 0]],[1528988087,[0,0, 0]],[1528988091,[0,0, 0]],[1528988094,[0,0, 0]],[1528988098,[0,0, 0]],[1528988102,[0,0, 0]],[1528988105,[0,0, 0]],[1528988109,[0,0, 0]],[1528988112,[0,0, 0]],[1528988116,[0,0, 0]],[1528988120,[0,0, 0]],[1528988123,[1,0, 1]],[1528988127,[0,0, 0]],[1528988130,[0,0, 0]],[1528988134,[0,0, 0]],[1528988138,[0,0, 0]],[1528988141,[0,0, 0]],[1528988145,[0,0, 0]],[1528988148,[0,0, 0]],[1528988152,[0,0, 0]],[1528988156,[0,0, 0]],[1528988159,[0,0, 0]],[1528988163,[0,0, 0]],[1528988166,[0,0, 0]],[1528988170,[0,0, 0]],[1528988174,[0,0, 0]],[1528988177,[0,0, 0]],[1528988181,[0,0, 0]],[1528988184,[0,0, 0]],[1528988188,[0,0, 0]],[1528988191,[0,0, 0]],[1528988195,[0,0, 0]],[1528988199,[0,0, 0]],[1528988202,[0,0, 0]],[1528988206,[0,0, 0]],[1528988209,[0,0, 0]],[1528988213,[0,0, 0]],[1528988217,[0,0, 0]],[1528988220,[0,0, 0]],[1528988224,[0,0, 0]],[1528988227,[0,0, 0]],[1528988231,[0,0, 0]],[1528988235,[0,0, 0]],[1528988238,[0,0, 0]],[1528988242,[0,0, 0]],[1528988245,[0,0, 0]],[1528988249,[0,0, 0]],[1528988253,[0,0, 0]],[1528988256,[0,0, 0]],[1528988260,[0,0, 0]],[1528988263,[0,0, 0]],[1528988267,[0,0, 0]],[1528988271,[0,0, 0]],[1528988274,[0,0, 0]],[1528988278,[0,0, 0]],[1528988281,[0,0, 0]],[1528988285,[0,0, 0]],[1528988289,[0,0, 0]],[1528988292,[0,0, 0]],[1528988296,[0,0, 0]],[1528988299,[0,0, 0]],[1528988303,[0,0, 0]],[1528988307,[0,0, 0]],[1528988310,[0,0, 0]],[1528988314,[0,0, 0]],[1528988317,[0,0, 0]],[1528988321,[0,0, 0]],[1528988325,[0,0, 0]],[1528988328,[0,0, 0]],[1528988332,[0,0, 0]],[1528988335,[0,0, 0]],[1528988339,[0,0, 0]],[1528988343,[0,0, 0]],[1528988346,[0,0, 0]],[1528988350,[0,0, 0]],[1528988353,[0,0, 0]],[1528988357,[0,0, 0]],[1528988361,[0,0, 0]],[1528988364,[0,0, 0]],[1528988368,[0,0, 0]],[1528988371,[0,0, 0]],[1528988375,[0,0, 0]],[1528988379,[0,0, 0]],[1528988382,[0,0, 0]],[1528988386,[1,0, 1]],[1528988389,[0,0, 0]],[1528988393,[0,0, 0]],[1528988397,[0,0, 0]],[1528988400,[0,0, 0]],[1528988404,[0,0, 0]],[1528988407,[0,0, 0]],[1528988411,[0,0, 0]],[1528988415,[0,0, 0]],[1528988418,[0,0, 0]],[1528988422,[0,0, 0]],[1528988425,[0,0, 0]],[1528988429,[0,0, 0]],[1528988432,[0,0, 0]],[1528988436,[0,0, 0]],[1528988440,[0,0, 0]],[1528988443,[0,0, 0]],[1528988447,[0,0, 0]],[1528988450,[0,0, 0]],[1528988454,[0,0, 0]],[1528988458,[1,0, 1]],[1528988461,[0,0, 0]],[1528988465,[0,0, 0]],[1528988468,[0,0, 0]],[1528988472,[0,0, 0]],[1528988476,[0,0, 0]],[1528988479,[0,0, 0]],[1528988483,[0,0, 0]],[1528988486,[0,0, 0]],[1528988490,[0,0, 0]],[1528988494,[0,0, 0]],[1528988497,[0,0, 0]],[1528988501,[0,0, 0]],[1528988504,[0,0, 0]],[1528988508,[0,0, 0]],[1528988512,[0,0, 0]],[1528988515,[0,0, 0]],[1528988519,[0,0, 0]],[1528988522,[0,0, 0]],[1528988526,[0,0, 0]],[1528988530,[0,0, 0]],[1528988533,[0,0, 0]],[1528988537,[0,0, 0]],[1528988540,[0,0, 0]],[1528988544,[0,0, 0]],[1528988548,[0,0, 0]],[1528988551,[0,0, 0]],[1528988555,[0,0, 0]],[1528988558,[0,0, 0]],[1528988562,[1,0, 1]],[1528988566,[1,0, 1]],[1528988569,[0,0, 0]],[1528988573,[0,0, 0]],[1528988576,[0,0, 0]],[1528988580,[0,0, 0]],[1528988584,[0,0, 0]],[1528988587,[0,0, 0]],[1528988591,[0,0, 0]],[1528988594,[0,0, 0]],[1528988598,[0,0, 0]],[1528988602,[0,0, 0]],[1528988605,[0,0, 0]],[1528988609,[0,0, 0]],[1528988612,[0,0, 0]],[1528988616,[0,0, 0]],[1528988620,[0,0, 0]],[1528988623,[0,0, 0]],[1528988627,[0,0, 0]],[1528988630,[0,0, 0]],[1528988634,[0,0, 0]],[1528988638,[0,0, 0]],[1528988641,[0,0, 0]],[1528988645,[0,0, 0]],[1528988648,[0,0, 0]],[1528988652,[0,0, 0]],[1528988656,[0,0, 0]],[1528988659,[0,0, 0]],[1528988663,[0,0, 0]],[1528988666,[0,0, 0]],[1528988670,[0,0, 0]],[1528988673,[0,0, 0]],[1528988677,[0,0, 0]],[1528988681,[0,0, 0]],[1528988684,[0,0, 0]],[1528988688,[0,0, 0]],[1528988691,[0,0, 0]],[1528988695,[0,0, 0]],[1528988699,[0,0, 0]],[1528988702,[0,0, 0]],[1528988706,[0,0, 0]],[1528988709,[0,0, 0]],[1528988713,[0,0, 0]],[1528988717,[0,0, 0]],[1528988720,[0,0, 0]],[1528988724,[0,0, 0]],[1528988727,[0,0, 0]],[1528988731,[0,0, 0]],[1528988735,[0,0, 0]],[1528988738,[0,0, 0]],[1528988742,[0,0, 0]],[1528988745,[0,0, 0]],[1528988749,[0,0, 0]],[1528988753,[0,0, 0]],[1528988756,[0,0, 0]],[1528988760,[0,0, 0]],[1528988763,[0,0, 0]],[1528988767,[0,0, 0]],[1528988771,[0,0, 0]],[1528988774,[0,0, 0]],[1528988778,[0,0, 0]],[1528988781,[0,0, 0]],[1528988785,[0,0, 0]],[1528988789,[0,0, 0]],[1528988792,[0,0, 0]],[1528988796,[0,0, 0]],[1528988799,[0,0, 0]],[1528988803,[0,0, 0]],[1528988807,[0,0, 0]],[1528988810,[0,0, 0]],[1528988814,[0,0, 0]],[1528988817,[0,0, 0]],[1528988821,[0,0, 0]],[1528988825,[0,0, 0]],[1528988828,[0,0, 0]],[1528988832,[0,0, 0]],[1528988835,[0,0, 0]],[1528988839,[0,0, 0]],[1528988843,[0,0, 0]],[1528988846,[0,0, 0]],[1528988850,[0,0, 0]],[1528988853,[0,0, 0]],[1528988857,[0,0, 0]],[1528988861,[0,0, 0]],[1528988864,[1,0, 1]],[1528988868,[0,0, 0]],[1528988871,[0,0, 0]],[1528988875,[0,0, 0]],[1528988879,[0,0, 0]],[1528988882,[0,0, 0]],[1528988886,[0,0, 0]],[1528988889,[0,0, 0]],[1528988893,[0,0, 0]],[1528988897,[0,0, 0]],[1528988900,[0,0, 0]],[1528988904,[0,0, 0]],[1528988907,[0,0, 0]],[1528988911,[0,0, 0]],[1528988914,[0,0, 0]],[1528988918,[0,0, 0]],[1528988922,[0,0, 0]],[1528988925,[0,0, 0]],[1528988929,[0,0, 0]],[1528988932,[1,0, 1]],[1528988936,[0,0, 0]],[1528988940,[0,0, 0]],[1528988943,[0,0, 0]],[1528988947,[0,0, 0]],[1528988950,[0,0, 0]],[1528988954,[0,0, 0]],[1528988958,[0,0, 0]],[1528988961,[0,0, 0]],[1528988965,[0,0, 0]],[1528988968,[0,0, 0]],[1528988972,[0,0, 0]],[1528988976,[0,0, 0]],[1528988979,[0,0, 0]],[1528988983,[0,0, 0]],[1528988986,[0,0, 0]],[1528988990,[0,0, 0]],[1528988994,[0,0, 0]],[1528988997,[0,0, 0]],[1528989001,[0,0, 0]],[1528989004,[0,0, 0]],[1528989008,[0,0, 0]],[1528989012,[1,0, 1]],[1528989015,[0,0, 0]],[1528989019,[0,0, 0]],[1528989022,[0,0, 0]],[1528989026,[0,0, 0]],[1528989030,[0,0, 0]],[1528989033,[0,0, 0]],[1528989037,[0,0, 0]],[1528989040,[0,0, 0]],[1528989044,[0,0, 0]],[1528989048,[0,0, 0]],[1528989051,[0,0, 0]],[1528989055,[1,0, 1]],[1528989058,[0,0, 0]],[1528989062,[0,0, 0]],[1528989066,[0,0, 0]],[1528989069,[0,0, 0]],[1528989073,[0,0, 0]],[1528989076,[0,0, 0]],[1528989080,[0,0, 0]],[1528989084,[0,0, 0]],[1528989087,[0,0, 0]],[1528989091,[0,0, 0]],[1528989094,[0,0, 0]],[1528989098,[0,0, 0]],[1528989102,[0,0, 0]],[1528989105,[0,0, 0]],[1528989109,[1,0, 1]],[1528989112,[0,0, 0]],[1528989116,[0,0, 0]],[1528989120,[0,0, 0]],[1528989123,[0,0, 0]],[1528989127,[0,0, 0]],[1528989130,[0,0, 0]],[1528989134,[0,0, 0]],[1528989138,[0,0, 0]],[1528989141,[0,0, 0]],[1528989145,[0,0, 0]],[1528989148,[0,0, 0]],[1528989152,[0,0, 0]],[1528989155,[0,0, 0]],[1528989159,[0,0, 0]],[1528989163,[0,0, 0]],[1528989166,[0,0, 0]],[1528989170,[0,0, 0]],[1528989173,[1,0, 1]],[1528989177,[0,0, 0]],[1528989181,[0,0, 0]],[1528989184,[0,0, 0]],[1528989188,[0,0, 0]],[1528989191,[0,0, 0]],[1528989195,[0,0, 0]],[1528989199,[0,0, 0]],[1528989202,[0,0, 0]],[1528989206,[0,0, 0]],[1528989209,[0,0, 0]],[1528989213,[0,0, 0]],[1528989217,[0,0, 0]],[1528989220,[0,0, 0]],[1528989224,[0,0, 0]],[1528989227,[0,0, 0]],[1528989231,[0,0, 0]],[1528989235,[0,0, 0]],[1528989238,[0,0, 0]],[1528989242,[0,0, 0]],[1528989245,[0,0, 0]],[1528989249,[0,0, 0]],[1528989253,[0,0, 0]],[1528989256,[0,0, 0]],[1528989260,[0,0, 0]],[1528989263,[0,0, 0]],[1528989267,[0,0, 0]],[1528989271,[0,0, 0]],[1528989274,[0,0, 0]],[1528989278,[0,0, 0]],[1528989281,[0,0, 0]],[1528989285,[0,0, 0]],[1528989289,[0,0, 0]],[1528989292,[0,0, 0]],[1528989296,[0,0, 0]],[1528989299,[0,0, 0]],[1528989303,[0,0, 0]],[1528989307,[0,0, 0]],[1528989310,[0,0, 0]],[1528989314,[0,0, 0]],[1528989317,[0,0, 0]],[1528989321,[0,0, 0]],[1528989325,[0,0, 0]],[1528989328,[0,0, 0]],[1528989332,[0,0, 0]],[1528989335,[0,0, 0]],[1528989339,[0,0, 0]],[1528989343,[0,0, 0]],[1528989346,[0,0, 0]],[1528989350,[0,0, 0]],[1528989353,[0,0, 0]],[1528989357,[0,0, 0]],[1528989361,[0,0, 0]],[1528989364,[0,0, 0]],[1528989368,[0,0, 0]],[1528989371,[0,0, 0]],[1528989375,[0,0, 0]],[1528989379,[1,0, 1]],[1528989382,[0,0, 0]],[1528989386,[0,0, 0]],[1528989389,[0,0, 0]],[1528989393,[0,0, 0]],[1528989396,[0,0, 0]],[1528989400,[0,0, 0]],[1528989404,[0,0, 0]],[1528989407,[0,0, 0]],[1528989411,[0,0, 0]],[1528989414,[0,0, 0]],[1528989418,[0,0, 0]],[1528989422,[0,0, 0]],[1528989425,[0,0, 0]],[1528989429,[0,0, 0]],[1528989432,[0,0, 0]],[1528989436,[0,0, 0]],[1528989440,[0,0, 0]],[1528989443,[0,0, 0]],[1528989447,[0,0, 0]],[1528989450,[0,0, 0]],[1528989454,[0,0, 0]],[1528989458,[0,0, 0]],[1528989461,[0,0, 0]],[1528989465,[0,0, 0]],[1528989468,[0,0, 0]],[1528989472,[0,0, 0]],[1528989476,[0,0, 0]],[1528989479,[0,0, 0]],[1528989483,[0,0, 0]],[1528989486,[0,0, 0]],[1528989490,[0,0, 0]],[1528989494,[0,0, 0]],[1528989497,[1,0, 1]],[1528989501,[0,0, 0]],[1528989504,[0,0, 0]],[1528989508,[0,0, 0]],[1528989512,[0,0, 0]],[1528989515,[0,0, 0]],[1528989519,[0,0, 0]],[1528989522,[0,0, 0]],[1528989526,[0,0, 0]],[1528989530,[0,0, 0]],[1528989533,[0,0, 0]],[1528989537,[0,0, 0]],[1528989540,[0,0, 0]],[1528989544,[0,0, 0]],[1528989548,[0,0, 0]],[1528989551,[0,0, 0]],[1528989555,[0,0, 0]],[1528989558,[0,0, 0]],[1528989562,[0,0, 0]],[1528989566,[1,0, 1]],[1528989569,[0,0, 0]],[1528989573,[0,0, 0]],[1528989576,[0,0, 0]],[1528989580,[0,0, 0]],[1528989584,[0,0, 0]],[1528989587,[0,0, 0]],[1528989591,[0,0, 0]],[1528989594,[0,0, 0]],[1528989598,[0,0, 0]],[1528989602,[0,0, 0]],[1528989605,[0,0, 0]],[1528989609,[0,0, 0]],[1528989612,[1,0, 1]],[1528989616,[0,0, 0]],[1528989620,[0,0, 0]],[1528989623,[0,0, 0]],[1528989627,[0,0, 0]],[1528989630,[0,0, 0]],[1528989634,[0,0, 0]],[1528989637,[0,0, 0]],[1528989641,[0,0, 0]],[1528989645,[0,0, 0]],[1528989648,[0,0, 0]],[1528989652,[0,0, 0]],[1528989655,[1,0, 1]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[0,0, 0]],[1528989673,[0,0, 0]],[1528989677,[1,0, 1]],[1528989681,[0,0, 0]],[1528989684,[0,0, 0]],[1528989688,[0,0, 0]],[1528989691,[0,0, 0]],[1528989695,[0,0, 0]],[1528989699,[0,0, 0]],[1528989702,[0,0, 0]],[1528989706,[0,0, 0]],[1528989709,[0,0, 0]],[1528989713,[0,0, 0]],[1528989717,[0,0, 0]],[1528989720,[0,0, 0]],[1528989724,[0,0, 0]],[1528989727,[0,0, 0]],[1528989731,[0,0, 0]],[1528989735,[0,0, 0]],[1528989738,[1,0, 1]],[1528989742,[0,0, 0]],[1528989745,[1,0, 1]],[1528989749,[0,0, 0]],[1528989753,[0,0, 0]],[1528989756,[0,0, 0]],[1528989760,[0,0, 0]],[1528989763,[0,0, 0]],[1528989767,[0,0, 0]],[1528989771,[0,0, 0]],[1528989774,[0,0, 0]],[1528989778,[0,0, 0]],[1528989781,[0,0, 0]],[1528989785,[0,0, 0]],[1528989789,[1,0, 1]],[1528989792,[0,0, 0]],[1528989796,[0,0, 0]],[1528989799,[0,0, 0]],[1528989803,[0,0, 0]],[1528989807,[0,0, 0]],[1528989810,[0,0, 0]],[1528989814,[0,0, 0]],[1528989817,[0,0, 0]],[1528989821,[1,0, 1]],[1528989825,[0,0, 0]],[1528989828,[0,0, 0]],[1528989832,[0,0, 0]],[1528989835,[0,0, 0]],[1528989839,[0,0, 0]],[1528989843,[0,0, 0]],[1528989846,[0,0, 0]],[1528989850,[1,0, 1]],[1528989853,[0,0, 0]],[1528989857,[0,0, 0]],[1528989861,[0,0, 0]],[1528989864,[0,0, 0]],[1528989868,[0,0, 0]],[1528989871,[0,0, 0]],[1528989875,[0,0, 0]],[1528989878,[0,0, 0]],[1528989882,[0,0, 0]],[1528989886,[0,0, 0]],[1528989889,[0,0, 0]],[1528989893,[0,0, 0]],[1528989896,[0,0, 0]],[1528989900,[0,0, 0]],[1528989904,[0,0, 0]],[1528989907,[0,0, 0]],[1528989911,[0,0, 0]],[1528989914,[0,0, 0]],[1528989918,[0,0, 0]],[1528989922,[0,0, 0]],[1528989925,[0,0, 0]],[1528989929,[0,0, 0]],[1528989932,[0,0, 0]],[1528989936,[0,0, 0]],[1528989940,[0,0, 0]],[1528989943,[0,0, 0]],[1528989947,[0,0, 0]],[1528989950,[0,0, 0]],[1528989954,[0,0, 0]],[1528989958,[0,0, 0]],[1528989961,[0,0, 0]],[1528989965,[0,0, 0]],[1528989968,[0,0, 0]],[1528989972,[0,0, 0]],[1528989976,[0,0, 0]],[1528989979,[0,0, 0]],[1528989983,[0,0, 0]],[1528989986,[0,0, 0]],[1528989990,[0,0, 0]],[1528989994,[0,0, 0]],[1528989997,[0,0, 0]],[1528990001,[0,0, 0]],[1528990004,[0,0, 0]],[1528990008,[0,0, 0]],[1528990012,[0,0, 0]],[1528990015,[0,0, 0]],[1528990019,[0,0, 0]],[1528990022,[0,0, 0]],[1528990026,[0,0, 0]],[1528990030,[0,0, 0]],[1528990033,[0,0, 0]],[1528990037,[0,0, 0]],[1528990040,[0,0, 0]],[1528990044,[0,0, 0]],[1528990048,[0,0, 0]],[1528990051,[0,0, 0]],[1528990055,[0,0, 0]],[1528990058,[0,0, 0]],[1528990062,[0,0, 0]],[1528990066,[0,0, 0]],[1528990069,[0,0, 0]],[1528990073,[0,0, 0]],[1528990076,[0,0, 0]],[1528990080,[0,0, 0]],[1528990084,[0,0, 0]],[1528990087,[0,0, 0]],[1528990091,[0,0, 0]],[1528990094,[0,0, 0]],[1528990098,[0,0, 0]],[1528990102,[0,0, 0]],[1528990105,[0,0, 0]],[1528990109,[0,0, 0]],[1528990112,[0,0, 0]],[1528990116,[0,0, 0]],[1528990119,[0,0, 0]],[1528990123,[0,0, 0]],[1528990127,[0,0, 0]],[1528990130,[0,0, 0]],[1528990134,[0,0, 0]],[1528990137,[0,0, 0]],[1528990141,[1,0, 1]],[1528990145,[0,0, 0]],[1528990148,[0,0, 0]],[1528990152,[0,0, 0]],[1528990155,[0,0, 0]],[1528990159,[0,0, 0]],[1528990163,[0,0, 0]],[1528990166,[0,0, 0]],[1528990170,[0,0, 0]],[1528990173,[0,0, 0]],[1528990177,[0,0, 0]],[1528990181,[0,0, 0]],[1528990184,[0,0, 0]],[1528990188,[0,0, 0]],[1528990191,[0,0, 0]],[1528990195,[0,0, 0]],[1528990199,[0,0, 0]],[1528990202,[0,0, 0]],[1528990206,[0,0, 0]],[1528990209,[0,0, 0]],[1528990213,[1,0, 1]],[1528990217,[0,0, 0]],[1528990220,[0,0, 0]],[1528990224,[0,0, 0]],[1528990227,[0,0, 0]],[1528990231,[0,0, 0]],[1528990235,[0,0, 0]],[1528990238,[0,0, 0]],[1528990242,[0,0, 0]],[1528990245,[0,0, 0]],[1528990249,[0,0, 0]],[1528990253,[0,0, 0]],[1528990256,[0,0, 0]],[1528990260,[0,0, 0]],[1528990263,[0,0, 0]],[1528990267,[0,0, 0]],[1528990271,[0,0, 0]],[1528990274,[0,0, 0]],[1528990278,[0,0, 0]],[1528990281,[0,0, 0]],[1528990285,[1,0, 1]],[1528990289,[0,0, 0]],[1528990292,[0,0, 0]],[1528990296,[0,0, 0]],[1528990299,[0,0, 0]],[1528990303,[0,0, 0]],[1528990307,[0,0, 0]],[1528990310,[0,0, 0]],[1528990314,[0,0, 0]],[1528990317,[0,0, 0]],[1528990321,[0,0, 0]],[1528990325,[0,0, 0]],[1528990328,[0,0, 0]],[1528990332,[1,0, 1]],[1528990335,[0,0, 0]],[1528990339,[0,0, 0]],[1528990343,[0,0, 0]],[1528990346,[1,0, 1]],[1528990350,[0,0, 0]],[1528990353,[0,0, 0]],[1528990357,[0,0, 0]],[1528990360,[0,0, 0]],[1528990364,[0,0, 0]],[1528990368,[0,0, 0]],[1528990371,[0,0, 0]],[1528990375,[0,0, 0]],[1528990378,[0,0, 0]],[1528990382,[0,0, 0]],[1528990386,[0,0, 0]],[1528990389,[0,0, 0]],[1528990393,[1,0, 1]],[1528990396,[0,0, 0]],[1528990400,[0,0, 0]],[1528990404,[0,0, 0]],[1528990407,[0,0, 0]],[1528990411,[0,0, 0]],[1528990414,[0,0, 0]],[1528990418,[0,0, 0]],[1528990422,[0,0, 0]],[1528990425,[0,0, 0]],[1528990429,[0,0, 0]],[1528990432,[0,0, 0]],[1528990436,[0,0, 0]],[1528990440,[0,0, 0]],[1528990443,[0,0, 0]],[1528990447,[0,0, 0]],[1528990450,[0,0, 0]],[1528990454,[0,0, 0]],[1528990458,[0,0, 0]],[1528990461,[0,0, 0]],[1528990465,[0,0, 0]],[1528990468,[0,0, 0]],[1528990472,[0,0, 0]],[1528990476,[0,0, 0]],[1528990479,[1,0, 1]],[1528990483,[0,0, 0]],[1528990486,[0,0, 0]],[1528990490,[0,0, 0]],[1528990494,[0,0, 0]],[1528990497,[0,0, 0]],[1528990501,[0,0, 0]],[1528990504,[0,0, 0]],[1528990508,[0,0, 0]],[1528990512,[0,0, 0]],[1528990515,[0,0, 0]],[1528990519,[0,0, 0]],[1528990522,[0,0, 0]],[1528990526,[0,0, 0]],[1528990530,[0,0, 0]],[1528990533,[0,0, 0]],[1528990537,[0,0, 0]],[1528990540,[0,0, 0]],[1528990544,[0,0, 0]],[1528990548,[0,0, 0]],[1528990551,[0,0, 0]],[1528990555,[0,0, 0]],[1528990558,[0,0, 0]],[1528990562,[0,0, 0]],[1528990566,[0,0, 0]],[1528990569,[0,0, 0]],[1528990573,[0,0, 0]],[1528990576,[0,0, 0]],[1528990580,[0,0, 0]],[1528990584,[0,0, 0]],[1528990587,[0,0, 0]],[1528990591,[0,0, 0]],[1528990594,[0,0, 0]],[1528990598,[0,0, 0]],[1528990601,[0,0, 0]],[1528990605,[0,0, 0]],[1528990609,[0,0, 0]],[1528990612,[0,0, 0]],[1528990616,[0,0, 0]],[1528990619,[1,0, 1]],[1528990623,[0,0, 0]],[1528990627,[0,0, 0]],[1528990630,[0,0, 0]],[1528990634,[0,0, 0]],[1528990637,[0,0, 0]],[1528990641,[0,0, 0]],[1528990645,[0,0, 0]],[1528990648,[0,0, 0]],[1528990652,[0,0, 0]],[1528990655,[0,0, 0]],[1528990659,[0,0, 0]],[1528990663,[0,0, 0]],[1528990666,[0,0, 0]],[1528990670,[0,0, 0]],[1528990673,[0,0, 0]],[1528990677,[0,0, 0]],[1528990681,[0,0, 0]],[1528990684,[0,0, 0]],[1528990688,[0,0, 0]],[1528990691,[0,0, 0]],[1528990695,[1,0, 1]],[1528990699,[0,0, 0]],[1528990702,[0,0, 0]],[1528990706,[0,0, 0]],[1528990709,[0,0, 0]],[1528990713,[0,0, 0]],[1528990717,[0,0, 0]],[1528990720,[0,0, 0]],[1528990724,[0,0, 0]],[1528990727,[0,0, 0]],[1528990731,[0,0, 0]],[1528990735,[0,0, 0]],[1528990738,[0,0, 0]],[1528990742,[0,0, 0]],[1528990745,[0,0, 0]],[1528990749,[0,0, 0]],[1528990753,[0,0, 0]],[1528990756,[1,0, 1]],[1528990760,[0,0, 0]],[1528990763,[0,0, 0]],[1528990767,[0,0, 0]],[1528990771,[0,0, 0]],[1528990774,[0,0, 0]],[1528990778,[0,0, 0]],[1528990781,[0,0, 0]],[1528990785,[0,0, 0]],[1528990789,[0,0, 0]],[1528990792,[0,0, 0]],[1528990796,[0,0, 0]],[1528990799,[0,0, 0]],[1528990803,[0,0, 0]],[1528990807,[0,0, 0]],[1528990810,[0,0, 0]],[1528990814,[0,0, 0]],[1528990817,[0,0, 0]],[1528990821,[1,0, 1]],[1528990825,[1,0, 1]],[1528990828,[0,0, 0]],[1528990832,[0,0, 0]],[1528990835,[0,0, 0]],[1528990839,[0,0, 0]],[1528990842,[0,0, 0]],[1528990846,[0,0, 0]],[1528990850,[0,0, 0]],[1528990853,[0,0, 0]],[1528990857,[0,0, 0]],[1528990860,[0,0, 0]],[1528990864,[0,0, 0]],[1528990868,[0,0, 0]],[1528990871,[0,0, 0]],[1528990875,[0,0, 0]],[1528990878,[0,0, 0]],[1528990882,[0,0, 0]],[1528990886,[0,0, 0]],[1528990889,[0,0, 0]],[1528990893,[0,0, 0]],[1528990896,[1,0, 1]],[1528990900,[0,0, 0]],[1528990904,[0,0, 0]],[1528990907,[0,0, 0]],[1528990911,[0,0, 0]],[1528990914,[0,0, 0]],[1528990918,[0,0, 0]],[1528990922,[1,0, 1]],[1528990925,[0,0, 0]],[1528990929,[0,0, 0]],[1528990932,[0,0, 0]],[1528990936,[0,0, 0]],[1528990940,[0,0, 0]],[1528990943,[0,0, 0]],[1528990947,[0,0, 0]],[1528990950,[0,0, 0]],[1528990954,[0,0, 0]],[1528990958,[0,0, 0]],[1528990961,[0,0, 0]],[1528990965,[0,0, 0]],[1528990968,[0,0, 0]],[1528990972,[0,0, 0]],[1528990976,[0,0, 0]],[1528990979,[0,0, 0]],[1528990983,[0,0, 0]],[1528990986,[0,0, 0]],[1528990990,[0,0, 0]],[1528990994,[0,0, 0]],[1528990997,[0,0, 0]],[1528991001,[0,0, 0]],[1528991004,[0,0, 0]],[1528991008,[0,0, 0]],[1528991012,[0,0, 0]],[1528991015,[0,0, 0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_responses',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Number of responses',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
series: [
{
color: '#4572A7',
name: 'All',
data: container_responses[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
},
{
color: '#FF0000',
name: 'KO',
data: container_responses[1],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
{
color: '#A0B228',
name: 'OK',
data: container_responses[2],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData,
{
type: 'pie',
name: 'Distribution',
data: [
{name: 'OK', y: 42.0, color: '#A0B228'},{name: 'KO', y: 0.0, color: '#FF0000'}
],
center: [775, -40],
size: 70,
showInLegend: false,
dataLabels: { enabled: false },
dataGrouping: { enabled: false }
}
]
});
requestsChart.setTitle({
text: '<span class="chart_title">Number of responses per second</span>',
useHTML: true
});
var scatterChart = new Highcharts.Chart({
chart: {
renderTo: 'container_response_time_dispersion',
defaultSeriesType: 'scatter',
zoomType: 'xy'
},
credits: { enabled: false },
xAxis: {
title: {
enabled: true,
text: 'Global number of requests per second',
style: { fontWeight: 'bold' }
},
startOnTick: true,
endOnTick: true,
showLastLabel: true,
min: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
yAxis: {
min: 0,
title: { text: 'Response Time' }
},
tooltip: {
formatter: function() {
return ''+ this.y +' ms at ' + this.x + ' allreq/s';
}
},
legend: {
layout: 'vertical',
align: 'left',
verticalAlign: 'top',
x: 80,
y: 10,
floating: true,
backgroundColor: '#FFFFFF',
borderWidth: 1,
borderRadius: 3,
itemStyle: {
fontWeight: "normal",
color: "#274B6D"
}
},
plotOptions: {
scatter: {
marker: {
radius: 3,
states: {
hover: {
enabled: true,
lineColor: 'rgb(100,100,100)'
}
}
},
states: {
hover: {
marker: { enabled: false }
}
}
}
},
series: [
{
type: 'scatter',
color: 'rgba(69, 114, 167, .2)',
name: 'OK',
data: [
[0,622],[0,1351],[0,1273],[0,1202],[0,2096],[1,123],[1,176],[1,129],[1,152],[1,129],[1,117],[1,116],[1,147],[1,172],[1,139],[1,117],[1,154],[1,123],[1,160],[1,129],[1,118],[1,130],[1,123],[1,210],[1,123],[1,246],[1,124],[1,154],[1,111],[1,135],[1,145],[1,190],[1,135],[1,475],[1,2696],[1,503],[1,141],[1,155],[1,151],[1,129],[1,144],[1,140],[1,128],[1,121],[1,147],[1,568],[1,305],[1,291],[2,153],[2,167],[2,111],[2,240],[2,117],[2,148],[2,110],[2,152],[2,148],[2,174],[2,134],[2,127],[2,798],[2,182],[2,253],[2,138],[2,149],[2,133],[2,117],[2,130],[2,126],[2,142],[2,149],[2,163],[2,91],[2,156],[2,120],[2,111],[2,138],[2,157],[2,180],[2,154],[2,215],[2,129],[2,101],[2,194],[2,189],[2,127],[2,251],[2,142],[2,124],[2,136],[2,155],[2,174],[2,833],[2,1087],[2,216],[2,197],[2,139],[2,115],[2,177],[2,160],[2,181],[2,128],[2,151],[2,150],[2,155],[2,190],[2,127],[2,114],[2,172],[2,148],[2,135],[2,160],[2,147],[2,168],[2,107],[2,139],[2,134],[2,156],[2,124],[2,161],[2,155],[2,159],[2,149],[2,185],[2,151],[2,172],[2,179],[2,140],[2,158],[2,134],[2,97],[2,146],[2,121],[2,132],[2,118],[2,125],[2,131],[2,131],[2,1283],[2,3204],[2,106],[2,2306],[2,105],[2,118],[2,171],[2,123],[2,164],[2,174],[2,123],[2,122],[2,132],[2,156],[2,119],[2,109],[2,159],[2,191],[2,110],[2,140],[2,205],[2,103],[2,207],[2,127],[2,135],[2,124],[2,176],[2,217],[2,140],[2,202],[2,142],[2,120],[2,150],[2,104],[2,122],[2,108],[2,149],[2,148],[2,142],[2,123],[2,108],[2,169],[2,134],[2,144],[2,120],[2,284],[2,219],[2,127],[2,1595],[2,215],[2,240],[2,324],[2,161],[3,224],[3,140],[3,181],[3,146],[3,148],[3,283],[3,132],[3,107],[3,151],[3,102],[3,570],[3,441],[3,363],[3,159],[3,146],[3,167],[3,156],[3,194],[3,129],[3,111],[3,146],[3,149],[3,119],[3,123],[3,148],[3,137],[3,137],[3,194],[3,200],[3,545],[3,154],[3,139],[3,172],[3,109],[3,96],[3,179],[3,134],[3,159],[3,111],[3,128],[3,130],[3,184],[3,157],[3,202],[4,136],[4,143],[4,143],[4,188],[4,161],[4,127],[4,146],[4,96],[4,146],[4,153],[4,228],[4,128],[4,323],[5,290]
]},
{
type: 'scatter',
color: 'rgba(255, 0, 0, .2)',
name: 'KO',
data: [
[1,125],[1,60006],[2,10],[2,53],[2,41],[3,62]
]}
]
});
scatterChart.setTitle({
text: '<span class="chart_title">Response Time against Global RPS</span>',
useHTML: true
});
});
</script>
</body>
</html>