-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreq_mass-copy-spots-a46cc.html
922 lines (889 loc) · 102 KB
/
req_mass-copy-spots-a46cc.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
918
919
920
921
922
<!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 - mass copy spots</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>mass copy spots</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">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 503<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total">10</td>
<td class="value error-col-3 total">50 %</td>
</tr>
<tr>
<td class="error-col-1 total">j.u.c.TimeoutException: Request timeout to not-connected after 60000ms<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total">9</td>
<td class="value error-col-3 total">45 %</td>
</tr>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total">1</td>
<td class="value error-col-3 total">5 %</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_mass-copy-spots-a46cc'].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: ['307', '907', '1507', '2107', '2707', '3307', '3907', '4507', '5107', '5707', '6308', '6908', '7508', '8108', '8708', '9308', '9908', '10508', '11108', '11708', '12308', '12908', '13508', '14108', '14708', '15308', '15908', '16508', '17108', '17708', '18309', '18909', '19509', '20109', '20709', '21309', '21909', '22509', '23109', '23709', '24309', '24909', '25509', '26109', '26709', '27309', '27909', '28509', '29109', '29709', '30310', '30910', '31510', '32110', '32710', '33310', '33910', '34510', '35110', '35710', '36310', '36910', '37510', '38110', '38710', '39310', '39910', '40510', '41110', '41710', '42311', '42911', '43511', '44111', '44711', '45311', '45911', '46511', '47111', '47711', '48311', '48911', '49511', '50111', '50711', '51311', '51911', '52511', '53111', '53711', '54312', '54912', '55512', '56112', '56712', '57312', '57912', '58512', '59112', '59712', '60312'],
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: [
0.0,0.67,0.33,3.02,3.35,3.02,2.01,3.69,2.01,2.01,3.02,5.03,1.34,3.02,1.67,1.34,1.67,3.69,2.34,1.34,3.02,3.35,4.36,2.01,2.68,2.68,2.68,2.34,1.34,1.67,1.67,0.67,1.34,2.34,0.67,1.0,1.67,1.34,1.34,1.34,1.0,0.33,0.33,1.0,0.33,0.33,0.0,0.67,0.33,0.33,0.0,0.33,0.0,0.33,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,0.0,0.0,0.33,0.33,0.33,0.33,0.0,0.33,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.33,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
name: 'KO',
data: [
3.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.02,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responseTimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responseTimePercentiles = unpack([[1528987422,null],[1528987425,null],[1528987429,[3667,3667,3667,3667,3667,3667,3667,3667,3667,3667]],[1528987433,null],[1528987436,[2817,4736,6655,8574,8958,9342,9726,10110,10417,10494]],[1528987440,null],[1528987443,[1964,1964,1964,1964,1964,1964,1964,1964,1964,1964]],[1528987447,null],[1528987451,[6921,6921,6921,6921,6921,6921,6921,6921,6921,6921]],[1528987454,null],[1528987458,[12738,12738,12738,12738,12738,12738,12738,12738,12738,12738]],[1528987461,null],[1528987465,null],[1528987469,null],[1528987472,null],[1528987476,null],[1528987479,null],[1528987483,null],[1528987486,null],[1528987490,null],[1528987494,null],[1528987497,[23572,23572,23572,23572,23572,23572,23572,23572,23572,23572]],[1528987501,null],[1528987504,[13233,13643,14053,14463,14545,14627,14709,14791,14856,14873]],[1528987508,null],[1528987512,null],[1528987515,[11428,11428,11428,11428,11428,11428,11428,11428,11428,11428]],[1528987519,null],[1528987522,[21742,21742,21742,21742,21742,21742,21742,21742,21742,21742]],[1528987526,[15796,15796,15796,15796,15796,15796,15796,15796,15796,15796]],[1528987530,null],[1528987533,null],[1528987537,null],[1528987540,null],[1528987544,null],[1528987548,null],[1528987551,null],[1528987555,null],[1528987558,null],[1528987562,null],[1528987566,null],[1528987569,[18840,18840,18840,18840,18840,18840,18840,18840,18840,18840]],[1528987573,[2847,6288,9729,13170,13858,14546,15234,15922,16473,16611]],[1528987576,[29694,30228,30762,31296,31402,31509,31616,31723,31808,31830]],[1528987580,null],[1528987584,null],[1528987587,null],[1528987591,null],[1528987594,null],[1528987598,null],[1528987602,null],[1528987605,null],[1528987609,null],[1528987612,null],[1528987616,[11936,11936,11936,11936,11936,11936,11936,11936,11936,11936]],[1528987620,null],[1528987623,null],[1528987627,[11015,11015,11015,11015,11015,11015,11015,11015,11015,11015]],[1528987630,null],[1528987634,[5884,5884,5884,5884,5884,5884,5884,5884,5884,5884]],[1528987638,[18809,18809,18809,18809,18809,18809,18809,18809,18809,18809]],[1528987641,null],[1528987645,null],[1528987648,null],[1528987652,[13638,13638,13638,13638,13638,13638,13638,13638,13638,13638]],[1528987656,[10691,10691,10691,10691,10691,10691,10691,10691,10691,10691]],[1528987659,null],[1528987663,null],[1528987666,null],[1528987670,null],[1528987674,null],[1528987677,null],[1528987681,null],[1528987684,[3364,3364,3364,3364,3364,3364,3364,3364,3364,3364]],[1528987688,[17653,17653,17653,17653,17653,17653,17653,17653,17653,17653]],[1528987692,[14014,14014,14014,14014,14014,14014,14014,14014,14014,14014]],[1528987695,null],[1528987699,null],[1528987702,null],[1528987706,[13756,13756,13756,13756,13756,13756,13756,13756,13756,13756]],[1528987710,null],[1528987713,[16966,16966,16966,16966,16966,16966,16966,16966,16966,16966]],[1528987717,[2129,2129,2129,2129,2129,2129,2129,2129,2129,2129]],[1528987720,null],[1528987724,null],[1528987727,null],[1528987731,null],[1528987735,null],[1528987738,null],[1528987742,null],[1528987745,[13296,13296,13296,13296,13296,13296,13296,13296,13296,13296]],[1528987749,null],[1528987753,[6358,6358,6358,6358,6358,6358,6358,6358,6358,6358]],[1528987756,null],[1528987760,[17080,17080,17080,17080,17080,17080,17080,17080,17080,17080]],[1528987763,null],[1528987767,null],[1528987771,[26817,26817,26817,26817,26817,26817,26817,26817,26817,26817]],[1528987774,null],[1528987778,null],[1528987781,[22353,22353,22353,22353,22353,22353,22353,22353,22353,22353]],[1528987785,null],[1528987789,null],[1528987792,[9572,9572,9572,9572,9572,9572,9572,9572,9572,9572]],[1528987796,null],[1528987799,[14227,14227,14227,14227,14227,14227,14227,14227,14227,14227]],[1528987803,null],[1528987807,null],[1528987810,null],[1528987814,null],[1528987817,null],[1528987821,null],[1528987825,null],[1528987828,null],[1528987832,null],[1528987835,[6014,6713,7413,8112,8252,8392,8532,8672,8784,8812]],[1528987839,null],[1528987843,null],[1528987846,null],[1528987850,null],[1528987853,[9822,9822,9822,9822,9822,9822,9822,9822,9822,9822]],[1528987857,null],[1528987861,[9514,9514,9514,9514,9514,9514,9514,9514,9514,9514]],[1528987864,[14395,14395,14395,14395,14395,14395,14395,14395,14395,14395]],[1528987868,null],[1528987871,null],[1528987875,[16771,16771,16771,16771,16771,16771,16771,16771,16771,16771]],[1528987879,null],[1528987882,null],[1528987886,null],[1528987889,null],[1528987893,null],[1528987897,null],[1528987900,[14826,14826,14826,14826,14826,14826,14826,14826,14826,14826]],[1528987904,null],[1528987907,[4596,4596,4596,4596,4596,4596,4596,4596,4596,4596]],[1528987911,null],[1528987915,null],[1528987918,[2433,2433,2433,2433,2433,2433,2433,2433,2433,2433]],[1528987922,null],[1528987925,[12623,16005,19388,22771,23447,24124,24800,25477,26018,26154]],[1528987929,null],[1528987933,null],[1528987936,null],[1528987940,[23887,23887,23887,23887,23887,23887,23887,23887,23887,23887]],[1528987943,null],[1528987947,null],[1528987951,null],[1528987954,null],[1528987958,null],[1528987961,[3415,3415,3415,3415,3415,3415,3415,3415,3415,3415]],[1528987965,null],[1528987968,[28617,28617,28617,28617,28617,28617,28617,28617,28617,28617]],[1528987972,null],[1528987976,[1180,1180,1180,1180,1180,1180,1180,1180,1180,1180]],[1528987979,null],[1528987983,null],[1528987986,null],[1528987990,[19414,19414,19414,19414,19414,19414,19414,19414,19414,19414]],[1528987994,null],[1528987997,null],[1528988001,null],[1528988004,null],[1528988008,[23116,23116,23116,23116,23116,23116,23116,23116,23116,23116]],[1528988012,null],[1528988015,null],[1528988019,[10959,10959,10959,10959,10959,10959,10959,10959,10959,10959]],[1528988022,null],[1528988026,[10617,10617,10617,10617,10617,10617,10617,10617,10617,10617]],[1528988030,null],[1528988033,null],[1528988037,null],[1528988040,null],[1528988044,null],[1528988048,null],[1528988051,null],[1528988055,[17321,17321,17321,17321,17321,17321,17321,17321,17321,17321]],[1528988058,[20205,20205,20205,20205,20205,20205,20205,20205,20205,20205]],[1528988062,null],[1528988066,null],[1528988069,[4458,7493,10529,13564,14171,14778,15385,15992,16478,16600]],[1528988073,null],[1528988076,[8017,8017,8017,8017,8017,8017,8017,8017,8017,8017]],[1528988080,null],[1528988084,null],[1528988087,null],[1528988091,null],[1528988094,null],[1528988098,null],[1528988102,null],[1528988105,[1857,1857,1857,1857,1857,1857,1857,1857,1857,1857]],[1528988109,null],[1528988112,null],[1528988116,null],[1528988120,null],[1528988123,[11112,11112,11112,11112,11112,11112,11112,11112,11112,11112]],[1528988127,null],[1528988130,[5767,5767,5767,5767,5767,5767,5767,5767,5767,5767]],[1528988134,[6282,6282,6282,6282,6282,6282,6282,6282,6282,6282]],[1528988138,[4731,7515,10299,13083,13640,14197,14754,15311,15756,15868]],[1528988141,null],[1528988145,null],[1528988148,null],[1528988152,null],[1528988156,null],[1528988159,null],[1528988163,null],[1528988166,null],[1528988170,null],[1528988174,null],[1528988177,null],[1528988181,null],[1528988184,null],[1528988188,null],[1528988191,null],[1528988195,null],[1528988199,null],[1528988202,[3025,3025,3025,3025,3025,3025,3025,3025,3025,3025]],[1528988206,null],[1528988209,[12969,14532,16096,17659,17972,18284,18597,18910,19160,19223]],[1528988213,null],[1528988217,null],[1528988220,null],[1528988224,[4555,4555,4555,4555,4555,4555,4555,4555,4555,4555]],[1528988227,null],[1528988231,null],[1528988235,null],[1528988238,null],[1528988242,null],[1528988245,null],[1528988249,null],[1528988253,null],[1528988256,null],[1528988260,null],[1528988263,null],[1528988267,null],[1528988271,null],[1528988274,null],[1528988278,null],[1528988281,[15038,15038,15038,15038,15038,15038,15038,15038,15038,15038]],[1528988285,null],[1528988289,null],[1528988292,null],[1528988296,null],[1528988299,null],[1528988303,null],[1528988307,null],[1528988310,[8063,8063,8063,8063,8063,8063,8063,8063,8063,8063]],[1528988314,null],[1528988317,null],[1528988321,null],[1528988325,[29123,29123,29123,29123,29123,29123,29123,29123,29123,29123]],[1528988328,null],[1528988332,[20507,20507,20507,20507,20507,20507,20507,20507,20507,20507]],[1528988335,null],[1528988339,[22780,22780,22780,22780,22780,22780,22780,22780,22780,22780]],[1528988343,[51721,51721,51721,51721,51721,51721,51721,51721,51721,51721]],[1528988346,null],[1528988350,null],[1528988353,null],[1528988357,null],[1528988361,null],[1528988364,null],[1528988368,[23060,23060,23060,23060,23060,23060,23060,23060,23060,23060]],[1528988371,null],[1528988375,null],[1528988379,null],[1528988382,null],[1528988386,null],[1528988389,null],[1528988393,[21693,21693,21693,21693,21693,21693,21693,21693,21693,21693]],[1528988397,null],[1528988400,[8361,10294,12227,14160,14547,14934,15320,15707,16016,16094]],[1528988404,null],[1528988407,null],[1528988411,null],[1528988415,null],[1528988418,null],[1528988422,null],[1528988425,null],[1528988429,null],[1528988432,null],[1528988436,null],[1528988440,[59303,59303,59303,59303,59303,59303,59303,59303,59303,59303]],[1528988443,null],[1528988447,null],[1528988450,null],[1528988454,null],[1528988458,null],[1528988461,null],[1528988465,null],[1528988468,null],[1528988472,null],[1528988476,[36646,36646,36646,36646,36646,36646,36646,36646,36646,36646]],[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,null],[1528988548,null],[1528988551,[43143,43143,43143,43143,43143,43143,43143,43143,43143,43143]],[1528988555,null],[1528988558,null],[1528988562,null],[1528988566,[7855,7855,7855,7855,7855,7855,7855,7855,7855,7855]],[1528988569,null],[1528988573,[18358,18358,18358,18358,18358,18358,18358,18358,18358,18358]],[1528988576,[32880,32880,32880,32880,32880,32880,32880,32880,32880,32880]],[1528988580,null],[1528988584,[18551,18551,18551,18551,18551,18551,18551,18551,18551,18551]],[1528988587,null],[1528988591,[20345,20345,20345,20345,20345,20345,20345,20345,20345,20345]],[1528988594,null],[1528988598,null],[1528988602,null],[1528988605,null],[1528988609,null],[1528988612,null],[1528988616,[23624,23624,23624,23624,23624,23624,23624,23624,23624,23624]],[1528988620,null],[1528988623,null],[1528988627,null],[1528988630,null],[1528988634,null],[1528988638,null],[1528988641,null],[1528988645,null],[1528988648,[3359,3359,3359,3359,3359,3359,3359,3359,3359,3359]],[1528988652,null],[1528988656,null],[1528988659,null],[1528988663,null],[1528988666,null],[1528988670,null],[1528988673,null],[1528988677,null],[1528988681,null],[1528988684,null],[1528988688,null],[1528988691,null],[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,[6745,6745,6745,6745,6745,6745,6745,6745,6745,6745]],[1528988807,null],[1528988810,null],[1528988814,null],[1528988817,[7279,7279,7279,7279,7279,7279,7279,7279,7279,7279]],[1528988821,null],[1528988825,[4343,5494,6645,16116,18010,19905,21799,23693,25209,25588]],[1528988828,null],[1528988832,null],[1528988835,null],[1528988839,null],[1528988843,null],[1528988846,null],[1528988850,null],[1528988853,null],[1528988857,null],[1528988861,null],[1528988864,null],[1528988868,[17759,17759,17759,17759,17759,17759,17759,17759,17759,17759]],[1528988871,null],[1528988875,[20563,20563,20563,20563,20563,20563,20563,20563,20563,20563]],[1528988879,[22771,22771,22771,22771,22771,22771,22771,22771,22771,22771]],[1528988882,null],[1528988886,[9364,9364,9364,9364,9364,9364,9364,9364,9364,9364]],[1528988889,null],[1528988893,null],[1528988897,null],[1528988900,null],[1528988904,null],[1528988907,null],[1528988911,null],[1528988914,null],[1528988918,[15738,15738,15738,15738,15738,15738,15738,15738,15738,15738]],[1528988922,null],[1528988925,null],[1528988929,null],[1528988932,null],[1528988936,null],[1528988940,null],[1528988943,[7050,7050,7050,7050,7050,7050,7050,7050,7050,7050]],[1528988947,null],[1528988950,[9286,9286,9286,9286,9286,9286,9286,9286,9286,9286]],[1528988954,null],[1528988958,null],[1528988961,[6864,6864,6864,6864,6864,6864,6864,6864,6864,6864]],[1528988965,null],[1528988968,null],[1528988972,null],[1528988976,null],[1528988979,null],[1528988983,null],[1528988986,[12223,12223,12223,12223,12223,12223,12223,12223,12223,12223]],[1528988990,null],[1528988994,null],[1528988997,null],[1528989001,null],[1528989004,null],[1528989008,[16089,16089,16089,16089,16089,16089,16089,16089,16089,16089]],[1528989012,null],[1528989015,null],[1528989019,[7048,9405,11763,14121,14592,15064,15535,16007,16384,16479]],[1528989022,[9759,9759,9759,9759,9759,9759,9759,9759,9759,9759]],[1528989026,null],[1528989030,null],[1528989033,null],[1528989037,null],[1528989040,null],[1528989044,null],[1528989048,null],[1528989051,null],[1528989055,null],[1528989058,[10349,10349,10349,10349,10349,10349,10349,10349,10349,10349]],[1528989062,[1568,1568,1568,1568,1568,1568,1568,1568,1568,1568]],[1528989066,null],[1528989069,null],[1528989073,[1965,1965,1965,1965,1965,1965,1965,1965,1965,1965]],[1528989076,null],[1528989080,[3589,3589,3589,3589,3589,3589,3589,3589,3589,3589]],[1528989084,[19826,19826,19826,19826,19826,19826,19826,19826,19826,19826]],[1528989087,null],[1528989091,null],[1528989094,null],[1528989098,[32682,32682,32682,32682,32682,32682,32682,32682,32682,32682]],[1528989102,null],[1528989105,null],[1528989109,null],[1528989112,null],[1528989116,[21748,21748,21748,21748,21748,21748,21748,21748,21748,21748]],[1528989120,null],[1528989123,[12384,12601,12818,13035,13079,13122,13166,13209,13244,13253]],[1528989127,null],[1528989130,null],[1528989134,null],[1528989138,[6974,6974,6974,6974,6974,6974,6974,6974,6974,6974]],[1528989141,null],[1528989145,null],[1528989148,null],[1528989152,null],[1528989155,null],[1528989159,[6376,6376,6376,6376,6376,6376,6376,6376,6376,6376]],[1528989163,null],[1528989166,null],[1528989170,null],[1528989173,[5722,5722,5722,5722,5722,5722,5722,5722,5722,5722]],[1528989177,null],[1528989181,null],[1528989184,[3241,7503,11766,16029,16881,17734,18586,19439,20121,20292]],[1528989188,[15031,15031,15031,15031,15031,15031,15031,15031,15031,15031]],[1528989191,null],[1528989195,null],[1528989199,null],[1528989202,null],[1528989206,null],[1528989209,[4571,4571,4571,4571,4571,4571,4571,4571,4571,4571]],[1528989213,null],[1528989217,[6028,6028,6028,6028,6028,6028,6028,6028,6028,6028]],[1528989220,null],[1528989224,null],[1528989227,[14994,14994,14994,14994,14994,14994,14994,14994,14994,14994]],[1528989231,null],[1528989235,null],[1528989238,null],[1528989242,null],[1528989245,[6799,6799,6799,6799,6799,6799,6799,6799,6799,6799]],[1528989249,null],[1528989253,null],[1528989256,null],[1528989260,null],[1528989263,[15057,15057,15057,15057,15057,15057,15057,15057,15057,15057]],[1528989267,[4425,5922,7419,8916,9216,9515,9815,10114,10354,10414]],[1528989271,null],[1528989274,null],[1528989278,null],[1528989281,null],[1528989285,[10241,10241,10241,10241,10241,10241,10241,10241,10241,10241]],[1528989289,null],[1528989292,null],[1528989296,null],[1528989299,null],[1528989303,null],[1528989307,[18062,18062,18062,18062,18062,18062,18062,18062,18062,18062]],[1528989310,[13519,13519,13519,13519,13519,13519,13519,13519,13519,13519]],[1528989314,[18139,18139,18139,18139,18139,18139,18139,18139,18139,18139]],[1528989317,null],[1528989321,null],[1528989325,null],[1528989328,[16065,16065,16065,16065,16065,16065,16065,16065,16065,16065]],[1528989332,[5110,5110,5110,5110,5110,5110,5110,5110,5110,5110]],[1528989335,null],[1528989339,null],[1528989343,null],[1528989346,null],[1528989350,null],[1528989353,[2924,2924,2924,2924,2924,2924,2924,2924,2924,2924]],[1528989357,null],[1528989361,null],[1528989364,null],[1528989368,null],[1528989371,[13493,13493,13493,13493,13493,13493,13493,13493,13493,13493]],[1528989375,null],[1528989379,null],[1528989382,[7522,7656,7791,7926,7953,7980,8007,8034,8055,8061]],[1528989386,null],[1528989389,null],[1528989393,null],[1528989396,null],[1528989400,[12604,15415,18227,21039,21601,22163,22726,23288,23738,23851]],[1528989404,null],[1528989407,[3834,3834,3834,3834,3834,3834,3834,3834,3834,3834]],[1528989411,null],[1528989414,null],[1528989418,null],[1528989422,null],[1528989425,[5291,5291,5291,5291,5291,5291,5291,5291,5291,5291]],[1528989429,null],[1528989432,null],[1528989436,null],[1528989440,null],[1528989443,[15168,15168,15168,15168,15168,15168,15168,15168,15168,15168]],[1528989447,null],[1528989450,null],[1528989454,null],[1528989458,null],[1528989461,null],[1528989465,[6411,8903,11396,13888,14387,14885,15384,15882,16281,16381]],[1528989468,null],[1528989472,null],[1528989476,[9917,9917,9917,9917,9917,9917,9917,9917,9917,9917]],[1528989479,[6986,6986,6986,6986,6986,6986,6986,6986,6986,6986]],[1528989483,null],[1528989486,null],[1528989490,null],[1528989494,null],[1528989497,null],[1528989501,[19224,19224,19224,19224,19224,19224,19224,19224,19224,19224]],[1528989504,[14919,14919,14919,14919,14919,14919,14919,14919,14919,14919]],[1528989508,null],[1528989512,null],[1528989515,null],[1528989519,[6339,6339,6339,6339,6339,6339,6339,6339,6339,6339]],[1528989522,null],[1528989526,null],[1528989530,[5258,5258,5258,5258,5258,5258,5258,5258,5258,5258]],[1528989533,null],[1528989537,null],[1528989540,[12958,12958,12958,12958,12958,12958,12958,12958,12958,12958]],[1528989544,null],[1528989548,null],[1528989551,[16314,16314,16314,16314,16314,16314,16314,16314,16314,16314]],[1528989555,null],[1528989558,null],[1528989562,null],[1528989566,null],[1528989569,null],[1528989573,null],[1528989576,[6621,8130,9640,11150,11452,11754,12056,12358,12599,12660]],[1528989580,[19736,19736,19736,19736,19736,19736,19736,19736,19736,19736]],[1528989584,null],[1528989587,[25917,25917,25917,25917,25917,25917,25917,25917,25917,25917]],[1528989591,null],[1528989594,null],[1528989598,null],[1528989602,null],[1528989605,null],[1528989609,null],[1528989612,[2362,2362,2362,2362,2362,2362,2362,2362,2362,2362]],[1528989616,null],[1528989620,null],[1528989623,null],[1528989627,[5932,7474,9016,10558,10867,11175,11484,11792,12039,12101]],[1528989630,[4516,4516,4516,4516,4516,4516,4516,4516,4516,4516]],[1528989634,null],[1528989637,null],[1528989641,null],[1528989645,null],[1528989648,null],[1528989652,null],[1528989655,null],[1528989659,null],[1528989663,null],[1528989666,null],[1528989670,null],[1528989673,[14602,14602,14602,14602,14602,14602,14602,14602,14602,14602]],[1528989677,[5728,5728,5728,5728,5728,5728,5728,5728,5728,5728]],[1528989681,null],[1528989684,[13569,16247,18926,21605,22141,22676,23212,23748,24176,24284]],[1528989688,[3853,3853,3853,3853,3853,3853,3853,3853,3853,3853]],[1528989691,null],[1528989695,[5100,5100,5100,5100,5100,5100,5100,5100,5100,5100]],[1528989699,null],[1528989702,null],[1528989706,null],[1528989709,null],[1528989713,null],[1528989717,null],[1528989720,null],[1528989724,null],[1528989727,null],[1528989731,null],[1528989735,null],[1528989738,[12198,13024,13851,14678,14843,15008,15174,15339,15471,15505]],[1528989742,null],[1528989745,[13720,13720,13720,13720,13720,13720,13720,13720,13720,13720]],[1528989749,null],[1528989753,[11573,11573,11573,11573,11573,11573,11573,11573,11573,11573]],[1528989756,[21601,21601,21601,21601,21601,21601,21601,21601,21601,21601]],[1528989760,null],[1528989763,[21214,21214,21214,21214,21214,21214,21214,21214,21214,21214]],[1528989767,null],[1528989771,null],[1528989774,null],[1528989778,null],[1528989781,null],[1528989785,null],[1528989789,null],[1528989792,null],[1528989796,null],[1528989799,[12721,12721,12721,12721,12721,12721,12721,12721,12721,12721]],[1528989803,[10062,10062,10062,10062,10062,10062,10062,10062,10062,10062]],[1528989807,null],[1528989810,null],[1528989814,null],[1528989817,null],[1528989821,null],[1528989825,[22998,22998,22998,22998,22998,22998,22998,22998,22998,22998]],[1528989828,null],[1528989832,null],[1528989835,[16029,16029,16029,16029,16029,16029,16029,16029,16029,16029]],[1528989839,[14676,14676,14676,14676,14676,14676,14676,14676,14676,14676]],[1528989843,null],[1528989846,null],[1528989850,null],[1528989853,[3402,3402,3402,3402,3402,3402,3402,3402,3402,3402]],[1528989857,null],[1528989861,[22224,22224,22224,22224,22224,22224,22224,22224,22224,22224]],[1528989864,null],[1528989868,[40524,40524,40524,40524,40524,40524,40524,40524,40524,40524]],[1528989871,null],[1528989875,null],[1528989878,null],[1528989882,null],[1528989886,null],[1528989889,[12228,12228,12228,12228,12228,12228,12228,12228,12228,12228]],[1528989893,null],[1528989896,null],[1528989900,null],[1528989904,null],[1528989907,null],[1528989911,[41752,41752,41752,41752,41752,41752,41752,41752,41752,41752]],[1528989914,null],[1528989918,null],[1528989922,[4745,4745,4745,4745,4745,4745,4745,4745,4745,4745]],[1528989925,null],[1528989929,null],[1528989932,null],[1528989936,null],[1528989940,null],[1528989943,null],[1528989947,[39851,41562,43273,44984,45327,45669,46011,46353,46627,46696]],[1528989950,null],[1528989954,null],[1528989958,null],[1528989961,null],[1528989965,null],[1528989968,null],[1528989972,null],[1528989976,null],[1528989979,null],[1528989983,[40988,40988,40988,40988,40988,40988,40988,40988,40988,40988]],[1528989986,null],[1528989990,null],[1528989994,[2848,2848,2848,2848,2848,2848,2848,2848,2848,2848]],[1528989997,null],[1528990001,null],[1528990004,[24419,24419,24419,24419,24419,24419,24419,24419,24419,24419]],[1528990008,null],[1528990012,null],[1528990015,null],[1528990019,null],[1528990022,null],[1528990026,null],[1528990030,null],[1528990033,[6635,6635,6635,6635,6635,6635,6635,6635,6635,6635]],[1528990037,null],[1528990040,null],[1528990044,null],[1528990048,[13793,18120,22447,26774,27640,28505,29371,30236,30928,31102]],[1528990051,null],[1528990055,null],[1528990058,null],[1528990062,[22142,22142,22142,22142,22142,22142,22142,22142,22142,22142]],[1528990066,null],[1528990069,null],[1528990073,null],[1528990076,null],[1528990080,null],[1528990084,null],[1528990087,[15405,15405,15405,15405,15405,15405,15405,15405,15405,15405]],[1528990091,null],[1528990094,null],[1528990098,null],[1528990102,[8789,8789,8789,8789,8789,8789,8789,8789,8789,8789]],[1528990105,null],[1528990109,null],[1528990112,[14384,14519,14655,14790,14817,14844,14871,14898,14920,14926]],[1528990116,null],[1528990119,null],[1528990123,null],[1528990127,null],[1528990130,null],[1528990134,null],[1528990137,[10353,10353,10353,10353,10353,10353,10353,10353,10353,10353]],[1528990141,null],[1528990145,[15769,15769,15769,15769,15769,15769,15769,15769,15769,15769]],[1528990148,null],[1528990152,null],[1528990155,null],[1528990159,[17149,17149,17149,17149,17149,17149,17149,17149,17149,17149]],[1528990163,[12854,15870,18887,21903,22506,23110,23713,24316,24799,24920]],[1528990166,null],[1528990170,null],[1528990173,[10347,10347,10347,10347,10347,10347,10347,10347,10347,10347]],[1528990177,null],[1528990181,null],[1528990184,null],[1528990188,null],[1528990191,null],[1528990195,null],[1528990199,[6784,6784,6784,6784,6784,6784,6784,6784,6784,6784]],[1528990202,null],[1528990206,null],[1528990209,null],[1528990213,null],[1528990217,[7282,7282,7282,7282,7282,7282,7282,7282,7282,7282]],[1528990220,null],[1528990224,null],[1528990227,[12366,15053,17740,20427,20965,21502,22040,22577,23007,23115]],[1528990231,[8237,9308,10380,11451,11665,11880,12094,12308,12480,12523]],[1528990235,null],[1528990238,null],[1528990242,null],[1528990245,null],[1528990249,null],[1528990253,null],[1528990256,null],[1528990260,null],[1528990263,null],[1528990267,null],[1528990271,null],[1528990274,null],[1528990278,[13642,13642,13642,13642,13642,13642,13642,13642,13642,13642]],[1528990281,[19992,19992,19992,19992,19992,19992,19992,19992,19992,19992]],[1528990285,null],[1528990289,null],[1528990292,null],[1528990296,[11056,11056,11056,11056,11056,11056,11056,11056,11056,11056]],[1528990299,[13858,13858,13858,13858,13858,13858,13858,13858,13858,13858]],[1528990303,[7434,7434,7434,7434,7434,7434,7434,7434,7434,7434]],[1528990307,null],[1528990310,[3793,3793,3793,3793,3793,3793,3793,3793,3793,3793]],[1528990314,null],[1528990317,null],[1528990321,null],[1528990325,null],[1528990328,null],[1528990332,null],[1528990335,null],[1528990339,null],[1528990343,null],[1528990346,[2720,2720,2720,2720,2720,2720,2720,2720,2720,2720]],[1528990350,null],[1528990353,[4533,7064,9596,12128,12634,13140,13647,14153,14558,14660]],[1528990357,null],[1528990360,null],[1528990364,[1027,5232,9438,13643,14484,15325,16166,17007,17680,17849]],[1528990368,[6947,6947,6947,6947,6947,6947,6947,6947,6947,6947]],[1528990371,null],[1528990375,null],[1528990378,null],[1528990382,null],[1528990386,null],[1528990389,null],[1528990393,null],[1528990396,[13151,13151,13151,13151,13151,13151,13151,13151,13151,13151]],[1528990400,null],[1528990404,[4141,6488,8836,11183,11653,12122,12592,13061,13437,13531]],[1528990407,null],[1528990411,[6369,6369,6369,6369,6369,6369,6369,6369,6369,6369]],[1528990414,null],[1528990418,null],[1528990422,null],[1528990425,null],[1528990429,null],[1528990432,[15058,15058,15058,15058,15058,15058,15058,15058,15058,15058]],[1528990436,null],[1528990440,null],[1528990443,[2915,2915,2915,2915,2915,2915,2915,2915,2915,2915]],[1528990447,null],[1528990450,null],[1528990454,[5571,5571,5571,5571,5571,5571,5571,5571,5571,5571]],[1528990458,null],[1528990461,null],[1528990465,null],[1528990468,null],[1528990472,null],[1528990476,[8902,11667,14432,17197,17750,18303,18856,19409,19852,19963]],[1528990479,null],[1528990483,null],[1528990486,null],[1528990490,[22027,22027,22027,22027,22027,22027,22027,22027,22027,22027]],[1528990494,[2383,2383,2383,2383,2383,2383,2383,2383,2383,2383]],[1528990497,null],[1528990501,[4222,4222,4222,4222,4222,4222,4222,4222,4222,4222]],[1528990504,null],[1528990508,null],[1528990512,null],[1528990515,null],[1528990519,null],[1528990522,null],[1528990526,null],[1528990530,[1831,1831,1831,1831,1831,1831,1831,1831,1831,1831]],[1528990533,null],[1528990537,null],[1528990540,null],[1528990544,[8629,11756,14884,18012,18637,19263,19888,20514,21014,21140]],[1528990548,null],[1528990551,null],[1528990555,null],[1528990558,null],[1528990562,null],[1528990566,null],[1528990569,null],[1528990573,[6289,6690,7091,7492,7572,7652,7732,7812,7876,7893]],[1528990576,null],[1528990580,null],[1528990584,[13434,13434,13434,13434,13434,13434,13434,13434,13434,13434]],[1528990587,null],[1528990591,null],[1528990594,[18591,18591,18591,18591,18591,18591,18591,18591,18591,18591]],[1528990598,null],[1528990601,null],[1528990605,null],[1528990609,[11265,11265,11265,11265,11265,11265,11265,11265,11265,11265]],[1528990612,[8226,8226,8226,8226,8226,8226,8226,8226,8226,8226]],[1528990616,null],[1528990619,null],[1528990623,null],[1528990627,[27116,27116,27116,27116,27116,27116,27116,27116,27116,27116]],[1528990630,[2304,2304,2304,2304,2304,2304,2304,2304,2304,2304]],[1528990634,null],[1528990637,null],[1528990641,null],[1528990645,null],[1528990648,[8011,8011,8011,8011,8011,8011,8011,8011,8011,8011]],[1528990652,null],[1528990655,[24209,24209,24209,24209,24209,24209,24209,24209,24209,24209]],[1528990659,null],[1528990663,null],[1528990666,null],[1528990670,null],[1528990673,null],[1528990677,null],[1528990681,null],[1528990684,[3282,3671,4060,4449,4527,4605,4683,4761,4823,4839]],[1528990688,null],[1528990691,null],[1528990695,null],[1528990699,[3710,3710,3710,3710,3710,3710,3710,3710,3710,3710]],[1528990702,[15225,15225,15225,15225,15225,15225,15225,15225,15225,15225]],[1528990706,null],[1528990709,[11120,11120,11120,11120,11120,11120,11120,11120,11120,11120]],[1528990713,null],[1528990717,null],[1528990720,null],[1528990724,null],[1528990727,null],[1528990731,[11911,11911,11911,11911,11911,11911,11911,11911,11911,11911]],[1528990735,null],[1528990738,null],[1528990742,null],[1528990745,null],[1528990749,[2348,2348,2348,2348,2348,2348,2348,2348,2348,2348]],[1528990753,null],[1528990756,null],[1528990760,null],[1528990763,[10312,10312,10312,10312,10312,10312,10312,10312,10312,10312]],[1528990767,[16538,16538,16538,16538,16538,16538,16538,16538,16538,16538]],[1528990771,[2789,2789,2789,2789,2789,2789,2789,2789,2789,2789]],[1528990774,null],[1528990778,[3223,3223,3223,3223,3223,3223,3223,3223,3223,3223]],[1528990781,null],[1528990785,null],[1528990789,[28761,28761,28761,28761,28761,28761,28761,28761,28761,28761]],[1528990792,null],[1528990796,null],[1528990799,null],[1528990803,null],[1528990807,null],[1528990810,null],[1528990814,[17682,17682,17682,17682,17682,17682,17682,17682,17682,17682]],[1528990817,null],[1528990821,null],[1528990825,[12253,12253,12253,12253,12253,12253,12253,12253,12253,12253]],[1528990828,[17553,17553,17553,17553,17553,17553,17553,17553,17553,17553]],[1528990832,null],[1528990835,null],[1528990839,[7096,7096,7096,7096,7096,7096,7096,7096,7096,7096]],[1528990842,null],[1528990846,[12742,12742,12742,12742,12742,12742,12742,12742,12742,12742]],[1528990850,null],[1528990853,null],[1528990857,null],[1528990860,null],[1528990864,null],[1528990868,null],[1528990871,null],[1528990875,[5117,5117,5117,5117,5117,5117,5117,5117,5117,5117]],[1528990878,[2737,2737,2737,2737,2737,2737,2737,2737,2737,2737]],[1528990882,null],[1528990886,null],[1528990889,null],[1528990893,null],[1528990896,null],[1528990900,[6990,6990,6990,6990,6990,6990,6990,6990,6990,6990]],[1528990904,null],[1528990907,[10569,10569,10569,10569,10569,10569,10569,10569,10569,10569]],[1528990911,[10478,10478,10478,10478,10478,10478,10478,10478,10478,10478]],[1528990914,[12828,12828,12828,12828,12828,12828,12828,12828,12828,12828]],[1528990918,null],[1528990922,null],[1528990925,null],[1528990929,[10934,10934,10934,10934,10934,10934,10934,10934,10934,10934]],[1528990932,null],[1528990936,null],[1528990940,[25824,25824,25824,25824,25824,25824,25824,25824,25824,25824]],[1528990943,null],[1528990947,null],[1528990950,null],[1528990954,null],[1528990958,null],[1528990961,[8902,8902,8902,8902,8902,8902,8902,8902,8902,8902]],[1528990965,null],[1528990968,[10093,10093,10093,10093,10093,10093,10093,10093,10093,10093]],[1528990972,null],[1528990976,null],[1528990979,[2636,2636,2636,2636,2636,2636,2636,2636,2636,2636]],[1528990983,null],[1528990986,null],[1528990990,null],[1528990994,[20400,20400,20400,20400,20400,20400,20400,20400,20400,20400]],[1528990997,null],[1528991001,null],[1528991004,[14060,14060,14060,14060,14060,14060,14060,14060,14060,14060]],[1528991008,null],[1528991012,null],[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,[0,0, 0]],[1528987433,[0,0, 0]],[1528987436,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[1528987566,[0,0, 0]],[1528987569,[0,0, 0]],[1528987573,[1,0, 1]],[1528987576,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[1528987839,[0,0, 0]],[1528987843,[0,0, 0]],[1528987846,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[1528988127,[0,0, 0]],[1528988130,[0,0, 0]],[1528988134,[0,0, 0]],[1528988138,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[1528988389,[0,0, 0]],[1528988393,[0,0, 0]],[1528988397,[0,0, 0]],[1528988400,[1,0, 1]],[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,[0,0, 0]],[1528988461,[1,1, 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,[0,0, 0]],[1528988566,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[1528989015,[0,0, 0]],[1528989019,[1,0, 1]],[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,[0,0, 0]],[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,[0,0, 0]],[1528989112,[0,0, 0]],[1528989116,[0,0, 0]],[1528989120,[0,0, 0]],[1528989123,[1,0, 1]],[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,[0,0, 0]],[1528989177,[0,0, 0]],[1528989181,[0,0, 0]],[1528989184,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[1528989382,[1,0, 1]],[1528989386,[0,0, 0]],[1528989389,[0,0, 0]],[1528989393,[0,0, 0]],[1528989396,[0,0, 0]],[1528989400,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[0,0, 0]],[1528989569,[0,0, 0]],[1528989573,[0,0, 0]],[1528989576,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[0,0, 0]],[1528989673,[0,0, 0]],[1528989677,[0,0, 0]],[1528989681,[0,0, 0]],[1528989684,[1,0, 1]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[1,0, 1]],[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,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[1528990217,[0,0, 0]],[1528990220,[0,0, 0]],[1528990224,[0,0, 0]],[1528990227,[1,0, 1]],[1528990231,[1,0, 1]],[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,[0,0, 0]],[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,[0,0, 0]],[1528990335,[0,0, 0]],[1528990339,[0,0, 0]],[1528990343,[0,0, 0]],[1528990346,[0,0, 0]],[1528990350,[0,0, 0]],[1528990353,[1,0, 1]],[1528990357,[0,0, 0]],[1528990360,[0,0, 0]],[1528990364,[1,0, 1]],[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,[0,0, 0]],[1528990396,[0,0, 0]],[1528990400,[0,0, 0]],[1528990404,[1,0, 1]],[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,[1,0, 1]],[1528990479,[0,0, 0]],[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,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[1528990688,[0,0, 0]],[1528990691,[0,0, 0]],[1528990695,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[1528987433,[0,0, 0]],[1528987436,[0,0, 0]],[1528987440,[0,0, 0]],[1528987443,[0,0, 0]],[1528987447,[1,0, 1]],[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,[1,0, 1]],[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,[1,0, 1]],[1528987548,[0,0, 0]],[1528987551,[0,0, 0]],[1528987555,[0,0, 0]],[1528987558,[0,0, 0]],[1528987562,[0,0, 0]],[1528987566,[0,0, 0]],[1528987569,[0,0, 0]],[1528987573,[0,0, 0]],[1528987576,[0,0, 0]],[1528987580,[0,0, 0]],[1528987584,[0,0, 0]],[1528987587,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[1528988127,[0,0, 0]],[1528988130,[0,0, 0]],[1528988134,[1,0, 1]],[1528988138,[0,0, 0]],[1528988141,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,1, 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,[0,0, 0]],[1528988566,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[0,0, 0]],[1528989015,[0,0, 0]],[1528989019,[0,0, 0]],[1528989022,[0,0, 0]],[1528989026,[1,0, 1]],[1528989030,[0,0, 0]],[1528989033,[1,0, 1]],[1528989037,[0,0, 0]],[1528989040,[0,0, 0]],[1528989044,[0,0, 0]],[1528989048,[0,0, 0]],[1528989051,[0,0, 0]],[1528989055,[0,0, 0]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[1528989486,[0,0, 0]],[1528989490,[0,0, 0]],[1528989494,[0,0, 0]],[1528989497,[0,0, 0]],[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,[0,0, 0]],[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,[1,0, 1]],[1528989641,[0,0, 0]],[1528989645,[0,0, 0]],[1528989648,[0,0, 0]],[1528989652,[0,0, 0]],[1528989655,[0,0, 0]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[0,0, 0]],[1528989673,[0,0, 0]],[1528989677,[0,0, 0]],[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,[0,0, 0]],[1528989742,[0,0, 0]],[1528989745,[0,0, 0]],[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,[0,0, 0]],[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,[1,0, 1]],[1528989817,[0,0, 0]],[1528989821,[0,0, 0]],[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,[0,0, 0]],[1528989853,[1,0, 1]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[1528990317,[0,0, 0]],[1528990321,[0,0, 0]],[1528990325,[0,0, 0]],[1528990328,[0,0, 0]],[1528990332,[0,0, 0]],[1528990335,[0,0, 0]],[1528990339,[0,0, 0]],[1528990343,[0,0, 0]],[1528990346,[0,0, 0]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[1528990483,[0,0, 0]],[1528990486,[0,0, 0]],[1528990490,[0,0, 0]],[1528990494,[0,0, 0]],[1528990497,[1,0, 1]],[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,[1,0, 1]],[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,[1,0, 1]],[1528990691,[0,0, 0]],[1528990695,[0,0, 0]],[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,[0,0, 0]],[1528990760,[0,0, 0]],[1528990763,[0,0, 0]],[1528990767,[0,0, 0]],[1528990771,[0,0, 0]],[1528990774,[1,0, 1]],[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,[0,0, 0]],[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,[1,0, 1]],[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,[0,0, 0]],[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,[0,0, 0]],[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,[1,0, 1]],[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: 34.0, color: '#A0B228'},{name: 'KO', y: 1.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,13638],[0,14826],[0,5767],[0,20345],[0,23624],[0,6745],[0,14994],[0,10241],[0,18062],[0,18139],[0,12958],[0,14602],[0,21601],[0,22224],[0,40988],[0,22142],[0,13642],[0,11056],[0,6369],[0,2304],[0,2636],[1,6921],[1,12738],[1,14791],[1,11428],[1,15796],[1,15922],[1,31723],[1,11936],[1,11015],[1,5884],[1,10691],[1,3364],[1,14014],[1,2129],[1,13296],[1,26817],[1,22353],[1,9572],[1,14227],[1,8672],[1,9822],[1,9514],[1,14395],[1,16771],[1,4596],[1,2433],[1,25477],[1,3415],[1,1180],[1,19414],[1,23116],[1,10959],[1,10617],[1,20205],[1,15992],[1,8017],[1,6282],[1,15311],[1,3025],[1,4555],[1,15038],[1,29123],[1,22780],[1,51721],[1,23060],[1,21693],[1,15707],[1,59303],[1,36646],[1,43143],[1,18358],[1,32880],[1,18551],[1,23693],[1,17759],[1,20563],[1,9364],[1,15738],[1,9286],[1,6864],[1,12223],[1,16089],[1,16007],[1,9759],[1,10349],[1,1568],[1,1965],[1,19826],[1,32682],[1,13209],[1,6974],[1,6376],[1,19439],[1,15031],[1,4571],[1,6028],[1,10114],[1,13519],[1,16065],[1,5110],[1,2924],[1,13493],[1,3834],[1,5291],[1,15882],[1,9917],[1,19224],[1,14919],[1,6339],[1,5258],[1,16314],[1,12358],[1,25917],[1,11792],[1,4516],[1,23748],[1,3853],[1,5100],[1,11573],[1,21214],[1,12721],[1,10062],[1,22998],[1,16029],[1,14676],[1,3402],[1,40524],[1,12228],[1,41752],[1,4745],[1,46353],[1,24419],[1,6635],[1,30236],[1,15405],[1,8789],[1,14898],[1,10353],[1,15769],[1,17149],[1,24316],[1,10347],[1,6784],[1,7282],[1,22577],[1,12308],[1,19992],[1,13858],[1,7434],[1,3793],[1,14153],[1,17007],[1,6947],[1,13151],[1,13061],[1,15058],[1,19409],[1,22027],[1,2383],[1,4222],[1,1831],[1,20514],[1,13434],[1,11265],[1,8226],[1,27116],[1,8011],[1,24209],[1,4761],[1,3710],[1,15225],[1,11120],[1,11911],[1,2348],[1,10312],[1,16538],[1,28761],[1,17682],[1,17553],[1,7096],[1,12742],[1,5117],[1,2737],[1,6990],[1,10569],[1,10478],[1,12828],[1,10934],[1,25824],[1,10093],[1,20400],[1,14060],[2,1964],[2,21742],[2,18809],[2,17653],[2,13756],[2,16966],[2,6358],[2,17080],[2,23887],[2,1857],[2,18910],[2,8063],[2,3359],[2,7279],[2,22771],[2,7050],[2,3589],[2,21748],[2,6799],[2,8034],[2,15168],[2,6986],[2,19736],[2,2848],[2,2915],[2,5571],[2,2789],[2,3223],[3,10110],[3,23572],[3,28617],[3,17321],[3,11112],[3,20507],[3,7855],[3,15057],[3,23288],[3,5728],[3,7812],[3,18591],[3,12253],[3,8902],[4,3667],[4,18840],[4,5722],[4,2362],[4,15339],[4,13720],[4,2720]
]},
{
type: 'scatter',
color: 'rgba(255, 0, 0, .2)',
name: 'KO',
data: [
[0,60006],[1,7],[1,72],[1,15],[1,11],[1,60012],[1,60004],[1,60010],[1,60007],[1,14],[1,8],[1,60003],[1,60011],[2,10],[2,8],[2,9],[2,8],[3,10],[3,60010]
]}
]
});
scatterChart.setTitle({
text: '<span class="chart_title">Response Time against Global RPS</span>',
useHTML: true
});
});
</script>
</body>
</html>