-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathout_old.html
853 lines (764 loc) · 128 KB
/
out_old.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
<!doctype html>
<html ng-app="TaskApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rally | Rally Task Report</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.13/d3.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.js"></script>
<script type="text/javascript">
"use strict";
if (typeof angular === "object") { angular.module("TaskApp", []).controller(
"TaskController", ["$scope", "$location", function($scope, $location) {
$scope.source = "{\n \"Dummy.dummy_random_action\": [\n {\n \"args\": {\n \"actions_num\": 1, \n \"sleep_max\": 2, \n \"sleep_min\": 0.5\n }, \n \"context\": {\n \"users\": {\n \"project_domain\": \"default\", \n \"resource_management_workers\": 30, \n \"tenants\": 1, \n \"user_domain\": \"default\", \n \"users_per_tenant\": 1\n }\n }, \n \"runner\": {\n \"concurrency\": 400, \n \"times\": 4000, \n \"type\": \"constant\"\n }\n }\n ]\n}";
$scope.scenarios = [{"load_profile": [["parallel iterations", [[0.0, 0], [0.1467173502445221, 400], [0.2934347004890442, 400], [0.4401520507335663, 400], [0.5868694009780884, 405], [0.7335867512226104, 433], [0.8803041014671326, 433], [1.0270214517116547, 439], [1.1737388019561767, 433], [1.3204561522006988, 440], [1.4671735024452208, 442], [1.613890852689743, 448], [1.7606082029342651, 448], [1.9073255531787872, 460], [2.0540429034233094, 455], [2.2007602536678315, 448], [2.3474776039123535, 440], [2.4941949541568755, 433], [2.6409123044013976, 427], [2.7876296546459196, 443], [2.9343470048904416, 453], [3.081064355134964, 455], [3.227781705379486, 445], [3.374499055624008, 448], [3.5212164058685302, 438], [3.6679337561130523, 434], [3.8146511063575743, 443], [3.9613684566020964, 446], [4.108085806846619, 446], [4.254803157091141, 435], [4.401520507335663, 439], [4.548237857580185, 447], [4.694955207824707, 454], [4.841672558069229, 439], [4.988389908313751, 449], [5.135107258558273, 436], [5.281824608802795, 446], [5.428541959047317, 455], [5.575259309291839, 445], [5.721976659536361, 443], [5.868694009780883, 447], [6.015411360025406, 450], [6.162128710269928, 445], [6.30884606051445, 445], [6.455563410758972, 434], [6.602280761003494, 433], [6.748998111248016, 442], [6.8957154614925384, 447], [7.0424328117370605, 442], [7.1891501619815825, 453], [7.335867512226105, 450], [7.482584862470627, 445], [7.629302212715149, 446], [7.776019562959671, 435], [7.922736913204193, 451], [8.069454263448716, 444], [8.216171613693238, 437], [8.36288896393776, 452], [8.509606314182282, 444], [8.656323664426804, 439], [8.803041014671326, 449], [8.949758364915848, 441], [9.09647571516037, 440], [9.243193065404892, 442], [9.389910415649414, 449], [9.536627765893936, 451], [9.683345116138458, 448], [9.83006246638298, 449], [9.976779816627502, 442], [10.123497166872024, 451], [10.270214517116546, 429], [10.416931867361068, 436], [10.56364921760559, 450], [10.710366567850112, 444], [10.857083918094634, 447], [11.003801268339156, 447], [11.150518618583678, 442], [11.2972359688282, 440], [11.443953319072723, 440], [11.590670669317245, 455], [11.737388019561767, 444], [11.88410536980629, 441], [12.030822720050812, 458], [12.177540070295334, 446], [12.324257420539857, 445], [12.470974770784379, 416], [12.6176921210289, 377], [12.764409471273423, 330], [12.911126821517945, 290], [13.057844171762467, 239], [13.204561522006989, 194], [13.35127887225151, 158], [13.497996222496033, 129], [13.644713572740555, 98], [13.791430922985077, 68], [13.938148273229599, 44], [14.084865623474121, 29], [14.231582973718643, 9], [14.378300323963165, 3], [14.525017674207687, 1], [14.67173502445221, 0]]]], "errors": [], "name": "dummy_random_action", "runner": "constant", "iterations_count": 4000, "output_errors": [], "pos": "0", "load_duration": 14.384053945541382, "sla_success": true, "met": "dummy_random_action", "atomic": {"pie": [["action_0", 1.3033323738574982]], "iter": [["action_0", [[1, 1.528344988822937], [6, 1.1710705161094666], [10, 1.5105934739112854], [14, 1.2367820143699646], [18, 1.139631748199463], [22, 1.4287272691726685], [26, 1.31586754322052], [30, 1.6430618166923523], [34, 1.2955219745635986], [38, 1.7780580520629883], [42, 1.0484668016433716], [46, 1.581400454044342], [50, 1.5564952492713928], [54, 1.3626939058303833], [58, 1.1245589852333069], [62, 1.0720799565315247], [66, 1.1719802618026733], [70, 1.4362015128135681], [74, 1.1623042821884155], [78, 1.4076845049858093], [82, 1.1026142239570618], [86, 1.5905172228813171], [90, 0.9548453688621521], [94, 0.922010064125061], [98, 0.9360721707344055], [102, 1.2523077130317688], [106, 0.9909319877624512], [110, 1.4395622611045837], [114, 1.3773374557495117], [118, 1.1212947964668274], [122, 1.3661310076713562], [126, 1.1275747418403625], [130, 1.1616077423095703], [134, 1.5559994578361511], [138, 1.5941256880760193], [142, 1.6758315563201904], [146, 0.8886827230453491], [150, 1.4983195662498474], [154, 1.5914130210876465], [158, 1.2058930397033691], [162, 1.5047270059585571], [166, 1.1999659538269043], [170, 1.2636487483978271], [174, 1.3218882083892822], [178, 1.4270387291908264], [182, 0.9147539734840393], [186, 1.4773005247116089], [190, 1.5367684960365295], [194, 1.6449730396270752], [198, 1.3569660186767578], [202, 1.0142502784729004], [206, 1.4010414481163025], [210, 1.0330747961997986], [214, 1.4047790169715881], [218, 1.2228692770004272], [222, 1.8242325186729431], [226, 1.550820529460907], [230, 1.5167624950408936], [234, 1.1555574536323547], [238, 1.395420491695404], [242, 0.7909630537033081], [246, 1.310586392879486], [250, 1.3655467629432678], [254, 1.681522250175476], [258, 1.115448236465454], [262, 1.223080039024353], [266, 1.2818289995193481], [270, 1.3723196983337402], [274, 1.184043049812317], [278, 1.5724356770515442], [282, 1.3516969680786133], [286, 1.3559062480926514], [290, 1.3303958177566528], [294, 1.1726819276809692], [298, 1.0472480654716492], [302, 1.6872453689575195], [306, 1.7163912653923035], [310, 0.9559915661811829], [314, 1.1783424019813538], [318, 1.1236507892608643], [322, 1.2463030219078064], [326, 1.441895067691803], [330, 1.3877117037773132], [334, 1.0797280669212341], [338, 1.382855474948883], [342, 1.2610187530517578], [346, 1.3278167247772217], [350, 1.3401859402656555], [354, 1.4856787323951721], [358, 1.3022637367248535], [362, 1.3338218927383423], [366, 1.0220715403556824], [370, 1.3842884302139282], [374, 1.1141203045845032], [378, 1.648785412311554], [382, 1.2553025484085083], [386, 1.528717041015625], [390, 1.289838969707489], [394, 1.4456849694252014], [398, 1.5214235186576843], [402, 1.4121858477592468], [406, 1.3243795037269592], [410, 1.3981633186340332], [414, 0.948881208896637], [418, 1.5660942792892456], [422, 1.0726434588432312], [426, 1.394842505455017], [430, 1.1634922623634338], [434, 1.4001191854476929], [438, 1.0929266810417175], [442, 1.2566369771957397], [446, 1.490871548652649], [450, 0.8177882432937622], [454, 1.3381898403167725], [458, 1.1064322590827942], [462, 1.212451994419098], [466, 1.4956275820732117], [470, 0.9761499166488647], [474, 1.4445540308952332], [478, 1.8641377687454224], [482, 1.1631897687911987], [486, 1.5605090856552124], [490, 1.4175767302513123], [494, 0.8337687253952026], [498, 1.755377173423767], [502, 1.098714530467987], [506, 1.267990529537201], [510, 1.3942013382911682], [514, 1.547996997833252], [518, 1.1244201064109802], [522, 1.0551635026931763], [526, 1.303496241569519], [530, 1.2202157378196716], [534, 1.6974159479141235], [538, 1.445501685142517], [542, 1.15103018283844], [546, 1.3910862803459167], [550, 1.4151685237884521], [554, 1.2187529802322388], [558, 1.5671240091323853], [562, 1.5602315664291382], [566, 1.131988763809204], [570, 1.3581002354621887], [574, 0.7991307973861694], [578, 1.3348572254180908], [582, 1.094324767589569], [586, 1.1407285332679749], [590, 1.7590122818946838], [594, 1.336321771144867], [598, 1.7140392661094666], [602, 1.507445514202118], [606, 1.292904257774353], [610, 0.5631537437438965], [614, 1.6189182996749878], [618, 1.4062460064888], [622, 1.3287750482559204], [626, 1.3847350478172302], [630, 1.1704291701316833], [634, 1.088074505329132], [638, 1.5777009725570679], [642, 1.3955622911453247], [646, 1.6163270473480225], [650, 1.4134105443954468], [654, 1.3890434503555298], [658, 1.6574888229370117], [662, 1.46660977602005], [666, 1.480851948261261], [670, 0.9704082608222961], [674, 1.5238230228424072], [678, 1.5458077192306519], [682, 1.7438037991523743], [686, 1.6677562594413757], [690, 1.1929262280464172], [694, 1.5142427682876587], [698, 0.8410422801971436], [702, 1.183455765247345], [706, 1.533987820148468], [710, 1.268246054649353], [714, 1.2416094541549683], [718, 1.4885002374649048], [722, 1.2279272675514221], [726, 1.373672902584076], [730, 1.0423744916915894], [734, 1.1092846989631653], [738, 1.5543384552001953], [742, 1.290723741054535], [746, 1.6076247692108154], [750, 1.4138817191123962], [754, 0.9266875386238098], [758, 1.2411362528800964], [762, 1.0050852298736572], [766, 1.109893023967743], [770, 1.5466932654380798], [774, 1.269051730632782], [778, 1.2532919645309448], [782, 1.352541744709015], [786, 1.724301040172577], [790, 0.8415111899375916], [794, 1.3735522031784058], [798, 1.4988769888877869], [802, 1.097927451133728], [806, 1.3801619410514832], [810, 1.2451822757720947], [814, 1.495872974395752], [818, 1.5344434976577759], [822, 1.2522786855697632], [826, 0.9765715003013611], [830, 1.202161967754364], [834, 1.3417210578918457], [838, 1.0620327591896057], [842, 1.2531700134277344], [846, 1.1876097321510315], [850, 1.1115440726280212], [854, 1.3843374848365784], [858, 0.9461899995803833], [862, 1.47907954454422], [866, 1.4286875128746033], [870, 1.1785770654678345], [874, 1.3514734506607056], [878, 1.0814585089683533], [882, 1.7695462703704834], [886, 1.252264142036438], [890, 1.0958632826805115], [894, 1.0863624811172485], [898, 1.4275760650634766], [902, 1.1178900003433228], [906, 1.3627264499664307], [910, 1.3393350839614868], [914, 1.491730511188507], [918, 1.5256866812705994], [922, 1.3273633122444153], [926, 1.1999757289886475], [930, 1.4305787682533264], [934, 1.0310769081115723], [938, 1.2842687368392944], [942, 0.9358802437782288], [946, 1.0217719078063965], [950, 1.4327040314674377], [954, 1.1176440715789795], [958, 1.2577105164527893], [962, 1.1440572142601013], [966, 1.374114215373993], [970, 1.3300307393074036], [974, 1.5380169749259949], [978, 1.539809763431549], [982, 1.10788494348526], [986, 1.2464758157730103], [990, 1.1844217777252197], [994, 1.6580716967582703], [998, 1.0971977710723877], [1002, 1.1437382698059082], [1006, 1.2585185170173645], [1010, 1.2308087348937988], [1014, 1.2317687273025513], [1018, 1.6790121793746948], [1022, 1.782488226890564], [1026, 1.1278702020645142], [1030, 1.1074920296669006], [1034, 1.424390971660614], [1038, 1.1566177606582642], [1042, 1.6916548013687134], [1046, 1.230991542339325], [1050, 1.2915595769882202], [1054, 1.4239464402198792], [1058, 0.9671483039855957], [1062, 1.029041826725006], [1066, 1.2448573112487793], [1070, 1.4971888065338135], [1074, 1.4464012384414673], [1078, 1.2923200130462646], [1082, 1.2687397599220276], [1086, 1.2927678227424622], [1090, 1.1174102425575256], [1094, 1.1266482472419739], [1098, 1.6989887356758118], [1102, 1.3818224668502808], [1106, 1.4418404698371887], [1110, 1.4638105630874634], [1114, 1.1744815111160278], [1118, 1.752832293510437], [1122, 1.5684769749641418], [1126, 1.089477777481079], [1130, 0.7932245135307312], [1134, 1.370115041732788], [1138, 1.5523934960365295], [1142, 1.4337884783744812], [1146, 1.490763008594513], [1150, 1.0281832814216614], [1154, 1.254436194896698], [1158, 1.351440191268921], [1162, 1.143986999988556], [1166, 1.1475474834442139], [1170, 1.4365119934082031], [1174, 1.1525092720985413], [1178, 1.0867271423339844], [1182, 1.4322097897529602], [1186, 1.6566652655601501], [1190, 1.1841868162155151], [1194, 1.3618077635765076], [1198, 1.3377517461776733], [1202, 1.5932527780532837], [1206, 1.004721999168396], [1210, 1.5077111721038818], [1214, 1.3337510824203491], [1218, 1.3040599822998047], [1222, 1.912146508693695], [1226, 1.4745664596557617], [1230, 1.8611754775047302], [1234, 1.7087007761001587], [1238, 1.5244969725608826], [1242, 1.3196510076522827], [1246, 1.4022237658500671], [1250, 1.3691197633743286], [1254, 1.6775607466697693], [1258, 1.107515573501587], [1262, 1.786706566810608], [1266, 1.5123581886291504], [1270, 0.9401215314865112], [1274, 1.1582022905349731], [1278, 1.0959669947624207], [1282, 1.7730827927589417], [1286, 1.1243274807929993], [1290, 1.2705217599868774], [1294, 1.3317342400550842], [1298, 1.2969645261764526], [1302, 1.4096402525901794], [1306, 1.4521209001541138], [1310, 1.1180408000946045], [1314, 1.356431782245636], [1318, 1.490440547466278], [1322, 0.7920590043067932], [1326, 1.3307451009750366], [1330, 1.2433719635009766], [1334, 1.363375723361969], [1338, 1.7506219744682312], [1342, 0.9122389554977417], [1346, 1.3725027441978455], [1350, 1.4041902422904968], [1354, 1.2369717359542847], [1358, 1.2657204866409302], [1362, 1.0203819870948792], [1366, 1.296919047832489], [1370, 1.4135052561759949], [1374, 1.0148019790649414], [1378, 1.430563747882843], [1382, 1.3692779541015625], [1386, 1.4740927815437317], [1390, 0.9945974946022034], [1394, 1.0762292742729187], [1398, 1.5510604977607727], [1402, 1.663781464099884], [1406, 1.7891417741775513], [1410, 1.511222004890442], [1414, 1.05034601688385], [1418, 1.5836949944496155], [1422, 1.0778139233589172], [1426, 1.1084706783294678], [1430, 1.3332666754722595], [1434, 1.3835909366607666], [1438, 1.2507749795913696], [1442, 1.1675822138786316], [1446, 1.5183624625205994], [1450, 1.468757688999176], [1454, 1.0508825182914734], [1458, 1.1889912486076355], [1462, 0.9160169959068298], [1466, 1.5711823105812073], [1470, 1.4554463624954224], [1474, 0.8501340746879578], [1478, 0.9904782176017761], [1482, 1.3794629573822021], [1486, 1.2823620438575745], [1490, 0.8873880505561829], [1494, 1.371680200099945], [1498, 1.4082240462303162], [1502, 1.1585657596588135], [1506, 1.6078540086746216], [1510, 1.2243812680244446], [1514, 1.414889931678772], [1518, 1.1260865926742554], [1522, 1.6019391417503357], [1526, 1.4970009922981262], [1530, 1.537910521030426], [1534, 1.5894437432289124], [1538, 1.1454188227653503], [1542, 0.9241594672203064], [1546, 1.491578757762909], [1550, 1.3688821196556091], [1554, 0.8665074706077576], [1558, 1.3319787979125977], [1562, 1.142263650894165], [1566, 1.0255175232887268], [1570, 0.9318792223930359], [1574, 1.648443579673767], [1578, 1.4478964805603027], [1582, 1.161485493183136], [1586, 1.3243656158447266], [1590, 1.6215280294418335], [1594, 1.3107792735099792], [1598, 1.3475494980812073], [1602, 1.3784347772598267], [1606, 1.4114107489585876], [1610, 1.0264832377433777], [1614, 1.4057189226150513], [1618, 1.5644872188568115], [1622, 1.2381548881530762], [1626, 0.8485737442970276], [1630, 1.0232722759246826], [1634, 0.8540732264518738], [1638, 1.571662724018097], [1642, 1.0517725944519043], [1646, 1.2707899808883667], [1650, 1.4293055534362793], [1654, 1.0762397050857544], [1658, 1.713131070137024], [1662, 1.0987820625305176], [1666, 1.19036203622818], [1670, 0.9864877462387085], [1674, 1.1081483364105225], [1678, 1.1554282307624817], [1682, 1.46885347366333], [1686, 1.3833907842636108], [1690, 1.7192252278327942], [1694, 1.628028690814972], [1698, 1.1560315489768982], [1702, 1.0485453009605408], [1706, 1.1024888157844543], [1710, 1.3867415189743042], [1714, 1.1308837532997131], [1718, 0.9861632585525513], [1722, 1.0812854766845703], [1726, 0.9784991145133972], [1730, 1.2500284910202026], [1734, 1.4335799813270569], [1738, 0.8818342089653015], [1742, 1.300544559955597], [1746, 0.7648329734802246], [1750, 1.4547150135040283], [1754, 0.6393924951553345], [1758, 1.0979534983634949], [1762, 1.4094344973564148], [1766, 1.1380162835121155], [1770, 1.358758270740509], [1774, 1.4454232454299927], [1778, 1.7516345381736755], [1782, 1.371798038482666], [1786, 1.015965461730957], [1790, 1.1044727563858032], [1794, 1.1537774205207825], [1798, 1.1605022549629211], [1802, 1.592636525630951], [1806, 1.5415277481079102], [1810, 1.1515042185783386], [1814, 1.7821547389030457], [1818, 1.1688777804374695], [1822, 0.7315467000007629], [1826, 1.0756497979164124], [1830, 1.595117449760437], [1834, 1.3219764828681946], [1838, 1.4191072583198547], [1842, 1.3975364565849304], [1846, 1.5015740394592285], [1850, 1.0497797727584839], [1854, 0.7951555252075195], [1858, 0.962763786315918], [1862, 1.1542302966117859], [1866, 1.327067255973816], [1870, 1.489357829093933], [1874, 1.2216482162475586], [1878, 1.6999637484550476], [1882, 1.590247094631195], [1886, 1.0487084984779358], [1890, 1.3914271593093872], [1894, 1.623894214630127], [1898, 1.231543481349945], [1902, 1.7045555710792542], [1906, 1.1097084879875183], [1910, 1.1390112042427063], [1914, 1.0552387237548828], [1918, 1.9309587478637695], [1922, 1.3823312520980835], [1926, 1.3431574702262878], [1930, 1.266893208026886], [1934, 1.1966582536697388], [1938, 1.4383022785186768], [1942, 1.2386540174484253], [1946, 1.3001757860183716], [1950, 1.35565847158432], [1954, 1.308390200138092], [1958, 1.338174283504486], [1962, 1.299731194972992], [1966, 1.3155052065849304], [1970, 1.2489655017852783], [1974, 1.5803757309913635], [1978, 1.0712189674377441], [1982, 1.515461802482605], [1986, 1.4469650387763977], [1990, 1.3555575013160706], [1994, 1.3578760027885437], [1998, 1.4166327714920044], [2002, 1.0292582511901855], [2006, 1.3980910181999207], [2010, 1.2346064448356628], [2014, 1.341067612171173], [2018, 0.780696451663971], [2022, 1.1791680455207825], [2026, 1.238113522529602], [2030, 1.360466182231903], [2034, 1.3444695472717285], [2038, 1.0519124865531921], [2042, 1.4987857341766357], [2046, 1.28313547372818], [2050, 1.3197575211524963], [2054, 1.1825562715530396], [2058, 1.4119265675544739], [2062, 1.5765491724014282], [2066, 1.5304399728775024], [2070, 1.55450040102005], [2074, 1.0343006253242493], [2078, 1.8459929823875427], [2082, 1.2736950516700745], [2086, 1.601952075958252], [2090, 1.4542612433433533], [2094, 1.1527677774429321], [2098, 1.0941258072853088], [2102, 1.1586557030677795], [2106, 1.3968904614448547], [2110, 1.246573567390442], [2114, 1.2348010540008545], [2118, 1.4096226692199707], [2122, 1.2427279949188232], [2126, 1.1840920448303223], [2130, 1.2178952097892761], [2134, 0.9351869225502014], [2138, 1.2238976955413818], [2142, 1.6279767155647278], [2146, 0.9346840977668762], [2150, 0.9839240312576294], [2154, 1.7197672724723816], [2158, 1.463491976261139], [2162, 1.2561579942703247], [2166, 1.2901610136032104], [2170, 1.427214801311493], [2174, 1.4765425324440002], [2178, 1.3974965810775757], [2182, 0.9140087366104126], [2186, 1.4042350053787231], [2190, 1.1636877655982971], [2194, 1.4551964402198792], [2198, 0.8909637331962585], [2202, 1.3971493244171143], [2206, 1.5171303153038025], [2210, 1.1140810251235962], [2214, 1.1639689803123474], [2218, 1.063459038734436], [2222, 1.4874173402786255], [2226, 1.207363486289978], [2230, 1.5281490087509155], [2234, 1.316170334815979], [2238, 1.0811805129051208], [2242, 0.6617067456245422], [2246, 1.4859917163848877], [2250, 1.0919156074523926], [2254, 0.8688709735870361], [2258, 1.2131249904632568], [2262, 1.5269170999526978], [2266, 1.3106871843338013], [2270, 1.1656975150108337], [2274, 1.480278193950653], [2278, 1.291662335395813], [2282, 1.6322047710418701], [2286, 1.4272422790527344], [2290, 1.2323198318481445], [2294, 1.4229594469070435], [2298, 1.1953662037849426], [2302, 1.5597019791603088], [2306, 1.1862791180610657], [2310, 1.1845667958259583], [2314, 1.0437989830970764], [2318, 1.603712558746338], [2322, 1.3662769794464111], [2326, 1.3793620467185974], [2330, 1.2279042601585388], [2334, 1.3240121603012085], [2338, 1.5776467323303223], [2342, 1.3930912613868713], [2346, 1.3192161321640015], [2350, 1.2469670176506042], [2354, 1.2448511719703674], [2358, 1.2313398122787476], [2362, 1.1937252283096313], [2366, 1.1753870248794556], [2370, 1.1239492297172546], [2374, 1.1047415137290955], [2378, 1.71212637424469], [2382, 1.3323814272880554], [2386, 1.1530287861824036], [2390, 1.1502559185028076], [2394, 1.2749899625778198], [2398, 1.0270342230796814], [2402, 1.1381347179412842], [2406, 1.091247022151947], [2410, 1.5555832982063293], [2414, 0.9997925162315369], [2418, 1.4640089869499207], [2422, 1.4628397226333618], [2426, 1.361926794052124], [2430, 1.2572969198226929], [2434, 1.6833595037460327], [2438, 1.2607749700546265], [2442, 1.329549252986908], [2446, 1.2751384973526], [2450, 1.3733775615692139], [2454, 1.1867780089378357], [2458, 1.3689337372779846], [2462, 1.1151049733161926], [2466, 1.4026827812194824], [2470, 1.683761477470398], [2474, 1.139693796634674], [2478, 1.6056097745895386], [2482, 1.411471426486969], [2486, 1.3049794435501099], [2490, 0.9944680333137512], [2494, 1.7654744982719421], [2498, 1.0515632629394531], [2502, 1.5332403182983398], [2506, 1.405474305152893], [2510, 1.2626010179519653], [2514, 1.3584129810333252], [2518, 1.5532681941986084], [2522, 1.32578706741333], [2526, 0.8697434663772583], [2530, 1.4778701663017273], [2534, 1.198765218257904], [2538, 1.7113680243492126], [2542, 1.6571759581565857], [2546, 1.1209641695022583], [2550, 1.222676157951355], [2554, 1.3917257189750671], [2558, 1.5236639976501465], [2562, 0.8899165391921997], [2566, 1.4318057894706726], [2570, 1.446235716342926], [2574, 1.2456242442131042], [2578, 1.3904409408569336], [2582, 1.244017481803894], [2586, 1.1655530333518982], [2590, 1.2724055051803589], [2594, 1.5597999691963196], [2598, 1.0885832905769348], [2602, 1.4521726965904236], [2606, 1.1443780064582825], [2610, 1.0584481954574585], [2614, 1.1671011447906494], [2618, 1.263543426990509], [2622, 1.0876402854919434], [2626, 1.4020429849624634], [2630, 1.1781672835350037], [2634, 1.1217573285102844], [2638, 1.5147765278816223], [2642, 1.5209172368049622], [2646, 0.9998332858085632], [2650, 1.0459005236625671], [2654, 1.4664422273635864], [2658, 1.5580514669418335], [2662, 1.4662440419197083], [2666, 1.5989105701446533], [2670, 1.3366993069648743], [2674, 1.3152817487716675], [2678, 1.1768977046012878], [2682, 1.3627827763557434], [2686, 1.1933351755142212], [2690, 0.8954424858093262], [2694, 1.3993664979934692], [2698, 1.390157699584961], [2702, 1.2797399759292603], [2706, 1.3497204780578613], [2710, 1.6882866024971008], [2714, 1.6559962630271912], [2718, 1.3865209817886353], [2722, 1.1412715315818787], [2726, 1.1140103936195374], [2730, 1.669398546218872], [2734, 1.446685791015625], [2738, 1.4825329780578613], [2742, 1.3471770286560059], [2746, 1.285114586353302], [2750, 1.4071600437164307], [2754, 1.3333022594451904], [2758, 1.1730132699012756], [2762, 0.9380954504013062], [2766, 1.4088554978370667], [2770, 1.0985825657844543], [2774, 1.521805763244629], [2778, 1.1847924590110779], [2782, 1.1751911640167236], [2786, 1.7438549995422363], [2790, 1.5031527280807495], [2794, 1.300106942653656], [2798, 1.1604944467544556], [2802, 0.9205474853515625], [2806, 1.0962124466896057], [2810, 1.245022714138031], [2814, 1.1394742727279663], [2818, 1.4631618857383728], [2822, 1.1073023080825806], [2826, 1.539609968662262], [2830, 1.508615255355835], [2834, 0.764070987701416], [2838, 1.3054290413856506], [2842, 1.5722708106040955], [2846, 1.1283230185508728], [2850, 1.357824444770813], [2854, 1.6489585041999817], [2858, 1.6051040291786194], [2862, 1.216755747795105], [2866, 1.2278042435646057], [2870, 1.6677078008651733], [2874, 1.1477354764938354], [2878, 1.2765169143676758], [2882, 1.0616020560264587], [2886, 1.7497264742851257], [2890, 1.0967609882354736], [2894, 1.0256889462471008], [2898, 1.386200487613678], [2902, 1.0088250041007996], [2906, 0.7394444346427917], [2910, 1.7663519382476807], [2914, 1.3113871812820435], [2918, 1.3819447755813599], [2922, 1.2509937286376953], [2926, 1.5419665575027466], [2930, 1.0610759854316711], [2934, 1.3082920908927917], [2938, 1.3837938904762268], [2942, 1.5138807892799377], [2946, 1.0804072618484497], [2950, 1.2073813676834106], [2954, 1.649157166481018], [2958, 1.2998127937316895], [2962, 1.5384499430656433], [2966, 0.96016526222229], [2970, 1.0108191967010498], [2974, 1.1679487824440002], [2978, 1.3413195610046387], [2982, 1.2453620433807373], [2986, 1.314480483531952], [2990, 1.141604721546173], [2994, 1.0626348853111267], [2998, 1.0544467568397522], [3002, 1.227374017238617], [3006, 1.2201423048973083], [3010, 0.9284377694129944], [3014, 1.3363885283470154], [3018, 1.2653715014457703], [3022, 1.4810945391654968], [3026, 1.0778436660766602], [3030, 1.2777458429336548], [3034, 0.9015027284622192], [3038, 1.6842422485351562], [3042, 1.43108731508255], [3046, 1.1341330409049988], [3050, 1.1307680010795593], [3054, 1.2011319398880005], [3058, 1.4582582116127014], [3062, 1.3389582633972168], [3066, 1.2217434644699097], [3070, 1.387831211090088], [3074, 1.2625905275344849], [3078, 1.4607722163200378], [3082, 1.1720752120018005], [3086, 1.4984387755393982], [3090, 0.751501202583313], [3094, 1.1166630387306213], [3098, 1.7180867195129395], [3102, 1.2012103199958801], [3106, 0.8796872496604919], [3110, 1.0725144743919373], [3114, 1.3219695091247559], [3118, 1.239766538143158], [3122, 1.407532513141632], [3126, 1.6023200154304504], [3130, 1.0923047065734863], [3134, 1.648813009262085], [3138, 0.9050849080085754], [3142, 1.1531798839569092], [3146, 1.3875610828399658], [3150, 1.5148202180862427], [3154, 1.295126497745514], [3158, 1.363135278224945], [3162, 1.4927548170089722], [3166, 1.120993971824646], [3170, 1.670727789402008], [3174, 1.3790454864501953], [3178, 1.34272301197052], [3182, 1.2065837383270264], [3186, 1.3007607460021973], [3190, 1.2994679808616638], [3194, 1.2150694727897644], [3198, 1.6808065176010132], [3202, 1.523342490196228], [3206, 1.3848730325698853], [3210, 1.19302099943161], [3214, 1.0159739255905151], [3218, 1.299961805343628], [3222, 1.3833712339401245], [3226, 1.473372757434845], [3230, 1.641423523426056], [3234, 1.051536738872528], [3238, 1.1218872666358948], [3242, 1.5182847380638123], [3246, 1.242520272731781], [3250, 1.617335557937622], [3254, 1.3850802779197693], [3258, 1.665400505065918], [3262, 0.8866638541221619], [3266, 1.2126399278640747], [3270, 1.5385470390319824], [3274, 1.4777575135231018], [3278, 1.330369770526886], [3282, 1.3715607523918152], [3286, 1.5164631009101868], [3290, 1.5565137267112732], [3294, 1.6070102453231812], [3298, 1.4288150668144226], [3302, 1.437001883983612], [3306, 1.4065235257148743], [3310, 1.2133125066757202], [3314, 1.2324751615524292], [3318, 1.2328975200653076], [3322, 1.6762100458145142], [3326, 1.35675448179245], [3330, 1.5011123418807983], [3334, 1.3472301959991455], [3338, 1.4858155846595764], [3342, 1.3658882975578308], [3346, 1.0597297549247742], [3350, 1.3377004265785217], [3354, 1.4268567562103271], [3358, 0.8880749940872192], [3362, 1.496754229068756], [3366, 1.5020555257797241], [3370, 1.4673247933387756], [3374, 1.2123382091522217], [3378, 1.0594320893287659], [3382, 0.7821070551872253], [3386, 1.4606378674507141], [3390, 1.5573164820671082], [3394, 1.320036232471466], [3398, 1.11611670255661], [3402, 1.102149486541748], [3406, 0.8607090711593628], [3410, 1.2819477915763855], [3414, 1.1635478138923645], [3418, 0.9219050407409668], [3422, 1.872950255870819], [3426, 1.6172194480895996], [3430, 1.3194869756698608], [3434, 1.5871996879577637], [3438, 1.4674911499023438], [3442, 1.533280074596405], [3446, 1.287049949169159], [3450, 1.3127763271331787], [3454, 0.9983612298965454], [3458, 1.4630762338638306], [3462, 1.063638985157013], [3466, 1.5667826533317566], [3470, 1.3022525310516357], [3474, 1.132402777671814], [3478, 0.9210612773895264], [3482, 1.5763314962387085], [3486, 1.3175607323646545], [3490, 1.4002862572669983], [3494, 1.7203457355499268], [3498, 1.49464750289917], [3502, 0.9701955914497375], [3506, 0.7182855010032654], [3510, 1.4841228127479553], [3514, 1.137376070022583], [3518, 1.2723699808120728], [3522, 1.187332272529602], [3526, 1.554577887058258], [3530, 1.28212571144104], [3534, 1.1740000247955322], [3538, 1.603247344493866], [3542, 1.0816170573234558], [3546, 1.3548474311828613], [3550, 1.5541720390319824], [3554, 0.9143935441970825], [3558, 1.2165834307670593], [3562, 1.1554880142211914], [3566, 1.0631194710731506], [3570, 1.4192349910736084], [3574, 1.3680720329284668], [3578, 1.3593007326126099], [3582, 1.2716687321662903], [3586, 1.4519979357719421], [3590, 1.5050870180130005], [3594, 0.9367930889129639], [3598, 1.3940501809120178], [3602, 1.307799518108368], [3606, 1.4119112491607666], [3610, 1.1433310508728027], [3614, 1.1521714329719543], [3618, 1.0373517870903015], [3622, 1.4018362164497375], [3626, 1.2932802438735962], [3630, 1.1028199791908264], [3634, 1.3237770795822144], [3638, 1.261675775051117], [3642, 1.4275943040847778], [3646, 1.440923810005188], [3650, 1.4714576601982117], [3654, 0.7231200337409973], [3658, 1.2989047765731812], [3662, 0.9438753128051758], [3666, 0.915340781211853], [3670, 1.4095289707183838], [3674, 1.3311004638671875], [3678, 1.5501102209091187], [3682, 1.3948925137519836], [3686, 1.6258825063705444], [3690, 1.2432782649993896], [3694, 1.0630097389221191], [3698, 1.2392846941947937], [3702, 1.4466949701309204], [3706, 1.343701183795929], [3710, 1.193811297416687], [3714, 1.0396735668182373], [3718, 1.0230839848518372], [3722, 1.2787179946899414], [3726, 0.9289057850837708], [3730, 1.4373039603233337], [3734, 1.4035502076148987], [3738, 1.5576225519180298], [3742, 1.4677429795265198], [3746, 1.2302470207214355], [3750, 1.267029047012329], [3754, 0.9785182476043701], [3758, 0.9824162721633911], [3762, 1.4393340349197388], [3766, 0.860455334186554], [3770, 1.4079022407531738], [3774, 1.4944247007369995], [3778, 1.1911622881889343], [3782, 0.8063383102416992], [3786, 1.1887751817703247], [3790, 1.2237812280654907], [3794, 1.5695719718933105], [3798, 1.2374860644340515], [3802, 1.3386948108673096], [3806, 1.6210077404975891], [3810, 1.4945786595344543], [3814, 1.1991369724273682], [3818, 1.161222755908966], [3822, 1.5141969919204712], [3826, 1.413230061531067], [3830, 1.3661847114562988], [3834, 1.5702357292175293], [3838, 1.4061485528945923], [3842, 1.1038427352905273], [3846, 1.3912837505340576], [3850, 0.9348240494728088], [3854, 0.9464035034179688], [3858, 1.686303436756134], [3862, 1.4994654655456543], [3866, 1.4019622206687927], [3870, 1.1333390474319458], [3874, 1.5484415292739868], [3878, 1.1539864540100098], [3882, 1.142001450061798], [3886, 1.005671203136444], [3890, 1.6017517447471619], [3894, 0.6088977456092834], [3898, 1.5346364378929138], [3902, 1.0835776925086975], [3906, 0.8363957405090332], [3910, 1.3867236971855164], [3914, 1.471113681793213], [3918, 1.2530322670936584], [3922, 1.6388177275657654], [3926, 1.2887099385261536], [3930, 1.5059802532196045], [3934, 1.2236634492874146], [3938, 1.498742163181305], [3942, 1.416477084159851], [3946, 1.0381997227668762], [3950, 1.2501429915428162], [3954, 0.9557585120201111], [3958, 1.4697780013084412], [3962, 1.0731500387191772], [3966, 1.4624555110931396], [3970, 1.2043789625167847], [3974, 1.2652568221092224], [3978, 1.3055195212364197], [3982, 0.9434823989868164], [3986, 1.2597622871398926], [3990, 1.3626540303230286], [3994, 1.5217465162277222], [4000, 1.5883342623710632]]]], "histogram": {"data": [[{"disabled": 0, "values": [{"y": 60, "x": 0.5282968580722809}, {"y": 68, "x": 0.5531886219978333}, {"y": 70, "x": 0.5780803859233856}, {"y": 73, "x": 0.602972149848938}, {"y": 54, "x": 0.6278639137744904}, {"y": 63, "x": 0.6527556777000427}, {"y": 73, "x": 0.6776474416255951}, {"y": 49, "x": 0.7025392055511475}, {"y": 54, "x": 0.7274309694766998}, {"y": 74, "x": 0.7523227334022522}, {"y": 73, "x": 0.7772144973278046}, {"y": 62, "x": 0.8021062612533569}, {"y": 60, "x": 0.8269980251789093}, {"y": 66, "x": 0.8518897891044617}, {"y": 69, "x": 0.876781553030014}, {"y": 58, "x": 0.9016733169555664}, {"y": 68, "x": 0.9265650808811188}, {"y": 61, "x": 0.9514568448066711}, {"y": 62, "x": 0.9763486087322235}, {"y": 58, "x": 1.0012403726577759}, {"y": 12, "x": 1.0261321365833282}, {"y": 23, "x": 1.0510239005088806}, {"y": 74, "x": 1.075915664434433}, {"y": 60, "x": 1.1008074283599854}, {"y": 58, "x": 1.1256991922855377}, {"y": 71, "x": 1.15059095621109}, {"y": 62, "x": 1.1754827201366425}, {"y": 60, "x": 1.2003744840621948}, {"y": 71, "x": 1.2252662479877472}, {"y": 64, "x": 1.2501580119132996}, {"y": 60, "x": 1.275049775838852}, {"y": 86, "x": 1.2999415397644043}, {"y": 64, "x": 1.3248333036899567}, {"y": 55, "x": 1.349725067615509}, {"y": 54, "x": 1.3746168315410614}, {"y": 58, "x": 1.3995085954666138}, {"y": 67, "x": 1.4244003593921661}, {"y": 56, "x": 1.4492921233177185}, {"y": 51, "x": 1.4741838872432709}, {"y": 75, "x": 1.4990756511688232}, {"y": 88, "x": 1.5239674150943756}, {"y": 75, "x": 1.548859179019928}, {"y": 68, "x": 1.5737509429454803}, {"y": 46, "x": 1.5986427068710327}, {"y": 75, "x": 1.623534470796585}, {"y": 81, "x": 1.6484262347221375}, {"y": 65, "x": 1.6733179986476898}, {"y": 51, "x": 1.6982097625732422}, {"y": 59, "x": 1.7231015264987946}, {"y": 67, "x": 1.747993290424347}, {"y": 59, "x": 1.7728850543498993}, {"y": 44, "x": 1.7977768182754517}, {"y": 65, "x": 1.822668582201004}, {"y": 78, "x": 1.8475603461265564}, {"y": 53, "x": 1.8724521100521088}, {"y": 53, "x": 1.8973438739776611}, {"y": 77, "x": 1.9222356379032135}, {"y": 64, "x": 1.9471274018287659}, {"y": 72, "x": 1.9720191657543182}, {"y": 47, "x": 1.9969109296798706}, {"y": 83, "x": 2.021802693605423}, {"y": 66, "x": 2.0466944575309753}, {"y": 69, "x": 2.0715862214565277}, {"y": 39, "x": 2.09647798538208}], "key": "action_0", "view": "Square Root Choice"}], [{"disabled": 0, "values": [{"y": 320, "x": 0.625949162703294}, {"y": 306, "x": 0.7484932312598596}, {"y": 322, "x": 0.8710372998164251}, {"y": 310, "x": 0.9935813683729906}, {"y": 220, "x": 1.116125436929556}, {"y": 326, "x": 1.2386695054861216}, {"y": 319, "x": 1.361213574042687}, {"y": 283, "x": 1.4837576425992527}, {"y": 346, "x": 1.606301711155818}, {"y": 327, "x": 1.7288457797123835}, {"y": 309, "x": 1.851389848268949}, {"y": 312, "x": 1.9739339168255146}, {"y": 300, "x": 2.09647798538208}], "key": "action_0", "view": "Sturges Formula"}], [{"disabled": 0, "values": [{"y": 128, "x": 0.5531886219978333}, {"y": 143, "x": 0.602972149848938}, {"y": 117, "x": 0.6527556777000427}, {"y": 122, "x": 0.7025392055511475}, {"y": 128, "x": 0.7523227334022522}, {"y": 135, "x": 0.8021062612533569}, {"y": 126, "x": 0.8518897891044617}, {"y": 127, "x": 0.9016733169555664}, {"y": 129, "x": 0.9514568448066711}, {"y": 120, "x": 1.0012403726577759}, {"y": 35, "x": 1.0510239005088806}, {"y": 134, "x": 1.1008074283599854}, {"y": 129, "x": 1.15059095621109}, {"y": 122, "x": 1.2003744840621948}, {"y": 135, "x": 1.2501580119132996}, {"y": 146, "x": 1.2999415397644043}, {"y": 119, "x": 1.349725067615509}, {"y": 112, "x": 1.3995085954666138}, {"y": 123, "x": 1.4492921233177185}, {"y": 126, "x": 1.4990756511688232}, {"y": 163, "x": 1.548859179019928}, {"y": 114, "x": 1.5986427068710327}, {"y": 156, "x": 1.6484262347221375}, {"y": 116, "x": 1.6982097625732422}, {"y": 126, "x": 1.747993290424347}, {"y": 103, "x": 1.7977768182754517}, {"y": 143, "x": 1.8475603461265564}, {"y": 106, "x": 1.8973438739776611}, {"y": 141, "x": 1.9471274018287659}, {"y": 119, "x": 1.9969109296798706}, {"y": 149, "x": 2.0466944575309753}, {"y": 108, "x": 2.09647798538208}], "key": "action_0", "view": "Rice Rule"}]], "views": [{"id": 0, "name": "Square Root Choice"}, {"id": 1, "name": "Sturges Formula"}, {"id": 2, "name": "Rice Rule"}]}}, "iterations": {"pie": [["success", 4000], ["errors", 0]], "iter": [["duration", [[1, 1.5284759402275085], [6, 1.1711328029632568], [10, 1.5106910467147827], [14, 1.2368363738059998], [18, 1.1396832466125488], [22, 1.4287697672843933], [26, 1.3159582018852234], [30, 1.64309424161911], [34, 1.2955568432807922], [38, 1.7780979871749878], [42, 1.0485020279884338], [46, 1.5814323425292969], [50, 1.5565259456634521], [54, 1.3628332018852234], [58, 1.124594807624817], [62, 1.0721175074577332], [66, 1.1720187664031982], [70, 1.436269998550415], [74, 1.1623402833938599], [78, 1.4077230095863342], [82, 1.1026654839515686], [86, 1.5905512571334839], [90, 0.9550068974494934], [94, 0.9220452308654785], [98, 0.9361079335212708], [102, 1.2523375749588013], [106, 0.9909690022468567], [110, 1.4396010041236877], [114, 1.377369225025177], [118, 1.1213327050209045], [122, 1.366163969039917], [126, 1.1276087164878845], [130, 1.1616598963737488], [134, 1.5560322403907776], [138, 1.5941914319992065], [142, 1.675866723060608], [146, 0.8887182474136353], [150, 1.4984237551689148], [154, 1.5914437770843506], [158, 1.205926537513733], [162, 1.5048519968986511], [166, 1.200000286102295], [170, 1.2637014985084534], [174, 1.321922779083252], [178, 1.4270750880241394], [182, 0.914790689945221], [186, 1.4773353338241577], [190, 1.53680419921875], [194, 1.6451442241668701], [198, 1.3570025563240051], [202, 1.0142841935157776], [206, 1.4011164903640747], [210, 1.033109724521637], [214, 1.4048179984092712], [218, 1.2229032516479492], [222, 1.8242692351341248], [226, 1.5508556962013245], [230, 1.5167972445487976], [234, 1.1555902361869812], [238, 1.3954517245292664], [242, 0.7909972667694092], [246, 1.3106237649917603], [250, 1.3656150102615356], [254, 1.6815530061721802], [258, 1.1154894828796387], [262, 1.2231127619743347], [266, 1.2818607687950134], [270, 1.3723512291908264], [274, 1.184075951576233], [278, 1.5724694728851318], [282, 1.3517298102378845], [286, 1.3559565544128418], [290, 1.330431044101715], [294, 1.1727192997932434], [298, 1.0472915172576904], [302, 1.6872913241386414], [306, 1.7164285778999329], [310, 0.9560267329216003], [314, 1.1783745884895325], [318, 1.123688519001007], [322, 1.2463380098342896], [326, 1.4419370293617249], [330, 1.3877485394477844], [334, 1.0797672867774963], [338, 1.3828920722007751], [342, 1.2610549926757812], [346, 1.3278546929359436], [350, 1.3402187824249268], [354, 1.4857109785079956], [358, 1.3022972345352173], [362, 1.3339704871177673], [366, 1.022480547428131], [370, 1.3843215107917786], [374, 1.1141862273216248], [378, 1.648826003074646], [382, 1.2553364634513855], [386, 1.5287549495697021], [390, 1.289869248867035], [394, 1.4457242488861084], [398, 1.5214564204216003], [402, 1.4122247695922852], [406, 1.324421465396881], [410, 1.3982051014900208], [414, 0.9489164352416992], [418, 1.5661492347717285], [422, 1.072674036026001], [426, 1.39487624168396], [430, 1.163527488708496], [434, 1.4001507759094238], [438, 1.0929622650146484], [442, 1.2566727995872498], [446, 1.4909085035324097], [450, 0.8178222179412842], [454, 1.3382227420806885], [458, 1.1064721941947937], [462, 1.212487280368805], [466, 1.4956701397895813], [470, 0.9761999845504761], [474, 1.4446532726287842], [478, 1.8642184138298035], [482, 1.1632311940193176], [486, 1.56054025888443], [490, 1.4176197052001953], [494, 0.8338058590888977], [498, 1.7554087042808533], [502, 1.0987728238105774], [506, 1.268054485321045], [510, 1.394233524799347], [514, 1.5488426685333252], [518, 1.124589443206787], [522, 1.0551952123641968], [526, 1.304233968257904], [530, 1.2202500104904175], [534, 1.6981340646743774], [538, 1.445545494556427], [542, 1.1510657668113708], [546, 1.391130268573761], [550, 1.4152010083198547], [554, 1.218790352344513], [558, 1.5677927732467651], [562, 1.5602715015411377], [566, 1.1328559517860413], [570, 1.3581503033638], [574, 0.7991662621498108], [578, 1.334904432296753], [582, 1.0943612456321716], [586, 1.1407690644264221], [590, 1.759170949459076], [594, 1.3363524675369263], [598, 1.7141820192337036], [602, 1.5076257586479187], [606, 1.2929372787475586], [610, 0.5631882548332214], [614, 1.619037926197052], [618, 1.406275987625122], [622, 1.328821063041687], [626, 1.384772777557373], [630, 1.1705565452575684], [634, 1.088108777999878], [638, 1.5777299404144287], [642, 1.395601511001587], [646, 1.6164037585258484], [650, 1.4134437441825867], [654, 1.3890835046768188], [658, 1.6576061844825745], [662, 1.4667718410491943], [666, 1.4809389114379883], [670, 0.9704397320747375], [674, 1.5238741040229797], [678, 1.5458378195762634], [682, 1.7438592314720154], [686, 1.667786955833435], [690, 1.1930937767028809], [694, 1.5142750144004822], [698, 0.8411102294921875], [702, 1.183531939983368], [706, 1.5340957641601562], [710, 1.268280565738678], [714, 1.2416380047798157], [718, 1.4885350465774536], [722, 1.2280057072639465], [726, 1.3737130761146545], [730, 1.0424720644950867], [734, 1.1093268394470215], [738, 1.5544275641441345], [742, 1.2908549904823303], [746, 1.607682466506958], [750, 1.4139177203178406], [754, 0.926723301410675], [758, 1.2411670088768005], [762, 1.0051169991493225], [766, 1.1099307537078857], [770, 1.5467302799224854], [774, 1.2691612839698792], [778, 1.2533243298530579], [782, 1.352598488330841], [786, 1.7243357300758362], [790, 0.8415655493736267], [794, 1.3735909461975098], [798, 1.499023973941803], [802, 1.0979567766189575], [806, 1.3801999688148499], [810, 1.245217740535736], [814, 1.4959054589271545], [818, 1.534488320350647], [822, 1.2523147463798523], [826, 0.9766080379486084], [830, 1.2022005319595337], [834, 1.3417572379112244], [838, 1.0620679259300232], [842, 1.253202736377716], [846, 1.1877449750900269], [850, 1.1115752458572388], [854, 1.3843649625778198], [858, 0.9463173151016235], [862, 1.4791298508644104], [866, 1.4287285804748535], [870, 1.1786115169525146], [874, 1.3515563011169434], [878, 1.0815002918243408], [882, 1.7695804834365845], [886, 1.2522937655448914], [890, 1.0958927869796753], [894, 1.0863949656486511], [898, 1.427672266960144], [902, 1.1179265975952148], [906, 1.3627687692642212], [910, 1.3393664360046387], [914, 1.4917634725570679], [918, 1.5257192254066467], [922, 1.327403724193573], [926, 1.200009822845459], [930, 1.4306102395057678], [934, 1.0311087369918823], [938, 1.284302532672882], [942, 0.936002790927887], [946, 1.0218372344970703], [950, 1.4327377080917358], [954, 1.117679476737976], [958, 1.25774747133255], [962, 1.144111692905426], [966, 1.3741459846496582], [970, 1.330066978931427], [974, 1.5380594730377197], [978, 1.5398417711257935], [982, 1.1079140305519104], [986, 1.2465057373046875], [990, 1.1844604015350342], [994, 1.6581065654754639], [998, 1.0972317457199097], [1002, 1.14377760887146], [1006, 1.2585569620132446], [1010, 1.2313719391822815], [1014, 1.2318042516708374], [1018, 1.6790562272071838], [1022, 1.7825177907943726], [1026, 1.1279047131538391], [1030, 1.107528269290924], [1034, 1.4244247674942017], [1038, 1.1566497683525085], [1042, 1.6917001605033875], [1046, 1.2310504913330078], [1050, 1.291587471961975], [1054, 1.4239835143089294], [1058, 0.9672020673751831], [1062, 1.0290794372558594], [1066, 1.2448952794075012], [1070, 1.497227966785431], [1074, 1.4464350938796997], [1078, 1.2923586964607239], [1082, 1.2687722444534302], [1086, 1.2929737567901611], [1090, 1.117443323135376], [1094, 1.1267399191856384], [1098, 1.6990247964859009], [1102, 1.381859540939331], [1106, 1.4418784379959106], [1110, 1.463843822479248], [1114, 1.1745139956474304], [1118, 1.752909541130066], [1122, 1.5685081481933594], [1126, 1.0895082354545593], [1130, 0.7933252453804016], [1134, 1.370142638683319], [1138, 1.552425742149353], [1142, 1.433821439743042], [1146, 1.4908055067062378], [1150, 1.0283114910125732], [1154, 1.2544655203819275], [1158, 1.3514732718467712], [1162, 1.1440212726593018], [1166, 1.1476012468338013], [1170, 1.4365434646606445], [1174, 1.1525777578353882], [1178, 1.0867629647254944], [1182, 1.4322572946548462], [1186, 1.6566967964172363], [1190, 1.1842212080955505], [1194, 1.3618870973587036], [1198, 1.3377777934074402], [1202, 1.593284010887146], [1206, 1.0047635436058044], [1210, 1.5077439546585083], [1214, 1.3338674306869507], [1218, 1.3040993213653564], [1222, 1.9121811985969543], [1226, 1.474611222743988], [1230, 1.8612124919891357], [1234, 1.7087352275848389], [1238, 1.524534523487091], [1242, 1.3196892738342285], [1246, 1.4022567868232727], [1250, 1.3691649436950684], [1254, 1.6775962114334106], [1258, 1.1075469851493835], [1262, 1.7867707014083862], [1266, 1.512403964996338], [1270, 0.9401537775993347], [1274, 1.1582318544387817], [1278, 1.0960102081298828], [1282, 1.7731162905693054], [1286, 1.1243614554405212], [1290, 1.2705652713775635], [1294, 1.3317680358886719], [1298, 1.2970045804977417], [1302, 1.409809172153473], [1306, 1.452153742313385], [1310, 1.1180713176727295], [1314, 1.3564675450325012], [1318, 1.4904975295066833], [1322, 0.7921838164329529], [1326, 1.3307849764823914], [1330, 1.2434053421020508], [1334, 1.363406240940094], [1338, 1.7506521940231323], [1342, 0.912270724773407], [1346, 1.3725945949554443], [1350, 1.4042311906814575], [1354, 1.2370267510414124], [1358, 1.26575368642807], [1362, 1.020415484905243], [1366, 1.2969586253166199], [1370, 1.4135534763336182], [1374, 1.0148327946662903], [1378, 1.430597960948944], [1382, 1.3693079948425293], [1386, 1.4742805361747742], [1390, 0.9946534633636475], [1394, 1.0763272047042847], [1398, 1.5510982871055603], [1402, 1.6638364791870117], [1406, 1.7891817092895508], [1410, 1.5112637281417847], [1414, 1.0503859519958496], [1418, 1.5837252140045166], [1422, 1.0778467059135437], [1426, 1.108524739742279], [1430, 1.3333086967468262], [1434, 1.3836742639541626], [1438, 1.2508161664009094], [1442, 1.1676157116889954], [1446, 1.5184027552604675], [1450, 1.4687894582748413], [1454, 1.0509254932403564], [1458, 1.1890221238136292], [1462, 0.9160479307174683], [1466, 1.5712122321128845], [1470, 1.4554805755615234], [1474, 0.8501692414283752], [1478, 0.9905725717544556], [1482, 1.379504144191742], [1486, 1.282467782497406], [1490, 0.8874267935752869], [1494, 1.3717194199562073], [1498, 1.408257007598877], [1502, 1.1586679816246033], [1506, 1.6078832745552063], [1510, 1.2244134545326233], [1514, 1.414921760559082], [1518, 1.126183807849884], [1522, 1.601972758769989], [1526, 1.4973114728927612], [1530, 1.5379613637924194], [1534, 1.5894784927368164], [1538, 1.1454557180404663], [1542, 0.9241927266120911], [1546, 1.4916152954101562], [1550, 1.3689795136451721], [1554, 0.866544246673584], [1558, 1.3320265412330627], [1562, 1.1422947645187378], [1566, 1.0258259773254395], [1570, 0.9319129586219788], [1574, 1.6484808325767517], [1578, 1.4479615092277527], [1582, 1.1615315079689026], [1586, 1.3244287371635437], [1590, 1.6215607523918152], [1594, 1.3108309507369995], [1598, 1.3475982546806335], [1602, 1.3784830570220947], [1606, 1.4114540219306946], [1610, 1.0265194773674011], [1614, 1.4057487845420837], [1618, 1.5645312070846558], [1622, 1.2381919026374817], [1626, 0.8487663865089417], [1630, 1.0233035683631897], [1634, 0.8541140556335449], [1638, 1.5717377662658691], [1642, 1.0518125295639038], [1646, 1.2708230018615723], [1650, 1.4293642044067383], [1654, 1.076347291469574], [1658, 1.7131714820861816], [1662, 1.0988309383392334], [1666, 1.190412700176239], [1670, 0.9865257740020752], [1674, 1.108212411403656], [1678, 1.1554685235023499], [1682, 1.4688945412635803], [1686, 1.383433759212494], [1690, 1.71926748752594], [1694, 1.6280600428581238], [1698, 1.1560665965080261], [1702, 1.048576295375824], [1706, 1.1025270223617554], [1710, 1.3867789506912231], [1714, 1.1309235095977783], [1718, 0.986207127571106], [1722, 1.0813297033309937], [1726, 0.9785445332527161], [1730, 1.2500702738761902], [1734, 1.433611810207367], [1738, 0.8818710446357727], [1742, 1.3005918264389038], [1746, 0.7648620009422302], [1750, 1.454755187034607], [1754, 0.6394297480583191], [1758, 1.0980722904205322], [1762, 1.4095112085342407], [1766, 1.138065218925476], [1770, 1.3588378429412842], [1774, 1.4454650282859802], [1778, 1.7517827153205872], [1782, 1.3718337416648865], [1786, 1.0160030722618103], [1790, 1.1045012474060059], [1794, 1.1538054943084717], [1798, 1.1605412364006042], [1802, 1.5926787853240967], [1806, 1.5415640473365784], [1810, 1.151566505432129], [1814, 1.7821884751319885], [1818, 1.1689078211784363], [1822, 0.7315792441368103], [1826, 1.0758306980133057], [1830, 1.5951554775238037], [1834, 1.3220149278640747], [1838, 1.41914302110672], [1842, 1.3975790143013], [1846, 1.5016664862632751], [1850, 1.0498129725456238], [1854, 0.7951981425285339], [1858, 0.9628012776374817], [1862, 1.1542640328407288], [1866, 1.327118694782257], [1870, 1.4894464612007141], [1874, 1.2217667698860168], [1878, 1.6999999284744263], [1882, 1.5902792811393738], [1886, 1.0488082766532898], [1890, 1.3914817571640015], [1894, 1.6239545345306396], [1898, 1.2315924167633057], [1902, 1.7046005129814148], [1906, 1.1097869873046875], [1910, 1.1390435695648193], [1914, 1.0553385019302368], [1918, 1.9309932589530945], [1922, 1.382372796535492], [1926, 1.3431974649429321], [1930, 1.2669729590415955], [1934, 1.19668847322464], [1938, 1.4383482933044434], [1942, 1.238690972328186], [1946, 1.3002170324325562], [1950, 1.3557064533233643], [1954, 1.3084352612495422], [1958, 1.3382174968719482], [1962, 1.3000612258911133], [1966, 1.315544843673706], [1970, 1.2490049600601196], [1974, 1.5804250240325928], [1978, 1.0714218020439148], [1982, 1.5155040621757507], [1986, 1.44705468416214], [1990, 1.3555919528007507], [1994, 1.3579189777374268], [1998, 1.4166865348815918], [2002, 1.0292980074882507], [2006, 1.3981522917747498], [2010, 1.234646499156952], [2014, 1.3411049842834473], [2018, 0.7809942364692688], [2022, 1.1792126893997192], [2026, 1.2381448149681091], [2030, 1.3607338070869446], [2034, 1.3445011973381042], [2038, 1.0519492626190186], [2042, 1.4988192915916443], [2046, 1.283176839351654], [2050, 1.3197882175445557], [2054, 1.182627022266388], [2058, 1.4119689464569092], [2062, 1.5765836834907532], [2066, 1.5304790139198303], [2070, 1.554548978805542], [2074, 1.034336507320404], [2078, 1.8460317254066467], [2082, 1.2737385034561157], [2086, 1.601988971233368], [2090, 1.4543092846870422], [2094, 1.1528069376945496], [2098, 1.0942094326019287], [2102, 1.158689796924591], [2106, 1.397050380706787], [2110, 1.2466182708740234], [2114, 1.2348366379737854], [2118, 1.4096614122390747], [2122, 1.2427614331245422], [2126, 1.184132993221283], [2130, 1.2179322242736816], [2134, 0.9352365732192993], [2138, 1.2239310145378113], [2142, 1.628030002117157], [2146, 0.9347289800643921], [2150, 0.9839577674865723], [2154, 1.7198694348335266], [2158, 1.4635507464408875], [2162, 1.2561880946159363], [2166, 1.290194809436798], [2170, 1.427374005317688], [2174, 1.4765750765800476], [2178, 1.3975706696510315], [2182, 0.91407310962677], [2186, 1.4042795300483704], [2190, 1.1637405753135681], [2194, 1.4552399516105652], [2198, 0.8911312222480774], [2202, 1.397185504436493], [2206, 1.5171727538108826], [2210, 1.1141252517700195], [2214, 1.1640281677246094], [2218, 1.0634915232658386], [2222, 1.4874579906463623], [2226, 1.2074037194252014], [2230, 1.5281826853752136], [2234, 1.316246211528778], [2238, 1.0813209414482117], [2242, 0.6617435216903687], [2246, 1.486027479171753], [2250, 1.0919599533081055], [2254, 0.8689292073249817], [2258, 1.2131617665290833], [2262, 1.5269595980644226], [2266, 1.3107612133026123], [2270, 1.1657570004463196], [2274, 1.4803297519683838], [2278, 1.2917057275772095], [2282, 1.6323245763778687], [2286, 1.4272813200950623], [2290, 1.232358694076538], [2294, 1.4230082035064697], [2298, 1.1954209208488464], [2302, 1.559738278388977], [2306, 1.1864125728607178], [2310, 1.1845975518226624], [2314, 1.0438887476921082], [2318, 1.603754699230194], [2322, 1.366324782371521], [2326, 1.379401445388794], [2330, 1.2279547452926636], [2334, 1.3240554928779602], [2338, 1.5776785612106323], [2342, 1.3931222558021545], [2346, 1.3192541599273682], [2350, 1.2469982504844666], [2354, 1.2448880672454834], [2358, 1.2313743233680725], [2362, 1.1937620639801025], [2366, 1.1754260063171387], [2370, 1.1240246891975403], [2374, 1.1047809720039368], [2378, 1.712172269821167], [2382, 1.3324105739593506], [2386, 1.1531567573547363], [2390, 1.1502869129180908], [2394, 1.2750182747840881], [2398, 1.0270679593086243], [2402, 1.1382776498794556], [2406, 1.0912810564041138], [2410, 1.5556382536888123], [2414, 0.9998434782028198], [2418, 1.4640454649925232], [2422, 1.4629231691360474], [2426, 1.36197030544281], [2430, 1.2573306560516357], [2434, 1.6833952069282532], [2438, 1.2608100771903992], [2442, 1.3295807242393494], [2446, 1.2751790285110474], [2450, 1.3734054565429688], [2454, 1.1868097186088562], [2458, 1.3689842820167542], [2462, 1.1151398420333862], [2466, 1.402809739112854], [2470, 1.6838119626045227], [2474, 1.1397249102592468], [2478, 1.6056370735168457], [2482, 1.4115017652511597], [2486, 1.305076539516449], [2490, 0.994540810585022], [2494, 1.7655221223831177], [2498, 1.05159330368042], [2502, 1.5332764983177185], [2506, 1.4055120944976807], [2510, 1.2626392245292664], [2514, 1.3584513068199158], [2518, 1.5533002018928528], [2522, 1.3258509635925293], [2526, 0.8697754740715027], [2530, 1.4778964519500732], [2534, 1.1988299489021301], [2538, 1.7113969922065735], [2542, 1.6572524905204773], [2546, 1.121004581451416], [2550, 1.222730040550232], [2554, 1.3918247818946838], [2558, 1.5237163305282593], [2562, 0.8899527788162231], [2566, 1.4320599436759949], [2570, 1.44627845287323], [2574, 1.245661199092865], [2578, 1.3904752731323242], [2582, 1.2440568208694458], [2586, 1.1656072735786438], [2590, 1.2724387645721436], [2594, 1.5598381757736206], [2598, 1.0886176824569702], [2602, 1.4522345066070557], [2606, 1.144489586353302], [2610, 1.0584822297096252], [2614, 1.1671352982521057], [2618, 1.263593852519989], [2622, 1.0876837372779846], [2626, 1.402086615562439], [2630, 1.178328037261963], [2634, 1.1217977404594421], [2638, 1.5149362087249756], [2642, 1.5209545493125916], [2646, 0.9999287128448486], [2650, 1.045940339565277], [2654, 1.4666170477867126], [2658, 1.558105230331421], [2662, 1.46627676486969], [2666, 1.5989434719085693], [2670, 1.3367404341697693], [2674, 1.3153902292251587], [2678, 1.1769287586212158], [2682, 1.3628163933753967], [2686, 1.1933704614639282], [2690, 0.8954982161521912], [2694, 1.399403989315033], [2698, 1.3901952505111694], [2702, 1.2798144817352295], [2706, 1.349774956703186], [2710, 1.6883955001831055], [2714, 1.65614253282547], [2718, 1.3869420289993286], [2722, 1.1413507461547852], [2726, 1.1140394806861877], [2730, 1.6694450378417969], [2734, 1.4467291831970215], [2738, 1.4826434254646301], [2742, 1.3472152352333069], [2746, 1.2851449847221375], [2750, 1.4072222113609314], [2754, 1.3333390355110168], [2758, 1.1730923056602478], [2762, 0.9381282925605774], [2766, 1.4088947772979736], [2770, 1.0986186861991882], [2774, 1.5219024419784546], [2778, 1.1848224997520447], [2782, 1.175231695175171], [2786, 1.7438843846321106], [2790, 1.5032117366790771], [2794, 1.3001387119293213], [2798, 1.160531997680664], [2802, 0.9205882549285889], [2806, 1.0962427854537964], [2810, 1.2450519800186157], [2814, 1.1395078897476196], [2818, 1.4632644653320312], [2822, 1.1073976755142212], [2826, 1.5396419763565063], [2830, 1.5086479783058167], [2834, 0.7641137838363647], [2838, 1.305511236190796], [2842, 1.5723214745521545], [2846, 1.1284000873565674], [2850, 1.3579692244529724], [2854, 1.6489882469177246], [2858, 1.6051365733146667], [2862, 1.216786801815033], [2866, 1.2278645038604736], [2870, 1.6677411794662476], [2874, 1.1478307247161865], [2878, 1.2765542268753052], [2882, 1.0616409182548523], [2886, 1.7497556805610657], [2890, 1.096801221370697], [2894, 1.0257357954978943], [2898, 1.386231005191803], [2902, 1.0089439749717712], [2906, 0.7394814491271973], [2910, 1.7663893103599548], [2914, 1.31142258644104], [2918, 1.3819815516471863], [2922, 1.2510257363319397], [2926, 1.542007029056549], [2930, 1.061106562614441], [2934, 1.308421790599823], [2938, 1.3838363289833069], [2942, 1.5139526724815369], [2946, 1.0805395245552063], [2950, 1.2076650261878967], [2954, 1.64920175075531], [2958, 1.2998462915420532], [2962, 1.5384800434112549], [2966, 0.9601969718933105], [2970, 1.0109080076217651], [2974, 1.167977750301361], [2978, 1.3414247632026672], [2982, 1.2453922033309937], [2986, 1.3145210146903992], [2990, 1.1417055130004883], [2994, 1.062664806842804], [2998, 1.0544835329055786], [3002, 1.2274010181427002], [3006, 1.2201772928237915], [3010, 0.928494930267334], [3014, 1.3364307880401611], [3018, 1.2654605507850647], [3022, 1.4811344742774963], [3026, 1.0778785347938538], [3030, 1.2777820229530334], [3034, 0.9015398025512695], [3038, 1.684280514717102], [3042, 1.431124746799469], [3046, 1.1341657638549805], [3050, 1.1308056712150574], [3054, 1.2011685371398926], [3058, 1.458296000957489], [3062, 1.3391218781471252], [3066, 1.2217697501182556], [3070, 1.387862741947174], [3074, 1.2626420259475708], [3078, 1.4608207941055298], [3082, 1.1721184849739075], [3086, 1.4984672665596008], [3090, 0.7515425086021423], [3094, 1.1166957020759583], [3098, 1.7181235551834106], [3102, 1.2012414336204529], [3106, 0.8797234892845154], [3110, 1.0725598335266113], [3114, 1.3220152258872986], [3118, 1.2398129105567932], [3122, 1.407565712928772], [3126, 1.602353572845459], [3130, 1.0923374891281128], [3134, 1.648856282234192], [3138, 0.9051305055618286], [3142, 1.1533555388450623], [3146, 1.3875973224639893], [3150, 1.5148501992225647], [3154, 1.2951741814613342], [3158, 1.3631718158721924], [3162, 1.4928215146064758], [3166, 1.1211689710617065], [3170, 1.670773983001709], [3174, 1.3791224360466003], [3178, 1.3427732586860657], [3182, 1.206630527973175], [3186, 1.3007999062538147], [3190, 1.2995020151138306], [3194, 1.215112566947937], [3198, 1.6808392405509949], [3202, 1.523394525051117], [3206, 1.3849121928215027], [3210, 1.1930620670318604], [3214, 1.0160006880760193], [3218, 1.2999935150146484], [3222, 1.3834024667739868], [3226, 1.473402976989746], [3230, 1.6414584517478943], [3234, 1.051635503768921], [3238, 1.1219260692596436], [3242, 1.5183242559432983], [3246, 1.2426798939704895], [3250, 1.6173737049102783], [3254, 1.3851122856140137], [3258, 1.6654305458068848], [3262, 0.886713981628418], [3266, 1.212680459022522], [3270, 1.5385839939117432], [3274, 1.4777899384498596], [3278, 1.3304129838943481], [3282, 1.3716057538986206], [3286, 1.5165162086486816], [3290, 1.5566354990005493], [3294, 1.6070626378059387], [3298, 1.4288614392280579], [3302, 1.4370302557945251], [3306, 1.4067865014076233], [3310, 1.213358461856842], [3314, 1.2325130105018616], [3318, 1.2329252362251282], [3322, 1.676270067691803], [3326, 1.3567885756492615], [3330, 1.5011590123176575], [3334, 1.347269892692566], [3338, 1.4858832359313965], [3342, 1.365925669670105], [3346, 1.0597684979438782], [3350, 1.3377982378005981], [3354, 1.4268890619277954], [3358, 0.8881096839904785], [3362, 1.4967887997627258], [3366, 1.5020874738693237], [3370, 1.4673662185668945], [3374, 1.2123937606811523], [3378, 1.0594847202301025], [3382, 0.7821391224861145], [3386, 1.4607060551643372], [3390, 1.5573532581329346], [3394, 1.3201024532318115], [3398, 1.1161587238311768], [3402, 1.1021869778633118], [3406, 0.8607423305511475], [3410, 1.2819777131080627], [3414, 1.1636365056037903], [3418, 0.921994686126709], [3422, 1.8729965090751648], [3426, 1.617256760597229], [3430, 1.3195385336875916], [3434, 1.5872519612312317], [3438, 1.4675253033638], [3442, 1.5334221720695496], [3446, 1.2870839834213257], [3450, 1.3128122687339783], [3454, 0.9984534978866577], [3458, 1.4631137251853943], [3462, 1.0636847019195557], [3466, 1.5668447613716125], [3470, 1.302282452583313], [3474, 1.1324426531791687], [3478, 0.9210944175720215], [3482, 1.576373040676117], [3486, 1.3176817297935486], [3490, 1.4003399014472961], [3494, 1.7204014658927917], [3498, 1.4947317242622375], [3502, 0.9702272415161133], [3506, 0.7183147668838501], [3510, 1.4841731786727905], [3514, 1.137425184249878], [3518, 1.2724060416221619], [3522, 1.187413513660431], [3526, 1.5546213388442993], [3530, 1.2821592688560486], [3534, 1.1740362048149109], [3538, 1.6032904982566833], [3542, 1.0816540122032166], [3546, 1.3548870086669922], [3550, 1.5542122721672058], [3554, 0.9144316911697388], [3558, 1.2166360020637512], [3562, 1.155521273612976], [3566, 1.0632551908493042], [3570, 1.4192659854888916], [3574, 1.3681145310401917], [3578, 1.3593535423278809], [3582, 1.271704077720642], [3586, 1.4520384669303894], [3590, 1.505128562450409], [3594, 0.936845064163208], [3598, 1.3940953016281128], [3602, 1.3078354597091675], [3606, 1.4119534492492676], [3610, 1.1435814499855042], [3614, 1.152223825454712], [3618, 1.0374032855033875], [3622, 1.4018687009811401], [3626, 1.2933515310287476], [3630, 1.1029012203216553], [3634, 1.32380872964859], [3638, 1.2617123126983643], [3642, 1.4276357889175415], [3646, 1.4409972429275513], [3650, 1.4715344905853271], [3654, 0.7231627106666565], [3658, 1.2989314794540405], [3662, 0.9440896511077881], [3666, 0.9153963923454285], [3670, 1.4095662832260132], [3674, 1.3311297297477722], [3678, 1.5501516461372375], [3682, 1.3949394822120667], [3686, 1.6259247660636902], [3690, 1.2433235049247742], [3694, 1.063052237033844], [3698, 1.2393942475318909], [3702, 1.4467334747314453], [3706, 1.3437345027923584], [3710, 1.1938496828079224], [3714, 1.03970468044281], [3718, 1.0231115221977234], [3722, 1.2787542939186096], [3726, 0.9289452433586121], [3730, 1.4378241300582886], [3734, 1.4035854935646057], [3738, 1.558087706565857], [3742, 1.4677842259407043], [3746, 1.230296790599823], [3750, 1.2671483159065247], [3754, 0.9785637855529785], [3758, 0.9824610352516174], [3762, 1.439392328262329], [3766, 0.860506534576416], [3770, 1.407950758934021], [3774, 1.4944721460342407], [3778, 1.1912317276000977], [3782, 0.8063762784004211], [3786, 1.1888099312782288], [3790, 1.2238349914550781], [3794, 1.569621503353119], [3798, 1.237525761127472], [3802, 1.3387730121612549], [3806, 1.6210457682609558], [3810, 1.494615077972412], [3814, 1.199325978755951], [3818, 1.1612698435783386], [3822, 1.514251947402954], [3826, 1.4132748246192932], [3830, 1.3662297129631042], [3834, 1.5702850222587585], [3838, 1.4061815738677979], [3842, 1.1038857102394104], [3846, 1.3913201689720154], [3850, 0.9348687529563904], [3854, 0.9464406967163086], [3858, 1.6863442659378052], [3862, 1.499521255493164], [3866, 1.4020184874534607], [3870, 1.1333810687065125], [3874, 1.5484824776649475], [3878, 1.1540254354476929], [3882, 1.1420567035675049], [3886, 1.0057212710380554], [3890, 1.6018662452697754], [3894, 0.6089475154876709], [3898, 1.5348502397537231], [3902, 1.083617925643921], [3906, 0.836439847946167], [3910, 1.3870014548301697], [3914, 1.471161961555481], [3918, 1.2530775666236877], [3922, 1.6388553977012634], [3926, 1.2888826727867126], [3930, 1.5060747265815735], [3934, 1.2237167358398438], [3938, 1.4987878203392029], [3942, 1.4165480136871338], [3946, 1.0382574796676636], [3950, 1.250186026096344], [3954, 0.9560062289237976], [3958, 1.4701964855194092], [3962, 1.0732049942016602], [3966, 1.4624972343444824], [3970, 1.2044162154197693], [3974, 1.2653024792671204], [3978, 1.3056272268295288], [3982, 0.9435417056083679], [3986, 1.2598292827606201], [3990, 1.3626944422721863], [3994, 1.5217869877815247], [4000, 1.5883820056915283]]], ["idle_duration", [[1, 0.0], [6, 0.0], [10, 0.0], [14, 0.0], [18, 0.0], [22, 0.0], [26, 0.0], [30, 0.0], [34, 0.0], [38, 0.0], [42, 0.0], [46, 0.0], [50, 0.0], [54, 0.0], [58, 0.0], [62, 0.0], [66, 0.0], [70, 0.0], [74, 0.0], [78, 0.0], [82, 0.0], [86, 0.0], [90, 0.0], [94, 0.0], [98, 0.0], [102, 0.0], [106, 0.0], [110, 0.0], [114, 0.0], [118, 0.0], [122, 0.0], [126, 0.0], [130, 0.0], [134, 0.0], [138, 0.0], [142, 0.0], [146, 0.0], [150, 0.0], [154, 0.0], [158, 0.0], [162, 0.0], [166, 0.0], [170, 0.0], [174, 0.0], [178, 0.0], [182, 0.0], [186, 0.0], [190, 0.0], [194, 0.0], [198, 0.0], [202, 0.0], [206, 0.0], [210, 0.0], [214, 0.0], [218, 0.0], [222, 0.0], [226, 0.0], [230, 0.0], [234, 0.0], [238, 0.0], [242, 0.0], [246, 0.0], [250, 0.0], [254, 0.0], [258, 0.0], [262, 0.0], [266, 0.0], [270, 0.0], [274, 0.0], [278, 0.0], [282, 0.0], [286, 0.0], [290, 0.0], [294, 0.0], [298, 0.0], [302, 0.0], [306, 0.0], [310, 0.0], [314, 0.0], [318, 0.0], [322, 0.0], [326, 0.0], [330, 0.0], [334, 0.0], [338, 0.0], [342, 0.0], [346, 0.0], [350, 0.0], [354, 0.0], [358, 0.0], [362, 0.0], [366, 0.0], [370, 0.0], [374, 0.0], [378, 0.0], [382, 0.0], [386, 0.0], [390, 0.0], [394, 0.0], [398, 0.0], [402, 0.0], [406, 0.0], [410, 0.0], [414, 0.0], [418, 0.0], [422, 0.0], [426, 0.0], [430, 0.0], [434, 0.0], [438, 0.0], [442, 0.0], [446, 0.0], [450, 0.0], [454, 0.0], [458, 0.0], [462, 0.0], [466, 0.0], [470, 0.0], [474, 0.0], [478, 0.0], [482, 0.0], [486, 0.0], [490, 0.0], [494, 0.0], [498, 0.0], [502, 0.0], [506, 0.0], [510, 0.0], [514, 0.0], [518, 0.0], [522, 0.0], [526, 0.0], [530, 0.0], [534, 0.0], [538, 0.0], [542, 0.0], [546, 0.0], [550, 0.0], [554, 0.0], [558, 0.0], [562, 0.0], [566, 0.0], [570, 0.0], [574, 0.0], [578, 0.0], [582, 0.0], [586, 0.0], [590, 0.0], [594, 0.0], [598, 0.0], [602, 0.0], [606, 0.0], [610, 0.0], [614, 0.0], [618, 0.0], [622, 0.0], [626, 0.0], [630, 0.0], [634, 0.0], [638, 0.0], [642, 0.0], [646, 0.0], [650, 0.0], [654, 0.0], [658, 0.0], [662, 0.0], [666, 0.0], [670, 0.0], [674, 0.0], [678, 0.0], [682, 0.0], [686, 0.0], [690, 0.0], [694, 0.0], [698, 0.0], [702, 0.0], [706, 0.0], [710, 0.0], [714, 0.0], [718, 0.0], [722, 0.0], [726, 0.0], [730, 0.0], [734, 0.0], [738, 0.0], [742, 0.0], [746, 0.0], [750, 0.0], [754, 0.0], [758, 0.0], [762, 0.0], [766, 0.0], [770, 0.0], [774, 0.0], [778, 0.0], [782, 0.0], [786, 0.0], [790, 0.0], [794, 0.0], [798, 0.0], [802, 0.0], [806, 0.0], [810, 0.0], [814, 0.0], [818, 0.0], [822, 0.0], [826, 0.0], [830, 0.0], [834, 0.0], [838, 0.0], [842, 0.0], [846, 0.0], [850, 0.0], [854, 0.0], [858, 0.0], [862, 0.0], [866, 0.0], [870, 0.0], [874, 0.0], [878, 0.0], [882, 0.0], [886, 0.0], [890, 0.0], [894, 0.0], [898, 0.0], [902, 0.0], [906, 0.0], [910, 0.0], [914, 0.0], [918, 0.0], [922, 0.0], [926, 0.0], [930, 0.0], [934, 0.0], [938, 0.0], [942, 0.0], [946, 0.0], [950, 0.0], [954, 0.0], [958, 0.0], [962, 0.0], [966, 0.0], [970, 0.0], [974, 0.0], [978, 0.0], [982, 0.0], [986, 0.0], [990, 0.0], [994, 0.0], [998, 0.0], [1002, 0.0], [1006, 0.0], [1010, 0.0], [1014, 0.0], [1018, 0.0], [1022, 0.0], [1026, 0.0], [1030, 0.0], [1034, 0.0], [1038, 0.0], [1042, 0.0], [1046, 0.0], [1050, 0.0], [1054, 0.0], [1058, 0.0], [1062, 0.0], [1066, 0.0], [1070, 0.0], [1074, 0.0], [1078, 0.0], [1082, 0.0], [1086, 0.0], [1090, 0.0], [1094, 0.0], [1098, 0.0], [1102, 0.0], [1106, 0.0], [1110, 0.0], [1114, 0.0], [1118, 0.0], [1122, 0.0], [1126, 0.0], [1130, 0.0], [1134, 0.0], [1138, 0.0], [1142, 0.0], [1146, 0.0], [1150, 0.0], [1154, 0.0], [1158, 0.0], [1162, 0.0], [1166, 0.0], [1170, 0.0], [1174, 0.0], [1178, 0.0], [1182, 0.0], [1186, 0.0], [1190, 0.0], [1194, 0.0], [1198, 0.0], [1202, 0.0], [1206, 0.0], [1210, 0.0], [1214, 0.0], [1218, 0.0], [1222, 0.0], [1226, 0.0], [1230, 0.0], [1234, 0.0], [1238, 0.0], [1242, 0.0], [1246, 0.0], [1250, 0.0], [1254, 0.0], [1258, 0.0], [1262, 0.0], [1266, 0.0], [1270, 0.0], [1274, 0.0], [1278, 0.0], [1282, 0.0], [1286, 0.0], [1290, 0.0], [1294, 0.0], [1298, 0.0], [1302, 0.0], [1306, 0.0], [1310, 0.0], [1314, 0.0], [1318, 0.0], [1322, 0.0], [1326, 0.0], [1330, 0.0], [1334, 0.0], [1338, 0.0], [1342, 0.0], [1346, 0.0], [1350, 0.0], [1354, 0.0], [1358, 0.0], [1362, 0.0], [1366, 0.0], [1370, 0.0], [1374, 0.0], [1378, 0.0], [1382, 0.0], [1386, 0.0], [1390, 0.0], [1394, 0.0], [1398, 0.0], [1402, 0.0], [1406, 0.0], [1410, 0.0], [1414, 0.0], [1418, 0.0], [1422, 0.0], [1426, 0.0], [1430, 0.0], [1434, 0.0], [1438, 0.0], [1442, 0.0], [1446, 0.0], [1450, 0.0], [1454, 0.0], [1458, 0.0], [1462, 0.0], [1466, 0.0], [1470, 0.0], [1474, 0.0], [1478, 0.0], [1482, 0.0], [1486, 0.0], [1490, 0.0], [1494, 0.0], [1498, 0.0], [1502, 0.0], [1506, 0.0], [1510, 0.0], [1514, 0.0], [1518, 0.0], [1522, 0.0], [1526, 0.0], [1530, 0.0], [1534, 0.0], [1538, 0.0], [1542, 0.0], [1546, 0.0], [1550, 0.0], [1554, 0.0], [1558, 0.0], [1562, 0.0], [1566, 0.0], [1570, 0.0], [1574, 0.0], [1578, 0.0], [1582, 0.0], [1586, 0.0], [1590, 0.0], [1594, 0.0], [1598, 0.0], [1602, 0.0], [1606, 0.0], [1610, 0.0], [1614, 0.0], [1618, 0.0], [1622, 0.0], [1626, 0.0], [1630, 0.0], [1634, 0.0], [1638, 0.0], [1642, 0.0], [1646, 0.0], [1650, 0.0], [1654, 0.0], [1658, 0.0], [1662, 0.0], [1666, 0.0], [1670, 0.0], [1674, 0.0], [1678, 0.0], [1682, 0.0], [1686, 0.0], [1690, 0.0], [1694, 0.0], [1698, 0.0], [1702, 0.0], [1706, 0.0], [1710, 0.0], [1714, 0.0], [1718, 0.0], [1722, 0.0], [1726, 0.0], [1730, 0.0], [1734, 0.0], [1738, 0.0], [1742, 0.0], [1746, 0.0], [1750, 0.0], [1754, 0.0], [1758, 0.0], [1762, 0.0], [1766, 0.0], [1770, 0.0], [1774, 0.0], [1778, 0.0], [1782, 0.0], [1786, 0.0], [1790, 0.0], [1794, 0.0], [1798, 0.0], [1802, 0.0], [1806, 0.0], [1810, 0.0], [1814, 0.0], [1818, 0.0], [1822, 0.0], [1826, 0.0], [1830, 0.0], [1834, 0.0], [1838, 0.0], [1842, 0.0], [1846, 0.0], [1850, 0.0], [1854, 0.0], [1858, 0.0], [1862, 0.0], [1866, 0.0], [1870, 0.0], [1874, 0.0], [1878, 0.0], [1882, 0.0], [1886, 0.0], [1890, 0.0], [1894, 0.0], [1898, 0.0], [1902, 0.0], [1906, 0.0], [1910, 0.0], [1914, 0.0], [1918, 0.0], [1922, 0.0], [1926, 0.0], [1930, 0.0], [1934, 0.0], [1938, 0.0], [1942, 0.0], [1946, 0.0], [1950, 0.0], [1954, 0.0], [1958, 0.0], [1962, 0.0], [1966, 0.0], [1970, 0.0], [1974, 0.0], [1978, 0.0], [1982, 0.0], [1986, 0.0], [1990, 0.0], [1994, 0.0], [1998, 0.0], [2002, 0.0], [2006, 0.0], [2010, 0.0], [2014, 0.0], [2018, 0.0], [2022, 0.0], [2026, 0.0], [2030, 0.0], [2034, 0.0], [2038, 0.0], [2042, 0.0], [2046, 0.0], [2050, 0.0], [2054, 0.0], [2058, 0.0], [2062, 0.0], [2066, 0.0], [2070, 0.0], [2074, 0.0], [2078, 0.0], [2082, 0.0], [2086, 0.0], [2090, 0.0], [2094, 0.0], [2098, 0.0], [2102, 0.0], [2106, 0.0], [2110, 0.0], [2114, 0.0], [2118, 0.0], [2122, 0.0], [2126, 0.0], [2130, 0.0], [2134, 0.0], [2138, 0.0], [2142, 0.0], [2146, 0.0], [2150, 0.0], [2154, 0.0], [2158, 0.0], [2162, 0.0], [2166, 0.0], [2170, 0.0], [2174, 0.0], [2178, 0.0], [2182, 0.0], [2186, 0.0], [2190, 0.0], [2194, 0.0], [2198, 0.0], [2202, 0.0], [2206, 0.0], [2210, 0.0], [2214, 0.0], [2218, 0.0], [2222, 0.0], [2226, 0.0], [2230, 0.0], [2234, 0.0], [2238, 0.0], [2242, 0.0], [2246, 0.0], [2250, 0.0], [2254, 0.0], [2258, 0.0], [2262, 0.0], [2266, 0.0], [2270, 0.0], [2274, 0.0], [2278, 0.0], [2282, 0.0], [2286, 0.0], [2290, 0.0], [2294, 0.0], [2298, 0.0], [2302, 0.0], [2306, 0.0], [2310, 0.0], [2314, 0.0], [2318, 0.0], [2322, 0.0], [2326, 0.0], [2330, 0.0], [2334, 0.0], [2338, 0.0], [2342, 0.0], [2346, 0.0], [2350, 0.0], [2354, 0.0], [2358, 0.0], [2362, 0.0], [2366, 0.0], [2370, 0.0], [2374, 0.0], [2378, 0.0], [2382, 0.0], [2386, 0.0], [2390, 0.0], [2394, 0.0], [2398, 0.0], [2402, 0.0], [2406, 0.0], [2410, 0.0], [2414, 0.0], [2418, 0.0], [2422, 0.0], [2426, 0.0], [2430, 0.0], [2434, 0.0], [2438, 0.0], [2442, 0.0], [2446, 0.0], [2450, 0.0], [2454, 0.0], [2458, 0.0], [2462, 0.0], [2466, 0.0], [2470, 0.0], [2474, 0.0], [2478, 0.0], [2482, 0.0], [2486, 0.0], [2490, 0.0], [2494, 0.0], [2498, 0.0], [2502, 0.0], [2506, 0.0], [2510, 0.0], [2514, 0.0], [2518, 0.0], [2522, 0.0], [2526, 0.0], [2530, 0.0], [2534, 0.0], [2538, 0.0], [2542, 0.0], [2546, 0.0], [2550, 0.0], [2554, 0.0], [2558, 0.0], [2562, 0.0], [2566, 0.0], [2570, 0.0], [2574, 0.0], [2578, 0.0], [2582, 0.0], [2586, 0.0], [2590, 0.0], [2594, 0.0], [2598, 0.0], [2602, 0.0], [2606, 0.0], [2610, 0.0], [2614, 0.0], [2618, 0.0], [2622, 0.0], [2626, 0.0], [2630, 0.0], [2634, 0.0], [2638, 0.0], [2642, 0.0], [2646, 0.0], [2650, 0.0], [2654, 0.0], [2658, 0.0], [2662, 0.0], [2666, 0.0], [2670, 0.0], [2674, 0.0], [2678, 0.0], [2682, 0.0], [2686, 0.0], [2690, 0.0], [2694, 0.0], [2698, 0.0], [2702, 0.0], [2706, 0.0], [2710, 0.0], [2714, 0.0], [2718, 0.0], [2722, 0.0], [2726, 0.0], [2730, 0.0], [2734, 0.0], [2738, 0.0], [2742, 0.0], [2746, 0.0], [2750, 0.0], [2754, 0.0], [2758, 0.0], [2762, 0.0], [2766, 0.0], [2770, 0.0], [2774, 0.0], [2778, 0.0], [2782, 0.0], [2786, 0.0], [2790, 0.0], [2794, 0.0], [2798, 0.0], [2802, 0.0], [2806, 0.0], [2810, 0.0], [2814, 0.0], [2818, 0.0], [2822, 0.0], [2826, 0.0], [2830, 0.0], [2834, 0.0], [2838, 0.0], [2842, 0.0], [2846, 0.0], [2850, 0.0], [2854, 0.0], [2858, 0.0], [2862, 0.0], [2866, 0.0], [2870, 0.0], [2874, 0.0], [2878, 0.0], [2882, 0.0], [2886, 0.0], [2890, 0.0], [2894, 0.0], [2898, 0.0], [2902, 0.0], [2906, 0.0], [2910, 0.0], [2914, 0.0], [2918, 0.0], [2922, 0.0], [2926, 0.0], [2930, 0.0], [2934, 0.0], [2938, 0.0], [2942, 0.0], [2946, 0.0], [2950, 0.0], [2954, 0.0], [2958, 0.0], [2962, 0.0], [2966, 0.0], [2970, 0.0], [2974, 0.0], [2978, 0.0], [2982, 0.0], [2986, 0.0], [2990, 0.0], [2994, 0.0], [2998, 0.0], [3002, 0.0], [3006, 0.0], [3010, 0.0], [3014, 0.0], [3018, 0.0], [3022, 0.0], [3026, 0.0], [3030, 0.0], [3034, 0.0], [3038, 0.0], [3042, 0.0], [3046, 0.0], [3050, 0.0], [3054, 0.0], [3058, 0.0], [3062, 0.0], [3066, 0.0], [3070, 0.0], [3074, 0.0], [3078, 0.0], [3082, 0.0], [3086, 0.0], [3090, 0.0], [3094, 0.0], [3098, 0.0], [3102, 0.0], [3106, 0.0], [3110, 0.0], [3114, 0.0], [3118, 0.0], [3122, 0.0], [3126, 0.0], [3130, 0.0], [3134, 0.0], [3138, 0.0], [3142, 0.0], [3146, 0.0], [3150, 0.0], [3154, 0.0], [3158, 0.0], [3162, 0.0], [3166, 0.0], [3170, 0.0], [3174, 0.0], [3178, 0.0], [3182, 0.0], [3186, 0.0], [3190, 0.0], [3194, 0.0], [3198, 0.0], [3202, 0.0], [3206, 0.0], [3210, 0.0], [3214, 0.0], [3218, 0.0], [3222, 0.0], [3226, 0.0], [3230, 0.0], [3234, 0.0], [3238, 0.0], [3242, 0.0], [3246, 0.0], [3250, 0.0], [3254, 0.0], [3258, 0.0], [3262, 0.0], [3266, 0.0], [3270, 0.0], [3274, 0.0], [3278, 0.0], [3282, 0.0], [3286, 0.0], [3290, 0.0], [3294, 0.0], [3298, 0.0], [3302, 0.0], [3306, 0.0], [3310, 0.0], [3314, 0.0], [3318, 0.0], [3322, 0.0], [3326, 0.0], [3330, 0.0], [3334, 0.0], [3338, 0.0], [3342, 0.0], [3346, 0.0], [3350, 0.0], [3354, 0.0], [3358, 0.0], [3362, 0.0], [3366, 0.0], [3370, 0.0], [3374, 0.0], [3378, 0.0], [3382, 0.0], [3386, 0.0], [3390, 0.0], [3394, 0.0], [3398, 0.0], [3402, 0.0], [3406, 0.0], [3410, 0.0], [3414, 0.0], [3418, 0.0], [3422, 0.0], [3426, 0.0], [3430, 0.0], [3434, 0.0], [3438, 0.0], [3442, 0.0], [3446, 0.0], [3450, 0.0], [3454, 0.0], [3458, 0.0], [3462, 0.0], [3466, 0.0], [3470, 0.0], [3474, 0.0], [3478, 0.0], [3482, 0.0], [3486, 0.0], [3490, 0.0], [3494, 0.0], [3498, 0.0], [3502, 0.0], [3506, 0.0], [3510, 0.0], [3514, 0.0], [3518, 0.0], [3522, 0.0], [3526, 0.0], [3530, 0.0], [3534, 0.0], [3538, 0.0], [3542, 0.0], [3546, 0.0], [3550, 0.0], [3554, 0.0], [3558, 0.0], [3562, 0.0], [3566, 0.0], [3570, 0.0], [3574, 0.0], [3578, 0.0], [3582, 0.0], [3586, 0.0], [3590, 0.0], [3594, 0.0], [3598, 0.0], [3602, 0.0], [3606, 0.0], [3610, 0.0], [3614, 0.0], [3618, 0.0], [3622, 0.0], [3626, 0.0], [3630, 0.0], [3634, 0.0], [3638, 0.0], [3642, 0.0], [3646, 0.0], [3650, 0.0], [3654, 0.0], [3658, 0.0], [3662, 0.0], [3666, 0.0], [3670, 0.0], [3674, 0.0], [3678, 0.0], [3682, 0.0], [3686, 0.0], [3690, 0.0], [3694, 0.0], [3698, 0.0], [3702, 0.0], [3706, 0.0], [3710, 0.0], [3714, 0.0], [3718, 0.0], [3722, 0.0], [3726, 0.0], [3730, 0.0], [3734, 0.0], [3738, 0.0], [3742, 0.0], [3746, 0.0], [3750, 0.0], [3754, 0.0], [3758, 0.0], [3762, 0.0], [3766, 0.0], [3770, 0.0], [3774, 0.0], [3778, 0.0], [3782, 0.0], [3786, 0.0], [3790, 0.0], [3794, 0.0], [3798, 0.0], [3802, 0.0], [3806, 0.0], [3810, 0.0], [3814, 0.0], [3818, 0.0], [3822, 0.0], [3826, 0.0], [3830, 0.0], [3834, 0.0], [3838, 0.0], [3842, 0.0], [3846, 0.0], [3850, 0.0], [3854, 0.0], [3858, 0.0], [3862, 0.0], [3866, 0.0], [3870, 0.0], [3874, 0.0], [3878, 0.0], [3882, 0.0], [3886, 0.0], [3890, 0.0], [3894, 0.0], [3898, 0.0], [3902, 0.0], [3906, 0.0], [3910, 0.0], [3914, 0.0], [3918, 0.0], [3922, 0.0], [3926, 0.0], [3930, 0.0], [3934, 0.0], [3938, 0.0], [3942, 0.0], [3946, 0.0], [3950, 0.0], [3954, 0.0], [3958, 0.0], [3962, 0.0], [3966, 0.0], [3970, 0.0], [3974, 0.0], [3978, 0.0], [3982, 0.0], [3986, 0.0], [3990, 0.0], [3994, 0.0], [4000, 0.0]]]], "histogram": {"data": [[{"disabled": null, "values": [{"y": 60, "x": 0.5283337011933327}, {"y": 68, "x": 0.5532253533601761}, {"y": 70, "x": 0.5781170055270195}, {"y": 73, "x": 0.6030086576938629}, {"y": 54, "x": 0.6279003098607063}, {"y": 63, "x": 0.6527919620275497}, {"y": 74, "x": 0.6776836141943932}, {"y": 48, "x": 0.7025752663612366}, {"y": 54, "x": 0.72746691852808}, {"y": 74, "x": 0.7523585706949234}, {"y": 73, "x": 0.7772502228617668}, {"y": 62, "x": 0.8021418750286102}, {"y": 60, "x": 0.8270335271954536}, {"y": 66, "x": 0.8519251793622971}, {"y": 69, "x": 0.8768168315291405}, {"y": 58, "x": 0.9017084836959839}, {"y": 68, "x": 0.9266001358628273}, {"y": 61, "x": 0.9514917880296707}, {"y": 62, "x": 0.9763834401965141}, {"y": 58, "x": 1.0012750923633575}, {"y": 12, "x": 1.026166744530201}, {"y": 22, "x": 1.0510583966970444}, {"y": 75, "x": 1.0759500488638878}, {"y": 60, "x": 1.1008417010307312}, {"y": 58, "x": 1.1257333531975746}, {"y": 71, "x": 1.150625005364418}, {"y": 62, "x": 1.1755166575312614}, {"y": 60, "x": 1.2004083096981049}, {"y": 71, "x": 1.2252999618649483}, {"y": 63, "x": 1.2501916140317917}, {"y": 61, "x": 1.275083266198635}, {"y": 86, "x": 1.2999749183654785}, {"y": 64, "x": 1.324866570532322}, {"y": 55, "x": 1.3497582226991653}, {"y": 54, "x": 1.3746498748660088}, {"y": 58, "x": 1.3995415270328522}, {"y": 66, "x": 1.4244331791996956}, {"y": 57, "x": 1.449324831366539}, {"y": 51, "x": 1.4742164835333824}, {"y": 75, "x": 1.4991081357002258}, {"y": 88, "x": 1.5239997878670692}, {"y": 75, "x": 1.5488914400339127}, {"y": 68, "x": 1.573783092200756}, {"y": 45, "x": 1.5986747443675995}, {"y": 76, "x": 1.623566396534443}, {"y": 81, "x": 1.6484580487012863}, {"y": 65, "x": 1.6733497008681297}, {"y": 51, "x": 1.6982413530349731}, {"y": 59, "x": 1.7231330052018166}, {"y": 67, "x": 1.74802465736866}, {"y": 59, "x": 1.7729163095355034}, {"y": 44, "x": 1.7978079617023468}, {"y": 65, "x": 1.8226996138691902}, {"y": 78, "x": 1.8475912660360336}, {"y": 53, "x": 1.872482918202877}, {"y": 52, "x": 1.8973745703697205}, {"y": 78, "x": 1.9222662225365639}, {"y": 64, "x": 1.9471578747034073}, {"y": 72, "x": 1.9720495268702507}, {"y": 47, "x": 1.9969411790370941}, {"y": 83, "x": 2.0218328312039375}, {"y": 66, "x": 2.046724483370781}, {"y": 69, "x": 2.0716161355376244}, {"y": 39, "x": 2.0965077877044678}], "key": "task", "view": "Square Root Choice"}], [{"disabled": null, "values": [{"y": 320, "x": 0.6259855673863337}, {"y": 306, "x": 0.7485290857461783}, {"y": 321, "x": 0.8710726041060228}, {"y": 311, "x": 0.9936161224658673}, {"y": 220, "x": 1.1161596408257117}, {"y": 326, "x": 1.2387031591855564}, {"y": 319, "x": 1.3612466775454009}, {"y": 283, "x": 1.4837901959052453}, {"y": 346, "x": 1.6063337142650898}, {"y": 327, "x": 1.7288772326249342}, {"y": 309, "x": 1.8514207509847789}, {"y": 312, "x": 1.9739642693446233}, {"y": 300, "x": 2.0965077877044678}], "key": "task", "view": "Sturges Formula"}], [{"disabled": null, "values": [{"y": 128, "x": 0.5532253533601761}, {"y": 143, "x": 0.6030086576938629}, {"y": 117, "x": 0.6527919620275497}, {"y": 122, "x": 0.7025752663612366}, {"y": 128, "x": 0.7523585706949234}, {"y": 135, "x": 0.8021418750286102}, {"y": 126, "x": 0.8519251793622971}, {"y": 127, "x": 0.9017084836959839}, {"y": 129, "x": 0.9514917880296707}, {"y": 120, "x": 1.0012750923633575}, {"y": 34, "x": 1.0510583966970444}, {"y": 135, "x": 1.1008417010307312}, {"y": 129, "x": 1.150625005364418}, {"y": 122, "x": 1.2004083096981049}, {"y": 134, "x": 1.2501916140317917}, {"y": 147, "x": 1.2999749183654785}, {"y": 119, "x": 1.3497582226991653}, {"y": 112, "x": 1.3995415270328522}, {"y": 123, "x": 1.449324831366539}, {"y": 126, "x": 1.4991081357002258}, {"y": 163, "x": 1.5488914400339127}, {"y": 113, "x": 1.5986747443675995}, {"y": 157, "x": 1.6484580487012863}, {"y": 116, "x": 1.6982413530349731}, {"y": 126, "x": 1.74802465736866}, {"y": 103, "x": 1.7978079617023468}, {"y": 143, "x": 1.8475912660360336}, {"y": 105, "x": 1.8973745703697205}, {"y": 142, "x": 1.9471578747034073}, {"y": 119, "x": 1.9969411790370941}, {"y": 149, "x": 2.046724483370781}, {"y": 108, "x": 2.0965077877044678}], "key": "task", "view": "Rice Rule"}]], "views": [{"id": 0, "name": "Square Root Choice"}, {"id": 1, "name": "Sturges Formula"}, {"id": 2, "name": "Rice Rule"}]}}, "additive_output": [], "table": {"rows": [["action_0", 0.503, 1.305, 1.938, 2.016, 2.096, 1.303, "100.0%", 4000], ["total", 0.503, 1.305, 1.938, 2.016, 2.097, 1.303, "100.0%", 4000]], "cols": ["Action", "Min (sec)", "Median (sec)", "90%ile (sec)", "95%ile (sec)", "Max (sec)", "Avg (sec)", "Success", "Count"]}, "full_duration": 15.46673583984375, "config": "{\n \"Dummy.dummy_random_action\": [\n {\n \"runner\": {\n \"type\": \"constant\", \n \"concurrency\": 400, \n \"times\": 4000\n }, \n \"args\": {\n \"sleep_min\": 0.5, \n \"sleep_max\": 2, \n \"actions_num\": 1\n }, \n \"context\": {\n \"users\": {\n \"project_domain\": \"default\", \n \"users_per_tenant\": 1, \n \"tenants\": 1, \n \"resource_management_workers\": 30, \n \"user_domain\": \"default\"\n }\n }\n }\n ]\n}", "sla": [], "complete_output": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "cls": "Dummy"}];
$scope.location = {
/* #/path/hash/sub/div */
normalize: function(str) {
/* Remove unwanted characters from string */
if (typeof str !== "string") { return "" }
return str.replace(/[^\w\-\.]/g, "")
},
uri: function(obj) {
/* Getter/Setter */
if (! obj) {
var uri = {path: "", hash: "", sub: "", div: ""};
var arr = ["div", "sub", "hash", "path"];
angular.forEach($location.url().split("/"), function(value){
var v = $scope.location.normalize(value);
if (v) { var k = arr.pop(); if (k) { this[k] = v }}
}, uri);
return uri
}
var arr = [obj.path, obj.hash, obj.sub, obj.div], res = [];
for (var i in arr) { if (! arr[i]) { break }; res.push(arr[i]) }
return $location.url("/" + res.join("/"))
},
path: function(path, hash) {
/* Getter/Setter */
if (path === "") { return this.uri({}) }
path = this.normalize(path);
var uri = this.uri();
if (! path) { return uri.path }
uri.path = path;
var _hash = this.normalize(hash);
if (_hash || hash === "") { uri.hash = _hash }
return this.uri(uri)
},
hash: function(hash) {
/* Getter/Setter */
if (hash) { this.uri({path:this.uri().path, hash:hash}) }
return this.uri().hash
}
}
/* Dispatch */
$scope.route = function(uri) {
if (! $scope.scenarios_map) { return }
if (uri.path in $scope.scenarios_map) {
$scope.view = {is_scenario:true};
$scope.scenario = $scope.scenarios_map[uri.path];
$scope.nav_idx = $scope.nav_map[uri.path];
if ($scope.scenario.iterations.histogram.views.length) {
$scope.mainHistogram = $scope.scenario.iterations.histogram.views[0]
}
if ($scope.scenario.atomic.histogram.views.length) {
$scope.atomicHistogram = $scope.scenario.atomic.histogram.views[0]
}
$scope.outputIteration = 0;
$scope.showTab(uri);
} else {
$scope.scenario = null;
if (uri.path === "source") {
$scope.view = {is_source:true}
} else {
$scope.view = {is_main:true}
}
}
}
$scope.$on("$locationChangeSuccess", function (event, newUrl, oldUrl) {
$scope.route($scope.location.uri())
});
$scope.showNav = function(nav_idx) { $scope.nav_idx = nav_idx }
/* Tabs */
$scope.tabs = [
{
id: "overview",
name: "Overview",
visible: function(){ return !! $scope.scenario.iterations.pie.length }
},{
id: "details",
name: "Details",
visible: function(){ return !! $scope.scenario.atomic.pie.length }
},{
id: "output",
name: "Scenario Data",
visible: function(){ return $scope.scenario.output.length }
},{
id: "failures",
name: "Failures",
visible: function(){ return !! $scope.scenario.errors.length }
},{
id: "task",
name: "Input task",
visible: function(){ return !! $scope.scenario.config }
}
];
$scope.tabs_map = {};
angular.forEach($scope.tabs,
function(tab){ this[tab.id] = tab }, $scope.tabs_map);
$scope.showTab = function(uri) {
$scope.tab = uri.hash in $scope.tabs_map ? uri.hash : "overview";
if (! $scope.scenario.output) {
var has_additive = !! $scope.scenario.additive_output.length;
var has_complete = !! ($scope.scenario.complete_output.length
&& $scope.scenario.complete_output[0].length);
$scope.scenario.output = {
has_additive: has_additive,
has_complete: has_complete,
length: has_additive + has_complete,
active: has_additive ? "additive" : (has_complete ? "complete" : "")
}
}
if (uri.hash === "output") {
if (uri.sub && $scope.scenario.output["has_" + uri.sub]) {
$scope.scenario.output.active = uri.sub
}
}
}
for (var i in $scope.tabs) {
if ($scope.tabs[i].id === $scope.location.hash()) {
$scope.tab = $scope.tabs[i].id
}
$scope.tabs[i].isVisible = function() {
if ($scope.scenario) {
if (this.visible()) { return true }
/* If tab should be hidden but is selected - show another one */
if (this.id === $scope.location.hash()) {
for (var i in $scope.tabs) {
var tab = $scope.tabs[i];
if (tab.id != this.id && tab.visible()) {
$scope.tab = tab.id;
return false
}
}
}
}
return false
}
}
$scope.showError = function(message) {
return (function (e) {
e.style.display = "block";
e.textContent = message
})(document.getElementById("page-error"))
}
/* Initialization */
angular.element(document).ready(function(){
if (! $scope.scenarios.length) {
return $scope.showError("No data...")
}
/* Compose data mapping */
$scope.nav = [];
$scope.nav_map = {};
$scope.scenarios_map = {};
var met = [], itr = 0, cls_idx = 0;
var prev_cls, prev_met;
for (var idx in $scope.scenarios) {
var sc = $scope.scenarios[idx];
if (! prev_cls) {
prev_cls = sc.cls
}
else if (prev_cls !== sc.cls) {
$scope.nav.push({cls:prev_cls, met:met, idx:cls_idx});
prev_cls = sc.cls;
met = [];
itr = 1;
cls_idx += 1
}
if (prev_met !== sc.met) { itr = 1 };
sc.ref = $scope.location.normalize(sc.cls+"."+sc.met+(itr > 1 ? "-"+itr : ""));
$scope.scenarios_map[sc.ref] = sc;
$scope.nav_map[sc.ref] = cls_idx;
met.push({name:sc.name, itr:itr, idx:idx, ref:sc.ref});
prev_met = sc.met;
itr += 1;
}
if (met.length) {
$scope.nav.push({cls:prev_cls, met:met, idx:cls_idx})
}
/* Start */
var uri = $scope.location.uri();
uri.path = $scope.location.path();
$scope.route(uri);
$scope.$digest()
});
}])
.directive("widget", function($compile) {
var Chart = {
_render: function(node, data, chart, do_after){
nv.addGraph(function() {
d3.select(node)
.datum(data).transition().duration(0)
.call(chart);
if (typeof do_after === "function") {
do_after(node, chart)
}
nv.utils.windowResize(chart.update);
})
},
/* NOTE(amaretskiy): this is actually a result of
d3.scale.category20().range(), excluding red color (#d62728)
which is reserved for errors */
_colors: ["#1f77b4", "#aec7e8", "#ff7f0e", "#ffbb78", "#2ca02c",
"#98df8a", "#ff9896", "#9467bd", "#c5b0d5", "#8c564b",
"#c49c94", "#e377c2", "#f7b6d2", "#7f7f7f", "#c7c7c7",
"#bcbd22", "#dbdb8d", "#17becf", "#9edae5"],
_widgets: {
Pie: "pie",
StackedArea: "stack",
Lines: "lines",
Histogram: "histogram"
},
get_chart: function(widget) {
if (widget in this._widgets) {
var name = this._widgets[widget];
return Chart[name]
}
return function() { console.log("Error: unexpected widget:", widget) }
},
pie: function(node, data, opts, do_after) {
var chart = nv.models.pieChart()
.x(function(d) { return d.key })
.y(function(d) { return d.values })
.showLabels(true)
.labelType("percent")
.donut(true)
.donutRatio(0.25)
.donutLabelsOutside(true)
.color(function(d){
if (d.data && d.data.color) { return d.data.color }
});
var data_ = [], colors = [], colors_map = {errors: "#d62728"};
for (var i in data) {
var key = data[i][0];
if (! (key in colors_map)) {
if (! colors.length) { colors = Chart._colors.slice() }
colors_map[key] = colors.shift()
}
data_.push({key:key, values:data[i][1], color:colors_map[key]})
}
Chart._render(node, data_, chart)
},
stack: function(node, data, opts, do_after) {
var chart = nv.models.stackedAreaChart()
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.useInteractiveGuideline(opts.guide)
.showControls(opts.controls)
.clipEdge(true);
chart.xAxis
.tickFormat(d3.format(opts.xformat || "d"))
.axisLabel(opts.xname || "")
.showMaxMin(false);
chart.yAxis
.orient("left")
.tickFormat(d3.format(opts.yformat || ",.3f"));
var data_ = [];
for (var i in data) {
var d = {key:data[i][0], values:data[i][1]};
if (d.key === "failed_duration") {
d.color = "#d62728"
}
data_.push(d);
}
Chart._render(node, data_, chart, do_after);
},
lines: function(node, data, opts, do_after) {
var chart = nv.models.lineChart()
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.useInteractiveGuideline(opts.guide)
.clipEdge(true);
chart.xAxis
.tickFormat(d3.format(opts.xformat || "d"))
.axisLabel(opts.xname || "")
.showMaxMin(false);
chart.yAxis
.orient("left")
.tickFormat(d3.format(opts.yformat || ",.3f"));
var data_ = [];
for (var i in data) {
var d = {key:data[i][0], values:data[i][1]};
if (d.key === "failed_duration") {
d.color = "#d62728"
}
data_.push(d)
}
Chart._render(node, data_, chart, do_after)
},
histogram: function(node, data, opts) {
var chart = nv.models.multiBarChart()
.reduceXTicks(true)
.showControls(false)
.transitionDuration(0)
.groupSpacing(0.05);
chart
.legend.radioButtonMode(true);
chart.xAxis
.axisLabel("Duration (seconds)")
.tickFormat(d3.format(",.2f"));
chart.yAxis
.axisLabel("Iterations (frequency)")
.tickFormat(d3.format("d"));
Chart._render(node, data, chart)
}
};
return {
restrict: "A",
scope: { data: "=" },
link: function(scope, element, attrs) {
scope.$watch("data", function(data) {
if (! data) { return console.log("Chart has no data to render!") }
if (attrs.widget === "Table") {
var ng_class = attrs.lastrowClass ? " ng-class='{"+attrs.lastrowClass+":$last}'" : "";
var template = "<table class='striped'><thead>" +
"<tr><th ng-repeat='i in data.cols track by $index'>{{i}}<tr>" +
"</thead><tbody>" +
"<tr" + ng_class + " ng-repeat='row in data.rows track by $index'>" +
"<td ng-repeat='i in row track by $index'>{{i}}" +
"<tr>" +
"</tbody></table>";
var el = element.empty().append($compile(template)(scope)).children()[0]
} else {
var el_chart = element.addClass("chart").css({display:"block"});
var el = el_chart.html("<svg></svg>").children()[0];
var do_after = null;
if (attrs.widget in {StackedArea:0, Lines:0}) {
/* Hide widget if not enough data */
if ((! data.length) || (data[0].length < 1) || (data[0][1].length < 2)) {
return element.empty().css({display:"none"})
}
/* NOTE(amaretskiy): Dirty fix for changing chart width in case
if there are too long Y values that overlaps chart box. */
var do_after = function(node, chart){
var g_box = angular.element(el_chart[0].querySelector(".nv-y.nv-axis"));
if (g_box && g_box[0] && g_box[0].getBBox) {
try {
// 30 is padding aroung graphs
var width = g_box[0].getBBox().width + 30;
} catch (err) {
// This happens sometimes, just skip silently
return
}
// 890 is chart width (set by CSS)
if (typeof width === "number" && width > 890) {
width = (890 * 2) - width;
if (width > 0) {
angular.element(node).css({width:width+"px"});
chart.update()
}
}
}
}
}
else if (attrs.widget === "Pie") {
if (! data.length) {
return element.empty().css({display:"none"})
}
}
var options = {
xname: attrs.nameX || "",
xformat: attrs.formatX || "d",
yformat: attrs.formatY || ",.3f",
controls: attrs.controls === "true",
guide: attrs.guide === "true"
};
Chart.get_chart(attrs.widget)(el, data, options, do_after);
}
if (attrs.nameY) {
/* NOTE(amaretskiy): Dirty fix for displaying Y-axis label correctly.
I believe sometimes NVD3 will allow doing this in normal way */
var label_y = angular.element("<div>").addClass("chart-label-y").text(attrs.nameY);
angular.element(el).parent().prepend(label_y)
}
if (attrs.description) {
var desc_el = angular.element("<div>").addClass(attrs.descriptionClass || "h3").text(attrs.description);
angular.element(el).parent().prepend(desc_el)
}
if (attrs.title) {
var title_el = angular.element("<div>").addClass(attrs.titleClass || "h2").text(attrs.title);
angular.element(el).parent().prepend(title_el)
}
angular.element(el).parent().append(angular.element("<div style='clear:both'>"))
});
}
}
})
}
</script>
<style>
body { margin:0; padding:0 0 50px; font-size:14px; font-family:Helvetica,Arial,sans-serif }
a, a:active, a:focus, a:visited { text-decoration:none; outline:none }
p { margin:0; padding:5px 0 }
p.thesis { padding:10px 0 }
h1 { color:#666; margin:0 0 20px; font-size:30px; font-weight:normal }
h2, .h2 { color:#666; margin:24px 0 6px; font-size:25px; font-weight:normal }
h3, .h3 { color:#777; margin:12px 0 4px; font-size:18px; font-weight:normal }
table { border-collapse:collapse; border-spacing:0; width:100%; font-size:12px; margin:0 0 10px }
table th { text-align:left; padding:8px; color:#000; border:2px solid #ddd; border-width:0 0 2px 0 }
table th.sortable { cursor:pointer }
table td { text-align:left; border-top:1px solid #ddd; padding:8px; color:#333 }
table.compact td { padding:4px 8px }
table.striped tr:nth-child(odd) td { background:#f9f9f9 }
table.linked tbody tr:hover { background:#f9f9f9; cursor:pointer }
.rich, .rich td { font-weight:bold }
.code { padding:10px; font-size:13px; color:#333; background:#f6f6f6; border:1px solid #e5e5e5; border-radius:4px }
.header { text-align:left; background:#333; font-size:18px; padding:13px 0; margin-bottom:20px; color:#fff; background-image:linear-gradient(to bottom, #444 0px, #222 100%) }
.header a, .header a:visited, .header a:focus { color:#999 }
.notify-error { padding:5px 10px; background:#fee; color:red }
.status-skip, .status-skip td { color:grey }
.status-pass, .status-pass td { color:green }
.status-fail, .status-fail td { color:red }
.capitalize { text-transform:capitalize }
.aside { margin:0 20px 0 0; display:block; width:255px; float:left }
.aside > div { margin-bottom: 15px }
.aside > div div:first-child { border-top-left-radius:4px; border-top-right-radius:4px }
.aside > div div:last-child { border-bottom-left-radius:4px; border-bottom-right-radius:4px }
.navcls { color:#678; background:#eee; border:1px solid #ddd; margin-bottom:-1px; display:block; padding:8px 9px; font-weight:bold; text-align:left; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; cursor:pointer }
.navcls.expanded { color:#469 }
.navcls.active { background:#428bca; background-image:linear-gradient(to bottom, #428bca 0px, #3278b3 100%); border-color:#3278b3; color:#fff }
.navmet { color:#555; background:#fff; border:1px solid #ddd; font-size:12px; display:block; margin-bottom:-1px; padding:8px 10px; text-align:left; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; cursor:pointer }
.navmet:hover { background:#f8f8f8 }
.navmet.active, .navmet.active:hover { background:#428bca; background-image:linear-gradient(to bottom, #428bca 0px, #3278b3 100%); border-color:#3278b3; color:#fff }
.tabs { list-style:outside none none; margin:0 0 5px; padding:0; border-bottom:1px solid #ddd }
.tabs:after { clear:both }
.tabs li { float:left; margin-bottom:-1px; display:block; position:relative }
.tabs li div { border:1px solid transparent; border-radius:4px 4px 0 0; line-height:20px; margin-right:2px; padding:10px 15px; color:#428bca }
.tabs li div:hover { border-color:#eee #eee #ddd; background:#eee; cursor:pointer; }
.tabs li.active div { background:#fff; border-color:#ddd #ddd transparent; border-style:solid; border-width:1px; color:#555; cursor:default }
.failure-mesg { color:#900 }
.failure-trace { color:#333; white-space:pre; overflow:auto }
.link { color:#428BCA; padding:5px 15px 5px 5px; text-decoration:underline; cursor:pointer }
.link.active { color:#333; text-decoration:none }
.chart { padding:0; margin:0; width:890px }
.chart svg { height:300px; padding:0; margin:0; overflow:visible; float:right }
.chart.lower svg { height:180px }
.chart-label-y { font-size:12px; position:relative; top:5px; padding:0; margin:0 }
.expandable { cursor:pointer }
.clearfix { clear:both }
.sortable > .arrow { display:inline-block; width:12px; height:inherit; color:#c90 }
.content-main { margin:0 5px; display:block; float:left }
.content-wrap { margin:0 auto; padding:0 5px </%block>}
@media only screen and (min-width: 320px) { .content-wrap { width:900px } .content-main { width:600px } }
@media only screen and (min-width: 900px) { .content-wrap { width:880px } .content-main { width:590px } }
@media only screen and (min-width: 1000px) { .content-wrap { width:980px } .content-main { width:690px } }
@media only screen and (min-width: 1100px) { .content-wrap { width:1080px } .content-main { width:790px } }
@media only screen and (min-width: 1200px) { .content-wrap { width:1180px } .content-main { width:890px } }
</style>
</head>
<body ng-controller="TaskController">
<div class="header">
<div class="content-wrap">
<a href="https://github.com/openstack/rally">Rally</a>
<span>task results</span>
</div>
</div>
<div class="content-wrap">
<p id="page-error" class="notify-error" style="display:none"></p>
<div id="content-nav" class="aside" ng-show="scenarios.length" ng-cloack>
<div>
<div class="navcls"
ng-class="{active:view.is_main}"
ng-click="location.path('')">Task overview</div>
<div class="navcls"
ng-class="{active:view.is_source}"
ng-click="location.path('source', '')">Input file</div>
</div>
<div>
<div class="navcls" title="{{n.cls}}"
ng-repeat-start="n in nav track by $index"
ng-click="showNav(n.idx)"
ng-class="{expanded:n.idx==nav_idx}">
<span ng-hide="n.idx==nav_idx">►</span>
<span ng-show="n.idx==nav_idx">▼</span>
{{n.cls}}</div>
<div class="navmet" title="{{m.name}}"
ng-show="n.idx==nav_idx"
ng-class="{active:m.ref==scenario.ref}"
ng-click="location.path(m.ref)"
ng-repeat="m in n.met track by $index"
ng-repeat-end>{{m.name}}</div>
</div>
</div>
<div id="content-main" class="content-main" ng-show="scenarios.length" ng-cloak>
<div ng-show="view.is_main">
<h1>Task overview</h1>
<table class="linked compact"
ng-init="ov_srt='ref'; ov_dir=false">
<thead>
<tr>
<th class="sortable"
title="Scenario name, with optional suffix of call number"
ng-click="ov_srt='ref'; ov_dir=!ov_dir">
Scenario
<span class="arrow">
<b ng-show="ov_srt=='ref' && !ov_dir">▴</b>
<b ng-show="ov_srt=='ref' && ov_dir">▾</b>
</span>
<th class="sortable"
title="How long the scenario run, without context duration"
ng-click="ov_srt='load_duration'; ov_dir=!ov_dir">
Load duration (s)
<span class="arrow">
<b ng-show="ov_srt=='load_duration' && !ov_dir">▴</b>
<b ng-show="ov_srt=='load_duration' && ov_dir">▾</b>
</span>
<th class="sortable"
title="Scenario duration plus context duration"
ng-click="ov_srt='full_duration'; ov_dir=!ov_dir">
Full duration (s)
<span class="arrow">
<b ng-show="ov_srt=='full_duration' && !ov_dir">▴</b>
<b ng-show="ov_srt=='full_duration' && ov_dir">▾</b>
</span>
<th class="sortable" title="Number of iterations"
ng-click="ov_srt='iterations_count'; ov_dir=!ov_dir">
Iterations
<span class="arrow">
<b ng-show="ov_srt=='iterations_count' && !ov_dir">▴</b>
<b ng-show="ov_srt=='iterations_count' && ov_dir">▾</b>
</span>
<th class="sortable" title="Scenario runner type"
ng-click="ov_srt='runner'; ov_dir=!ov_dir">
Runner
<span class="arrow">
<b ng-show="ov_srt=='runner' && !ov_dir">▴</b>
<b ng-show="ov_srt=='runner' && ov_dir">▾</b>
</span>
<th class="sortable" title="Number of errors occurred"
ng-click="ov_srt='errors.length'; ov_dir=!ov_dir">
Errors
<span class="arrow">
<b ng-show="ov_srt=='errors.length' && !ov_dir">▴</b>
<b ng-show="ov_srt=='errors.length' && ov_dir">▾</b>
</span>
<th class="sortable" title="Whether SLA check is successful"
ng-click="ov_srt='sla_success'; ov_dir=!ov_dir">
Success (SLA)
<span class="arrow">
<b ng-show="ov_srt=='sla_success' && !ov_dir">▴</b>
<b ng-show="ov_srt=='sla_success' && ov_dir">▾</b>
</span>
<tr>
</thead>
<tbody>
<tr ng-repeat="sc in scenarios | orderBy:ov_srt:ov_dir"
ng-click="location.path(sc.ref)">
<td>{{sc.ref}}
<td>{{sc.load_duration | number:3}}
<td>{{sc.full_duration | number:3}}
<td>{{sc.iterations_count}}
<td>{{sc.runner}}
<td>{{sc.errors.length}}
<td>
<span ng-show="sc.sla_success" class="status-pass">✔</span>
<span ng-hide="sc.sla_success" class="status-fail">✖</span>
<tr>
</tbody>
</table>
</div>
<div ng-show="view.is_source">
<h1>Input file</h1>
<pre class="code">{{source}}</pre>
</div>
<div ng-show="view.is_scenario">
<h1>{{scenario.cls}}.<wbr>{{scenario.name}} ({{scenario.full_duration | number:3}}s)</h1>
<ul class="tabs">
<li ng-repeat="t in tabs"
ng-show="t.isVisible()"
ng-class="{active:t.id == tab}"
ng-click="location.hash(t.id)">
<div>{{t.name}}</div>
</li>
<div class="clearfix"></div>
</ul>
<div ng-include="tab"></div>
<script type="text/ng-template" id="overview">
<p class="thesis">
Load duration: <b>{{scenario.load_duration | number:3}} s</b>
Full duration: <b>{{scenario.full_duration | number:3}} s</b>
Iterations: <b>{{scenario.iterations_count}}</b>
Failures: <b>{{scenario.errors.length}}</b>
</p>
<div ng-show="scenario.sla.length">
<h2>Service-level agreement</h2>
<table class="striped">
<thead>
<tr>
<th>Criterion
<th>Detail
<th>Success
<tr>
</thead>
<tbody>
<tr class="rich"
ng-repeat="row in scenario.sla track by $index"
ng-class="{'status-fail':!row.success, 'status-pass':row.success}">
<td>{{row.criterion}}
<td>{{row.detail}}
<td class="capitalize">{{row.success}}
<tr>
</tbody>
</table>
</div>
<div widget="Table"
data="scenario.table"
lastrow-class="rich"
title="Total durations">
</div>
<div widget="StackedArea"
data="scenario.iterations.iter"
name-x="Iteration sequence number"
controls="true"
guide="true">
</div>
<div widget="StackedArea"
data="scenario.load_profile"
title="Load Profile"
title-class="h3"
name-x="Timeline (seconds)"
format-y="d"
format-x=",.2f"
class="lower">
</div>
<div widget="Pie"
data="scenario.iterations.pie"
title="Distribution"
title-class="h3"
style="float:left; width:40%; margin-top:15px">
</div>
<div widget="Histogram"
ng-if="scenario.iterations.histogram.data.length"
data="scenario.iterations.histogram.data[mainHistogram.id]"
style="float:left; width:59%; margin-top:15px; position:relative; top:40px">
</div>
<select ng-model="mainHistogram"
ng-show="scenario.iterations.histogram.data.length"
ng-options="i.name for i in scenario.iterations.histogram.views track by i.id"
style="float:right; margin:45px 35px 0">
</select>
<div class="clearfix"></div>
</script>
<script type="text/ng-template" id="details">
<div widget="StackedArea"
data="scenario.atomic.iter"
title="Atomic Action Durations"
name-x="Iteration sequence number"
controls="true"
guide="true">
</div>
<div widget="Pie"
data="scenario.atomic.pie"
title="Distribution"
title-class="h3"
style="float:left; width:40%; margin-top:15px">
</div>
<div widget="Histogram" data="scenario.atomic.histogram.data[atomicHistogram.id]"
ng-if="scenario.atomic.histogram.data.length"
style="float:left; width:59%; margin-top:15px; position:relative; top:40px">
</div>
<select ng-show="scenario.atomic.histogram.data.length"
ng-model="atomicHistogram"
ng-options="i.name for i in scenario.atomic.histogram.views track by i.id"
style="float:right; margin:45px 35px 0">
</select>
<div class="clearfix"></div>
</script>
<script type="text/ng-template" id="output">
<div style="padding:10px 0 0">
<span class="link"
ng-click="location.hash('output/additive')"
ng-class="{active:scenario.output.active === 'additive'}"
ng-if="scenario.output.has_additive">Aggregated</span>
<span class="link"
ng-click="location.hash('output/complete')"
ng-class="{active:scenario.output.active === 'complete'}"
ng-if="scenario.output.has_complete">Per iteration</span>
</div>
<div ng-repeat="chart in scenario.additive_output"
ng-if="scenario.output.active === 'additive'">
<div widget="{{chart.widget}}"
title="{{chart.title}}"
description="{{chart.description}}"
name-x="{{chart.axis_label}}"
name-y="{{chart.label}}"
data="chart.data">
</div>
</div>
<div ng-if="scenario.output.active === 'complete'" style="padding:10px 0 0">
<select ng-model="outputIteration">
<option ng-repeat="i in scenario.complete_output track by $index"
value="{{$index}}">
Iteration {{$index}}
</select>
<div ng-repeat="chart in scenario.complete_output[outputIteration]">
<div widget="{{chart.widget}}"
title="{{chart.title}}"
description="{{chart.description}}"
name-x="{{chart.axis_label}}"
name-y="{{chart.label}}"
data="chart.data">
</div>
</div>
</div>
</script>
<script type="text/ng-template" id="failures">
<h2>Task failures (<ng-pluralize
count="scenario.errors.length"
when="{'1': '1 iteration', 'other': '{} iterations'}"></ng-pluralize> failed)
</h2>
<table class="striped">
<thead>
<tr>
<th>
<th>Iteration
<th>Exception type
<th>Exception message
</tr>
</thead>
<tbody>
<tr class="expandable"
ng-repeat-start="i in scenario.errors track by $index"
ng-click="i.expanded = ! i.expanded">
<td>
<span ng-hide="i.expanded">►</span>
<span ng-show="i.expanded">▼</span>
<td>{{i.iteration}}
<td>{{i.type}}
<td class="failure-mesg">{{i.message}}
</tr>
<tr ng-show="i.expanded" ng-repeat-end>
<td colspan="4" class="failure-trace">{{i.traceback}}
</tr>
</tbody>
</table>
</script>
<script type="text/ng-template" id="task">
<h2>Subtask Configuration</h2>
<pre class="code">{{scenario.config}}</pre>
</script>
</div>
</div>
<div class="clearfix"></div>
</div>
<script type="text/javascript">
if (! window.angular) {(function(f){
f(document.getElementById("content-nav"), "none");
f(document.getElementById("content-main"), "none");
f(document.getElementById("page-error"), "block").textContent = "Failed to load AngularJS framework"
})(function(e, s){e.style.display = s; return e})}
</script>
</body>
</html>