-
Notifications
You must be signed in to change notification settings - Fork 1
/
static.yml
5189 lines (5189 loc) · 114 KB
/
static.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
brooklyn:
0.0.1:
- user: 0.10999999999999999
system: 0.0
total: 0.10999999999999999
real: 0.11707675794605166
eda: 100
weight: 1000
- user: 0.10999999999999999
system: 0.0
total: 0.10999999999999999
real: 0.11234111001249403
eda: 100
weight: 1000
- user: 0.11000000000000001
system: 0.009999999999999998
total: 0.12000000000000001
real: 0.11914327798876911
eda: 100
weight: 1000
- user: 0.11000000000000001
system: 0.0
total: 0.11000000000000001
real: 0.11792544997297227
eda: 100
weight: 1000
- user: 0.11000000000000001
system: 0.0
total: 0.11000000000000001
real: 0.11259106593206525
eda: 100
weight: 1000
- user: 0.16
system: 0.0
total: 0.16
real: 0.15795237093698233
eda: 200
weight: 1000
- user: 0.16999999999999998
system: 0.0
total: 0.16999999999999998
real: 0.17855648905970156
eda: 200
weight: 1000
- user: 0.16
system: 0.0
total: 0.16
real: 0.15665807598270476
eda: 200
weight: 1000
- user: 0.10999999999999999
system: 0.0
total: 0.10999999999999999
real: 0.11445722996722907
eda: 100
weight: 1000
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.11843027896247804
eda: 100
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.11684655700810254
eda: 100
weight: 1000
- user: 0.10999999999999999
system: 0.0
total: 0.10999999999999999
real: 0.11042079504113644
eda: 100
weight: 1000
- user: 0.12000000000000002
system: 0.009999999999999998
total: 0.13000000000000003
real: 0.11698816099669784
eda: 100
weight: 1000
- user: 0.17
system: 0.009999999999999998
total: 0.18000000000000002
real: 0.1794604640454054
eda: 200
weight: 1000
- user: 0.16000000000000003
system: 0.0
total: 0.16000000000000003
real: 0.1697090279776603
eda: 200
weight: 1000
- user: 0.16
system: 0.0
total: 0.16
real: 0.16224511293694377
eda: 200
weight: 1000
- user: 0.16
system: 0.0
total: 0.16
real: 0.15556797792669386
eda: 200
weight: 1000
- user: 0.16
system: 0.009999999999999998
total: 0.17
real: 0.16415090404916555
eda: 200
weight: 1000
- user: 0.42000000000000004
system: 0.010000000000000002
total: 0.43000000000000005
real: 0.45402267994359136
eda: 500
weight: 1000
- user: 0.43999999999999995
system: 0.010000000000000002
total: 0.44999999999999996
real: 0.4550040699541569
eda: 500
weight: 1000
- user: 0.35
system: 0.010000000000000002
total: 0.36
real: 0.3588899780297652
eda: 500
weight: 1000
- user: 0.32000000000000006
system: 0.0
total: 0.32000000000000006
real: 0.3194263180484995
eda: 500
weight: 1000
- user: 0.32000000000000006
system: 0.0
total: 0.32000000000000006
real: 0.3319552259054035
eda: 500
weight: 1000
- user: 0.61
system: 0.0
total: 0.61
real: 0.6165248770266771
eda: 1000
weight: 1000
- user: 0.62
system: 0.0
total: 0.62
real: 0.6188040259294212
eda: 1000
weight: 1000
- user: 0.66
system: 0.0
total: 0.66
real: 0.670018578064628
eda: 1000
weight: 1000
- user: 0.67
system: 0.0
total: 0.67
real: 0.6740814440418035
eda: 1000
weight: 1000
- user: 0.63
system: 0.0
total: 0.63
real: 0.6313558429246768
eda: 1000
weight: 1000
- user: 0.10999999999999999
system: 0.0
total: 0.10999999999999999
real: 0.11617068201303482
eda: 100
weight: 1000
- user: 0.15999999999999998
system: 0.010000000000000002
total: 0.16999999999999998
real: 0.1664707550080493
eda: 200
weight: 1000
- user: 0.32
system: 0.0
total: 0.32
real: 0.32631274999585
eda: 500
weight: 1000
- user: 0.6799999999999999
system: 0.010000000000000002
total: 0.69
real: 0.7018094980157912
eda: 1000
weight: 1000
camping:
2.1.532:
- user: 0.8600000000000001
system: 0.020000000000000004
total: 0.8800000000000001
real: 0.8806816280120984
eda: 100
weight: 1000
- user: 0.8600000000000001
system: 0.020000000000000004
total: 0.8800000000000001
real: 0.8797495199833065
eda: 100
weight: 1000
- user: 0.8400000000000001
system: 0.02
total: 0.8600000000000001
real: 0.8607269560452551
eda: 100
weight: 1000
- user: 0.8500000000000001
system: 0.020000000000000004
total: 0.8700000000000001
real: 0.8779428070411086
eda: 100
weight: 1000
- user: 0.8600000000000001
system: 0.020000000000000004
total: 0.8800000000000001
real: 0.8783323109382764
eda: 100
weight: 1000
- user: 1.6400000000000001
system: 0.020000000000000004
total: 1.6600000000000001
real: 1.6869137700414285
eda: 200
weight: 1000
- user: 1.61
system: 0.020000000000000004
total: 1.6300000000000001
real: 1.6567704390035942
eda: 200
weight: 1000
- user: 1.59
system: 0.03
total: 1.62
real: 1.6216311029857025
eda: 200
weight: 1000
- user: 1.59
system: 0.030000000000000002
total: 1.62
real: 1.625055907992646
eda: 200
weight: 1000
- user: 1.61
system: 0.03
total: 1.6400000000000001
real: 1.6542900910135359
eda: 200
weight: 1000
- user: 4.09
system: 0.06
total: 4.1499999999999995
real: 4.181174369063228
eda: 500
weight: 1000
- user: 4.2
system: 0.07
total: 4.2700000000000005
real: 4.292888681055047
eda: 500
weight: 1000
- user: 4.17
system: 0.06
total: 4.2299999999999995
real: 4.2560377169866115
eda: 500
weight: 1000
- user: 4.09
system: 0.06
total: 4.1499999999999995
real: 4.18349833402317
eda: 500
weight: 1000
- user: 4.09
system: 0.06
total: 4.1499999999999995
real: 4.177948727970943
eda: 500
weight: 1000
- user: 8.51
system: 0.13
total: 8.64
real: 8.698426736984402
eda: 1000
weight: 1000
- user: 8.51
system: 0.12
total: 8.629999999999999
real: 8.676481846021488
eda: 1000
weight: 1000
- user: 8.25
system: 0.13
total: 8.38
real: 8.42104471498169
eda: 1000
weight: 1000
- user: 8.23
system: 0.13
total: 8.360000000000001
real: 8.403472990961745
eda: 1000
weight: 1000
- user: 8.32
system: 0.13
total: 8.450000000000001
real: 8.51251566899009
eda: 1000
weight: 1000
- user: 0.8600000000000001
system: 0.010000000000000002
total: 0.8700000000000001
real: 0.8912109680240974
eda: 100
weight: 1000
- user: 1.56
system: 0.03
total: 1.59
real: 1.5911225149757229
eda: 200
weight: 1000
- user: 4.09
system: 0.06
total: 4.1499999999999995
real: 4.168420274974778
eda: 500
weight: 1000
- user: 8.94
system: 0.19999999999999998
total: 9.139999999999999
real: 9.411353559989948
eda: 1000
weight: 1000
cuba:
3.8.0:
- user: 1.17
system: 0.020000000000000004
total: 1.19
real: 1.1967822349397466
eda: 100
weight: 1000
- user: 1.18
system: 0.010000000000000002
total: 1.19
real: 1.2016402049921453
eda: 100
weight: 1000
- user: 1.17
system: 0.020000000000000004
total: 1.19
real: 1.1965908970450982
eda: 100
weight: 1000
- user: 1.15
system: 0.020000000000000004
total: 1.17
real: 1.1822957909898832
eda: 100
weight: 1000
- user: 1.17
system: 0.020000000000000004
total: 1.19
real: 1.1986667020246387
eda: 100
weight: 1000
- user: 2.42
system: 0.03
total: 2.4499999999999997
real: 2.468626285903156
eda: 200
weight: 1000
- user: 2.42
system: 0.03
total: 2.4499999999999997
real: 2.4726430560695007
eda: 200
weight: 1000
- user: 2.4299999999999997
system: 0.03
total: 2.4599999999999995
real: 2.480903678922914
eda: 200
weight: 1000
- user: 2.4299999999999997
system: 0.03
total: 2.4599999999999995
real: 2.4710656859679148
eda: 200
weight: 1000
- user: 2.46
system: 0.03
total: 2.4899999999999998
real: 2.501470218063332
eda: 200
weight: 1000
- user: 6.13
system: 0.08
total: 6.21
real: 6.250390941044316
eda: 500
weight: 1000
- user: 6.1499999999999995
system: 0.08
total: 6.2299999999999995
real: 6.277351188939065
eda: 500
weight: 1000
- user: 6.12
system: 0.07
total: 6.19
real: 6.22564861504361
eda: 500
weight: 1000
- user: 6.180000000000001
system: 0.07
total: 6.250000000000001
real: 6.289357870002277
eda: 500
weight: 1000
- user: 6.03
system: 0.06999999999999999
total: 6.1000000000000005
real: 6.131480009062216
eda: 500
weight: 1000
- user: 12.389999999999999
system: 0.14
total: 12.53
real: 12.600558058940805
eda: 1000
weight: 1000
- user: 12.049999999999999
system: 0.13
total: 12.18
real: 12.243606896023266
eda: 1000
weight: 1000
- user: 12.26
system: 0.13
total: 12.39
real: 12.45117093808949
eda: 1000
weight: 1000
- user: 12.5
system: 0.13
total: 12.63
real: 12.696850650012493
eda: 1000
weight: 1000
- user: 12.09
system: 0.13
total: 12.22
real: 12.279685718938708
eda: 1000
weight: 1000
- user: 1.31
system: 0.019999999999999997
total: 1.33
real: 1.3540582570130937
eda: 100
weight: 1000
- user: 2.5300000000000002
system: 0.039999999999999994
total: 2.5700000000000003
real: 2.602100378018804
eda: 200
weight: 1000
- user: 6.699999999999999
system: 0.09
total: 6.789999999999999
real: 6.929351383994799
eda: 500
weight: 1000
- user: 13.4
system: 0.17
total: 13.57
real: 13.845026534982026
eda: 1000
weight: 1000
grape:
0.17.0:
- user: 0.51
system: 0.009999999999999995
total: 0.52
real: 0.5225699139991775
eda: 100
weight: 1000
- user: 0.51
system: 0.010000000000000009
total: 0.52
real: 0.5252437660237774
eda: 100
weight: 1000
- user: 0.5
system: 0.010000000000000009
total: 0.51
real: 0.5145704760216177
eda: 100
weight: 1000
- user: 0.6500000000000001
system: 0.010000000000000009
total: 0.6600000000000001
real: 0.6862490610219538
eda: 100
weight: 1000
- user: 0.5799999999999998
system: 0.009999999999999995
total: 0.5899999999999999
real: 0.6117828999413177
eda: 100
weight: 1000
- user: 0.75
system: 0.010000000000000009
total: 0.76
real: 0.760141983977519
eda: 200
weight: 1000
- user: 0.74
system: 0.009999999999999995
total: 0.75
real: 0.7538451120490208
eda: 200
weight: 1000
- user: 0.75
system: 0.009999999999999995
total: 0.76
real: 0.7663247849559411
eda: 200
weight: 1000
- user: 0.74
system: 0.0
total: 0.74
real: 0.7450213889824226
eda: 200
weight: 1000
- user: 0.73
system: 0.0
total: 0.73
real: 0.7333555130753666
eda: 200
weight: 1000
- user: 1.85
system: 0.020000000000000004
total: 1.87
real: 1.8783233430003747
eda: 500
weight: 1000
- user: 1.7200000000000002
system: 0.020000000000000004
total: 1.7400000000000002
real: 1.7431386139942333
eda: 500
weight: 1000
- user: 1.73
system: 0.020000000000000004
total: 1.75
real: 1.7490372150205076
eda: 500
weight: 1000
- user: 1.7399999999999998
system: 0.020000000000000004
total: 1.7599999999999998
real: 1.7640956649556756
eda: 500
weight: 1000
- user: 1.81
system: 0.03
total: 1.84
real: 1.8297769030323252
eda: 500
weight: 1000
- user: 4.78
system: 0.04000000000000001
total: 4.82
real: 4.828789000050165
eda: 1000
weight: 1000
- user: 4.819999999999999
system: 0.04000000000000001
total: 4.859999999999999
real: 4.873016840079799
eda: 1000
weight: 1000
- user: 4.71
system: 0.04000000000000001
total: 4.75
real: 4.759201923967339
eda: 1000
weight: 1000
- user: 4.72
system: 0.04000000000000001
total: 4.76
real: 4.762346736039035
eda: 1000
weight: 1000
- user: 4.82
system: 0.04000000000000001
total: 4.86
real: 4.87233597994782
eda: 1000
weight: 1000
0.18.0:
- user: 0.7699999999999999
system: 0.03
total: 0.7999999999999999
real: 0.9230751479626633
eda: 100
weight: 1000
- user: 0.8
system: 0.020000000000000004
total: 0.8200000000000001
real: 0.8527621609973721
eda: 200
weight: 1000
- user: 1.7499999999999998
system: 0.04000000000000001
total: 1.7899999999999998
real: 1.9012087159790099
eda: 500
weight: 1000
- user: 4.05
system: 0.10999999999999999
total: 4.16
real: 4.851929128984921
eda: 1000
weight: 1000
hobbit:
0.6.1:
- user: 0.06999999999999998
system: 0.0
total: 0.06999999999999998
real: 0.0656204690458253
eda: 100
weight: 1000
- user: 0.06999999999999998
system: 0.0
total: 0.06999999999999998
real: 0.06429333693813533
eda: 100
weight: 1000
- user: 0.06999999999999998
system: 0.0
total: 0.06999999999999998
real: 0.06900542404036969
eda: 100
weight: 1000
- user: 0.07000000000000003
system: 0.0
total: 0.07000000000000003
real: 0.06351165601518005
eda: 100
weight: 1000
- user: 0.07000000000000003
system: 0.0
total: 0.07000000000000003
real: 0.06792936590500176
eda: 100
weight: 1000
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.11821473995223641
eda: 200
weight: 1000
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.11785788589622825
eda: 200
weight: 1000
- user: 0.12
system: 0.0
total: 0.12
real: 0.12681077793240547
eda: 200
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.11999834794551134
eda: 200
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.12268033798318356
eda: 200
weight: 1000
- user: 0.29000000000000004
system: 0.0
total: 0.29000000000000004
real: 0.28738817502744496
eda: 500
weight: 1000
- user: 0.28
system: 0.0
total: 0.28
real: 0.2872756909346208
eda: 500
weight: 1000
- user: 0.30000000000000004
system: 0.0
total: 0.30000000000000004
real: 0.3021531970007345
eda: 500
weight: 1000
- user: 0.28
system: 0.0
total: 0.28
real: 0.2849337870720774
eda: 500
weight: 1000
- user: 0.29000000000000004
system: 0.0
total: 0.29000000000000004
real: 0.2939999189693481
eda: 500
weight: 1000
- user: 0.58
system: 0.0
total: 0.58
real: 0.5841026130365208
eda: 1000
weight: 1000
- user: 0.58
system: 0.0
total: 0.58
real: 0.5820283549837768
eda: 1000
weight: 1000
- user: 0.59
system: 0.0
total: 0.59
real: 0.5879379679681733
eda: 1000
weight: 1000
- user: 0.5800000000000001
system: 0.0
total: 0.5800000000000001
real: 0.5781458810670301
eda: 1000
weight: 1000
- user: 0.58
system: 0.0
total: 0.58
real: 0.5809160380158573
eda: 1000
weight: 1000
- user: 0.07999999999999996
system: 0.010000000000000002
total: 0.08999999999999997
real: 0.08129862899659202
eda: 100
weight: 1000
- user: 0.14
system: 0.009999999999999995
total: 0.15000000000000002
real: 0.14640254201367497
eda: 200
weight: 1000
- user: 0.35000000000000003
system: 0.0
total: 0.35000000000000003
real: 0.35932175599737093
eda: 500
weight: 1000
- user: 0.9899999999999999
system: 0.01999999999999999
total: 1.0099999999999998
real: 1.0492852600291371
eda: 1000
weight: 1000
nancy:
0.3.0:
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.12294779904186726
eda: 100
weight: 1000
- user: 0.13999999999999999
system: 0.009999999999999998
total: 0.15
real: 0.13949618802871555
eda: 100
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.12081560993101448
eda: 100
weight: 1000
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.12352040503174067
eda: 100
weight: 1000
- user: 0.11000000000000001
system: 0.0
total: 0.11000000000000001
real: 0.11614942108280957
eda: 100
weight: 1000
- user: 0.17
system: 0.009999999999999998
total: 0.18000000000000002
real: 0.1691416430985555
eda: 200
weight: 1000
- user: 0.16
system: 0.0
total: 0.16
real: 0.16814790503121912
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.1686703199520707
eda: 200
weight: 1000
- user: 0.16000000000000003
system: 0.0
total: 0.16000000000000003
real: 0.1687707268865779
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.167928104987368
eda: 200
weight: 1000
- user: 0.32000000000000006
system: 0.009999999999999998
total: 0.33000000000000007
real: 0.31977931899018586
eda: 500
weight: 1000
- user: 0.32000000000000006
system: 0.009999999999999998
total: 0.33000000000000007
real: 0.32441652298439294
eda: 500
weight: 1000
- user: 0.31000000000000005
system: 0.0
total: 0.31000000000000005
real: 0.311767403036356
eda: 500
weight: 1000
- user: 0.32000000000000006
system: 0.0
total: 0.32000000000000006
real: 0.320293135009706
eda: 500
weight: 1000
- user: 0.31000000000000005
system: 0.0
total: 0.31000000000000005
real: 0.31865637993905693
eda: 500
weight: 1000
- user: 0.5900000000000001
system: 0.009999999999999998
total: 0.6000000000000001
real: 0.595640392974019
eda: 1000
weight: 1000
- user: 0.5800000000000001
system: 0.0
total: 0.5800000000000001
real: 0.5830855349777266
eda: 1000
weight: 1000
- user: 0.56
system: 0.0
total: 0.56
real: 0.5642812839942053
eda: 1000
weight: 1000
- user: 0.5700000000000001
system: 0.0
total: 0.5700000000000001
real: 0.567748260917142
eda: 1000
weight: 1000
- user: 0.56
system: 0.0
total: 0.56
real: 0.5686790089821443
eda: 1000
weight: 1000
- user: 0.13999999999999996
system: 0.0
total: 0.13999999999999996
real: 0.1346358780283481
eda: 100
weight: 1000
- user: 0.30000000000000004
system: 0.010000000000000002
total: 0.31000000000000005
real: 0.32118145999265835
eda: 200
weight: 1000
- user: 0.38
system: 0.0
total: 0.38
real: 0.3819225580082275
eda: 500
weight: 1000
- user: 1.06
system: 0.020000000000000004
total: 1.08
real: 1.3233340110164136
eda: 1000
weight: 1000
nyny:
3.4.3:
- user: 0.12
system: 0.0
total: 0.12
real: 0.1162417969899252
eda: 100
weight: 1000
- user: 0.10999999999999999
system: 0.0
total: 0.10999999999999999
real: 0.11370387696661055
eda: 100
weight: 1000
- user: 0.10999999999999999
system: 0.0
total: 0.10999999999999999
real: 0.1111255909781903
eda: 100
weight: 1000
- user: 0.13
system: 0.0
total: 0.13
real: 0.1224755949806422
eda: 100
weight: 1000
- user: 0.12
system: 0.0
total: 0.12
real: 0.11777415405958891
eda: 100
weight: 1000
- user: 0.12
system: 0.0
total: 0.12
real: 0.12461281893774867
eda: 200
weight: 1000
- user: 0.12
system: 0.0
total: 0.12
real: 0.12628966104239225
eda: 200
weight: 1000
- user: 0.13
system: 0.0
total: 0.13
real: 0.12871064897626638
eda: 200
weight: 1000
- user: 0.13
system: 0.0
total: 0.13
real: 0.1369566349312663
eda: 200
weight: 1000
- user: 0.13999999999999996
system: 0.0
total: 0.13999999999999996
real: 0.13955183699727058
eda: 200
weight: 1000
- user: 0.18
system: 0.0
total: 0.18
real: 0.18079097010195255
eda: 500
weight: 1000
- user: 0.17000000000000004
system: 0.010000000000000002
total: 0.18000000000000005
real: 0.1771672050235793
eda: 500
weight: 1000