-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpled.render_stats.html
949 lines (949 loc) · 58.8 KB
/
pled.render_stats.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>REAPER Render: pled</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: pled<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>pled.flac</td>
<td>4:11.542</td>
<td>-1.0</td>
<td>-1.0</td>
<td>0</td>
<td>0</td>
<td>-7.0</td>
<td>-9.3</td>
<td>-13.8</td>
<td>8.3</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:'pled.flac',
length:251.543,
series:['Peak','LUFS-M','LUFS-S'],
integrated:['LUFS-I',0.3585,'-13.75'],
dynrange:['LRA',[0.5133,'-18.40'],[0.2367,'-10.10']],
vals:[
[[0.0015,'0:00.371'],[1.0000,'-inf'],[0.6391,'-22.17'],[0.8980,'-29.94']],
[[0.0030,'0:00.743'],[0.9480,'-51.37'],[0.4418,'-16.25'],[0.6679,'-23.04']],
[[0.0044,'0:01.114'],[0.2655,'-5.36'],[0.4272,'-15.81'],[0.5987,'-20.96']],
[[0.0059,'0:01.486'],[0.3139,'-6.55'],[0.4463,'-16.39'],[0.5592,'-19.77']],
[[0.0074,'0:01.857'],[0.3283,'-6.91'],[0.4530,'-16.59'],[0.5350,'-19.05']],
[[0.0089,'0:02.229'],[0.4782,'-11.30'],[0.4540,'-16.62'],[0.5178,'-18.53']],
[[0.0103,'0:02.600'],[0.3953,'-8.74'],[0.4702,'-17.11'],[0.5050,'-18.15']],
[[0.0118,'0:02.972'],[0.4048,'-9.01'],[0.4998,'-17.99'],[0.4962,'-17.89']],
[[0.0133,'0:03.343'],[0.5385,'-13.43'],[0.5169,'-18.51'],[0.4930,'-17.79']],
[[0.0148,'0:03.715'],[0.4196,'-9.45'],[0.5134,'-18.40'],[0.4993,'-17.98']],
[[0.0162,'0:04.087'],[0.3868,'-8.50'],[0.5117,'-18.35'],[0.5075,'-18.22']],
[[0.0177,'0:04.458'],[0.4928,'-11.79'],[0.5164,'-18.49'],[0.5222,'-18.67']],
[[0.0192,'0:04.830'],[0.5218,'-12.82'],[0.5196,'-18.59'],[0.5359,'-19.08']],
[[0.0207,'0:05.201'],[0.4234,'-9.57'],[0.5030,'-18.09'],[0.5355,'-19.06']],
[[0.0222,'0:05.573'],[0.4693,'-11.01'],[0.4863,'-17.59'],[0.5350,'-19.05']],
[[0.0236,'0:05.944'],[0.4138,'-9.28'],[0.4166,'-15.50'],[0.5079,'-18.24']],
[[0.0251,'0:06.316'],[0.3854,'-8.46'],[0.3415,'-13.24'],[0.4781,'-17.34']],
[[0.0266,'0:06.687'],[0.1963,'-3.80'],[0.3676,'-14.03'],[0.4691,'-17.07']],
[[0.0281,'0:07.059'],[0.2641,'-5.33'],[0.4273,'-15.82'],[0.4669,'-17.01']],
[[0.0295,'0:07.431'],[0.4454,'-10.24'],[0.4610,'-16.83'],[0.4635,'-16.90']],
[[0.0310,'0:07.802'],[0.4279,'-9.70'],[0.4770,'-17.31'],[0.4593,'-16.78']],
[[0.0325,'0:08.174'],[0.4143,'-9.29'],[0.4901,'-17.70'],[0.4573,'-16.72']],
[[0.0340,'0:08.545'],[0.4088,'-9.13'],[0.4993,'-17.98'],[0.4582,'-16.75']],
[[0.0355,'0:08.917'],[0.4541,'-10.51'],[0.5012,'-18.03'],[0.4609,'-16.83']],
[[0.0369,'0:09.288'],[0.4735,'-11.14'],[0.4841,'-17.52'],[0.4678,'-17.03']],
[[0.0384,'0:09.660'],[0.3546,'-7.61'],[0.4699,'-17.10'],[0.4767,'-17.30']],
[[0.0399,'0:10.031'],[0.4001,'-8.88'],[0.4746,'-17.24'],[0.4994,'-17.98']],
[[0.0414,'0:10.403'],[0.4064,'-9.06'],[0.4793,'-17.38'],[0.5221,'-18.66']],
[[0.0428,'0:10.775'],[0.5086,'-12.34'],[0.4550,'-16.65'],[0.5209,'-18.63']],
[[0.0443,'0:11.146'],[0.3937,'-8.69'],[0.4298,'-15.89'],[0.5190,'-18.57']],
[[0.0458,'0:11.518'],[0.4063,'-9.06'],[0.4313,'-15.94'],[0.5211,'-18.63']],
[[0.0473,'0:11.889'],[0.4683,'-10.97'],[0.4389,'-16.17'],[0.5240,'-18.72']],
[[0.0487,'0:12.261'],[0.4649,'-10.86'],[0.4164,'-15.49'],[0.5117,'-18.35']],
[[0.0502,'0:12.632'],[0.4160,'-9.34'],[0.3784,'-14.35'],[0.4917,'-17.75']],
[[0.0517,'0:13.004'],[0.3029,'-6.27'],[0.3807,'-14.42'],[0.4790,'-17.37']],
[[0.0532,'0:13.375'],[0.4056,'-9.04'],[0.4228,'-15.68'],[0.4735,'-17.21']],
[[0.0547,'0:13.747'],[0.3858,'-8.47'],[0.4448,'-16.34'],[0.4678,'-17.03']],
[[0.0561,'0:14.119'],[0.3968,'-8.78'],[0.4291,'-15.87'],[0.4616,'-16.85']],
[[0.0576,'0:14.490'],[0.4088,'-9.13'],[0.4170,'-15.51'],[0.4552,'-16.66']],
[[0.0591,'0:14.862'],[0.3180,'-6.65'],[0.4206,'-15.62'],[0.4482,'-16.44']],
[[0.0606,'0:15.233'],[0.3862,'-8.48'],[0.4247,'-15.74'],[0.4416,'-16.25']],
[[0.0620,'0:15.605'],[0.3967,'-8.78'],[0.4413,'-16.24'],[0.4497,'-16.49']],
[[0.0635,'0:15.976'],[0.4265,'-9.66'],[0.4579,'-16.74'],[0.4578,'-16.73']],
[[0.0650,'0:16.348'],[0.4483,'-10.33'],[0.4797,'-17.39'],[0.4655,'-16.96']],
[[0.0665,'0:16.719'],[0.4426,'-10.15'],[0.5024,'-18.07'],[0.4731,'-17.19']],
[[0.0679,'0:17.091'],[0.5399,'-13.48'],[0.5033,'-18.10'],[0.4830,'-17.49']],
[[0.0694,'0:17.463'],[0.3975,'-8.80'],[0.4959,'-17.88'],[0.4937,'-17.81']],
[[0.0709,'0:17.834'],[0.4409,'-10.10'],[0.4856,'-17.57'],[0.5023,'-18.07']],
[[0.0724,'0:18.206'],[0.4762,'-11.23'],[0.4731,'-17.19'],[0.5091,'-18.27']],
[[0.0739,'0:18.577'],[0.4562,'-10.58'],[0.4600,'-16.80'],[0.5129,'-18.39']],
[[0.0753,'0:18.949'],[0.4622,'-10.78'],[0.4461,'-16.38'],[0.5124,'-18.37']],
[[0.0768,'0:19.320'],[0.4153,'-9.32'],[0.4426,'-16.28'],[0.5107,'-18.32']],
[[0.0783,'0:19.692'],[0.3023,'-6.25'],[0.4696,'-17.09'],[0.5058,'-18.18']],
[[0.0798,'0:20.063'],[0.4483,'-10.33'],[0.4926,'-17.78'],[0.5017,'-18.05']],
[[0.0812,'0:20.435'],[0.4300,'-9.77'],[0.4792,'-17.38'],[0.5049,'-18.15']],
[[0.0827,'0:20.807'],[0.4792,'-11.33'],[0.4659,'-16.98'],[0.5080,'-18.24']],
[[0.0842,'0:21.178'],[0.5083,'-12.33'],[0.4631,'-16.89'],[0.5088,'-18.26']],
[[0.0857,'0:21.550'],[0.4097,'-9.16'],[0.4609,'-16.83'],[0.5095,'-18.28']],
[[0.0871,'0:21.921'],[0.4860,'-11.56'],[0.4585,'-16.75'],[0.5147,'-18.44']],
[[0.0886,'0:22.293'],[0.5134,'-12.51'],[0.4560,'-16.68'],[0.5211,'-18.63']],
[[0.0901,'0:22.664'],[0.3251,'-6.83'],[0.4447,'-16.34'],[0.5163,'-18.49']],
[[0.0916,'0:23.036'],[0.4636,'-10.82'],[0.4284,'-15.85'],[0.5049,'-18.15']],
[[0.0931,'0:23.407'],[0.4077,'-9.10'],[0.4308,'-15.92'],[0.4991,'-17.97']],
[[0.0945,'0:23.779'],[0.4157,'-9.33'],[0.4539,'-16.62'],[0.4995,'-17.98']],
[[0.0960,'0:24.151'],[0.5105,'-12.41'],[0.4770,'-17.31'],[0.5017,'-18.05']],
[[0.0975,'0:24.522'],[0.6475,'-18.11'],[0.5000,'-18.00'],[0.5080,'-18.24']],
[[0.0990,'0:24.894'],[0.3684,'-7.98'],[0.5199,'-18.60'],[0.5144,'-18.43']],
[[0.1004,'0:25.265'],[0.4286,'-9.72'],[0.5237,'-18.71'],[0.5210,'-18.63']],
[[0.1019,'0:25.637'],[0.4093,'-9.15'],[0.5271,'-18.81'],[0.5275,'-18.82']],
[[0.1034,'0:26.008'],[0.4305,'-9.78'],[0.4450,'-16.35'],[0.5244,'-18.73']],
[[0.1049,'0:26.380'],[0.5354,'-13.32'],[0.3630,'-13.89'],[0.5212,'-18.64']],
[[0.1064,'0:26.751'],[0.2600,'-5.23'],[0.3198,'-12.59'],[0.4835,'-17.51']],
[[0.1078,'0:27.123'],[0.3265,'-6.87'],[0.2834,'-11.50'],[0.4397,'-16.19']],
[[0.1093,'0:27.495'],[0.2382,'-4.73'],[0.2682,'-11.05'],[0.4134,'-15.40']],
[[0.1108,'0:27.866'],[0.1999,'-3.87'],[0.2623,'-10.87'],[0.3947,'-14.84']],
[[0.1123,'0:28.238'],[0.2609,'-5.25'],[0.2836,'-11.51'],[0.3803,'-14.41']],
[[0.1137,'0:28.609'],[0.2315,'-4.57'],[0.3282,'-12.85'],[0.3694,'-14.08']],
[[0.1152,'0:28.981'],[0.2901,'-5.95'],[0.3646,'-13.94'],[0.3624,'-13.87']],
[[0.1167,'0:29.352'],[0.3143,'-6.56'],[0.3876,'-14.63'],[0.3613,'-13.84']],
[[0.1182,'0:29.724'],[0.2378,'-4.72'],[0.4024,'-15.07'],[0.3625,'-13.88']],
[[0.1196,'0:30.095'],[0.4199,'-9.46'],[0.3889,'-14.67'],[0.3718,'-14.15']],
[[0.1211,'0:30.467'],[0.4196,'-9.45'],[0.3784,'-14.35'],[0.3817,'-14.45']],
[[0.1226,'0:30.839'],[0.3443,'-7.33'],[0.4082,'-15.25'],[0.4007,'-15.02']],
[[0.1241,'0:31.210'],[0.4310,'-9.79'],[0.4380,'-16.14'],[0.4197,'-15.59']],
[[0.1256,'0:31.582'],[0.4014,'-8.91'],[0.3964,'-14.89'],[0.4234,'-15.70']],
[[0.1270,'0:31.953'],[0.3313,'-6.99'],[0.3481,'-13.44'],[0.4257,'-15.77']],
[[0.1285,'0:32.325'],[0.3163,'-6.60'],[0.3001,'-12.00'],[0.4055,'-15.17']],
[[0.1300,'0:32.696'],[0.2753,'-5.59'],[0.2522,'-10.57'],[0.3782,'-14.35']],
[[0.1315,'0:33.068'],[0.2518,'-5.04'],[0.2272,'-9.82'],[0.3606,'-13.82']],
[[0.1329,'0:33.439'],[0.0813,'-1.47'],[0.2174,'-9.52'],[0.3495,'-13.48']],
[[0.1344,'0:33.811'],[0.2631,'-5.30'],[0.2341,'-10.02'],[0.3396,'-13.19']],
[[0.1359,'0:34.183'],[0.1825,'-3.50'],[0.2836,'-11.51'],[0.3312,'-12.94']],
[[0.1374,'0:34.554'],[0.2773,'-5.64'],[0.3180,'-12.54'],[0.3253,'-12.76']],
[[0.1388,'0:34.926'],[0.3034,'-6.28'],[0.3153,'-12.46'],[0.3252,'-12.76']],
[[0.1403,'0:35.297'],[0.1406,'-2.63'],[0.3156,'-12.47'],[0.3256,'-12.77']],
[[0.1418,'0:35.669'],[0.3514,'-7.52'],[0.3355,'-13.07'],[0.3285,'-12.85']],
[[0.1433,'0:36.040'],[0.3920,'-8.64'],[0.3555,'-13.66'],[0.3314,'-12.94']],
[[0.1448,'0:36.412'],[0.3646,'-7.88'],[0.3710,'-14.13'],[0.3506,'-13.52']],
[[0.1462,'0:36.783'],[0.3493,'-7.46'],[0.3865,'-14.60'],[0.3702,'-14.11']],
[[0.1477,'0:37.155'],[0.2972,'-6.13'],[0.3902,'-14.71'],[0.3834,'-14.50']],
[[0.1492,'0:37.527'],[0.3734,'-8.12'],[0.3914,'-14.74'],[0.3951,'-14.85']],
[[0.1507,'0:37.898'],[0.3985,'-8.83'],[0.3785,'-14.36'],[0.4009,'-15.03']],
[[0.1521,'0:38.270'],[0.3083,'-6.40'],[0.3587,'-13.76'],[0.4036,'-15.11']],
[[0.1536,'0:38.641'],[0.2989,'-6.17'],[0.3573,'-13.72'],[0.4056,'-15.17']],
[[0.1551,'0:39.013'],[0.2319,'-4.58'],[0.3736,'-14.21'],[0.4069,'-15.21']],
[[0.1566,'0:39.384'],[0.2048,'-3.98'],[0.3837,'-14.51'],[0.4080,'-15.24']],
[[0.1581,'0:39.756'],[0.3085,'-6.41'],[0.3825,'-14.48'],[0.4088,'-15.26']],
[[0.1595,'0:40.127'],[0.3497,'-7.48'],[0.3869,'-14.61'],[0.4100,'-15.30']],
[[0.1610,'0:40.499'],[0.3527,'-7.56'],[0.4140,'-15.42'],[0.4131,'-15.39']],
[[0.1625,'0:40.871'],[0.4644,'-10.85'],[0.4419,'-16.26'],[0.4168,'-15.50']],
[[0.1640,'0:41.242'],[0.4752,'-11.20'],[0.4886,'-17.66'],[0.4340,'-16.02']],
[[0.1654,'0:41.614'],[0.6020,'-16.00'],[0.5354,'-19.06'],[0.4512,'-16.54']],
[[0.1669,'0:41.985'],[0.4621,'-10.77'],[0.4984,'-17.95'],[0.4663,'-16.99']],
[[0.1684,'0:42.357'],[0.3988,'-8.84'],[0.4507,'-16.52'],[0.4810,'-17.43']],
[[0.1699,'0:42.728'],[0.3289,'-6.93'],[0.3908,'-14.72'],[0.4695,'-17.09']],
[[0.1713,'0:43.100'],[0.3081,'-6.40'],[0.3265,'-12.79'],[0.4483,'-16.45']],
[[0.1728,'0:43.471'],[0.2405,'-4.78'],[0.2766,'-11.30'],[0.4170,'-15.51']],
[[0.1743,'0:43.843'],[0.2263,'-4.46'],[0.2375,'-10.12'],[0.3784,'-14.35']],
[[0.1758,'0:44.215'],[0.1280,'-2.38'],[0.2303,'-9.91'],[0.3503,'-13.51']],
[[0.1773,'0:44.586'],[0.1153,'-2.13'],[0.2680,'-11.04'],[0.3369,'-13.11']],
[[0.1787,'0:44.958'],[0.2580,'-5.18'],[0.3024,'-12.07'],[0.3267,'-12.80']],
[[0.1802,'0:45.329'],[0.1862,'-3.58'],[0.3276,'-12.83'],[0.3252,'-12.76']],
[[0.1817,'0:45.701'],[0.3294,'-6.94'],[0.3538,'-13.61'],[0.3242,'-12.73']],
[[0.1832,'0:46.072'],[0.2822,'-5.76'],[0.3875,'-14.63'],[0.3278,'-12.83']],
[[0.1846,'0:46.444'],[0.3885,'-8.55'],[0.4213,'-15.64'],[0.3313,'-12.94']],
[[0.1861,'0:46.815'],[0.4298,'-9.76'],[0.3890,'-14.67'],[0.3439,'-13.32']],
[[0.1876,'0:47.187'],[0.3197,'-6.69'],[0.3532,'-13.60'],[0.3570,'-13.71']],
[[0.1891,'0:47.559'],[0.2141,'-4.19'],[0.3269,'-12.81'],[0.3680,'-14.04']],
[[0.1905,'0:47.930'],[0.2487,'-4.97'],[0.3032,'-12.10'],[0.3784,'-14.35']],
[[0.1920,'0:48.302'],[0.2540,'-5.09'],[0.3030,'-12.09'],[0.3805,'-14.42']],
[[0.1935,'0:48.673'],[0.1968,'-3.81'],[0.3162,'-12.49'],[0.3780,'-14.34']],
[[0.1950,'0:49.045'],[0.2268,'-4.47'],[0.3102,'-12.31'],[0.3718,'-14.15']],
[[0.1965,'0:49.416'],[0.3839,'-8.41'],[0.2836,'-11.51'],[0.3616,'-13.85']],
[[0.1979,'0:49.788'],[0.3095,'-6.43'],[0.2757,'-11.27'],[0.3548,'-13.64']],
[[0.1994,'0:50.159'],[0.1856,'-3.57'],[0.3065,'-12.20'],[0.3550,'-13.65']],
[[0.2009,'0:50.531'],[0.3086,'-6.41'],[0.3433,'-13.30'],[0.3566,'-13.70']],
[[0.2024,'0:50.903'],[0.4482,'-10.33'],[0.4091,'-15.27'],[0.3653,'-13.96']],
[[0.2038,'0:51.274'],[0.2994,'-6.18'],[0.4742,'-17.23'],[0.3740,'-14.22']],
[[0.2053,'0:51.646'],[0.3959,'-8.76'],[0.4865,'-17.60'],[0.3936,'-14.81']],
[[0.2068,'0:52.017'],[0.2981,'-6.15'],[0.4988,'-17.96'],[0.4132,'-15.40']],
[[0.2083,'0:52.389'],[0.4004,'-8.88'],[0.4492,'-16.48'],[0.4253,'-15.76']],
[[0.2097,'0:52.760'],[0.4663,'-10.91'],[0.3892,'-14.68'],[0.4361,'-16.08']],
[[0.2112,'0:53.132'],[0.2999,'-6.19'],[0.3574,'-13.72'],[0.4380,'-16.14']],
[[0.2127,'0:53.503'],[0.3396,'-7.21'],[0.3376,'-13.13'],[0.4362,'-16.09']],
[[0.2142,'0:53.875'],[0.3906,'-8.60'],[0.3221,'-12.66'],[0.4235,'-15.71']],
[[0.2157,'0:54.247'],[0.1735,'-3.31'],[0.3102,'-12.30'],[0.4018,'-15.05']],
[[0.2171,'0:54.618'],[0.1909,'-3.68'],[0.2983,'-11.95'],[0.3816,'-14.45']],
[[0.2186,'0:54.990'],[0.1902,'-3.66'],[0.2866,'-11.60'],[0.3637,'-13.91']],
[[0.2201,'0:55.361'],[0.1866,'-3.59'],[0.2831,'-11.49'],[0.3495,'-13.49']],
[[0.2216,'0:55.733'],[0.2764,'-5.62'],[0.3067,'-12.20'],[0.3477,'-13.43']],
[[0.2230,'0:56.104'],[0.2910,'-5.97'],[0.3306,'-12.92'],[0.3459,'-13.38']],
[[0.2245,'0:56.476'],[0.2929,'-6.02'],[0.3588,'-13.76'],[0.3457,'-13.37']],
[[0.2260,'0:56.847'],[0.3616,'-7.80'],[0.3869,'-14.61'],[0.3455,'-13.36']],
[[0.2275,'0:57.219'],[0.4740,'-11.16'],[0.4148,'-15.44'],[0.3574,'-13.72']],
[[0.2290,'0:57.591'],[0.4116,'-9.21'],[0.4427,'-16.28'],[0.3703,'-14.11']],
[[0.2304,'0:57.962'],[0.4502,'-10.39'],[0.4466,'-16.40'],[0.3897,'-14.69']],
[[0.2319,'0:58.334'],[0.4052,'-9.02'],[0.4431,'-16.29'],[0.4112,'-15.33']],
[[0.2334,'0:58.705'],[0.3823,'-8.37'],[0.4484,'-16.45'],[0.4286,'-15.86']],
[[0.2349,'0:59.077'],[0.4110,'-9.20'],[0.4595,'-16.78'],[0.4435,'-16.30']],
[[0.2363,'0:59.448'],[0.4142,'-9.29'],[0.4360,'-16.08'],[0.4567,'-16.70']],
[[0.2378,'0:59.820'],[0.4713,'-11.07'],[0.3707,'-14.12'],[0.4678,'-17.03']],
[[0.2393,'1:00.191'],[0.5428,'-13.59'],[0.3252,'-12.76'],[0.4725,'-17.18']],
[[0.2408,'1:00.563'],[0.3180,'-6.65'],[0.3265,'-12.80'],[0.4619,'-16.86']],
[[0.2422,'1:00.935'],[0.3607,'-7.77'],[0.3340,'-13.02'],[0.4526,'-16.58']],
[[0.2437,'1:01.306'],[0.3849,'-8.44'],[0.3792,'-14.38'],[0.4516,'-16.55']],
[[0.2452,'1:01.678'],[0.3429,'-7.30'],[0.4245,'-15.74'],[0.4505,'-16.51']],
[[0.2467,'1:02.049'],[0.3579,'-7.70'],[0.4209,'-15.63'],[0.4425,'-16.27']],
[[0.2482,'1:02.421'],[0.4002,'-8.88'],[0.4165,'-15.50'],[0.4343,'-16.03']],
[[0.2496,'1:02.792'],[0.3948,'-8.72'],[0.4117,'-15.35'],[0.4306,'-15.92']],
[[0.2511,'1:03.164'],[0.4131,'-9.26'],[0.4067,'-15.20'],[0.4278,'-15.84']],
[[0.2526,'1:03.535'],[0.4289,'-9.73'],[0.4316,'-15.95'],[0.4412,'-16.24']],
[[0.2541,'1:03.907'],[0.5344,'-13.28'],[0.4710,'-17.13'],[0.4624,'-16.87']],
[[0.2555,'1:04.279'],[0.3803,'-8.31'],[0.4613,'-16.84'],[0.4761,'-17.28']],
[[0.2570,'1:04.650'],[0.5044,'-12.19'],[0.4055,'-15.16'],[0.4828,'-17.48']],
[[0.2585,'1:05.022'],[0.5163,'-12.62'],[0.3629,'-13.89'],[0.4836,'-17.51']],
[[0.2600,'1:05.393'],[0.5247,'-12.92'],[0.3441,'-13.32'],[0.4741,'-17.22']],
[[0.2614,'1:05.765'],[0.1934,'-3.73'],[0.3368,'-13.10'],[0.4659,'-16.98']],
[[0.2629,'1:06.136'],[0.3061,'-6.35'],[0.3747,'-14.24'],[0.4623,'-16.87']],
[[0.2644,'1:06.508'],[0.2959,'-6.09'],[0.4114,'-15.34'],[0.4587,'-16.76']],
[[0.2659,'1:06.879'],[0.4126,'-9.24'],[0.4248,'-15.74'],[0.4516,'-16.55']],
[[0.2674,'1:07.251'],[0.4227,'-9.55'],[0.4381,'-16.14'],[0.4446,'-16.34']],
[[0.2688,'1:07.623'],[0.4027,'-8.95'],[0.4315,'-15.94'],[0.4384,'-16.15']],
[[0.2703,'1:07.994'],[0.3427,'-7.29'],[0.4224,'-15.67'],[0.4324,'-15.97']],
[[0.2718,'1:08.366'],[0.4518,'-10.44'],[0.4190,'-15.57'],[0.4394,'-16.18']],
[[0.2733,'1:08.737'],[0.3781,'-8.25'],[0.4177,'-15.53'],[0.4511,'-16.53']],
[[0.2747,'1:09.109'],[0.4008,'-8.90'],[0.4221,'-15.66'],[0.4558,'-16.68']],
[[0.2762,'1:09.480'],[0.4119,'-9.22'],[0.4307,'-15.92'],[0.4555,'-16.66']],
[[0.2777,'1:09.852'],[0.4135,'-9.27'],[0.4067,'-15.20'],[0.4466,'-16.40']],
[[0.2792,'1:10.223'],[0.3670,'-7.94'],[0.3383,'-13.15'],[0.4260,'-15.78']],
[[0.2806,'1:10.595'],[0.2541,'-5.09'],[0.2960,'-11.88'],[0.4082,'-15.25']],
[[0.2821,'1:10.967'],[0.2925,'-6.01'],[0.3253,'-12.76'],[0.3980,'-14.94']],
[[0.2836,'1:11.338'],[0.3203,'-6.71'],[0.3518,'-13.56'],[0.3888,'-14.67']],
[[0.2851,'1:11.710'],[0.2598,'-5.23'],[0.3563,'-13.69'],[0.3882,'-14.65']],
[[0.2866,'1:12.081'],[0.2613,'-5.26'],[0.3607,'-13.82'],[0.3876,'-14.63']],
[[0.2880,'1:12.453'],[0.5248,'-12.93'],[0.4051,'-15.15'],[0.3949,'-14.85']],
[[0.2895,'1:12.824'],[0.4568,'-10.60'],[0.4514,'-16.54'],[0.4025,'-15.08']],
[[0.2910,'1:13.196'],[0.4331,'-9.86'],[0.4623,'-16.87'],[0.4112,'-15.33']],
[[0.2925,'1:13.567'],[0.3899,'-8.58'],[0.4642,'-16.93'],[0.4200,'-15.60']],
[[0.2939,'1:13.939'],[0.4226,'-9.54'],[0.4960,'-17.88'],[0.4438,'-16.31']],
[[0.2954,'1:14.310'],[0.4953,'-11.88'],[0.5443,'-19.33'],[0.4759,'-17.28']],
[[0.2969,'1:14.682'],[0.5638,'-14.41'],[0.5656,'-19.97'],[0.5079,'-18.24']],
[[0.2984,'1:15.054'],[0.4555,'-10.56'],[0.5587,'-19.76'],[0.5397,'-19.19']],
[[0.2999,'1:15.425'],[0.4805,'-11.38'],[0.5401,'-19.20'],[0.5609,'-19.83']],
[[0.3013,'1:15.797'],[0.4654,'-10.88'],[0.4982,'-17.95'],[0.5606,'-19.82']],
[[0.3028,'1:16.168'],[0.4396,'-10.06'],[0.4604,'-16.81'],[0.5578,'-19.73']],
[[0.3043,'1:16.540'],[0.4876,'-11.62'],[0.4423,'-16.27'],[0.5431,'-19.29']],
[[0.3058,'1:16.911'],[0.3589,'-7.72'],[0.4252,'-15.76'],[0.5285,'-18.86']],
[[0.3072,'1:17.283'],[0.3946,'-8.72'],[0.4640,'-16.92'],[0.5210,'-18.63']],
[[0.3087,'1:17.654'],[0.4459,'-10.26'],[0.5027,'-18.08'],[0.5135,'-18.41']],
[[0.3102,'1:18.026'],[0.4186,'-9.42'],[0.4409,'-16.23'],[0.4945,'-17.83']],
[[0.3117,'1:18.398'],[0.5007,'-12.07'],[0.3630,'-13.89'],[0.4736,'-17.21']],
[[0.3131,'1:18.769'],[0.3476,'-7.42'],[0.3515,'-13.55'],[0.4604,'-16.81']],
[[0.3146,'1:19.141'],[0.3682,'-7.98'],[0.3676,'-14.03'],[0.4504,'-16.51']],
[[0.3161,'1:19.512'],[0.3585,'-7.71'],[0.3695,'-14.09'],[0.4382,'-16.14']],
[[0.3176,'1:19.884'],[0.3490,'-7.46'],[0.3600,'-13.80'],[0.4240,'-15.72']],
[[0.3191,'1:20.255'],[0.3765,'-8.21'],[0.3642,'-13.93'],[0.4133,'-15.40']],
[[0.3205,'1:20.627'],[0.3617,'-7.80'],[0.3894,'-14.68'],[0.4078,'-15.24']],
[[0.3220,'1:20.998'],[0.3570,'-7.67'],[0.4105,'-15.31'],[0.4038,'-15.11']],
[[0.3235,'1:21.370'],[0.3729,'-8.11'],[0.4186,'-15.56'],[0.4043,'-15.13']],
[[0.3250,'1:21.742'],[0.4043,'-9.00'],[0.4302,'-15.91'],[0.4063,'-15.19']],
[[0.3264,'1:22.113'],[0.4648,'-10.86'],[0.4802,'-17.41'],[0.4233,'-15.70']],
[[0.3279,'1:22.485'],[0.4843,'-11.50'],[0.5302,'-18.91'],[0.4404,'-16.21']],
[[0.3294,'1:22.856'],[0.4414,'-10.12'],[0.4577,'-16.73'],[0.4639,'-16.92']],
[[0.3309,'1:23.228'],[0.5521,'-13.95'],[0.3754,'-14.26'],[0.4879,'-17.64']],
[[0.3323,'1:23.599'],[0.5669,'-14.54'],[0.3456,'-13.37'],[0.4886,'-17.66']],
[[0.3338,'1:23.971'],[0.2069,'-4.03'],[0.3315,'-12.95'],[0.4824,'-17.47']],
[[0.3353,'1:24.342'],[0.3768,'-8.21'],[0.3392,'-13.18'],[0.4685,'-17.06']],
[[0.3368,'1:24.714'],[0.3388,'-7.19'],[0.3605,'-13.82'],[0.4498,'-16.49']],
[[0.3383,'1:25.086'],[0.3444,'-7.33'],[0.3803,'-14.41'],[0.4357,'-16.07']],
[[0.3397,'1:25.457'],[0.2854,'-5.84'],[0.3984,'-14.95'],[0.4272,'-15.82']],
[[0.3412,'1:25.829'],[0.4281,'-9.71'],[0.4104,'-15.31'],[0.4191,'-15.57']],
[[0.3427,'1:26.200'],[0.4257,'-9.64'],[0.4087,'-15.26'],[0.4123,'-15.37']],
[[0.3442,'1:26.572'],[0.4143,'-9.29'],[0.4081,'-15.24'],[0.4076,'-15.23']],
[[0.3456,'1:26.943'],[0.4555,'-10.56'],[0.4145,'-15.43'],[0.4158,'-15.48']],
[[0.3471,'1:27.315'],[0.3899,'-8.59'],[0.4208,'-15.62'],[0.4241,'-15.72']],
[[0.3486,'1:27.686'],[0.4427,'-10.16'],[0.4501,'-16.50'],[0.4372,'-16.12']],
[[0.3501,'1:28.058'],[0.4739,'-11.16'],[0.4796,'-17.39'],[0.4504,'-16.51']],
[[0.3516,'1:28.430'],[0.4631,'-10.80'],[0.4284,'-15.85'],[0.4528,'-16.58']],
[[0.3530,'1:28.801'],[0.4231,'-9.56'],[0.3611,'-13.83'],[0.4531,'-16.59']],
[[0.3545,'1:29.173'],[0.2721,'-5.52'],[0.3486,'-13.46'],[0.4506,'-16.52']],
[[0.3560,'1:29.544'],[0.3324,'-7.02'],[0.3621,'-13.86'],[0.4468,'-16.40']],
[[0.3575,'1:29.916'],[0.3890,'-8.56'],[0.3661,'-13.98'],[0.4402,'-16.21']],
[[0.3589,'1:30.287'],[0.3350,'-7.09'],[0.3616,'-13.85'],[0.4312,'-15.94']],
[[0.3604,'1:30.659'],[0.2311,'-4.57'],[0.3670,'-14.01'],[0.4229,'-15.69']],
[[0.3619,'1:31.030'],[0.4204,'-9.48'],[0.3895,'-14.69'],[0.4159,'-15.48']],
[[0.3634,'1:31.402'],[0.3730,'-8.11'],[0.4068,'-15.20'],[0.4102,'-15.30']],
[[0.3648,'1:31.774'],[0.4078,'-9.10'],[0.4044,'-15.13'],[0.4096,'-15.29']],
[[0.3663,'1:32.145'],[0.3858,'-8.47'],[0.4088,'-15.26'],[0.4099,'-15.30']],
[[0.3678,'1:32.517'],[0.4699,'-11.03'],[0.5314,'-18.94'],[0.4276,'-15.83']],
[[0.3693,'1:32.888'],[0.5835,'-15.21'],[0.6539,'-22.62'],[0.4452,'-16.36']],
[[0.3708,'1:33.260'],[0.6708,'-19.30'],[0.5991,'-20.97'],[0.4825,'-17.48']],
[[0.3722,'1:33.631'],[0.6115,'-16.43'],[0.5241,'-18.72'],[0.5221,'-18.66']],
[[0.3737,'1:34.003'],[0.4978,'-11.97'],[0.4566,'-16.70'],[0.5316,'-18.95']],
[[0.3752,'1:34.374'],[0.5467,'-13.75'],[0.3917,'-14.75'],[0.5305,'-18.92']],
[[0.3767,'1:34.746'],[0.3672,'-7.95'],[0.3791,'-14.37'],[0.5202,'-18.61']],
[[0.3781,'1:35.118'],[0.3849,'-8.44'],[0.4035,'-15.10'],[0.5033,'-18.10']],
[[0.3796,'1:35.489'],[0.4236,'-9.57'],[0.4320,'-15.96'],[0.4898,'-17.69']],
[[0.3811,'1:35.861'],[0.4373,'-9.99'],[0.4662,'-16.99'],[0.4810,'-17.43']],
[[0.3826,'1:36.232'],[0.3984,'-8.83'],[0.4949,'-17.85'],[0.4751,'-17.25']],
[[0.3840,'1:36.604'],[0.5061,'-12.25'],[0.5092,'-18.27'],[0.4767,'-17.30']],
[[0.3855,'1:36.975'],[0.4886,'-11.65'],[0.5170,'-18.51'],[0.4784,'-17.35']],
[[0.3870,'1:37.347'],[0.4739,'-11.16'],[0.4765,'-17.30'],[0.4799,'-17.40']],
[[0.3885,'1:37.718'],[0.4938,'-11.83'],[0.4361,'-16.08'],[0.4815,'-17.44']],
[[0.3900,'1:38.090'],[0.3965,'-8.77'],[0.4191,'-15.57'],[0.4835,'-17.51']],
[[0.3914,'1:38.462'],[0.3938,'-8.69'],[0.4031,'-15.09'],[0.4856,'-17.57']],
[[0.3929,'1:38.833'],[0.2955,'-6.09'],[0.3724,'-14.17'],[0.4727,'-17.18']],
[[0.3944,'1:39.205'],[0.3060,'-6.35'],[0.3382,'-13.14'],[0.4561,'-16.68']],
[[0.3959,'1:39.576'],[0.2303,'-4.55'],[0.3710,'-14.13'],[0.4482,'-16.45']],
[[0.3973,'1:39.948'],[0.3886,'-8.55'],[0.4401,'-16.20'],[0.4450,'-16.35']],
[[0.3988,'1:40.319'],[0.3411,'-7.25'],[0.4646,'-16.94'],[0.4437,'-16.31']],
[[0.4003,'1:40.691'],[0.5201,'-12.75'],[0.4435,'-16.30'],[0.4445,'-16.33']],
[[0.4018,'1:41.062'],[0.3057,'-6.34'],[0.4095,'-15.29'],[0.4402,'-16.21']],
[[0.4032,'1:41.434'],[0.3490,'-7.46'],[0.3505,'-13.51'],[0.4260,'-15.78']],
[[0.4047,'1:41.806'],[0.2086,'-4.06'],[0.3077,'-12.23'],[0.4145,'-15.44']],
[[0.4062,'1:42.177'],[0.3151,'-6.57'],[0.3384,'-13.15'],[0.4150,'-15.45']],
[[0.4077,'1:42.549'],[0.3403,'-7.22'],[0.3692,'-14.08'],[0.4155,'-15.46']],
[[0.4092,'1:42.920'],[0.3603,'-7.76'],[0.4042,'-15.13'],[0.4153,'-15.46']],
[[0.4106,'1:43.292'],[0.3677,'-7.96'],[0.4393,'-16.18'],[0.4151,'-15.45']],
[[0.4121,'1:43.663'],[0.4906,'-11.72'],[0.4272,'-15.81'],[0.4141,'-15.42']],
[[0.4136,'1:44.035'],[0.3191,'-6.68'],[0.4080,'-15.24'],[0.4131,'-15.39']],
[[0.4151,'1:44.406'],[0.3169,'-6.62'],[0.4031,'-15.09'],[0.4199,'-15.60']],
[[0.4165,'1:44.778'],[0.3515,'-7.52'],[0.4040,'-15.12'],[0.4300,'-15.90']],
[[0.4180,'1:45.150'],[0.3901,'-8.59'],[0.4083,'-15.25'],[0.4377,'-16.13']],
[[0.4195,'1:45.521'],[0.3810,'-8.33'],[0.4154,'-15.46'],[0.4435,'-16.31']],
[[0.4210,'1:45.893'],[0.3554,'-7.63'],[0.4015,'-15.04'],[0.4420,'-16.26']],
[[0.4225,'1:46.264'],[0.3765,'-8.21'],[0.3561,'-13.68'],[0.4295,'-15.88']],
[[0.4239,'1:46.636'],[0.3756,'-8.18'],[0.3208,'-12.62'],[0.4196,'-15.59']],
[[0.4254,'1:47.007'],[0.1533,'-2.89'],[0.3162,'-12.49'],[0.4179,'-15.54']],
[[0.4269,'1:47.379'],[0.2923,'-6.01'],[0.3152,'-12.45'],[0.4165,'-15.49']],
[[0.4284,'1:47.750'],[0.3406,'-7.24'],[0.3498,'-13.49'],[0.4173,'-15.52']],
[[0.4298,'1:48.122'],[0.3835,'-8.40'],[0.3844,'-14.53'],[0.4180,'-15.54']],
[[0.4313,'1:48.494'],[0.3725,'-8.10'],[0.3929,'-14.79'],[0.4184,'-15.55']],
[[0.4328,'1:48.865'],[0.3347,'-7.08'],[0.3994,'-14.98'],[0.4187,'-15.56']],
[[0.4343,'1:49.237'],[0.4508,'-10.41'],[0.3751,'-14.25'],[0.4219,'-15.66']],
[[0.4357,'1:49.608'],[0.4187,'-9.43'],[0.3418,'-13.25'],[0.4259,'-15.78']],
[[0.4372,'1:49.980'],[0.3464,'-7.39'],[0.3289,'-12.87'],[0.4261,'-15.78']],
[[0.4387,'1:50.351'],[0.2825,'-5.77'],[0.3283,'-12.85'],[0.4240,'-15.72']],
[[0.4402,'1:50.723'],[0.3670,'-7.94'],[0.3329,'-12.99'],[0.4204,'-15.61']],
[[0.4417,'1:51.094'],[0.3838,'-8.41'],[0.3434,'-13.30'],[0.4152,'-15.46']],
[[0.4431,'1:51.466'],[0.3737,'-8.13'],[0.3506,'-13.52'],[0.4106,'-15.32']],
[[0.4446,'1:51.838'],[0.3059,'-6.34'],[0.3504,'-13.51'],[0.4073,'-15.22']],
[[0.4461,'1:52.209'],[0.3248,'-6.82'],[0.3549,'-13.65'],[0.4044,'-15.13']],
[[0.4476,'1:52.581'],[0.3761,'-8.20'],[0.3850,'-14.55'],[0.4038,'-15.11']],
[[0.4490,'1:52.952'],[0.3553,'-7.63'],[0.4151,'-15.45'],[0.4032,'-15.09']],
[[0.4505,'1:53.324'],[0.2205,'-4.33'],[0.3116,'-12.35'],[0.3778,'-14.34']],
[[0.4520,'1:53.695'],[0.2337,'-4.62'],[0.2077,'-9.23'],[0.3524,'-13.57']],
[[0.4535,'1:54.067'],[0.0580,'-1.04'],[0.2196,'-9.59'],[0.3398,'-13.19']],
[[0.4549,'1:54.438'],[0.1664,'-3.16'],[0.2535,'-10.60'],[0.3296,'-12.89']],
[[0.4564,'1:54.810'],[0.1841,'-3.53'],[0.2706,'-11.12'],[0.3230,'-12.69']],
[[0.4579,'1:55.182'],[0.2273,'-4.48'],[0.2800,'-11.40'],[0.3180,'-12.54']],
[[0.4594,'1:55.553'],[0.2891,'-5.93'],[0.3071,'-12.21'],[0.3150,'-12.45']],
[[0.4609,'1:55.925'],[0.3426,'-7.29'],[0.3501,'-13.50'],[0.3138,'-12.41']],
[[0.4623,'1:56.296'],[0.2992,'-6.18'],[0.3835,'-14.50'],[0.3148,'-12.44']],
[[0.4638,'1:56.668'],[0.2686,'-5.43'],[0.4009,'-15.03'],[0.3196,'-12.59']],
[[0.4653,'1:57.039'],[0.3378,'-7.16'],[0.4177,'-15.53'],[0.3296,'-12.89']],
[[0.4668,'1:57.411'],[0.2881,'-5.90'],[0.4321,'-15.96'],[0.3583,'-13.75']],
[[0.4682,'1:57.782'],[0.3746,'-8.15'],[0.4421,'-16.26'],[0.3863,'-14.59']],
[[0.4697,'1:58.154'],[0.2857,'-5.84'],[0.3843,'-14.53'],[0.4040,'-15.12']],
[[0.4712,'1:58.526'],[0.3274,'-6.89'],[0.3266,'-12.80'],[0.4217,'-15.65']],
[[0.4727,'1:58.897'],[0.2426,'-4.83'],[0.3327,'-12.98'],[0.4253,'-15.76']],
[[0.4742,'1:59.269'],[0.2774,'-5.64'],[0.3455,'-13.37'],[0.4273,'-15.82']],
[[0.4756,'1:59.640'],[0.4488,'-10.35'],[0.3931,'-14.79'],[0.4332,'-16.00']],
[[0.4771,'2:00.012'],[0.4031,'-8.96'],[0.4523,'-16.57'],[0.4403,'-16.21']],
[[0.4786,'2:00.383'],[0.4688,'-10.99'],[0.4881,'-17.64'],[0.4459,'-16.38']],
[[0.4801,'2:00.755'],[0.4874,'-11.61'],[0.5079,'-18.24'],[0.4503,'-16.51']],
[[0.4815,'2:01.126'],[0.5493,'-13.84'],[0.5250,'-18.75'],[0.4558,'-16.67']],
[[0.4830,'2:01.498'],[0.5104,'-12.40'],[0.5386,'-19.16'],[0.4625,'-16.87']],
[[0.4845,'2:01.870'],[0.4936,'-11.82'],[0.5314,'-18.94'],[0.4740,'-17.22']],
[[0.4860,'2:02.241'],[0.4835,'-11.48'],[0.4706,'-17.12'],[0.4979,'-17.94']],
[[0.4874,'2:02.613'],[0.4245,'-9.60'],[0.4131,'-15.39'],[0.5159,'-18.48']],
[[0.4889,'2:02.984'],[0.3976,'-8.80'],[0.3792,'-14.38'],[0.4923,'-17.77']],
[[0.4904,'2:03.356'],[0.3431,'-7.30'],[0.3453,'-13.36'],[0.4687,'-17.06']],
[[0.4919,'2:03.727'],[0.2374,'-4.71'],[0.3380,'-13.14'],[0.4521,'-16.56']],
[[0.4934,'2:04.099'],[0.2796,'-5.70'],[0.3315,'-12.94'],[0.4358,'-16.07']],
[[0.4948,'2:04.470'],[0.3225,'-6.76'],[0.3533,'-13.60'],[0.4234,'-15.70']],
[[0.4963,'2:04.842'],[0.4006,'-8.89'],[0.3818,'-14.45'],[0.4120,'-15.36']],
[[0.4978,'2:05.214'],[0.3232,'-6.78'],[0.3596,'-13.79'],[0.3995,'-14.99']],
[[0.4993,'2:05.585'],[0.3517,'-7.53'],[0.3110,'-12.33'],[0.3865,'-14.60']],
[[0.5007,'2:05.957'],[0.3437,'-7.32'],[0.2927,'-11.78'],[0.3787,'-14.36']],
[[0.5022,'2:06.328'],[0.2757,'-5.60'],[0.3049,'-12.15'],[0.3762,'-14.29']],
[[0.5037,'2:06.700'],[0.3662,'-7.92'],[0.3279,'-12.84'],[0.3760,'-14.28']],
[[0.5052,'2:07.071'],[0.2476,'-4.94'],[0.3720,'-14.16'],[0.3803,'-14.41']],
[[0.5066,'2:07.443'],[0.3056,'-6.33'],[0.4034,'-15.10'],[0.3840,'-14.52']],
[[0.5081,'2:07.814'],[0.3251,'-6.83'],[0.3806,'-14.42'],[0.3844,'-14.53']],
[[0.5096,'2:08.186'],[0.3373,'-7.15'],[0.3584,'-13.75'],[0.3849,'-14.55']],
[[0.5111,'2:08.558'],[0.3511,'-7.51'],[0.3520,'-13.56'],[0.3835,'-14.51']],
[[0.5126,'2:08.929'],[0.2760,'-5.61'],[0.3457,'-13.37'],[0.3822,'-14.46']],
[[0.5140,'2:09.301'],[0.3310,'-6.98'],[0.3675,'-14.02'],[0.3948,'-14.84']],
[[0.5155,'2:09.672'],[0.3220,'-6.75'],[0.3933,'-14.80'],[0.4094,'-15.28']],
[[0.5170,'2:10.044'],[0.3633,'-7.84'],[0.3552,'-13.66'],[0.4026,'-15.08']],
[[0.5185,'2:10.415'],[0.3125,'-6.51'],[0.2922,'-11.77'],[0.3875,'-14.62']],
[[0.5199,'2:10.787'],[0.3188,'-6.67'],[0.2582,'-10.75'],[0.3711,'-14.13']],
[[0.5214,'2:11.158'],[0.1224,'-2.27'],[0.2465,'-10.40'],[0.3539,'-13.62']],
[[0.5229,'2:11.530'],[0.2040,'-3.96'],[0.2406,'-10.22'],[0.3375,'-13.12']],
[[0.5244,'2:11.902'],[0.1478,'-2.78'],[0.2430,'-10.29'],[0.3221,'-12.66']],
[[0.5258,'2:12.273'],[0.1330,'-2.48'],[0.2498,'-10.50'],[0.3086,'-12.26']],
[[0.5273,'2:12.645'],[0.1871,'-3.60'],[0.2698,'-11.09'],[0.3005,'-12.02']],
[[0.5288,'2:13.016'],[0.2126,'-4.15'],[0.2880,'-11.64'],[0.2929,'-11.79']],
[[0.5303,'2:13.388'],[0.1432,'-2.68'],[0.2901,'-11.70'],[0.2896,'-11.69']],
[[0.5318,'2:13.759'],[0.1600,'-3.03'],[0.2922,'-11.76'],[0.2864,'-11.59']],
[[0.5332,'2:14.131'],[0.3159,'-6.59'],[0.2995,'-11.98'],[0.2947,'-11.84']],
[[0.5347,'2:14.502'],[0.3267,'-6.87'],[0.3071,'-12.21'],[0.3038,'-12.12']],
[[0.5362,'2:14.874'],[0.2924,'-6.01'],[0.2901,'-11.70'],[0.3143,'-12.43']],
[[0.5377,'2:15.246'],[0.3497,'-7.47'],[0.2663,'-10.99'],[0.3251,'-12.75']],
[[0.5391,'2:15.617'],[0.2419,'-4.81'],[0.2610,'-10.83'],[0.3287,'-12.86']],
[[0.5406,'2:15.989'],[0.2570,'-5.16'],[0.2666,'-11.00'],[0.3280,'-12.84']],
[[0.5421,'2:16.360'],[0.1785,'-3.41'],[0.2593,'-10.78'],[0.3209,'-12.63']],
[[0.5436,'2:16.732'],[0.1589,'-3.01'],[0.2374,'-10.12'],[0.3067,'-12.20']],
[[0.5451,'2:17.103'],[0.1509,'-2.84'],[0.2268,'-9.80'],[0.2952,'-11.86']],
[[0.5465,'2:17.475'],[0.1886,'-3.63'],[0.2404,'-10.21'],[0.2898,'-11.69']],
[[0.5480,'2:17.846'],[0.2078,'-4.05'],[0.2570,'-10.71'],[0.2851,'-11.55']],
[[0.5495,'2:18.218'],[0.2987,'-6.16'],[0.2886,'-11.66'],[0.2845,'-11.53']],
[[0.5510,'2:18.590'],[0.2748,'-5.58'],[0.3204,'-12.61'],[0.2839,'-11.52']],
[[0.5524,'2:18.961'],[0.3757,'-8.18'],[0.4002,'-15.01'],[0.2989,'-11.97']],
[[0.5539,'2:19.333'],[0.4741,'-11.16'],[0.4801,'-17.40'],[0.3139,'-12.42']],
[[0.5554,'2:19.704'],[0.4310,'-9.79'],[0.4612,'-16.84'],[0.3385,'-13.15']],
[[0.5569,'2:20.076'],[0.3375,'-7.15'],[0.4244,'-15.73'],[0.3648,'-13.94']],
[[0.5583,'2:20.447'],[0.3363,'-7.12'],[0.3842,'-14.53'],[0.3915,'-14.74']],
[[0.5598,'2:20.819'],[0.3545,'-7.60'],[0.3425,'-13.28'],[0.4183,'-15.55']],
[[0.5613,'2:21.190'],[0.2346,'-4.65'],[0.3246,'-12.74'],[0.4223,'-15.67']],
[[0.5628,'2:21.562'],[0.4382,'-10.02'],[0.3274,'-12.82'],[0.4063,'-15.19']],
[[0.5643,'2:21.934'],[0.2860,'-5.85'],[0.3275,'-12.83'],[0.3924,'-14.77']],
[[0.5657,'2:22.305'],[0.2558,'-5.13'],[0.3234,'-12.70'],[0.3818,'-14.45']],
[[0.5672,'2:22.677'],[0.2790,'-5.68'],[0.3115,'-12.34'],[0.3700,'-14.10']],
[[0.5687,'2:23.048'],[0.2562,'-5.14'],[0.2728,'-11.18'],[0.3542,'-13.63']],
[[0.5702,'2:23.420'],[0.3490,'-7.46'],[0.2367,'-10.10'],[0.3393,'-13.18']],
[[0.5716,'2:23.791'],[0.1943,'-3.75'],[0.2359,'-10.08'],[0.3348,'-13.04']],
[[0.5731,'2:24.163'],[0.2307,'-4.56'],[0.2352,'-10.06'],[0.3303,'-12.91']],
[[0.5746,'2:24.534'],[0.2682,'-5.42'],[0.2645,'-10.94'],[0.3263,'-12.79']],
[[0.5761,'2:24.906'],[0.1294,'-2.41'],[0.2968,'-11.90'],[0.3223,'-12.67']],
[[0.5775,'2:25.277'],[0.2417,'-4.81'],[0.2967,'-11.90'],[0.3177,'-12.53']],
[[0.5790,'2:25.649'],[0.2905,'-5.96'],[0.2861,'-11.58'],[0.3130,'-12.39']],
[[0.5805,'2:26.021'],[0.3151,'-6.57'],[0.2788,'-11.36'],[0.3095,'-12.29']],
[[0.5820,'2:26.392'],[0.1645,'-3.12'],[0.2738,'-11.21'],[0.3069,'-12.21']],
[[0.5835,'2:26.764'],[0.1974,'-3.82'],[0.2852,'-11.56'],[0.3096,'-12.29']],
[[0.5849,'2:27.135'],[0.2193,'-4.30'],[0.3172,'-12.52'],[0.3190,'-12.57']],
[[0.5864,'2:27.507'],[0.3521,'-7.54'],[0.3512,'-13.53'],[0.3291,'-12.87']],
[[0.5879,'2:27.878'],[0.3707,'-8.05'],[0.3902,'-14.70'],[0.3413,'-13.24']],
[[0.5894,'2:28.250'],[0.3801,'-8.31'],[0.4132,'-15.40'],[0.3531,'-13.59']],
[[0.5908,'2:28.621'],[0.3691,'-8.00'],[0.3304,'-12.91'],[0.3628,'-13.88']],
[[0.5923,'2:28.993'],[0.2997,'-6.19'],[0.2475,'-10.43'],[0.3725,'-14.17']],
[[0.5938,'2:29.365'],[0.1066,'-1.96'],[0.2547,'-10.64'],[0.3670,'-14.01']],
[[0.5953,'2:29.736'],[0.2850,'-5.83'],[0.2642,'-10.92'],[0.3611,'-13.83']],
[[0.5968,'2:30.108'],[0.2084,'-4.06'],[0.2688,'-11.06'],[0.3515,'-13.55']],
[[0.5982,'2:30.479'],[0.2176,'-4.26'],[0.2724,'-11.17'],[0.3412,'-13.24']],
[[0.5997,'2:30.851'],[0.2554,'-5.12'],[0.2835,'-11.50'],[0.3307,'-12.92']],
[[0.6012,'2:31.222'],[0.1886,'-3.63'],[0.2984,'-11.95'],[0.3200,'-12.60']],
[[0.6027,'2:31.594'],[0.1499,'-2.82'],[0.3052,'-12.15'],[0.3139,'-12.42']],
[[0.6041,'2:31.965'],[0.1808,'-3.46'],[0.3041,'-12.12'],[0.3121,'-12.36']],
[[0.6056,'2:32.337'],[0.2531,'-5.07'],[0.2980,'-11.94'],[0.3123,'-12.37']],
[[0.6071,'2:32.709'],[0.2573,'-5.17'],[0.2828,'-11.49'],[0.3163,'-12.49']],
[[0.6086,'2:33.080'],[0.2523,'-5.05'],[0.2669,'-11.01'],[0.3178,'-12.53']],
[[0.6100,'2:33.452'],[0.2722,'-5.52'],[0.2481,'-10.44'],[0.3090,'-12.27']],
[[0.6115,'2:33.823'],[0.3481,'-7.43'],[0.2298,'-9.90'],[0.3004,'-12.01']],
[[0.6130,'2:34.195'],[0.1973,'-3.82'],[0.2283,'-9.85'],[0.2937,'-11.81']],
[[0.6145,'2:34.566'],[0.1566,'-2.96'],[0.2268,'-9.80'],[0.2871,'-11.61']],
[[0.6160,'2:34.938'],[0.1350,'-2.52'],[0.2437,'-10.31'],[0.2817,'-11.45']],
[[0.6174,'2:35.309'],[0.2098,'-4.09'],[0.2632,'-10.90'],[0.2764,'-11.29']],
[[0.6189,'2:35.681'],[0.1055,'-1.94'],[0.2626,'-10.88'],[0.2734,'-11.20']],
[[0.6204,'2:36.053'],[0.1234,'-2.29'],[0.2544,'-10.63'],[0.2712,'-11.14']],
[[0.6219,'2:36.424'],[0.2045,'-3.97'],[0.2682,'-11.05'],[0.2707,'-11.12']],
[[0.6233,'2:36.796'],[0.2270,'-4.47'],[0.2986,'-11.96'],[0.2714,'-11.14']],
[[0.6248,'2:37.167'],[0.2313,'-4.57'],[0.3384,'-13.15'],[0.2783,'-11.35']],
[[0.6263,'2:37.539'],[0.2895,'-5.94'],[0.3915,'-14.75'],[0.2940,'-11.82']],
[[0.6278,'2:37.910'],[0.4112,'-9.20'],[0.4336,'-16.01'],[0.3113,'-12.34']],
[[0.6292,'2:38.282'],[0.4780,'-11.29'],[0.4440,'-16.32'],[0.3334,'-13.00']],
[[0.6307,'2:38.653'],[0.4439,'-10.19'],[0.4454,'-16.36'],[0.3559,'-13.68']],
[[0.6322,'2:39.025'],[0.3759,'-8.19'],[0.3686,'-14.06'],[0.3825,'-14.47']],
[[0.6337,'2:39.397'],[0.4298,'-9.76'],[0.2918,'-11.75'],[0.4090,'-15.27']],
[[0.6352,'2:39.768'],[0.4741,'-11.17'],[0.2516,'-10.55'],[0.3943,'-14.83']],
[[0.6366,'2:40.140'],[0.0911,'-1.66'],[0.2136,'-9.41'],[0.3772,'-14.32']],
[[0.6381,'2:40.511'],[0.2272,'-4.48'],[0.2446,'-10.34'],[0.3648,'-13.94']],
[[0.6396,'2:40.883'],[0.2584,'-5.19'],[0.2939,'-11.82'],[0.3537,'-13.61']],
[[0.6411,'2:41.254'],[0.3243,'-6.81'],[0.3006,'-12.02'],[0.3404,'-13.21']],
[[0.6425,'2:41.626'],[0.2895,'-5.94'],[0.2825,'-11.48'],[0.3257,'-12.77']],
[[0.6440,'2:41.997'],[0.3061,'-6.35'],[0.2758,'-11.28'],[0.3153,'-12.46']],
[[0.6455,'2:42.369'],[0.2507,'-5.01'],[0.2816,'-11.45'],[0.3096,'-12.29']],
[[0.6470,'2:42.741'],[0.2863,'-5.86'],[0.2842,'-11.53'],[0.3088,'-12.26']],
[[0.6484,'2:43.112'],[0.2544,'-5.10'],[0.2803,'-11.41'],[0.3183,'-12.55']],
[[0.6499,'2:43.484'],[0.2161,'-4.23'],[0.2822,'-11.47'],[0.3268,'-12.80']],
[[0.6514,'2:43.855'],[0.2680,'-5.42'],[0.3129,'-12.39'],[0.3300,'-12.90']],
[[0.6529,'2:44.227'],[0.3394,'-7.20'],[0.3428,'-13.29'],[0.3332,'-12.99']],
[[0.6544,'2:44.598'],[0.2934,'-6.03'],[0.2894,'-11.68'],[0.3307,'-12.92']],
[[0.6558,'2:44.970'],[0.0747,'-1.35'],[0.2359,'-10.08'],[0.3283,'-12.85']],
[[0.6573,'2:45.341'],[0.1053,'-1.93'],[0.2782,'-11.34'],[0.3312,'-12.94']],
[[0.6588,'2:45.713'],[0.2275,'-4.48'],[0.3369,'-13.11'],[0.3350,'-13.05']],
[[0.6603,'2:46.085'],[0.3784,'-8.26'],[0.3507,'-13.52'],[0.3432,'-13.30']],
[[0.6617,'2:46.456'],[0.2546,'-5.11'],[0.3451,'-13.35'],[0.3533,'-13.60']],
[[0.6632,'2:46.828'],[0.2810,'-5.73'],[0.3253,'-12.76'],[0.3545,'-13.64']],
[[0.6647,'2:47.199'],[0.2182,'-4.28'],[0.2933,'-11.80'],[0.3483,'-13.45']],
[[0.6662,'2:47.571'],[0.2132,'-4.17'],[0.3020,'-12.06'],[0.3494,'-13.48']],
[[0.6677,'2:47.942'],[0.3465,'-7.39'],[0.3756,'-14.27'],[0.3622,'-13.87']],
[[0.6691,'2:48.314'],[0.3923,'-8.65'],[0.4182,'-15.54'],[0.3733,'-14.20']],
[[0.6706,'2:48.685'],[0.4049,'-9.02'],[0.3562,'-13.69'],[0.3786,'-14.36']],
[[0.6721,'2:49.057'],[0.4182,'-9.41'],[0.2966,'-11.90'],[0.3825,'-14.48']],
[[0.6736,'2:49.429'],[0.2663,'-5.38'],[0.2659,'-10.98'],[0.3675,'-14.03']],
[[0.6750,'2:49.800'],[0.0943,'-1.72'],[0.2352,'-10.05'],[0.3525,'-13.58']],
[[0.6765,'2:50.172'],[0.2155,'-4.22'],[0.2408,'-10.22'],[0.3421,'-13.26']],
[[0.6780,'2:50.543'],[0.2942,'-6.05'],[0.2498,'-10.49'],[0.3320,'-12.96']],
[[0.6795,'2:50.915'],[0.0734,'-1.32'],[0.2768,'-11.30'],[0.3232,'-12.70']],
[[0.6809,'2:51.286'],[0.2081,'-4.05'],[0.3095,'-12.28'],[0.3149,'-12.45']],
[[0.6824,'2:51.658'],[0.2820,'-5.75'],[0.3240,'-12.72'],[0.3103,'-12.31']],
[[0.6839,'2:52.029'],[0.1654,'-3.14'],[0.3267,'-12.80'],[0.3083,'-12.25']],
[[0.6854,'2:52.401'],[0.2969,'-6.12'],[0.3129,'-12.39'],[0.3095,'-12.29']],
[[0.6869,'2:52.773'],[0.3298,'-6.95'],[0.2788,'-11.36'],[0.3149,'-12.45']],
[[0.6883,'2:53.144'],[0.2607,'-5.25'],[0.2531,'-10.59'],[0.3176,'-12.53']],
[[0.6898,'2:53.516'],[0.1748,'-3.34'],[0.2478,'-10.43'],[0.3138,'-12.41']],
[[0.6913,'2:53.887'],[0.2554,'-5.12'],[0.2435,'-10.30'],[0.3103,'-12.31']],
[[0.6928,'2:54.259'],[0.2119,'-4.14'],[0.2451,'-10.35'],[0.3082,'-12.25']],
[[0.6942,'2:54.630'],[0.2371,'-4.70'],[0.2468,'-10.40'],[0.3062,'-12.19']],
[[0.6957,'2:55.002'],[0.3353,'-7.10'],[0.3340,'-13.02'],[0.3097,'-12.29']],
[[0.6972,'2:55.373'],[0.3449,'-7.35'],[0.4229,'-15.69'],[0.3133,'-12.40']],
[[0.6987,'2:55.745'],[0.4110,'-9.20'],[0.3860,'-14.58'],[0.3244,'-12.73']],
[[0.7001,'2:56.117'],[0.4940,'-11.84'],[0.3225,'-12.67'],[0.3372,'-13.12']],
[[0.7016,'2:56.488'],[0.2689,'-5.44'],[0.2947,'-11.84'],[0.3454,'-13.36']],
[[0.7031,'2:56.860'],[0.2378,'-4.72'],[0.2846,'-11.54'],[0.3514,'-13.54']],
[[0.7046,'2:57.231'],[0.2734,'-5.55'],[0.3166,'-12.50'],[0.3658,'-13.97']],
[[0.7061,'2:57.603'],[0.4341,'-9.89'],[0.3888,'-14.66'],[0.3881,'-14.64']],
[[0.7075,'2:57.974'],[0.4830,'-11.46'],[0.4315,'-15.94'],[0.4019,'-15.06']],
[[0.7090,'2:58.346'],[0.4890,'-11.66'],[0.4211,'-15.63'],[0.4000,'-15.00']],
[[0.7105,'2:58.717'],[0.4715,'-11.08'],[0.4023,'-15.07'],[0.3989,'-14.97']],
[[0.7120,'2:59.089'],[0.3485,'-7.44'],[0.3503,'-13.51'],[0.4007,'-15.02']],
[[0.7134,'2:59.461'],[0.3379,'-7.16'],[0.2999,'-12.00'],[0.4020,'-15.06']],
[[0.7149,'2:59.832'],[0.1662,'-3.16'],[0.2839,'-11.52'],[0.3925,'-14.77']],
[[0.7164,'3:00.204'],[0.1951,'-3.77'],[0.2679,'-11.04'],[0.3830,'-14.49']],
[[0.7179,'3:00.575'],[0.2844,'-5.81'],[0.3072,'-12.22'],[0.3781,'-14.34']],
[[0.7194,'3:00.947'],[0.3242,'-6.81'],[0.3534,'-13.60'],[0.3738,'-14.21']],
[[0.7208,'3:01.318'],[0.3876,'-8.52'],[0.3579,'-13.74'],[0.3683,'-14.05']],
[[0.7223,'3:01.690'],[0.3664,'-7.93'],[0.3471,'-13.41'],[0.3623,'-13.87']],
[[0.7238,'3:02.061'],[0.3487,'-7.45'],[0.2998,'-12.00'],[0.3508,'-13.52']],
[[0.7253,'3:02.433'],[0.3911,'-8.62'],[0.2257,'-9.77'],[0.3352,'-13.06']],
[[0.7267,'3:02.805'],[0.0624,'-1.12'],[0.1926,'-8.78'],[0.3228,'-12.68']],
[[0.7282,'3:03.176'],[0.0965,'-1.76'],[0.2161,'-9.48'],[0.3148,'-12.44']],
[[0.7297,'3:03.548'],[0.1969,'-3.81'],[0.2369,'-10.11'],[0.3056,'-12.17']],
[[0.7312,'3:03.919'],[0.1228,'-2.28'],[0.2504,'-10.51'],[0.2932,'-11.80']],
[[0.7326,'3:04.291'],[0.2059,'-4.00'],[0.2602,'-10.80'],[0.2815,'-11.44']],
[[0.7341,'3:04.662'],[0.2138,'-4.18'],[0.2395,'-10.18'],[0.2758,'-11.27']],
[[0.7356,'3:05.034'],[0.0572,'-1.02'],[0.2188,'-9.57'],[0.2701,'-11.10']],
[[0.7371,'3:05.405'],[0.2376,'-4.71'],[0.2363,'-10.09'],[0.2695,'-11.08']],
[[0.7386,'3:05.777'],[0.1717,'-3.27'],[0.2556,'-10.67'],[0.2691,'-11.07']],
[[0.7400,'3:06.149'],[0.1748,'-3.34'],[0.2838,'-11.51'],[0.2779,'-11.34']],
[[0.7415,'3:06.520'],[0.2604,'-5.24'],[0.3143,'-12.43'],[0.2890,'-11.67']],
[[0.7430,'3:06.892'],[0.2916,'-5.99'],[0.3332,'-13.00'],[0.2996,'-11.99']],
[[0.7445,'3:07.263'],[0.2542,'-5.10'],[0.3457,'-13.37'],[0.3100,'-12.30']],
[[0.7459,'3:07.635'],[0.4110,'-9.19'],[0.3434,'-13.30'],[0.3246,'-12.74']],
[[0.7474,'3:08.006'],[0.3694,'-8.01'],[0.3254,'-12.76'],[0.3437,'-13.31']],
[[0.7489,'3:08.378'],[0.3338,'-7.06'],[0.3141,'-12.42'],[0.3578,'-13.74']],
[[0.7504,'3:08.749'],[0.3036,'-6.29'],[0.3169,'-12.51'],[0.3620,'-13.86']],
[[0.7518,'3:09.121'],[0.3708,'-8.05'],[0.3239,'-12.72'],[0.3683,'-14.05']],
[[0.7533,'3:09.493'],[0.4568,'-10.60'],[0.3519,'-13.56'],[0.3852,'-14.56']],
[[0.7548,'3:09.864'],[0.5980,'-15.83'],[0.3788,'-14.36'],[0.4017,'-15.05']],
[[0.7563,'3:10.236'],[0.6406,'-17.78'],[0.3391,'-13.17'],[0.3910,'-14.73']],
[[0.7578,'3:10.607'],[0.2788,'-5.68'],[0.2994,'-11.98'],[0.3802,'-14.41']],
[[0.7592,'3:10.979'],[0.2305,'-4.55'],[0.2976,'-11.93'],[0.3761,'-14.28']],
[[0.7607,'3:11.350'],[0.1426,'-2.67'],[0.3019,'-12.06'],[0.3730,'-14.19']],
[[0.7622,'3:11.722'],[0.1754,'-3.35'],[0.3068,'-12.21'],[0.3652,'-13.96']],
[[0.7637,'3:12.093'],[0.1545,'-2.92'],[0.3120,'-12.36'],[0.3555,'-13.67']],
[[0.7651,'3:12.465'],[0.1096,'-2.02'],[0.2938,'-11.81'],[0.3432,'-13.30']],
[[0.7666,'3:12.837'],[0.1697,'-3.23'],[0.2562,'-10.69'],[0.3288,'-12.86']],
[[0.7681,'3:13.208'],[0.0911,'-1.66'],[0.2408,'-10.22'],[0.3196,'-12.59']],
[[0.7696,'3:13.580'],[0.1870,'-3.60'],[0.2599,'-10.80'],[0.3185,'-12.55']],
[[0.7710,'3:13.951'],[0.1766,'-3.37'],[0.2640,'-10.92'],[0.3153,'-12.46']],
[[0.7725,'3:14.323'],[0.1108,'-2.04'],[0.2194,'-9.58'],[0.3053,'-12.16']],
[[0.7740,'3:14.694'],[0.0956,'-1.75'],[0.1777,'-8.33'],[0.2954,'-11.86']],
[[0.7755,'3:15.066'],[0.0572,'-1.02'],[0.1700,'-8.10'],[0.2857,'-11.57']],
[[0.7770,'3:15.437'],[0.1222,'-2.27'],[0.1622,'-7.87'],[0.2760,'-11.28']],
[[0.7784,'3:15.809'],[0.2421,'-4.82'],[0.2320,'-9.96'],[0.2770,'-11.31']],
[[0.7799,'3:16.181'],[0.1981,'-3.84'],[0.3083,'-12.25'],[0.2788,'-11.36']],
[[0.7814,'3:16.552'],[0.1799,'-3.45'],[0.2869,'-11.61'],[0.2802,'-11.40']],
[[0.7829,'3:16.924'],[0.1228,'-2.28'],[0.2359,'-10.08'],[0.2813,'-11.44']],
[[0.7843,'3:17.295'],[0.1167,'-2.15'],[0.2316,'-9.95'],[0.2803,'-11.41']],
[[0.7858,'3:17.667'],[0.1155,'-2.13'],[0.2570,'-10.71'],[0.2780,'-11.34']],
[[0.7873,'3:18.038'],[0.1667,'-3.17'],[0.2690,'-11.07'],[0.2822,'-11.46']],
[[0.7888,'3:18.410'],[0.0685,'-1.23'],[0.2649,'-10.95'],[0.2942,'-11.82']],
[[0.7903,'3:18.781'],[0.1004,'-1.84'],[0.2609,'-10.83'],[0.3012,'-12.04']],
[[0.7917,'3:19.153'],[0.1058,'-1.94'],[0.2573,'-10.72'],[0.2966,'-11.90']],
[[0.7932,'3:19.525'],[0.2120,'-4.14'],[0.2606,'-10.82'],[0.2932,'-11.79']],
[[0.7947,'3:19.896'],[0.2038,'-3.96'],[0.3050,'-12.15'],[0.2969,'-11.91']],
[[0.7962,'3:20.268'],[0.0635,'-1.14'],[0.3495,'-13.49'],[0.3007,'-12.02']],
[[0.7976,'3:20.639'],[0.0746,'-1.35'],[0.2908,'-11.72'],[0.3010,'-12.03']],
[[0.7991,'3:21.011'],[0.1223,'-2.27'],[0.2308,'-9.92'],[0.3013,'-12.04']],
[[0.8006,'3:21.382'],[0.1410,'-2.64'],[0.2275,'-9.82'],[0.2993,'-11.98']],
[[0.8021,'3:21.754'],[0.1908,'-3.68'],[0.2357,'-10.07'],[0.2969,'-11.91']],
[[0.8035,'3:22.125'],[0.0567,'-1.01'],[0.2421,'-10.26'],[0.2926,'-11.78']],
[[0.8050,'3:22.497'],[0.0597,'-1.07'],[0.2477,'-10.43'],[0.2872,'-11.62']],
[[0.8065,'3:22.869'],[0.1335,'-2.49'],[0.2388,'-10.16'],[0.2792,'-11.37']],
[[0.8080,'3:23.240'],[0.1194,'-2.21'],[0.2165,'-9.49'],[0.2686,'-11.06']],
[[0.8095,'3:23.612'],[0.1751,'-3.34'],[0.2150,'-9.45'],[0.2626,'-10.88']],
[[0.8109,'3:23.983'],[0.1407,'-2.63'],[0.2499,'-10.50'],[0.2646,'-10.94']],
[[0.8124,'3:24.355'],[0.0720,'-1.30'],[0.2697,'-11.09'],[0.2660,'-10.98']],
[[0.8139,'3:24.726'],[0.1471,'-2.76'],[0.2316,'-9.95'],[0.2650,'-10.95']],
[[0.8154,'3:25.098'],[0.1090,'-2.00'],[0.1960,'-8.88'],[0.2638,'-10.92']],
[[0.8168,'3:25.469'],[0.1781,'-3.41'],[0.2074,'-9.22'],[0.2602,'-10.81']],
[[0.8183,'3:25.841'],[0.1905,'-3.67'],[0.2189,'-9.57'],[0.2566,'-10.70']],
[[0.8198,'3:26.213'],[0.2171,'-4.25'],[0.2586,'-10.76'],[0.2636,'-10.91']],
[[0.8213,'3:26.584'],[0.2844,'-5.81'],[0.3017,'-12.05'],[0.2718,'-11.15']],
[[0.8227,'3:26.956'],[0.2756,'-5.60'],[0.3235,'-12.70'],[0.2782,'-11.35']],
[[0.8242,'3:27.327'],[0.2636,'-5.32'],[0.3377,'-13.13'],[0.2840,'-11.52']],
[[0.8257,'3:27.699'],[0.2335,'-4.62'],[0.3103,'-12.31'],[0.2894,'-11.68']],
[[0.8272,'3:28.070'],[0.1967,'-3.80'],[0.2532,'-10.60'],[0.2946,'-11.84']],
[[0.8287,'3:28.442'],[0.0585,'-1.05'],[0.2132,'-9.40'],[0.2963,'-11.89']],
[[0.8301,'3:28.813'],[0.0571,'-1.02'],[0.1964,'-8.89'],[0.2936,'-11.81']],
[[0.8316,'3:29.185'],[0.1205,'-2.23'],[0.1802,'-8.41'],[0.2878,'-11.63']],
[[0.8331,'3:29.557'],[0.0571,'-1.02'],[0.1658,'-7.97'],[0.2736,'-11.21']],
[[0.8346,'3:29.928'],[0.0571,'-1.02'],[0.1557,'-7.67'],[0.2598,'-10.79']],
[[0.8360,'3:30.300'],[0.0568,'-1.02'],[0.1796,'-8.39'],[0.2487,'-10.46']],
[[0.8375,'3:30.671'],[0.0566,'-1.01'],[0.2034,'-9.10'],[0.2375,'-10.13']],
[[0.8390,'3:31.043'],[0.1171,'-2.16'],[0.2139,'-9.42'],[0.2363,'-10.09']],
[[0.8405,'3:31.414'],[0.1551,'-2.93'],[0.2238,'-9.71'],[0.2355,'-10.07']],
[[0.8419,'3:31.786'],[0.0584,'-1.04'],[0.2405,'-10.22'],[0.2391,'-10.17']],
[[0.8434,'3:32.157'],[0.0892,'-1.62'],[0.2589,'-10.77'],[0.2438,'-10.31']],
[[0.8449,'3:32.529'],[0.1659,'-3.15'],[0.2510,'-10.53'],[0.2488,'-10.47']],
[[0.8464,'3:32.901'],[0.1006,'-1.84'],[0.2288,'-9.86'],[0.2541,'-10.62']],
[[0.8479,'3:33.272'],[0.1406,'-2.63'],[0.2150,'-9.45'],[0.2566,'-10.70']],
[[0.8493,'3:33.644'],[0.2016,'-3.91'],[0.2102,'-9.31'],[0.2562,'-10.69']],
[[0.8508,'3:34.015'],[0.1019,'-1.87'],[0.1967,'-8.90'],[0.2529,'-10.59']],
[[0.8523,'3:34.387'],[0.0566,'-1.01'],[0.1660,'-7.98'],[0.2438,'-10.31']],
[[0.8538,'3:34.758'],[0.0595,'-1.07'],[0.1410,'-7.23'],[0.2349,'-10.05']],
[[0.8552,'3:35.130'],[0.0570,'-1.02'],[0.1418,'-7.25'],[0.2271,'-9.81']],
[[0.8567,'3:35.501'],[0.0870,'-1.58'],[0.1436,'-7.31'],[0.2195,'-9.58']],
[[0.8582,'3:35.873'],[0.1248,'-2.32'],[0.1873,'-8.62'],[0.2204,'-9.61']],
[[0.8597,'3:36.244'],[0.0896,'-1.63'],[0.2309,'-9.93'],[0.2213,'-9.64']],
[[0.8612,'3:36.616'],[0.0614,'-1.10'],[0.2186,'-9.56'],[0.2234,'-9.70']],
[[0.8626,'3:36.988'],[0.0785,'-1.42'],[0.1976,'-8.93'],[0.2257,'-9.77']],
[[0.8641,'3:37.359'],[0.0572,'-1.02'],[0.1793,'-8.38'],[0.2251,'-9.75']],
[[0.8656,'3:37.731'],[0.1674,'-3.18'],[0.1622,'-7.87'],[0.2233,'-9.70']],
[[0.8671,'3:38.102'],[0.0633,'-1.14'],[0.1566,'-7.70'],[0.2231,'-9.69']],
[[0.8685,'3:38.474'],[0.1027,'-1.88'],[0.1603,'-7.81'],[0.2240,'-9.72']],
[[0.8700,'3:38.845'],[0.0625,'-1.12'],[0.1628,'-7.88'],[0.2233,'-9.70']],
[[0.8715,'3:39.217'],[0.0571,'-1.02'],[0.1634,'-7.90'],[0.2200,'-9.60']],
[[0.8730,'3:39.588'],[0.1151,'-2.12'],[0.1665,'-7.99'],[0.2174,'-9.52']],
[[0.8744,'3:39.960'],[0.2281,'-4.50'],[0.1771,'-8.31'],[0.2170,'-9.51']],
[[0.8759,'3:40.332'],[0.0861,'-1.56'],[0.1856,'-8.57'],[0.2165,'-9.49']],
[[0.8774,'3:40.703'],[0.0988,'-1.81'],[0.1723,'-8.17'],[0.2154,'-9.46']],
[[0.8789,'3:41.075'],[0.1067,'-1.96'],[0.1591,'-7.77'],[0.2143,'-9.43']],
[[0.8804,'3:41.446'],[0.0572,'-1.02'],[0.1476,'-7.43'],[0.2130,'-9.39']],
[[0.8818,'3:41.818'],[0.0572,'-1.02'],[0.1363,'-7.09'],[0.2117,'-9.35']],
[[0.8833,'3:42.189'],[0.1392,'-2.60'],[0.1445,'-7.33'],[0.2104,'-9.31']],
[[0.8848,'3:42.561'],[0.0568,'-1.02'],[0.1585,'-7.75'],[0.2091,'-9.27']],
[[0.8863,'3:42.932'],[0.0603,'-1.08'],[0.1786,'-8.36'],[0.2088,'-9.26']],
[[0.8877,'3:43.304'],[0.1480,'-2.78'],[0.2025,'-9.08'],[0.2091,'-9.27']],
[[0.8892,'3:43.676'],[0.1609,'-3.05'],[0.2124,'-9.37'],[0.2102,'-9.31']],
[[0.8907,'3:44.047'],[0.1486,'-2.79'],[0.2060,'-9.18'],[0.2121,'-9.36']],
[[0.8922,'3:44.419'],[0.1520,'-2.86'],[0.1957,'-8.87'],[0.2138,'-9.41']],
[[0.8936,'3:44.790'],[0.0769,'-1.39'],[0.1763,'-8.29'],[0.2149,'-9.45']],
[[0.8951,'3:45.162'],[0.0971,'-1.78'],[0.1610,'-7.83'],[0.2159,'-9.48']],
[[0.8966,'3:45.533'],[0.1393,'-2.61'],[0.1687,'-8.06'],[0.2154,'-9.46']],
[[0.8981,'3:45.905'],[0.0594,'-1.06'],[0.1765,'-8.29'],[0.2149,'-9.45']],
[[0.8996,'3:46.276'],[0.0630,'-1.13'],[0.1907,'-8.72'],[0.2148,'-9.44']],
[[0.9010,'3:46.648'],[0.1068,'-1.96'],[0.2050,'-9.15'],[0.2146,'-9.44']],
[[0.9025,'3:47.020'],[0.0610,'-1.09'],[0.2289,'-9.87'],[0.2205,'-9.61']],
[[0.9040,'3:47.391'],[0.1174,'-2.17'],[0.2547,'-10.64'],[0.2275,'-9.82']],
[[0.9055,'3:47.763'],[0.3037,'-6.29'],[0.2274,'-9.82'],[0.2349,'-10.05']],
[[0.9069,'3:48.134'],[0.0571,'-1.02'],[0.1753,'-8.26'],[0.2424,'-10.27']],
[[0.9084,'3:48.506'],[0.0572,'-1.02'],[0.1787,'-8.36'],[0.2463,'-10.39']],
[[0.9099,'3:48.877'],[0.1558,'-2.94'],[0.2322,'-9.97'],[0.2469,'-10.41']],
[[0.9114,'3:49.249'],[0.1688,'-3.21'],[0.2603,'-10.81'],[0.2503,'-10.51']],
[[0.9129,'3:49.620'],[0.0940,'-1.71'],[0.2451,'-10.35'],[0.2587,'-10.76']],
[[0.9143,'3:49.992'],[0.2066,'-4.02'],[0.2299,'-9.90'],[0.2635,'-10.90']],
[[0.9158,'3:50.364'],[0.1307,'-2.43'],[0.2146,'-9.44'],[0.2554,'-10.66']],
[[0.9173,'3:50.735'],[0.0571,'-1.02'],[0.2008,'-9.02'],[0.2484,'-10.45']],
[[0.9188,'3:51.107'],[0.1436,'-2.69'],[0.2118,'-9.35'],[0.2586,'-10.76']],
[[0.9202,'3:51.478'],[0.1115,'-2.05'],[0.2228,'-9.68'],[0.2688,'-11.06']],
[[0.9217,'3:51.850'],[0.0628,'-1.13'],[0.2092,'-9.28'],[0.2630,'-10.89']],
[[0.9232,'3:52.221'],[0.1284,'-2.39'],[0.1930,'-8.79'],[0.2555,'-10.67']],
[[0.9247,'3:52.593'],[0.2124,'-4.15'],[0.2264,'-9.79'],[0.2571,'-10.71']],
[[0.9261,'3:52.964'],[0.1719,'-3.28'],[0.2766,'-11.30'],[0.2618,'-10.85']],
[[0.9276,'3:53.336'],[0.1601,'-3.03'],[0.3105,'-12.31'],[0.2670,'-11.01']],
[[0.9291,'3:53.708'],[0.2526,'-5.06'],[0.3328,'-12.98'],[0.2727,'-11.18']],
[[0.9306,'3:54.079'],[0.3151,'-6.58'],[0.3188,'-12.56'],[0.2790,'-11.37']],
[[0.9321,'3:54.451'],[0.3196,'-6.69'],[0.2572,'-10.71'],[0.2860,'-11.58']],
[[0.9335,'3:54.822'],[0.1550,'-2.93'],[0.2157,'-9.47'],[0.2927,'-11.78']],
[[0.9350,'3:55.194'],[0.2049,'-3.98'],[0.2270,'-9.81'],[0.2984,'-11.95']],
[[0.9365,'3:55.565'],[0.2947,'-6.06'],[0.2467,'-10.40'],[0.3042,'-12.12']],
[[0.9380,'3:55.937'],[0.3261,'-6.86'],[0.3274,'-12.82'],[0.3105,'-12.32']],
[[0.9394,'3:56.308'],[0.4249,'-9.61'],[0.4081,'-15.24'],[0.3169,'-12.51']],
[[0.9409,'3:56.680'],[0.4043,'-9.00'],[0.3357,'-13.07'],[0.3222,'-12.67']],
[[0.9424,'3:57.052'],[0.5048,'-12.21'],[0.2578,'-10.73'],[0.3274,'-12.82']],
[[0.9439,'3:57.423'],[0.2860,'-5.85'],[0.2439,'-10.32'],[0.3322,'-12.96']],
[[0.9453,'3:57.795'],[0.1514,'-2.85'],[0.2452,'-10.36'],[0.3368,'-13.10']],
[[0.9468,'3:58.166'],[0.1941,'-3.75'],[0.2594,'-10.78'],[0.3397,'-13.19']],
[[0.9483,'3:58.538'],[0.2445,'-4.87'],[0.2806,'-11.42'],[0.3418,'-13.25']],
[[0.9498,'3:58.909'],[0.2235,'-4.39'],[0.2724,'-11.17'],[0.3281,'-12.84']],
[[0.9513,'3:59.281'],[0.2080,'-4.05'],[0.2344,'-10.03'],[0.2986,'-11.96']],
[[0.9527,'3:59.652'],[0.1623,'-3.08'],[0.2012,'-9.04'],[0.2754,'-11.26']],
[[0.9542,'4:00.024'],[0.0571,'-1.02'],[0.1771,'-8.31'],[0.2643,'-10.93']],
[[0.9557,'4:00.396'],[0.0571,'-1.02'],[0.1598,'-7.79'],[0.2536,'-10.61']],
[[0.9572,'4:00.767'],[0.2635,'-5.31'],[0.1726,'-8.18'],[0.2446,'-10.34']],
[[0.9586,'4:01.139'],[0.0579,'-1.04'],[0.1863,'-8.59'],[0.2359,'-10.08']],
[[0.9601,'4:01.510'],[0.1949,'-3.77'],[0.2343,'-10.03'],[0.2359,'-10.08']],
[[0.9616,'4:01.882'],[0.2918,'-5.99'],[0.2823,'-11.47'],[0.2360,'-10.08']],
[[0.9631,'4:02.253'],[0.3443,'-7.33'],[0.3293,'-12.88'],[0.2425,'-10.28']],
[[0.9645,'4:02.625'],[0.3985,'-8.83'],[0.3762,'-14.28'],[0.2500,'-10.50']],
[[0.9660,'4:02.996'],[0.4795,'-11.34'],[0.4168,'-15.50'],[0.2724,'-11.17']],
[[0.9675,'4:03.368'],[0.5293,'-13.09'],[0.4549,'-16.65'],[0.3006,'-12.02']],
[[0.9690,'4:03.740'],[0.5370,'-13.38'],[0.5024,'-18.07'],[0.3333,'-13.00']],
[[0.9705,'4:04.111'],[0.6056,'-16.16'],[0.5571,'-19.71'],[0.3694,'-14.08']],
[[0.9719,'4:04.483'],[0.5977,'-15.82'],[0.6007,'-21.02'],[0.4088,'-15.26']],
[[0.9734,'4:04.854'],[0.6317,'-17.35'],[0.6279,'-21.84'],[0.4530,'-16.59']],
[[0.9749,'4:05.226'],[0.6548,'-18.48'],[0.6513,'-22.54'],[0.4958,'-17.87']],
[[0.9764,'4:05.597'],[0.6367,'-17.59'],[0.6632,'-22.90'],[0.5343,'-19.03']],
[[0.9778,'4:05.969'],[0.6915,'-20.43'],[0.6836,'-23.51'],[0.5732,'-20.20']],
[[0.9793,'4:06.340'],[0.7554,'-24.46'],[0.7865,'-26.60'],[0.6156,'-21.47']],
[[0.9808,'4:06.712'],[0.7771,'-26.07'],[0.8895,'-29.68'],[0.6579,'-22.74']],
[[0.9823,'4:07.084'],[0.7813,'-26.41'],[0.9529,'-31.59'],[0.6943,'-23.83']],
[[0.9838,'4:07.455'],[0.8157,'-29.38'],[1.0136,'-33.41'],[0.7302,'-24.91']],
[[0.9852,'4:07.827'],[0.8510,'-33.08'],[1.1003,'-36.01'],[0.7750,'-26.25']],
[[0.9867,'4:08.198'],[0.8620,'-34.41'],[1.1943,'-38.83'],[0.8222,'-27.67']],
[[0.9882,'4:08.570'],[0.8889,'-38.17'],[1.4653,'-46.96'],[0.8946,'-29.84']],
[[0.9897,'4:08.941'],[0.9476,'-51.23'],[1.8430,'-58.29'],[0.9822,'-32.47']],
[[0.9911,'4:09.313'],[0.9470,'-51.03'],[2.1226,'-66.68'],[1.0640,'-34.92']],
[[0.9926,'4:09.684'],[0.9442,'-50.13'],[2.2908,'-71.72'],[1.1391,'-37.17']],
[[0.9941,'4:10.056'],[0.9439,'-50.06'],[2.4186,'-75.56'],[1.2250,'-39.75']],
[[0.9956,'4:10.428'],[0.9438,'-50.01'],[2.4574,'-76.72'],[1.3347,'-43.04']],
[[0.9970,'4:10.799'],[0.9439,'-50.04'],[2.4902,'-77.71'],[1.4273,'-45.82']],
[[0.9985,'4:11.171'],[0.9442,'-50.15'],[2.4902,'-77.71'],[1.4273,'-45.82']],
[[1.0000,'4:11.542'],[0.9471,'-51.06'],[2.4902,'-77.71'],[1.4273,'-45.82']],
],
xmaj:[
[0.0000,'0:00'],
[0.1193,'0:30'],
[0.2385,'1:00'],
[0.3578,'1:30'],
[0.4771,'2:00'],
[0.5963,'2:30'],
[0.7156,'3:00'],
[0.8348,'3:30'],
[0.9541,'4:00'],
],
xmin:[
],
yrange:[
-33.00,
-3.00,
],
ymaj:[
[0.1000,'-6'],
[0.3000,'-12'],
[0.5000,'-18'],
[0.7000,'-24'],
[0.9000,'-30'],
],
ymin:[
0.0000,
0.2000,
0.4000,
0.6000,
0.8000,
1.0000,
],
markers:[
[0.0000,'0:00.000','A minor','#567272', '#FFFFFF'],
],
};
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>