-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathЯд_master2.render_stats.html
More file actions
921 lines (921 loc) · 54.7 KB
/
Яд_master2.render_stats.html
File metadata and controls
921 lines (921 loc) · 54.7 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>REAPER Render: yad_out</title>
<style>
body { font-family: monospace; }
table { border-collapse: collapse; }
table th { border: 1px solid black; padding: 12px; text-align: right; }
table td { border: 1px solid black; padding: 12px; text-align: right; }
table th:nth-child(1), td:nth-child(1) { text-align: left; }
</style>
</head>
<body>
<p>REAPER Render</p>
<p>
FLAC 16 bit 44100Hz 2ch<br>
Project: yad_out<br>
</p>
<br>
<table>
<thead>
<tr>
<th><br>File</th>
<th><br>Length</th>
<th><br>Peak</th>
<th>True<br>Peak</th>
<th><br>Clips</th>
<th>TP<br>Clips</th>
<th>max<br>LUFS-M</th>
<th>max<br>LUFS-S</th>
<th><br>LUFS-I</th>
<th><br>LRA</th>
</tr>
</thead>
<tbody>
<tr>
<td>Яд_master2.flac</td>
<td>3:55.171</td>
<td>-1.0</td>
<td>-1.0</td>
<td>0</td>
<td>0</td>
<td>-6.8</td>
<td>-7.2</td>
<td>-9.1</td>
<td>3.4</td>
</tr>
</tbody>
</table>
<br><br>
<input type='checkbox' id='regions' name='regions' value='yes'>
<label for='regions'> Display project regions</label><br>
<input type='checkbox' id='markers' name='markers'>
<label for='markers'> Display project markers</label><br>
<script type='text/javascript'>
var w=1024, h=768, xa=64, xb=w-24, ya=32, yb=112, yc=160, yd=h-24;
const colors=['#808080', '#3366CC', '#FF9900', '#F0F8F0', '#80E080'];
function stroke(ctx, c, l) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.stroke(); }
function strokerect(ctx, c, l, x, y, w, h) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.strokeRect(x, y, w, h); }
function fill(ctx, c) { ctx.fillStyle=c; ctx.fill(); }
function fillrect(ctx, c, x, y, w, h) { ctx.fillStyle=c; ctx.fillRect(x, y, w, h); }
function text(ctx, c, a, b, t, x, y) { ctx.fillStyle=c; ctx.textAlign=a; ctx.textBaseline=b; ctx.fillText(t, x, y); }
function clip(ctx, x, y, w, h) { ctx.save(); ctx.beginPath(); ctx.rect(x, y, w, h); ctx.clip(); }
function to_x(x) { return xa+(xb-xa)*x; }
function to_y(y, i) { return !i ? ya+(yb-ya)*y : yc+(yd-yc)*y; }
function from_x(x) { return (x-xa)/(xb-xa); }
function draw_chart(canv, data, tipx, tipy) {
w=canv.width=Math.max(window.innerWidth-64, 800);
xb=w-24;
let reg = 'regions' in data && document.getElementById('regions').checked;
let mrk = 'markers' in data && document.getElementById('markers').checked;
yc=160+40*(reg+mrk);
let ctx=canv.getContext('2d');
ctx.clearRect(0, 0, w, h);
ctx.font='1em monospace';
let x=xa;
text(ctx, '#000000', 'left', 'top', 'File: '+data.name, x, 0);
x += ctx.measureText('File: '+data.name).width+48;
for (let i=1; i < data.series.length; ++i) {
fillrect(ctx, colors[i], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.series[i], x+48, 0);
x += ctx.measureText(data.series[i]).width+96;
}
fillrect(ctx, colors[4], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.integrated[0], x+48, 0);
x += ctx.measureText(data.integrated[0]).width+96;
if ('dynrange' in data) {
fillrect(ctx, colors[3], x, 0, 40, 16);
text(ctx, '#000000', 'left', 'top', data.dynrange[0], x+48, 0);
let ylo=to_y(data.dynrange[1][0], 1), yhi=to_y(data.dynrange[2][0], 1);
fillrect(ctx, colors[3], xa, yhi, xb-xa, ylo-yhi);
}
let y=to_y(data.integrated[1], 1);
fillrect(ctx, colors[4], xa, y-1, xb-xa, 2);
ctx.beginPath();
for (let i=0; i < data.xmaj.length; ++i) {
let x=Math.floor(to_x(data.xmaj[i][0]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb+8);
ctx.moveTo(x, yc-8);
ctx.lineTo(x+0.5, h);
text(ctx, '#000000', 'center', 'middle', data.xmaj[i][1], x, yc-24);
}
for (let i=0; i < data.ymaj.length; ++i) {
let y=Math.floor(to_y(data.ymaj[i][0], 1))+0.5;
ctx.moveTo(xa-8, y);
ctx.lineTo(w, y);
text(ctx, '#000000', 'right', 'middle', data.ymaj[i][1], xa-24, y);
}
stroke(ctx, '#E0E0E0', 1);
ctx.beginPath();
for (let i=0; i < data.xmin.length; ++i) {
let x=Math.floor(to_x(data.xmin[i]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb);
ctx.moveTo(x, yc);
ctx.lineTo(x, h);
}
for (let i=0; i < data.ymin.length; ++i) {
let y=Math.floor(to_y(data.ymin[i], 1))+0.5;
ctx.moveTo(xa, y);
ctx.lineTo(w-8, y);
}
stroke(ctx, '#F4F4F4', 1);
strokerect(ctx, '#000000', 1, xa+0.5, ya+0.5, xb-xa, yb-ya);
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
for (let j=0; j < data.vals.length; ++j) {
ctx.lineTo(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i));
}
if (!i) {
ctx.lineTo(xb, yb);
ctx.lineTo(xa, yb);
fill(ctx, colors[0]);
}
else {
stroke(ctx, colors[i], 2);
}
}
let sx=-1, ex=-1;
for (let i=0; i <= data.vals.length; ++i) {
if (i < data.vals.length && data.vals[i][1][1].startsWith('+')) {
ex=to_x(data.vals[i][0][0]);
if (sx < 0) sx=ex;
}
else if (sx >= 0 && ex >= 0) {
fillrect(ctx, '#FF0000', sx, ya, ex-sx, yb-ya);
sx=ex=-1;
}
}
if (reg) {
let lastx=w;
for (let i=data.regions.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.regions[i][0]));
let ty=yb+10+0.5;
let tw=Math.floor(to_x(data.regions[i][2]))-tx;
let ex=tx+tw;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.regions[i][5], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.regions[i][6], 'left', 'middle', data.regions[i][4], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.regions[i][5], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], tx, yc-12, 2, h-yc+12);
fillrect(ctx, data.regions[i][5], ex, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], ex, yc-12, 2, h-yc+12);
}
}
if (mrk) {
let lastx=w;
for (let i=data.markers.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.markers[i][0]));
let ty=yb+40*reg+10+0.5;
let tw=ctx.measureText(data.markers[i][2]).width+16;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.markers[i][3], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.markers[i][4], 'left', 'middle', data.markers[i][2], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.markers[i][3], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.markers[i][3], tx, yc-12, 2, h-yc+12);
}
}
if (tipx >= 0 && tipy >= 0) {
let tx=from_x(tipx);
let j=0;
for (; j < data.vals.length-1; ++j) {
if (data.vals[j][0][0] > tx) break;
}
if (j < data.vals.length-1 && data.vals[j+1][0][0]-tx < tx-data.vals[j][0][0]) ++j;
let str=[data.vals[j][0][1], '', '', ''];
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
ctx.arc(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i), 4, 0, 2*Math.PI, false);
fill(ctx, !i ? '#000000' : colors[i]);
str[i+1]=data.series[i]+' '+data.vals[j][i+1][1];
}
let tipw=160, tiph=24*(data.series.length+1)+12;
if (tipx < tipw/2+1) tipx=tipw/2+1;
else if (tipx > w-tipw/2-1) tipx=w-tipw/2-1;
tipy += 96;
if (tipy > h-tiph/2-1) tipy=h-tiph/2-1;
strokerect(ctx, '#000000', 1, tipx-tipw/2, tipy-tiph/2, tipw, tiph);
fillrect(ctx, '#FFFFFF', tipx-tipw/2, tipy-tiph/2, tipw, tiph);
tipy -= 24*data.series.length/2;
for (let i=0; str[i]; ++i) {
text(ctx, !i ? '#000000' : colors[i-1], 'center', 'middle', str[i], tipx, tipy);
tipy += 24;
}
}
}
</script>
<br><br>
<canvas id='chart_0' width='1024' height='768'></canvas>
<script type='text/javascript'>
const data_0={
name:'Яд_master2.flac',
length:235.171,
series:['Peak','LUFS-M','LUFS-S'],
integrated:['LUFS-I',0.4067,'-9.10'],
dynrange:['LRA',[0.5267,'-10.90'],[0.3000,'-7.50']],
vals:[
[[0.0016,'0:00.372'],[0.3091,'-6.42'],[1.0510,'-18.76'],[1.3933,'-23.90']],
[[0.0032,'0:00.744'],[0.3135,'-6.53'],[1.0525,'-18.79'],[1.2933,'-22.40']],
[[0.0047,'0:01.116'],[0.3786,'-8.26'],[1.0562,'-18.84'],[1.2349,'-21.52']],
[[0.0063,'0:01.488'],[0.3319,'-7.01'],[1.0603,'-18.90'],[1.1842,'-20.76']],
[[0.0079,'0:01.860'],[0.3817,'-8.35'],[1.0384,'-18.58'],[1.1374,'-20.06']],
[[0.0095,'0:02.232'],[0.3502,'-7.49'],[1.0046,'-18.07'],[1.0924,'-19.39']],
[[0.0111,'0:02.604'],[0.3098,'-6.44'],[1.0002,'-18.00'],[1.0713,'-19.07']],
[[0.0127,'0:02.976'],[0.2859,'-5.85'],[1.0220,'-18.33'],[1.0713,'-19.07']],
[[0.0142,'0:03.348'],[0.3464,'-7.39'],[1.0322,'-18.48'],[1.0690,'-19.03']],
[[0.0158,'0:03.721'],[0.3619,'-7.80'],[1.0227,'-18.34'],[1.0625,'-18.94']],
[[0.0174,'0:04.093'],[0.3787,'-8.27'],[1.0147,'-18.22'],[1.0557,'-18.83']],
[[0.0190,'0:04.465'],[0.3210,'-6.72'],[1.0120,'-18.18'],[1.0478,'-18.72']],
[[0.0206,'0:04.837'],[0.3355,'-7.10'],[0.9979,'-17.97'],[1.0366,'-18.55']],
[[0.0222,'0:05.209'],[0.2815,'-5.74'],[0.8004,'-15.01'],[0.9700,'-17.55']],
[[0.0237,'0:05.581'],[0.2877,'-5.89'],[0.6028,'-12.04'],[0.9034,'-16.55']],
[[0.0253,'0:05.953'],[0.2388,'-4.74'],[0.5420,'-11.13'],[0.8231,'-15.35']],
[[0.0269,'0:06.325'],[0.0863,'-1.57'],[0.4962,'-10.44'],[0.7412,'-14.12']],
[[0.0285,'0:06.697'],[0.0845,'-1.53'],[0.4898,'-10.35'],[0.6837,'-13.26']],
[[0.0301,'0:07.070'],[0.1250,'-2.32'],[0.4969,'-10.45'],[0.6345,'-12.52']],
[[0.0316,'0:07.442'],[0.0844,'-1.53'],[0.5018,'-10.53'],[0.5944,'-11.92']],
[[0.0332,'0:07.814'],[0.1267,'-2.35'],[0.5049,'-10.57'],[0.5607,'-11.41']],
[[0.0348,'0:08.186'],[0.1203,'-2.23'],[0.5025,'-10.54'],[0.5356,'-11.03']],
[[0.0364,'0:08.558'],[0.1142,'-2.11'],[0.4926,'-10.39'],[0.5219,'-10.83']],
[[0.0380,'0:08.930'],[0.0855,'-1.55'],[0.4823,'-10.23'],[0.5112,'-10.67']],
[[0.0396,'0:09.302'],[0.0782,'-1.42'],[0.4709,'-10.06'],[0.5083,'-10.63']],
[[0.0411,'0:09.674'],[0.0931,'-1.70'],[0.4627,'-9.94'],[0.5058,'-10.59']],
[[0.0427,'0:10.046'],[0.1040,'-1.91'],[0.4786,'-10.18'],[0.5052,'-10.58']],
[[0.0443,'0:10.418'],[0.1426,'-2.67'],[0.4946,'-10.42'],[0.5047,'-10.57']],
[[0.0459,'0:10.791'],[0.1071,'-1.97'],[0.4834,'-10.25'],[0.5019,'-10.53']],
[[0.0475,'0:11.163'],[0.1183,'-2.19'],[0.4709,'-10.06'],[0.4990,'-10.49']],
[[0.0491,'0:11.535'],[0.1114,'-2.05'],[0.4583,'-9.87'],[0.4954,'-10.43']],
[[0.0506,'0:11.907'],[0.1223,'-2.27'],[0.4457,'-9.69'],[0.4917,'-10.37']],
[[0.0522,'0:12.279'],[0.1022,'-1.87'],[0.4485,'-9.73'],[0.4897,'-10.35']],
[[0.0538,'0:12.651'],[0.0834,'-1.51'],[0.4597,'-9.90'],[0.4887,'-10.33']],
[[0.0554,'0:13.023'],[0.0943,'-1.72'],[0.4654,'-9.98'],[0.4880,'-10.32']],
[[0.0570,'0:13.395'],[0.0822,'-1.49'],[0.4650,'-9.98'],[0.4875,'-10.31']],
[[0.0585,'0:13.767'],[0.0575,'-1.03'],[0.4690,'-10.03'],[0.4873,'-10.31']],
[[0.0601,'0:14.140'],[0.0594,'-1.06'],[0.4815,'-10.22'],[0.4876,'-10.31']],
[[0.0617,'0:14.512'],[0.0582,'-1.04'],[0.4896,'-10.34'],[0.4881,'-10.32']],
[[0.0633,'0:14.884'],[0.0861,'-1.56'],[0.4765,'-10.15'],[0.4894,'-10.34']],
[[0.0649,'0:15.256'],[0.0572,'-1.02'],[0.4633,'-9.95'],[0.4906,'-10.36']],
[[0.0665,'0:15.628'],[0.1021,'-1.87'],[0.4435,'-9.65'],[0.4845,'-10.27']],
[[0.0680,'0:16.000'],[0.0867,'-1.58'],[0.4236,'-9.35'],[0.4785,'-10.18']],
[[0.0696,'0:16.372'],[0.0580,'-1.04'],[0.4232,'-9.35'],[0.4718,'-10.08']],
[[0.0712,'0:16.744'],[0.0572,'-1.02'],[0.4260,'-9.39'],[0.4651,'-9.98']],
[[0.0728,'0:17.116'],[0.0577,'-1.03'],[0.4225,'-9.34'],[0.4594,'-9.89']],
[[0.0744,'0:17.489'],[0.0756,'-1.37'],[0.4164,'-9.25'],[0.4540,'-9.81']],
[[0.0759,'0:17.861'],[0.0567,'-1.01'],[0.4067,'-9.10'],[0.4484,'-9.73']],
[[0.0775,'0:18.233'],[0.0578,'-1.03'],[0.3942,'-8.91'],[0.4426,'-9.64']],
[[0.0791,'0:18.605'],[0.0927,'-1.69'],[0.3868,'-8.80'],[0.4389,'-9.58']],
[[0.0807,'0:18.977'],[0.0936,'-1.71'],[0.3874,'-8.81'],[0.4384,'-9.58']],
[[0.0823,'0:19.349'],[0.0571,'-1.02'],[0.3963,'-8.94'],[0.4389,'-9.58']],
[[0.0839,'0:19.721'],[0.0587,'-1.05'],[0.4323,'-9.48'],[0.4426,'-9.64']],
[[0.0854,'0:20.093'],[0.0569,'-1.02'],[0.4669,'-10.00'],[0.4466,'-9.70']],
[[0.0870,'0:20.465'],[0.1189,'-2.20'],[0.4839,'-10.26'],[0.4537,'-9.81']],
[[0.0886,'0:20.837'],[0.1156,'-2.13'],[0.5010,'-10.51'],[0.4609,'-9.91']],
[[0.0902,'0:21.210'],[0.0932,'-1.70'],[0.4923,'-10.38'],[0.4701,'-10.05']],
[[0.0918,'0:21.582'],[0.1614,'-3.06'],[0.4813,'-10.22'],[0.4796,'-10.19']],
[[0.0934,'0:21.954'],[0.0805,'-1.46'],[0.4713,'-10.07'],[0.4878,'-10.32']],
[[0.0949,'0:22.326'],[0.0985,'-1.80'],[0.4617,'-9.92'],[0.4956,'-10.43']],
[[0.0965,'0:22.698'],[0.0889,'-1.62'],[0.4680,'-10.02'],[0.4995,'-10.49']],
[[0.0981,'0:23.070'],[0.1229,'-2.28'],[0.4849,'-10.27'],[0.5010,'-10.51']],
[[0.0997,'0:23.442'],[0.1066,'-1.96'],[0.4891,'-10.34'],[0.5008,'-10.51']],
[[0.1013,'0:23.814'],[0.1013,'-1.86'],[0.4778,'-10.17'],[0.4987,'-10.48']],
[[0.1028,'0:24.186'],[0.1100,'-2.02'],[0.4655,'-9.98'],[0.4960,'-10.44']],
[[0.1044,'0:24.559'],[0.1215,'-2.25'],[0.4509,'-9.76'],[0.4918,'-10.38']],
[[0.1060,'0:24.931'],[0.1039,'-1.91'],[0.4401,'-9.60'],[0.4883,'-10.32']],
[[0.1076,'0:25.303'],[0.0879,'-1.60'],[0.4546,'-9.82'],[0.4895,'-10.34']],
[[0.1092,'0:25.675'],[0.0977,'-1.79'],[0.4691,'-10.04'],[0.4907,'-10.36']],
[[0.1108,'0:26.047'],[0.1190,'-2.20'],[0.4841,'-10.26'],[0.4920,'-10.38']],
[[0.1123,'0:26.419'],[0.0871,'-1.58'],[0.4991,'-10.49'],[0.4933,'-10.40']],
[[0.1139,'0:26.791'],[0.1091,'-2.01'],[0.4990,'-10.49'],[0.4955,'-10.43']],
[[0.1155,'0:27.163'],[0.1119,'-2.06'],[0.4957,'-10.43'],[0.4978,'-10.47']],
[[0.1171,'0:27.535'],[0.1241,'-2.30'],[0.4860,'-10.29'],[0.5001,'-10.50']],
[[0.1187,'0:27.907'],[0.1621,'-3.07'],[0.4732,'-10.10'],[0.5025,'-10.54']],
[[0.1203,'0:28.280'],[0.1162,'-2.15'],[0.4704,'-10.06'],[0.5029,'-10.54']],
[[0.1218,'0:28.652'],[0.1102,'-2.03'],[0.4775,'-10.16'],[0.5014,'-10.52']],
[[0.1234,'0:29.024'],[0.0871,'-1.58'],[0.4818,'-10.23'],[0.4990,'-10.49']],
[[0.1250,'0:29.396'],[0.1088,'-2.00'],[0.4809,'-10.21'],[0.4951,'-10.43']],
[[0.1266,'0:29.768'],[0.0726,'-1.31'],[0.4788,'-10.18'],[0.4916,'-10.37']],
[[0.1282,'0:30.140'],[0.0996,'-1.82'],[0.4716,'-10.07'],[0.4897,'-10.35']],
[[0.1297,'0:30.512'],[0.1140,'-2.10'],[0.4646,'-9.97'],[0.4878,'-10.32']],
[[0.1313,'0:30.884'],[0.0829,'-1.50'],[0.4607,'-9.91'],[0.4875,'-10.31']],
[[0.1329,'0:31.256'],[0.1020,'-1.87'],[0.4568,'-9.85'],[0.4872,'-10.31']],
[[0.1345,'0:31.629'],[0.1422,'-2.67'],[0.4960,'-10.44'],[0.4923,'-10.38']],
[[0.1361,'0:32.001'],[0.1067,'-1.96'],[0.5412,'-11.12'],[0.4981,'-10.47']],
[[0.1377,'0:32.373'],[0.0854,'-1.55'],[0.5481,'-11.22'],[0.5070,'-10.60']],
[[0.1392,'0:32.745'],[0.1382,'-2.58'],[0.5400,'-11.10'],[0.5170,'-10.75']],
[[0.1408,'0:33.117'],[0.1177,'-2.18'],[0.5387,'-11.08'],[0.5275,'-10.91']],
[[0.1424,'0:33.489'],[0.1360,'-2.54'],[0.5425,'-11.14'],[0.5386,'-11.08']],
[[0.1440,'0:33.861'],[0.1512,'-2.85'],[0.5426,'-11.14'],[0.5496,'-11.24']],
[[0.1456,'0:34.233'],[0.1308,'-2.44'],[0.5375,'-11.06'],[0.5604,'-11.41']],
[[0.1472,'0:34.605'],[0.1205,'-2.23'],[0.5370,'-11.06'],[0.5685,'-11.53']],
[[0.1487,'0:34.978'],[0.1301,'-2.42'],[0.5504,'-11.26'],[0.5683,'-11.52']],
[[0.1503,'0:35.350'],[0.1326,'-2.47'],[0.5600,'-11.40'],[0.5676,'-11.51']],
[[0.1519,'0:35.722'],[0.0981,'-1.79'],[0.5323,'-10.98'],[0.5622,'-11.43']],
[[0.1535,'0:36.094'],[0.1499,'-2.82'],[0.5045,'-10.57'],[0.5569,'-11.35']],
[[0.1551,'0:36.466'],[0.1040,'-1.91'],[0.4993,'-10.49'],[0.5507,'-11.26']],
[[0.1566,'0:36.838'],[0.1456,'-2.73'],[0.4957,'-10.44'],[0.5443,'-11.17']],
[[0.1582,'0:37.210'],[0.1385,'-2.59'],[0.4964,'-10.45'],[0.5375,'-11.06']],
[[0.1598,'0:37.582'],[0.1267,'-2.35'],[0.4984,'-10.48'],[0.5306,'-10.96']],
[[0.1614,'0:37.954'],[0.1188,'-2.20'],[0.5007,'-10.51'],[0.5264,'-10.90']],
[[0.1630,'0:38.326'],[0.1037,'-1.90'],[0.5033,'-10.55'],[0.5238,'-10.86']],
[[0.1646,'0:38.699'],[0.1178,'-2.18'],[0.5043,'-10.56'],[0.5222,'-10.83']],
[[0.1661,'0:39.071'],[0.1184,'-2.19'],[0.5035,'-10.55'],[0.5217,'-10.83']],
[[0.1677,'0:39.443'],[0.1163,'-2.15'],[0.5025,'-10.54'],[0.5216,'-10.82']],
[[0.1693,'0:39.815'],[0.1132,'-2.09'],[0.5010,'-10.52'],[0.5226,'-10.84']],
[[0.1709,'0:40.187'],[0.1297,'-2.41'],[0.4990,'-10.49'],[0.5233,'-10.85']],
[[0.1725,'0:40.559'],[0.1255,'-2.33'],[0.4941,'-10.41'],[0.5223,'-10.83']],
[[0.1741,'0:40.931'],[0.0761,'-1.37'],[0.4891,'-10.34'],[0.5213,'-10.82']],
[[0.1756,'0:41.303'],[0.0813,'-1.47'],[0.4897,'-10.35'],[0.5180,'-10.77']],
[[0.1772,'0:41.675'],[0.1132,'-2.09'],[0.4903,'-10.35'],[0.5147,'-10.72']],
[[0.1788,'0:42.048'],[0.0972,'-1.78'],[0.4905,'-10.36'],[0.5144,'-10.72']],
[[0.1804,'0:42.420'],[0.0865,'-1.57'],[0.4905,'-10.36'],[0.5146,'-10.72']],
[[0.1820,'0:42.792'],[0.1047,'-1.92'],[0.4846,'-10.27'],[0.5134,'-10.70']],
[[0.1835,'0:43.164'],[0.1028,'-1.88'],[0.4759,'-10.14'],[0.5113,'-10.67']],
[[0.1851,'0:43.536'],[0.0942,'-1.72'],[0.4732,'-10.10'],[0.5082,'-10.62']],
[[0.1867,'0:43.908'],[0.0753,'-1.36'],[0.4760,'-10.14'],[0.5040,'-10.56']],
[[0.1883,'0:44.280'],[0.1045,'-1.92'],[0.4741,'-10.11'],[0.4998,'-10.50']],
[[0.1899,'0:44.652'],[0.0645,'-1.16'],[0.4640,'-9.96'],[0.4953,'-10.43']],
[[0.1915,'0:45.024'],[0.1323,'-2.46'],[0.4558,'-9.84'],[0.4906,'-10.36']],
[[0.1930,'0:45.396'],[0.0975,'-1.78'],[0.4546,'-9.82'],[0.4850,'-10.28']],
[[0.1946,'0:45.769'],[0.0770,'-1.39'],[0.4535,'-9.80'],[0.4798,'-10.20']],
[[0.1962,'0:46.141'],[0.1193,'-2.21'],[0.4536,'-9.80'],[0.4800,'-10.20']],
[[0.1978,'0:46.513'],[0.0615,'-1.10'],[0.4536,'-9.80'],[0.4802,'-10.20']],
[[0.1994,'0:46.885'],[0.0865,'-1.57'],[0.4551,'-9.83'],[0.4795,'-10.19']],
[[0.2009,'0:47.257'],[0.0590,'-1.06'],[0.4568,'-9.85'],[0.4786,'-10.18']],
[[0.2025,'0:47.629'],[0.1202,'-2.22'],[0.4544,'-9.82'],[0.4782,'-10.17']],
[[0.2041,'0:48.001'],[0.0645,'-1.16'],[0.4505,'-9.76'],[0.4779,'-10.17']],
[[0.2057,'0:48.373'],[0.0993,'-1.82'],[0.4463,'-9.69'],[0.4776,'-10.16']],
[[0.2073,'0:48.745'],[0.0886,'-1.61'],[0.4417,'-9.63'],[0.4774,'-10.16']],
[[0.2089,'0:49.118'],[0.1334,'-2.49'],[0.4378,'-9.57'],[0.4756,'-10.13']],
[[0.2104,'0:49.490'],[0.0611,'-1.09'],[0.4346,'-9.52'],[0.4717,'-10.08']],
[[0.2120,'0:49.862'],[0.1127,'-2.08'],[0.4337,'-9.51'],[0.4686,'-10.03']],
[[0.2136,'0:50.234'],[0.1088,'-2.00'],[0.4392,'-9.59'],[0.4676,'-10.01']],
[[0.2152,'0:50.606'],[0.1006,'-1.84'],[0.4443,'-9.66'],[0.4667,'-10.00']],
[[0.2168,'0:50.978'],[0.1034,'-1.90'],[0.4464,'-9.70'],[0.4663,'-9.99']],
[[0.2184,'0:51.350'],[0.1065,'-1.96'],[0.4486,'-9.73'],[0.4658,'-9.99']],
[[0.2199,'0:51.722'],[0.1414,'-2.65'],[0.4614,'-9.92'],[0.4664,'-10.00']],
[[0.2215,'0:52.094'],[0.0874,'-1.59'],[0.4747,'-10.12'],[0.4671,'-10.01']],
[[0.2231,'0:52.467'],[0.0804,'-1.46'],[0.4711,'-10.07'],[0.4721,'-10.08']],
[[0.2247,'0:52.839'],[0.0575,'-1.03'],[0.4632,'-9.95'],[0.4783,'-10.17']],
[[0.2263,'0:53.211'],[0.1320,'-2.46'],[0.4604,'-9.91'],[0.4831,'-10.25']],
[[0.2278,'0:53.583'],[0.1100,'-2.03'],[0.4604,'-9.91'],[0.4870,'-10.31']],
[[0.2294,'0:53.955'],[0.1271,'-2.36'],[0.4606,'-9.91'],[0.4896,'-10.34']],
[[0.2310,'0:54.327'],[0.0700,'-1.26'],[0.4608,'-9.91'],[0.4906,'-10.36']],
[[0.2326,'0:54.699'],[0.1356,'-2.53'],[0.4588,'-9.88'],[0.4900,'-10.35']],
[[0.2342,'0:55.071'],[0.0609,'-1.09'],[0.4522,'-9.78'],[0.4858,'-10.29']],
[[0.2358,'0:55.443'],[0.0690,'-1.24'],[0.4474,'-9.71'],[0.4820,'-10.23']],
[[0.2373,'0:55.815'],[0.1043,'-1.91'],[0.4519,'-9.78'],[0.4797,'-10.20']],
[[0.2389,'0:56.188'],[0.0748,'-1.35'],[0.4564,'-9.85'],[0.4774,'-10.16']],
[[0.2405,'0:56.560'],[0.0732,'-1.32'],[0.4640,'-9.96'],[0.4772,'-10.16']],
[[0.2421,'0:56.932'],[0.0968,'-1.77'],[0.4717,'-10.07'],[0.4770,'-10.16']],
[[0.2437,'0:57.304'],[0.0645,'-1.16'],[0.4812,'-10.22'],[0.4798,'-10.20']],
[[0.2453,'0:57.676'],[0.0854,'-1.55'],[0.4910,'-10.36'],[0.4830,'-10.25']],
[[0.2468,'0:58.048'],[0.1108,'-2.04'],[0.4992,'-10.49'],[0.4870,'-10.31']],
[[0.2484,'0:58.420'],[0.1138,'-2.10'],[0.5066,'-10.60'],[0.4913,'-10.37']],
[[0.2500,'0:58.792'],[0.1510,'-2.84'],[0.5103,'-10.65'],[0.4972,'-10.46']],
[[0.2516,'0:59.164'],[0.0990,'-1.81'],[0.5108,'-10.66'],[0.5044,'-10.57']],
[[0.2532,'0:59.537'],[0.1406,'-2.63'],[0.5095,'-10.64'],[0.5154,'-10.73']],
[[0.2547,'0:59.909'],[0.1305,'-2.43'],[0.5052,'-10.58'],[0.5325,'-10.99']],
[[0.2563,'1:00.281'],[0.1361,'-2.54'],[0.5049,'-10.57'],[0.5467,'-11.20']],
[[0.2579,'1:00.653'],[0.1237,'-2.29'],[0.5183,'-10.78'],[0.5511,'-11.27']],
[[0.2595,'1:01.025'],[0.1183,'-2.19'],[0.5309,'-10.96'],[0.5554,'-11.33']],
[[0.2611,'1:01.397'],[0.1247,'-2.31'],[0.5316,'-10.97'],[0.5584,'-11.38']],
[[0.2627,'1:01.769'],[0.2014,'-3.91'],[0.5324,'-10.99'],[0.5614,'-11.42']],
[[0.2642,'1:02.141'],[0.1381,'-2.58'],[0.5265,'-10.90'],[0.5552,'-11.33']],
[[0.2658,'1:02.513'],[0.1525,'-2.87'],[0.5199,'-10.80'],[0.5480,'-11.22']],
[[0.2674,'1:02.886'],[0.0617,'-1.11'],[0.4908,'-10.36'],[0.5384,'-11.08']],
[[0.2690,'1:03.258'],[0.0727,'-1.31'],[0.4543,'-9.81'],[0.5280,'-10.92']],
[[0.2706,'1:03.630'],[0.1352,'-2.52'],[0.4395,'-9.59'],[0.5161,'-10.74']],
[[0.2722,'1:04.002'],[0.0566,'-1.01'],[0.4393,'-9.59'],[0.5032,'-10.55']],
[[0.2737,'1:04.374'],[0.0953,'-1.74'],[0.4382,'-9.57'],[0.4910,'-10.36']],
[[0.2753,'1:04.746'],[0.1075,'-1.98'],[0.4361,'-9.54'],[0.4795,'-10.19']],
[[0.2769,'1:05.118'],[0.1112,'-2.05'],[0.4325,'-9.49'],[0.4681,'-10.02']],
[[0.2785,'1:05.490'],[0.0837,'-1.52'],[0.4250,'-9.38'],[0.4567,'-9.85']],
[[0.2801,'1:05.862'],[0.1128,'-2.08'],[0.4179,'-9.27'],[0.4462,'-9.69']],
[[0.2816,'1:06.234'],[0.0612,'-1.10'],[0.4130,'-9.20'],[0.4422,'-9.63']],
[[0.2832,'1:06.607'],[0.1115,'-2.05'],[0.4082,'-9.12'],[0.4381,'-9.57']],
[[0.2848,'1:06.979'],[0.0800,'-1.45'],[0.4173,'-9.26'],[0.4369,'-9.55']],
[[0.2864,'1:07.351'],[0.1077,'-1.98'],[0.4268,'-9.40'],[0.4358,'-9.54']],
[[0.2880,'1:07.723'],[0.1222,'-2.26'],[0.4232,'-9.35'],[0.4335,'-9.50']],
[[0.2896,'1:08.095'],[0.1275,'-2.37'],[0.4165,'-9.25'],[0.4310,'-9.47']],
[[0.2911,'1:08.467'],[0.1100,'-2.02'],[0.4312,'-9.47'],[0.4332,'-9.50']],
[[0.2927,'1:08.839'],[0.1008,'-1.85'],[0.4571,'-9.86'],[0.4378,'-9.57']],
[[0.2943,'1:09.211'],[0.1449,'-2.72'],[0.4490,'-9.73'],[0.4439,'-9.66']],
[[0.2959,'1:09.583'],[0.0573,'-1.03'],[0.4065,'-9.10'],[0.4513,'-9.77']],
[[0.2975,'1:09.956'],[0.0899,'-1.64'],[0.3807,'-8.71'],[0.4552,'-9.83']],
[[0.2991,'1:10.328'],[0.0596,'-1.07'],[0.3868,'-8.80'],[0.4524,'-9.79']],
[[0.3006,'1:10.700'],[0.0833,'-1.51'],[0.3920,'-8.88'],[0.4483,'-9.72']],
[[0.3022,'1:11.072'],[0.0654,'-1.18'],[0.3929,'-8.89'],[0.4387,'-9.58']],
[[0.3038,'1:11.444'],[0.0576,'-1.03'],[0.3938,'-8.91'],[0.4291,'-9.44']],
[[0.3054,'1:11.816'],[0.0675,'-1.21'],[0.3947,'-8.92'],[0.4202,'-9.30']],
[[0.3070,'1:12.188'],[0.1059,'-1.95'],[0.3957,'-8.93'],[0.4112,'-9.17']],
[[0.3085,'1:12.560'],[0.0831,'-1.51'],[0.3986,'-8.98'],[0.4099,'-9.15']],
[[0.3101,'1:12.932'],[0.0676,'-1.22'],[0.4018,'-9.03'],[0.4097,'-9.15']],
[[0.3117,'1:13.304'],[0.0629,'-1.13'],[0.3916,'-8.87'],[0.4097,'-9.15']],
[[0.3133,'1:13.677'],[0.0651,'-1.17'],[0.3761,'-8.64'],[0.4098,'-9.15']],
[[0.3149,'1:14.049'],[0.0574,'-1.03'],[0.3801,'-8.70'],[0.4099,'-9.15']],
[[0.3165,'1:14.421'],[0.0707,'-1.27'],[0.3995,'-8.99'],[0.4099,'-9.15']],
[[0.3180,'1:14.793'],[0.0574,'-1.03'],[0.4066,'-9.10'],[0.4093,'-9.14']],
[[0.3196,'1:15.165'],[0.0579,'-1.04'],[0.3952,'-8.93'],[0.4078,'-9.12']],
[[0.3212,'1:15.537'],[0.0865,'-1.57'],[0.3867,'-8.80'],[0.4065,'-9.10']],
[[0.3228,'1:15.909'],[0.0611,'-1.09'],[0.3876,'-8.81'],[0.4063,'-9.10']],
[[0.3244,'1:16.281'],[0.1094,'-2.01'],[0.3887,'-8.83'],[0.4062,'-9.09']],
[[0.3259,'1:16.653'],[0.0641,'-1.15'],[0.3923,'-8.88'],[0.4069,'-9.10']],
[[0.3275,'1:17.026'],[0.0582,'-1.04'],[0.3958,'-8.94'],[0.4075,'-9.11']],
[[0.3291,'1:17.398'],[0.0572,'-1.02'],[0.3968,'-8.95'],[0.4080,'-9.12']],
[[0.3307,'1:17.770'],[0.0594,'-1.06'],[0.3977,'-8.97'],[0.4085,'-9.13']],
[[0.3323,'1:18.142'],[0.0703,'-1.27'],[0.3948,'-8.92'],[0.4090,'-9.14']],
[[0.3339,'1:18.514'],[0.0691,'-1.24'],[0.3909,'-8.86'],[0.4096,'-9.14']],
[[0.3354,'1:18.886'],[0.0754,'-1.36'],[0.3878,'-8.82'],[0.4097,'-9.15']],
[[0.3370,'1:19.258'],[0.0785,'-1.42'],[0.3852,'-8.78'],[0.4096,'-9.14']],
[[0.3386,'1:19.630'],[0.0596,'-1.07'],[0.3855,'-8.78'],[0.4091,'-9.14']],
[[0.3402,'1:20.002'],[0.0765,'-1.38'],[0.3892,'-8.84'],[0.4082,'-9.12']],
[[0.3418,'1:20.375'],[0.0635,'-1.14'],[0.3952,'-8.93'],[0.4077,'-9.12']],
[[0.3434,'1:20.747'],[0.0842,'-1.53'],[0.4067,'-9.10'],[0.4082,'-9.12']],
[[0.3449,'1:21.119'],[0.0857,'-1.56'],[0.4146,'-9.22'],[0.4088,'-9.13']],
[[0.3465,'1:21.491'],[0.0642,'-1.15'],[0.4009,'-9.01'],[0.4107,'-9.16']],
[[0.3481,'1:21.863'],[0.0635,'-1.14'],[0.3872,'-8.81'],[0.4126,'-9.19']],
[[0.3497,'1:22.235'],[0.0837,'-1.52'],[0.3825,'-8.74'],[0.4129,'-9.19']],
[[0.3513,'1:22.607'],[0.0848,'-1.54'],[0.3779,'-8.67'],[0.4132,'-9.20']],
[[0.3528,'1:22.979'],[0.0567,'-1.01'],[0.3685,'-8.53'],[0.4080,'-9.12']],
[[0.3544,'1:23.351'],[0.0867,'-1.58'],[0.3582,'-8.37'],[0.4017,'-9.03']],
[[0.3560,'1:23.723'],[0.0599,'-1.07'],[0.3659,'-8.49'],[0.3979,'-8.97']],
[[0.3576,'1:24.096'],[0.0755,'-1.36'],[0.3824,'-8.74'],[0.3953,'-8.93']],
[[0.3592,'1:24.468'],[0.0606,'-1.09'],[0.3903,'-8.86'],[0.3938,'-8.91']],
[[0.3608,'1:24.840'],[0.0904,'-1.65'],[0.3902,'-8.85'],[0.3935,'-8.90']],
[[0.3623,'1:25.212'],[0.0714,'-1.29'],[0.3923,'-8.89'],[0.3935,'-8.90']],
[[0.3639,'1:25.584'],[0.0889,'-1.62'],[0.3985,'-8.98'],[0.3942,'-8.91']],
[[0.3655,'1:25.956'],[0.0603,'-1.08'],[0.3999,'-9.00'],[0.3955,'-8.93']],
[[0.3671,'1:26.328'],[0.0565,'-1.01'],[0.3828,'-8.74'],[0.3997,'-9.00']],
[[0.3687,'1:26.700'],[0.0579,'-1.04'],[0.3668,'-8.50'],[0.4036,'-9.05']],
[[0.3703,'1:27.072'],[0.0588,'-1.05'],[0.3769,'-8.65'],[0.4017,'-9.03']],
[[0.3718,'1:27.445'],[0.0883,'-1.61'],[0.3869,'-8.80'],[0.3998,'-9.00']],
[[0.3734,'1:27.817'],[0.0578,'-1.04'],[0.3805,'-8.71'],[0.3971,'-8.96']],
[[0.3750,'1:28.189'],[0.1062,'-1.95'],[0.3720,'-8.58'],[0.3944,'-8.92']],
[[0.3766,'1:28.561'],[0.0571,'-1.02'],[0.3703,'-8.55'],[0.3916,'-8.87']],
[[0.3782,'1:28.933'],[0.0724,'-1.31'],[0.3712,'-8.57'],[0.3888,'-8.83']],
[[0.3797,'1:29.305'],[0.0593,'-1.06'],[0.3699,'-8.55'],[0.3875,'-8.81']],
[[0.3813,'1:29.677'],[0.0764,'-1.38'],[0.3671,'-8.51'],[0.3873,'-8.81']],
[[0.3829,'1:30.049'],[0.0588,'-1.05'],[0.3663,'-8.49'],[0.3877,'-8.82']],
[[0.3845,'1:30.421'],[0.0672,'-1.21'],[0.3683,'-8.52'],[0.3890,'-8.84']],
[[0.3861,'1:30.793'],[0.0732,'-1.32'],[0.3720,'-8.58'],[0.3901,'-8.85']],
[[0.3877,'1:31.166'],[0.0714,'-1.29'],[0.3807,'-8.71'],[0.3905,'-8.86']],
[[0.3892,'1:31.538'],[0.0630,'-1.13'],[0.3879,'-8.82'],[0.3911,'-8.87']],
[[0.3908,'1:31.910'],[0.0901,'-1.64'],[0.3815,'-8.72'],[0.3929,'-8.89']],
[[0.3924,'1:32.282'],[0.0588,'-1.05'],[0.3752,'-8.63'],[0.3948,'-8.92']],
[[0.3940,'1:32.654'],[0.0638,'-1.15'],[0.3782,'-8.67'],[0.3934,'-8.90']],
[[0.3956,'1:33.026'],[0.0640,'-1.15'],[0.3817,'-8.73'],[0.3919,'-8.88']],
[[0.3972,'1:33.398'],[0.0572,'-1.02'],[0.3832,'-8.75'],[0.3914,'-8.87']],
[[0.3987,'1:33.770'],[0.0614,'-1.10'],[0.3841,'-8.76'],[0.3910,'-8.87']],
[[0.4003,'1:34.142'],[0.0760,'-1.37'],[0.3827,'-8.74'],[0.3910,'-8.86']],
[[0.4019,'1:34.515'],[0.0792,'-1.43'],[0.3798,'-8.70'],[0.3911,'-8.87']],
[[0.4035,'1:34.887'],[0.0773,'-1.40'],[0.3802,'-8.70'],[0.3916,'-8.87']],
[[0.4051,'1:35.259'],[0.0619,'-1.11'],[0.3842,'-8.76'],[0.3923,'-8.88']],
[[0.4066,'1:35.631'],[0.0608,'-1.09'],[0.4127,'-9.19'],[0.3982,'-8.97']],
[[0.4082,'1:36.003'],[0.1443,'-2.71'],[0.4937,'-10.41'],[0.4152,'-9.23']],
[[0.4098,'1:36.375'],[0.1582,'-2.99'],[0.5631,'-11.45'],[0.4328,'-9.49']],
[[0.4114,'1:36.747'],[0.0694,'-1.25'],[0.5716,'-11.57'],[0.4539,'-9.81']],
[[0.4130,'1:37.119'],[0.0635,'-1.14'],[0.5799,'-11.70'],[0.4750,'-10.13']],
[[0.4146,'1:37.491'],[0.0614,'-1.10'],[0.5124,'-10.69'],[0.4986,'-10.48']],
[[0.4161,'1:37.864'],[0.1404,'-2.63'],[0.4449,'-9.67'],[0.5223,'-10.83']],
[[0.4177,'1:38.236'],[0.0706,'-1.27'],[0.4265,'-9.40'],[0.5226,'-10.84']],
[[0.4193,'1:38.608'],[0.0575,'-1.03'],[0.4170,'-9.25'],[0.5186,'-10.78']],
[[0.4209,'1:38.980'],[0.0748,'-1.35'],[0.4284,'-9.43'],[0.5098,'-10.65']],
[[0.4225,'1:39.352'],[0.1520,'-2.86'],[0.4494,'-9.74'],[0.4987,'-10.48']],
[[0.4241,'1:39.724'],[0.0586,'-1.05'],[0.4602,'-9.90'],[0.4890,'-10.34']],
[[0.4256,'1:40.096'],[0.1080,'-1.98'],[0.4623,'-9.93'],[0.4804,'-10.21']],
[[0.4272,'1:40.468'],[0.0783,'-1.42'],[0.4593,'-9.89'],[0.4747,'-10.12']],
[[0.4288,'1:40.840'],[0.0971,'-1.77'],[0.4479,'-9.72'],[0.4736,'-10.10']],
[[0.4304,'1:41.212'],[0.0667,'-1.20'],[0.4403,'-9.61'],[0.4734,'-10.10']],
[[0.4320,'1:41.585'],[0.0928,'-1.69'],[0.4462,'-9.69'],[0.4764,'-10.15']],
[[0.4335,'1:41.957'],[0.0818,'-1.48'],[0.4523,'-9.78'],[0.4792,'-10.19']],
[[0.4351,'1:42.329'],[0.1031,'-1.89'],[0.4616,'-9.92'],[0.4788,'-10.18']],
[[0.4367,'1:42.701'],[0.0906,'-1.65'],[0.4710,'-10.06'],[0.4784,'-10.18']],
[[0.4383,'1:43.073'],[0.0972,'-1.78'],[0.4680,'-10.02'],[0.4800,'-10.20']],
[[0.4399,'1:43.445'],[0.0865,'-1.57'],[0.4637,'-9.96'],[0.4819,'-10.23']],
[[0.4415,'1:43.817'],[0.1143,'-2.11'],[0.4574,'-9.86'],[0.4837,'-10.26']],
[[0.4430,'1:44.189'],[0.0873,'-1.59'],[0.4504,'-9.76'],[0.4855,'-10.28']],
[[0.4446,'1:44.561'],[0.1014,'-1.86'],[0.4487,'-9.73'],[0.4842,'-10.26']],
[[0.4462,'1:44.934'],[0.0710,'-1.28'],[0.4508,'-9.76'],[0.4806,'-10.21']],
[[0.4478,'1:45.306'],[0.0838,'-1.52'],[0.4532,'-9.80'],[0.4785,'-10.18']],
[[0.4494,'1:45.678'],[0.0565,'-1.01'],[0.4560,'-9.84'],[0.4781,'-10.17']],
[[0.4509,'1:46.050'],[0.0570,'-1.02'],[0.4572,'-9.86'],[0.4776,'-10.16']],
[[0.4525,'1:46.422'],[0.1051,'-1.93'],[0.4542,'-9.81'],[0.4763,'-10.14']],
[[0.4541,'1:46.794'],[0.0793,'-1.43'],[0.4502,'-9.75'],[0.4752,'-10.13']],
[[0.4557,'1:47.166'],[0.0993,'-1.82'],[0.4390,'-9.59'],[0.4754,'-10.13']],
[[0.4573,'1:47.538'],[0.0619,'-1.11'],[0.4278,'-9.42'],[0.4756,'-10.13']],
[[0.4589,'1:47.910'],[0.0582,'-1.04'],[0.4353,'-9.53'],[0.4743,'-10.11']],
[[0.4604,'1:48.282'],[0.0573,'-1.02'],[0.4434,'-9.65'],[0.4730,'-10.09']],
[[0.4620,'1:48.655'],[0.0947,'-1.73'],[0.4444,'-9.67'],[0.4719,'-10.08']],
[[0.4636,'1:49.027'],[0.0602,'-1.08'],[0.4438,'-9.66'],[0.4710,'-10.06']],
[[0.4652,'1:49.399'],[0.1057,'-1.94'],[0.4385,'-9.58'],[0.4675,'-10.01']],
[[0.4668,'1:49.771'],[0.0565,'-1.01'],[0.4308,'-9.46'],[0.4628,'-9.94']],
[[0.4684,'1:50.143'],[0.0729,'-1.32'],[0.4280,'-9.42'],[0.4597,'-9.90']],
[[0.4699,'1:50.515'],[0.0603,'-1.08'],[0.4302,'-9.45'],[0.4584,'-9.88']],
[[0.4715,'1:50.887'],[0.0657,'-1.18'],[0.4312,'-9.47'],[0.4564,'-9.85']],
[[0.4731,'1:51.259'],[0.0593,'-1.06'],[0.4299,'-9.45'],[0.4533,'-9.80']],
[[0.4747,'1:51.631'],[0.0591,'-1.06'],[0.4290,'-9.44'],[0.4503,'-9.75']],
[[0.4763,'1:52.004'],[0.0955,'-1.74'],[0.4299,'-9.45'],[0.4481,'-9.72']],
[[0.4778,'1:52.376'],[0.0967,'-1.77'],[0.4307,'-9.46'],[0.4458,'-9.69']],
[[0.4794,'1:52.748'],[0.0850,'-1.54'],[0.4290,'-9.44'],[0.4449,'-9.67']],
[[0.4810,'1:53.120'],[0.1270,'-2.36'],[0.4274,'-9.41'],[0.4441,'-9.66']],
[[0.4826,'1:53.492'],[0.1061,'-1.95'],[0.4253,'-9.38'],[0.4474,'-9.71']],
[[0.4842,'1:53.864'],[0.1248,'-2.31'],[0.4232,'-9.35'],[0.4515,'-9.77']],
[[0.4858,'1:54.236'],[0.1127,'-2.08'],[0.4218,'-9.33'],[0.4515,'-9.77']],
[[0.4873,'1:54.608'],[0.1084,'-1.99'],[0.4208,'-9.31'],[0.4500,'-9.75']],
[[0.4889,'1:54.980'],[0.1305,'-2.43'],[0.4188,'-9.28'],[0.4482,'-9.72']],
[[0.4905,'1:55.353'],[0.1019,'-1.87'],[0.4162,'-9.24'],[0.4463,'-9.69']],
[[0.4921,'1:55.725'],[0.1310,'-2.44'],[0.4155,'-9.23'],[0.4442,'-9.66']],
[[0.4937,'1:56.097'],[0.1158,'-2.14'],[0.4180,'-9.27'],[0.4419,'-9.63']],
[[0.4953,'1:56.469'],[0.1141,'-2.10'],[0.4196,'-9.29'],[0.4404,'-9.61']],
[[0.4968,'1:56.841'],[0.0908,'-1.65'],[0.4183,'-9.27'],[0.4415,'-9.62']],
[[0.4984,'1:57.213'],[0.0998,'-1.83'],[0.4163,'-9.24'],[0.4423,'-9.63']],
[[0.5000,'1:57.585'],[0.1041,'-1.91'],[0.4052,'-9.08'],[0.4395,'-9.59']],
[[0.5016,'1:57.957'],[0.0776,'-1.40'],[0.3942,'-8.91'],[0.4368,'-9.55']],
[[0.5032,'1:58.329'],[0.0760,'-1.37'],[0.3939,'-8.91'],[0.4333,'-9.50']],
[[0.5047,'1:58.701'],[0.0764,'-1.38'],[0.3946,'-8.92'],[0.4299,'-9.45']],
[[0.5063,'1:59.074'],[0.0848,'-1.54'],[0.3933,'-8.90'],[0.4225,'-9.34']],
[[0.5079,'1:59.446'],[0.0900,'-1.64'],[0.3915,'-8.87'],[0.4140,'-9.21']],
[[0.5095,'1:59.818'],[0.0942,'-1.72'],[0.3981,'-8.97'],[0.4105,'-9.16']],
[[0.5111,'2:00.190'],[0.0957,'-1.75'],[0.4101,'-9.15'],[0.4102,'-9.15']],
[[0.5127,'2:00.562'],[0.0720,'-1.30'],[0.4158,'-9.24'],[0.4104,'-9.16']],
[[0.5142,'2:00.934'],[0.1159,'-2.14'],[0.4137,'-9.21'],[0.4109,'-9.16']],
[[0.5158,'2:01.306'],[0.0793,'-1.43'],[0.4084,'-9.13'],[0.4118,'-9.18']],
[[0.5174,'2:01.678'],[0.0979,'-1.79'],[0.3955,'-8.93'],[0.4136,'-9.20']],
[[0.5190,'2:02.050'],[0.0816,'-1.48'],[0.3833,'-8.75'],[0.4152,'-9.23']],
[[0.5206,'2:02.423'],[0.1238,'-2.30'],[0.3763,'-8.65'],[0.4156,'-9.23']],
[[0.5222,'2:02.795'],[0.0726,'-1.31'],[0.3694,'-8.54'],[0.4159,'-9.24']],
[[0.5237,'2:03.167'],[0.0575,'-1.03'],[0.3743,'-8.61'],[0.4167,'-9.25']],
[[0.5253,'2:03.539'],[0.0572,'-1.02'],[0.3794,'-8.69'],[0.4175,'-9.26']],
[[0.5269,'2:03.911'],[0.0591,'-1.06'],[0.3699,'-8.55'],[0.4142,'-9.21']],
[[0.5285,'2:04.283'],[0.0640,'-1.15'],[0.3573,'-8.36'],[0.4099,'-9.15']],
[[0.5301,'2:04.655'],[0.0617,'-1.11'],[0.3605,'-8.41'],[0.4074,'-9.11']],
[[0.5316,'2:05.027'],[0.0615,'-1.10'],[0.3717,'-8.58'],[0.4057,'-9.09']],
[[0.5332,'2:05.399'],[0.0645,'-1.16'],[0.3760,'-8.64'],[0.4026,'-9.04']],
[[0.5348,'2:05.772'],[0.0667,'-1.20'],[0.3735,'-8.60'],[0.3982,'-8.97']],
[[0.5364,'2:06.144'],[0.0568,'-1.02'],[0.3691,'-8.54'],[0.3938,'-8.91']],
[[0.5380,'2:06.516'],[0.0611,'-1.09'],[0.3608,'-8.41'],[0.3897,'-8.85']],
[[0.5396,'2:06.888'],[0.0635,'-1.14'],[0.3532,'-8.30'],[0.3854,'-8.78']],
[[0.5411,'2:07.260'],[0.0589,'-1.06'],[0.3482,'-8.22'],[0.3805,'-8.71']],
[[0.5427,'2:07.632'],[0.0697,'-1.25'],[0.3435,'-8.15'],[0.3757,'-8.64']],
[[0.5443,'2:08.004'],[0.0583,'-1.04'],[0.3464,'-8.20'],[0.3739,'-8.61']],
[[0.5459,'2:08.376'],[0.0601,'-1.08'],[0.3493,'-8.24'],[0.3720,'-8.58']],
[[0.5475,'2:08.748'],[0.0570,'-1.02'],[0.3525,'-8.29'],[0.3697,'-8.55']],
[[0.5491,'2:09.120'],[0.0584,'-1.04'],[0.3558,'-8.34'],[0.3672,'-8.51']],
[[0.5506,'2:09.493'],[0.0570,'-1.02'],[0.3544,'-8.32'],[0.3652,'-8.48']],
[[0.5522,'2:09.865'],[0.0565,'-1.01'],[0.3511,'-8.27'],[0.3633,'-8.45']],
[[0.5538,'2:10.237'],[0.0705,'-1.27'],[0.3529,'-8.29'],[0.3633,'-8.45']],
[[0.5554,'2:10.609'],[0.0594,'-1.06'],[0.3585,'-8.38'],[0.3648,'-8.47']],
[[0.5570,'2:10.981'],[0.0572,'-1.02'],[0.3684,'-8.53'],[0.3680,'-8.52']],
[[0.5585,'2:11.353'],[0.0573,'-1.03'],[0.3842,'-8.76'],[0.3739,'-8.61']],
[[0.5601,'2:11.725'],[0.0797,'-1.44'],[0.3915,'-8.87'],[0.3792,'-8.69']],
[[0.5617,'2:12.097'],[0.0632,'-1.13'],[0.3734,'-8.60'],[0.3827,'-8.74']],
[[0.5633,'2:12.469'],[0.0565,'-1.01'],[0.3565,'-8.35'],[0.3860,'-8.79']],
[[0.5649,'2:12.842'],[0.0565,'-1.01'],[0.3509,'-8.26'],[0.3859,'-8.79']],
[[0.5665,'2:13.214'],[0.0646,'-1.16'],[0.3453,'-8.18'],[0.3859,'-8.79']],
[[0.5680,'2:13.586'],[0.0571,'-1.02'],[0.3505,'-8.26'],[0.3832,'-8.75']],
[[0.5696,'2:13.958'],[0.0698,'-1.26'],[0.3563,'-8.35'],[0.3803,'-8.71']],
[[0.5712,'2:14.330'],[0.0607,'-1.09'],[0.3579,'-8.37'],[0.3777,'-8.67']],
[[0.5728,'2:14.702'],[0.0670,'-1.20'],[0.3583,'-8.37'],[0.3751,'-8.63']],
[[0.5744,'2:15.074'],[0.0581,'-1.04'],[0.3578,'-8.37'],[0.3744,'-8.62']],
[[0.5759,'2:15.446'],[0.0582,'-1.04'],[0.3569,'-8.35'],[0.3749,'-8.62']],
[[0.5775,'2:15.818'],[0.0611,'-1.09'],[0.3576,'-8.36'],[0.3753,'-8.63']],
[[0.5791,'2:16.190'],[0.0573,'-1.02'],[0.3602,'-8.40'],[0.3757,'-8.64']],
[[0.5807,'2:16.563'],[0.0750,'-1.35'],[0.3605,'-8.41'],[0.3749,'-8.62']],
[[0.5823,'2:16.935'],[0.0610,'-1.09'],[0.3559,'-8.34'],[0.3716,'-8.57']],
[[0.5839,'2:17.307'],[0.0694,'-1.25'],[0.3528,'-8.29'],[0.3687,'-8.53']],
[[0.5854,'2:17.679'],[0.0667,'-1.20'],[0.3580,'-8.37'],[0.3688,'-8.53']],
[[0.5870,'2:18.051'],[0.0586,'-1.05'],[0.3632,'-8.45'],[0.3688,'-8.53']],
[[0.5886,'2:18.423'],[0.0578,'-1.03'],[0.3595,'-8.39'],[0.3696,'-8.54']],
[[0.5902,'2:18.795'],[0.0577,'-1.03'],[0.3558,'-8.34'],[0.3703,'-8.56']],
[[0.5918,'2:19.167'],[0.0582,'-1.04'],[0.3540,'-8.31'],[0.3702,'-8.55']],
[[0.5934,'2:19.539'],[0.0569,'-1.02'],[0.3525,'-8.29'],[0.3699,'-8.55']],
[[0.5949,'2:19.912'],[0.0568,'-1.02'],[0.3505,'-8.26'],[0.3709,'-8.56']],
[[0.5965,'2:20.284'],[0.0653,'-1.17'],[0.3482,'-8.22'],[0.3724,'-8.59']],
[[0.5981,'2:20.656'],[0.0577,'-1.03'],[0.3483,'-8.22'],[0.3721,'-8.58']],
[[0.5997,'2:21.028'],[0.0565,'-1.01'],[0.3504,'-8.26'],[0.3701,'-8.55']],
[[0.6013,'2:21.400'],[0.0652,'-1.17'],[0.3522,'-8.28'],[0.3688,'-8.53']],
[[0.6028,'2:21.772'],[0.0570,'-1.02'],[0.3534,'-8.30'],[0.3685,'-8.53']],
[[0.6044,'2:22.144'],[0.0709,'-1.28'],[0.3527,'-8.29'],[0.3675,'-8.51']],
[[0.6060,'2:22.516'],[0.0596,'-1.07'],[0.3455,'-8.18'],[0.3640,'-8.46']],
[[0.6076,'2:22.888'],[0.0595,'-1.07'],[0.3391,'-8.09'],[0.3606,'-8.41']],
[[0.6092,'2:23.261'],[0.0617,'-1.11'],[0.3450,'-8.18'],[0.3603,'-8.40']],
[[0.6108,'2:23.633'],[0.0678,'-1.22'],[0.3510,'-8.26'],[0.3599,'-8.40']],
[[0.6123,'2:24.005'],[0.0577,'-1.03'],[0.3623,'-8.43'],[0.3622,'-8.43']],
[[0.6139,'2:24.377'],[0.0670,'-1.20'],[0.3743,'-8.61'],[0.3647,'-8.47']],
[[0.6155,'2:24.749'],[0.0594,'-1.06'],[0.3702,'-8.55'],[0.3665,'-8.50']],
[[0.6171,'2:25.121'],[0.0577,'-1.03'],[0.3604,'-8.41'],[0.3681,'-8.52']],
[[0.6187,'2:25.493'],[0.0604,'-1.08'],[0.3536,'-8.30'],[0.3703,'-8.56']],
[[0.6203,'2:25.865'],[0.0833,'-1.51'],[0.3489,'-8.23'],[0.3731,'-8.60']],
[[0.6218,'2:26.237'],[0.0567,'-1.01'],[0.3461,'-8.19'],[0.3740,'-8.61']],
[[0.6234,'2:26.609'],[0.0566,'-1.01'],[0.3457,'-8.19'],[0.3725,'-8.59']],
[[0.6250,'2:26.982'],[0.0640,'-1.15'],[0.3468,'-8.20'],[0.3709,'-8.56']],
[[0.6266,'2:27.354'],[0.0594,'-1.06'],[0.3518,'-8.28'],[0.3692,'-8.54']],
[[0.6282,'2:27.726'],[0.0728,'-1.31'],[0.3565,'-8.35'],[0.3677,'-8.51']],
[[0.6297,'2:28.098'],[0.0592,'-1.06'],[0.3586,'-8.38'],[0.3674,'-8.51']],
[[0.6313,'2:28.470'],[0.0671,'-1.21'],[0.3608,'-8.41'],[0.3671,'-8.51']],
[[0.6329,'2:28.842'],[0.0593,'-1.06'],[0.3574,'-8.36'],[0.3666,'-8.50']],
[[0.6345,'2:29.214'],[0.0676,'-1.21'],[0.3538,'-8.31'],[0.3661,'-8.49']],
[[0.6361,'2:29.586'],[0.0565,'-1.01'],[0.3559,'-8.34'],[0.3658,'-8.49']],
[[0.6377,'2:29.958'],[0.0869,'-1.58'],[0.3596,'-8.39'],[0.3655,'-8.48']],
[[0.6392,'2:30.331'],[0.0716,'-1.29'],[0.3614,'-8.42'],[0.3664,'-8.50']],
[[0.6408,'2:30.703'],[0.1151,'-2.12'],[0.3623,'-8.43'],[0.3678,'-8.52']],
[[0.6424,'2:31.075'],[0.0731,'-1.32'],[0.3637,'-8.46'],[0.3692,'-8.54']],
[[0.6440,'2:31.447'],[0.1228,'-2.28'],[0.3656,'-8.48'],[0.3705,'-8.56']],
[[0.6456,'2:31.819'],[0.0623,'-1.12'],[0.3684,'-8.53'],[0.3719,'-8.58']],
[[0.6472,'2:32.191'],[0.0582,'-1.04'],[0.3728,'-8.59'],[0.3735,'-8.60']],
[[0.6487,'2:32.563'],[0.0575,'-1.03'],[0.3761,'-8.64'],[0.3755,'-8.63']],
[[0.6503,'2:32.935'],[0.0599,'-1.07'],[0.3744,'-8.62'],[0.3794,'-8.69']],
[[0.6519,'2:33.307'],[0.0776,'-1.40'],[0.3727,'-8.59'],[0.3834,'-8.75']],
[[0.6535,'2:33.679'],[0.0785,'-1.42'],[0.3778,'-8.67'],[0.3844,'-8.77']],
[[0.6551,'2:34.052'],[0.0966,'-1.76'],[0.3829,'-8.74'],[0.3855,'-8.78']],
[[0.6566,'2:34.424'],[0.0735,'-1.33'],[0.3813,'-8.72'],[0.3872,'-8.81']],
[[0.6582,'2:34.796'],[0.1046,'-1.92'],[0.3785,'-8.68'],[0.3890,'-8.84']],
[[0.6598,'2:35.168'],[0.0576,'-1.03'],[0.3668,'-8.50'],[0.3873,'-8.81']],
[[0.6614,'2:35.540'],[0.0580,'-1.04'],[0.3512,'-8.27'],[0.3841,'-8.76']],
[[0.6630,'2:35.912'],[0.0565,'-1.01'],[0.3464,'-8.20'],[0.3816,'-8.72']],
[[0.6646,'2:36.284'],[0.0818,'-1.48'],[0.3508,'-8.26'],[0.3796,'-8.69']],
[[0.6661,'2:36.656'],[0.0581,'-1.04'],[0.3556,'-8.33'],[0.3773,'-8.66']],
[[0.6677,'2:37.028'],[0.0583,'-1.04'],[0.3613,'-8.42'],[0.3742,'-8.61']],
[[0.6693,'2:37.401'],[0.0672,'-1.21'],[0.3655,'-8.48'],[0.3716,'-8.57']],
[[0.6709,'2:37.773'],[0.0689,'-1.24'],[0.3647,'-8.47'],[0.3706,'-8.56']],
[[0.6725,'2:38.145'],[0.0652,'-1.17'],[0.3639,'-8.46'],[0.3696,'-8.54']],
[[0.6741,'2:38.517'],[0.1001,'-1.83'],[0.3638,'-8.46'],[0.3698,'-8.55']],
[[0.6756,'2:38.889'],[0.0565,'-1.01'],[0.3637,'-8.46'],[0.3700,'-8.55']],
[[0.6772,'2:39.261'],[0.0576,'-1.03'],[0.3626,'-8.44'],[0.3714,'-8.57']],
[[0.6788,'2:39.633'],[0.0639,'-1.15'],[0.3614,'-8.42'],[0.3728,'-8.59']],
[[0.6804,'2:40.005'],[0.0569,'-1.02'],[0.3552,'-8.33'],[0.3737,'-8.61']],
[[0.6820,'2:40.377'],[0.0646,'-1.16'],[0.3474,'-8.21'],[0.3743,'-8.62']],
[[0.6835,'2:40.750'],[0.0569,'-1.02'],[0.3556,'-8.33'],[0.3751,'-8.63']],
[[0.6851,'2:41.122'],[0.1022,'-1.87'],[0.3743,'-8.61'],[0.3758,'-8.64']],
[[0.6867,'2:41.494'],[0.0825,'-1.50'],[0.3757,'-8.63'],[0.3757,'-8.63']],
[[0.6883,'2:41.866'],[0.0675,'-1.21'],[0.3553,'-8.33'],[0.3743,'-8.61']],
[[0.6899,'2:42.238'],[0.0596,'-1.07'],[0.3452,'-8.18'],[0.3733,'-8.60']],
[[0.6915,'2:42.610'],[0.0725,'-1.31'],[0.3607,'-8.41'],[0.3736,'-8.60']],
[[0.6930,'2:42.982'],[0.0578,'-1.03'],[0.3752,'-8.63'],[0.3744,'-8.62']],
[[0.6946,'2:43.354'],[0.0759,'-1.37'],[0.3832,'-8.75'],[0.3788,'-8.68']],
[[0.6962,'2:43.726'],[0.0566,'-1.01'],[0.3911,'-8.87'],[0.3832,'-8.75']],
[[0.6978,'2:44.098'],[0.0695,'-1.25'],[0.3879,'-8.82'],[0.3847,'-8.77']],
[[0.6994,'2:44.471'],[0.0776,'-1.40'],[0.3844,'-8.77'],[0.3861,'-8.79']],
[[0.7009,'2:44.843'],[0.0614,'-1.10'],[0.3764,'-8.65'],[0.3878,'-8.82']],
[[0.7025,'2:45.215'],[0.0565,'-1.01'],[0.3673,'-8.51'],[0.3895,'-8.84']],
[[0.7041,'2:45.587'],[0.0646,'-1.16'],[0.3703,'-8.55'],[0.3915,'-8.87']],
[[0.7057,'2:45.959'],[0.0585,'-1.05'],[0.3795,'-8.69'],[0.3936,'-8.90']],
[[0.7073,'2:46.331'],[0.0582,'-1.04'],[0.3827,'-8.74'],[0.3939,'-8.91']],
[[0.7089,'2:46.703'],[0.0960,'-1.75'],[0.3800,'-8.70'],[0.3925,'-8.89']],
[[0.7104,'2:47.075'],[0.0672,'-1.21'],[0.3768,'-8.65'],[0.3911,'-8.87']],
[[0.7120,'2:47.447'],[0.0701,'-1.26'],[0.3727,'-8.59'],[0.3898,'-8.85']],
[[0.7136,'2:47.820'],[0.0597,'-1.07'],[0.3694,'-8.54'],[0.3884,'-8.83']],
[[0.7152,'2:48.192'],[0.0566,'-1.01'],[0.3699,'-8.55'],[0.3870,'-8.80']],
[[0.7168,'2:48.564'],[0.0580,'-1.04'],[0.3702,'-8.55'],[0.3854,'-8.78']],
[[0.7184,'2:48.936'],[0.0592,'-1.06'],[0.3618,'-8.43'],[0.3828,'-8.74']],
[[0.7199,'2:49.308'],[0.0566,'-1.01'],[0.3535,'-8.30'],[0.3802,'-8.70']],
[[0.7215,'2:49.680'],[0.0913,'-1.66'],[0.3587,'-8.38'],[0.3788,'-8.68']],
[[0.7231,'2:50.052'],[0.0576,'-1.03'],[0.3660,'-8.49'],[0.3775,'-8.66']],
[[0.7247,'2:50.424'],[0.0568,'-1.02'],[0.3627,'-8.44'],[0.3762,'-8.64']],
[[0.7263,'2:50.796'],[0.0935,'-1.71'],[0.3554,'-8.33'],[0.3747,'-8.62']],
[[0.7278,'2:51.168'],[0.0565,'-1.01'],[0.3543,'-8.31'],[0.3744,'-8.62']],
[[0.7294,'2:51.541'],[0.0594,'-1.06'],[0.3582,'-8.37'],[0.3749,'-8.62']],
[[0.7310,'2:51.913'],[0.0658,'-1.18'],[0.3610,'-8.42'],[0.3754,'-8.63']],
[[0.7326,'2:52.285'],[0.0652,'-1.17'],[0.3625,'-8.44'],[0.3758,'-8.64']],
[[0.7342,'2:52.657'],[0.0572,'-1.02'],[0.3631,'-8.45'],[0.3758,'-8.64']],
[[0.7358,'2:53.029'],[0.0568,'-1.02'],[0.3614,'-8.42'],[0.3745,'-8.62']],
[[0.7373,'2:53.401'],[0.0753,'-1.36'],[0.3604,'-8.41'],[0.3733,'-8.60']],
[[0.7389,'2:53.773'],[0.0891,'-1.62'],[0.3681,'-8.52'],[0.3740,'-8.61']],
[[0.7405,'2:54.145'],[0.0936,'-1.71'],[0.3758,'-8.64'],[0.3748,'-8.62']],
[[0.7421,'2:54.517'],[0.0653,'-1.17'],[0.3658,'-8.49'],[0.3728,'-8.59']],
[[0.7437,'2:54.890'],[0.0602,'-1.08'],[0.3546,'-8.32'],[0.3707,'-8.56']],
[[0.7453,'2:55.262'],[0.0566,'-1.01'],[0.4042,'-9.06'],[0.3772,'-8.66']],
[[0.7468,'2:55.634'],[0.0988,'-1.81'],[0.4716,'-10.07'],[0.3862,'-8.79']],
[[0.7484,'2:56.006'],[0.1638,'-3.11'],[0.4567,'-9.85'],[0.4002,'-9.00']],
[[0.7500,'2:56.378'],[0.0922,'-1.68'],[0.3908,'-8.86'],[0.4174,'-9.26']],
[[0.7516,'2:56.750'],[0.0568,'-1.02'],[0.3464,'-8.20'],[0.4242,'-9.36']],
[[0.7532,'2:57.122'],[0.0568,'-1.02'],[0.3270,'-7.91'],[0.4189,'-9.28']],
[[0.7547,'2:57.494'],[0.0606,'-1.09'],[0.3118,'-7.68'],[0.4091,'-9.14']],
[[0.7563,'2:57.866'],[0.0603,'-1.08'],[0.3058,'-7.59'],[0.3888,'-8.83']],
[[0.7579,'2:58.239'],[0.0568,'-1.02'],[0.3015,'-7.52'],[0.3692,'-8.54']],
[[0.7595,'2:58.611'],[0.0576,'-1.03'],[0.3069,'-7.60'],[0.3536,'-8.30']],
[[0.7611,'2:58.983'],[0.0572,'-1.02'],[0.3122,'-7.68'],[0.3380,'-8.07']],
[[0.7627,'2:59.355'],[0.0711,'-1.28'],[0.3262,'-7.89'],[0.3370,'-8.06']],
[[0.7642,'2:59.727'],[0.0565,'-1.01'],[0.3402,'-8.10'],[0.3362,'-8.04']],
[[0.7658,'3:00.099'],[0.0586,'-1.05'],[0.3372,'-8.06'],[0.3362,'-8.04']],
[[0.7674,'3:00.471'],[0.0628,'-1.13'],[0.3307,'-7.96'],[0.3364,'-8.05']],
[[0.7690,'3:00.843'],[0.0611,'-1.09'],[0.3283,'-7.93'],[0.3378,'-8.07']],
[[0.7706,'3:01.215'],[0.0565,'-1.01'],[0.3279,'-7.92'],[0.3398,'-8.10']],
[[0.7722,'3:01.587'],[0.0567,'-1.01'],[0.3269,'-7.90'],[0.3406,'-8.11']],
[[0.7737,'3:01.960'],[0.0568,'-1.02'],[0.3254,'-7.88'],[0.3402,'-8.10']],
[[0.7753,'3:02.332'],[0.0573,'-1.03'],[0.3254,'-7.88'],[0.3393,'-8.09']],
[[0.7769,'3:02.704'],[0.0565,'-1.01'],[0.3282,'-7.92'],[0.3375,'-8.06']],
[[0.7785,'3:03.076'],[0.0610,'-1.09'],[0.3287,'-7.93'],[0.3357,'-8.04']],
[[0.7801,'3:03.448'],[0.0663,'-1.19'],[0.3200,'-7.80'],[0.3339,'-8.01']],
[[0.7816,'3:03.820'],[0.0568,'-1.02'],[0.3120,'-7.68'],[0.3322,'-7.98']],
[[0.7832,'3:04.192'],[0.0661,'-1.19'],[0.3158,'-7.74'],[0.3320,'-7.98']],
[[0.7848,'3:04.564'],[0.0567,'-1.01'],[0.3196,'-7.79'],[0.3317,'-7.98']],
[[0.7864,'3:04.936'],[0.0588,'-1.05'],[0.3224,'-7.84'],[0.3311,'-7.97']],
[[0.7880,'3:05.309'],[0.0567,'-1.01'],[0.3250,'-7.88'],[0.3304,'-7.96']],
[[0.7896,'3:05.681'],[0.0568,'-1.02'],[0.3170,'-7.76'],[0.3287,'-7.93']],
[[0.7911,'3:06.053'],[0.0580,'-1.04'],[0.3052,'-7.58'],[0.3265,'-7.90']],
[[0.7927,'3:06.425'],[0.0573,'-1.03'],[0.2999,'-7.50'],[0.3244,'-7.87']],
[[0.7943,'3:06.797'],[0.0566,'-1.01'],[0.2995,'-7.49'],[0.3222,'-7.83']],
[[0.7959,'3:07.169'],[0.0566,'-1.01'],[0.2994,'-7.49'],[0.3198,'-7.80']],
[[0.7975,'3:07.541'],[0.0568,'-1.02'],[0.2997,'-7.49'],[0.3171,'-7.76']],
[[0.7991,'3:07.913'],[0.0567,'-1.01'],[0.2991,'-7.49'],[0.3141,'-7.71']],
[[0.8006,'3:08.285'],[0.0586,'-1.05'],[0.2963,'-7.44'],[0.3105,'-7.66']],
[[0.8022,'3:08.658'],[0.0566,'-1.01'],[0.2938,'-7.41'],[0.3074,'-7.61']],
[[0.8038,'3:09.030'],[0.0572,'-1.02'],[0.2938,'-7.41'],[0.3082,'-7.62']],
[[0.8054,'3:09.402'],[0.0565,'-1.01'],[0.2939,'-7.41'],[0.3091,'-7.64']],
[[0.8070,'3:09.774'],[0.0570,'-1.02'],[0.2933,'-7.40'],[0.3093,'-7.64']],
[[0.8085,'3:10.146'],[0.0592,'-1.06'],[0.2927,'-7.39'],[0.3094,'-7.64']],
[[0.8101,'3:10.518'],[0.0575,'-1.03'],[0.2935,'-7.40'],[0.3092,'-7.64']],
[[0.8117,'3:10.890'],[0.0566,'-1.01'],[0.2946,'-7.42'],[0.3088,'-7.63']],
[[0.8133,'3:11.262'],[0.0592,'-1.06'],[0.2979,'-7.47'],[0.3088,'-7.63']],
[[0.8149,'3:11.634'],[0.0569,'-1.02'],[0.3026,'-7.54'],[0.3091,'-7.64']],
[[0.8165,'3:12.006'],[0.0640,'-1.15'],[0.3055,'-7.58'],[0.3091,'-7.64']],
[[0.8180,'3:12.379'],[0.0589,'-1.05'],[0.3066,'-7.60'],[0.3089,'-7.63']],
[[0.8196,'3:12.751'],[0.0566,'-1.01'],[0.3061,'-7.59'],[0.3091,'-7.64']],
[[0.8212,'3:13.123'],[0.0567,'-1.01'],[0.3023,'-7.53'],[0.3099,'-7.65']],
[[0.8228,'3:13.495'],[0.0578,'-1.03'],[0.2990,'-7.49'],[0.3107,'-7.66']],
[[0.8244,'3:13.867'],[0.0568,'-1.02'],[0.2988,'-7.48'],[0.3118,'-7.68']],
[[0.8259,'3:14.239'],[0.0598,'-1.07'],[0.2986,'-7.48'],[0.3129,'-7.69']],
[[0.8275,'3:14.611'],[0.0574,'-1.03'],[0.2943,'-7.41'],[0.3127,'-7.69']],
[[0.8291,'3:14.983'],[0.0565,'-1.01'],[0.2899,'-7.35'],[0.3124,'-7.69']],
[[0.8307,'3:15.355'],[0.0565,'-1.01'],[0.2894,'-7.34'],[0.3108,'-7.66']],
[[0.8323,'3:15.728'],[0.0565,'-1.01'],[0.2895,'-7.34'],[0.3088,'-7.63']],
[[0.8339,'3:16.100'],[0.0583,'-1.04'],[0.2907,'-7.36'],[0.3071,'-7.61']],
[[0.8354,'3:16.472'],[0.0570,'-1.02'],[0.2924,'-7.39'],[0.3054,'-7.58']],
[[0.8370,'3:16.844'],[0.0565,'-1.01'],[0.2951,'-7.43'],[0.3044,'-7.57']],
[[0.8386,'3:17.216'],[0.0565,'-1.01'],[0.2989,'-7.48'],[0.3039,'-7.56']],
[[0.8402,'3:17.588'],[0.0589,'-1.05'],[0.3026,'-7.54'],[0.3043,'-7.56']],
[[0.8418,'3:17.960'],[0.0593,'-1.06'],[0.3062,'-7.59'],[0.3062,'-7.59']],
[[0.8434,'3:18.332'],[0.0566,'-1.01'],[0.3069,'-7.60'],[0.3081,'-7.62']],
[[0.8449,'3:18.704'],[0.0565,'-1.01'],[0.2974,'-7.46'],[0.3102,'-7.65']],
[[0.8465,'3:19.076'],[0.0576,'-1.03'],[0.2885,'-7.33'],[0.3122,'-7.68']],
[[0.8481,'3:19.449'],[0.0610,'-1.09'],[0.2901,'-7.35'],[0.3131,'-7.70']],
[[0.8497,'3:19.821'],[0.0565,'-1.01'],[0.2916,'-7.37'],[0.3139,'-7.71']],
[[0.8513,'3:20.193'],[0.0565,'-1.01'],[0.2894,'-7.34'],[0.3122,'-7.68']],
[[0.8528,'3:20.565'],[0.0568,'-1.02'],[0.2867,'-7.30'],[0.3102,'-7.65']],
[[0.8544,'3:20.937'],[0.0565,'-1.01'],[0.2890,'-7.34'],[0.3069,'-7.60']],
[[0.8560,'3:21.309'],[0.0568,'-1.02'],[0.2930,'-7.39'],[0.3031,'-7.55']],
[[0.8576,'3:21.681'],[0.0565,'-1.01'],[0.2889,'-7.33'],[0.3000,'-7.50']],
[[0.8592,'3:22.053'],[0.0568,'-1.02'],[0.2794,'-7.19'],[0.2973,'-7.46']],
[[0.8608,'3:22.425'],[0.0566,'-1.01'],[0.2757,'-7.14'],[0.2954,'-7.43']],
[[0.8623,'3:22.798'],[0.0565,'-1.01'],[0.2796,'-7.19'],[0.2944,'-7.42']],
[[0.8639,'3:23.170'],[0.0565,'-1.01'],[0.2829,'-7.24'],[0.2935,'-7.40']],
[[0.8655,'3:23.542'],[0.0568,'-1.02'],[0.2848,'-7.27'],[0.2925,'-7.39']],
[[0.8671,'3:23.914'],[0.0576,'-1.03'],[0.2869,'-7.30'],[0.2918,'-7.38']],
[[0.8687,'3:24.286'],[0.0566,'-1.01'],[0.2898,'-7.35'],[0.2919,'-7.38']],
[[0.8703,'3:24.658'],[0.0605,'-1.08'],[0.2928,'-7.39'],[0.2921,'-7.38']],
[[0.8718,'3:25.030'],[0.0565,'-1.01'],[0.2933,'-7.40'],[0.2931,'-7.40']],
[[0.8734,'3:25.402'],[0.0565,'-1.01'],[0.2937,'-7.41'],[0.2942,'-7.41']],
[[0.8750,'3:25.774'],[0.0583,'-1.04'],[0.2935,'-7.40'],[0.2954,'-7.43']],
[[0.8766,'3:26.147'],[0.0576,'-1.03'],[0.2932,'-7.40'],[0.2968,'-7.45']],
[[0.8782,'3:26.519'],[0.0565,'-1.01'],[0.2930,'-7.39'],[0.2979,'-7.47']],
[[0.8797,'3:26.891'],[0.0567,'-1.01'],[0.2929,'-7.39'],[0.2988,'-7.48']],
[[0.8813,'3:27.263'],[0.0569,'-1.02'],[0.2927,'-7.39'],[0.2994,'-7.49']],
[[0.8829,'3:27.635'],[0.0565,'-1.01'],[0.2926,'-7.39'],[0.2997,'-7.49']],
[[0.8845,'3:28.007'],[0.0569,'-1.02'],[0.2915,'-7.37'],[0.2998,'-7.50']],
[[0.8861,'3:28.379'],[0.0571,'-1.02'],[0.2890,'-7.33'],[0.2997,'-7.50']],
[[0.8877,'3:28.751'],[0.0566,'-1.01'],[0.2856,'-7.28'],[0.2995,'-7.49']],
[[0.8892,'3:29.123'],[0.0569,'-1.02'],[0.2791,'-7.19'],[0.2988,'-7.48']],
[[0.8908,'3:29.495'],[0.0594,'-1.06'],[0.2727,'-7.09'],[0.2981,'-7.47']],
[[0.8924,'3:29.868'],[0.0566,'-1.01'],[0.2755,'-7.13'],[0.2965,'-7.45']],
[[0.8940,'3:30.240'],[0.0565,'-1.01'],[0.2782,'-7.17'],[0.2950,'-7.42']],
[[0.8956,'3:30.612'],[0.0658,'-1.18'],[0.2836,'-7.25'],[0.2946,'-7.42']],
[[0.8972,'3:30.984'],[0.0565,'-1.01'],[0.2893,'-7.34'],[0.2944,'-7.42']],
[[0.8987,'3:31.356'],[0.0566,'-1.01'],[0.2933,'-7.40'],[0.2949,'-7.42']],
[[0.9003,'3:31.728'],[0.0566,'-1.01'],[0.2966,'-7.45'],[0.2956,'-7.43']],
[[0.9019,'3:32.100'],[0.0665,'-1.20'],[0.2993,'-7.49'],[0.2964,'-7.45']],
[[0.9035,'3:32.472'],[0.0592,'-1.06'],[0.3014,'-7.52'],[0.2973,'-7.46']],
[[0.9051,'3:32.844'],[0.0565,'-1.01'],[0.3013,'-7.52'],[0.2988,'-7.48']],
[[0.9066,'3:33.217'],[0.0568,'-1.02'],[0.2981,'-7.47'],[0.3014,'-7.52']],
[[0.9082,'3:33.589'],[0.0583,'-1.04'],[0.2948,'-7.42'],[0.3038,'-7.56']],
[[0.9098,'3:33.961'],[0.0569,'-1.02'],[0.2912,'-7.37'],[0.3054,'-7.58']],
[[0.9114,'3:34.333'],[0.0569,'-1.02'],[0.2875,'-7.31'],[0.3066,'-7.60']],
[[0.9130,'3:34.705'],[0.0644,'-1.16'],[0.2825,'-7.24'],[0.3037,'-7.55']],
[[0.9146,'3:35.077'],[0.0565,'-1.01'],[0.2775,'-7.16'],[0.3007,'-7.51']],
[[0.9161,'3:35.449'],[0.0578,'-1.03'],[0.2766,'-7.15'],[0.2986,'-7.48']],
[[0.9177,'3:35.821'],[0.0595,'-1.07'],[0.2761,'-7.14'],[0.2966,'-7.45']],
[[0.9193,'3:36.193'],[0.0565,'-1.01'],[0.2739,'-7.11'],[0.2937,'-7.40']],
[[0.9209,'3:36.565'],[0.0582,'-1.04'],[0.2713,'-7.07'],[0.2904,'-7.36']],
[[0.9225,'3:36.938'],[0.0565,'-1.01'],[0.2689,'-7.03'],[0.2879,'-7.32']],
[[0.9241,'3:37.310'],[0.0565,'-1.01'],[0.2666,'-7.00'],[0.2859,'-7.29']],
[[0.9256,'3:37.682'],[0.0584,'-1.05'],[0.2698,'-7.05'],[0.2848,'-7.27']],
[[0.9272,'3:38.054'],[0.0576,'-1.03'],[0.2797,'-7.20'],[0.2847,'-7.27']],
[[0.9288,'3:38.426'],[0.0595,'-1.07'],[0.2879,'-7.32'],[0.2851,'-7.28']],
[[0.9304,'3:38.798'],[0.0570,'-1.02'],[0.2922,'-7.38'],[0.2866,'-7.30']],
[[0.9320,'3:39.170'],[0.0566,'-1.01'],[0.2963,'-7.44'],[0.2885,'-7.33']],
[[0.9335,'3:39.542'],[0.0566,'-1.01'],[0.2999,'-7.50'],[0.2926,'-7.39']],
[[0.9351,'3:39.914'],[0.0566,'-1.01'],[0.3036,'-7.55'],[0.2968,'-7.45']],
[[0.9367,'3:40.287'],[0.0571,'-1.02'],[0.2917,'-7.37'],[0.3005,'-7.51']],
[[0.9383,'3:40.659'],[0.0580,'-1.04'],[0.2795,'-7.19'],[0.3043,'-7.56']],
[[0.9399,'3:41.031'],[0.0566,'-1.01'],[0.2744,'-7.12'],[0.3033,'-7.55']],
[[0.9415,'3:41.403'],[0.0566,'-1.01'],[0.2708,'-7.06'],[0.3014,'-7.52']],
[[0.9430,'3:41.775'],[0.0567,'-1.01'],[0.2728,'-7.09'],[0.2981,'-7.47']],
[[0.9446,'3:42.147'],[0.0589,'-1.05'],[0.2775,'-7.16'],[0.2942,'-7.41']],
[[0.9462,'3:42.519'],[0.0565,'-1.01'],[0.2804,'-7.21'],[0.2912,'-7.37']],
[[0.9478,'3:42.891'],[0.0573,'-1.02'],[0.2814,'-7.22'],[0.2890,'-7.34']],
[[0.9494,'3:43.263'],[0.0565,'-1.01'],[0.2841,'-7.26'],[0.2881,'-7.32']],
[[0.9509,'3:43.636'],[0.0628,'-1.13'],[0.2897,'-7.35'],[0.2893,'-7.34']],
[[0.9525,'3:44.008'],[0.0570,'-1.02'],[0.2941,'-7.41'],[0.2909,'-7.36']],
[[0.9541,'3:44.380'],[0.0571,'-1.02'],[0.2935,'-7.40'],[0.2942,'-7.41']],
[[0.9557,'3:44.752'],[0.0625,'-1.12'],[0.2927,'-7.39'],[0.2974,'-7.46']],
[[0.9573,'3:45.124'],[0.0565,'-1.01'],[0.2892,'-7.34'],[0.2980,'-7.47']],
[[0.9589,'3:45.496'],[0.0567,'-1.01'],[0.2856,'-7.28'],[0.2986,'-7.48']],
[[0.9604,'3:45.868'],[0.0572,'-1.02'],[0.2756,'-7.13'],[0.2960,'-7.44']],
[[0.9620,'3:46.240'],[0.0570,'-1.02'],[0.2647,'-6.97'],[0.2930,'-7.40']],
[[0.9636,'3:46.612'],[0.0572,'-1.02'],[0.2611,'-6.92'],[0.2907,'-7.36']],
[[0.9652,'3:46.984'],[0.0568,'-1.02'],[0.2602,'-6.90'],[0.2885,'-7.33']],
[[0.9668,'3:47.357'],[0.0565,'-1.01'],[0.2666,'-7.00'],[0.2871,'-7.31']],
[[0.9684,'3:47.729'],[0.0620,'-1.11'],[0.2785,'-7.18'],[0.2863,'-7.29']],
[[0.9699,'3:48.101'],[0.0574,'-1.03'],[0.2797,'-7.20'],[0.2849,'-7.27']],
[[0.9715,'3:48.473'],[0.0570,'-1.02'],[0.2657,'-6.99'],[0.2825,'-7.24']],
[[0.9731,'3:48.845'],[0.0566,'-1.01'],[0.2596,'-6.89'],[0.2813,'-7.22']],
[[0.9747,'3:49.217'],[0.0612,'-1.10'],[0.2762,'-7.14'],[0.2834,'-7.25']],
[[0.9763,'3:49.589'],[0.0621,'-1.11'],[0.3024,'-7.54'],[0.2876,'-7.31']],
[[0.9778,'3:49.961'],[0.0973,'-1.78'],[0.4164,'-9.25'],[0.3094,'-7.64']],
[[0.9794,'3:50.333'],[0.0566,'-1.01'],[0.5303,'-10.96'],[0.3312,'-7.97']],
[[0.9810,'3:50.706'],[0.0653,'-1.17'],[0.4332,'-9.50'],[0.3588,'-8.38']],
[[0.9826,'3:51.078'],[0.0568,'-1.02'],[0.3231,'-7.85'],[0.3867,'-8.80']],
[[0.9842,'3:51.450'],[0.0575,'-1.03'],[0.2960,'-7.44'],[0.3963,'-8.94']],
[[0.9858,'3:51.822'],[0.0576,'-1.03'],[0.2917,'-7.38'],[0.4008,'-9.01']],
[[0.9873,'3:52.194'],[0.0565,'-1.01'],[0.3156,'-7.73'],[0.4069,'-9.10']],
[[0.9889,'3:52.566'],[0.0586,'-1.05'],[0.3562,'-8.34'],[0.4140,'-9.21']],
[[0.9905,'3:52.938'],[0.1480,'-2.78'],[0.4776,'-10.16'],[0.4231,'-9.35']],
[[0.9921,'3:53.310'],[0.2448,'-4.88'],[0.6897,'-13.35'],[0.4344,'-9.52']],
[[0.9937,'3:53.682'],[0.3914,'-8.63'],[0.8870,'-16.30'],[0.4506,'-9.76']],
[[0.9953,'3:54.054'],[0.3839,'-8.41'],[1.0516,'-18.77'],[0.4776,'-10.16']],
[[0.9968,'3:54.427'],[0.4795,'-11.34'],[1.1904,'-20.86'],[0.5004,'-10.51']],
[[0.9984,'3:54.799'],[0.5591,'-14.23'],[1.1904,'-20.86'],[0.5004,'-10.51']],
[[1.0000,'3:55.171'],[1.0000,'-inf'],[1.1904,'-20.86'],[0.5004,'-10.51']],
],
xmaj:[
[0.0000,'0:00'],
[0.1276,'0:30'],
[0.2551,'1:00'],
[0.3827,'1:30'],
[0.5103,'2:00'],
[0.6378,'2:30'],
[0.7654,'3:00'],
[0.8930,'3:30'],
],
xmin:[
0.0425,
0.0850,
0.1701,
0.2126,
0.2977,
0.3402,
0.4252,
0.4677,
0.5528,
0.5953,
0.6804,
0.7229,
0.8079,
0.8504,
0.9355,
0.9780,
],
yrange:[
-18.00,
-3.00,
],
ymaj:[
[0.0000,'-3'],
[0.2000,'-6'],
[0.4000,'-9'],
[0.6000,'-12'],
[0.8000,'-15'],
[1.0000,'-18'],
],
ymin:[
0.0667,
0.1333,
0.2667,
0.3333,
0.4667,
0.5333,
0.6667,
0.7333,
0.8667,
0.9333,
],
};
var canv_0=document.getElementById('chart_0');
draw_chart(canv_0, data_0, -1, -1);
canv_0.addEventListener('mousemove', function (evt) { draw_chart(canv_0, data_0, evt.offsetX, evt.offsetY); }, false);
canv_0.addEventListener('mouseleave', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
window.addEventListener('resize', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
document.getElementById('regions').addEventListener('change', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
document.getElementById('markers').addEventListener('change', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);
</script>
</body>
</html>