-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.json
1434 lines (1434 loc) · 654 KB
/
sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{ "X3D": {
"encoding":"UTF-8",
"@profile":"Immersive",
"@version":"3.1",
"@xsd:noNamespaceSchemaLocation":"http://www.web3d.org/specifications/x3d-3.1.xsd",
"JSON schema":"http://www.web3d.org/specifications/x3d-3.3-JSONSchema.json",
"head": {
"component": [
{
"@name":"H-Anim",
"@level":1
}
],
"meta": [
{
"@name":"title",
"@content":"BvhSeamless3dExport1.x3d"
},
{
"@name":"description",
"@content":"Seamless3d tool import of bvh file and export of x3d scene. Note use of single skin mesh, animated by unadorned skeleton."
},
{
"@name":"translator",
"@content":"Don Brutzman"
},
{
"@name":"created",
"@content":"1 January 2017"
},
{
"@name":"translated",
"@content":"1 January 2017"
},
{
"@name":"modified",
"@content":"2 January 2017"
},
{
"@name":"reference",
"@content":"1.bvh"
},
{
"@name":"Image",
"@content":"BvhSeamless3dExport1.png"
},
{
"@name":"subject",
"@content":"BVH X3D Seamless3d"
},
{
"@name":"generator",
"@content":"Seamless3d 3.002, http://www.seamless3d.com"
},
{
"@name":"generator",
"@content":"Seamless3d developed by Graham John Perrett [email protected]"
},
{
"@name":"generator",
"@content":"X3D-Edit 3.3, https://savage.nps.edu/X3D-Edit"
},
{
"@name":"identifier",
"@content":"http://X3dGraphics.com/examples/X3dForAdvancedModeling/MotionCapture/BvhSeamless3dExport1.x3d"
},
{
"@name":"reference",
"@content":"https://sourceforge.net/p/x3d/code/24079"
},
{
"@name":"license",
"@content":"license.html"
},
{
"@name":"translated",
"@content":"26 July 2017"
},
{
"@name":"generator",
"@content":"X3dToJson.xslt, http://www.web3d.org/x3d/stylesheets/X3dToJson.html"
},
{
"@name":"reference",
"@content":"X3D JSON encoding: http://www.web3d.org/wiki/index.php/X3D_JSON_Encoding"
}
]
},
"Scene": {
"-children":[
{ "Viewpoint":
{
"@description":"View animation",
"@position":[0,2,16]
}
},
{ "ProtoDeclare":
{
"@name":"PAnim",
"ProtoInterface": {
"field": [
{
"@name":"play",
"@accessType":"inputOutput",
"@type":"SFBool",
"@value":true
},
{
"@name":"pause",
"@accessType":"inputOutput",
"@type":"SFBool",
"@value":true
},
{
"@name":"period",
"@accessType":"inputOutput",
"@type":"SFTime",
"@value":1
},
{
"@name":"slider",
"@accessType":"outputOnly",
"@type":"SFFloat"
},
{
"@name":"loop",
"@accessType":"initializeOnly",
"@type":"SFBool",
"@value":false
},
{
"@name":"children",
"@accessType":"inputOutput",
"@type":"MFNode"
},
{
"@name":"startTime",
"@accessType":"inputOutput",
"@type":"SFTime",
"@value":0
}
]
},
"ProtoBody": {
"-children":[
{ "TimeSensor":
{
"@DEF":"timeSensor",
"IS": {
"connect": [
{
"@nodeField":"cycleInterval",
"@protoField":"period"
},
{
"@nodeField":"loop",
"@protoField":"loop"
},
{
"@nodeField":"startTime",
"@protoField":"startTime"
},
{
"@nodeField":"fraction_changed",
"@protoField":"slider"
}
]
}
}
},
{ "Script":
{
"@directOutput":true,
"field": [
{
"@name":"play",
"@accessType":"inputOutput",
"@type":"SFBool",
"@value":false
},
{
"@name":"pause",
"@accessType":"inputOutput",
"@type":"SFBool",
"@value":false
},
{
"@name":"period",
"@accessType":"inputOutput",
"@type":"SFTime",
"@value":0
},
{
"@name":"timeSensor",
"@accessType":"initializeOnly",
"@type":"SFNode",
"-children":[
{ "TimeSensor":
{
"@USE":"timeSensor"
}
}
]
},
{
"@name":"block",
"@accessType":"initializeOnly",
"@type":"SFBool",
"@value":false
}
],
"IS": {
"connect": [
{
"@nodeField":"play",
"@protoField":"play"
},
{
"@nodeField":"pause",
"@protoField":"pause"
},
{
"@nodeField":"period",
"@protoField":"period"
}
]
},
"#sourceText":[
"ecmascript:",
"function initialize(){",
"if(play==false){",
"timeSensor.stopTime=1;",
"}",
"pause=!play;",
"}",
"function play(v, t){",
"if(block){",
"return;",
"}",
"block=true;",
"if(v){",
"timeSensor.startTime=t;",
"}",
"else{",
"timeSensor.stopTime=t;",
"}",
"if(v==false){",
"pause=true;",
"}",
"else{",
"pause=false;",
"}",
"block=false;",
"}",
"function pause(v, t){",
"if(block){",
"return;",
"}",
"block=true;",
"if(!v){",
"t2=t-timeSensor.fraction_changed*period;",
"timeSensor.stopTime=t2-1;",
"timeSensor.startTime=t2;",
"}",
"else{",
"timeSensor.stopTime=t;",
"}",
"if(v==false){",
"play=true;",
"}",
"else{",
"play=false;",
"}",
"block=false;",
"}"
]
}
}
]
}
}
},
{ "HAnimHumanoid":
{
"-skin":[
{ "Shape":
{
"-appearance":
{ "Appearance":
{
"-material":
{ "Material":
{
}
}
}
},
"-geometry":
{ "IndexedTriangleSet":
{
"@index":[0,2,1,0,3,2,0,4,3,0,5,4,0,6,5,0,7,6,0,8,7,0,9,8,0,10,9,0,11,10,0,12,11,0,13,12,0,14,13,0,15,14,0,16,15,0,17,16,2,18,1,2,19,18,3,19,2,3,20,19,4,20,3,4,21,20,5,21,4,5,22,21,6,22,5,6,23,22,7,23,6,7,24,23,8,24,7,8,25,24,9,25,8,9,26,25,10,26,9,10,27,26,11,27,10,11,28,27,12,28,11,12,29,28,13,29,12,13,30,29,14,30,13,14,31,30,15,31,14,15,32,31,16,32,15,16,33,32,17,33,16,17,34,33,19,35,18,19,36,35,20,36,19,20,37,36,21,37,20,21,38,37,22,38,21,22,39,38,23,39,22,23,40,39,24,40,23,24,41,40,25,41,24,25,42,41,26,42,25,26,43,42,27,43,26,27,44,43,28,44,27,28,45,44,29,45,28,29,46,45,30,46,29,30,47,46,31,47,30,31,48,47,32,48,31,32,49,48,33,49,32,33,50,49,34,50,33,34,51,50,36,52,35,36,53,52,37,53,36,37,54,53,38,54,37,38,55,54,39,55,38,39,56,55,40,56,39,40,57,56,41,57,40,41,58,57,42,58,41,42,59,58,43,59,42,43,60,59,44,60,43,44,61,60,45,61,44,45,62,61,46,62,45,46,63,62,47,63,46,47,64,63,48,64,47,48,65,64,49,65,48,49,66,65,50,66,49,50,67,66,51,67,50,51,68,67,53,69,52,53,70,69,54,70,53,54,71,70,55,71,54,55,72,71,56,72,55,56,73,72,57,73,56,57,74,73,58,74,57,58,75,74,59,75,58,59,76,75,60,76,59,60,77,76,61,77,60,61,78,77,62,78,61,62,79,78,63,79,62,63,80,79,64,80,63,64,81,80,65,81,64,65,82,81,66,82,65,66,83,82,67,83,66,67,84,83,68,84,67,68,85,84,70,86,69,70,87,86,71,87,70,71,88,87,72,88,71,72,89,88,73,89,72,73,90,89,74,90,73,74,91,90,75,91,74,75,92,91,76,92,75,76,93,92,77,93,76,77,94,93,78,94,77,78,95,94,79,95,78,79,96,95,80,96,79,80,97,96,81,97,80,81,98,97,82,98,81,82,99,98,83,99,82,83,100,99,84,100,83,84,101,100,85,101,84,85,102,101,87,103,86,87,104,103,88,104,87,88,105,104,89,105,88,89,106,105,90,106,89,90,107,106,91,107,90,91,108,107,92,108,91,92,109,108,93,109,92,93,110,109,94,110,93,94,111,110,95,111,94,95,112,111,96,112,95,96,113,112,97,113,96,97,114,113,98,114,97,98,115,114,99,115,98,99,116,115,100,116,99,100,117,116,101,117,100,101,118,117,102,118,101,102,119,118,104,120,103,104,121,120,105,121,104,105,122,121,106,122,105,106,123,122,107,123,106,107,124,123,108,124,107,108,125,124,109,125,108,109,126,125,110,126,109,110,127,126,111,127,110,111,128,127,112,128,111,112,129,128,113,129,112,113,130,129,114,130,113,114,131,130,115,131,114,115,132,131,116,132,115,116,133,132,117,133,116,117,134,133,118,134,117,118,135,134,119,135,118,119,136,135,121,137,120,121,138,137,122,138,121,122,139,138,123,139,122,123,140,139,124,140,123,124,141,140,125,141,124,125,142,141,126,142,125,126,143,142,127,143,126,127,144,143,128,144,127,128,145,144,129,145,128,129,146,145,130,146,129,130,147,146,131,147,130,131,148,147,132,148,131,132,149,148,133,149,132,133,150,149,134,150,133,134,151,150,135,151,134,135,152,151,136,152,135,136,153,152,138,154,137,138,155,154,139,155,138,139,156,155,140,156,139,140,157,156,141,157,140,141,158,157,142,158,141,142,159,158,143,159,142,143,160,159,144,160,143,144,161,160,145,161,144,145,162,161,146,162,145,146,163,162,147,163,146,147,164,163,148,164,147,148,165,164,149,165,148,149,166,165,150,166,149,150,167,166,151,167,150,151,168,167,152,168,151,152,169,168,153,169,152,153,170,169,155,171,154,155,172,171,156,172,155,156,173,172,157,173,156,157,174,173,158,174,157,158,175,174,159,175,158,159,176,175,160,176,159,160,177,176,161,177,160,161,178,177,162,178,161,162,179,178,163,179,162,163,180,179,164,180,163,164,181,180,165,181,164,165,182,181,166,182,165,166,183,182,167,183,166,167,184,183,168,184,167,168,185,184,169,185,168,169,186,185,170,186,169,170,187,186,172,188,171,172,189,188,173,189,172,173,190,189,174,190,173,174,191,190,175,191,174,175,192,191,176,192,175,176,193,192,177,193,176,177,194,193,178,194,177,178,195,194,179,195,178,179,196,195,180,196,179,180,197,196,181,197,180,181,198,197,182,198,181,182,199,198,183,199,182,183,200,199,184,200,183,184,201,200,185,201,184,185,202,201,186,202,185,186,203,202,187,203,186,187,204,203,189,205,188,189,206,205,190,206,189,190,207,206,191,207,190,191,208,207,192,208,191,192,209,208,193,209,192,193,210,209,194,210,193,194,211,210,195,211,194,195,212,211,196,212,195,196,213,212,197,213,196,197,214,213,198,214,197,198,215,214,199,215,198,199,216,215,200,216,199,200,217,216,201,217,200,201,218,217,202,218,201,202,219,218,203,219,202,203,220,219,204,220,203,204,221,220,206,222,205,206,223,222,207,223,206,207,224,223,208,224,207,208,225,224,209,225,208,209,226,225,210,226,209,210,227,226,211,227,210,211,228,227,212,228,211,212,229,228,213,229,212,213,230,229,214,230,213,214,231,230,215,231,214,215,232,231,216,232,215,216,233,232,217,233,216,217,234,233,218,234,217,218,235,234,219,235,218,219,236,235,220,236,219,220,237,236,221,237,220,221,238,237,223,239,222,223,240,239,224,240,223,224,241,240,225,241,224,225,242,241,226,242,225,226,243,242,227,243,226,227,244,243,228,244,227,228,245,244,229,245,228,229,246,245,230,246,229,230,247,246,231,247,230,231,248,247,232,248,231,232,249,248,233,249,232,233,250,249,234,250,233,234,251,250,235,251,234,235,252,251,236,252,235,236,253,252,237,253,236,237,254,253,238,254,237,238,255,254,256,239,240,256,240,241,256,241,242,256,242,243,256,243,244,256,244,245,256,245,246,256,246,247,256,247,248,256,248,249,256,249,250,256,250,251,256,251,252,256,252,253,256,253,254,256,254,255,257,259,258,257,260,259,257,261,260,257,262,261,257,263,262,257,264,263,257,265,264,257,266,265,257,267,266,257,268,267,257,269,268,257,270,269,257,271,270,257,272,271,257,273,272,257,274,273,259,275,258,259,276,275,260,276,259,260,277,276,261,277,260,261,278,277,262,278,261,262,279,278,263,279,262,263,280,279,264,280,263,264,281,280,265,281,264,265,282,281,266,282,265,266,283,282,267,283,266,267,284,283,268,284,267,268,285,284,269,285,268,269,286,285,270,286,269,270,287,286,271,287,270,271,288,287,272,288,271,272,289,288,273,289,272,273,290,289,274,290,273,274,291,290,276,292,275,276,293,292,277,293,276,277,294,293,278,294,277,278,295,294,279,295,278,279,296,295,280,296,279,280,297,296,281,297,280,281,298,297,282,298,281,282,299,298,283,299,282,283,300,299,284,300,283,284,301,300,285,301,284,285,302,301,286,302,285,286,303,302,287,303,286,287,304,303,288,304,287,288,305,304,289,305,288,289,306,305,290,306,289,290,307,306,291,307,290,291,308,307,293,309,292,293,310,309,294,310,293,294,311,310,295,311,294,295,312,311,296,312,295,296,313,312,297,313,296,297,314,313,298,314,297,298,315,314,299,315,298,299,316,315,300,316,299,300,317,316,301,317,300,301,318,317,302,318,301,302,319,318,303,319,302,303,320,319,304,320,303,304,321,320,305,321,304,305,322,321,306,322,305,306,323,322,307,323,306,307,324,323,308,324,307,308,325,324,310,326,309,310,327,326,311,327,310,311,328,327,312,328,311,312,329,328,313,329,312,313,330,329,314,330,313,314,331,330,315,331,314,315,332,331,316,332,315,316,333,332,317,333,316,317,334,333,318,334,317,318,335,334,319,335,318,319,336,335,320,336,319,320,337,336,321,337,320,321,338,337,322,338,321,322,339,338,323,339,322,323,340,339,324,340,323,324,341,340,325,341,324,325,342,341,327,343,326,327,344,343,328,344,327,328,345,344,329,345,328,329,346,345,330,346,329,330,347,346,331,347,330,331,348,347,332,348,331,332,349,348,333,349,332,333,350,349,334,350,333,334,351,350,335,351,334,335,352,351,336,352,335,336,353,352,337,353,336,337,354,353,338,354,337,338,355,354,339,355,338,339,356,355,340,356,339,340,357,356,341,357,340,341,358,357,342,358,341,342,359,358,344,360,343,344,361,360,345,361,344,345,362,361,346,362,345,346,363,362,347,363,346,347,364,363,348,364,347,348,365,364,349,365,348,349,366,365,350,366,349,350,367,366,351,367,350,351,368,367,352,368,351,352,369,368,353,369,352,353,370,369,354,370,353,354,371,370,355,371,354,355,372,371,356,372,355,356,373,372,357,373,356,357,374,373,358,374,357,358,375,374,359,375,358,359,376,375,361,377,360,361,378,377,362,378,361,362,379,378,363,379,362,363,380,379,364,380,363,364,381,380,365,381,364,365,382,381,366,382,365,366,383,382,367,383,366,367,384,383,368,384,367,368,385,384,369,385,368,369,386,385,370,386,369,370,387,386,371,387,370,371,388,387,372,388,371,372,389,388,373,389,372,373,390,389,374,390,373,374,391,390,375,391,374,375,392,391,376,392,375,376,393,392,378,394,377,378,395,394,379,395,378,379,396,395,380,396,379,380,397,396,381,397,380,381,398,397,382,398,381,382,399,398,383,399,382,383,400,399,384,400,383,384,401,400,385,401,384,385,402,401,386,402,385,386,403,402,387,403,386,387,404,403,388,404,387,388,405,404,389,405,388,389,406,405,390,406,389,390,407,406,391,407,390,391,408,407,392,408,391,392,409,408,393,409,392,393,410,409,395,411,394,395,412,411,396,412,395,396,413,412,397,413,396,397,414,413,398,414,397,398,415,414,399,415,398,399,416,415,400,416,399,400,417,416,401,417,400,401,418,417,402,418,401,402,419,418,403,419,402,403,420,419,404,420,403,404,421,420,405,421,404,405,422,421,406,422,405,406,423,422,407,423,406,407,424,423,408,424,407,408,425,424,409,425,408,409,426,425,410,426,409,410,427,426,412,428,411,412,429,428,413,429,412,413,430,429,414,430,413,414,431,430,415,431,414,415,432,431,416,432,415,416,433,432,417,433,416,417,434,433,418,434,417,418,435,434,419,435,418,419,436,435,420,436,419,420,437,436,421,437,420,421,438,437,422,438,421,422,439,438,423,439,422,423,440,439,424,440,423,424,441,440,425,441,424,425,442,441,426,442,425,426,443,442,427,443,426,427,444,443,429,445,428,429,446,445,430,446,429,430,447,446,431,447,430,431,448,447,432,448,431,432,449,448,433,449,432,433,450,449,434,450,433,434,451,450,435,451,434,435,452,451,436,452,435,436,453,452,437,453,436,437,454,453,438,454,437,438,455,454,439,455,438,439,456,455,440,456,439,440,457,456,441,457,440,441,458,457,442,458,441,442,459,458,443,459,442,443,460,459,444,460,443,444,461,460,446,462,445,446,463,462,447,463,446,447,464,463,448,464,447,448,465,464,449,465,448,449,466,465,450,466,449,450,467,466,451,467,450,451,468,467,452,468,451,452,469,468,453,469,452,453,470,469,454,470,453,454,471,470,455,471,454,455,472,471,456,472,455,456,473,472,457,473,456,457,474,473,458,474,457,458,475,474,459,475,458,459,476,475,460,476,459,460,477,476,461,477,460,461,478,477,463,479,462,463,480,479,464,480,463,464,481,480,465,481,464,465,482,481,466,482,465,466,483,482,467,483,466,467,484,483,468,484,467,468,485,484,469,485,468,469,486,485,470,486,469,470,487,486,471,487,470,471,488,487,472,488,471,472,489,488,473,489,472,473,490,489,474,490,473,474,491,490,475,491,474,475,492,491,476,492,475,476,493,492,477,493,476,477,494,493,478,494,477,478,495,494,480,496,479,480,497,496,481,497,480,481,498,497,482,498,481,482,499,498,483,499,482,483,500,499,484,500,483,484,501,500,485,501,484,485,502,501,486,502,485,486,503,502,487,503,486,487,504,503,488,504,487,488,505,504,489,505,488,489,506,505,490,506,489,490,507,506,491,507,490,491,508,507,492,508,491,492,509,508,493,509,492,493,510,509,494,510,493,494,511,510,495,511,494,495,512,511,513,496,497,513,497,498,513,498,499,513,499,500,513,500,501,513,501,502,513,502,503,513,503,504,513,504,505,513,505,506,513,506,507,513,507,508,513,508,509,513,509,510,513,510,511,513,511,512,514,516,515,514,517,516,514,518,517,514,519,518,514,520,519,514,521,520,514,522,521,514,523,522,514,524,523,514,525,524,514,526,525,514,527,526,514,528,527,514,529,528,514,530,529,514,531,530,516,532,515,516,533,532,517,533,516,517,534,533,518,534,517,518,535,534,519,535,518,519,536,535,520,536,519,520,537,536,521,537,520,521,538,537,522,538,521,522,539,538,523,539,522,523,540,539,524,540,523,524,541,540,525,541,524,525,542,541,526,542,525,526,543,542,527,543,526,527,544,543,528,544,527,528,545,544,529,545,528,529,546,545,530,546,529,530,547,546,531,547,530,531,548,547,533,549,532,533,550,549,534,550,533,534,551,550,535,551,534,535,552,551,536,552,535,536,553,552,537,553,536,537,554,553,538,554,537,538,555,554,539,555,538,539,556,555,540,556,539,540,557,556,541,557,540,541,558,557,542,558,541,542,559,558,543,559,542,543,560,559,544,560,543,544,561,560,545,561,544,545,562,561,546,562,545,546,563,562,547,563,546,547,564,563,548,564,547,548,565,564,550,566,549,550,567,566,551,567,550,551,568,567,552,568,551,552,569,568,553,569,552,553,570,569,554,570,553,554,571,570,555,571,554,555,572,571,556,572,555,556,573,572,557,573,556,557,574,573,558,574,557,558,575,574,559,575,558,559,576,575,560,576,559,560,577,576,561,577,560,561,578,577,562,578,561,562,579,578,563,579,562,563,580,579,564,580,563,564,581,580,565,581,564,565,582,581,567,583,566,567,584,583,568,584,567,568,585,584,569,585,568,569,586,585,570,586,569,570,587,586,571,587,570,571,588,587,572,588,571,572,589,588,573,589,572,573,590,589,574,590,573,574,591,590,575,591,574,575,592,591,576,592,575,576,593,592,577,593,576,577,594,593,578,594,577,578,595,594,579,595,578,579,596,595,580,596,579,580,597,596,581,597,580,581,598,597,582,598,581,582,599,598,584,600,583,584,601,600,585,601,584,585,602,601,586,602,585,586,603,602,587,603,586,587,604,603,588,604,587,588,605,604,589,605,588,589,606,605,590,606,589,590,607,606,591,607,590,591,608,607,592,608,591,592,609,608,593,609,592,593,610,609,594,610,593,594,611,610,595,611,594,595,612,611,596,612,595,596,613,612,597,613,596,597,614,613,598,614,597,598,615,614,599,615,598,599,616,615,601,617,600,601,618,617,602,618,601,602,619,618,603,619,602,603,620,619,604,620,603,604,621,620,605,621,604,605,622,621,606,622,605,606,623,622,607,623,606,607,624,623,608,624,607,608,625,624,609,625,608,609,626,625,610,626,609,610,627,626,611,627,610,611,628,627,612,628,611,612,629,628,613,629,612,613,630,629,614,630,613,614,631,630,615,631,614,615,632,631,616,632,615,616,633,632,618,634,617,618,635,634,619,635,618,619,636,635,620,636,619,620,637,636,621,637,620,621,638,637,622,638,621,622,639,638,623,639,622,623,640,639,624,640,623,624,641,640,625,641,624,625,642,641,626,642,625,626,643,642,627,643,626,627,644,643,628,644,627,628,645,644,629,645,628,629,646,645,630,646,629,630,647,646,631,647,630,631,648,647,632,648,631,632,649,648,633,649,632,633,650,649,635,651,634,635,652,651,636,652,635,636,653,652,637,653,636,637,654,653,638,654,637,638,655,654,639,655,638,639,656,655,640,656,639,640,657,656,641,657,640,641,658,657,642,658,641,642,659,658,643,659,642,643,660,659,644,660,643,644,661,660,645,661,644,645,662,661,646,662,645,646,663,662,647,663,646,647,664,663,648,664,647,648,665,664,649,665,648,649,666,665,650,666,649,650,667,666,652,668,651,652,669,668,653,669,652,653,670,669,654,670,653,654,671,670,655,671,654,655,672,671,656,672,655,656,673,672,657,673,656,657,674,673,658,674,657,658,675,674,659,675,658,659,676,675,660,676,659,660,677,676,661,677,660,661,678,677,662,678,661,662,679,678,663,679,662,663,680,679,664,680,663,664,681,680,665,681,664,665,682,681,666,682,665,666,683,682,667,683,666,667,684,683,669,685,668,669,686,685,670,686,669,670,687,686,671,687,670,671,688,687,672,688,671,672,689,688,673,689,672,673,690,689,674,690,673,674,691,690,675,691,674,675,692,691,676,692,675,676,693,692,677,693,676,677,694,693,678,694,677,678,695,694,679,695,678,679,696,695,680,696,679,680,697,696,681,697,680,681,698,697,682,698,681,682,699,698,683,699,682,683,700,699,684,700,683,684,701,700,686,702,685,686,703,702,687,703,686,687,704,703,688,704,687,688,705,704,689,705,688,689,706,705,690,706,689,690,707,706,691,707,690,691,708,707,692,708,691,692,709,708,693,709,692,693,710,709,694,710,693,694,711,710,695,711,694,695,712,711,696,712,695,696,713,712,697,713,696,697,714,713,698,714,697,698,715,714,699,715,698,699,716,715,700,716,699,700,717,716,701,717,700,701,718,717,703,719,702,703,720,719,704,720,703,704,721,720,705,721,704,705,722,721,706,722,705,706,723,722,707,723,706,707,724,723,708,724,707,708,725,724,709,725,708,709,726,725,710,726,709,710,727,726,711,727,710,711,728,727,712,728,711,712,729,728,713,729,712,713,730,729,714,730,713,714,731,730,715,731,714,715,732,731,716,732,715,716,733,732,717,733,716,717,734,733,718,734,717,718,735,734,720,736,719,720,737,736,721,737,720,721,738,737,722,738,721,722,739,738,723,739,722,723,740,739,724,740,723,724,741,740,725,741,724,725,742,741,726,742,725,726,743,742,727,743,726,727,744,743,728,744,727,728,745,744,729,745,728,729,746,745,730,746,729,730,747,746,731,747,730,731,748,747,732,748,731,732,749,748,733,749,732,733,750,749,734,750,733,734,751,750,735,751,734,735,752,751,737,753,736,737,754,753,738,754,737,738,755,754,739,755,738,739,756,755,740,756,739,740,757,756,741,757,740,741,758,757,742,758,741,742,759,758,743,759,742,743,760,759,744,760,743,744,761,760,745,761,744,745,762,761,746,762,745,746,763,762,747,763,746,747,764,763,748,764,747,748,765,764,749,765,748,749,766,765,750,766,749,750,767,766,751,767,750,751,768,767,752,768,751,752,769,768,770,753,754,770,754,755,770,755,756,770,756,757,770,757,758,770,758,759,770,759,760,770,760,761,770,761,762,770,762,763,770,763,764,770,764,765,770,765,766,770,766,767,770,767,768,770,768,769,771,773,772,771,774,773,771,775,774,771,776,775,771,777,776,771,778,777,771,779,778,771,780,779,771,781,780,771,782,781,771,783,782,771,784,783,771,785,784,771,786,785,771,787,786,771,788,787,773,789,772,773,790,789,774,790,773,774,791,790,775,791,774,775,792,791,776,792,775,776,793,792,777,793,776,777,794,793,778,794,777,778,795,794,779,795,778,779,796,795,780,796,779,780,797,796,781,797,780,781,798,797,782,798,781,782,799,798,783,799,782,783,800,799,784,800,783,784,801,800,785,801,784,785,802,801,786,802,785,786,803,802,787,803,786,787,804,803,788,804,787,788,805,804,790,806,789,790,807,806,791,807,790,791,808,807,792,808,791,792,809,808,793,809,792,793,810,809,794,810,793,794,811,810,795,811,794,795,812,811,796,812,795,796,813,812,797,813,796,797,814,813,798,814,797,798,815,814,799,815,798,799,816,815,800,816,799,800,817,816,801,817,800,801,818,817,802,818,801,802,819,818,803,819,802,803,820,819,804,820,803,804,821,820,805,821,804,805,822,821,807,823,806,807,824,823,808,824,807,808,825,824,809,825,808,809,826,825,810,826,809,810,827,826,811,827,810,811,828,827,812,828,811,812,829,828,813,829,812,813,830,829,814,830,813,814,831,830,815,831,814,815,832,831,816,832,815,816,833,832,817,833,816,817,834,833,818,834,817,818,835,834,819,835,818,819,836,835,820,836,819,820,837,836,821,837,820,821,838,837,822,838,821,822,839,838,824,840,823,824,841,840,825,841,824,825,842,841,826,842,825,826,843,842,827,843,826,827,844,843,828,844,827,828,845,844,829,845,828,829,846,845,830,846,829,830,847,846,831,847,830,831,848,847,832,848,831,832,849,848,833,849,832,833,850,849,834,850,833,834,851,850,835,851,834,835,852,851,836,852,835,836,853,852,837,853,836,837,854,853,838,854,837,838,855,854,839,855,838,839,856,855,841,857,840,841,858,857,842,858,841,842,859,858,843,859,842,843,860,859,844,860,843,844,861,860,845,861,844,845,862,861,846,862,845,846,863,862,847,863,846,847,864,863,848,864,847,848,865,864,849,865,848,849,866,865,850,866,849,850,867,866,851,867,850,851,868,867,852,868,851,852,869,868,853,869,852,853,870,869,854,870,853,854,871,870,855,871,854,855,872,871,856,872,855,856,873,872,858,874,857,858,875,874,859,875,858,859,876,875,860,876,859,860,877,876,861,877,860,861,878,877,862,878,861,862,879,878,863,879,862,863,880,879,864,880,863,864,881,880,865,881,864,865,882,881,866,882,865,866,883,882,867,883,866,867,884,883,868,884,867,868,885,884,869,885,868,869,886,885,870,886,869,870,887,886,871,887,870,871,888,887,872,888,871,872,889,888,873,889,872,873,890,889,875,891,874,875,892,891,876,892,875,876,893,892,877,893,876,877,894,893,878,894,877,878,895,894,879,895,878,879,896,895,880,896,879,880,897,896,881,897,880,881,898,897,882,898,881,882,899,898,883,899,882,883,900,899,884,900,883,884,901,900,885,901,884,885,902,901,886,902,885,886,903,902,887,903,886,887,904,903,888,904,887,888,905,904,889,905,888,889,906,905,890,906,889,890,907,906,892,908,891,892,909,908,893,909,892,893,910,909,894,910,893,894,911,910,895,911,894,895,912,911,896,912,895,896,913,912,897,913,896,897,914,913,898,914,897,898,915,914,899,915,898,899,916,915,900,916,899,900,917,916,901,917,900,901,918,917,902,918,901,902,919,918,903,919,902,903,920,919,904,920,903,904,921,920,905,921,904,905,922,921,906,922,905,906,923,922,907,923,906,907,924,923,909,925,908,909,926,925,910,926,909,910,927,926,911,927,910,911,928,927,912,928,911,912,929,928,913,929,912,913,930,929,914,930,913,914,931,930,915,931,914,915,932,931,916,932,915,916,933,932,917,933,916,917,934,933,918,934,917,918,935,934,919,935,918,919,936,935,920,936,919,920,937,936,921,937,920,921,938,937,922,938,921,922,939,938,923,939,922,923,940,939,924,940,923,924,941,940,926,942,925,926,943,942,927,943,926,927,944,943,928,944,927,928,945,944,929,945,928,929,946,945,930,946,929,930,947,946,931,947,930,931,948,947,932,948,931,932,949,948,933,949,932,933,950,949,934,950,933,934,951,950,935,951,934,935,952,951,936,952,935,936,953,952,937,953,936,937,954,953,938,954,937,938,955,954,939,955,938,939,956,955,940,956,939,940,957,956,941,957,940,941,958,957,943,959,942,943,960,959,944,960,943,944,961,960,945,961,944,945,962,961,946,962,945,946,963,962,947,963,946,947,964,963,948,964,947,948,965,964,949,965,948,949,966,965,950,966,949,950,967,966,951,967,950,951,968,967,952,968,951,952,969,968,953,969,952,953,970,969,954,970,953,954,971,970,955,971,954,955,972,971,956,972,955,956,973,972,957,973,956,957,974,973,958,974,957,958,975,974,960,976,959,960,977,976,961,977,960,961,978,977,962,978,961,962,979,978,963,979,962,963,980,979,964,980,963,964,981,980,965,981,964,965,982,981,966,982,965,966,983,982,967,983,966,967,984,983,968,984,967,968,985,984,969,985,968,969,986,985,970,986,969,970,987,986,971,987,970,971,988,987,972,988,971,972,989,988,973,989,972,973,990,989,974,990,973,974,991,990,975,991,974,975,992,991,977,993,976,977,994,993,978,994,977,978,995,994,979,995,978,979,996,995,980,996,979,980,997,996,981,997,980,981,998,997,982,998,981,982,999,998,983,999,982,983,1000,999,984,1000,983,984,1001,1000,985,1001,984,985,1002,1001,986,1002,985,986,1003,1002,987,1003,986,987,1004,1003,988,1004,987,988,1005,1004,989,1005,988,989,1006,1005,990,1006,989,990,1007,1006,991,1007,990,991,1008,1007,992,1008,991,992,1009,1008,994,1010,993,994,1011,1010,995,1011,994,995,1012,1011,996,1012,995,996,1013,1012,997,1013,996,997,1014,1013,998,1014,997,998,1015,1014,999,1015,998,999,1016,1015,1000,1016,999,1000,1017,1016,1001,1017,1000,1001,1018,1017,1002,1018,1001,1002,1019,1018,1003,1019,1002,1003,1020,1019,1004,1020,1003,1004,1021,1020,1005,1021,1004,1005,1022,1021,1006,1022,1005,1006,1023,1022,1007,1023,1006,1007,1024,1023,1008,1024,1007,1008,1025,1024,1009,1025,1008,1009,1026,1025,1027,1010,1011,1027,1011,1012,1027,1012,1013,1027,1013,1014,1027,1014,1015,1027,1015,1016,1027,1016,1017,1027,1017,1018,1027,1018,1019,1027,1019,1020,1027,1020,1021,1027,1021,1022,1027,1022,1023,1027,1023,1024,1027,1024,1025,1027,1025,1026,1028,1030,1029,1028,1031,1030,1028,1032,1031,1028,1033,1032,1028,1034,1033,1028,1035,1034,1028,1036,1035,1028,1037,1036,1028,1038,1037,1028,1039,1038,1028,1040,1039,1028,1041,1040,1028,1042,1041,1028,1043,1042,1028,1044,1043,1028,1045,1044,1030,1046,1029,1030,1047,1046,1031,1047,1030,1031,1048,1047,1032,1048,1031,1032,1049,1048,1033,1049,1032,1033,1050,1049,1034,1050,1033,1034,1051,1050,1035,1051,1034,1035,1052,1051,1036,1052,1035,1036,1053,1052,1037,1053,1036,1037,1054,1053,1038,1054,1037,1038,1055,1054,1039,1055,1038,1039,1056,1055,1040,1056,1039,1040,1057,1056,1041,1057,1040,1041,1058,1057,1042,1058,1041,1042,1059,1058,1043,1059,1042,1043,1060,1059,1044,1060,1043,1044,1061,1060,1045,1061,1044,1045,1062,1061,1047,1063,1046,1047,1064,1063,1048,1064,1047,1048,1065,1064,1049,1065,1048,1049,1066,1065,1050,1066,1049,1050,1067,1066,1051,1067,1050,1051,1068,1067,1052,1068,1051,1052,1069,1068,1053,1069,1052,1053,1070,1069,1054,1070,1053,1054,1071,1070,1055,1071,1054,1055,1072,1071,1056,1072,1055,1056,1073,1072,1057,1073,1056,1057,1074,1073,1058,1074,1057,1058,1075,1074,1059,1075,1058,1059,1076,1075,1060,1076,1059,1060,1077,1076,1061,1077,1060,1061,1078,1077,1062,1078,1061,1062,1079,1078,1064,1080,1063,1064,1081,1080,1065,1081,1064,1065,1082,1081,1066,1082,1065,1066,1083,1082,1067,1083,1066,1067,1084,1083,1068,1084,1067,1068,1085,1084,1069,1085,1068,1069,1086,1085,1070,1086,1069,1070,1087,1086,1071,1087,1070,1071,1088,1087,1072,1088,1071,1072,1089,1088,1073,1089,1072,1073,1090,1089,1074,1090,1073,1074,1091,1090,1075,1091,1074,1075,1092,1091,1076,1092,1075,1076,1093,1092,1077,1093,1076,1077,1094,1093,1078,1094,1077,1078,1095,1094,1079,1095,1078,1079,1096,1095,1081,1097,1080,1081,1098,1097,1082,1098,1081,1082,1099,1098,1083,1099,1082,1083,1100,1099,1084,1100,1083,1084,1101,1100,1085,1101,1084,1085,1102,1101,1086,1102,1085,1086,1103,1102,1087,1103,1086,1087,1104,1103,1088,1104,1087,1088,1105,1104,1089,1105,1088,1089,1106,1105,1090,1106,1089,1090,1107,1106,1091,1107,1090,1091,1108,1107,1092,1108,1091,1092,1109,1108,1093,1109,1092,1093,1110,1109,1094,1110,1093,1094,1111,1110,1095,1111,1094,1095,1112,1111,1096,1112,1095,1096,1113,1112,1098,1114,1097,1098,1115,1114,1099,1115,1098,1099,1116,1115,1100,1116,1099,1100,1117,1116,1101,1117,1100,1101,1118,1117,1102,1118,1101,1102,1119,1118,1103,1119,1102,1103,1120,1119,1104,1120,1103,1104,1121,1120,1105,1121,1104,1105,1122,1121,1106,1122,1105,1106,1123,1122,1107,1123,1106,1107,1124,1123,1108,1124,1107,1108,1125,1124,1109,1125,1108,1109,1126,1125,1110,1126,1109,1110,1127,1126,1111,1127,1110,1111,1128,1127,1112,1128,1111,1112,1129,1128,1113,1129,1112,1113,1130,1129,1115,1131,1114,1115,1132,1131,1116,1132,1115,1116,1133,1132,1117,1133,1116,1117,1134,1133,1118,1134,1117,1118,1135,1134,1119,1135,1118,1119,1136,1135,1120,1136,1119,1120,1137,1136,1121,1137,1120,1121,1138,1137,1122,1138,1121,1122,1139,1138,1123,1139,1122,1123,1140,1139,1124,1140,1123,1124,1141,1140,1125,1141,1124,1125,1142,1141,1126,1142,1125,1126,1143,1142,1127,1143,1126,1127,1144,1143,1128,1144,1127,1128,1145,1144,1129,1145,1128,1129,1146,1145,1130,1146,1129,1130,1147,1146,1132,1148,1131,1132,1149,1148,1133,1149,1132,1133,1150,1149,1134,1150,1133,1134,1151,1150,1135,1151,1134,1135,1152,1151,1136,1152,1135,1136,1153,1152,1137,1153,1136,1137,1154,1153,1138,1154,1137,1138,1155,1154,1139,1155,1138,1139,1156,1155,1140,1156,1139,1140,1157,1156,1141,1157,1140,1141,1158,1157,1142,1158,1141,1142,1159,1158,1143,1159,1142,1143,1160,1159,1144,1160,1143,1144,1161,1160,1145,1161,1144,1145,1162,1161,1146,1162,1145,1146,1163,1162,1147,1163,1146,1147,1164,1163,1149,1165,1148,1149,1166,1165,1150,1166,1149,1150,1167,1166,1151,1167,1150,1151,1168,1167,1152,1168,1151,1152,1169,1168,1153,1169,1152,1153,1170,1169,1154,1170,1153,1154,1171,1170,1155,1171,1154,1155,1172,1171,1156,1172,1155,1156,1173,1172,1157,1173,1156,1157,1174,1173,1158,1174,1157,1158,1175,1174,1159,1175,1158,1159,1176,1175,1160,1176,1159,1160,1177,1176,1161,1177,1160,1161,1178,1177,1162,1178,1161,1162,1179,1178,1163,1179,1162,1163,1180,1179,1164,1180,1163,1164,1181,1180,1166,1182,1165,1166,1183,1182,1167,1183,1166,1167,1184,1183,1168,1184,1167,1168,1185,1184,1169,1185,1168,1169,1186,1185,1170,1186,1169,1170,1187,1186,1171,1187,1170,1171,1188,1187,1172,1188,1171,1172,1189,1188,1173,1189,1172,1173,1190,1189,1174,1190,1173,1174,1191,1190,1175,1191,1174,1175,1192,1191,1176,1192,1175,1176,1193,1192,1177,1193,1176,1177,1194,1193,1178,1194,1177,1178,1195,1194,1179,1195,1178,1179,1196,1195,1180,1196,1179,1180,1197,1196,1181,1197,1180,1181,1198,1197,1183,1199,1182,1183,1200,1199,1184,1200,1183,1184,1201,1200,1185,1201,1184,1185,1202,1201,1186,1202,1185,1186,1203,1202,1187,1203,1186,1187,1204,1203,1188,1204,1187,1188,1205,1204,1189,1205,1188,1189,1206,1205,1190,1206,1189,1190,1207,1206,1191,1207,1190,1191,1208,1207,1192,1208,1191,1192,1209,1208,1193,1209,1192,1193,1210,1209,1194,1210,1193,1194,1211,1210,1195,1211,1194,1195,1212,1211,1196,1212,1195,1196,1213,1212,1197,1213,1196,1197,1214,1213,1198,1214,1197,1198,1215,1214,1200,1216,1199,1200,1217,1216,1201,1217,1200,1201,1218,1217,1202,1218,1201,1202,1219,1218,1203,1219,1202,1203,1220,1219,1204,1220,1203,1204,1221,1220,1205,1221,1204,1205,1222,1221,1206,1222,1205,1206,1223,1222,1207,1223,1206,1207,1224,1223,1208,1224,1207,1208,1225,1224,1209,1225,1208,1209,1226,1225,1210,1226,1209,1210,1227,1226,1211,1227,1210,1211,1228,1227,1212,1228,1211,1212,1229,1228,1213,1229,1212,1213,1230,1229,1214,1230,1213,1214,1231,1230,1215,1231,1214,1215,1232,1231,1217,1233,1216,1217,1234,1233,1218,1234,1217,1218,1235,1234,1219,1235,1218,1219,1236,1235,1220,1236,1219,1220,1237,1236,1221,1237,1220,1221,1238,1237,1222,1238,1221,1222,1239,1238,1223,1239,1222,1223,1240,1239,1224,1240,1223,1224,1241,1240,1225,1241,1224,1225,1242,1241,1226,1242,1225,1226,1243,1242,1227,1243,1226,1227,1244,1243,1228,1244,1227,1228,1245,1244,1229,1245,1228,1229,1246,1245,1230,1246,1229,1230,1247,1246,1231,1247,1230,1231,1248,1247,1232,1248,1231,1232,1249,1248,1234,1250,1233,1234,1251,1250,1235,1251,1234,1235,1252,1251,1236,1252,1235,1236,1253,1252,1237,1253,1236,1237,1254,1253,1238,1254,1237,1238,1255,1254,1239,1255,1238,1239,1256,1255,1240,1256,1239,1240,1257,1256,1241,1257,1240,1241,1258,1257,1242,1258,1241,1242,1259,1258,1243,1259,1242,1243,1260,1259,1244,1260,1243,1244,1261,1260,1245,1261,1244,1245,1262,1261,1246,1262,1245,1246,1263,1262,1247,1263,1246,1247,1264,1263,1248,1264,1247,1248,1265,1264,1249,1265,1248,1249,1266,1265,1251,1267,1250,1251,1268,1267,1252,1268,1251,1252,1269,1268,1253,1269,1252,1253,1270,1269,1254,1270,1253,1254,1271,1270,1255,1271,1254,1255,1272,1271,1256,1272,1255,1256,1273,1272,1257,1273,1256,1257,1274,1273,1258,1274,1257,1258,1275,1274,1259,1275,1258,1259,1276,1275,1260,1276,1259,1260,1277,1276,1261,1277,1260,1261,1278,1277,1262,1278,1261,1262,1279,1278,1263,1279,1262,1263,1280,1279,1264,1280,1263,1264,1281,1280,1265,1281,1264,1265,1282,1281,1266,1282,1265,1266,1283,1282,1284,1267,1268,1284,1268,1269,1284,1269,1270,1284,1270,1271,1284,1271,1272,1284,1272,1273,1284,1273,1274,1284,1274,1275,1284,1275,1276,1284,1276,1277,1284,1277,1278,1284,1278,1279,1284,1279,1280,1284,1280,1281,1284,1281,1282,1284,1282,1283,1285,1287,1286,1285,1288,1287,1285,1289,1288,1285,1290,1289,1285,1291,1290,1285,1292,1291,1285,1293,1292,1285,1294,1293,1285,1295,1294,1285,1296,1295,1285,1297,1296,1285,1298,1297,1285,1299,1298,1285,1300,1299,1285,1301,1300,1285,1302,1301,1287,1303,1286,1287,1304,1303,1288,1304,1287,1288,1305,1304,1289,1305,1288,1289,1306,1305,1290,1306,1289,1290,1307,1306,1291,1307,1290,1291,1308,1307,1292,1308,1291,1292,1309,1308,1293,1309,1292,1293,1310,1309,1294,1310,1293,1294,1311,1310,1295,1311,1294,1295,1312,1311,1296,1312,1295,1296,1313,1312,1297,1313,1296,1297,1314,1313,1298,1314,1297,1298,1315,1314,1299,1315,1298,1299,1316,1315,1300,1316,1299,1300,1317,1316,1301,1317,1300,1301,1318,1317,1302,1318,1301,1302,1319,1318,1304,1320,1303,1304,1321,1320,1305,1321,1304,1305,1322,1321,1306,1322,1305,1306,1323,1322,1307,1323,1306,1307,1324,1323,1308,1324,1307,1308,1325,1324,1309,1325,1308,1309,1326,1325,1310,1326,1309,1310,1327,1326,1311,1327,1310,1311,1328,1327,1312,1328,1311,1312,1329,1328,1313,1329,1312,1313,1330,1329,1314,1330,1313,1314,1331,1330,1315,1331,1314,1315,1332,1331,1316,1332,1315,1316,1333,1332,1317,1333,1316,1317,1334,1333,1318,1334,1317,1318,1335,1334,1319,1335,1318,1319,1336,1335,1321,1337,1320,1321,1338,1337,1322,1338,1321,1322,1339,1338,1323,1339,1322,1323,1340,1339,1324,1340,1323,1324,1341,1340,1325,1341,1324,1325,1342,1341,1326,1342,1325,1326,1343,1342,1327,1343,1326,1327,1344,1343,1328,1344,1327,1328,1345,1344,1329,1345,1328,1329,1346,1345,1330,1346,1329,1330,1347,1346,1331,1347,1330,1331,1348,1347,1332,1348,1331,1332,1349,1348,1333,1349,1332,1333,1350,1349,1334,1350,1333,1334,1351,1350,1335,1351,1334,1335,1352,1351,1336,1352,1335,1336,1353,1352,1338,1354,1337,1338,1355,1354,1339,1355,1338,1339,1356,1355,1340,1356,1339,1340,1357,1356,1341,1357,1340,1341,1358,1357,1342,1358,1341,1342,1359,1358,1343,1359,1342,1343,1360,1359,1344,1360,1343,1344,1361,1360,1345,1361,1344,1345,1362,1361,1346,1362,1345,1346,1363,1362,1347,1363,1346,1347,1364,1363,1348,1364,1347,1348,1365,1364,1349,1365,1348,1349,1366,1365,1350,1366,1349,1350,1367,1366,1351,1367,1350,1351,1368,1367,1352,1368,1351,1352,1369,1368,1353,1369,1352,1353,1370,1369,1355,1371,1354,1355,1372,1371,1356,1372,1355,1356,1373,1372,1357,1373,1356,1357,1374,1373,1358,1374,1357,1358,1375,1374,1359,1375,1358,1359,1376,1375,1360,1376,1359,1360,1377,1376,1361,1377,1360,1361,1378,1377,1362,1378,1361,1362,1379,1378,1363,1379,1362,1363,1380,1379,1364,1380,1363,1364,1381,1380,1365,1381,1364,1365,1382,1381,1366,1382,1365,1366,1383,1382,1367,1383,1366,1367,1384,1383,1368,1384,1367,1368,1385,1384,1369,1385,1368,1369,1386,1385,1370,1386,1369,1370,1387,1386,1372,1388,1371,1372,1389,1388,1373,1389,1372,1373,1390,1389,1374,1390,1373,1374,1391,1390,1375,1391,1374,1375,1392,1391,1376,1392,1375,1376,1393,1392,1377,1393,1376,1377,1394,1393,1378,1394,1377,1378,1395,1394,1379,1395,1378,1379,1396,1395,1380,1396,1379,1380,1397,1396,1381,1397,1380,1381,1398,1397,1382,1398,1381,1382,1399,1398,1383,1399,1382,1383,1400,1399,1384,1400,1383,1384,1401,1400,1385,1401,1384,1385,1402,1401,1386,1402,1385,1386,1403,1402,1387,1403,1386,1387,1404,1403,1389,1405,1388,1389,1406,1405,1390,1406,1389,1390,1407,1406,1391,1407,1390,1391,1408,1407,1392,1408,1391,1392,1409,1408,1393,1409,1392,1393,1410,1409,1394,1410,1393,1394,1411,1410,1395,1411,1394,1395,1412,1411,1396,1412,1395,1396,1413,1412,1397,1413,1396,1397,1414,1413,1398,1414,1397,1398,1415,1414,1399,1415,1398,1399,1416,1415,1400,1416,1399,1400,1417,1416,1401,1417,1400,1401,1418,1417,1402,1418,1401,1402,1419,1418,1403,1419,1402,1403,1420,1419,1404,1420,1403,1404,1421,1420,1406,1422,1405,1406,1423,1422,1407,1423,1406,1407,1424,1423,1408,1424,1407,1408,1425,1424,1409,1425,1408,1409,1426,1425,1410,1426,1409,1410,1427,1426,1411,1427,1410,1411,1428,1427,1412,1428,1411,1412,1429,1428,1413,1429,1412,1413,1430,1429,1414,1430,1413,1414,1431,1430,1415,1431,1414,1415,1432,1431,1416,1432,1415,1416,1433,1432,1417,1433,1416,1417,1434,1433,1418,1434,1417,1418,1435,1434,1419,1435,1418,1419,1436,1435,1420,1436,1419,1420,1437,1436,1421,1437,1420,1421,1438,1437,1423,1439,1422,1423,1440,1439,1424,1440,1423,1424,1441,1440,1425,1441,1424,1425,1442,1441,1426,1442,1425,1426,1443,1442,1427,1443,1426,1427,1444,1443,1428,1444,1427,1428,1445,1444,1429,1445,1428,1429,1446,1445,1430,1446,1429,1430,1447,1446,1431,1447,1430,1431,1448,1447,1432,1448,1431,1432,1449,1448,1433,1449,1432,1433,1450,1449,1434,1450,1433,1434,1451,1450,1435,1451,1434,1435,1452,1451,1436,1452,1435,1436,1453,1452,1437,1453,1436,1437,1454,1453,1438,1454,1437,1438,1455,1454,1440,1456,1439,1440,1457,1456,1441,1457,1440,1441,1458,1457,1442,1458,1441,1442,1459,1458,1443,1459,1442,1443,1460,1459,1444,1460,1443,1444,1461,1460,1445,1461,1444,1445,1462,1461,1446,1462,1445,1446,1463,1462,1447,1463,1446,1447,1464,1463,1448,1464,1447,1448,1465,1464,1449,1465,1448,1449,1466,1465,1450,1466,1449,1450,1467,1466,1451,1467,1450,1451,1468,1467,1452,1468,1451,1452,1469,1468,1453,1469,1452,1453,1470,1469,1454,1470,1453,1454,1471,1470,1455,1471,1454,1455,1472,1471,1457,1473,1456,1457,1474,1473,1458,1474,1457,1458,1475,1474,1459,1475,1458,1459,1476,1475,1460,1476,1459,1460,1477,1476,1461,1477,1460,1461,1478,1477,1462,1478,1461,1462,1479,1478,1463,1479,1462,1463,1480,1479,1464,1480,1463,1464,1481,1480,1465,1481,1464,1465,1482,1481,1466,1482,1465,1466,1483,1482,1467,1483,1466,1467,1484,1483,1468,1484,1467,1468,1485,1484,1469,1485,1468,1469,1486,1485,1470,1486,1469,1470,1487,1486,1471,1487,1470,1471,1488,1487,1472,1488,1471,1472,1489,1488,1474,1490,1473,1474,1491,1490,1475,1491,1474,1475,1492,1491,1476,1492,1475,1476,1493,1492,1477,1493,1476,1477,1494,1493,1478,1494,1477,1478,1495,1494,1479,1495,1478,1479,1496,1495,1480,1496,1479,1480,1497,1496,1481,1497,1480,1481,1498,1497,1482,1498,1481,1482,1499,1498,1483,1499,1482,1483,1500,1499,1484,1500,1483,1484,1501,1500,1485,1501,1484,1485,1502,1501,1486,1502,1485,1486,1503,1502,1487,1503,1486,1487,1504,1503,1488,1504,1487,1488,1505,1504,1489,1505,1488,1489,1506,1505,1491,1507,1490,1491,1508,1507,1492,1508,1491,1492,1509,1508,1493,1509,1492,1493,1510,1509,1494,1510,1493,1494,1511,1510,1495,1511,1494,1495,1512,1511,1496,1512,1495,1496,1513,1512,1497,1513,1496,1497,1514,1513,1498,1514,1497,1498,1515,1514,1499,1515,1498,1499,1516,1515,1500,1516,1499,1500,1517,1516,1501,1517,1500,1501,1518,1517,1502,1518,1501,1502,1519,1518,1503,1519,1502,1503,1520,1519,1504,1520,1503,1504,1521,1520,1505,1521,1504,1505,1522,1521,1506,1522,1505,1506,1523,1522,1508,1524,1507,1508,1525,1524,1509,1525,1508,1509,1526,1525,1510,1526,1509,1510,1527,1526,1511,1527,1510,1511,1528,1527,1512,1528,1511,1512,1529,1528,1513,1529,1512,1513,1530,1529,1514,1530,1513,1514,1531,1530,1515,1531,1514,1515,1532,1531,1516,1532,1515,1516,1533,1532,1517,1533,1516,1517,1534,1533,1518,1534,1517,1518,1535,1534,1519,1535,1518,1519,1536,1535,1520,1536,1519,1520,1537,1536,1521,1537,1520,1521,1538,1537,1522,1538,1521,1522,1539,1538,1523,1539,1522,1523,1540,1539,1541,1524,1525,1541,1525,1526,1541,1526,1527,1541,1527,1528,1541,1528,1529,1541,1529,1530,1541,1530,1531,1541,1531,1532,1541,1532,1533,1541,1533,1534,1541,1534,1535,1541,1535,1536,1541,1536,1537,1541,1537,1538,1541,1538,1539,1541,1539,1540,1542,1544,1543,1542,1545,1544,1542,1546,1545,1542,1547,1546,1542,1548,1547,1542,1549,1548,1542,1550,1549,1542,1551,1550,1542,1552,1551,1542,1553,1552,1542,1554,1553,1542,1555,1554,1542,1556,1555,1542,1557,1556,1542,1558,1557,1542,1559,1558,1544,1560,1543,1544,1561,1560,1545,1561,1544,1545,1562,1561,1546,1562,1545,1546,1563,1562,1547,1563,1546,1547,1564,1563,1548,1564,1547,1548,1565,1564,1549,1565,1548,1549,1566,1565,1550,1566,1549,1550,1567,1566,1551,1567,1550,1551,1568,1567,1552,1568,1551,1552,1569,1568,1553,1569,1552,1553,1570,1569,1554,1570,1553,1554,1571,1570,1555,1571,1554,1555,1572,1571,1556,1572,1555,1556,1573,1572,1557,1573,1556,1557,1574,1573,1558,1574,1557,1558,1575,1574,1559,1575,1558,1559,1576,1575,1561,1577,1560,1561,1578,1577,1562,1578,1561,1562,1579,1578,1563,1579,1562,1563,1580,1579,1564,1580,1563,1564,1581,1580,1565,1581,1564,1565,1582,1581,1566,1582,1565,1566,1583,1582,1567,1583,1566,1567,1584,1583,1568,1584,1567,1568,1585,1584,1569,1585,1568,1569,1586,1585,1570,1586,1569,1570,1587,1586,1571,1587,1570,1571,1588,1587,1572,1588,1571,1572,1589,1588,1573,1589,1572,1573,1590,1589,1574,1590,1573,1574,1591,1590,1575,1591,1574,1575,1592,1591,1576,1592,1575,1576,1593,1592,1578,1594,1577,1578,1595,1594,1579,1595,1578,1579,1596,1595,1580,1596,1579,1580,1597,1596,1581,1597,1580,1581,1598,1597,1582,1598,1581,1582,1599,1598,1583,1599,1582,1583,1600,1599,1584,1600,1583,1584,1601,1600,1585,1601,1584,1585,1602,1601,1586,1602,1585,1586,1603,1602,1587,1603,1586,1587,1604,1603,1588,1604,1587,1588,1605,1604,1589,1605,1588,1589,1606,1605,1590,1606,1589,1590,1607,1606,1591,1607,1590,1591,1608,1607,1592,1608,1591,1592,1609,1608,1593,1609,1592,1593,1610,1609,1595,1611,1594,1595,1612,1611,1596,1612,1595,1596,1613,1612,1597,1613,1596,1597,1614,1613,1598,1614,1597,1598,1615,1614,1599,1615,1598,1599,1616,1615,1600,1616,1599,1600,1617,1616,1601,1617,1600,1601,1618,1617,1602,1618,1601,1602,1619,1618,1603,1619,1602,1603,1620,1619,1604,1620,1603,1604,1621,1620,1605,1621,1604,1605,1622,1621,1606,1622,1605,1606,1623,1622,1607,1623,1606,1607,1624,1623,1608,1624,1607,1608,1625,1624,1609,1625,1608,1609,1626,1625,1610,1626,1609,1610,1627,1626,1612,1628,1611,1612,1629,1628,1613,1629,1612,1613,1630,1629,1614,1630,1613,1614,1631,1630,1615,1631,1614,1615,1632,1631,1616,1632,1615,1616,1633,1632,1617,1633,1616,1617,1634,1633,1618,1634,1617,1618,1635,1634,1619,1635,1618,1619,1636,1635,1620,1636,1619,1620,1637,1636,1621,1637,1620,1621,1638,1637,1622,1638,1621,1622,1639,1638,1623,1639,1622,1623,1640,1639,1624,1640,1623,1624,1641,1640,1625,1641,1624,1625,1642,1641,1626,1642,1625,1626,1643,1642,1627,1643,1626,1627,1644,1643,1629,1645,1628,1629,1646,1645,1630,1646,1629,1630,1647,1646,1631,1647,1630,1631,1648,1647,1632,1648,1631,1632,1649,1648,1633,1649,1632,1633,1650,1649,1634,1650,1633,1634,1651,1650,1635,1651,1634,1635,1652,1651,1636,1652,1635,1636,1653,1652,1637,1653,1636,1637,1654,1653,1638,1654,1637,1638,1655,1654,1639,1655,1638,1639,1656,1655,1640,1656,1639,1640,1657,1656,1641,1657,1640,1641,1658,1657,1642,1658,1641,1642,1659,1658,1643,1659,1642,1643,1660,1659,1644,1660,1643,1644,1661,1660,1646,1662,1645,1646,1663,1662,1647,1663,1646,1647,1664,1663,1648,1664,1647,1648,1665,1664,1649,1665,1648,1649,1666,1665,1650,1666,1649,1650,1667,1666,1651,1667,1650,1651,1668,1667,1652,1668,1651,1652,1669,1668,1653,1669,1652,1653,1670,1669,1654,1670,1653,1654,1671,1670,1655,1671,1654,1655,1672,1671,1656,1672,1655,1656,1673,1672,1657,1673,1656,1657,1674,1673,1658,1674,1657,1658,1675,1674,1659,1675,1658,1659,1676,1675,1660,1676,1659,1660,1677,1676,1661,1677,1660,1661,1678,1677,1663,1679,1662,1663,1680,1679,1664,1680,1663,1664,1681,1680,1665,1681,1664,1665,1682,1681,1666,1682,1665,1666,1683,1682,1667,1683,1666,1667,1684,1683,1668,1684,1667,1668,1685,1684,1669,1685,1668,1669,1686,1685,1670,1686,1669,1670,1687,1686,1671,1687,1670,1671,1688,1687,1672,1688,1671,1672,1689,1688,1673,1689,1672,1673,1690,1689,1674,1690,1673,1674,1691,1690,1675,1691,1674,1675,1692,1691,1676,1692,1675,1676,1693,1692,1677,1693,1676,1677,1694,1693,1678,1694,1677,1678,1695,1694,1680,1696,1679,1680,1697,1696,1681,1697,1680,1681,1698,1697,1682,1698,1681,1682,1699,1698,1683,1699,1682,1683,1700,1699,1684,1700,1683,1684,1701,1700,1685,1701,1684,1685,1702,1701,1686,1702,1685,1686,1703,1702,1687,1703,1686,1687,1704,1703,1688,1704,1687,1688,1705,1704,1689,1705,1688,1689,1706,1705,1690,1706,1689,1690,1707,1706,1691,1707,1690,1691,1708,1707,1692,1708,1691,1692,1709,1708,1693,1709,1692,1693,1710,1709,1694,1710,1693,1694,1711,1710,1695,1711,1694,1695,1712,1711,1697,1713,1696,1697,1714,1713,1698,1714,1697,1698,1715,1714,1699,1715,1698,1699,1716,1715,1700,1716,1699,1700,1717,1716,1701,1717,1700,1701,1718,1717,1702,1718,1701,1702,1719,1718,1703,1719,1702,1703,1720,1719,1704,1720,1703,1704,1721,1720,1705,1721,1704,1705,1722,1721,1706,1722,1705,1706,1723,1722,1707,1723,1706,1707,1724,1723,1708,1724,1707,1708,1725,1724,1709,1725,1708,1709,1726,1725,1710,1726,1709,1710,1727,1726,1711,1727,1710,1711,1728,1727,1712,1728,1711,1712,1729,1728,1714,1730,1713,1714,1731,1730,1715,1731,1714,1715,1732,1731,1716,1732,1715,1716,1733,1732,1717,1733,1716,1717,1734,1733,1718,1734,1717,1718,1735,1734,1719,1735,1718,1719,1736,1735,1720,1736,1719,1720,1737,1736,1721,1737,1720,1721,1738,1737,1722,1738,1721,1722,1739,1738,1723,1739,1722,1723,1740,1739,1724,1740,1723,1724,1741,1740,1725,1741,1724,1725,1742,1741,1726,1742,1725,1726,1743,1742,1727,1743,1726,1727,1744,1743,1728,1744,1727,1728,1745,1744,1729,1745,1728,1729,1746,1745,1731,1747,1730,1731,1748,1747,1732,1748,1731,1732,1749,1748,1733,1749,1732,1733,1750,1749,1734,1750,1733,1734,1751,1750,1735,1751,1734,1735,1752,1751,1736,1752,1735,1736,1753,1752,1737,1753,1736,1737,1754,1753,1738,1754,1737,1738,1755,1754,1739,1755,1738,1739,1756,1755,1740,1756,1739,1740,1757,1756,1741,1757,1740,1741,1758,1757,1742,1758,1741,1742,1759,1758,1743,1759,1742,1743,1760,1759,1744,1760,1743,1744,1761,1760,1745,1761,1744,1745,1762,1761,1746,1762,1745,1746,1763,1762,1748,1764,1747,1748,1765,1764,1749,1765,1748,1749,1766,1765,1750,1766,1749,1750,1767,1766,1751,1767,1750,1751,1768,1767,1752,1768,1751,1752,1769,1768,1753,1769,1752,1753,1770,1769,1754,1770,1753,1754,1771,1770,1755,1771,1754,1755,1772,1771,1756,1772,1755,1756,1773,1772,1757,1773,1756,1757,1774,1773,1758,1774,1757,1758,1775,1774,1759,1775,1758,1759,1776,1775,1760,1776,1759,1760,1777,1776,1761,1777,1760,1761,1778,1777,1762,1778,1761,1762,1779,1778,1763,1779,1762,1763,1780,1779,1765,1781,1764,1765,1782,1781,1766,1782,1765,1766,1783,1782,1767,1783,1766,1767,1784,1783,1768,1784,1767,1768,1785,1784,1769,1785,1768,1769,1786,1785,1770,1786,1769,1770,1787,1786,1771,1787,1770,1771,1788,1787,1772,1788,1771,1772,1789,1788,1773,1789,1772,1773,1790,1789,1774,1790,1773,1774,1791,1790,1775,1791,1774,1775,1792,1791,1776,1792,1775,1776,1793,1792,1777,1793,1776,1777,1794,1793,1778,1794,1777,1778,1795,1794,1779,1795,1778,1779,1796,1795,1780,1796,1779,1780,1797,1796,1798,1781,1782,1798,1782,1783,1798,1783,1784,1798,1784,1785,1798,1785,1786,1798,1786,1787,1798,1787,1788,1798,1788,1789,1798,1789,1790,1798,1790,1791,1798,1791,1792,1798,1792,1793,1798,1793,1794,1798,1794,1795,1798,1795,1796,1798,1796,1797,1799,1801,1800,1799,1802,1801,1799,1803,1802,1799,1804,1803,1799,1805,1804,1799,1806,1805,1799,1807,1806,1799,1808,1807,1799,1809,1808,1799,1810,1809,1799,1811,1810,1799,1812,1811,1799,1813,1812,1799,1814,1813,1799,1815,1814,1799,1816,1815,1801,1817,1800,1801,1818,1817,1802,1818,1801,1802,1819,1818,1803,1819,1802,1803,1820,1819,1804,1820,1803,1804,1821,1820,1805,1821,1804,1805,1822,1821,1806,1822,1805,1806,1823,1822,1807,1823,1806,1807,1824,1823,1808,1824,1807,1808,1825,1824,1809,1825,1808,1809,1826,1825,1810,1826,1809,1810,1827,1826,1811,1827,1810,1811,1828,1827,1812,1828,1811,1812,1829,1828,1813,1829,1812,1813,1830,1829,1814,1830,1813,1814,1831,1830,1815,1831,1814,1815,1832,1831,1816,1832,1815,1816,1833,1832,1818,1834,1817,1818,1835,1834,1819,1835,1818,1819,1836,1835,1820,1836,1819,1820,1837,1836,1821,1837,1820,1821,1838,1837,1822,1838,1821,1822,1839,1838,1823,1839,1822,1823,1840,1839,1824,1840,1823,1824,1841,1840,1825,1841,1824,1825,1842,1841,1826,1842,1825,1826,1843,1842,1827,1843,1826,1827,1844,1843,1828,1844,1827,1828,1845,1844,1829,1845,1828,1829,1846,1845,1830,1846,1829,1830,1847,1846,1831,1847,1830,1831,1848,1847,1832,1848,1831,1832,1849,1848,1833,1849,1832,1833,1850,1849,1835,1851,1834,1835,1852,1851,1836,1852,1835,1836,1853,1852,1837,1853,1836,1837,1854,1853,1838,1854,1837,1838,1855,1854,1839,1855,1838,1839,1856,1855,1840,1856,1839,1840,1857,1856,1841,1857,1840,1841,1858,1857,1842,1858,1841,1842,1859,1858,1843,1859,1842,1843,1860,1859,1844,1860,1843,1844,1861,1860,1845,1861,1844,1845,1862,1861,1846,1862,1845,1846,1863,1862,1847,1863,1846,1847,1864,1863,1848,1864,1847,1848,1865,1864,1849,1865,1848,1849,1866,1865,1850,1866,1849,1850,1867,1866,1852,1868,1851,1852,1869,1868,1853,1869,1852,1853,1870,1869,1854,1870,1853,1854,1871,1870,1855,1871,1854,1855,1872,1871,1856,1872,1855,1856,1873,1872,1857,1873,1856,1857,1874,1873,1858,1874,1857,1858,1875,1874,1859,1875,1858,1859,1876,1875,1860,1876,1859,1860,1877,1876,1861,1877,1860,1861,1878,1877,1862,1878,1861,1862,1879,1878,1863,1879,1862,1863,1880,1879,1864,1880,1863,1864,1881,1880,1865,1881,1864,1865,1882,1881,1866,1882,1865,1866,1883,1882,1867,1883,1866,1867,1884,1883,1869,1885,1868,1869,1886,1885,1870,1886,1869,1870,1887,1886,1871,1887,1870,1871,1888,1887,1872,1888,1871,1872,1889,1888,1873,1889,1872,1873,1890,1889,1874,1890,1873,1874,1891,1890,1875,1891,1874,1875,1892,1891,1876,1892,1875,1876,1893,1892,1877,1893,1876,1877,1894,1893,1878,1894,1877,1878,1895,1894,1879,1895,1878,1879,1896,1895,1880,1896,1879,1880,1897,1896,1881,1897,1880,1881,1898,1897,1882,1898,1881,1882,1899,1898,1883,1899,1882,1883,1900,1899,1884,1900,1883,1884,1901,1900,1886,1902,1885,1886,1903,1902,1887,1903,1886,1887,1904,1903,1888,1904,1887,1888,1905,1904,1889,1905,1888,1889,1906,1905,1890,1906,1889,1890,1907,1906,1891,1907,1890,1891,1908,1907,1892,1908,1891,1892,1909,1908,1893,1909,1892,1893,1910,1909,1894,1910,1893,1894,1911,1910,1895,1911,1894,1895,1912,1911,1896,1912,1895,1896,1913,1912,1897,1913,1896,1897,1914,1913,1898,1914,1897,1898,1915,1914,1899,1915,1898,1899,1916,1915,1900,1916,1899,1900,1917,1916,1901,1917,1900,1901,1918,1917,1903,1919,1902,1903,1920,1919,1904,1920,1903,1904,1921,1920,1905,1921,1904,1905,1922,1921,1906,1922,1905,1906,1923,1922,1907,1923,1906,1907,1924,1923,1908,1924,1907,1908,1925,1924,1909,1925,1908,1909,1926,1925,1910,1926,1909,1910,1927,1926,1911,1927,1910,1911,1928,1927,1912,1928,1911,1912,1929,1928,1913,1929,1912,1913,1930,1929,1914,1930,1913,1914,1931,1930,1915,1931,1914,1915,1932,1931,1916,1932,1915,1916,1933,1932,1917,1933,1916,1917,1934,1933,1918,1934,1917,1918,1935,1934,1920,1936,1919,1920,1937,1936,1921,1937,1920,1921,1938,1937,1922,1938,1921,1922,1939,1938,1923,1939,1922,1923,1940,1939,1924,1940,1923,1924,1941,1940,1925,1941,1924,1925,1942,1941,1926,1942,1925,1926,1943,1942,1927,1943,1926,1927,1944,1943,1928,1944,1927,1928,1945,1944,1929,1945,1928,1929,1946,1945,1930,1946,1929,1930,1947,1946,1931,1947,1930,1931,1948,1947,1932,1948,1931,1932,1949,1948,1933,1949,1932,1933,1950,1949,1934,1950,1933,1934,1951,1950,1935,1951,1934,1935,1952,1951,1937,1953,1936,1937,1954,1953,1938,1954,1937,1938,1955,1954,1939,1955,1938,1939,1956,1955,1940,1956,1939,1940,1957,1956,1941,1957,1940,1941,1958,1957,1942,1958,1941,1942,1959,1958,1943,1959,1942,1943,1960,1959,1944,1960,1943,1944,1961,1960,1945,1961,1944,1945,1962,1961,1946,1962,1945,1946,1963,1962,1947,1963,1946,1947,1964,1963,1948,1964,1947,1948,1965,1964,1949,1965,1948,1949,1966,1965,1950,1966,1949,1950,1967,1966,1951,1967,1950,1951,1968,1967,1952,1968,1951,1952,1969,1968,1954,1970,1953,1954,1971,1970,1955,1971,1954,1955,1972,1971,1956,1972,1955,1956,1973,1972,1957,1973,1956,1957,1974,1973,1958,1974,1957,1958,1975,1974,1959,1975,1958,1959,1976,1975,1960,1976,1959,1960,1977,1976,1961,1977,1960,1961,1978,1977,1962,1978,1961,1962,1979,1978,1963,1979,1962,1963,1980,1979,1964,1980,1963,1964,1981,1980,1965,1981,1964,1965,1982,1981,1966,1982,1965,1966,1983,1982,1967,1983,1966,1967,1984,1983,1968,1984,1967,1968,1985,1984,1969,1985,1968,1969,1986,1985,1971,1987,1970,1971,1988,1987,1972,1988,1971,1972,1989,1988,1973,1989,1972,1973,1990,1989,1974,1990,1973,1974,1991,1990,1975,1991,1974,1975,1992,1991,1976,1992,1975,1976,1993,1992,1977,1993,1976,1977,1994,1993,1978,1994,1977,1978,1995,1994,1979,1995,1978,1979,1996,1995,1980,1996,1979,1980,1997,1996,1981,1997,1980,1981,1998,1997,1982,1998,1981,1982,1999,1998,1983,1999,1982,1983,2000,1999,1984,2000,1983,1984,2001,2000,1985,2001,1984,1985,2002,2001,1986,2002,1985,1986,2003,2002,1988,2004,1987,1988,2005,2004,1989,2005,1988,1989,2006,2005,1990,2006,1989,1990,2007,2006,1991,2007,1990,1991,2008,2007,1992,2008,1991,1992,2009,2008,1993,2009,1992,1993,2010,2009,1994,2010,1993,1994,2011,2010,1995,2011,1994,1995,2012,2011,1996,2012,1995,1996,2013,2012,1997,2013,1996,1997,2014,2013,1998,2014,1997,1998,2015,2014,1999,2015,1998,1999,2016,2015,2000,2016,1999,2000,2017,2016,2001,2017,2000,2001,2018,2017,2002,2018,2001,2002,2019,2018,2003,2019,2002,2003,2020,2019,2005,2021,2004,2005,2022,2021,2006,2022,2005,2006,2023,2022,2007,2023,2006,2007,2024,2023,2008,2024,2007,2008,2025,2024,2009,2025,2008,2009,2026,2025,2010,2026,2009,2010,2027,2026,2011,2027,2010,2011,2028,2027,2012,2028,2011,2012,2029,2028,2013,2029,2012,2013,2030,2029,2014,2030,2013,2014,2031,2030,2015,2031,2014,2015,2032,2031,2016,2032,2015,2016,2033,2032,2017,2033,2016,2017,2034,2033,2018,2034,2017,2018,2035,2034,2019,2035,2018,2019,2036,2035,2020,2036,2019,2020,2037,2036,2022,2038,2021,2022,2039,2038,2023,2039,2022,2023,2040,2039,2024,2040,2023,2024,2041,2040,2025,2041,2024,2025,2042,2041,2026,2042,2025,2026,2043,2042,2027,2043,2026,2027,2044,2043,2028,2044,2027,2028,2045,2044,2029,2045,2028,2029,2046,2045,2030,2046,2029,2030,2047,2046,2031,2047,2030,2031,2048,2047,2032,2048,2031,2032,2049,2048,2033,2049,2032,2033,2050,2049,2034,2050,2033,2034,2051,2050,2035,2051,2034,2035,2052,2051,2036,2052,2035,2036,2053,2052,2037,2053,2036,2037,2054,2053,2055,2038,2039,2055,2039,2040,2055,2040,2041,2055,2041,2042,2055,2042,2043,2055,2043,2044,2055,2044,2045,2055,2045,2046,2055,2046,2047,2055,2047,2048,2055,2048,2049,2055,2049,2050,2055,2050,2051,2055,2051,2052,2055,2052,2053,2055,2053,2054,2056,2058,2057,2056,2059,2058,2056,2060,2059,2056,2061,2060,2056,2062,2061,2056,2063,2062,2056,2064,2063,2056,2065,2064,2056,2066,2065,2056,2067,2066,2056,2068,2067,2056,2069,2068,2056,2070,2069,2056,2071,2070,2056,2072,2071,2056,2073,2072,2058,2074,2057,2058,2075,2074,2059,2075,2058,2059,2076,2075,2060,2076,2059,2060,2077,2076,2061,2077,2060,2061,2078,2077,2062,2078,2061,2062,2079,2078,2063,2079,2062,2063,2080,2079,2064,2080,2063,2064,2081,2080,2065,2081,2064,2065,2082,2081,2066,2082,2065,2066,2083,2082,2067,2083,2066,2067,2084,2083,2068,2084,2067,2068,2085,2084,2069,2085,2068,2069,2086,2085,2070,2086,2069,2070,2087,2086,2071,2087,2070,2071,2088,2087,2072,2088,2071,2072,2089,2088,2073,2089,2072,2073,2090,2089,2075,2091,2074,2075,2092,2091,2076,2092,2075,2076,2093,2092,2077,2093,2076,2077,2094,2093,2078,2094,2077,2078,2095,2094,2079,2095,2078,2079,2096,2095,2080,2096,2079,2080,2097,2096,2081,2097,2080,2081,2098,2097,2082,2098,2081,2082,2099,2098,2083,2099,2082,2083,2100,2099,2084,2100,2083,2084,2101,2100,2085,2101,2084,2085,2102,2101,2086,2102,2085,2086,2103,2102,2087,2103,2086,2087,2104,2103,2088,2104,2087,2088,2105,2104,2089,2105,2088,2089,2106,2105,2090,2106,2089,2090,2107,2106,2092,2108,2091,2092,2109,2108,2093,2109,2092,2093,2110,2109,2094,2110,2093,2094,2111,2110,2095,2111,2094,2095,2112,2111,2096,2112,2095,2096,2113,2112,2097,2113,2096,2097,2114,2113,2098,2114,2097,2098,2115,2114,2099,2115,2098,2099,2116,2115,2100,2116,2099,2100,2117,2116,2101,2117,2100,2101,2118,2117,2102,2118,2101,2102,2119,2118,2103,2119,2102,2103,2120,2119,2104,2120,2103,2104,2121,2120,2105,2121,2104,2105,2122,2121,2106,2122,2105,2106,2123,2122,2107,2123,2106,2107,2124,2123,2109,2125,2108,2109,2126,2125,2110,2126,2109,2110,2127,2126,2111,2127,2110,2111,2128,2127,2112,2128,2111,2112,2129,2128,2113,2129,2112,2113,2130,2129,2114,2130,2113,2114,2131,2130,2115,2131,2114,2115,2132,2131,2116,2132,2115,2116,2133,2132,2117,2133,2116,2117,2134,2133,2118,2134,2117,2118,2135,2134,2119,2135,2118,2119,2136,2135,2120,2136,2119,2120,2137,2136,2121,2137,2120,2121,2138,2137,2122,2138,2121,2122,2139,2138,2123,2139,2122,2123,2140,2139,2124,2140,2123,2124,2141,2140,2126,2142,2125,2126,2143,2142,2127,2143,2126,2127,2144,2143,2128,2144,2127,2128,2145,2144,2129,2145,2128,2129,2146,2145,2130,2146,2129,2130,2147,2146,2131,2147,2130,2131,2148,2147,2132,2148,2131,2132,2149,2148,2133,2149,2132,2133,2150,2149,2134,2150,2133,2134,2151,2150,2135,2151,2134,2135,2152,2151,2136,2152,2135,2136,2153,2152,2137,2153,2136,2137,2154,2153,2138,2154,2137,2138,2155,2154,2139,2155,2138,2139,2156,2155,2140,2156,2139,2140,2157,2156,2141,2157,2140,2141,2158,2157,2143,2159,2142,2143,2160,2159,2144,2160,2143,2144,2161,2160,2145,2161,2144,2145,2162,2161,2146,2162,2145,2146,2163,2162,2147,2163,2146,2147,2164,2163,2148,2164,2147,2148,2165,2164,2149,2165,2148,2149,2166,2165,2150,2166,2149,2150,2167,2166,2151,2167,2150,2151,2168,2167,2152,2168,2151,2152,2169,2168,2153,2169,2152,2153,2170,2169,2154,2170,2153,2154,2171,2170,2155,2171,2154,2155,2172,2171,2156,2172,2155,2156,2173,2172,2157,2173,2156,2157,2174,2173,2158,2174,2157,2158,2175,2174,2160,2176,2159,2160,2177,2176,2161,2177,2160,2161,2178,2177,2162,2178,2161,2162,2179,2178,2163,2179,2162,2163,2180,2179,2164,2180,2163,2164,2181,2180,2165,2181,2164,2165,2182,2181,2166,2182,2165,2166,2183,2182,2167,2183,2166,2167,2184,2183,2168,2184,2167,2168,2185,2184,2169,2185,2168,2169,2186,2185,2170,2186,2169,2170,2187,2186,2171,2187,2170,2171,2188,2187,2172,2188,2171,2172,2189,2188,2173,2189,2172,2173,2190,2189,2174,2190,2173,2174,2191,2190,2175,2191,2174,2175,2192,2191,2177,2193,2176,2177,2194,2193,2178,2194,2177,2178,2195,2194,2179,2195,2178,2179,2196,2195,2180,2196,2179,2180,2197,2196,2181,2197,2180,2181,2198,2197,2182,2198,2181,2182,2199,2198,2183,2199,2182,2183,2200,2199,2184,2200,2183,2184,2201,2200,2185,2201,2184,2185,2202,2201,2186,2202,2185,2186,2203,2202,2187,2203,2186,2187,2204,2203,2188,2204,2187,2188,2205,2204,2189,2205,2188,2189,2206,2205,2190,2206,2189,2190,2207,2206,2191,2207,2190,2191,2208,2207,2192,2208,2191,2192,2209,2208,2194,2210,2193,2194,2211,2210,2195,2211,2194,2195,2212,2211,2196,2212,2195,2196,2213,2212,2197,2213,2196,2197,2214,2213,2198,2214,2197,2198,2215,2214,2199,2215,2198,2199,2216,2215,2200,2216,2199,2200,2217,2216,2201,2217,2200,2201,2218,2217,2202,2218,2201,2202,2219,2218,2203,2219,2202,2203,2220,2219,2204,2220,2203,2204,2221,2220,2205,2221,2204,2205,2222,2221,2206,2222,2205,2206,2223,2222,2207,2223,2206,2207,2224,2223,2208,2224,2207,2208,2225,2224,2209,2225,2208,2209,2226,2225,2211,2227,2210,2211,2228,2227,2212,2228,2211,2212,2229,2228,2213,2229,2212,2213,2230,2229,2214,2230,2213,2214,2231,2230,2215,2231,2214,2215,2232,2231,2216,2232,2215,2216,2233,2232,2217,2233,2216,2217,2234,2233,2218,2234,2217,2218,2235,2234,2219,2235,2218,2219,2236,2235,2220,2236,2219,2220,2237,2236,2221,2237,2220,2221,2238,2237,2222,2238,2221,2222,2239,2238,2223,2239,2222,2223,2240,2239,2224,2240,2223,2224,2241,2240,2225,2241,2224,2225,2242,2241,2226,2242,2225,2226,2243,2242,2228,2244,2227,2228,2245,2244,2229,2245,2228,2229,2246,2245,2230,2246,2229,2230,2247,2246,2231,2247,2230,2231,2248,2247,2232,2248,2231,2232,2249,2248,2233,2249,2232,2233,2250,2249,2234,2250,2233,2234,2251,2250,2235,2251,2234,2235,2252,2251,2236,2252,2235,2236,2253,2252,2237,2253,2236,2237,2254,2253,2238,2254,2237,2238,2255,2254,2239,2255,2238,2239,2256,2255,2240,2256,2239,2240,2257,2256,2241,2257,2240,2241,2258,2257,2242,2258,2241,2242,2259,2258,2243,2259,2242,2243,2260,2259,2245,2261,2244,2245,2262,2261,2246,2262,2245,2246,2263,2262,2247,2263,2246,2247,2264,2263,2248,2264,2247,2248,2265,2264,2249,2265,2248,2249,2266,2265,2250,2266,2249,2250,2267,2266,2251,2267,2250,2251,2268,2267,2252,2268,2251,2252,2269,2268,2253,2269,2252,2253,2270,2269,2254,2270,2253,2254,2271,2270,2255,2271,2254,2255,2272,2271,2256,2272,2255,2256,2273,2272,2257,2273,2256,2257,2274,2273,2258,2274,2257,2258,2275,2274,2259,2275,2258,2259,2276,2275,2260,2276,2259,2260,2277,2276,2262,2278,2261,2262,2279,2278,2263,2279,2262,2263,2280,2279,2264,2280,2263,2264,2281,2280,2265,2281,2264,2265,2282,2281,2266,2282,2265,2266,2283,2282,2267,2283,2266,2267,2284,2283,2268,2284,2267,2268,2285,2284,2269,2285,2268,2269,2286,2285,2270,2286,2269,2270,2287,2286,2271,2287,2270,2271,2288,2287,2272,2288,2271,2272,2289,2288,2273,2289,2272,2273,2290,2289,2274,2290,2273,2274,2291,2290,2275,2291,2274,2275,2292,2291,2276,2292,2275,2276,2293,2292,2277,2293,2276,2277,2294,2293,2279,2295,2278,2279,2296,2295,2280,2296,2279,2280,2297,2296,2281,2297,2280,2281,2298,2297,2282,2298,2281,2282,2299,2298,2283,2299,2282,2283,2300,2299,2284,2300,2283,2284,2301,2300,2285,2301,2284,2285,2302,2301,2286,2302,2285,2286,2303,2302,2287,2303,2286,2287,2304,2303,2288,2304,2287,2288,2305,2304,2289,2305,2288,2289,2306,2305,2290,2306,2289,2290,2307,2306,2291,2307,2290,2291,2308,2307,2292,2308,2291,2292,2309,2308,2293,2309,2292,2293,2310,2309,2294,2310,2293,2294,2311,2310,2312,2295,2296,2312,2296,2297,2312,2297,2298,2312,2298,2299,2312,2299,2300,2312,2300,2301,2312,2301,2302,2312,2302,2303,2312,2303,2304,2312,2304,2305,2312,2305,2306,2312,2306,2307,2312,2307,2308,2312,2308,2309,2312,2309,2310,2312,2310,2311,2313,2315,2314,2313,2316,2315,2313,2317,2316,2313,2318,2317,2313,2319,2318,2313,2320,2319,2313,2321,2320,2313,2322,2321,2313,2323,2322,2313,2324,2323,2313,2325,2324,2313,2326,2325,2313,2327,2326,2313,2328,2327,2313,2329,2328,2313,2330,2329,2315,2331,2314,2315,2332,2331,2316,2332,2315,2316,2333,2332,2317,2333,2316,2317,2334,2333,2318,2334,2317,2318,2335,2334,2319,2335,2318,2319,2336,2335,2320,2336,2319,2320,2337,2336,2321,2337,2320,2321,2338,2337,2322,2338,2321,2322,2339,2338,2323,2339,2322,2323,2340,2339,2324,2340,2323,2324,2341,2340,2325,2341,2324,2325,2342,2341,2326,2342,2325,2326,2343,2342,2327,2343,2326,2327,2344,2343,2328,2344,2327,2328,2345,2344,2329,2345,2328,2329,2346,2345,2330,2346,2329,2330,2347,2346,2332,2348,2331,2332,2349,2348,2333,2349,2332,2333,2350,2349,2334,2350,2333,2334,2351,2350,2335,2351,2334,2335,2352,2351,2336,2352,2335,2336,2353,2352,2337,2353,2336,2337,2354,2353,2338,2354,2337,2338,2355,2354,2339,2355,2338,2339,2356,2355,2340,2356,2339,2340,2357,2356,2341,2357,2340,2341,2358,2357,2342,2358,2341,2342,2359,2358,2343,2359,2342,2343,2360,2359,2344,2360,2343,2344,2361,2360,2345,2361,2344,2345,2362,2361,2346,2362,2345,2346,2363,2362,2347,2363,2346,2347,2364,2363,2349,2365,2348,2349,2366,2365,2350,2366,2349,2350,2367,2366,2351,2367,2350,2351,2368,2367,2352,2368,2351,2352,2369,2368,2353,2369,2352,2353,2370,2369,2354,2370,2353,2354,2371,2370,2355,2371,2354,2355,2372,2371,2356,2372,2355,2356,2373,2372,2357,2373,2356,2357,2374,2373,2358,2374,2357,2358,2375,2374,2359,2375,2358,2359,2376,2375,2360,2376,2359,2360,2377,2376,2361,2377,2360,2361,2378,2377,2362,2378,2361,2362,2379,2378,2363,2379,2362,2363,2380,2379,2364,2380,2363,2364,2381,2380,2366,2382,2365,2366,2383,2382,2367,2383,2366,2367,2384,2383,2368,2384,2367,2368,2385,2384,2369,2385,2368,2369,2386,2385,2370,2386,2369,2370,2387,2386,2371,2387,2370,2371,2388,2387,2372,2388,2371,2372,2389,2388,2373,2389,2372,2373,2390,2389,2374,2390,2373,2374,2391,2390,2375,2391,2374,2375,2392,2391,2376,2392,2375,2376,2393,2392,2377,2393,2376,2377,2394,2393,2378,2394,2377,2378,2395,2394,2379,2395,2378,2379,2396,2395,2380,2396,2379,2380,2397,2396,2381,2397,2380,2381,2398,2397,2383,2399,2382,2383,2400,2399,2384,2400,2383,2384,2401,2400,2385,2401,2384,2385,2402,2401,2386,2402,2385,2386,2403,2402,2387,2403,2386,2387,2404,2403,2388,2404,2387,2388,2405,2404,2389,2405,2388,2389,2406,2405,2390,2406,2389,2390,2407,2406,2391,2407,2390,2391,2408,2407,2392,2408,2391,2392,2409,2408,2393,2409,2392,2393,2410,2409,2394,2410,2393,2394,2411,2410,2395,2411,2394,2395,2412,2411,2396,2412,2395,2396,2413,2412,2397,2413,2396,2397,2414,2413,2398,2414,2397,2398,2415,2414,2400,2416,2399,2400,2417,2416,2401,2417,2400,2401,2418,2417,2402,2418,2401,2402,2419,2418,2403,2419,2402,2403,2420,2419,2404,2420,2403,2404,2421,2420,2405,2421,2404,2405,2422,2421,2406,2422,2405,2406,2423,2422,2407,2423,2406,2407,2424,2423,2408,2424,2407,2408,2425,2424,2409,2425,2408,2409,2426,2425,2410,2426,2409,2410,2427,2426,2411,2427,2410,2411,2428,2427,2412,2428,2411,2412,2429,2428,2413,2429,2412,2413,2430,2429,2414,2430,2413,2414,2431,2430,2415,2431,2414,2415,2432,2431,2417,2433,2416,2417,2434,2433,2418,2434,2417,2418,2435,2434,2419,2435,2418,2419,2436,2435,2420,2436,2419,2420,2437,2436,2421,2437,2420,2421,2438,2437,2422,2438,2421,2422,2439,2438,2423,2439,2422,2423,2440,2439,2424,2440,2423,2424,2441,2440,2425,2441,2424,2425,2442,2441,2426,2442,2425,2426,2443,2442,2427,2443,2426,2427,2444,2443,2428,2444,2427,2428,2445,2444,2429,2445,2428,2429,2446,2445,2430,2446,2429,2430,2447,2446,2431,2447,2430,2431,2448,2447,2432,2448,2431,2432,2449,2448,2434,2450,2433,2434,2451,2450,2435,2451,2434,2435,2452,2451,2436,2452,2435,2436,2453,2452,2437,2453,2436,2437,2454,2453,2438,2454,2437,2438,2455,2454,2439,2455,2438,2439,2456,2455,2440,2456,2439,2440,2457,2456,2441,2457,2440,2441,2458,2457,2442,2458,2441,2442,2459,2458,2443,2459,2442,2443,2460,2459,2444,2460,2443,2444,2461,2460,2445,2461,2444,2445,2462,2461,2446,2462,2445,2446,2463,2462,2447,2463,2446,2447,2464,2463,2448,2464,2447,2448,2465,2464,2449,2465,2448,2449,2466,2465,2451,2467,2450,2451,2468,2467,2452,2468,2451,2452,2469,2468,2453,2469,2452,2453,2470,2469,2454,2470,2453,2454,2471,2470,2455,2471,2454,2455,2472,2471,2456,2472,2455,2456,2473,2472,2457,2473,2456,2457,2474,2473,2458,2474,2457,2458,2475,2474,2459,2475,2458,2459,2476,2475,2460,2476,2459,2460,2477,2476,2461,2477,2460,2461,2478,2477,2462,2478,2461,2462,2479,2478,2463,2479,2462,2463,2480,2479,2464,2480,2463,2464,2481,2480,2465,2481,2464,2465,2482,2481,2466,2482,2465,2466,2483,2482,2468,2484,2467,2468,2485,2484,2469,2485,2468,2469,2486,2485,2470,2486,2469,2470,2487,2486,2471,2487,2470,2471,2488,2487,2472,2488,2471,2472,2489,2488,2473,2489,2472,2473,2490,2489,2474,2490,2473,2474,2491,2490,2475,2491,2474,2475,2492,2491,2476,2492,2475,2476,2493,2492,2477,2493,2476,2477,2494,2493,2478,2494,2477,2478,2495,2494,2479,2495,2478,2479,2496,2495,2480,2496,2479,2480,2497,2496,2481,2497,2480,2481,2498,2497,2482,2498,2481,2482,2499,2498,2483,2499,2482,2483,2500,2499,2485,2501,2484,2485,2502,2501,2486,2502,2485,2486,2503,2502,2487,2503,2486,2487,2504,2503,2488,2504,2487,2488,2505,2504,2489,2505,2488,2489,2506,2505,2490,2506,2489,2490,2507,2506,2491,2507,2490,2491,2508,2507,2492,2508,2491,2492,2509,2508,2493,2509,2492,2493,2510,2509,2494,2510,2493,2494,2511,2510,2495,2511,2494,2495,2512,2511,2496,2512,2495,2496,2513,2512,2497,2513,2496,2497,2514,2513,2498,2514,2497,2498,2515,2514,2499,2515,2498,2499,2516,2515,2500,2516,2499,2500,2517,2516,2502,2518,2501,2502,2519,2518,2503,2519,2502,2503,2520,2519,2504,2520,2503,2504,2521,2520,2505,2521,2504,2505,2522,2521,2506,2522,2505,2506,2523,2522,2507,2523,2506,2507,2524,2523,2508,2524,2507,2508,2525,2524,2509,2525,2508,2509,2526,2525,2510,2526,2509,2510,2527,2526,2511,2527,2510,2511,2528,2527,2512,2528,2511,2512,2529,2528,2513,2529,2512,2513,2530,2529,2514,2530,2513,2514,2531,2530,2515,2531,2514,2515,2532,2531,2516,2532,2515,2516,2533,2532,2517,2533,2516,2517,2534,2533,2519,2535,2518,2519,2536,2535,2520,2536,2519,2520,2537,2536,2521,2537,2520,2521,2538,2537,2522,2538,2521,2522,2539,2538,2523,2539,2522,2523,2540,2539,2524,2540,2523,2524,2541,2540,2525,2541,2524,2525,2542,2541,2526,2542,2525,2526,2543,2542,2527,2543,2526,2527,2544,2543,2528,2544,2527,2528,2545,2544,2529,2545,2528,2529,2546,2545,2530,2546,2529,2530,2547,2546,2531,2547,2530,2531,2548,2547,2532,2548,2531,2532,2549,2548,2533,2549,2532,2533,2550,2549,2534,2550,2533,2534,2551,2550,2536,2552,2535,2536,2553,2552,2537,2553,2536,2537,2554,2553,2538,2554,2537,2538,2555,2554,2539,2555,2538,2539,2556,2555,2540,2556,2539,2540,2557,2556,2541,2557,2540,2541,2558,2557,2542,2558,2541,2542,2559,2558,2543,2559,2542,2543,2560,2559,2544,2560,2543,2544,2561,2560,2545,2561,2544,2545,2562,2561,2546,2562,2545,2546,2563,2562,2547,2563,2546,2547,2564,2563,2548,2564,2547,2548,2565,2564,2549,2565,2548,2549,2566,2565,2550,2566,2549,2550,2567,2566,2551,2567,2550,2551,2568,2567,2569,2552,2553,2569,2553,2554,2569,2554,2555,2569,2555,2556,2569,2556,2557,2569,2557,2558,2569,2558,2559,2569,2559,2560,2569,2560,2561,2569,2561,2562,2569,2562,2563,2569,2563,2564,2569,2564,2565,2569,2565,2566,2569,2566,2567,2569,2567,2568,2570,2572,2571,2570,2573,2572,2570,2574,2573,2570,2575,2574,2570,2576,2575,2570,2577,2576,2570,2578,2577,2570,2579,2578,2570,2580,2579,2570,2581,2580,2570,2582,2581,2570,2583,2582,2570,2584,2583,2570,2585,2584,2570,2586,2585,2570,2587,2586,2572,2588,2571,2572,2589,2588,2573,2589,2572,2573,2590,2589,2574,2590,2573,2574,2591,2590,2575,2591,2574,2575,2592,2591,2576,2592,2575,2576,2593,2592,2577,2593,2576,2577,2594,2593,2578,2594,2577,2578,2595,2594,2579,2595,2578,2579,2596,2595,2580,2596,2579,2580,2597,2596,2581,2597,2580,2581,2598,2597,2582,2598,2581,2582,2599,2598,2583,2599,2582,2583,2600,2599,2584,2600,2583,2584,2601,2600,2585,2601,2584,2585,2602,2601,2586,2602,2585,2586,2603,2602,2587,2603,2586,2587,2604,2603,2589,2605,2588,2589,2606,2605,2590,2606,2589,2590,2607,2606,2591,2607,2590,2591,2608,2607,2592,2608,2591,2592,2609,2608,2593,2609,2592,2593,2610,2609,2594,2610,2593,2594,2611,2610,2595,2611,2594,2595,2612,2611,2596,2612,2595,2596,2613,2612,2597,2613,2596,2597,2614,2613,2598,2614,2597,2598,2615,2614,2599,2615,2598,2599,2616,2615,2600,2616,2599,2600,2617,2616,2601,2617,2600,2601,2618,2617,2602,2618,2601,2602,2619,2618,2603,2619,2602,2603,2620,2619,2604,2620,2603,2604,2621,2620,2606,2622,2605,2606,2623,2622,2607,2623,2606,2607,2624,2623,2608,2624,2607,2608,2625,2624,2609,2625,2608,2609,2626,2625,2610,2626,2609,2610,2627,2626,2611,2627,2610,2611,2628,2627,2612,2628,2611,2612,2629,2628,2613,2629,2612,2613,2630,2629,2614,2630,2613,2614,2631,2630,2615,2631,2614,2615,2632,2631,2616,2632,2615,2616,2633,2632,2617,2633,2616,2617,2634,2633,2618,2634,2617,2618,2635,2634,2619,2635,2618,2619,2636,2635,2620,2636,2619,2620,2637,2636,2621,2637,2620,2621,2638,2637,2623,2639,2622,2623,2640,2639,2624,2640,2623,2624,2641,2640,2625,2641,2624,2625,2642,2641,2626,2642,2625,2626,2643,2642,2627,2643,2626,2627,2644,2643,2628,2644,2627,2628,2645,2644,2629,2645,2628,2629,2646,2645,2630,2646,2629,2630,2647,2646,2631,2647,2630,2631,2648,2647,2632,2648,2631,2632,2649,2648,2633,2649,2632,2633,2650,2649,2634,2650,2633,2634,2651,2650,2635,2651,2634,2635,2652,2651,2636,2652,2635,2636,2653,2652,2637,2653,2636,2637,2654,2653,2638,2654,2637,2638,2655,2654,2640,2656,2639,2640,2657,2656,2641,2657,2640,2641,2658,2657,2642,2658,2641,2642,2659,2658,2643,2659,2642,2643,2660,2659,2644,2660,2643,2644,2661,2660,2645,2661,2644,2645,2662,2661,2646,2662,2645,2646,2663,2662,2647,2663,2646,2647,2664,2663,2648,2664,2647,2648,2665,2664,2649,2665,2648,2649,2666,2665,2650,2666,2649,2650,2667,2666,2651,2667,2650,2651,2668,2667,2652,2668,2651,2652,2669,2668,2653,2669,2652,2653,2670,2669,2654,2670,2653,2654,2671,2670,2655,2671,2654,2655,2672,2671,2657,2673,2656,2657,2674,2673,2658,2674,2657,2658,2675,2674,2659,2675,2658,2659,2676,2675,2660,2676,2659,2660,2677,2676,2661,2677,2660,2661,2678,2677,2662,2678,2661,2662,2679,2678,2663,2679,2662,2663,2680,2679,2664,2680,2663,2664,2681,2680,2665,2681,2664,2665,2682,2681,2666,2682,2665,2666,2683,2682,2667,2683,2666,2667,2684,2683,2668,2684,2667,2668,2685,2684,2669,2685,2668,2669,2686,2685,2670,2686,2669,2670,2687,2686,2671,2687,2670,2671,2688,2687,2672,2688,2671,2672,2689,2688,2674,2690,2673,2674,2691,2690,2675,2691,2674,2675,2692,2691,2676,2692,2675,2676,2693,2692,2677,2693,2676,2677,2694,2693,2678,2694,2677,2678,2695,2694,2679,2695,2678,2679,2696,2695,2680,2696,2679,2680,2697,2696,2681,2697,2680,2681,2698,2697,2682,2698,2681,2682,2699,2698,2683,2699,2682,2683,2700,2699,2684,2700,2683,2684,2701,2700,2685,2701,2684,2685,2702,2701,2686,2702,2685,2686,2703,2702,2687,2703,2686,2687,2704,2703,2688,2704,2687,2688,2705,2704,2689,2705,2688,2689,2706,2705,2691,2707,2690,2691,2708,2707,2692,2708,2691,2692,2709,2708,2693,2709,2692,2693,2710,2709,2694,2710,2693,2694,2711,2710,2695,2711,2694,2695,2712,2711,2696,2712,2695,2696,2713,2712,2697,2713,2696,2697,2714,2713,2698,2714,2697,2698,2715,2714,2699,2715,2698,2699,2716,2715,2700,2716,2699,2700,2717,2716,2701,2717,2700,2701,2718,2717,2702,2718,2701,2702,2719,2718,2703,2719,2702,2703,2720,2719,2704,2720,2703,2704,2721,2720,2705,2721,2704,2705,2722,2721,2706,2722,2705,2706,2723,2722,2708,2724,2707,2708,2725,2724,2709,2725,2708,2709,2726,2725,2710,2726,2709,2710,2727,2726,2711,2727,2710,2711,2728,2727,2712,2728,2711,2712,2729,2728,2713,2729,2712,2713,2730,2729,2714,2730,2713,2714,2731,2730,2715,2731,2714,2715,2732,2731,2716,2732,2715,2716,2733,2732,2717,2733,2716,2717,2734,2733,2718,2734,2717,2718,2735,2734,2719,2735,2718,2719,2736,2735,2720,2736,2719,2720,2737,2736,2721,2737,2720,2721,2738,2737,2722,2738,2721,2722,2739,2738,2723,2739,2722,2723,2740,2739,2725,2741,2724,2725,2742,2741,2726,2742,2725,2726,2743,2742,2727,2743,2726,2727,2744,2743,2728,2744,2727,2728,2745,2744,2729,2745,2728,2729,2746,2745,2730,2746,2729,2730,2747,2746,2731,2747,2730,2731,2748,2747,2732,2748,2731,2732,2749,2748,2733,2749,2732,2733,2750,2749,2734,2750,2733,2734,2751,2750,2735,2751,2734,2735,2752,2751,2736,2752,2735,2736,2753,2752,2737,2753,2736,2737,2754,2753,2738,2754,2737,2738,2755,2754,2739,2755,2738,2739,2756,2755,2740,2756,2739,2740,2757,2756,2742,2758,2741,2742,2759,2758,2743,2759,2742,2743,2760,2759,2744,2760,2743,2744,2761,2760,2745,2761,2744,2745,2762,2761,2746,2762,2745,2746,2763,2762,2747,2763,2746,2747,2764,2763,2748,2764,2747,2748,2765,2764,2749,2765,2748,2749,2766,2765,2750,2766,2749,2750,2767,2766,2751,2767,2750,2751,2768,2767,2752,2768,2751,2752,2769,2768,2753,2769,2752,2753,2770,2769,2754,2770,2753,2754,2771,2770,2755,2771,2754,2755,2772,2771,2756,2772,2755,2756,2773,2772,2757,2773,2756,2757,2774,2773,2759,2775,2758,2759,2776,2775,2760,2776,2759,2760,2777,2776,2761,2777,2760,2761,2778,2777,2762,2778,2761,2762,2779,2778,2763,2779,2762,2763,2780,2779,2764,2780,2763,2764,2781,2780,2765,2781,2764,2765,2782,2781,2766,2782,2765,2766,2783,2782,2767,2783,2766,2767,2784,2783,2768,2784,2767,2768,2785,2784,2769,2785,2768,2769,2786,2785,2770,2786,2769,2770,2787,2786,2771,2787,2770,2771,2788,2787,2772,2788,2771,2772,2789,2788,2773,2789,2772,2773,2790,2789,2774,2790,2773,2774,2791,2790,2776,2792,2775,2776,2793,2792,2777,2793,2776,2777,2794,2793,2778,2794,2777,2778,2795,2794,2779,2795,2778,2779,2796,2795,2780,2796,2779,2780,2797,2796,2781,2797,2780,2781,2798,2797,2782,2798,2781,2782,2799,2798,2783,2799,2782,2783,2800,2799,2784,2800,2783,2784,2801,2800,2785,2801,2784,2785,2802,2801,2786,2802,2785,2786,2803,2802,2787,2803,2786,2787,2804,2803,2788,2804,2787,2788,2805,2804,2789,2805,2788,2789,2806,2805,2790,2806,2789,2790,2807,2806,2791,2807,2790,2791,2808,2807,2793,2809,2792,2793,2810,2809,2794,2810,2793,2794,2811,2810,2795,2811,2794,2795,2812,2811,2796,2812,2795,2796,2813,2812,2797,2813,2796,2797,2814,2813,2798,2814,2797,2798,2815,2814,2799,2815,2798,2799,2816,2815,2800,2816,2799,2800,2817,2816,2801,2817,2800,2801,2818,2817,2802,2818,2801,2802,2819,2818,2803,2819,2802,2803,2820,2819,2804,2820,2803,2804,2821,2820,2805,2821,2804,2805,2822,2821,2806,2822,2805,2806,2823,2822,2807,2823,2806,2807,2824,2823,2808,2824,2807,2808,2825,2824,2826,2809,2810,2826,2810,2811,2826,2811,2812,2826,2812,2813,2826,2813,2814,2826,2814,2815,2826,2815,2816,2826,2816,2817,2826,2817,2818,2826,2818,2819,2826,2819,2820,2826,2820,2821,2826,2821,2822,2826,2822,2823,2826,2823,2824,2826,2824,2825,2827,2829,2828,2827,2830,2829,2827,2831,2830,2827,2832,2831,2827,2833,2832,2827,2834,2833,2827,2835,2834,2827,2836,2835,2827,2837,2836,2827,2838,2837,2827,2839,2838,2827,2840,2839,2827,2841,2840,2827,2842,2841,2827,2843,2842,2827,2844,2843,2829,2845,2828,2829,2846,2845,2830,2846,2829,2830,2847,2846,2831,2847,2830,2831,2848,2847,2832,2848,2831,2832,2849,2848,2833,2849,2832,2833,2850,2849,2834,2850,2833,2834,2851,2850,2835,2851,2834,2835,2852,2851,2836,2852,2835,2836,2853,2852,2837,2853,2836,2837,2854,2853,2838,2854,2837,2838,2855,2854,2839,2855,2838,2839,2856,2855,2840,2856,2839,2840,2857,2856,2841,2857,2840,2841,2858,2857,2842,2858,2841,2842,2859,2858,2843,2859,2842,2843,2860,2859,2844,2860,2843,2844,2861,2860,2846,2862,2845,2846,2863,2862,2847,2863,2846,2847,2864,2863,2848,2864,2847,2848,2865,2864,2849,2865,2848,2849,2866,2865,2850,2866,2849,2850,2867,2866,2851,2867,2850,2851,2868,2867,2852,2868,2851,2852,2869,2868,2853,2869,2852,2853,2870,2869,2854,2870,2853,2854,2871,2870,2855,2871,2854,2855,2872,2871,2856,2872,2855,2856,2873,2872,2857,2873,2856,2857,2874,2873,2858,2874,2857,2858,2875,2874,2859,2875,2858,2859,2876,2875,2860,2876,2859,2860,2877,2876,2861,2877,2860,2861,2878,2877,2863,2879,2862,2863,2880,2879,2864,2880,2863,2864,2881,2880,2865,2881,2864,2865,2882,2881,2866,2882,2865,2866,2883,2882,2867,2883,2866,2867,2884,2883,2868,2884,2867,2868,2885,2884,2869,2885,2868,2869,2886,2885,2870,2886,2869,2870,2887,2886,2871,2887,2870,2871,2888,2887,2872,2888,2871,2872,2889,2888,2873,2889,2872,2873,2890,2889,2874,2890,2873,2874,2891,2890,2875,2891,2874,2875,2892,2891,2876,2892,2875,2876,2893,2892,2877,2893,2876,2877,2894,2893,2878,2894,2877,2878,2895,2894,2880,2896,2879,2880,2897,2896,2881,2897,2880,2881,2898,2897,2882,2898,2881,2882,2899,2898,2883,2899,2882,2883,2900,2899,2884,2900,2883,2884,2901,2900,2885,2901,2884,2885,2902,2901,2886,2902,2885,2886,2903,2902,2887,2903,2886,2887,2904,2903,2888,2904,2887,2888,2905,2904,2889,2905,2888,2889,2906,2905,2890,2906,2889,2890,2907,2906,2891,2907,2890,2891,2908,2907,2892,2908,2891,2892,2909,2908,2893,2909,2892,2893,2910,2909,2894,2910,2893,2894,2911,2910,2895,2911,2894,2895,2912,2911,2897,2913,2896,2897,2914,2913,2898,2914,2897,2898,2915,2914,2899,2915,2898,2899,2916,2915,2900,2916,2899,2900,2917,2916,2901,2917,2900,2901,2918,2917,2902,2918,2901,2902,2919,2918,2903,2919,2902,2903,2920,2919,2904,2920,2903,2904,2921,2920,2905,2921,2904,2905,2922,2921,2906,2922,2905,2906,2923,2922,2907,2923,2906,2907,2924,2923,2908,2924,2907,2908,2925,2924,2909,2925,2908,2909,2926,2925,2910,2926,2909,2910,2927,2926,2911,2927,2910,2911,2928,2927,2912,2928,2911,2912,2929,2928,2914,2930,2913,2914,2931,2930,2915,2931,2914,2915,2932,2931,2916,2932,2915,2916,2933,2932,2917,2933,2916,2917,2934,2933,2918,2934,2917,2918,2935,2934,2919,2935,2918,2919,2936,2935,2920,2936,2919,2920,2937,2936,2921,2937,2920,2921,2938,2937,2922,2938,2921,2922,2939,2938,2923,2939,2922,2923,2940,2939,2924,2940,2923,2924,2941,2940,2925,2941,2924,2925,2942,2941,2926,2942,2925,2926,2943,2942,2927,2943,2926,2927,2944,2943,2928,2944,2927,2928,2945,2944,2929,2945,2928,2929,2946,2945,2931,2947,2930,2931,2948,2947,2932,2948,2931,2932,2949,2948,2933,2949,2932,2933,2950,2949,2934,2950,2933,2934,2951,2950,2935,2951,2934,2935,2952,2951,2936,2952,2935,2936,2953,2952,2937,2953,2936,2937,2954,2953,2938,2954,2937,2938,2955,2954,2939,2955,2938,2939,2956,2955,2940,2956,2939,2940,2957,2956,2941,2957,2940,2941,2958,2957,2942,2958,2941,2942,2959,2958,2943,2959,2942,2943,2960,2959,2944,2960,2943,2944,2961,2960,2945,2961,2944,2945,2962,2961,2946,2962,2945,2946,2963,2962,2948,2964,2947,2948,2965,2964,2949,2965,2948,2949,2966,2965,2950,2966,2949,2950,2967,2966,2951,2967,2950,2951,2968,2967,2952,2968,2951,2952,2969,2968,2953,2969,2952,2953,2970,2969,2954,2970,2953,2954,2971,2970,2955,2971,2954,2955,2972,2971,2956,2972,2955,2956,2973,2972,2957,2973,2956,2957,2974,2973,2958,2974,2957,2958,2975,2974,2959,2975,2958,2959,2976,2975,2960,2976,2959,2960,2977,2976,2961,2977,2960,2961,2978,2977,2962,2978,2961,2962,2979,2978,2963,2979,2962,2963,2980,2979,2965,2981,2964,2965,2982,2981,2966,2982,2965,2966,2983,2982,2967,2983,2966,2967,2984,2983,2968,2984,2967,2968,2985,2984,2969,2985,2968,2969,2986,2985,2970,2986,2969,2970,2987,2986,2971,2987,2970,2971,2988,2987,2972,2988,2971,2972,2989,2988,2973,2989,2972,2973,2990,2989,2974,2990,2973,2974,2991,2990,2975,2991,2974,2975,2992,2991,2976,2992,2975,2976,2993,2992,2977,2993,2976,2977,2994,2993,2978,2994,2977,2978,2995,2994,2979,2995,2978,2979,2996,2995,2980,2996,2979,2980,2997,2996,2982,2998,2981,2982,2999,2998,2983,2999,2982,2983,3000,2999,2984,3000,2983,2984,3001,3000,2985,3001,2984,2985,3002,3001,2986,3002,2985,2986,3003,3002,2987,3003,2986,2987,3004,3003,2988,3004,2987,2988,3005,3004,2989,3005,2988,2989,3006,3005,2990,3006,2989,2990,3007,3006,2991,3007,2990,2991,3008,3007,2992,3008,2991,2992,3009,3008,2993,3009,2992,2993,3010,3009,2994,3010,2993,2994,3011,3010,2995,3011,2994,2995,3012,3011,2996,3012,2995,2996,3013,3012,2997,3013,2996,2997,3014,3013,2999,3015,2998,2999,3016,3015,3000,3016,2999,3000,3017,3016,3001,3017,3000,3001,3018,3017,3002,3018,3001,3002,3019,3018,3003,3019,3002,3003,3020,3019,3004,3020,3003,3004,3021,3020,3005,3021,3004,3005,3022,3021,3006,3022,3005,3006,3023,3022,3007,3023,3006,3007,3024,3023,3008,3024,3007,3008,3025,3024,3009,3025,3008,3009,3026,3025,3010,3026,3009,3010,3027,3026,3011,3027,3010,3011,3028,3027,3012,3028,3011,3012,3029,3028,3013,3029,3012,3013,3030,3029,3014,3030,3013,3014,3031,3030,3016,3032,3015,3016,3033,3032,3017,3033,3016,3017,3034,3033,3018,3034,3017,3018,3035,3034,3019,3035,3018,3019,3036,3035,3020,3036,3019,3020,3037,3036,3021,3037,3020,3021,3038,3037,3022,3038,3021,3022,3039,3038,3023,3039,3022,3023,3040,3039,3024,3040,3023,3024,3041,3040,3025,3041,3024,3025,3042,3041,3026,3042,3025,3026,3043,3042,3027,3043,3026,3027,3044,3043,3028,3044,3027,3028,3045,3044,3029,3045,3028,3029,3046,3045,3030,3046,3029,3030,3047,3046,3031,3047,3030,3031,3048,3047,3033,3049,3032,3033,3050,3049,3034,3050,3033,3034,3051,3050,3035,3051,3034,3035,3052,3051,3036,3052,3035,3036,3053,3052,3037,3053,3036,3037,3054,3053,3038,3054,3037,3038,3055,3054,3039,3055,3038,3039,3056,3055,3040,3056,3039,3040,3057,3056,3041,3057,3040,3041,3058,3057,3042,3058,3041,3042,3059,3058,3043,3059,3042,3043,3060,3059,3044,3060,3043,3044,3061,3060,3045,3061,3044,3045,3062,3061,3046,3062,3045,3046,3063,3062,3047,3063,3046,3047,3064,3063,3048,3064,3047,3048,3065,3064,3050,3066,3049,3050,3067,3066,3051,3067,3050,3051,3068,3067,3052,3068,3051,3052,3069,3068,3053,3069,3052,3053,3070,3069,3054,3070,3053,3054,3071,3070,3055,3071,3054,3055,3072,3071,3056,3072,3055,3056,3073,3072,3057,3073,3056,3057,3074,3073,3058,3074,3057,3058,3075,3074,3059,3075,3058,3059,3076,3075,3060,3076,3059,3060,3077,3076,3061,3077,3060,3061,3078,3077,3062,3078,3061,3062,3079,3078,3063,3079,3062,3063,3080,3079,3064,3080,3063,3064,3081,3080,3065,3081,3064,3065,3082,3081,3083,3066,3067,3083,3067,3068,3083,3068,3069,3083,3069,3070,3083,3070,3071,3083,3071,3072,3083,3072,3073,3083,3073,3074,3083,3074,3075,3083,3075,3076,3083,3076,3077,3083,3077,3078,3083,3078,3079,3083,3079,3080,3083,3080,3081,3083,3081,3082,3084,3086,3085,3084,3087,3086,3084,3088,3087,3084,3089,3088,3084,3090,3089,3084,3091,3090,3084,3092,3091,3084,3093,3092,3084,3094,3093,3084,3095,3094,3084,3096,3095,3084,3097,3096,3084,3098,3097,3084,3099,3098,3084,3100,3099,3084,3101,3100,3086,3102,3085,3086,3103,3102,3087,3103,3086,3087,3104,3103,3088,3104,3087,3088,3105,3104,3089,3105,3088,3089,3106,3105,3090,3106,3089,3090,3107,3106,3091,3107,3090,3091,3108,3107,3092,3108,3091,3092,3109,3108,3093,3109,3092,3093,3110,3109,3094,3110,3093,3094,3111,3110,3095,3111,3094,3095,3112,3111,3096,3112,3095,3096,3113,3112,3097,3113,3096,3097,3114,3113,3098,3114,3097,3098,3115,3114,3099,3115,3098,3099,3116,3115,3100,3116,3099,3100,3117,3116,3101,3117,3100,3101,3118,3117,3103,3119,3102,3103,3120,3119,3104,3120,3103,3104,3121,3120,3105,3121,3104,3105,3122,3121,3106,3122,3105,3106,3123,3122,3107,3123,3106,3107,3124,3123,3108,3124,3107,3108,3125,3124,3109,3125,3108,3109,3126,3125,3110,3126,3109,3110,3127,3126,3111,3127,3110,3111,3128,3127,3112,3128,3111,3112,3129,3128,3113,3129,3112,3113,3130,3129,3114,3130,3113,3114,3131,3130,3115,3131,3114,3115,3132,3131,3116,3132,3115,3116,3133,3132,3117,3133,3116,3117,3134,3133,3118,3134,3117,3118,3135,3134,3120,3136,3119,3120,3137,3136,3121,3137,3120,3121,3138,3137,3122,3138,3121,3122,3139,3138,3123,3139,3122,3123,3140,3139,3124,3140,3123,3124,3141,3140,3125,3141,3124,3125,3142,3141,3126,3142,3125,3126,3143,3142,3127,3143,3126,3127,3144,3143,3128,3144,3127,3128,3145,3144,3129,3145,3128,3129,3146,3145,3130,3146,3129,3130,3147,3146,3131,3147,3130,3131,3148,3147,3132,3148,3131,3132,3149,3148,3133,3149,3132,3133,3150,3149,3134,3150,3133,3134,3151,3150,3135,3151,3134,3135,3152,3151,3137,3153,3136,3137,3154,3153,3138,3154,3137,3138,3155,3154,3139,3155,3138,3139,3156,3155,3140,3156,3139,3140,3157,3156,3141,3157,3140,3141,3158,3157,3142,3158,3141,3142,3159,3158,3143,3159,3142,3143,3160,3159,3144,3160,3143,3144,3161,3160,3145,3161,3144,3145,3162,3161,3146,3162,3145,3146,3163,3162,3147,3163,3146,3147,3164,3163,3148,3164,3147,3148,3165,3164,3149,3165,3148,3149,3166,3165,3150,3166,3149,3150,3167,3166,3151,3167,3150,3151,3168,3167,3152,3168,3151,3152,3169,3168,3154,3170,3153,3154,3171,3170,3155,3171,3154,3155,3172,3171,3156,3172,3155,3156,3173,3172,3157,3173,3156,3157,3174,3173,3158,3174,3157,3158,3175,3174,3159,3175,3158,3159,3176,3175,3160,3176,3159,3160,3177,3176,3161,3177,3160,3161,3178,3177,3162,3178,3161,3162,3179,3178,3163,3179,3162,3163,3180,3179,3164,3180,3163,3164,3181,3180,3165,3181,3164,3165,3182,3181,3166,3182,3165,3166,3183,3182,3167,3183,3166,3167,3184,3183,3168,3184,3167,3168,3185,3184,3169,3185,3168,3169,3186,3185,3171,3187,3170,3171,3188,3187,3172,3188,3171,3172,3189,3188,3173,3189,3172,3173,3190,3189,3174,3190,3173,3174,3191,3190,3175,3191,3174,3175,3192,3191,3176,3192,3175,3176,3193,3192,3177,3193,3176,3177,3194,3193,3178,3194,3177,3178,3195,3194,3179,3195,3178,3179,3196,3195,3180,3196,3179,3180,3197,3196,3181,3197,3180,3181,3198,3197,3182,3198,3181,3182,3199,3198,3183,3199,3182,3183,3200,3199,3184,3200,3183,3184,3201,3200,3185,3201,3184,3185,3202,3201,3186,3202,3185,3186,3203,3202,3188,3204,3187,3188,3205,3204,3189,3205,3188,3189,3206,3205,3190,3206,3189,3190,3207,3206,3191,3207,3190,3191,3208,3207,3192,3208,3191,3192,3209,3208,3193,3209,3192,3193,3210,3209,3194,3210,3193,3194,3211,3210,3195,3211,3194,3195,3212,3211,3196,3212,3195,3196,3213,3212,3197,3213,3196,3197,3214,3213,3198,3214,3197,3198,3215,3214,3199,3215,3198,3199,3216,3215,3200,3216,3199,3200,3217,3216,3201,3217,3200,3201,3218,3217,3202,3218,3201,3202,3219,3218,3203,3219,3202,3203,3220,3219,3205,3221,3204,3205,3222,3221,3206,3222,3205,3206,3223,3222,3207,3223,3206,3207,3224,3223,3208,3224,3207,3208,3225,3224,3209,3225,3208,3209,3226,3225,3210,3226,3209,3210,3227,3226,3211,3227,3210,3211,3228,3227,3212,3228,3211,3212,3229,3228,3213,3229,3212,3213,3230,3229,3214,3230,3213,3214,3231,3230,3215,3231,3214,3215,3232,3231,3216,3232,3215,3216,3233,3232,3217,3233,3216,3217,3234,3233,3218,3234,3217,3218,3235,3234,3219,3235,3218,3219,3236,3235,3220,3236,3219,3220,3237,3236,3222,3238,3221,3222,3239,3238,3223,3239,3222,3223,3240,3239,3224,3240,3223,3224,3241,3240,3225,3241,3224,3225,3242,3241,3226,3242,3225,3226,3243,3242,3227,3243,3226,3227,3244,3243,3228,3244,3227,3228,3245,3244,3229,3245,3228,3229,3246,3245,3230,3246,3229,3230,3247,3246,3231,3247,3230,3231,3248,3247,3232,3248,3231,3232,3249,3248,3233,3249,3232,3233,3250,3249,3234,3250,3233,3234,3251,3250,3235,3251,3234,3235,3252,3251,3236,3252,3235,3236,3253,3252,3237,3253,3236,3237,3254,3253,3239,3255,3238,3239,3256,3255,3240,3256,3239,3240,3257,3256,3241,3257,3240,3241,3258,3257,3242,3258,3241,3242,3259,3258,3243,3259,3242,3243,3260,3259,3244,3260,3243,3244,3261,3260,3245,3261,3244,3245,3262,3261,3246,3262,3245,3246,3263,3262,3247,3263,3246,3247,3264,3263,3248,3264,3247,3248,3265,3264,3249,3265,3248,3249,3266,3265,3250,3266,3249,3250,3267,3266,3251,3267,3250,3251,3268,3267,3252,3268,3251,3252,3269,3268,3253,3269,3252,3253,3270,3269,3254,3270,3253,3254,3271,3270,3256,3272,3255,3256,3273,3272,3257,3273,3256,3257,3274,3273,3258,3274,3257,3258,3275,3274,3259,3275,3258,3259,3276,3275,3260,3276,3259,3260,3277,3276,3261,3277,3260,3261,3278,3277,3262,3278,3261,3262,3279,3278,3263,3279,3262,3263,3280,3279,3264,3280,3263,3264,3281,3280,3265,3281,3264,3265,3282,3281,3266,3282,3265,3266,3283,3282,3267,3283,3266,3267,3284,3283,3268,3284,3267,3268,3285,3284,3269,3285,3268,3269,3286,3285,3270,3286,3269,3270,3287,3286,3271,3287,3270,3271,3288,3287,3273,3289,3272,3273,3290,3289,3274,3290,3273,3274,3291,3290,3275,3291,3274,3275,3292,3291,3276,3292,3275,3276,3293,3292,3277,3293,3276,3277,3294,3293,3278,3294,3277,3278,3295,3294,3279,3295,3278,3279,3296,3295,3280,3296,3279,3280,3297,3296,3281,3297,3280,3281,3298,3297,3282,3298,3281,3282,3299,3298,3283,3299,3282,3283,3300,3299,3284,3300,3283,3284,3301,3300,3285,3301,3284,3285,3302,3301,3286,3302,3285,3286,3303,3302,3287,3303,3286,3287,3304,3303,3288,3304,3287,3288,3305,3304,3290,3306,3289,3290,3307,3306,3291,3307,3290,3291,3308,3307,3292,3308,3291,3292,3309,3308,3293,3309,3292,3293,3310,3309,3294,3310,3293,3294,3311,3310,3295,3311,3294,3295,3312,3311,3296,3312,3295,3296,3313,3312,3297,3313,3296,3297,3314,3313,3298,3314,3297,3298,3315,3314,3299,3315,3298,3299,3316,3315,3300,3316,3299,3300,3317,3316,3301,3317,3300,3301,3318,3317,3302,3318,3301,3302,3319,3318,3303,3319,3302,3303,3320,3319,3304,3320,3303,3304,3321,3320,3305,3321,3304,3305,3322,3321,3307,3323,3306,3307,3324,3323,3308,3324,3307,3308,3325,3324,3309,3325,3308,3309,3326,3325,3310,3326,3309,3310,3327,3326,3311,3327,3310,3311,3328,3327,3312,3328,3311,3312,3329,3328,3313,3329,3312,3313,3330,3329,3314,3330,3313,3314,3331,3330,3315,3331,3314,3315,3332,3331,3316,3332,3315,3316,3333,3332,3317,3333,3316,3317,3334,3333,3318,3334,3317,3318,3335,3334,3319,3335,3318,3319,3336,3335,3320,3336,3319,3320,3337,3336,3321,3337,3320,3321,3338,3337,3322,3338,3321,3322,3339,3338,3340,3323,3324,3340,3324,3325,3340,3325,3326,3340,3326,3327,3340,3327,3328,3340,3328,3329,3340,3329,3330,3340,3330,3331,3340,3331,3332,3340,3332,3333,3340,3333,3334,3340,3334,3335,3340,3335,3336,3340,3336,3337,3340,3337,3338,3340,3338,3339,3341,3343,3342,3341,3344,3343,3341,3345,3344,3341,3346,3345,3341,3347,3346,3341,3348,3347,3341,3349,3348,3341,3350,3349,3341,3351,3350,3341,3352,3351,3341,3353,3352,3341,3354,3353,3341,3355,3354,3341,3356,3355,3341,3357,3356,3341,3358,3357,3343,3359,3342,3343,3360,3359,3344,3360,3343,3344,3361,3360,3345,3361,3344,3345,3362,3361,3346,3362,3345,3346,3363,3362,3347,3363,3346,3347,3364,3363,3348,3364,3347,3348,3365,3364,3349,3365,3348,3349,3366,3365,3350,3366,3349,3350,3367,3366,3351,3367,3350,3351,3368,3367,3352,3368,3351,3352,3369,3368,3353,3369,3352,3353,3370,3369,3354,3370,3353,3354,3371,3370,3355,3371,3354,3355,3372,3371,3356,3372,3355,3356,3373,3372,3357,3373,3356,3357,3374,3373,3358,3374,3357,3358,3375,3374,3360,3376,3359,3360,3377,3376,3361,3377,3360,3361,3378,3377,3362,3378,3361,3362,3379,3378,3363,3379,3362,3363,3380,3379,3364,3380,3363,3364,3381,3380,3365,3381,3364,3365,3382,3381,3366,3382,3365,3366,3383,3382,3367,3383,3366,3367,3384,3383,3368,3384,3367,3368,3385,3384,3369,3385,3368,3369,3386,3385,3370,3386,3369,3370,3387,3386,3371,3387,3370,3371,3388,3387,3372,3388,3371,3372,3389,3388,3373,3389,3372,3373,3390,3389,3374,3390,3373,3374,3391,3390,3375,3391,3374,3375,3392,3391,3377,3393,3376,3377,3394,3393,3378,3394,3377,3378,3395,3394,3379,3395,3378,3379,3396,3395,3380,3396,3379,3380,3397,3396,3381,3397,3380,3381,3398,3397,3382,3398,3381,3382,3399,3398,3383,3399,3382,3383,3400,3399,3384,3400,3383,3384,3401,3400,3385,3401,3384,3385,3402,3401,3386,3402,3385,3386,3403,3402,3387,3403,3386,3387,3404,3403,3388,3404,3387,3388,3405,3404,3389,3405,3388,3389,3406,3405,3390,3406,3389,3390,3407,3406,3391,3407,3390,3391,3408,3407,3392,3408,3391,3392,3409,3408,3394,3410,3393,3394,3411,3410,3395,3411,3394,3395,3412,3411,3396,3412,3395,3396,3413,3412,3397,3413,3396,3397,3414,3413,3398,3414,3397,3398,3415,3414,3399,3415,3398,3399,3416,3415,3400,3416,3399,3400,3417,3416,3401,3417,3400,3401,3418,3417,3402,3418,3401,3402,3419,3418,3403,3419,3402,3403,3420,3419,3404,3420,3403,3404,3421,3420,3405,3421,3404,3405,3422,3421,3406,3422,3405,3406,3423,3422,3407,3423,3406,3407,3424,3423,3408,3424,3407,3408,3425,3424,3409,3425,3408,3409,3426,3425,3411,3427,3410,3411,3428,3427,3412,3428,3411,3412,3429,3428,3413,3429,3412,3413,3430,3429,3414,3430,3413,3414,3431,3430,3415,3431,3414,3415,3432,3431,3416,3432,3415,3416,3433,3432,3417,3433,3416,3417,3434,3433,3418,3434,3417,3418,3435,3434,3419,3435,3418,3419,3436,3435,3420,3436,3419,3420,3437,3436,3421,3437,3420,3421,3438,3437,3422,3438,3421,3422,3439,3438,3423,3439,3422,3423,3440,3439,3424,3440,3423,3424,3441,3440,3425,3441,3424,3425,3442,3441,3426,3442,3425,3426,3443,3442,3428,3444,3427,3428,3445,3444,3429,3445,3428,3429,3446,3445,3430,3446,3429,3430,3447,3446,3431,3447,3430,3431,3448,3447,3432,3448,3431,3432,3449,3448,3433,3449,3432,3433,3450,3449,3434,3450,3433,3434,3451,3450,3435,3451,3434,3435,3452,3451,3436,3452,3435,3436,3453,3452,3437,3453,3436,3437,3454,3453,3438,3454,3437,3438,3455,3454,3439,3455,3438,3439,3456,3455,3440,3456,3439,3440,3457,3456,3441,3457,3440,3441,3458,3457,3442,3458,3441,3442,3459,3458,3443,3459,3442,3443,3460,3459,3445,3461,3444,3445,3462,3461,3446,3462,3445,3446,3463,3462,3447,3463,3446,3447,3464,3463,3448,3464,3447,3448,3465,3464,3449,3465,3448,3449,3466,3465,3450,3466,3449,3450,3467,3466,3451,3467,3450,3451,3468,3467,3452,3468,3451,3452,3469,3468,3453,3469,3452,3453,3470,3469,3454,3470,3453,3454,3471,3470,3455,3471,3454,3455,3472,3471,3456,3472,3455,3456,3473,3472,3457,3473,3456,3457,3474,3473,3458,3474,3457,3458,3475,3474,3459,3475,3458,3459,3476,3475,3460,3476,3459,3460,3477,3476,3462,3478,3461,3462,3479,3478,3463,3479,3462,3463,3480,3479,3464,3480,3463,3464,3481,3480,3465,3481,3464,3465,3482,3481,3466,3482,3465,3466,3483,3482,3467,3483,3466,3467,3484,3483,3468,3484,3467,3468,3485,3484,3469,3485,3468,3469,3486,3485,3470,3486,3469,3470,3487,3486,3471,3487,3470,3471,3488,3487,3472,3488,3471,3472,3489,3488,3473,3489,3472,3473,3490,3489,3474,3490,3473,3474,3491,3490,3475,3491,3474,3475,3492,3491,3476,3492,3475,3476,3493,3492,3477,3493,3476,3477,3494,3493,3479,3495,3478,3479,3496,3495,3480,3496,3479,3480,3497,3496,3481,3497,3480,3481,3498,3497,3482,3498,3481,3482,3499,3498,3483,3499,3482,3483,3500,3499,3484,3500,3483,3484,3501,3500,3485,3501,3484,3485,3502,3501,3486,3502,3485,3486,3503,3502,3487,3503,3486,3487,3504,3503,3488,3504,3487,3488,3505,3504,3489,3505,3488,3489,3506,3505,3490,3506,3489,3490,3507,3506,3491,3507,3490,3491,3508,3507,3492,3508,3491,3492,3509,3508,3493,3509,3492,3493,3510,3509,3494,3510,3493,3494,3511,3510,3496,3512,3495,3496,3513,3512,3497,3513,3496,3497,3514,3513,3498,3514,3497,3498,3515,3514,3499,3515,3498,3499,3516,3515,3500,3516,3499,3500,3517,3516,3501,3517,3500,3501,3518,3517,3502,3518,3501,3502,3519,3518,3503,3519,3502,3503,3520,3519,3504,3520,3503,3504,3521,3520,3505,3521,3504,3505,3522,3521,3506,3522,3505,3506,3523,3522,3507,3523,3506,3507,3524,3523,3508,3524,3507,3508,3525,3524,3509,3525,3508,3509,3526,3525,3510,3526,3509,3510,3527,3526,3511,3527,3510,3511,3528,3527,3513,3529,3512,3513,3530,3529,3514,3530,3513,3514,3531,3530,3515,3531,3514,3515,3532,3531,3516,3532,3515,3516,3533,3532,3517,3533,3516,3517,3534,3533,3518,3534,3517,3518,3535,3534,3519,3535,3518,3519,3536,3535,3520,3536,3519,3520,3537,3536,3521,3537,3520,3521,3538,3537,3522,3538,3521,3522,3539,3538,3523,3539,3522,3523,3540,3539,3524,3540,3523,3524,3541,3540,3525,3541,3524,3525,3542,3541,3526,3542,3525,3526,3543,3542,3527,3543,3526,3527,3544,3543,3528,3544,3527,3528,3545,3544,3530,3546,3529,3530,3547,3546,3531,3547,3530,3531,3548,3547,3532,3548,3531,3532,3549,3548,3533,3549,3532,3533,3550,3549,3534,3550,3533,3534,3551,3550,3535,3551,3534,3535,3552,3551,3536,3552,3535,3536,3553,3552,3537,3553,3536,3537,3554,3553,3538,3554,3537,3538,3555,3554,3539,3555,3538,3539,3556,3555,3540,3556,3539,3540,3557,3556,3541,3557,3540,3541,3558,3557,3542,3558,3541,3542,3559,3558,3543,3559,3542,3543,3560,3559,3544,3560,3543,3544,3561,3560,3545,3561,3544,3545,3562,3561,3547,3563,3546,3547,3564,3563,3548,3564,3547,3548,3565,3564,3549,3565,3548,3549,3566,3565,3550,3566,3549,3550,3567,3566,3551,3567,3550,3551,3568,3567,3552,3568,3551,3552,3569,3568,3553,3569,3552,3553,3570,3569,3554,3570,3553,3554,3571,3570,3555,3571,3554,3555,3572,3571,3556,3572,3555,3556,3573,3572,3557,3573,3556,3557,3574,3573,3558,3574,3557,3558,3575,3574,3559,3575,3558,3559,3576,3575,3560,3576,3559,3560,3577,3576,3561,3577,3560,3561,3578,3577,3562,3578,3561,3562,3579,3578,3564,3580,3563,3564,3581,3580,3565,3581,3564,3565,3582,3581,3566,3582,3565,3566,3583,3582,3567,3583,3566,3567,3584,3583,3568,3584,3567,3568,3585,3584,3569,3585,3568,3569,3586,3585,3570,3586,3569,3570,3587,3586,3571,3587,3570,3571,3588,3587,3572,3588,3571,3572,3589,3588,3573,3589,3572,3573,3590,3589,3574,3590,3573,3574,3591,3590,3575,3591,3574,3575,3592,3591,3576,3592,3575,3576,3593,3592,3577,3593,3576,3577,3594,3593,3578,3594,3577,3578,3595,3594,3579,3595,3578,3579,3596,3595,3597,3580,3581,3597,3581,3582,3597,3582,3583,3597,3583,3584,3597,3584,3585,3597,3585,3586,3597,3586,3587,3597,3587,3588,3597,3588,3589,3597,3589,3590,3597,3590,3591,3597,3591,3592,3597,3592,3593,3597,3593,3594,3597,3594,3595,3597,3595,3596,3598,3600,3599,3598,3601,3600,3598,3602,3601,3598,3603,3602,3598,3604,3603,3598,3605,3604,3598,3606,3605,3598,3607,3606,3598,3608,3607,3598,3609,3608,3598,3610,3609,3598,3611,3610,3598,3612,3611,3598,3613,3612,3598,3614,3613,3598,3615,3614,3600,3616,3599,3600,3617,3616,3601,3617,3600,3601,3618,3617,3602,3618,3601,3602,3619,3618,3603,3619,3602,3603,3620,3619,3604,3620,3603,3604,3621,3620,3605,3621,3604,3605,3622,3621,3606,3622,3605,3606,3623,3622,3607,3623,3606,3607,3624,3623,3608,3624,3607,3608,3625,3624,3609,3625,3608,3609,3626,3625,3610,3626,3609,3610,3627,3626,3611,3627,3610,3611,3628,3627,3612,3628,3611,3612,3629,3628,3613,3629,3612,3613,3630,3629,3614,3630,3613,3614,3631,3630,3615,3631,3614,3615,3632,3631,3617,3633,3616,3617,3634,3633,3618,3634,3617,3618,3635,3634,3619,3635,3618,3619,3636,3635,3620,3636,3619,3620,3637,3636,3621,3637,3620,3621,3638,3637,3622,3638,3621,3622,3639,3638,3623,3639,3622,3623,3640,3639,3624,3640,3623,3624,3641,3640,3625,3641,3624,3625,3642,3641,3626,3642,3625,3626,3643,3642,3627,3643,3626,3627,3644,3643,3628,3644,3627,3628,3645,3644,3629,3645,3628,3629,3646,3645,3630,3646,3629,3630,3647,3646,3631,3647,3630,3631,3648,3647,3632,3648,3631,3632,3649,3648,3634,3650,3633,3634,3651,3650,3635,3651,3634,3635,3652,3651,3636,3652,3635,3636,3653,3652,3637,3653,3636,3637,3654,3653,3638,3654,3637,3638,3655,3654,3639,3655,3638,3639,3656,3655,3640,3656,3639,3640,3657,3656,3641,3657,3640,3641,3658,3657,3642,3658,3641,3642,3659,3658,3643,3659,3642,3643,3660,3659,3644,3660,3643,3644,3661,3660,3645,3661,3644,3645,3662,3661,3646,3662,3645,3646,3663,3662,3647,3663,3646,3647,3664,3663,3648,3664,3647,3648,3665,3664,3649,3665,3648,3649,3666,3665,3651,3667,3650,3651,3668,3667,3652,3668,3651,3652,3669,3668,3653,3669,3652,3653,3670,3669,3654,3670,3653,3654,3671,3670,3655,3671,3654,3655,3672,3671,3656,3672,3655,3656,3673,3672,3657,3673,3656,3657,3674,3673,3658,3674,3657,3658,3675,3674,3659,3675,3658,3659,3676,3675,3660,3676,3659,3660,3677,3676,3661,3677,3660,3661,3678,3677,3662,3678,3661,3662,3679,3678,3663,3679,3662,3663,3680,3679,3664,3680,3663,3664,3681,3680,3665,3681,3664,3665,3682,3681,3666,3682,3665,3666,3683,3682,3668,3684,3667,3668,3685,3684,3669,3685,3668,3669,3686,3685,3670,3686,3669,3670,3687,3686,3671,3687,3670,3671,3688,3687,3672,3688,3671,3672,3689,3688,3673,3689,3672,3673,3690,3689,3674,3690,3673,3674,3691,3690,3675,3691,3674,3675,3692,3691,3676,3692,3675,3676,3693,3692,3677,3693,3676,3677,3694,3693,3678,3694,3677,3678,3695,3694,3679,3695,3678,3679,3696,3695,3680,3696,3679,3680,3697,3696,3681,3697,3680,3681,3698,3697,3682,3698,3681,3682,3699,3698,3683,3699,3682,3683,3700,3699,3685,3701,3684,3685,3702,3701,3686,3702,3685,3686,3703,3702,3687,3703,3686,3687,3704,3703,3688,3704,3687,3688,3705,3704,3689,3705,3688,3689,3706,3705,3690,3706,3689,3690,3707,3706,3691,3707,3690,3691,3708,3707,3692,3708,3691,3692,3709,3708,3693,3709,3692,3693,3710,3709,3694,3710,3693,3694,3711,3710,3695,3711,3694,3695,3712,3711,3696,3712,3695,3696,3713,3712,3697,3713,3696,3697,3714,3713,3698,3714,3697,3698,3715,3714,3699,3715,3698,3699,3716,3715,3700,3716,3699,3700,3717,3716,3702,3718,3701,3702,3719,3718,3703,3719,3702,3703,3720,3719,3704,3720,3703,3704,3721,3720,3705,3721,3704,3705,3722,3721,3706,3722,3705,3706,3723,3722,3707,3723,3706,3707,3724,3723,3708,3724,3707,3708,3725,3724,3709,3725,3708,3709,3726,3725,3710,3726,3709,3710,3727,3726,3711,3727,3710,3711,3728,3727,3712,3728,3711,3712,3729,3728,3713,3729,3712,3713,3730,3729,3714,3730,3713,3714,3731,3730,3715,3731,3714,3715,3732,3731,3716,3732,3715,3716,3733,3732,3717,3733,3716,3717,3734,3733,3719,3735,3718,3719,3736,3735,3720,3736,3719,3720,3737,3736,3721,3737,3720,3721,3738,3737,3722,3738,3721,3722,3739,3738,3723,3739,3722,3723,3740,3739,3724,3740,3723,3724,3741,3740,3725,3741,3724,3725,3742,3741,3726,3742,3725,3726,3743,3742,3727,3743,3726,3727,3744,3743,3728,3744,3727,3728,3745,3744,3729,3745,3728,3729,3746,3745,3730,3746,3729,3730,3747,3746,3731,3747,3730,3731,3748,3747,3732,3748,3731,3732,3749,3748,3733,3749,3732,3733,3750,3749,3734,3750,3733,3734,3751,3750,3736,3752,3735,3736,3753,3752,3737,3753,3736,3737,3754,3753,3738,3754,3737,3738,3755,3754,3739,3755,3738,3739,3756,3755,3740,3756,3739,3740,3757,3756,3741,3757,3740,3741,3758,3757,3742,3758,3741,3742,3759,3758,3743,3759,3742,3743,3760,3759,3744,3760,3743,3744,3761,3760,3745,3761,3744,3745,3762,3761,3746,3762,3745,3746,3763,3762,3747,3763,3746,3747,3764,3763,3748,3764,3747,3748,3765,3764,3749,3765,3748,3749,3766,3765,3750,3766,3749,3750,3767,3766,3751,3767,3750,3751,3768,3767,3753,3769,3752,3753,3770,3769,3754,3770,3753,3754,3771,3770,3755,3771,3754,3755,3772,3771,3756,3772,3755,3756,3773,3772,3757,3773,3756,3757,3774,3773,3758,3774,3757,3758,3775,3774,3759,3775,3758,3759,3776,3775,3760,3776,3759,3760,3777,3776,3761,3777,3760,3761,3778,3777,3762,3778,3761,3762,3779,3778,3763,3779,3762,3763,3780,3779,3764,3780,3763,3764,3781,3780,3765,3781,3764,3765,3782,3781,3766,3782,3765,3766,3783,3782,3767,3783,3766,3767,3784,3783,3768,3784,3767,3768,3785,3784,3770,3786,3769,3770,3787,3786,3771,3787,3770,3771,3788,3787,3772,3788,3771,3772,3789,3788,3773,3789,3772,3773,3790,3789,3774,3790,3773,3774,3791,3790,3775,3791,3774,3775,3792,3791,3776,3792,3775,3776,3793,3792,3777,3793,3776,3777,3794,3793,3778,3794,3777,3778,3795,3794,3779,3795,3778,3779,3796,3795,3780,3796,3779,3780,3797,3796,3781,3797,3780,3781,3798,3797,3782,3798,3781,3782,3799,3798,3783,3799,3782,3783,3800,3799,3784,3800,3783,3784,3801,3800,3785,3801,3784,3785,3802,3801,3787,3803,3786,3787,3804,3803,3788,3804,3787,3788,3805,3804,3789,3805,3788,3789,3806,3805,3790,3806,3789,3790,3807,3806,3791,3807,3790,3791,3808,3807,3792,3808,3791,3792,3809,3808,3793,3809,3792,3793,3810,3809,3794,3810,3793,3794,3811,3810,3795,3811,3794,3795,3812,3811,3796,3812,3795,3796,3813,3812,3797,3813,3796,3797,3814,3813,3798,3814,3797,3798,3815,3814,3799,3815,3798,3799,3816,3815,3800,3816,3799,3800,3817,3816,3801,3817,3800,3801,3818,3817,3802,3818,3801,3802,3819,3818,3804,3820,3803,3804,3821,3820,3805,3821,3804,3805,3822,3821,3806,3822,3805,3806,3823,3822,3807,3823,3806,3807,3824,3823,3808,3824,3807,3808,3825,3824,3809,3825,3808,3809,3826,3825,3810,3826,3809,3810,3827,3826,3811,3827,3810,3811,3828,3827,3812,3828,3811,3812,3829,3828,3813,3829,3812,3813,3830,3829,3814,3830,3813,3814,3831,3830,3815,3831,3814,3815,3832,3831,3816,3832,3815,3816,3833,3832,3817,3833,3816,3817,3834,3833,3818,3834,3817,3818,3835,3834,3819,3835,3818,3819,3836,3835,3821,3837,3820,3821,3838,3837,3822,3838,3821,3822,3839,3838,3823,3839,3822,3823,3840,3839,3824,3840,3823,3824,3841,3840,3825,3841,3824,3825,3842,3841,3826,3842,3825,3826,3843,3842,3827,3843,3826,3827,3844,3843,3828,3844,3827,3828,3845,3844,3829,3845,3828,3829,3846,3845,3830,3846,3829,3830,3847,3846,3831,3847,3830,3831,3848,3847,3832,3848,3831,3832,3849,3848,3833,3849,3832,3833,3850,3849,3834,3850,3833,3834,3851,3850,3835,3851,3834,3835,3852,3851,3836,3852,3835,3836,3853,3852,3854,3837,3838,3854,3838,3839,3854,3839,3840,3854,3840,3841,3854,3841,3842,3854,3842,3843,3854,3843,3844,3854,3844,3845,3854,3845,3846,3854,3846,3847,3854,3847,3848,3854,3848,3849,3854,3849,3850,3854,3850,3851,3854,3851,3852,3854,3852,3853,3855,3857,3856,3855,3858,3857,3855,3859,3858,3855,3860,3859,3855,3861,3860,3855,3862,3861,3855,3863,3862,3855,3864,3863,3855,3865,3864,3855,3866,3865,3855,3867,3866,3855,3868,3867,3855,3869,3868,3855,3870,3869,3855,3871,3870,3855,3872,3871,3857,3873,3856,3857,3874,3873,3858,3874,3857,3858,3875,3874,3859,3875,3858,3859,3876,3875,3860,3876,3859,3860,3877,3876,3861,3877,3860,3861,3878,3877,3862,3878,3861,3862,3879,3878,3863,3879,3862,3863,3880,3879,3864,3880,3863,3864,3881,3880,3865,3881,3864,3865,3882,3881,3866,3882,3865,3866,3883,3882,3867,3883,3866,3867,3884,3883,3868,3884,3867,3868,3885,3884,3869,3885,3868,3869,3886,3885,3870,3886,3869,3870,3887,3886,3871,3887,3870,3871,3888,3887,3872,3888,3871,3872,3889,3888,3874,3890,3873,3874,3891,3890,3875,3891,3874,3875,3892,3891,3876,3892,3875,3876,3893,3892,3877,3893,3876,3877,3894,3893,3878,3894,3877,3878,3895,3894,3879,3895,3878,3879,3896,3895,3880,3896,3879,3880,3897,3896,3881,3897,3880,3881,3898,3897,3882,3898,3881,3882,3899,3898,3883,3899,3882,3883,3900,3899,3884,3900,3883,3884,3901,3900,3885,3901,3884,3885,3902,3901,3886,3902,3885,3886,3903,3902,3887,3903,3886,3887,3904,3903,3888,3904,3887,3888,3905,3904,3889,3905,3888,3889,3906,3905,3891,3907,3890,3891,3908,3907,3892,3908,3891,3892,3909,3908,3893,3909,3892,3893,3910,3909,3894,3910,3893,3894,3911,3910,3895,3911,3894,3895,3912,3911,3896,3912,3895,3896,3913,3912,3897,3913,3896,3897,3914,3913,3898,3914,3897,3898,3915,3914,3899,3915,3898,3899,3916,3915,3900,3916,3899,3900,3917,3916,3901,3917,3900,3901,3918,3917,3902,3918,3901,3902,3919,3918,3903,3919,3902,3903,3920,3919,3904,3920,3903,3904,3921,3920,3905,3921,3904,3905,3922,3921,3906,3922,3905,3906,3923,3922,3908,3924,3907,3908,3925,3924,3909,3925,3908,3909,3926,3925,3910,3926,3909,3910,3927,3926,3911,3927,3910,3911,3928,3927,3912,3928,3911,3912,3929,3928,3913,3929,3912,3913,3930,3929,3914,3930,3913,3914,3931,3930,3915,3931,3914,3915,3932,3931,3916,3932,3915,3916,3933,3932,3917,3933,3916,3917,3934,3933,3918,3934,3917,3918,3935,3934,3919,3935,3918,3919,3936,3935,3920,3936,3919,3920,3937,3936,3921,3937,3920,3921,3938,3937,3922,3938,3921,3922,3939,3938,3923,3939,3922,3923,3940,3939,3925,3941,3924,3925,3942,3941,3926,3942,3925,3926,3943,3942,3927,3943,3926,3927,3944,3943,3928,3944,3927,3928,3945,3944,3929,3945,3928,3929,3946,3945,3930,3946,3929,3930,3947,3946,3931,3947,3930,3931,3948,3947,3932,3948,3931,3932,3949,3948,3933,3949,3932,3933,3950,3949,3934,3950,3933,3934,3951,3950,3935,3951,3934,3935,3952,3951,3936,3952,3935,3936,3953,3952,3937,3953,3936,3937,3954,3953,3938,3954,3937,3938,3955,3954,3939,3955,3938,3939,3956,3955,3940,3956,3939,3940,3957,3956,3942,3958,3941,3942,3959,3958,3943,3959,3942,3943,3960,3959,3944,3960,3943,3944,3961,3960,3945,3961,3944,3945,3962,3961,3946,3962,3945,3946,3963,3962,3947,3963,3946,3947,3964,3963,3948,3964,3947,3948,3965,3964,3949,3965,3948,3949,3966,3965,3950,3966,3949,3950,3967,3966,3951,3967,3950,3951,3968,3967,3952,3968,3951,3952,3969,3968,3953,3969,3952,3953,3970,3969,3954,3970,3953,3954,3971,3970,3955,3971,3954,3955,3972,3971,3956,3972,3955,3956,3973,3972,3957,3973,3956,3957,3974,3973,3959,3975,3958,3959,3976,3975,3960,3976,3959,3960,3977,3976,3961,3977,3960,3961,3978,3977,3962,3978,3961,3962,3979,3978,3963,3979,3962,3963,3980,3979,3964,3980,3963,3964,3981,3980,3965,3981,3964,3965,3982,3981,3966,3982,3965,3966,3983,3982,3967,3983,3966,3967,3984,3983,3968,3984,3967,3968,3985,3984,3969,3985,3968,3969,3986,3985,3970,3986,3969,3970,3987,3986,3971,3987,3970,3971,3988,3987,3972,3988,3971,3972,3989,3988,3973,3989,3972,3973,3990,3989,3974,3990,3973,3974,3991,3990,3976,3992,3975,3976,3993,3992,3977,3993,3976,3977,3994,3993,3978,3994,3977,3978,3995,3994,3979,3995,3978,3979,3996,3995,3980,3996,3979,3980,3997,3996,3981,3997,3980,3981,3998,3997,3982,3998,3981,3982,3999,3998,3983,3999,3982,3983,4000,3999,3984,4000,3983,3984,4001,4000,3985,4001,3984,3985,4002,4001,3986,4002,3985,3986,4003,4002,3987,4003,3986,3987,4004,4003,3988,4004,3987,3988,4005,4004,3989,4005,3988,3989,4006,4005,3990,4006,3989,3990,4007,4006,3991,4007,3990,3991,4008,4007,3993,4009,3992,3993,4010,4009,3994,4010,3993,3994,4011,4010,3995,4011,3994,3995,4012,4011,3996,4012,3995,3996,4013,4012,3997,4013,3996,3997,4014,4013,3998,4014,3997,3998,4015,4014,3999,4015,3998,3999,4016,4015,4000,4016,3999,4000,4017,4016,4001,4017,4000,4001,4018,4017,4002,4018,4001,4002,4019,4018,4003,4019,4002,4003,4020,4019,4004,4020,4003,4004,4021,4020,4005,4021,4004,4005,4022,4021,4006,4022,4005,4006,4023,4022,4007,4023,4006,4007,4024,4023,4008,4024,4007,4008,4025,4024,4010,4026,4009,4010,4027,4026,4011,4027,4010,4011,4028,4027,4012,4028,4011,4012,4029,4028,4013,4029,4012,4013,4030,4029,4014,4030,4013,4014,4031,4030,4015,4031,4014,4015,4032,4031,4016,4032,4015,4016,4033,4032,4017,4033,4016,4017,4034,4033,4018,4034,4017,4018,4035,4034,4019,4035,4018,4019,4036,4035,4020,4036,4019,4020,4037,4036,4021,4037,4020,4021,4038,4037,4022,4038,4021,4022,4039,4038,4023,4039,4022,4023,4040,4039,4024,4040,4023,4024,4041,4040,4025,4041,4024,4025,4042,4041,4027,4043,4026,4027,4044,4043,4028,4044,4027,4028,4045,4044,4029,4045,4028,4029,4046,4045,4030,4046,4029,4030,4047,4046,4031,4047,4030,4031,4048,4047,4032,4048,4031,4032,4049,4048,4033,4049,4032,4033,4050,4049,4034,4050,4033,4034,4051,4050,4035,4051,4034,4035,4052,4051,4036,4052,4035,4036,4053,4052,4037,4053,4036,4037,4054,4053,4038,4054,4037,4038,4055,4054,4039,4055,4038,4039,4056,4055,4040,4056,4039,4040,4057,4056,4041,4057,4040,4041,4058,4057,4042,4058,4041,4042,4059,4058,4044,4060,4043,4044,4061,4060,4045,4061,4044,4045,4062,4061,4046,4062,4045,4046,4063,4062,4047,4063,4046,4047,4064,4063,4048,4064,4047,4048,4065,4064,4049,4065,4048,4049,4066,4065,4050,4066,4049,4050,4067,4066,4051,4067,4050,4051,4068,4067,4052,4068,4051,4052,4069,4068,4053,4069,4052,4053,4070,4069,4054,4070,4053,4054,4071,4070,4055,4071,4054,4055,4072,4071,4056,4072,4055,4056,4073,4072,4057,4073,4056,4057,4074,4073,4058,4074,4057,4058,4075,4074,4059,4075,4058,4059,4076,4075,4061,4077,4060,4061,4078,4077,4062,4078,4061,4062,4079,4078,4063,4079,4062,4063,4080,4079,4064,4080,4063,4064,4081,4080,4065,4081,4064,4065,4082,4081,4066,4082,4065,4066,4083,4082,4067,4083,4066,4067,4084,4083,4068,4084,4067,4068,4085,4084,4069,4085,4068,4069,4086,4085,4070,4086,4069,4070,4087,4086,4071,4087,4070,4071,4088,4087,4072,4088,4071,4072,4089,4088,4073,4089,4072,4073,4090,4089,4074,4090,4073,4074,4091,4090,4075,4091,4074,4075,4092,4091,4076,4092,4075,4076,4093,4092,4078,4094,4077,4078,4095,4094,4079,4095,4078,4079,4096,4095,4080,4096,4079,4080,4097,4096,4081,4097,4080,4081,4098,4097,4082,4098,4081,4082,4099,4098,4083,4099,4082,4083,4100,4099,4084,4100,4083,4084,4101,4100,4085,4101,4084,4085,4102,4101,4086,4102,4085,4086,4103,4102,4087,4103,4086,4087,4104,4103,4088,4104,4087,4088,4105,4104,4089,4105,4088,4089,4106,4105,4090,4106,4089,4090,4107,4106,4091,4107,4090,4091,4108,4107,4092,4108,4091,4092,4109,4108,4093,4109,4092,4093,4110,4109,4111,4094,4095,4111,4095,4096,4111,4096,4097,4111,4097,4098,4111,4098,4099,4111,4099,4100,4111,4100,4101,4111,4101,4102,4111,4102,4103,4111,4103,4104,4111,4104,4105,4111,4105,4106,4111,4106,4107,4111,4107,4108,4111,4108,4109,4111,4109,4110,4112,4114,4113,4112,4115,4114,4112,4116,4115,4112,4117,4116,4112,4118,4117,4112,4119,4118,4112,4120,4119,4112,4121,4120,4112,4122,4121,4112,4123,4122,4112,4124,4123,4112,4125,4124,4112,4126,4125,4112,4127,4126,4112,4128,4127,4112,4129,4128,4114,4130,4113,4114,4131,4130,4115,4131,4114,4115,4132,4131,4116,4132,4115,4116,4133,4132,4117,4133,4116,4117,4134,4133,4118,4134,4117,4118,4135,4134,4119,4135,4118,4119,4136,4135,4120,4136,4119,4120,4137,4136,4121,4137,4120,4121,4138,4137,4122,4138,4121,4122,4139,4138,4123,4139,4122,4123,4140,4139,4124,4140,4123,4124,4141,4140,4125,4141,4124,4125,4142,4141,4126,4142,4125,4126,4143,4142,4127,4143,4126,4127,4144,4143,4128,4144,4127,4128,4145,4144,4129,4145,4128,4129,4146,4145,4131,4147,4130,4131,4148,4147,4132,4148,4131,4132,4149,4148,4133,4149,4132,4133,4150,4149,4134,4150,4133,4134,4151,4150,4135,4151,4134,4135,4152,4151,4136,4152,4135,4136,4153,4152,4137,4153,4136,4137,4154,4153,4138,4154,4137,4138,4155,4154,4139,4155,4138,4139,4156,4155,4140,4156,4139,4140,4157,4156,4141,4157,4140,4141,4158,4157,4142,4158,4141,4142,4159,4158,4143,4159,4142,4143,4160,4159,4144,4160,4143,4144,4161,4160,4145,4161,4144,4145,4162,4161,4146,4162,4145,4146,4163,4162,4148,4164,4147,4148,4165,4164,4149,4165,4148,4149,4166,4165,4150,4166,4149,4150,4167,4166,4151,4167,4150,4151,4168,4167,4152,4168,4151,4152,4169,4168,4153,4169,4152,4153,4170,4169,4154,4170,4153,4154,4171,4170,4155,4171,4154,4155,4172,4171,4156,4172,4155,4156,4173,4172,4157,4173,4156,4157,4174,4173,4158,4174,4157,4158,4175,4174,4159,4175,4158,4159,4176,4175,4160,4176,4159,4160,4177,4176,4161,4177,4160,4161,4178,4177,4162,4178,4161,4162,4179,4178,4163,4179,4162,4163,4180,4179,4165,4181,4164,4165,4182,4181,4166,4182,4165,4166,4183,4182,4167,4183,4166,4167,4184,4183,4168,4184,4167,4168,4185,4184,4169,4185,4168,4169,4186,4185,4170,4186,4169,4170,4187,4186,4171,4187,4170,4171,4188,4187,4172,4188,4171,4172,4189,4188,4173,4189,4172,4173,4190,4189,4174,4190,4173,4174,4191,4190,4175,4191,4174,4175,4192,4191,4176,4192,4175,4176,4193,4192,4177,4193,4176,4177,4194,4193,4178,4194,4177,4178,4195,4194,4179,4195,4178,4179,4196,4195,4180,4196,4179,4180,4197,4196,4182,4198,4181,4182,4199,4198,4183,4199,4182,4183,4200,4199,4184,4200,4183,4184,4201,4200,4185,4201,4184,4185,4202,4201,4186,4202,4185,4186,4203,4202,4187,4203,4186,4187,4204,4203,4188,4204,4187,4188,4205,4204,4189,4205,4188,4189,4206,4205,4190,4206,4189,4190,4207,4206,4191,4207,4190,4191,4208,4207,4192,4208,4191,4192,4209,4208,4193,4209,4192,4193,4210,4209,4194,4210,4193,4194,4211,4210,4195,4211,4194,4195,4212,4211,4196,4212,4195,4196,4213,4212,4197,4213,4196,4197,4214,4213,4199,4215,4198,4199,4216,4215,4200,4216,4199,4200,4217,4216,4201,4217,4200,4201,4218,4217,4202,4218,4201,4202,4219,4218,4203,4219,4202,4203,4220,4219,4204,4220,4203,4204,4221,4220,4205,4221,4204,4205,4222,4221,4206,4222,4205,4206,4223,4222,4207,4223,4206,4207,4224,4223,4208,4224,4207,4208,4225,4224,4209,4225,4208,4209,4226,4225,4210,4226,4209,4210,4227,4226,4211,4227,4210,4211,4228,4227,4212,4228,4211,4212,4229,4228,4213,4229,4212,4213,4230,4229,4214,4230,4213,4214,4231,4230,4216,4232,4215,4216,4233,4232,4217,4233,4216,4217,4234,4233,4218,4234,4217,4218,4235,4234,4219,4235,4218,4219,4236,4235,4220,4236,4219,4220,4237,4236,4221,4237,4220,4221,4238,4237,4222,4238,4221,4222,4239,4238,4223,4239,4222,4223,4240,4239,4224,4240,4223,4224,4241,4240,4225,4241,4224,4225,4242,4241,4226,4242,4225,4226,4243,4242,4227,4243,4226,4227,4244,4243,4228,4244,4227,4228,4245,4244,4229,4245,4228,4229,4246,4245,4230,4246,4229,4230,4247,4246,4231,4247,4230,4231,4248,4247,4233,4249,4232,4233,4250,4249,4234,4250,4233,4234,4251,4250,4235,4251,4234,4235,4252,4251,4236,4252,4235,4236,4253,4252,4237,4253,4236,4237,4254,4253,4238,4254,4237,4238,4255,4254,4239,4255,4238,4239,4256,4255,4240,4256,4239,4240,4257,4256,4241,4257,4240,4241,4258,4257,4242,4258,4241,4242,4259,4258,4243,4259,4242,4243,4260,4259,4244,4260,4243,4244,4261,4260,4245,4261,4244,4245,4262,4261,4246,4262,4245,4246,4263,4262,4247,4263,4246,4247,4264,4263,4248,4264,4247,4248,4265,4264,4250,4266,4249,4250,4267,4266,4251,4267,4250,4251,4268,4267,4252,4268,4251,4252,4269,4268,4253,4269,4252,4253,4270,4269,4254,4270,4253,4254,4271,4270,4255,4271,4254,4255,4272,4271,4256,4272,4255,4256,4273,4272,4257,4273,4256,4257,4274,4273,4258,4274,4257,4258,4275,4274,4259,4275,4258,4259,4276,4275,4260,4276,4259,4260,4277,4276,4261,4277,4260,4261,4278,4277,4262,4278,4261,4262,4279,4278,4263,4279,4262,4263,4280,4279,4264,4280,4263,4264,4281,4280,4265,4281,4264,4265,4282,4281,4267,4283,4266,4267,4284,4283,4268,4284,4267,4268,4285,4284,4269,4285,4268,4269,4286,4285,4270,4286,4269,4270,4287,4286,4271,4287,4270,4271,4288,4287,4272,4288,4271,4272,4289,4288,4273,4289,4272,4273,4290,4289,4274,4290,4273,4274,4291,4290,4275,4291,4274,4275,4292,4291,4276,4292,4275,4276,4293,4292,4277,4293,4276,4277,4294,4293,4278,4294,4277,4278,4295,4294,4279,4295,4278,4279,4296,4295,4280,4296,4279,4280,4297,4296,4281,4297,4280,4281,4298,4297,4282,4298,4281,4282,4299,4298,4284,4300,4283,4284,4301,4300,4285,4301,4284,4285,4302,4301,4286,4302,4285,4286,4303,4302,4287,4303,4286,4287,4304,4303,4288,4304,4287,4288,4305,4304,4289,4305,4288,4289,4306,4305,4290,4306,4289,4290,4307,4306,4291,4307,4290,4291,4308,4307,4292,4308,4291,4292,4309,4308,4293,4309,4292,4293,4310,4309,4294,4310,4293,4294,4311,4310,4295,4311,4294,4295,4312,4311,4296,4312,4295,4296,4313,4312,4297,4313,4296,4297,4314,4313,4298,4314,4297,4298,4315,4314,4299,4315,4298,4299,4316,4315,4301,4317,4300,4301,4318,4317,4302,4318,4301,4302,4319,4318,4303,4319,4302,4303,4320,4319,4304,4320,4303,4304,4321,4320,4305,4321,4304,4305,4322,4321,4306,4322,4305,4306,4323,4322,4307,4323,4306,4307,4324,4323,4308,4324,4307,4308,4325,4324,4309,4325,4308,4309,4326,4325,4310,4326,4309,4310,4327,4326,4311,4327,4310,4311,4328,4327,4312,4328,4311,4312,4329,4328,4313,4329,4312,4313,4330,4329,4314,4330,4313,4314,4331,4330,4315,4331,4314,4315,4332,4331,4316,4332,4315,4316,4333,4332,4318,4334,4317,4318,4335,4334,4319,4335,4318,4319,4336,4335,4320,4336,4319,4320,4337,4336,4321,4337,4320,4321,4338,4337,4322,4338,4321,4322,4339,4338,4323,4339,4322,4323,4340,4339,4324,4340,4323,4324,4341,4340,4325,4341,4324,4325,4342,4341,4326,4342,4325,4326,4343,4342,4327,4343,4326,4327,4344,4343,4328,4344,4327,4328,4345,4344,4329,4345,4328,4329,4346,4345,4330,4346,4329,4330,4347,4346,4331,4347,4330,4331,4348,4347,4332,4348,4331,4332,4349,4348,4333,4349,4332,4333,4350,4349,4335,4351,4334,4335,4352,4351,4336,4352,4335,4336,4353,4352,4337,4353,4336,4337,4354,4353,4338,4354,4337,4338,4355,4354,4339,4355,4338,4339,4356,4355,4340,4356,4339,4340,4357,4356,4341,4357,4340,4341,4358,4357,4342,4358,4341,4342,4359,4358,4343,4359,4342,4343,4360,4359,4344,4360,4343,4344,4361,4360,4345,4361,4344,4345,4362,4361,4346,4362,4345,4346,4363,4362,4347,4363,4346,4347,4364,4363,4348,4364,4347,4348,4365,4364,4349,4365,4348,4349,4366,4365,4350,4366,4349,4350,4367,4366,4368,4351,4352,4368,4352,4353,4368,4353,4354,4368,4354,4355,4368,4355,4356,4368,4356,4357,4368,4357,4358,4368,4358,4359,4368,4359,4360,4368,4360,4361,4368,4361,4362,4368,4362,4363,4368,4363,4364,4368,4364,4365,4368,4365,4366,4368,4366,4367,4369,4371,4370,4369,4372,4371,4369,4373,4372,4369,4374,4373,4369,4375,4374,4369,4376,4375,4369,4377,4376,4369,4378,4377,4369,4379,4378,4369,4380,4379,4369,4381,4380,4369,4382,4381,4369,4383,4382,4369,4384,4383,4369,4385,4384,4369,4386,4385,4371,4387,4370,4371,4388,4387,4372,4388,4371,4372,4389,4388,4373,4389,4372,4373,4390,4389,4374,4390,4373,4374,4391,4390,4375,4391,4374,4375,4392,4391,4376,4392,4375,4376,4393,4392,4377,4393,4376,4377,4394,4393,4378,4394,4377,4378,4395,4394,4379,4395,4378,4379,4396,4395,4380,4396,4379,4380,4397,4396,4381,4397,4380,4381,4398,4397,4382,4398,4381,4382,4399,4398,4383,4399,4382,4383,4400,4399,4384,4400,4383,4384,4401,4400,4385,4401,4384,4385,4402,4401,4386,4402,4385,4386,4403,4402,4388,4404,4387,4388,4405,4404,4389,4405,4388,4389,4406,4405,4390,4406,4389,4390,4407,4406,4391,4407,4390,4391,4408,4407,4392,4408,4391,4392,4409,4408,4393,4409,4392,4393,4410,4409,4394,4410,4393,4394,4411,4410,4395,4411,4394,4395,4412,4411,4396,4412,4395,4396,4413,4412,4397,4413,4396,4397,4414,4413,4398,4414,4397,4398,4415,4414,4399,4415,4398,4399,4416,4415,4400,4416,4399,4400,4417,4416,4401,4417,4400,4401,4418,4417,4402,4418,4401,4402,4419,4418,4403,4419,4402,4403,4420,4419,4405,4421,4404,4405,4422,4421,4406,4422,4405,4406,4423,4422,4407,4423,4406,4407,4424,4423,4408,4424,4407,4408,4425,4424,4409,4425,4408,4409,4426,4425,4410,4426,4409,4410,4427,4426,4411,4427,4410,4411,4428,4427,4412,4428,4411,4412,4429,4428,4413,4429,4412,4413,4430,4429,4414,4430,4413,4414,4431,4430,4415,4431,4414,4415,4432,4431,4416,4432,4415,4416,4433,4432,4417,4433,4416,4417,4434,4433,4418,4434,4417,4418,4435,4434,4419,4435,4418,4419,4436,4435,4420,4436,4419,4420,4437,4436,4422,4438,4421,4422,4439,4438,4423,4439,4422,4423,4440,4439,4424,4440,4423,4424,4441,4440,4425,4441,4424,4425,4442,4441,4426,4442,4425,4426,4443,4442,4427,4443,4426,4427,4444,4443,4428,4444,4427,4428,4445,4444,4429,4445,4428,4429,4446,4445,4430,4446,4429,4430,4447,4446,4431,4447,4430,4431,4448,4447,4432,4448,4431,4432,4449,4448,4433,4449,4432,4433,4450,4449,4434,4450,4433,4434,4451,4450,4435,4451,4434,4435,4452,4451,4436,4452,4435,4436,4453,4452,4437,4453,4436,4437,4454,4453,4439,4455,4438,4439,4456,4455,4440,4456,4439,4440,4457,4456,4441,4457,4440,4441,4458,4457,4442,4458,4441,4442,4459,4458,4443,4459,4442,4443,4460,4459,4444,4460,4443,4444,4461,4460,4445,4461,4444,4445,4462,4461,4446,4462,4445,4446,4463,4462,4447,4463,4446,4447,4464,4463,4448,4464,4447,4448,4465,4464,4449,4465,4448,4449,4466,4465,4450,4466,4449,4450,4467,4466,4451,4467,4450,4451,4468,4467,4452,4468,4451,4452,4469,4468,4453,4469,4452,4453,4470,4469,4454,4470,4453,4454,4471,4470,4456,4472,4455,4456,4473,4472,4457,4473,4456,4457,4474,4473,4458,4474,4457,4458,4475,4474,4459,4475,4458,4459,4476,4475,4460,4476,4459,4460,4477,4476,4461,4477,4460,4461,4478,4477,4462,4478,4461,4462,4479,4478,4463,4479,4462,4463,4480,4479,4464,4480,4463,4464,4481,4480,4465,4481,4464,4465,4482,4481,4466,4482,4465,4466,4483,4482,4467,4483,4466,4467,4484,4483,4468,4484,4467,4468,4485,4484,4469,4485,4468,4469,4486,4485,4470,4486,4469,4470,4487,4486,4471,4487,4470,4471,4488,4487,4473,4489,4472,4473,4490,4489,4474,4490,4473,4474,4491,4490,4475,4491,4474,4475,4492,4491,4476,4492,4475,4476,4493,4492,4477,4493,4476,4477,4494,4493,4478,4494,4477,4478,4495,4494,4479,4495,4478,4479,4496,4495,4480,4496,4479,4480,4497,4496,4481,4497,4480,4481,4498,4497,4482,4498,4481,4482,4499,4498,4483,4499,4482,4483,4500,4499,4484,4500,4483,4484,4501,4500,4485,4501,4484,4485,4502,4501,4486,4502,4485,4486,4503,4502,4487,4503,4486,4487,4504,4503,4488,4504,4487,4488,4505,4504,4490,4506,4489,4490,4507,4506,4491,4507,4490,4491,4508,4507,4492,4508,4491,4492,4509,4508,4493,4509,4492,4493,4510,4509,4494,4510,4493,4494,4511,4510,4495,4511,4494,4495,4512,4511,4496,4512,4495,4496,4513,4512,4497,4513,4496,4497,4514,4513,4498,4514,4497,4498,4515,4514,4499,4515,4498,4499,4516,4515,4500,4516,4499,4500,4517,4516,4501,4517,4500,4501,4518,4517,4502,4518,4501,4502,4519,4518,4503,4519,4502,4503,4520,4519,4504,4520,4503,4504,4521,4520,4505,4521,4504,4505,4522,4521,4507,4523,4506,4507,4524,4523,4508,4524,4507,4508,4525,4524,4509,4525,4508,4509,4526,4525,4510,4526,4509,4510,4527,4526,4511,4527,4510,4511,4528,4527,4512,4528,4511,4512,4529,4528,4513,4529,4512,4513,4530,4529,4514,4530,4513,4514,4531,4530,4515,4531,4514,4515,4532,4531,4516,4532,4515,4516,4533,4532,4517,4533,4516,4517,4534,4533,4518,4534,4517,4518,4535,4534,4519,4535,4518,4519,4536,4535,4520,4536,4519,4520,4537,4536,4521,4537,4520,4521,4538,4537,4522,4538,4521,4522,4539,4538,4524,4540,4523,4524,4541,4540,4525,4541,4524,4525,4542,4541,4526,4542,4525,4526,4543,4542,4527,4543,4526,4527,4544,4543,4528,4544,4527,4528,4545,4544,4529,4545,4528,4529,4546,4545,4530,4546,4529,4530,4547,4546,4531,4547,4530,4531,4548,4547,4532,4548,4531,4532,4549,4548,4533,4549,4532,4533,4550,4549,4534,4550,4533,4534,4551,4550,4535,4551,4534,4535,4552,4551,4536,4552,4535,4536,4553,4552,4537,4553,4536,4537,4554,4553,4538,4554,4537,4538,4555,4554,4539,4555,4538,4539,4556,4555,4541,4557,4540,4541,4558,4557,4542,4558,4541,4542,4559,4558,4543,4559,4542,4543,4560,4559,4544,4560,4543,4544,4561,4560,4545,4561,4544,4545,4562,4561,4546,4562,4545,4546,4563,4562,4547,4563,4546,4547,4564,4563,4548,4564,4547,4548,4565,4564,4549,4565,4548,4549,4566,4565,4550,4566,4549,4550,4567,4566,4551,4567,4550,4551,4568,4567,4552,4568,4551,4552,4569,4568,4553,4569,4552,4553,4570,4569,4554,4570,4553,4554,4571,4570,4555,4571,4554,4555,4572,4571,4556,4572,4555,4556,4573,4572,4558,4574,4557,4558,4575,4574,4559,4575,4558,4559,4576,4575,4560,4576,4559,4560,4577,4576,4561,4577,4560,4561,4578,4577,4562,4578,4561,4562,4579,4578,4563,4579,4562,4563,4580,4579,4564,4580,4563,4564,4581,4580,4565,4581,4564,4565,4582,4581,4566,4582,4565,4566,4583,4582,4567,4583,4566,4567,4584,4583,4568,4584,4567,4568,4585,4584,4569,4585,4568,4569,4586,4585,4570,4586,4569,4570,4587,4586,4571,4587,4570,4571,4588,4587,4572,4588,4571,4572,4589,4588,4573,4589,4572,4573,4590,4589,4575,4591,4574,4575,4592,4591,4576,4592,4575,4576,4593,4592,4577,4593,4576,4577,4594,4593,4578,4594,4577,4578,4595,4594,4579,4595,4578,4579,4596,4595,4580,4596,4579,4580,4597,4596,4581,4597,4580,4581,4598,4597,4582,4598,4581,4582,4599,4598,4583,4599,4582,4583,4600,4599,4584,4600,4583,4584,4601,4600,4585,4601,4584,4585,4602,4601,4586,4602,4585,4586,4603,4602,4587,4603,4586,4587,4604,4603,4588,4604,4587,4588,4605,4604,4589,4605,4588,4589,4606,4605,4590,4606,4589,4590,4607,4606,4592,4608,4591,4592,4609,4608,4593,4609,4592,4593,4610,4609,4594,4610,4593,4594,4611,4610,4595,4611,4594,4595,4612,4611,4596,4612,4595,4596,4613,4612,4597,4613,4596,4597,4614,4613,4598,4614,4597,4598,4615,4614,4599,4615,4598,4599,4616,4615,4600,4616,4599,4600,4617,4616,4601,4617,4600,4601,4618,4617,4602,4618,4601,4602,4619,4618,4603,4619,4602,4603,4620,4619,4604,4620,4603,4604,4621,4620,4605,4621,4604,4605,4622,4621,4606,4622,4605,4606,4623,4622,4607,4623,4606,4607,4624,4623,4625,4608,4609,4625,4609,4610,4625,4610,4611,4625,4611,4612,4625,4612,4613,4625,4613,4614,4625,4614,4615,4625,4615,4616,4625,4616,4617,4625,4617,4618,4625,4618,4619,4625,4619,4620,4625,4620,4621,4625,4621,4622,4625,4622,4623,4625,4623,4624,4626,4628,4627,4626,4629,4628,4626,4630,4629,4626,4631,4630,4626,4632,4631,4626,4633,4632,4626,4634,4633,4626,4635,4634,4626,4636,4635,4626,4637,4636,4626,4638,4637,4626,4639,4638,4626,4640,4639,4626,4641,4640,4626,4642,4641,4626,4643,4642,4628,4644,4627,4628,4645,4644,4629,4645,4628,4629,4646,4645,4630,4646,4629,4630,4647,4646,4631,4647,4630,4631,4648,4647,4632,4648,4631,4632,4649,4648,4633,4649,4632,4633,4650,4649,4634,4650,4633,4634,4651,4650,4635,4651,4634,4635,4652,4651,4636,4652,4635,4636,4653,4652,4637,4653,4636,4637,4654,4653,4638,4654,4637,4638,4655,4654,4639,4655,4638,4639,4656,4655,4640,4656,4639,4640,4657,4656,4641,4657,4640,4641,4658,4657,4642,4658,4641,4642,4659,4658,4643,4659,4642,4643,4660,4659,4645,4661,4644,4645,4662,4661,4646,4662,4645,4646,4663,4662,4647,4663,4646,4647,4664,4663,4648,4664,4647,4648,4665,4664,4649,4665,4648,4649,4666,4665,4650,4666,4649,4650,4667,4666,4651,4667,4650,4651,4668,4667,4652,4668,4651,4652,4669,4668,4653,4669,4652,4653,4670,4669,4654,4670,4653,4654,4671,4670,4655,4671,4654,4655,4672,4671,4656,4672,4655,4656,4673,4672,4657,4673,4656,4657,4674,4673,4658,4674,4657,4658,4675,4674,4659,4675,4658,4659,4676,4675,4660,4676,4659,4660,4677,4676,4662,4678,4661,4662,4679,4678,4663,4679,4662,4663,4680,4679,4664,4680,4663,4664,4681,4680,4665,4681,4664,4665,4682,4681,4666,4682,4665,4666,4683,4682,4667,4683,4666,4667,4684,4683,4668,4684,4667,4668,4685,4684,4669,4685,4668,4669,4686,4685,4670,4686,4669,4670,4687,4686,4671,4687,4670,4671,4688,4687,4672,4688,4671,4672,4689,4688,4673,4689,4672,4673,4690,4689,4674,4690,4673,4674,4691,4690,4675,4691,4674,4675,4692,4691,4676,4692,4675,4676,4693,4692,4677,4693,4676,4677,4694,4693,4679,4695,4678,4679,4696,4695,4680,4696,4679,4680,4697,4696,4681,4697,4680,4681,4698,4697,4682,4698,4681,4682,4699,4698,4683,4699,4682,4683,4700,4699,4684,4700,4683,4684,4701,4700,4685,4701,4684,4685,4702,4701,4686,4702,4685,4686,4703,4702,4687,4703,4686,4687,4704,4703,4688,4704,4687,4688,4705,4704,4689,4705,4688,4689,4706,4705,4690,4706,4689,4690,4707,4706,4691,4707,4690,4691,4708,4707,4692,4708,4691,4692,4709,4708,4693,4709,4692,4693,4710,4709,4694,4710,4693,4694,4711,4710,4696,4712,4695,4696,4713,4712,4697,4713,4696,4697,4714,4713,4698,4714,4697,4698,4715,4714,4699,4715,4698,4699,4716,4715,4700,4716,4699,4700,4717,4716,4701,4717,4700,4701,4718,4717,4702,4718,4701,4702,4719,4718,4703,4719,4702,4703,4720,4719,4704,4720,4703,4704,4721,4720,4705,4721,4704,4705,4722,4721,4706,4722,4705,4706,4723,4722,4707,4723,4706,4707,4724,4723,4708,4724,4707,4708,4725,4724,4709,4725,4708,4709,4726,4725,4710,4726,4709,4710,4727,4726,4711,4727,4710,4711,4728,4727,4713,4729,4712,4713,4730,4729,4714,4730,4713,4714,4731,4730,4715,4731,4714,4715,4732,4731,4716,4732,4715,4716,4733,4732,4717,4733,4716,4717,4734,4733,4718,4734,4717,4718,4735,4734,4719,4735,4718,4719,4736,4735,4720,4736,4719,4720,4737,4736,4721,4737,4720,4721,4738,4737,4722,4738,4721,4722,4739,4738,4723,4739,4722,4723,4740,4739,4724,4740,4723,4724,4741,4740,4725,4741,4724,4725,4742,4741,4726,4742,4725,4726,4743,4742,4727,4743,4726,4727,4744,4743,4728,4744,4727,4728,4745,4744,4730,4746,4729,4730,4747,4746,4731,4747,4730,4731,4748,4747,4732,4748,4731,4732,4749,4748,4733,4749,4732,4733,4750,4749,4734,4750,4733,4734,4751,4750,4735,4751,4734,4735,4752,4751,4736,4752,4735,4736,4753,4752,4737,4753,4736,4737,4754,4753,4738,4754,4737,4738,4755,4754,4739,4755,4738,4739,4756,4755,4740,4756,4739,4740,4757,4756,4741,4757,4740,4741,4758,4757,4742,4758,4741,4742,4759,4758,4743,4759,4742,4743,4760,4759,4744,4760,4743,4744,4761,4760,4745,4761,4744,4745,4762,4761,4747,4763,4746,4747,4764,4763,4748,4764,4747,4748,4765,4764,4749,4765,4748,4749,4766,4765,4750,4766,4749,4750,4767,4766,4751,4767,4750,4751,4768,4767,4752,4768,4751,4752,4769,4768,4753,4769,4752,4753,4770,4769,4754,4770,4753,4754,4771,4770,4755,4771,4754,4755,4772,4771,4756,4772,4755,4756,4773,4772,4757,4773,4756,4757,4774,4773,4758,4774,4757,4758,4775,4774,4759,4775,4758,4759,4776,4775,4760,4776,4759,4760,4777,4776,4761,4777,4760,4761,4778,4777,4762,4778,4761,4762,4779,4778,4764,4780,4763,4764,4781,4780,4765,4781,4764,4765,4782,4781,4766,4782,4765,4766,4783,4782,4767,4783,4766,4767,4784,4783,4768,4784,4767,4768,4785,4784,4769,4785,4768,4769,4786,4785,4770,4786,4769,4770,4787,4786,4771,4787,4770,4771,4788,4787,4772,4788,4771,4772,4789,4788,4773,4789,4772,4773,4790,4789,4774,4790,4773,4774,4791,4790,4775,4791,4774,4775,4792,4791,4776,4792,4775,4776,4793,4792,4777,4793,4776,4777,4794,4793,4778,4794,4777,4778,4795,4794,4779,4795,4778,4779,4796,4795,4781,4797,4780,4781,4798,4797,4782,4798,4781,4782,4799,4798,4783,4799,4782,4783,4800,4799,4784,4800,4783,4784,4801,4800,4785,4801,4784,4785,4802,4801,4786,4802,4785,4786,4803,4802,4787,4803,4786,4787,4804,4803,4788,4804,4787,4788,4805,4804,4789,4805,4788,4789,4806,4805,4790,4806,4789,4790,4807,4806,4791,4807,4790,4791,4808,4807,4792,4808,4791,4792,4809,4808,4793,4809,4792,4793,4810,4809,4794,4810,4793,4794,4811,4810,4795,4811,4794,4795,4812,4811,4796,4812,4795,4796,4813,4812,4798,4814,4797,4798,4815,4814,4799,4815,4798,4799,4816,4815,4800,4816,4799,4800,4817,4816,4801,4817,4800,4801,4818,4817,4802,4818,4801,4802,4819,4818,4803,4819,4802,4803,4820,4819,4804,4820,4803,4804,4821,4820,4805,4821,4804,4805,4822,4821,4806,4822,4805,4806,4823,4822,4807,4823,4806,4807,4824,4823,4808,4824,4807,4808,4825,4824,4809,4825,4808,4809,4826,4825,4810,4826,4809,4810,4827,4826,4811,4827,4810,4811,4828,4827,4812,4828,4811,4812,4829,4828,4813,4829,4812,4813,4830,4829,4815,4831,4814,4815,4832,4831,4816,4832,4815,4816,4833,4832,4817,4833,4816,4817,4834,4833,4818,4834,4817,4818,4835,4834,4819,4835,4818,4819,4836,4835,4820,4836,4819,4820,4837,4836,4821,4837,4820,4821,4838,4837,4822,4838,4821,4822,4839,4838,4823,4839,4822,4823,4840,4839,4824,4840,4823,4824,4841,4840,4825,4841,4824,4825,4842,4841,4826,4842,4825,4826,4843,4842,4827,4843,4826,4827,4844,4843,4828,4844,4827,4828,4845,4844,4829,4845,4828,4829,4846,4845,4830,4846,4829,4830,4847,4846,4832,4848,4831,4832,4849,4848,4833,4849,4832,4833,4850,4849,4834,4850,4833,4834,4851,4850,4835,4851,4834,4835,4852,4851,4836,4852,4835,4836,4853,4852,4837,4853,4836,4837,4854,4853,4838,4854,4837,4838,4855,4854,4839,4855,4838,4839,4856,4855,4840,4856,4839,4840,4857,4856,4841,4857,4840,4841,4858,4857,4842,4858,4841,4842,4859,4858,4843,4859,4842,4843,4860,4859,4844,4860,4843,4844,4861,4860,4845,4861,4844,4845,4862,4861,4846,4862,4845,4846,4863,4862,4847,4863,4846,4847,4864,4863,4849,4865,4848,4849,4866,4865,4850,4866,4849,4850,4867,4866,4851,4867,4850,4851,4868,4867,4852,4868,4851,4852,4869,4868,4853,4869,4852,4853,4870,4869,4854,4870,4853,4854,4871,4870,4855,4871,4854,4855,4872,4871,4856,4872,4855,4856,4873,4872,4857,4873,4856,4857,4874,4873,4858,4874,4857,4858,4875,4874,4859,4875,4858,4859,4876,4875,4860,4876,4859,4860,4877,4876,4861,4877,4860,4861,4878,4877,4862,4878,4861,4862,4879,4878,4863,4879,4862,4863,4880,4879,4864,4880,4863,4864,4881,4880,4882,4865,4866,4882,4866,4867,4882,4867,4868,4882,4868,4869,4882,4869,4870,4882,4870,4871,4882,4871,4872,4882,4872,4873,4882,4873,4874,4882,4874,4875,4882,4875,4876,4882,4876,4877,4882,4877,4878,4882,4878,4879,4882,4879,4880,4882,4880,4881,4883,4885,4884,4883,4886,4885,4883,4887,4886,4883,4888,4887,4883,4889,4888,4883,4890,4889,4883,4891,4890,4883,4892,4891,4883,4893,4892,4883,4894,4893,4883,4895,4894,4883,4896,4895,4883,4897,4896,4883,4898,4897,4883,4899,4898,4883,4900,4899,4885,4901,4884,4885,4902,4901,4886,4902,4885,4886,4903,4902,4887,4903,4886,4887,4904,4903,4888,4904,4887,4888,4905,4904,4889,4905,4888,4889,4906,4905,4890,4906,4889,4890,4907,4906,4891,4907,4890,4891,4908,4907,4892,4908,4891,4892,4909,4908,4893,4909,4892,4893,4910,4909,4894,4910,4893,4894,4911,4910,4895,4911,4894,4895,4912,4911,4896,4912,4895,4896,4913,4912,4897,4913,4896,4897,4914,4913,4898,4914,4897,4898,4915,4914,4899,4915,4898,4899,4916,4915,4900,4916,4899,4900,4917,4916,4902,4918,4901,4902,4919,4918,4903,4919,4902,4903,4920,4919,4904,4920,4903,4904,4921,4920,4905,4921,4904,4905,4922,4921,4906,4922,4905,4906,4923,4922,4907,4923,4906,4907,4924,4923,4908,4924,4907,4908,4925,4924,4909,4925,4908,4909,4926,4925,4910,4926,4909,4910,4927,4926,4911,4927,4910,4911,4928,4927,4912,4928,4911,4912,4929,4928,4913,4929,4912,4913,4930,4929,4914,4930,4913,4914,4931,4930,4915,4931,4914,4915,4932,4931,4916,4932,4915,4916,4933,4932,4917,4933,4916,4917,4934,4933,4919,4935,4918,4919,4936,4935,4920,4936,4919,4920,4937,4936,4921,4937,4920,4921,4938,4937,4922,4938,4921,4922,4939,4938,4923,4939,4922,4923,4940,4939,4924,4940,4923,4924,4941,4940,4925,4941,4924,4925,4942,4941,4926,4942,4925,4926,4943,4942,4927,4943,4926,4927,4944,4943,4928,4944,4927,4928,4945,4944,4929,4945,4928,4929,4946,4945,4930,4946,4929,4930,4947,4946,4931,4947,4930,4931,4948,4947,4932,4948,4931,4932,4949,4948,4933,4949,4932,4933,4950,4949,4934,4950,4933,4934,4951,4950,4936,4952,4935,4936,4953,4952,4937,4953,4936,4937,4954,4953,4938,4954,4937,4938,4955,4954,4939,4955,4938,4939,4956,4955,4940,4956,4939,4940,4957,4956,4941,4957,4940,4941,4958,4957,4942,4958,4941,4942,4959,4958,4943,4959,4942,4943,4960,4959,4944,4960,4943,4944,4961,4960,4945,4961,4944,4945,4962,4961,4946,4962,4945,4946,4963,4962,4947,4963,4946,4947,4964,4963,4948,4964,4947,4948,4965,4964,4949,4965,4948,4949,4966,4965,4950,4966,4949,4950,4967,4966,4951,4967,4950,4951,4968,4967,4953,4969,4952,4953,4970,4969,4954,4970,4953,4954,4971,4970,4955,4971,4954,4955,4972,4971,4956,4972,4955,4956,4973,4972,4957,4973,4956,4957,4974,4973,4958,4974,4957,4958,4975,4974,4959,4975,4958,4959,4976,4975,4960,4976,4959,4960,4977,4976,4961,4977,4960,4961,4978,4977,4962,4978,4961,4962,4979,4978,4963,4979,4962,4963,4980,4979,4964,4980,4963,4964,4981,4980,4965,4981,4964,4965,4982,4981,4966,4982,4965,4966,4983,4982,4967,4983,4966,4967,4984,4983,4968,4984,4967,4968,4985,4984,4970,4986,4969,4970,4987,4986,4971,4987,4970,4971,4988,4987,4972,4988,4971,4972,4989,4988,4973,4989,4972,4973,4990,4989,4974,4990,4973,4974,4991,4990,4975,4991,4974,4975,4992,4991,4976,4992,4975,4976,4993,4992,4977,4993,4976,4977,4994,4993,4978,4994,4977,4978,4995,4994,4979,4995,4978,4979,4996,4995,4980,4996,4979,4980,4997,4996,4981,4997,4980,4981,4998,4997,4982,4998,4981,4982,4999,4998,4983,4999,4982,4983,5000,4999,4984,5000,4983,4984,5001,5000,4985,5001,4984,4985,5002,5001,4987,5003,4986,4987,5004,5003,4988,5004,4987,4988,5005,5004,4989,5005,4988,4989,5006,5005,4990,5006,4989,4990,5007,5006,4991,5007,4990,4991,5008,5007,4992,5008,4991,4992,5009,5008,4993,5009,4992,4993,5010,5009,4994,5010,4993,4994,5011,5010,4995,5011,4994,4995,5012,5011,4996,5012,4995,4996,5013,5012,4997,5013,4996,4997,5014,5013,4998,5014,4997,4998,5015,5014,4999,5015,4998,4999,5016,5015,5000,5016,4999,5000,5017,5016,5001,5017,5000,5001,5018,5017,5002,5018,5001,5002,5019,5018,5004,5020,5003,5004,5021,5020,5005,5021,5004,5005,5022,5021,5006,5022,5005,5006,5023,5022,5007,5023,5006,5007,5024,5023,5008,5024,5007,5008,5025,5024,5009,5025,5008,5009,5026,5025,5010,5026,5009,5010,5027,5026,5011,5027,5010,5011,5028,5027,5012,5028,5011,5012,5029,5028,5013,5029,5012,5013,5030,5029,5014,5030,5013,5014,5031,5030,5015,5031,5014,5015,5032,5031,5016,5032,5015,5016,5033,5032,5017,5033,5016,5017,5034,5033,5018,5034,5017,5018,5035,5034,5019,5035,5018,5019,5036,5035,5021,5037,5020,5021,5038,5037,5022,5038,5021,5022,5039,5038,5023,5039,5022,5023,5040,5039,5024,5040,5023,5024,5041,5040,5025,5041,5024,5025,5042,5041,5026,5042,5025,5026,5043,5042,5027,5043,5026,5027,5044,5043,5028,5044,5027,5028,5045,5044,5029,5045,5028,5029,5046,5045,5030,5046,5029,5030,5047,5046,5031,5047,5030,5031,5048,5047,5032,5048,5031,5032,5049,5048,5033,5049,5032,5033,5050,5049,5034,5050,5033,5034,5051,5050,5035,5051,5034,5035,5052,5051,5036,5052,5035,5036,5053,5052,5038,5054,5037,5038,5055,5054,5039,5055,5038,5039,5056,5055,5040,5056,5039,5040,5057,5056,5041,5057,5040,5041,5058,5057,5042,5058,5041,5042,5059,5058,5043,5059,5042,5043,5060,5059,5044,5060,5043,5044,5061,5060,5045,5061,5044,5045,5062,5061,5046,5062,5045,5046,5063,5062,5047,5063,5046,5047,5064,5063,5048,5064,5047,5048,5065,5064,5049,5065,5048,5049,5066,5065,5050,5066,5049,5050,5067,5066,5051,5067,5050,5051,5068,5067,5052,5068,5051,5052,5069,5068,5053,5069,5052,5053,5070,5069,5055,5071,5054,5055,5072,5071,5056,5072,5055,5056,5073,5072,5057,5073,5056,5057,5074,5073,5058,5074,5057,5058,5075,5074,5059,5075,5058,5059,5076,5075,5060,5076,5059,5060,5077,5076,5061,5077,5060,5061,5078,5077,5062,5078,5061,5062,5079,5078,5063,5079,5062,5063,5080,5079,5064,5080,5063,5064,5081,5080,5065,5081,5064,5065,5082,5081,5066,5082,5065,5066,5083,5082,5067,5083,5066,5067,5084,5083,5068,5084,5067,5068,5085,5084,5069,5085,5068,5069,5086,5085,5070,5086,5069,5070,5087,5086,5072,5088,5071,5072,5089,5088,5073,5089,5072,5073,5090,5089,5074,5090,5073,5074,5091,5090,5075,5091,5074,5075,5092,5091,5076,5092,5075,5076,5093,5092,5077,5093,5076,5077,5094,5093,5078,5094,5077,5078,5095,5094,5079,5095,5078,5079,5096,5095,5080,5096,5079,5080,5097,5096,5081,5097,5080,5081,5098,5097,5082,5098,5081,5082,5099,5098,5083,5099,5082,5083,5100,5099,5084,5100,5083,5084,5101,5100,5085,5101,5084,5085,5102,5101,5086,5102,5085,5086,5103,5102,5087,5103,5086,5087,5104,5103,5089,5105,5088,5089,5106,5105,5090,5106,5089,5090,5107,5106,5091,5107,5090,5091,5108,5107,5092,5108,5091,5092,5109,5108,5093,5109,5092,5093,5110,5109,5094,5110,5093,5094,5111,5110,5095,5111,5094,5095,5112,5111,5096,5112,5095,5096,5113,5112,5097,5113,5096,5097,5114,5113,5098,5114,5097,5098,5115,5114,5099,5115,5098,5099,5116,5115,5100,5116,5099,5100,5117,5116,5101,5117,5100,5101,5118,5117,5102,5118,5101,5102,5119,5118,5103,5119,5102,5103,5120,5119,5104,5120,5103,5104,5121,5120,5106,5122,5105,5106,5123,5122,5107,5123,5106,5107,5124,5123,5108,5124,5107,5108,5125,5124,5109,5125,5108,5109,5126,5125,5110,5126,5109,5110,5127,5126,5111,5127,5110,5111,5128,5127,5112,5128,5111,5112,5129,5128,5113,5129,5112,5113,5130,5129,5114,5130,5113,5114,5131,5130,5115,5131,5114,5115,5132,5131,5116,5132,5115,5116,5133,5132,5117,5133,5116,5117,5134,5133,5118,5134,5117,5118,5135,5134,5119,5135,5118,5119,5136,5135,5120,5136,5119,5120,5137,5136,5121,5137,5120,5121,5138,5137,5139,5122,5123,5139,5123,5124,5139,5124,5125,5139,5125,5126,5139,5126,5127,5139,5127,5128,5139,5128,5129,5139,5129,5130,5139,5130,5131,5139,5131,5132,5139,5132,5133,5139,5133,5134,5139,5134,5135,5139,5135,5136,5139,5136,5137,5139,5137,5138,5140,5142,5141,5140,5143,5142,5140,5144,5143,5140,5145,5144,5140,5146,5145,5140,5147,5146,5140,5148,5147,5140,5149,5148,5140,5150,5149,5140,5151,5150,5140,5152,5151,5140,5153,5152,5140,5154,5153,5140,5155,5154,5140,5156,5155,5140,5157,5156,5142,5158,5141,5142,5159,5158,5143,5159,5142,5143,5160,5159,5144,5160,5143,5144,5161,5160,5145,5161,5144,5145,5162,5161,5146,5162,5145,5146,5163,5162,5147,5163,5146,5147,5164,5163,5148,5164,5147,5148,5165,5164,5149,5165,5148,5149,5166,5165,5150,5166,5149,5150,5167,5166,5151,5167,5150,5151,5168,5167,5152,5168,5151,5152,5169,5168,5153,5169,5152,5153,5170,5169,5154,5170,5153,5154,5171,5170,5155,5171,5154,5155,5172,5171,5156,5172,5155,5156,5173,5172,5157,5173,5156,5157,5174,5173,5159,5175,5158,5159,5176,5175,5160,5176,5159,5160,5177,5176,5161,5177,5160,5161,5178,5177,5162,5178,5161,5162,5179,5178,5163,5179,5162,5163,5180,5179,5164,5180,5163,5164,5181,5180,5165,5181,5164,5165,5182,5181,5166,5182,5165,5166,5183,5182,5167,5183,5166,5167,5184,5183,5168,5184,5167,5168,5185,5184,5169,5185,5168,5169,5186,5185,5170,5186,5169,5170,5187,5186,5171,5187,5170,5171,5188,5187,5172,5188,5171,5172,5189,5188,5173,5189,5172,5173,5190,5189,5174,5190,5173,5174,5191,5190,5176,5192,5175,5176,5193,5192,5177,5193,5176,5177,5194,5193,5178,5194,5177,5178,5195,5194,5179,5195,5178,5179,5196,5195,5180,5196,5179,5180,5197,5196,5181,5197,5180,5181,5198,5197,5182,5198,5181,5182,5199,5198,5183,5199,5182,5183,5200,5199,5184,5200,5183,5184,5201,5200,5185,5201,5184,5185,5202,5201,5186,5202,5185,5186,5203,5202,5187,5203,5186,5187,5204,5203,5188,5204,5187,5188,5205,5204,5189,5205,5188,5189,5206,5205,5190,5206,5189,5190,5207,5206,5191,5207,5190,5191,5208,5207,5193,5209,5192,5193,5210,5209,5194,5210,5193,5194,5211,5210,5195,5211,5194,5195,5212,5211,5196,5212,5195,5196,5213,5212,5197,5213,5196,5197,5214,5213,5198,5214,5197,5198,5215,5214,5199,5215,5198,5199,5216,5215,5200,5216,5199,5200,5217,5216,5201,5217,5200,5201,5218,5217,5202,5218,5201,5202,5219,5218,5203,5219,5202,5203,5220,5219,5204,5220,5203,5204,5221,5220,5205,5221,5204,5205,5222,5221,5206,5222,5205,5206,5223,5222,5207,5223,5206,5207,5224,5223,5208,5224,5207,5208,5225,5224,5210,5226,5209,5210,5227,5226,5211,5227,5210,5211,5228,5227,5212,5228,5211,5212,5229,5228,5213,5229,5212,5213,5230,5229,5214,5230,5213,5214,5231,5230,5215,5231,5214,5215,5232,5231,5216,5232,5215,5216,5233,5232,5217,5233,5216,5217,5234,5233,5218,5234,5217,5218,5235,5234,5219,5235,5218,5219,5236,5235,5220,5236,5219,5220,5237,5236,5221,5237,5220,5221,5238,5237,5222,5238,5221,5222,5239,5238,5223,5239,5222,5223,5240,5239,5224,5240,5223,5224,5241,5240,5225,5241,5224,5225,5242,5241,5227,5243,5226,5227,5244,5243,5228,5244,5227,5228,5245,5244,5229,5245,5228,5229,5246,5245,5230,5246,5229,5230,5247,5246,5231,5247,5230,5231,5248,5247,5232,5248,5231,5232,5249,5248,5233,5249,5232,5233,5250,5249,5234,5250,5233,5234,5251,5250,5235,5251,5234,5235,5252,5251,5236,5252,5235,5236,5253,5252,5237,5253,5236,5237,5254,5253,5238,5254,5237,5238,5255,5254,5239,5255,5238,5239,5256,5255,5240,5256,5239,5240,5257,5256,5241,5257,5240,5241,5258,5257,5242,5258,5241,5242,5259,5258,5244,5260,5243,5244,5261,5260,5245,5261,5244,5245,5262,5261,5246,5262,5245,5246,5263,5262,5247,5263,5246,5247,5264,5263,5248,5264,5247,5248,5265,5264,5249,5265,5248,5249,5266,5265,5250,5266,5249,5250,5267,5266,5251,5267,5250,5251,5268,5267,5252,5268,5251,5252,5269,5268,5253,5269,5252,5253,5270,5269,5254,5270,5253,5254,5271,5270,5255,5271,5254,5255,5272,5271,5256,5272,5255,5256,5273,5272,5257,5273,5256,5257,5274,5273,5258,5274,5257,5258,5275,5274,5259,5275,5258,5259,5276,5275,5261,5277,5260,5261,5278,5277,5262,5278,5261,5262,5279,5278,5263,5279,5262,5263,5280,5279,5264,5280,5263,5264,5281,5280,5265,5281,5264,5265,5282,5281,5266,5282,5265,5266,5283,5282,5267,5283,5266,5267,5284,5283,5268,5284,5267,5268,5285,5284,5269,5285,5268,5269,5286,5285,5270,5286,5269,5270,5287,5286,5271,5287,5270,5271,5288,5287,5272,5288,5271,5272,5289,5288,5273,5289,5272,5273,5290,5289,5274,5290,5273,5274,5291,5290,5275,5291,5274,5275,5292,5291,5276,5292,5275,5276,5293,5292,5278,5294,5277,5278,5295,5294,5279,5295,5278,5279,5296,5295,5280,5296,5279,5280,5297,5296,5281,5297,5280,5281,5298,5297,5282,5298,5281,5282,5299,5298,5283,5299,5282,5283,5300,5299,5284,5300,5283,5284,5301,5300,5285,5301,5284,5285,5302,5301,5286,5302,5285,5286,5303,5302,5287,5303,5286,5287,5304,5303,5288,5304,5287,5288,5305,5304,5289,5305,5288,5289,5306,5305,5290,5306,5289,5290,5307,5306,5291,5307,5290,5291,5308,5307,5292,5308,5291,5292,5309,5308,5293,5309,5292,5293,5310,5309,5295,5311,5294,5295,5312,5311,5296,5312,5295,5296,5313,5312,5297,5313,5296,5297,5314,5313,5298,5314,5297,5298,5315,5314,5299,5315,5298,5299,5316,5315,5300,5316,5299,5300,5317,5316,5301,5317,5300,5301,5318,5317,5302,5318,5301,5302,5319,5318,5303,5319,5302,5303,5320,5319,5304,5320,5303,5304,5321,5320,5305,5321,5304,5305,5322,5321,5306,5322,5305,5306,5323,5322,5307,5323,5306,5307,5324,5323,5308,5324,5307,5308,5325,5324,5309,5325,5308,5309,5326,5325,5310,5326,5309,5310,5327,5326,5312,5328,5311,5312,5329,5328,5313,5329,5312,5313,5330,5329,5314,5330,5313,5314,5331,5330,5315,5331,5314,5315,5332,5331,5316,5332,5315,5316,5333,5332,5317,5333,5316,5317,5334,5333,5318,5334,5317,5318,5335,5334,5319,5335,5318,5319,5336,5335,5320,5336,5319,5320,5337,5336,5321,5337,5320,5321,5338,5337,5322,5338,5321,5322,5339,5338,5323,5339,5322,5323,5340,5339,5324,5340,5323,5324,5341,5340,5325,5341,5324,5325,5342,5341,5326,5342,5325,5326,5343,5342,5327,5343,5326,5327,5344,5343,5329,5345,5328,5329,5346,5345,5330,5346,5329,5330,5347,5346,5331,5347,5330,5331,5348,5347,5332,5348,5331,5332,5349,5348,5333,5349,5332,5333,5350,5349,5334,5350,5333,5334,5351,5350,5335,5351,5334,5335,5352,5351,5336,5352,5335,5336,5353,5352,5337,5353,5336,5337,5354,5353,5338,5354,5337,5338,5355,5354,5339,5355,5338,5339,5356,5355,5340,5356,5339,5340,5357,5356,5341,5357,5340,5341,5358,5357,5342,5358,5341,5342,5359,5358,5343,5359,5342,5343,5360,5359,5344,5360,5343,5344,5361,5360,5346,5362,5345,5346,5363,5362,5347,5363,5346,5347,5364,5363,5348,5364,5347,5348,5365,5364,5349,5365,5348,5349,5366,5365,5350,5366,5349,5350,5367,5366,5351,5367,5350,5351,5368,5367,5352,5368,5351,5352,5369,5368,5353,5369,5352,5353,5370,5369,5354,5370,5353,5354,5371,5370,5355,5371,5354,5355,5372,5371,5356,5372,5355,5356,5373,5372,5357,5373,5356,5357,5374,5373,5358,5374,5357,5358,5375,5374,5359,5375,5358,5359,5376,5375,5360,5376,5359,5360,5377,5376,5361,5377,5360,5361,5378,5377,5363,5379,5362,5363,5380,5379,5364,5380,5363,5364,5381,5380,5365,5381,5364,5365,5382,5381,5366,5382,5365,5366,5383,5382,5367,5383,5366,5367,5384,5383,5368,5384,5367,5368,5385,5384,5369,5385,5368,5369,5386,5385,5370,5386,5369,5370,5387,5386,5371,5387,5370,5371,5388,5387,5372,5388,5371,5372,5389,5388,5373,5389,5372,5373,5390,5389,5374,5390,5373,5374,5391,5390,5375,5391,5374,5375,5392,5391,5376,5392,5375,5376,5393,5392,5377,5393,5376,5377,5394,5393,5378,5394,5377,5378,5395,5394,5396,5379,5380,5396,5380,5381,5396,5381,5382,5396,5382,5383,5396,5383,5384,5396,5384,5385,5396,5385,5386,5396,5386,5387,5396,5387,5388,5396,5388,5389,5396,5389,5390,5396,5390,5391,5396,5391,5392,5396,5392,5393,5396,5393,5394,5396,5394,5395,5397,5399,5398,5397,5400,5399,5397,5401,5400,5397,5402,5401,5397,5403,5402,5397,5404,5403,5397,5405,5404,5397,5406,5405,5397,5407,5406,5397,5408,5407,5397,5409,5408,5397,5410,5409,5397,5411,5410,5397,5412,5411,5397,5413,5412,5397,5414,5413,5399,5415,5398,5399,5416,5415,5400,5416,5399,5400,5417,5416,5401,5417,5400,5401,5418,5417,5402,5418,5401,5402,5419,5418,5403,5419,5402,5403,5420,5419,5404,5420,5403,5404,5421,5420,5405,5421,5404,5405,5422,5421,5406,5422,5405,5406,5423,5422,5407,5423,5406,5407,5424,5423,5408,5424,5407,5408,5425,5424,5409,5425,5408,5409,5426,5425,5410,5426,5409,5410,5427,5426,5411,5427,5410,5411,5428,5427,5412,5428,5411,5412,5429,5428,5413,5429,5412,5413,5430,5429,5414,5430,5413,5414,5431,5430,5416,5432,5415,5416,5433,5432,5417,5433,5416,5417,5434,5433,5418,5434,5417,5418,5435,5434,5419,5435,5418,5419,5436,5435,5420,5436,5419,5420,5437,5436,5421,5437,5420,5421,5438,5437,5422,5438,5421,5422,5439,5438,5423,5439,5422,5423,5440,5439,5424,5440,5423,5424,5441,5440,5425,5441,5424,5425,5442,5441,5426,5442,5425,5426,5443,5442,5427,5443,5426,5427,5444,5443,5428,5444,5427,5428,5445,5444,5429,5445,5428,5429,5446,5445,5430,5446,5429,5430,5447,5446,5431,5447,5430,5431,5448,5447,5433,5449,5432,5433,5450,5449,5434,5450,5433,5434,5451,5450,5435,5451,5434,5435,5452,5451,5436,5452,5435,5436,5453,5452,5437,5453,5436,5437,5454,5453,5438,5454,5437,5438,5455,5454,5439,5455,5438,5439,5456,5455,5440,5456,5439,5440,5457,5456,5441,5457,5440,5441,5458,5457,5442,5458,5441,5442,5459,5458,5443,5459,5442,5443,5460,5459,5444,5460,5443,5444,5461,5460,5445,5461,5444,5445,5462,5461,5446,5462,5445,5446,5463,5462,5447,5463,5446,5447,5464,5463,5448,5464,5447,5448,5465,5464,5450,5466,5449,5450,5467,5466,5451,5467,5450,5451,5468,5467,5452,5468,5451,5452,5469,5468,5453,5469,5452,5453,5470,5469,5454,5470,5453,5454,5471,5470,5455,5471,5454,5455,5472,5471,5456,5472,5455,5456,5473,5472,5457,5473,5456,5457,5474,5473,5458,5474,5457,5458,5475,5474,5459,5475,5458,5459,5476,5475,5460,5476,5459,5460,5477,5476,5461,5477,5460,5461,5478,5477,5462,5478,5461,5462,5479,5478,5463,5479,5462,5463,5480,5479,5464,5480,5463,5464,5481,5480,5465,5481,5464,5465,5482,5481,5467,5483,5466,5467,5484,5483,5468,5484,5467,5468,5485,5484,5469,5485,5468,5469,5486,5485,5470,5486,5469,5470,5487,5486,5471,5487,5470,5471,5488,5487,5472,5488,5471,5472,5489,5488,5473,5489,5472,5473,5490,5489,5474,5490,5473,5474,5491,5490,5475,5491,5474,5475,5492,5491,5476,5492,5475,5476,5493,5492,5477,5493,5476,5477,5494,5493,5478,5494,5477,5478,5495,5494,5479,5495,5478,5479,5496,5495,5480,5496,5479,5480,5497,5496,5481,5497,5480,5481,5498,5497,5482,5498,5481,5482,5499,5498,5484,5500,5483,5484,5501,5500,5485,5501,5484,5485,5502,5501,5486,5502,5485,5486,5503,5502,5487,5503,5486,5487,5504,5503,5488,5504,5487,5488,5505,5504,5489,5505,5488,5489,5506,5505,5490,5506,5489,5490,5507,5506,5491,5507,5490,5491,5508,5507,5492,5508,5491,5492,5509,5508,5493,5509,5492,5493,5510,5509,5494,5510,5493,5494,5511,5510,5495,5511,5494,5495,5512,5511,5496,5512,5495,5496,5513,5512,5497,5513,5496,5497,5514,5513,5498,5514,5497,5498,5515,5514,5499,5515,5498,5499,5516,5515,5501,5517,5500,5501,5518,5517,5502,5518,5501,5502,5519,5518,5503,5519,5502,5503,5520,5519,5504,5520,5503,5504,5521,5520,5505,5521,5504,5505,5522,5521,5506,5522,5505,5506,5523,5522,5507,5523,5506,5507,5524,5523,5508,5524,5507,5508,5525,5524,5509,5525,5508,5509,5526,5525,5510,5526,5509,5510,5527,5526,5511,5527,5510,5511,5528,5527,5512,5528,5511,5512,5529,5528,5513,5529,5512,5513,5530,5529,5514,5530,5513,5514,5531,5530,5515,5531,5514,5515,5532,5531,5516,5532,5515,5516,5533,5532,5518,5534,5517,5518,5535,5534,5519,5535,5518,5519,5536,5535,5520,5536,5519,5520,5537,5536,5521,5537,5520,5521,5538,5537,5522,5538,5521,5522,5539,5538,5523,5539,5522,5523,5540,5539,5524,5540,5523,5524,5541,5540,5525,5541,5524,5525,5542,5541,5526,5542,5525,5526,5543,5542,5527,5543,5526,5527,5544,5543,5528,5544,5527,5528,5545,5544,5529,5545,5528,5529,5546,5545,5530,5546,5529,5530,5547,5546,5531,5547,5530,5531,5548,5547,5532,5548,5531,5532,5549,5548,5533,5549,5532,5533,5550,5549,5535,5551,5534,5535,5552,5551,5536,5552,5535,5536,5553,5552,5537,5553,5536,5537,5554,5553,5538,5554,5537,5538,5555,5554,5539,5555,5538,5539,5556,5555,5540,5556,5539,5540,5557,5556,5541,5557,5540,5541,5558,5557,5542,5558,5541,5542,5559,5558,5543,5559,5542,5543,5560,5559,5544,5560,5543,5544,5561,5560,5545,5561,5544,5545,5562,5561,5546,5562,5545,5546,5563,5562,5547,5563,5546,5547,5564,5563,5548,5564,5547,5548,5565,5564,5549,5565,5548,5549,5566,5565,5550,5566,5549,5550,5567,5566,5552,5568,5551,5552,5569,5568,5553,5569,5552,5553,5570,5569,5554,5570,5553,5554,5571,5570,5555,5571,5554,5555,5572,5571,5556,5572,5555,5556,5573,5572,5557,5573,5556,5557,5574,5573,5558,5574,5557,5558,5575,5574,5559,5575,5558,5559,5576,5575,5560,5576,5559,5560,5577,5576,5561,5577,5560,5561,5578,5577,5562,5578,5561,5562,5579,5578,5563,5579,5562,5563,5580,5579,5564,5580,5563,5564,5581,5580,5565,5581,5564,5565,5582,5581,5566,5582,5565,5566,5583,5582,5567,5583,5566,5567,5584,5583,5569,5585,5568,5569,5586,5585,5570,5586,5569,5570,5587,5586,5571,5587,5570,5571,5588,5587,5572,5588,5571,5572,5589,5588,5573,5589,5572,5573,5590,5589,5574,5590,5573,5574,5591,5590,5575,5591,5574,5575,5592,5591,5576,5592,5575,5576,5593,5592,5577,5593,5576,5577,5594,5593,5578,5594,5577,5578,5595,5594,5579,5595,5578,5579,5596,5595,5580,5596,5579,5580,5597,5596,5581,5597,5580,5581,5598,5597,5582,5598,5581,5582,5599,5598,5583,5599,5582,5583,5600,5599,5584,5600,5583,5584,5601,5600,5586,5602,5585,5586,5603,5602,5587,5603,5586,5587,5604,5603,5588,5604,5587,5588,5605,5604,5589,5605,5588,5589,5606,5605,5590,5606,5589,5590,5607,5606,5591,5607,5590,5591,5608,5607,5592,5608,5591,5592,5609,5608,5593,5609,5592,5593,5610,5609,5594,5610,5593,5594,5611,5610,5595,5611,5594,5595,5612,5611,5596,5612,5595,5596,5613,5612,5597,5613,5596,5597,5614,5613,5598,5614,5597,5598,5615,5614,5599,5615,5598,5599,5616,5615,5600,5616,5599,5600,5617,5616,5601,5617,5600,5601,5618,5617,5603,5619,5602,5603,5620,5619,5604,5620,5603,5604,5621,5620,5605,5621,5604,5605,5622,5621,5606,5622,5605,5606,5623,5622,5607,5623,5606,5607,5624,5623,5608,5624,5607,5608,5625,5624,5609,5625,5608,5609,5626,5625,5610,5626,5609,5610,5627,5626,5611,5627,5610,5611,5628,5627,5612,5628,5611,5612,5629,5628,5613,5629,5612,5613,5630,5629,5614,5630,5613,5614,5631,5630,5615,5631,5614,5615,5632,5631,5616,5632,5615,5616,5633,5632,5617,5633,5616,5617,5634,5633,5618,5634,5617,5618,5635,5634,5620,5636,5619,5620,5637,5636,5621,5637,5620,5621,5638,5637,5622,5638,5621,5622,5639,5638,5623,5639,5622,5623,5640,5639,5624,5640,5623,5624,5641,5640,5625,5641,5624,5625,5642,5641,5626,5642,5625,5626,5643,5642,5627,5643,5626,5627,5644,5643,5628,5644,5627,5628,5645,5644,5629,5645,5628,5629,5646,5645,5630,5646,5629,5630,5647,5646,5631,5647,5630,5631,5648,5647,5632,5648,5631,5632,5649,5648,5633,5649,5632,5633,5650,5649,5634,5650,5633,5634,5651,5650,5635,5651,5634,5635,5652,5651,5653,5636,5637,5653,5637,5638,5653,5638,5639,5653,5639,5640,5653,5640,5641,5653,5641,5642,5653,5642,5643,5653,5643,5644,5653,5644,5645,5653,5645,5646,5653,5646,5647,5653,5647,5648,5653,5648,5649,5653,5649,5650,5653,5650,5651,5653,5651,5652,5654,5656,5655,5654,5657,5656,5654,5658,5657,5654,5659,5658,5654,5660,5659,5654,5661,5660,5654,5662,5661,5654,5663,5662,5654,5664,5663,5654,5665,5664,5654,5666,5665,5654,5667,5666,5654,5668,5667,5654,5669,5668,5654,5670,5669,5654,5671,5670,5656,5672,5655,5656,5673,5672,5657,5673,5656,5657,5674,5673,5658,5674,5657,5658,5675,5674,5659,5675,5658,5659,5676,5675,5660,5676,5659,5660,5677,5676,5661,5677,5660,5661,5678,5677,5662,5678,5661,5662,5679,5678,5663,5679,5662,5663,5680,5679,5664,5680,5663,5664,5681,5680,5665,5681,5664,5665,5682,5681,5666,5682,5665,5666,5683,5682,5667,5683,5666,5667,5684,5683,5668,5684,5667,5668,5685,5684,5669,5685,5668,5669,5686,5685,5670,5686,5669,5670,5687,5686,5671,5687,5670,5671,5688,5687,5673,5689,5672,5673,5690,5689,5674,5690,5673,5674,5691,5690,5675,5691,5674,5675,5692,5691,5676,5692,5675,5676,5693,5692,5677,5693,5676,5677,5694,5693,5678,5694,5677,5678,5695,5694,5679,5695,5678,5679,5696,5695,5680,5696,5679,5680,5697,5696,5681,5697,5680,5681,5698,5697,5682,5698,5681,5682,5699,5698,5683,5699,5682,5683,5700,5699,5684,5700,5683,5684,5701,5700,5685,5701,5684,5685,5702,5701,5686,5702,5685,5686,5703,5702,5687,5703,5686,5687,5704,5703,5688,5704,5687,5688,5705,5704,5690,5706,5689,5690,5707,5706,5691,5707,5690,5691,5708,5707,5692,5708,5691,5692,5709,5708,5693,5709,5692,5693,5710,5709,5694,5710,5693,5694,5711,5710,5695,5711,5694,5695,5712,5711,5696,5712,5695,5696,5713,5712,5697,5713,5696,5697,5714,5713,5698,5714,5697,5698,5715,5714,5699,5715,5698,5699,5716,5715,5700,5716,5699,5700,5717,5716,5701,5717,5700,5701,5718,5717,5702,5718,5701,5702,5719,5718,5703,5719,5702,5703,5720,5719,5704,5720,5703,5704,5721,5720,5705,5721,5704,5705,5722,5721,5707,5723,5706,5707,5724,5723,5708,5724,5707,5708,5725,5724,5709,5725,5708,5709,5726,5725,5710,5726,5709,5710,5727,5726,5711,5727,5710,5711,5728,5727,5712,5728,5711,5712,5729,5728,5713,5729,5712,5713,5730,5729,5714,5730,5713,5714,5731,5730,5715,5731,5714,5715,5732,5731,5716,5732,5715,5716,5733,5732,5717,5733,5716,5717,5734,5733,5718,5734,5717,5718,5735,5734,5719,5735,5718,5719,5736,5735,5720,5736,5719,5720,5737,5736,5721,5737,5720,5721,5738,5737,5722,5738,5721,5722,5739,5738,5724,5740,5723,5724,5741,5740,5725,5741,5724,5725,5742,5741,5726,5742,5725,5726,5743,5742,5727,5743,5726,5727,5744,5743,5728,5744,5727,5728,5745,5744,5729,5745,5728,5729,5746,5745,5730,5746,5729,5730,5747,5746,5731,5747,5730,5731,5748,5747,5732,5748,5731,5732,5749,5748,5733,5749,5732,5733,5750,5749,5734,5750,5733,5734,5751,5750,5735,5751,5734,5735,5752,5751,5736,5752,5735,5736,5753,5752,5737,5753,5736,5737,5754,5753,5738,5754,5737,5738,5755,5754,5739,5755,5738,5739,5756,5755,5741,5757,5740,5741,5758,5757,5742,5758,5741,5742,5759,5758,5743,5759,5742,5743,5760,5759,5744,5760,5743,5744,5761,5760,5745,5761,5744,5745,5762,5761,5746,5762,5745,5746,5763,5762,5747,5763,5746,5747,5764,5763,5748,5764,5747,5748,5765,5764,5749,5765,5748,5749,5766,5765,5750,5766,5749,5750,5767,5766,5751,5767,5750,5751,5768,5767,5752,5768,5751,5752,5769,5768,5753,5769,5752,5753,5770,5769,5754,5770,5753,5754,5771,5770,5755,5771,5754,5755,5772,5771,5756,5772,5755,5756,5773,5772,5758,5774,5757,5758,5775,5774,5759,5775,5758,5759,5776,5775,5760,5776,5759,5760,5777,5776,5761,5777,5760,5761,5778,5777,5762,5778,5761,5762,5779,5778,5763,5779,5762,5763,5780,5779,5764,5780,5763,5764,5781,5780,5765,5781,5764,5765,5782,5781,5766,5782,5765,5766,5783,5782,5767,5783,5766,5767,5784,5783,5768,5784,5767,5768,5785,5784,5769,5785,5768,5769,5786,5785,5770,5786,5769,5770,5787,5786,5771,5787,5770,5771,5788,5787,5772,5788,5771,5772,5789,5788,5773,5789,5772,5773,5790,5789,5775,5791,5774,5775,5792,5791,5776,5792,5775,5776,5793,5792,5777,5793,5776,5777,5794,5793,5778,5794,5777,5778,5795,5794,5779,5795,5778,5779,5796,5795,5780,5796,5779,5780,5797,5796,5781,5797,5780,5781,5798,5797,5782,5798,5781,5782,5799,5798,5783,5799,5782,5783,5800,5799,5784,5800,5783,5784,5801,5800,5785,5801,5784,5785,5802,5801,5786,5802,5785,5786,5803,5802,5787,5803,5786,5787,5804,5803,5788,5804,5787,5788,5805,5804,5789,5805,5788,5789,5806,5805,5790,5806,5789,5790,5807,5806,5792,5808,5791,5792,5809,5808,5793,5809,5792,5793,5810,5809,5794,5810,5793,5794,5811,5810,5795,5811,5794,5795,5812,5811,5796,5812,5795,5796,5813,5812,5797,5813,5796,5797,5814,5813,5798,5814,5797,5798,5815,5814,5799,5815,5798,5799,5816,5815,5800,5816,5799,5800,5817,5816,5801,5817,5800,5801,5818,5817,5802,5818,5801,5802,5819,5818,5803,5819,5802,5803,5820,5819,5804,5820,5803,5804,5821,5820,5805,5821,5804,5805,5822,5821,5806,5822,5805,5806,5823,5822,5807,5823,5806,5807,5824,5823,5809,5825,5808,5809,5826,5825,5810,5826,5809,5810,5827,5826,5811,5827,5810,5811,5828,5827,5812,5828,5811,5812,5829,5828,5813,5829,5812,5813,5830,5829,5814,5830,5813,5814,5831,5830,5815,5831,5814,5815,5832,5831,5816,5832,5815,5816,5833,5832,5817,5833,5816,5817,5834,5833,5818,5834,5817,5818,5835,5834,5819,5835,5818,5819,5836,5835,5820,5836,5819,5820,5837,5836,5821,5837,5820,5821,5838,5837,5822,5838,5821,5822,5839,5838,5823,5839,5822,5823,5840,5839,5824,5840,5823,5824,5841,5840,5826,5842,5825,5826,5843,5842,5827,5843,5826,5827,5844,5843,5828,5844,5827,5828,5845,5844,5829,5845,5828,5829,5846,5845,5830,5846,5829,5830,5847,5846,5831,5847,5830,5831,5848,5847,5832,5848,5831,5832,5849,5848,5833,5849,5832,5833,5850,5849,5834,5850,5833,5834,5851,5850,5835,5851,5834,5835,5852,5851,5836,5852,5835,5836,5853,5852,5837,5853,5836,5837,5854,5853,5838,5854,5837,5838,5855,5854,5839,5855,5838,5839,5856,5855,5840,5856,5839,5840,5857,5856,5841,5857,5840,5841,5858,5857,5843,5859,5842,5843,5860,5859,5844,5860,5843,5844,5861,5860,5845,5861,5844,5845,5862,5861,5846,5862,5845,5846,5863,5862,5847,5863,5846,5847,5864,5863,5848,5864,5847,5848,5865,5864,5849,5865,5848,5849,5866,5865,5850,5866,5849,5850,5867,5866,5851,5867,5850,5851,5868,5867,5852,5868,5851,5852,5869,5868,5853,5869,5852,5853,5870,5869,5854,5870,5853,5854,5871,5870,5855,5871,5854,5855,5872,5871,5856,5872,5855,5856,5873,5872,5857,5873,5856,5857,5874,5873,5858,5874,5857,5858,5875,5874,5860,5876,5859,5860,5877,5876,5861,5877,5860,5861,5878,5877,5862,5878,5861,5862,5879,5878,5863,5879,5862,5863,5880,5879,5864,5880,5863,5864,5881,5880,5865,5881,5864,5865,5882,5881,5866,5882,5865,5866,5883,5882,5867,5883,5866,5867,5884,5883,5868,5884,5867,5868,5885,5884,5869,5885,5868,5869,5886,5885,5870,5886,5869,5870,5887,5886,5871,5887,5870,5871,5888,5887,5872,5888,5871,5872,5889,5888,5873,5889,5872,5873,5890,5889,5874,5890,5873,5874,5891,5890,5875,5891,5874,5875,5892,5891,5877,5893,5876,5877,5894,5893,5878,5894,5877,5878,5895,5894,5879,5895,5878,5879,5896,5895,5880,5896,5879,5880,5897,5896,5881,5897,5880,5881,5898,5897,5882,5898,5881,5882,5899,5898,5883,5899,5882,5883,5900,5899,5884,5900,5883,5884,5901,5900,5885,5901,5884,5885,5902,5901,5886,5902,5885,5886,5903,5902,5887,5903,5886,5887,5904,5903,5888,5904,5887,5888,5905,5904,5889,5905,5888,5889,5906,5905,5890,5906,5889,5890,5907,5906,5891,5907,5890,5891,5908,5907,5892,5908,5891,5892,5909,5908,5910,5893,5894,5910,5894,5895,5910,5895,5896,5910,5896,5897,5910,5897,5898,5910,5898,5899,5910,5899,5900,5910,5900,5901,5910,5901,5902,5910,5902,5903,5910,5903,5904,5910,5904,5905,5910,5905,5906,5910,5906,5907,5910,5907,5908,5910,5908,5909,5911,5913,5912,5911,5914,5913,5911,5915,5914,5911,5916,5915,5911,5917,5916,5911,5918,5917,5911,5919,5918,5911,5920,5919,5911,5921,5920,5911,5922,5921,5911,5923,5922,5911,5924,5923,5911,5925,5924,5911,5926,5925,5911,5927,5926,5911,5928,5927,5913,5929,5912,5913,5930,5929,5914,5930,5913,5914,5931,5930,5915,5931,5914,5915,5932,5931,5916,5932,5915,5916,5933,5932,5917,5933,5916,5917,5934,5933,5918,5934,5917,5918,5935,5934,5919,5935,5918,5919,5936,5935,5920,5936,5919,5920,5937,5936,5921,5937,5920,5921,5938,5937,5922,5938,5921,5922,5939,5938,5923,5939,5922,5923,5940,5939,5924,5940,5923,5924,5941,5940,5925,5941,5924,5925,5942,5941,5926,5942,5925,5926,5943,5942,5927,5943,5926,5927,5944,5943,5928,5944,5927,5928,5945,5944,5930,5946,5929,5930,5947,5946,5931,5947,5930,5931,5948,5947,5932,5948,5931,5932,5949,5948,5933,5949,5932,5933,5950,5949,5934,5950,5933,5934,5951,5950,5935,5951,5934,5935,5952,5951,5936,5952,5935,5936,5953,5952,5937,5953,5936,5937,5954,5953,5938,5954,5937,5938,5955,5954,5939,5955,5938,5939,5956,5955,5940,5956,5939,5940,5957,5956,5941,5957,5940,5941,5958,5957,5942,5958,5941,5942,5959,5958,5943,5959,5942,5943,5960,5959,5944,5960,5943,5944,5961,5960,5945,5961,5944,5945,5962,5961,5947,5963,5946,5947,5964,5963,5948,5964,5947,5948,5965,5964,5949,5965,5948,5949,5966,5965,5950,5966,5949,5950,5967,5966,5951,5967,5950,5951,5968,5967,5952,5968,5951,5952,5969,5968,5953,5969,5952,5953,5970,5969,5954,5970,5953,5954,5971,5970,5955,5971,5954,5955,5972,5971,5956,5972,5955,5956,5973,5972,5957,5973,5956,5957,5974,5973,5958,5974,5957,5958,5975,5974,5959,5975,5958,5959,5976,5975,5960,5976,5959,5960,5977,5976,5961,5977,5960,5961,5978,5977,5962,5978,5961,5962,5979,5978,5964,5980,5963,5964,5981,5980,5965,5981,5964,5965,5982,5981,5966,5982,5965,5966,5983,5982,5967,5983,5966,5967,5984,5983,5968,5984,5967,5968,5985,5984,5969,5985,5968,5969,5986,5985,5970,5986,5969,5970,5987,5986,5971,5987,5970,5971,5988,5987,5972,5988,5971,5972,5989,5988,5973,5989,5972,5973,5990,5989,5974,5990,5973,5974,5991,5990,5975,5991,5974,5975,5992,5991,5976,5992,5975,5976,5993,5992,5977,5993,5976,5977,5994,5993,5978,5994,5977,5978,5995,5994,5979,5995,5978,5979,5996,5995,5981,5997,5980,5981,5998,5997,5982,5998,5981,5982,5999,5998,5983,5999,5982,5983,6000,5999,5984,6000,5983,5984,6001,6000,5985,6001,5984,5985,6002,6001,5986,6002,5985,5986,6003,6002,5987,6003,5986,5987,6004,6003,5988,6004,5987,5988,6005,6004,5989,6005,5988,5989,6006,6005,5990,6006,5989,5990,6007,6006,5991,6007,5990,5991,6008,6007,5992,6008,5991,5992,6009,6008,5993,6009,5992,5993,6010,6009,5994,6010,5993,5994,6011,6010,5995,6011,5994,5995,6012,6011,5996,6012,5995,5996,6013,6012,5998,6014,5997,5998,6015,6014,5999,6015,5998,5999,6016,6015,6000,6016,5999,6000,6017,6016,6001,6017,6000,6001,6018,6017,6002,6018,6001,6002,6019,6018,6003,6019,6002,6003,6020,6019,6004,6020,6003,6004,6021,6020,6005,6021,6004,6005,6022,6021,6006,6022,6005,6006,6023,6022,6007,6023,6006,6007,6024,6023,6008,6024,6007,6008,6025,6024,6009,6025,6008,6009,6026,6025,6010,6026,6009,6010,6027,6026,6011,6027,6010,6011,6028,6027,6012,6028,6011,6012,6029,6028,6013,6029,6012,6013,6030,6029,6015,6031,6014,6015,6032,6031,6016,6032,6015,6016,6033,6032,6017,6033,6016,6017,6034,6033,6018,6034,6017,6018,6035,6034,6019,6035,6018,6019,6036,6035,6020,6036,6019,6020,6037,6036,6021,6037,6020,6021,6038,6037,6022,6038,6021,6022,6039,6038,6023,6039,6022,6023,6040,6039,6024,6040,6023,6024,6041,6040,6025,6041,6024,6025,6042,6041,6026,6042,6025,6026,6043,6042,6027,6043,6026,6027,6044,6043,6028,6044,6027,6028,6045,6044,6029,6045,6028,6029,6046,6045,6030,6046,6029,6030,6047,6046,6032,6048,6031,6032,6049,6048,6033,6049,6032,6033,6050,6049,6034,6050,6033,6034,6051,6050,6035,6051,6034,6035,6052,6051,6036,6052,6035,6036,6053,6052,6037,6053,6036,6037,6054,6053,6038,6054,6037,6038,6055,6054,6039,6055,6038,6039,6056,6055,6040,6056,6039,6040,6057,6056,6041,6057,6040,6041,6058,6057,6042,6058,6041,6042,6059,6058,6043,6059,6042,6043,6060,6059,6044,6060,6043,6044,6061,6060,6045,6061,6044,6045,6062,6061,6046,6062,6045,6046,6063,6062,6047,6063,6046,6047,6064,6063,6049,6065,6048,6049,6066,6065,6050,6066,6049,6050,6067,6066,6051,6067,6050,6051,6068,6067,6052,6068,6051,6052,6069,6068,6053,6069,6052,6053,6070,6069,6054,6070,6053,6054,6071,6070,6055,6071,6054,6055,6072,6071,6056,6072,6055,6056,6073,6072,6057,6073,6056,6057,6074,6073,6058,6074,6057,6058,6075,6074,6059,6075,6058,6059,6076,6075,6060,6076,6059,6060,6077,6076,6061,6077,6060,6061,6078,6077,6062,6078,6061,6062,6079,6078,6063,6079,6062,6063,6080,6079,6064,6080,6063,6064,6081,6080,6066,6082,6065,6066,6083,6082,6067,6083,6066,6067,6084,6083,6068,6084,6067,6068,6085,6084,6069,6085,6068,6069,6086,6085,6070,6086,6069,6070,6087,6086,6071,6087,6070,6071,6088,6087,6072,6088,6071,6072,6089,6088,6073,6089,6072,6073,6090,6089,6074,6090,6073,6074,6091,6090,6075,6091,6074,6075,6092,6091,6076,6092,6075,6076,6093,6092,6077,6093,6076,6077,6094,6093,6078,6094,6077,6078,6095,6094,6079,6095,6078,6079,6096,6095,6080,6096,6079,6080,6097,6096,6081,6097,6080,6081,6098,6097,6083,6099,6082,6083,6100,6099,6084,6100,6083,6084,6101,6100,6085,6101,6084,6085,6102,6101,6086,6102,6085,6086,6103,6102,6087,6103,6086,6087,6104,6103,6088,6104,6087,6088,6105,6104,6089,6105,6088,6089,6106,6105,6090,6106,6089,6090,6107,6106,6091,6107,6090,6091,6108,6107,6092,6108,6091,6092,6109,6108,6093,6109,6092,6093,6110,6109,6094,6110,6093,6094,6111,6110,6095,6111,6094,6095,6112,6111,6096,6112,6095,6096,6113,6112,6097,6113,6096,6097,6114,6113,6098,6114,6097,6098,6115,6114,6100,6116,6099,6100,6117,6116,6101,6117,6100,6101,6118,6117,6102,6118,6101,6102,6119,6118,6103,6119,6102,6103,6120,6119,6104,6120,6103,6104,6121,6120,6105,6121,6104,6105,6122,6121,6106,6122,6105,6106,6123,6122,6107,6123,6106,6107,6124,6123,6108,6124,6107,6108,6125,6124,6109,6125,6108,6109,6126,6125,6110,6126,6109,6110,6127,6126,6111,6127,6110,6111,6128,6127,6112,6128,6111,6112,6129,6128,6113,6129,6112,6113,6130,6129,6114,6130,6113,6114,6131,6130,6115,6131,6114,6115,6132,6131,6117,6133,6116,6117,6134,6133,6118,6134,6117,6118,6135,6134,6119,6135,6118,6119,6136,6135,6120,6136,6119,6120,6137,6136,6121,6137,6120,6121,6138,6137,6122,6138,6121,6122,6139,6138,6123,6139,6122,6123,6140,6139,6124,6140,6123,6124,6141,6140,6125,6141,6124,6125,6142,6141,6126,6142,6125,6126,6143,6142,6127,6143,6126,6127,6144,6143,6128,6144,6127,6128,6145,6144,6129,6145,6128,6129,6146,6145,6130,6146,6129,6130,6147,6146,6131,6147,6130,6131,6148,6147,6132,6148,6131,6132,6149,6148,6134,6150,6133,6134,6151,6150,6135,6151,6134,6135,6152,6151,6136,6152,6135,6136,6153,6152,6137,6153,6136,6137,6154,6153,6138,6154,6137,6138,6155,6154,6139,6155,6138,6139,6156,6155,6140,6156,6139,6140,6157,6156,6141,6157,6140,6141,6158,6157,6142,6158,6141,6142,6159,6158,6143,6159,6142,6143,6160,6159,6144,6160,6143,6144,6161,6160,6145,6161,6144,6145,6162,6161,6146,6162,6145,6146,6163,6162,6147,6163,6146,6147,6164,6163,6148,6164,6147,6148,6165,6164,6149,6165,6148,6149,6166,6165,6167,6150,6151,6167,6151,6152,6167,6152,6153,6167,6153,6154,6167,6154,6155,6167,6155,6156,6167,6156,6157,6167,6157,6158,6167,6158,6159,6167,6159,6160,6167,6160,6161,6167,6161,6162,6167,6162,6163,6167,6163,6164,6167,6164,6165,6167,6165,6166,6168,6170,6169,6168,6171,6170,6168,6172,6171,6168,6173,6172,6168,6174,6173,6168,6175,6174,6168,6176,6175,6168,6177,6176,6168,6178,6177,6168,6179,6178,6168,6180,6179,6168,6181,6180,6168,6182,6181,6168,6183,6182,6168,6184,6183,6168,6185,6184,6170,6186,6169,6170,6187,6186,6171,6187,6170,6171,6188,6187,6172,6188,6171,6172,6189,6188,6173,6189,6172,6173,6190,6189,6174,6190,6173,6174,6191,6190,6175,6191,6174,6175,6192,6191,6176,6192,6175,6176,6193,6192,6177,6193,6176,6177,6194,6193,6178,6194,6177,6178,6195,6194,6179,6195,6178,6179,6196,6195,6180,6196,6179,6180,6197,6196,6181,6197,6180,6181,6198,6197,6182,6198,6181,6182,6199,6198,6183,6199,6182,6183,6200,6199,6184,6200,6183,6184,6201,6200,6185,6201,6184,6185,6202,6201,6187,6203,6186,6187,6204,6203,6188,6204,6187,6188,6205,6204,6189,6205,6188,6189,6206,6205,6190,6206,6189,6190,6207,6206,6191,6207,6190,6191,6208,6207,6192,6208,6191,6192,6209,6208,6193,6209,6192,6193,6210,6209,6194,6210,6193,6194,6211,6210,6195,6211,6194,6195,6212,6211,6196,6212,6195,6196,6213,6212,6197,6213,6196,6197,6214,6213,6198,6214,6197,6198,6215,6214,6199,6215,6198,6199,6216,6215,6200,6216,6199,6200,6217,6216,6201,6217,6200,6201,6218,6217,6202,6218,6201,6202,6219,6218,6204,6220,6203,6204,6221,6220,6205,6221,6204,6205,6222,6221,6206,6222,6205,6206,6223,6222,6207,6223,6206,6207,6224,6223,6208,6224,6207,6208,6225,6224,6209,6225,6208,6209,6226,6225,6210,6226,6209,6210,6227,6226,6211,6227,6210,6211,6228,6227,6212,6228,6211,6212,6229,6228,6213,6229,6212,6213,6230,6229,6214,6230,6213,6214,6231,6230,6215,6231,6214,6215,6232,6231,6216,6232,6215,6216,6233,6232,6217,6233,6216,6217,6234,6233,6218,6234,6217,6218,6235,6234,6219,6235,6218,6219,6236,6235,6221,6237,6220,6221,6238,6237,6222,6238,6221,6222,6239,6238,6223,6239,6222,6223,6240,6239,6224,6240,6223,6224,6241,6240,6225,6241,6224,6225,6242,6241,6226,6242,6225,6226,6243,6242,6227,6243,6226,6227,6244,6243,6228,6244,6227,6228,6245,6244,6229,6245,6228,6229,6246,6245,6230,6246,6229,6230,6247,6246,6231,6247,6230,6231,6248,6247,6232,6248,6231,6232,6249,6248,6233,6249,6232,6233,6250,6249,6234,6250,6233,6234,6251,6250,6235,6251,6234,6235,6252,6251,6236,6252,6235,6236,6253,6252,6238,6254,6237,6238,6255,6254,6239,6255,6238,6239,6256,6255,6240,6256,6239,6240,6257,6256,6241,6257,6240,6241,6258,6257,6242,6258,6241,6242,6259,6258,6243,6259,6242,6243,6260,6259,6244,6260,6243,6244,6261,6260,6245,6261,6244,6245,6262,6261,6246,6262,6245,6246,6263,6262,6247,6263,6246,6247,6264,6263,6248,6264,6247,6248,6265,6264,6249,6265,6248,6249,6266,6265,6250,6266,6249,6250,6267,6266,6251,6267,6250,6251,6268,6267,6252,6268,6251,6252,6269,6268,6253,6269,6252,6253,6270,6269,6255,6271,6254,6255,6272,6271,6256,6272,6255,6256,6273,6272,6257,6273,6256,6257,6274,6273,6258,6274,6257,6258,6275,6274,6259,6275,6258,6259,6276,6275,6260,6276,6259,6260,6277,6276,6261,6277,6260,6261,6278,6277,6262,6278,6261,6262,6279,6278,6263,6279,6262,6263,6280,6279,6264,6280,6263,6264,6281,6280,6265,6281,6264,6265,6282,6281,6266,6282,6265,6266,6283,6282,6267,6283,6266,6267,6284,6283,6268,6284,6267,6268,6285,6284,6269,6285,6268,6269,6286,6285,6270,6286,6269,6270,6287,6286,6272,6288,6271,6272,6289,6288,6273,6289,6272,6273,6290,6289,6274,6290,6273,6274,6291,6290,6275,6291,6274,6275,6292,6291,6276,6292,6275,6276,6293,6292,6277,6293,6276,6277,6294,6293,6278,6294,6277,6278,6295,6294,6279,6295,6278,6279,6296,6295,6280,6296,6279,6280,6297,6296,6281,6297,6280,6281,6298,6297,6282,6298,6281,6282,6299,6298,6283,6299,6282,6283,6300,6299,6284,6300,6283,6284,6301,6300,6285,6301,6284,6285,6302,6301,6286,6302,6285,6286,6303,6302,6287,6303,6286,6287,6304,6303,6289,6305,6288,6289,6306,6305,6290,6306,6289,6290,6307,6306,6291,6307,6290,6291,6308,6307,6292,6308,6291,6292,6309,6308,6293,6309,6292,6293,6310,6309,6294,6310,6293,6294,6311,6310,6295,6311,6294,6295,6312,6311,6296,6312,6295,6296,6313,6312,6297,6313,6296,6297,6314,6313,6298,6314,6297,6298,6315,6314,6299,6315,6298,6299,6316,6315,6300,6316,6299,6300,6317,6316,6301,6317,6300,6301,6318,6317,6302,6318,6301,6302,6319,6318,6303,6319,6302,6303,6320,6319,6304,6320,6303,6304,6321,6320,6306,6322,6305,6306,6323,6322,6307,6323,6306,6307,6324,6323,6308,6324,6307,6308,6325,6324,6309,6325,6308,6309,6326,6325,6310,6326,6309,6310,6327,6326,6311,6327,6310,6311,6328,6327,6312,6328,6311,6312,6329,6328,6313,6329,6312,6313,6330,6329,6314,6330,6313,6314,6331,6330,6315,6331,6314,6315,6332,6331,6316,6332,6315,6316,6333,6332,6317,6333,6316,6317,6334,6333,6318,6334,6317,6318,6335,6334,6319,6335,6318,6319,6336,6335,6320,6336,6319,6320,6337,6336,6321,6337,6320,6321,6338,6337,6323,6339,6322,6323,6340,6339,6324,6340,6323,6324,6341,6340,6325,6341,6324,6325,6342,6341,6326,6342,6325,6326,6343,6342,6327,6343,6326,6327,6344,6343,6328,6344,6327,6328,6345,6344,6329,6345,6328,6329,6346,6345,6330,6346,6329,6330,6347,6346,6331,6347,6330,6331,6348,6347,6332,6348,6331,6332,6349,6348,6333,6349,6332,6333,6350,6349,6334,6350,6333,6334,6351,6350,6335,6351,6334,6335,6352,6351,6336,6352,6335,6336,6353,6352,6337,6353,6336,6337,6354,6353,6338,6354,6337,6338,6355,6354,6340,6356,6339,6340,6357,6356,6341,6357,6340,6341,6358,6357,6342,6358,6341,6342,6359,6358,6343,6359,6342,6343,6360,6359,6344,6360,6343,6344,6361,6360,6345,6361,6344,6345,6362,6361,6346,6362,6345,6346,6363,6362,6347,6363,6346,6347,6364,6363,6348,6364,6347,6348,6365,6364,6349,6365,6348,6349,6366,6365,6350,6366,6349,6350,6367,6366,6351,6367,6350,6351,6368,6367,6352,6368,6351,6352,6369,6368,6353,6369,6352,6353,6370,6369,6354,6370,6353,6354,6371,6370,6355,6371,6354,6355,6372,6371,6357,6373,6356,6357,6374,6373,6358,6374,6357,6358,6375,6374,6359,6375,6358,6359,6376,6375,6360,6376,6359,6360,6377,6376,6361,6377,6360,6361,6378,6377,6362,6378,6361,6362,6379,6378,6363,6379,6362,6363,6380,6379,6364,6380,6363,6364,6381,6380,6365,6381,6364,6365,6382,6381,6366,6382,6365,6366,6383,6382,6367,6383,6366,6367,6384,6383,6368,6384,6367,6368,6385,6384,6369,6385,6368,6369,6386,6385,6370,6386,6369,6370,6387,6386,6371,6387,6370,6371,6388,6387,6372,6388,6371,6372,6389,6388,6374,6390,6373,6374,6391,6390,6375,6391,6374,6375,6392,6391,6376,6392,6375,6376,6393,6392,6377,6393,6376,6377,6394,6393,6378,6394,6377,6378,6395,6394,6379,6395,6378,6379,6396,6395,6380,6396,6379,6380,6397,6396,6381,6397,6380,6381,6398,6397,6382,6398,6381,6382,6399,6398,6383,6399,6382,6383,6400,6399,6384,6400,6383,6384,6401,6400,6385,6401,6384,6385,6402,6401,6386,6402,6385,6386,6403,6402,6387,6403,6386,6387,6404,6403,6388,6404,6387,6388,6405,6404,6389,6405,6388,6389,6406,6405,6391,6407,6390,6391,6408,6407,6392,6408,6391,6392,6409,6408,6393,6409,6392,6393,6410,6409,6394,6410,6393,6394,6411,6410,6395,6411,6394,6395,6412,6411,6396,6412,6395,6396,6413,6412,6397,6413,6396,6397,6414,6413,6398,6414,6397,6398,6415,6414,6399,6415,6398,6399,6416,6415,6400,6416,6399,6400,6417,6416,6401,6417,6400,6401,6418,6417,6402,6418,6401,6402,6419,6418,6403,6419,6402,6403,6420,6419,6404,6420,6403,6404,6421,6420,6405,6421,6404,6405,6422,6421,6406,6422,6405,6406,6423,6422,6424,6407,6408,6424,6408,6409,6424,6409,6410,6424,6410,6411,6424,6411,6412,6424,6412,6413,6424,6413,6414,6424,6414,6415,6424,6415,6416,6424,6416,6417,6424,6417,6418,6424,6418,6419,6424,6419,6420,6424,6420,6421,6424,6421,6422,6424,6422,6423],
"-coord":
{ "Coordinate":
{
"@DEF":"c03f39530",
"@point":[0,0,0,0.002,0,-0.008,0.002,0.003,-0.008,0.002,0.006,-0.006,0.002,0.008,-0.003,0.002,0.008,0,0.002,0.008,0.003,0.002,0.006,0.006,0.002,0.003,0.008,0.002,0,0.008,0.002,-0.003,0.008,0.002,-0.006,0.006,0.002,-0.008,0.003,0.002,-0.008,0,0.002,-0.008,-0.003,0.002,-0.006,-0.006,0.002,-0.003,-0.008,0.002,0,-0.008,0.007,0,-0.015,0.007,0.006,-0.014,0.007,0.011,-0.011,0.007,0.014,-0.006,0.007,0.015,0,0.007,0.014,0.006,0.007,0.011,0.011,0.007,0.006,0.014,0.007,0,0.015,0.007,-0.006,0.014,0.007,-0.011,0.011,0.007,-0.014,0.006,0.007,-0.015,0,0.007,-0.014,-0.006,0.007,-0.011,-0.011,0.007,-0.006,-0.014,0.007,0,-0.015,0.015,0,-0.02,0.015,0.007,-0.019,0.015,0.014,-0.014,0.015,0.019,-0.007,0.015,0.02,0,0.015,0.019,0.007,0.015,0.014,0.014,0.015,0.007,0.019,0.015,0,0.02,0.015,-0.007,0.019,0.015,-0.014,0.014,0.015,-0.019,0.007,0.015,-0.02,0,0.015,-0.019,-0.007,0.015,-0.014,-0.014,0.015,-0.007,-0.019,0.015,0,-0.02,0.027,0,-0.023,0.027,0.009,-0.022,0.027,0.017,-0.017,0.027,0.022,-0.009,0.027,0.023,0,0.027,0.022,0.009,0.027,0.017,0.017,0.027,0.009,0.022,0.027,0,0.023,0.027,-0.009,0.022,0.027,-0.017,0.017,0.027,-0.022,0.009,0.027,-0.023,0,0.027,-0.022,-0.009,0.027,-0.017,-0.017,0.027,-0.009,-0.022,0.027,0,-0.023,0.043,0,-0.025,0.043,0.009,-0.023,0.043,0.018,-0.018,0.043,0.023,-0.009,0.043,0.025,0,0.043,0.023,0.009,0.043,0.018,0.018,0.043,0.009,0.023,0.043,0,0.025,0.043,-0.009,0.023,0.043,-0.018,0.018,0.043,-0.023,0.009,0.043,-0.025,0,0.043,-0.023,-0.009,0.043,-0.018,-0.018,0.043,-0.009,-0.023,0.043,0,-0.025,0.06,0,-0.025,0.06,0.009,-0.023,0.06,0.018,-0.018,0.06,0.023,-0.009,0.06,0.025,0,0.06,0.023,0.009,0.06,0.018,0.018,0.06,0.009,0.023,0.06,0,0.025,0.06,-0.009,0.023,0.06,-0.018,0.018,0.06,-0.023,0.009,0.06,-0.025,0,0.06,-0.023,-0.009,0.06,-0.018,-0.018,0.06,-0.009,-0.023,0.06,0,-0.025,0.079,0,-0.025,0.079,0.009,-0.023,0.079,0.018,-0.018,0.079,0.023,-0.009,0.079,0.025,0,0.079,0.023,0.009,0.079,0.018,0.018,0.079,0.009,0.023,0.079,0,0.025,0.079,-0.009,0.023,0.079,-0.018,0.018,0.079,-0.023,0.009,0.079,-0.025,0,0.079,-0.023,-0.009,0.079,-0.018,-0.018,0.079,-0.009,-0.023,0.079,0,-0.025,0.097,0,-0.025,0.097,0.009,-0.023,0.097,0.018,-0.018,0.097,0.023,-0.009,0.097,0.025,0,0.097,0.023,0.009,0.097,0.018,0.018,0.097,0.009,0.023,0.097,0,0.025,0.097,-0.009,0.023,0.097,-0.018,0.018,0.097,-0.023,0.009,0.097,-0.025,0,0.097,-0.023,-0.009,0.097,-0.018,-0.018,0.097,-0.009,-0.023,0.097,0,-0.025,0.115,0,-0.025,0.115,0.009,-0.023,0.115,0.018,-0.018,0.115,0.023,-0.009,0.115,0.025,0,0.115,0.023,0.009,0.115,0.018,0.018,0.115,0.009,0.023,0.115,0,0.025,0.115,-0.009,0.023,0.115,-0.018,0.018,0.115,-0.023,0.009,0.115,-0.025,0,0.115,-0.023,-0.009,0.115,-0.018,-0.018,0.115,-0.009,-0.023,0.115,0,-0.025,0.133,0,-0.025,0.133,0.009,-0.023,0.133,0.018,-0.018,0.133,0.023,-0.009,0.133,0.025,0,0.133,0.023,0.009,0.133,0.018,0.018,0.133,0.009,0.023,0.133,0,0.025,0.133,-0.009,0.023,0.133,-0.018,0.018,0.133,-0.023,0.009,0.133,-0.025,0,0.133,-0.023,-0.009,0.133,-0.018,-0.018,0.133,-0.009,-0.023,0.133,0,-0.025,0.151,0,-0.025,0.151,0.009,-0.023,0.151,0.018,-0.018,0.151,0.023,-0.009,0.151,0.025,0,0.151,0.023,0.009,0.151,0.018,0.018,0.151,0.009,0.023,0.151,0,0.025,0.151,-0.009,0.023,0.151,-0.018,0.018,0.151,-0.023,0.009,0.151,-0.025,0,0.151,-0.023,-0.009,0.151,-0.018,-0.018,0.151,-0.009,-0.023,0.151,0,-0.025,0.166,0,-0.023,0.166,0.009,-0.022,0.166,0.017,-0.017,0.166,0.022,-0.009,0.166,0.023,0,0.166,0.022,0.009,0.166,0.017,0.017,0.166,0.009,0.022,0.166,0,0.023,0.166,-0.009,0.022,0.166,-0.017,0.017,0.166,-0.022,0.009,0.166,-0.023,0,0.166,-0.022,-0.009,0.166,-0.017,-0.017,0.166,-0.009,-0.022,0.166,0,-0.023,0.178,0,-0.02,0.178,0.007,-0.019,0.178,0.014,-0.014,0.178,0.019,-0.007,0.178,0.02,0,0.178,0.019,0.007,0.178,0.014,0.014,0.178,0.007,0.019,0.178,0,0.02,0.178,-0.007,0.019,0.178,-0.014,0.014,0.178,-0.019,0.007,0.178,-0.02,0,0.178,-0.019,-0.007,0.178,-0.014,-0.014,0.178,-0.007,-0.019,0.178,0,-0.02,0.187,0,-0.015,0.187,0.006,-0.014,0.187,0.011,-0.011,0.187,0.014,-0.006,0.187,0.015,0,0.187,0.014,0.006,0.187,0.011,0.011,0.187,0.006,0.014,0.187,0,0.015,0.187,-0.006,0.014,0.187,-0.011,0.011,0.187,-0.014,0.006,0.187,-0.015,0,0.187,-0.014,-0.006,0.187,-0.011,-0.011,0.187,-0.006,-0.014,0.187,0,-0.015,0.192,0,-0.008,0.192,0.003,-0.008,0.192,0.006,-0.006,0.192,0.008,-0.003,0.192,0.008,0,0.192,0.008,0.003,0.192,0.006,0.006,0.192,0.003,0.008,0.192,0,0.008,0.192,-0.003,0.008,0.192,-0.006,0.006,0.192,-0.008,0.003,0.192,-0.008,0,0.192,-0.008,-0.003,0.192,-0.006,-0.006,0.192,-0.003,-0.008,0.192,0,-0.008,0.194,0,0,0,0,0,-0.002,0,-0.008,-0.002,-0.003,-0.008,-0.002,-0.006,-0.006,-0.002,-0.008,-0.003,-0.002,-0.008,0,-0.002,-0.008,0.003,-0.002,-0.006,0.006,-0.002,-0.003,0.008,-0.002,0,0.008,-0.002,0.003,0.008,-0.002,0.006,0.006,-0.002,0.008,0.003,-0.002,0.008,0,-0.002,0.008,-0.003,-0.002,0.006,-0.006,-0.002,0.003,-0.008,-0.002,0,-0.008,-0.007,0,-0.015,-0.007,-0.006,-0.014,-0.007,-0.011,-0.011,-0.007,-0.014,-0.006,-0.007,-0.015,0,-0.007,-0.014,0.006,-0.007,-0.011,0.011,-0.007,-0.006,0.014,-0.007,0,0.015,-0.007,0.006,0.014,-0.007,0.011,0.011,-0.007,0.014,0.006,-0.007,0.015,0,-0.007,0.014,-0.006,-0.007,0.011,-0.011,-0.007,0.006,-0.014,-0.007,0,-0.015,-0.015,0,-0.02,-0.015,-0.007,-0.019,-0.015,-0.014,-0.014,-0.015,-0.019,-0.007,-0.015,-0.02,0,-0.015,-0.019,0.007,-0.015,-0.014,0.014,-0.015,-0.007,0.019,-0.015,0,0.02,-0.015,0.007,0.019,-0.015,0.014,0.014,-0.015,0.019,0.007,-0.015,0.02,0,-0.015,0.019,-0.007,-0.015,0.014,-0.014,-0.015,0.007,-0.019,-0.015,0,-0.02,-0.027,0,-0.023,-0.027,-0.009,-0.022,-0.027,-0.017,-0.017,-0.027,-0.022,-0.009,-0.027,-0.023,0,-0.027,-0.022,0.009,-0.027,-0.017,0.017,-0.027,-0.009,0.022,-0.027,0,0.023,-0.027,0.009,0.022,-0.027,0.017,0.017,-0.027,0.022,0.009,-0.027,0.023,0,-0.027,0.022,-0.009,-0.027,0.017,-0.017,-0.027,0.009,-0.022,-0.027,0,-0.023,-0.043,0,-0.025,-0.043,-0.009,-0.023,-0.043,-0.018,-0.018,-0.043,-0.023,-0.009,-0.043,-0.025,0,-0.043,-0.023,0.009,-0.043,-0.018,0.018,-0.043,-0.009,0.023,-0.043,0,0.025,-0.043,0.009,0.023,-0.043,0.018,0.018,-0.043,0.023,0.009,-0.043,0.025,0,-0.043,0.023,-0.009,-0.043,0.018,-0.018,-0.043,0.009,-0.023,-0.043,0,-0.025,-0.06,0,-0.025,-0.06,-0.009,-0.023,-0.06,-0.018,-0.018,-0.06,-0.023,-0.009,-0.06,-0.025,0,-0.06,-0.023,0.009,-0.06,-0.018,0.018,-0.06,-0.009,0.023,-0.06,0,0.025,-0.06,0.009,0.023,-0.06,0.018,0.018,-0.06,0.023,0.009,-0.06,0.025,0,-0.06,0.023,-0.009,-0.06,0.018,-0.018,-0.06,0.009,-0.023,-0.06,0,-0.025,-0.079,0,-0.025,-0.079,-0.009,-0.023,-0.079,-0.018,-0.018,-0.079,-0.023,-0.009,-0.079,-0.025,0,-0.079,-0.023,0.009,-0.079,-0.018,0.018,-0.079,-0.009,0.023,-0.079,0,0.025,-0.079,0.009,0.023,-0.079,0.018,0.018,-0.079,0.023,0.009,-0.079,0.025,0,-0.079,0.023,-0.009,-0.079,0.018,-0.018,-0.079,0.009,-0.023,-0.079,0,-0.025,-0.097,0,-0.025,-0.097,-0.009,-0.023,-0.097,-0.018,-0.018,-0.097,-0.023,-0.009,-0.097,-0.025,0,-0.097,-0.023,0.009,-0.097,-0.018,0.018,-0.097,-0.009,0.023,-0.097,0,0.025,-0.097,0.009,0.023,-0.097,0.018,0.018,-0.097,0.023,0.009,-0.097,0.025,0,-0.097,0.023,-0.009,-0.097,0.018,-0.018,-0.097,0.009,-0.023,-0.097,0,-0.025,-0.115,0,-0.025,-0.115,-0.009,-0.023,-0.115,-0.018,-0.018,-0.115,-0.023,-0.009,-0.115,-0.025,0,-0.115,-0.023,0.009,-0.115,-0.018,0.018,-0.115,-0.009,0.023,-0.115,0,0.025,-0.115,0.009,0.023,-0.115,0.018,0.018,-0.115,0.023,0.009,-0.115,0.025,0,-0.115,0.023,-0.009,-0.115,0.018,-0.018,-0.115,0.009,-0.023,-0.115,0,-0.025,-0.133,0,-0.025,-0.133,-0.009,-0.023,-0.133,-0.018,-0.018,-0.133,-0.023,-0.009,-0.133,-0.025,0,-0.133,-0.023,0.009,-0.133,-0.018,0.018,-0.133,-0.009,0.023,-0.133,0,0.025,-0.133,0.009,0.023,-0.133,0.018,0.018,-0.133,0.023,0.009,-0.133,0.025,0,-0.133,0.023,-0.009,-0.133,0.018,-0.018,-0.133,0.009,-0.023,-0.133,0,-0.025,-0.151,0,-0.025,-0.151,-0.009,-0.023,-0.151,-0.018,-0.018,-0.151,-0.023,-0.009,-0.151,-0.025,0,-0.151,-0.023,0.009,-0.151,-0.018,0.018,-0.151,-0.009,0.023,-0.151,0,0.025,-0.151,0.009,0.023,-0.151,0.018,0.018,-0.151,0.023,0.009,-0.151,0.025,0,-0.151,0.023,-0.009,-0.151,0.018,-0.018,-0.151,0.009,-0.023,-0.151,0,-0.025,-0.166,0,-0.023,-0.166,-0.009,-0.022,-0.166,-0.017,-0.017,-0.166,-0.022,-0.009,-0.166,-0.023,0,-0.166,-0.022,0.009,-0.166,-0.017,0.017,-0.166,-0.009,0.022,-0.166,0,0.023,-0.166,0.009,0.022,-0.166,0.017,0.017,-0.166,0.022,0.009,-0.166,0.023,0,-0.166,0.022,-0.009,-0.166,0.017,-0.017,-0.166,0.009,-0.022,-0.166,0,-0.023,-0.178,0,-0.02,-0.178,-0.007,-0.019,-0.178,-0.014,-0.014,-0.178,-0.019,-0.007,-0.178,-0.02,0,-0.178,-0.019,0.007,-0.178,-0.014,0.014,-0.178,-0.007,0.019,-0.178,0,0.02,-0.178,0.007,0.019,-0.178,0.014,0.014,-0.178,0.019,0.007,-0.178,0.02,0,-0.178,0.019,-0.007,-0.178,0.014,-0.014,-0.178,0.007,-0.019,-0.178,0,-0.02,-0.187,0,-0.015,-0.187,-0.006,-0.014,-0.187,-0.011,-0.011,-0.187,-0.014,-0.006,-0.187,-0.015,0,-0.187,-0.014,0.006,-0.187,-0.011,0.011,-0.187,-0.006,0.014,-0.187,0,0.015,-0.187,0.006,0.014,-0.187,0.011,0.011,-0.187,0.014,0.006,-0.187,0.015,0,-0.187,0.014,-0.006,-0.187,0.011,-0.011,-0.187,0.006,-0.014,-0.187,0,-0.015,-0.192,0,-0.008,-0.192,-0.003,-0.008,-0.192,-0.006,-0.006,-0.192,-0.008,-0.003,-0.192,-0.008,0,-0.192,-0.008,0.003,-0.192,-0.006,0.006,-0.192,-0.003,0.008,-0.192,0,0.008,-0.192,0.003,0.008,-0.192,0.006,0.006,-0.192,0.008,0.003,-0.192,0.008,0,-0.192,0.008,-0.003,-0.192,0.006,-0.006,-0.192,0.003,-0.008,-0.192,0,-0.008,-0.194,0,0,0,0,0,0,-0.001,-0.009,-0.003,-0.001,-0.008,-0.006,0,-0.006,-0.008,0.001,-0.004,-0.008,0.002,-0.001,-0.008,0.003,0.002,-0.006,0.004,0.005,-0.003,0.004,0.007,0,0.004,0.007,0.003,0.004,0.007,0.006,0.004,0.005,0.008,0.003,0.002,0.008,0.002,-0.001,0.008,0.001,-0.004,0.006,0,-0.006,0.003,-0.001,-0.008,0,-0.001,-0.009,0,0.002,-0.017,-0.006,0.002,-0.016,-0.011,0.003,-0.012,-0.014,0.005,-0.008,-0.015,0.007,-0.002,-0.014,0.009,0.003,-0.011,0.01,0.008,-0.006,0.011,0.011,0,0.012,0.012,0.006,0.011,0.011,0.011,0.01,0.008,0.014,0.009,0.003,0.015,0.007,-0.002,0.014,0.005,-0.008,0.011,0.003,-0.012,0.006,0.002,-0.016,0,0.002,-0.017,0,0.009,-0.024,-0.007,0.009,-0.023,-0.014,0.011,-0.019,-0.019,0.013,-0.012,-0.02,0.015,-0.005,-0.019,0.018,0.002,-0.014,0.02,0.008,-0.007,0.021,0.013,0,0.022,0.014,0.007,0.021,0.013,0.014,0.02,0.008,0.019,0.018,0.002,0.02,0.015,-0.005,0.019,0.013,-0.012,0.014,0.011,-0.019,0.007,0.009,-0.023,0,0.009,-0.024,0,0.02,-0.031,-0.009,0.02,-0.03,-0.017,0.022,-0.025,-0.022,0.024,-0.017,-0.023,0.027,-0.009,-0.022,0.03,-0.001,-0.017,0.032,0.007,-0.009,0.034,0.012,0,0.035,0.013,0.009,0.034,0.012,0.017,0.032,0.007,0.022,0.03,-0.001,0.023,0.027,-0.009,0.022,0.024,-0.017,0.017,0.022,-0.025,0.009,0.02,-0.03,0,0.02,-0.031,0,0.035,-0.038,-0.009,0.035,-0.036,-0.018,0.037,-0.031,-0.023,0.04,-0.023,-0.025,0.043,-0.014,-0.023,0.045,-0.005,-0.018,0.048,0.003,-0.009,0.05,0.008,0,0.05,0.009,0.009,0.05,0.008,0.018,0.048,0.003,0.023,0.045,-0.005,0.025,0.043,-0.014,0.023,0.04,-0.023,0.018,0.037,-0.031,0.009,0.035,-0.036,0,0.035,-0.038,0,0.053,-0.044,-0.009,0.053,-0.042,-0.018,0.055,-0.037,-0.023,0.058,-0.029,-0.025,0.06,-0.02,-0.023,0.063,-0.011,-0.018,0.066,-0.003,-0.009,0.068,0.002,0,0.068,0.004,0.009,0.068,0.002,0.018,0.066,-0.003,0.023,0.063,-0.011,0.025,0.06,-0.02,0.023,0.058,-0.029,0.018,0.055,-0.037,0.009,0.053,-0.042,0,0.053,-0.044,0,0.071,-0.05,-0.009,0.071,-0.048,-0.018,0.073,-0.043,-0.023,0.076,-0.035,-0.025,0.079,-0.026,-0.023,0.082,-0.017,-0.018,0.084,-0.009,-0.009,0.086,-0.004,0,0.087,-0.002,0.009,0.086,-0.004,0.018,0.084,-0.009,0.023,0.082,-0.017,0.025,0.079,-0.026,0.023,0.076,-0.035,0.018,0.073,-0.043,0.009,0.071,-0.048,0,0.071,-0.05,0,0.089,-0.056,-0.009,0.089,-0.054,-0.018,0.091,-0.049,-0.023,0.094,-0.041,-0.025,0.097,-0.032,-0.023,0.1,-0.024,-0.018,0.102,-0.015,-0.009,0.104,-0.01,0,0.105,-0.009,0.009,0.104,-0.01,0.018,0.102,-0.015,0.023,0.1,-0.024,0.025,0.097,-0.032,0.023,0.094,-0.041,0.018,0.091,-0.049,0.009,0.089,-0.054,0,0.089,-0.056,0,0.107,-0.062,-0.009,0.108,-0.06,-0.018,0.109,-0.055,-0.023,0.112,-0.047,-0.025,0.115,-0.038,-0.023,0.118,-0.03,-0.018,0.121,-0.022,-0.009,0.122,-0.016,0,0.123,-0.015,0.009,0.122,-0.016,0.018,0.121,-0.022,0.023,0.118,-0.03,0.025,0.115,-0.038,0.023,0.112,-0.047,0.018,0.109,-0.055,0.009,0.108,-0.06,0,0.107,-0.062,0,0.125,-0.068,-0.009,0.126,-0.066,-0.018,0.127,-0.061,-0.023,0.13,-0.053,-0.025,0.133,-0.044,-0.023,0.136,-0.036,-0.018,0.139,-0.028,-0.009,0.14,-0.022,0,0.141,-0.021,0.009,0.14,-0.022,0.018,0.139,-0.028,0.023,0.136,-0.036,0.025,0.133,-0.044,0.023,0.13,-0.053,0.018,0.127,-0.061,0.009,0.126,-0.066,0,0.125,-0.068,0,0.143,-0.074,-0.009,0.144,-0.072,-0.018,0.145,-0.067,-0.023,0.148,-0.059,-0.025,0.151,-0.05,-0.023,0.154,-0.042,-0.018,0.157,-0.034,-0.009,0.158,-0.028,0,0.159,-0.027,0.009,0.158,-0.028,0.018,0.157,-0.034,0.023,0.154,-0.042,0.025,0.151,-0.05,0.023,0.148,-0.059,0.018,0.145,-0.067,0.009,0.144,-0.072,0,0.143,-0.074,0,0.159,-0.078,-0.009,0.159,-0.076,-0.017,0.161,-0.071,-0.022,0.164,-0.064,-0.023,0.166,-0.055,-0.022,0.169,-0.047,-0.017,0.172,-0.04,-0.009,0.173,-0.035,0,0.174,-0.033,0.009,0.173,-0.035,0.017,0.172,-0.04,0.022,0.169,-0.047,0.023,0.166,-0.055,0.022,0.164,-0.064,0.017,0.161,-0.071,0.009,0.159,-0.076,0,0.159,-0.078,0,0.172,-0.079,-0.007,0.172,-0.077,-0.014,0.174,-0.073,-0.019,0.176,-0.066,-0.02,0.178,-0.059,-0.019,0.181,-0.052,-0.014,0.183,-0.046,-0.007,0.184,-0.042,0,0.185,-0.04,0.007,0.184,-0.042,0.014,0.183,-0.046,0.019,0.181,-0.052,0.02,0.178,-0.059,0.019,0.176,-0.066,0.014,0.174,-0.073,0.007,0.172,-0.077,0,0.172,-0.079,0,0.182,-0.077,-0.006,0.182,-0.076,-0.011,0.183,-0.072,-0.014,0.185,-0.068,-0.015,0.187,-0.062,-0.014,0.189,-0.057,-0.011,0.19,-0.052,-0.006,0.191,-0.049,0,0.192,-0.048,0.006,0.191,-0.049,0.011,0.19,-0.052,0.014,0.189,-0.057,0.015,0.187,-0.062,0.014,0.185,-0.068,0.011,0.183,-0.072,0.006,0.182,-0.076,0,0.182,-0.077,0,0.189,-0.072,-0.003,0.189,-0.071,-0.006,0.19,-0.07,-0.008,0.191,-0.067,-0.008,0.192,-0.064,-0.008,0.193,-0.061,-0.006,0.194,-0.058,-0.003,0.194,-0.056,0,0.195,-0.056,0.003,0.194,-0.056,0.006,0.194,-0.058,0.008,0.193,-0.061,0.008,0.192,-0.064,0.008,0.191,-0.067,0.006,0.19,-0.07,0.003,0.189,-0.071,0,0.189,-0.072,0,0.194,-0.065,0.194,0,0,0.194,-0.01,-0.008,0.197,-0.01,-0.008,0.2,-0.01,-0.006,0.201,-0.01,-0.003,0.202,-0.01,0,0.201,-0.01,0.003,0.2,-0.01,0.006,0.197,-0.01,0.008,0.194,-0.01,0.008,0.19,-0.01,0.008,0.188,-0.01,0.006,0.186,-0.01,0.003,0.185,-0.01,0,0.186,-0.01,-0.003,0.188,-0.01,-0.006,0.19,-0.01,-0.008,0.194,-0.01,-0.008,0.194,-0.04,-0.015,0.199,-0.04,-0.014,0.204,-0.04,-0.011,0.208,-0.04,-0.006,0.209,-0.04,0,0.208,-0.04,0.006,0.204,-0.04,0.011,0.199,-0.04,0.014,0.194,-0.04,0.015,0.188,-0.04,0.014,0.183,-0.04,0.011,0.179,-0.04,0.006,0.178,-0.04,0,0.179,-0.04,-0.006,0.183,-0.04,-0.011,0.188,-0.04,-0.014,0.194,-0.04,-0.015,0.194,-0.089,-0.02,0.201,-0.089,-0.019,0.208,-0.089,-0.014,0.212,-0.089,-0.007,0.214,-0.089,0,0.212,-0.089,0.007,0.208,-0.089,0.014,0.201,-0.089,0.019,0.194,-0.089,0.02,0.186,-0.089,0.019,0.179,-0.089,0.014,0.175,-0.089,0.007,0.173,-0.089,0,0.175,-0.089,-0.007,0.179,-0.089,-0.014,0.186,-0.089,-0.019,0.194,-0.089,-0.02,0.194,-0.159,-0.023,0.202,-0.159,-0.022,0.21,-0.159,-0.017,0.215,-0.159,-0.009,0.217,-0.159,0,0.215,-0.159,0.009,0.21,-0.159,0.017,0.202,-0.159,0.022,0.194,-0.159,0.023,0.185,-0.159,0.022,0.177,-0.159,0.017,0.172,-0.159,0.009,0.17,-0.159,0,0.172,-0.159,-0.009,0.177,-0.159,-0.017,0.185,-0.159,-0.022,0.194,-0.159,-0.023,0.194,-0.248,-0.025,0.203,-0.248,-0.023,0.211,-0.248,-0.018,0.217,-0.248,-0.009,0.218,-0.248,0,0.217,-0.248,0.009,0.211,-0.248,0.018,0.203,-0.248,0.023,0.194,-0.248,0.025,0.184,-0.248,0.023,0.176,-0.248,0.018,0.17,-0.248,0.009,0.169,-0.248,0,0.17,-0.248,-0.009,0.176,-0.248,-0.018,0.184,-0.248,-0.023,0.194,-0.248,-0.025,0.194,-0.353,-0.025,0.203,-0.353,-0.023,0.211,-0.353,-0.018,0.217,-0.353,-0.009,0.219,-0.353,0,0.217,-0.353,0.009,0.211,-0.353,0.018,0.203,-0.353,0.023,0.194,-0.353,0.025,0.184,-0.353,0.023,0.176,-0.353,0.018,0.17,-0.353,0.009,0.169,-0.353,0,0.17,-0.353,-0.009,0.176,-0.353,-0.018,0.184,-0.353,-0.023,0.194,-0.353,-0.025,0.194,-0.459,-0.025,0.203,-0.459,-0.023,0.211,-0.459,-0.018,0.217,-0.459,-0.009,0.219,-0.459,0,0.217,-0.459,0.009,0.211,-0.459,0.018,0.203,-0.459,0.023,0.194,-0.459,0.025,0.184,-0.459,0.023,0.176,-0.459,0.018,0.17,-0.459,0.009,0.169,-0.459,0,0.17,-0.459,-0.009,0.176,-0.459,-0.018,0.184,-0.459,-0.023,0.194,-0.459,-0.025,0.194,-0.565,-0.025,0.203,-0.565,-0.023,0.211,-0.565,-0.018,0.217,-0.565,-0.009,0.219,-0.565,0,0.217,-0.565,0.009,0.211,-0.565,0.018,0.203,-0.565,0.023,0.194,-0.565,0.025,0.184,-0.565,0.023,0.176,-0.565,0.018,0.17,-0.565,0.009,0.169,-0.565,0,0.17,-0.565,-0.009,0.176,-0.565,-0.018,0.184,-0.565,-0.023,0.194,-0.565,-0.025,0.194,-0.67,-0.025,0.203,-0.67,-0.023,0.211,-0.67,-0.018,0.217,-0.67,-0.009,0.219,-0.67,0,0.217,-0.67,0.009,0.211,-0.67,0.018,0.203,-0.67,0.023,0.194,-0.67,0.025,0.184,-0.67,0.023,0.176,-0.67,0.018,0.17,-0.67,0.009,0.169,-0.67,0,0.17,-0.67,-0.009,0.176,-0.67,-0.018,0.184,-0.67,-0.023,0.194,-0.67,-0.025,0.194,-0.776,-0.025,0.203,-0.776,-0.023,0.211,-0.776,-0.018,0.217,-0.776,-0.009,0.219,-0.776,0,0.217,-0.776,0.009,0.211,-0.776,0.018,0.203,-0.776,0.023,0.194,-0.776,0.025,0.184,-0.776,0.023,0.176,-0.776,0.018,0.17,-0.776,0.009,0.169,-0.776,0,0.17,-0.776,-0.009,0.176,-0.776,-0.018,0.184,-0.776,-0.023,0.194,-0.776,-0.025,0.194,-0.881,-0.025,0.203,-0.881,-0.023,0.211,-0.881,-0.018,0.217,-0.881,-0.009,0.218,-0.881,0,0.217,-0.881,0.009,0.211,-0.881,0.018,0.203,-0.881,0.023,0.194,-0.881,0.025,0.184,-0.881,0.023,0.176,-0.881,0.018,0.17,-0.881,0.009,0.169,-0.881,0,0.17,-0.881,-0.009,0.176,-0.881,-0.018,0.184,-0.881,-0.023,0.194,-0.881,-0.025,0.194,-0.97,-0.023,0.202,-0.97,-0.022,0.21,-0.97,-0.017,0.215,-0.97,-0.009,0.217,-0.97,0,0.215,-0.97,0.009,0.21,-0.97,0.017,0.202,-0.97,0.022,0.194,-0.97,0.023,0.185,-0.97,0.022,0.177,-0.97,0.017,0.172,-0.97,0.009,0.17,-0.97,0,0.172,-0.97,-0.009,0.177,-0.97,-0.017,0.185,-0.97,-0.022,0.194,-0.97,-0.023,0.194,-1.04,-0.02,0.201,-1.04,-0.019,0.208,-1.04,-0.014,0.212,-1.04,-0.007,0.214,-1.04,0,0.212,-1.04,0.007,0.208,-1.04,0.014,0.201,-1.04,0.019,0.194,-1.04,0.02,0.186,-1.04,0.019,0.179,-1.04,0.014,0.175,-1.04,0.007,0.173,-1.04,0,0.175,-1.04,-0.007,0.179,-1.04,-0.014,0.186,-1.04,-0.019,0.194,-1.04,-0.02,0.194,-1.089,-0.015,0.199,-1.089,-0.014,0.204,-1.089,-0.011,0.208,-1.089,-0.006,0.209,-1.089,0,0.208,-1.089,0.006,0.204,-1.089,0.011,0.199,-1.089,0.014,0.194,-1.089,0.015,0.188,-1.089,0.014,0.183,-1.089,0.011,0.179,-1.089,0.006,0.178,-1.089,0,0.179,-1.089,-0.006,0.183,-1.089,-0.011,0.188,-1.089,-0.014,0.194,-1.089,-0.015,0.194,-1.119,-0.008,0.197,-1.119,-0.008,0.2,-1.119,-0.006,0.201,-1.119,-0.003,0.202,-1.119,0,0.201,-1.119,0.003,0.2,-1.119,0.006,0.197,-1.119,0.008,0.194,-1.119,0.008,0.19,-1.119,0.008,0.188,-1.119,0.006,0.186,-1.119,0.003,0.185,-1.119,0,0.186,-1.119,-0.003,0.188,-1.119,-0.006,0.19,-1.119,-0.008,0.194,-1.119,-0.008,0.194,-1.129,0,0.194,-1.129,0,0.194,-1.138,-0.008,0.197,-1.138,-0.008,0.2,-1.138,-0.006,0.201,-1.138,-0.003,0.202,-1.138,0,0.201,-1.138,0.003,0.2,-1.138,0.006,0.197,-1.138,0.008,0.194,-1.138,0.008,0.19,-1.138,0.008,0.188,-1.138,0.006,0.186,-1.138,0.003,0.185,-1.138,0,0.186,-1.138,-0.003,0.188,-1.138,-0.006,0.19,-1.138,-0.008,0.194,-1.138,-0.008,0.194,-1.164,-0.015,0.199,-1.164,-0.014,0.204,-1.164,-0.011,0.208,-1.164,-0.006,0.209,-1.164,0,0.208,-1.164,0.006,0.204,-1.164,0.011,0.199,-1.164,0.014,0.194,-1.164,0.015,0.188,-1.164,0.014,0.183,-1.164,0.011,0.179,-1.164,0.006,0.178,-1.164,0,0.179,-1.164,-0.006,0.183,-1.164,-0.011,0.188,-1.164,-0.014,0.194,-1.164,-0.015,0.194,-1.208,-0.02,0.201,-1.208,-0.019,0.208,-1.208,-0.014,0.212,-1.208,-0.007,0.214,-1.208,0,0.212,-1.208,0.007,0.208,-1.208,0.014,0.201,-1.208,0.019,0.194,-1.208,0.02,0.186,-1.208,0.019,0.179,-1.208,0.014,0.175,-1.208,0.007,0.173,-1.208,0,0.175,-1.208,-0.007,0.179,-1.208,-0.014,0.186,-1.208,-0.019,0.194,-1.208,-0.02,0.194,-1.27,-0.023,0.202,-1.27,-0.022,0.21,-1.27,-0.017,0.215,-1.27,-0.009,0.217,-1.27,0,0.215,-1.27,0.009,0.21,-1.27,0.017,0.202,-1.27,0.022,0.194,-1.27,0.023,0.185,-1.27,0.022,0.177,-1.27,0.017,0.172,-1.27,0.009,0.17,-1.27,0,0.172,-1.27,-0.009,0.177,-1.27,-0.017,0.185,-1.27,-0.022,0.194,-1.27,-0.023,0.194,-1.349,-0.025,0.203,-1.349,-0.023,0.211,-1.349,-0.018,0.217,-1.349,-0.009,0.218,-1.349,0,0.217,-1.349,0.009,0.211,-1.349,0.018,0.203,-1.349,0.023,0.194,-1.349,0.025,0.184,-1.349,0.023,0.176,-1.349,0.018,0.17,-1.349,0.009,0.169,-1.349,0,0.17,-1.349,-0.009,0.176,-1.349,-0.018,0.184,-1.349,-0.023,0.194,-1.349,-0.025,0.194,-1.442,-0.025,0.203,-1.442,-0.023,0.211,-1.442,-0.018,0.217,-1.442,-0.009,0.219,-1.442,0,0.217,-1.442,0.009,0.211,-1.442,0.018,0.203,-1.442,0.023,0.194,-1.442,0.025,0.184,-1.442,0.023,0.176,-1.442,0.018,0.17,-1.442,0.009,0.169,-1.442,0,0.17,-1.442,-0.009,0.176,-1.442,-0.018,0.184,-1.442,-0.023,0.194,-1.442,-0.025,0.194,-1.535,-0.025,0.203,-1.535,-0.023,0.211,-1.535,-0.018,0.217,-1.535,-0.009,0.219,-1.535,0,0.217,-1.535,0.009,0.211,-1.535,0.018,0.203,-1.535,0.023,0.194,-1.535,0.025,0.184,-1.535,0.023,0.176,-1.535,0.018,0.17,-1.535,0.009,0.169,-1.535,0,0.17,-1.535,-0.009,0.176,-1.535,-0.018,0.184,-1.535,-0.023,0.194,-1.535,-0.025,0.194,-1.629,-0.025,0.203,-1.629,-0.023,0.211,-1.629,-0.018,0.217,-1.629,-0.009,0.219,-1.629,0,0.217,-1.629,0.009,0.211,-1.629,0.018,0.203,-1.629,0.023,0.194,-1.629,0.025,0.184,-1.629,0.023,0.176,-1.629,0.018,0.17,-1.629,0.009,0.169,-1.629,0,0.17,-1.629,-0.009,0.176,-1.629,-0.018,0.184,-1.629,-0.023,0.194,-1.629,-0.025,0.194,-1.723,-0.025,0.203,-1.723,-0.023,0.211,-1.723,-0.018,0.217,-1.723,-0.009,0.219,-1.723,0,0.217,-1.723,0.009,0.211,-1.723,0.018,0.203,-1.723,0.023,0.194,-1.723,0.025,0.184,-1.723,0.023,0.176,-1.723,0.018,0.17,-1.723,0.009,0.169,-1.723,0,0.17,-1.723,-0.009,0.176,-1.723,-0.018,0.184,-1.723,-0.023,0.194,-1.723,-0.025,0.194,-1.817,-0.025,0.203,-1.817,-0.023,0.211,-1.817,-0.018,0.217,-1.817,-0.009,0.219,-1.817,0,0.217,-1.817,0.009,0.211,-1.817,0.018,0.203,-1.817,0.023,0.194,-1.817,0.025,0.184,-1.817,0.023,0.176,-1.817,0.018,0.17,-1.817,0.009,0.169,-1.817,0,0.17,-1.817,-0.009,0.176,-1.817,-0.018,0.184,-1.817,-0.023,0.194,-1.817,-0.025,0.194,-1.909,-0.025,0.203,-1.909,-0.023,0.211,-1.909,-0.018,0.217,-1.909,-0.009,0.218,-1.909,0,0.217,-1.909,0.009,0.211,-1.909,0.018,0.203,-1.909,0.023,0.194,-1.909,0.025,0.184,-1.909,0.023,0.176,-1.909,0.018,0.17,-1.909,0.009,0.169,-1.909,0,0.17,-1.909,-0.009,0.176,-1.909,-0.018,0.184,-1.909,-0.023,0.194,-1.909,-0.025,0.194,-1.988,-0.023,0.202,-1.988,-0.022,0.21,-1.988,-0.017,0.215,-1.988,-0.009,0.217,-1.988,0,0.215,-1.988,0.009,0.21,-1.988,0.017,0.202,-1.988,0.022,0.194,-1.988,0.023,0.185,-1.988,0.022,0.177,-1.988,0.017,0.172,-1.988,0.009,0.17,-1.988,0,0.172,-1.988,-0.009,0.177,-1.988,-0.017,0.185,-1.988,-0.022,0.194,-1.988,-0.023,0.194,-2.05,-0.02,0.201,-2.05,-0.019,0.208,-2.05,-0.014,0.212,-2.05,-0.007,0.214,-2.05,0,0.212,-2.05,0.007,0.208,-2.05,0.014,0.201,-2.05,0.019,0.194,-2.05,0.02,0.186,-2.05,0.019,0.179,-2.05,0.014,0.175,-2.05,0.007,0.173,-2.05,0,0.175,-2.05,-0.007,0.179,-2.05,-0.014,0.186,-2.05,-0.019,0.194,-2.05,-0.02,0.194,-2.094,-0.015,0.199,-2.094,-0.014,0.204,-2.094,-0.011,0.208,-2.094,-0.006,0.209,-2.094,0,0.208,-2.094,0.006,0.204,-2.094,0.011,0.199,-2.094,0.014,0.194,-2.094,0.015,0.188,-2.094,0.014,0.183,-2.094,0.011,0.179,-2.094,0.006,0.178,-2.094,0,0.179,-2.094,-0.006,0.183,-2.094,-0.011,0.188,-2.094,-0.014,0.194,-2.094,-0.015,0.194,-2.12,-0.008,0.197,-2.12,-0.008,0.2,-2.12,-0.006,0.201,-2.12,-0.003,0.202,-2.12,0,0.201,-2.12,0.003,0.2,-2.12,0.006,0.197,-2.12,0.008,0.194,-2.12,0.008,0.19,-2.12,0.008,0.188,-2.12,0.006,0.186,-2.12,0.003,0.185,-2.12,0,0.186,-2.12,-0.003,0.188,-2.12,-0.006,0.19,-2.12,-0.008,0.194,-2.12,-0.008,0.194,-2.129,0,0.194,-2.129,0,0.194,-2.134,0.007,0.19,-2.134,0.006,0.188,-2.133,0.005,0.186,-2.132,0.002,0.185,-2.131,-0.001,0.186,-2.13,-0.004,0.188,-2.129,-0.006,0.19,-2.128,-0.008,0.194,-2.128,-0.009,0.197,-2.128,-0.008,0.2,-2.129,-0.006,0.201,-2.13,-0.004,0.202,-2.131,-0.001,0.201,-2.132,0.002,0.2,-2.133,0.005,0.197,-2.134,0.006,0.194,-2.134,0.007,0.194,-2.143,0.011,0.188,-2.143,0.01,0.183,-2.141,0.006,0.179,-2.139,0.002,0.178,-2.137,-0.003,0.179,-2.135,-0.009,0.183,-2.133,-0.013,0.188,-2.131,-0.016,0.194,-2.131,-0.017,0.199,-2.131,-0.016,0.204,-2.133,-0.013,0.208,-2.135,-0.009,0.209,-2.137,-0.003,0.208,-2.139,0.002,0.204,-2.141,0.006,0.199,-2.143,0.01,0.194,-2.143,0.011,0.194,-2.155,0.011,0.186,-2.154,0.01,0.179,-2.153,0.005,0.175,-2.15,-0.001,0.173,-2.147,-0.008,0.175,-2.144,-0.014,0.179,-2.141,-0.021,0.186,-2.139,-0.025,0.194,-2.139,-0.026,0.201,-2.139,-0.025,0.208,-2.141,-0.021,0.212,-2.144,-0.014,0.214,-2.147,-0.008,0.212,-2.15,-0.001,0.208,-2.153,0.005,0.201,-2.154,0.01,0.194,-2.155,0.011,0.194,-2.17,0.008,0.185,-2.169,0.006,0.177,-2.167,0.002,0.172,-2.164,-0.006,0.17,-2.161,-0.014,0.172,-2.157,-0.022,0.177,-2.154,-0.029,0.185,-2.152,-0.034,0.194,-2.152,-0.035,0.202,-2.152,-0.034,0.21,-2.154,-0.029,0.215,-2.157,-0.022,0.217,-2.161,-0.014,0.215,-2.164,-0.006,0.21,-2.167,0.002,0.202,-2.169,0.006,0.194,-2.17,0.008,0.194,-2.188,0.002,0.184,-2.188,0,0.176,-2.186,-0.005,0.17,-2.182,-0.013,0.169,-2.179,-0.021,0.17,-2.175,-0.03,0.176,-2.172,-0.037,0.184,-2.17,-0.043,0.194,-2.169,-0.044,0.203,-2.17,-0.043,0.211,-2.172,-0.037,0.217,-2.175,-0.03,0.218,-2.179,-0.021,0.217,-2.182,-0.013,0.211,-2.186,-0.005,0.203,-2.188,0,0.194,-2.188,0.002,0.194,-2.209,-0.007,0.184,-2.209,-0.009,0.176,-2.207,-0.014,0.17,-2.203,-0.022,0.169,-2.2,-0.03,0.17,-2.196,-0.039,0.176,-2.193,-0.046,0.184,-2.19,-0.052,0.194,-2.19,-0.053,0.203,-2.19,-0.052,0.211,-2.193,-0.046,0.217,-2.196,-0.039,0.219,-2.2,-0.03,0.217,-2.203,-0.022,0.211,-2.207,-0.014,0.203,-2.209,-0.009,0.194,-2.209,-0.007,0.194,-2.231,-0.016,0.184,-2.23,-0.018,0.176,-2.228,-0.023,0.17,-2.224,-0.031,0.169,-2.221,-0.039,0.17,-2.217,-0.048,0.176,-2.214,-0.056,0.184,-2.212,-0.061,0.194,-2.211,-0.062,0.203,-2.212,-0.061,0.211,-2.214,-0.056,0.217,-2.217,-0.048,0.219,-2.221,-0.039,0.217,-2.224,-0.031,0.211,-2.228,-0.023,0.203,-2.23,-0.018,0.194,-2.231,-0.016,0.194,-2.252,-0.025,0.184,-2.251,-0.027,0.176,-2.249,-0.032,0.17,-2.246,-0.04,0.169,-2.242,-0.048,0.17,-2.238,-0.057,0.176,-2.235,-0.065,0.184,-2.233,-0.07,0.194,-2.232,-0.071,0.203,-2.233,-0.07,0.211,-2.235,-0.065,0.217,-2.238,-0.057,0.219,-2.242,-0.048,0.217,-2.246,-0.04,0.211,-2.249,-0.032,0.203,-2.251,-0.027,0.194,-2.252,-0.025,0.194,-2.273,-0.034,0.184,-2.272,-0.036,0.176,-2.27,-0.041,0.17,-2.267,-0.049,0.169,-2.263,-0.057,0.17,-2.259,-0.066,0.176,-2.256,-0.074,0.184,-2.254,-0.079,0.194,-2.253,-0.08,0.203,-2.254,-0.079,0.211,-2.256,-0.074,0.217,-2.259,-0.066,0.219,-2.263,-0.057,0.217,-2.267,-0.049,0.211,-2.27,-0.041,0.203,-2.272,-0.036,0.194,-2.273,-0.034,0.194,-2.294,-0.044,0.184,-2.293,-0.045,0.176,-2.291,-0.05,0.17,-2.288,-0.058,0.169,-2.284,-0.067,0.17,-2.281,-0.075,0.176,-2.277,-0.083,0.184,-2.275,-0.088,0.194,-2.274,-0.09,0.203,-2.275,-0.088,0.211,-2.277,-0.083,0.217,-2.281,-0.075,0.219,-2.284,-0.067,0.217,-2.288,-0.058,0.211,-2.291,-0.05,0.203,-2.293,-0.045,0.194,-2.294,-0.044,0.194,-2.315,-0.053,0.184,-2.314,-0.054,0.176,-2.312,-0.059,0.17,-2.309,-0.067,0.169,-2.305,-0.076,0.17,-2.302,-0.084,0.176,-2.298,-0.092,0.184,-2.296,-0.097,0.194,-2.295,-0.098,0.203,-2.296,-0.097,0.211,-2.298,-0.092,0.217,-2.302,-0.084,0.218,-2.305,-0.076,0.217,-2.309,-0.067,0.211,-2.312,-0.059,0.203,-2.314,-0.054,0.194,-2.315,-0.053,0.194,-2.332,-0.062,0.185,-2.332,-0.063,0.177,-2.33,-0.068,0.172,-2.326,-0.075,0.17,-2.323,-0.083,0.172,-2.32,-0.091,0.177,-2.317,-0.098,0.185,-2.315,-0.103,0.194,-2.314,-0.105,0.202,-2.315,-0.103,0.21,-2.317,-0.098,0.215,-2.32,-0.091,0.217,-2.323,-0.083,0.215,-2.326,-0.075,0.21,-2.33,-0.068,0.202,-2.332,-0.063,0.194,-2.332,-0.062,0.194,-2.345,-0.071,0.186,-2.344,-0.072,0.179,-2.343,-0.076,0.175,-2.34,-0.082,0.173,-2.337,-0.089,0.175,-2.334,-0.096,0.179,-2.331,-0.102,0.186,-2.33,-0.106,0.194,-2.329,-0.108,0.201,-2.33,-0.106,0.208,-2.331,-0.102,0.212,-2.334,-0.096,0.214,-2.337,-0.089,0.212,-2.34,-0.082,0.208,-2.343,-0.076,0.201,-2.344,-0.072,0.194,-2.345,-0.071,0.194,-2.353,-0.079,0.188,-2.352,-0.08,0.183,-2.351,-0.083,0.179,-2.349,-0.088,0.178,-2.347,-0.093,0.179,-2.345,-0.099,0.183,-2.343,-0.103,0.188,-2.341,-0.106,0.194,-2.341,-0.107,0.199,-2.341,-0.106,0.204,-2.343,-0.103,0.208,-2.345,-0.099,0.209,-2.347,-0.093,0.208,-2.349,-0.088,0.204,-2.351,-0.083,0.199,-2.352,-0.08,0.194,-2.353,-0.079,0.194,-2.356,-0.088,0.19,-2.356,-0.089,0.188,-2.355,-0.09,0.186,-2.354,-0.093,0.185,-2.353,-0.096,0.186,-2.352,-0.099,0.188,-2.35,-0.101,0.19,-2.35,-0.103,0.194,-2.35,-0.104,0.197,-2.35,-0.103,0.2,-2.35,-0.101,0.201,-2.352,-0.099,0.202,-2.353,-0.096,0.201,-2.354,-0.093,0.2,-2.355,-0.09,0.197,-2.356,-0.089,0.194,-2.356,-0.088,0.194,-2.355,-0.097,0.194,-2.355,-0.097,0.194,-2.346,-0.093,0.19,-2.347,-0.093,0.188,-2.349,-0.093,0.186,-2.352,-0.093,0.185,-2.355,-0.093,0.186,-2.358,-0.093,0.188,-2.361,-0.093,0.19,-2.363,-0.093,0.194,-2.363,-0.093,0.197,-2.363,-0.093,0.2,-2.361,-0.093,0.201,-2.358,-0.093,0.202,-2.355,-0.093,0.201,-2.352,-0.093,0.2,-2.349,-0.093,0.197,-2.347,-0.093,0.194,-2.346,-0.093,0.194,-2.34,-0.083,0.188,-2.341,-0.083,0.183,-2.344,-0.083,0.179,-2.349,-0.083,0.178,-2.355,-0.083,0.179,-2.36,-0.083,0.183,-2.366,-0.083,0.188,-2.369,-0.083,0.194,-2.37,-0.083,0.199,-2.369,-0.083,0.204,-2.366,-0.083,0.208,-2.36,-0.083,0.209,-2.355,-0.083,0.208,-2.349,-0.083,0.204,-2.344,-0.083,0.199,-2.341,-0.083,0.194,-2.34,-0.083,0.194,-2.335,-0.066,0.186,-2.336,-0.066,0.179,-2.341,-0.066,0.175,-2.347,-0.066,0.173,-2.355,-0.066,0.175,-2.362,-0.066,0.179,-2.369,-0.066,0.186,-2.374,-0.066,0.194,-2.375,-0.066,0.201,-2.374,-0.066,0.208,-2.369,-0.066,0.212,-2.362,-0.066,0.214,-2.355,-0.066,0.212,-2.347,-0.066,0.208,-2.341,-0.066,0.201,-2.336,-0.066,0.194,-2.335,-0.066,0.194,-2.331,-0.042,0.185,-2.333,-0.042,0.177,-2.338,-0.042,0.172,-2.346,-0.042,0.17,-2.355,-0.042,0.172,-2.363,-0.042,0.177,-2.371,-0.042,0.185,-2.377,-0.042,0.194,-2.378,-0.042,0.202,-2.377,-0.042,0.21,-2.371,-0.042,0.215,-2.363,-0.042,0.217,-2.355,-0.042,0.215,-2.346,-0.042,0.21,-2.338,-0.042,0.202,-2.333,-0.042,0.194,-2.331,-0.042,0.194,-2.33,-0.012,0.184,-2.332,-0.012,0.176,-2.337,-0.012,0.17,-2.346,-0.012,0.169,-2.355,-0.012,0.17,-2.364,-0.012,0.176,-2.372,-0.012,0.184,-2.378,-0.012,0.194,-2.38,-0.012,0.203,-2.378,-0.012,0.211,-2.372,-0.012,0.217,-2.364,-0.012,0.218,-2.355,-0.012,0.217,-2.346,-0.012,0.211,-2.337,-0.012,0.203,-2.332,-0.012,0.194,-2.33,-0.012,0.194,-2.33,0.024,0.184,-2.332,0.024,0.176,-2.337,0.024,0.17,-2.346,0.024,0.169,-2.355,0.024,0.17,-2.364,0.024,0.176,-2.373,0.024,0.184,-2.378,0.024,0.194,-2.38,0.024,0.203,-2.378,0.024,0.211,-2.373,0.024,0.217,-2.364,0.024,0.219,-2.355,0.024,0.217,-2.346,0.024,0.211,-2.337,0.024,0.203,-2.332,0.024,0.194,-2.33,0.024,0.194,-2.33,0.06,0.184,-2.332,0.06,0.176,-2.337,0.06,0.17,-2.346,0.06,0.169,-2.355,0.06,0.17,-2.364,0.06,0.176,-2.373,0.06,0.184,-2.378,0.06,0.194,-2.38,0.06,0.203,-2.378,0.06,0.211,-2.373,0.06,0.217,-2.364,0.06,0.219,-2.355,0.06,0.217,-2.346,0.06,0.211,-2.337,0.06,0.203,-2.332,0.06,0.194,-2.33,0.06,0.194,-2.33,0.097,0.184,-2.332,0.097,0.176,-2.337,0.097,0.17,-2.346,0.097,0.169,-2.355,0.097,0.17,-2.364,0.097,0.176,-2.373,0.097,0.184,-2.378,0.097,0.194,-2.38,0.097,0.203,-2.378,0.097,0.211,-2.373,0.097,0.217,-2.364,0.097,0.219,-2.355,0.097,0.217,-2.346,0.097,0.211,-2.337,0.097,0.203,-2.332,0.097,0.194,-2.33,0.097,0.194,-2.33,0.133,0.184,-2.332,0.133,0.176,-2.337,0.133,0.17,-2.346,0.133,0.169,-2.355,0.133,0.17,-2.364,0.133,0.176,-2.373,0.133,0.184,-2.378,0.133,0.194,-2.38,0.133,0.203,-2.378,0.133,0.211,-2.373,0.133,0.217,-2.364,0.133,0.219,-2.355,0.133,0.217,-2.346,0.133,0.211,-2.337,0.133,0.203,-2.332,0.133,0.194,-2.33,0.133,0.194,-2.33,0.169,0.184,-2.332,0.169,0.176,-2.337,0.169,0.17,-2.346,0.169,0.169,-2.355,0.169,0.17,-2.364,0.169,0.176,-2.373,0.169,0.184,-2.378,0.169,0.194,-2.38,0.169,0.203,-2.378,0.169,0.211,-2.373,0.169,0.217,-2.364,0.169,0.219,-2.355,0.169,0.217,-2.346,0.169,0.211,-2.337,0.169,0.203,-2.332,0.169,0.194,-2.33,0.169,0.194,-2.33,0.205,0.184,-2.332,0.205,0.176,-2.337,0.205,0.17,-2.346,0.205,0.169,-2.355,0.205,0.17,-2.364,0.205,0.176,-2.372,0.205,0.184,-2.378,0.205,0.194,-2.38,0.205,0.203,-2.378,0.205,0.211,-2.372,0.205,0.217,-2.364,0.205,0.218,-2.355,0.205,0.217,-2.346,0.205,0.211,-2.337,0.205,0.203,-2.332,0.205,0.194,-2.33,0.205,0.194,-2.331,0.236,0.185,-2.333,0.236,0.177,-2.338,0.236,0.172,-2.346,0.236,0.17,-2.355,0.236,0.172,-2.363,0.236,0.177,-2.371,0.236,0.185,-2.377,0.236,0.194,-2.378,0.236,0.202,-2.377,0.236,0.21,-2.371,0.236,0.215,-2.363,0.236,0.217,-2.355,0.236,0.215,-2.346,0.236,0.21,-2.338,0.236,0.202,-2.333,0.236,0.194,-2.331,0.236,0.194,-2.335,0.26,0.186,-2.336,0.26,0.179,-2.341,0.26,0.175,-2.347,0.26,0.173,-2.355,0.26,0.175,-2.362,0.26,0.179,-2.369,0.26,0.186,-2.374,0.26,0.194,-2.375,0.26,0.201,-2.374,0.26,0.208,-2.369,0.26,0.212,-2.362,0.26,0.214,-2.355,0.26,0.212,-2.347,0.26,0.208,-2.341,0.26,0.201,-2.336,0.26,0.194,-2.335,0.26,0.194,-2.34,0.277,0.188,-2.341,0.277,0.183,-2.344,0.277,0.179,-2.349,0.277,0.178,-2.355,0.277,0.179,-2.36,0.277,0.183,-2.366,0.277,0.188,-2.369,0.277,0.194,-2.37,0.277,0.199,-2.369,0.277,0.204,-2.366,0.277,0.208,-2.36,0.277,0.209,-2.355,0.277,0.208,-2.349,0.277,0.204,-2.344,0.277,0.199,-2.341,0.277,0.194,-2.34,0.277,0.194,-2.346,0.287,0.19,-2.347,0.287,0.188,-2.349,0.287,0.186,-2.352,0.287,0.185,-2.355,0.287,0.186,-2.358,0.287,0.188,-2.361,0.287,0.19,-2.363,0.287,0.194,-2.363,0.287,0.197,-2.363,0.287,0.2,-2.361,0.287,0.201,-2.358,0.287,0.202,-2.355,0.287,0.201,-2.352,0.287,0.2,-2.349,0.287,0.197,-2.347,0.287,0.194,-2.346,0.287,0.194,-2.355,0.29,-0.194,0,0,-0.194,-0.01,-0.008,-0.19,-0.01,-0.008,-0.188,-0.01,-0.006,-0.186,-0.01,-0.003,-0.185,-0.01,0,-0.186,-0.01,0.003,-0.188,-0.01,0.006,-0.19,-0.01,0.008,-0.194,-0.01,0.008,-0.197,-0.01,0.008,-0.2,-0.01,0.006,-0.201,-0.01,0.003,-0.202,-0.01,0,-0.201,-0.01,-0.003,-0.2,-0.01,-0.006,-0.197,-0.01,-0.008,-0.194,-0.01,-0.008,-0.194,-0.04,-0.015,-0.188,-0.04,-0.014,-0.183,-0.04,-0.011,-0.179,-0.04,-0.006,-0.178,-0.04,0,-0.179,-0.04,0.006,-0.183,-0.04,0.011,-0.188,-0.04,0.014,-0.194,-0.04,0.015,-0.199,-0.04,0.014,-0.204,-0.04,0.011,-0.208,-0.04,0.006,-0.209,-0.04,0,-0.208,-0.04,-0.006,-0.204,-0.04,-0.011,-0.199,-0.04,-0.014,-0.194,-0.04,-0.015,-0.194,-0.089,-0.02,-0.186,-0.089,-0.019,-0.179,-0.089,-0.014,-0.175,-0.089,-0.007,-0.173,-0.089,0,-0.175,-0.089,0.007,-0.179,-0.089,0.014,-0.186,-0.089,0.019,-0.194,-0.089,0.02,-0.201,-0.089,0.019,-0.208,-0.089,0.014,-0.212,-0.089,0.007,-0.214,-0.089,0,-0.212,-0.089,-0.007,-0.208,-0.089,-0.014,-0.201,-0.089,-0.019,-0.194,-0.089,-0.02,-0.194,-0.159,-0.023,-0.185,-0.159,-0.022,-0.177,-0.159,-0.017,-0.172,-0.159,-0.009,-0.17,-0.159,0,-0.172,-0.159,0.009,-0.177,-0.159,0.017,-0.185,-0.159,0.022,-0.194,-0.159,0.023,-0.202,-0.159,0.022,-0.21,-0.159,0.017,-0.215,-0.159,0.009,-0.217,-0.159,0,-0.215,-0.159,-0.009,-0.21,-0.159,-0.017,-0.202,-0.159,-0.022,-0.194,-0.159,-0.023,-0.194,-0.248,-0.025,-0.184,-0.248,-0.023,-0.176,-0.248,-0.018,-0.17,-0.248,-0.009,-0.169,-0.248,0,-0.17,-0.248,0.009,-0.176,-0.248,0.018,-0.184,-0.248,0.023,-0.194,-0.248,0.025,-0.203,-0.248,0.023,-0.211,-0.248,0.018,-0.217,-0.248,0.009,-0.218,-0.248,0,-0.217,-0.248,-0.009,-0.211,-0.248,-0.018,-0.203,-0.248,-0.023,-0.194,-0.248,-0.025,-0.194,-0.353,-0.025,-0.184,-0.353,-0.023,-0.176,-0.353,-0.018,-0.17,-0.353,-0.009,-0.169,-0.353,0,-0.17,-0.353,0.009,-0.176,-0.353,0.018,-0.184,-0.353,0.023,-0.194,-0.353,0.025,-0.203,-0.353,0.023,-0.211,-0.353,0.018,-0.217,-0.353,0.009,-0.219,-0.353,0,-0.217,-0.353,-0.009,-0.211,-0.353,-0.018,-0.203,-0.353,-0.023,-0.194,-0.353,-0.025,-0.194,-0.459,-0.025,-0.184,-0.459,-0.023,-0.176,-0.459,-0.018,-0.17,-0.459,-0.009,-0.169,-0.459,0,-0.17,-0.459,0.009,-0.176,-0.459,0.018,-0.184,-0.459,0.023,-0.194,-0.459,0.025,-0.203,-0.459,0.023,-0.211,-0.459,0.018,-0.217,-0.459,0.009,-0.219,-0.459,0,-0.217,-0.459,-0.009,-0.211,-0.459,-0.018,-0.203,-0.459,-0.023,-0.194,-0.459,-0.025,-0.194,-0.565,-0.025,-0.184,-0.565,-0.023,-0.176,-0.565,-0.018,-0.17,-0.565,-0.009,-0.169,-0.565,0,-0.17,-0.565,0.009,-0.176,-0.565,0.018,-0.184,-0.565,0.023,-0.194,-0.565,0.025,-0.203,-0.565,0.023,-0.211,-0.565,0.018,-0.217,-0.565,0.009,-0.219,-0.565,0,-0.217,-0.565,-0.009,-0.211,-0.565,-0.018,-0.203,-0.565,-0.023,-0.194,-0.565,-0.025,-0.194,-0.67,-0.025,-0.184,-0.67,-0.023,-0.176,-0.67,-0.018,-0.17,-0.67,-0.009,-0.169,-0.67,0,-0.17,-0.67,0.009,-0.176,-0.67,0.018,-0.184,-0.67,0.023,-0.194,-0.67,0.025,-0.203,-0.67,0.023,-0.211,-0.67,0.018,-0.217,-0.67,0.009,-0.219,-0.67,0,-0.217,-0.67,-0.009,-0.211,-0.67,-0.018,-0.203,-0.67,-0.023,-0.194,-0.67,-0.025,-0.194,-0.776,-0.025,-0.184,-0.776,-0.023,-0.176,-0.776,-0.018,-0.17,-0.776,-0.009,-0.169,-0.776,0,-0.17,-0.776,0.009,-0.176,-0.776,0.018,-0.184,-0.776,0.023,-0.194,-0.776,0.025,-0.203,-0.776,0.023,-0.211,-0.776,0.018,-0.217,-0.776,0.009,-0.219,-0.776,0,-0.217,-0.776,-0.009,-0.211,-0.776,-0.018,-0.203,-0.776,-0.023,-0.194,-0.776,-0.025,-0.194,-0.881,-0.025,-0.184,-0.881,-0.023,-0.176,-0.881,-0.018,-0.17,-0.881,-0.009,-0.169,-0.881,0,-0.17,-0.881,0.009,-0.176,-0.881,0.018,-0.184,-0.881,0.023,-0.194,-0.881,0.025,-0.203,-0.881,0.023,-0.211,-0.881,0.018,-0.217,-0.881,0.009,-0.218,-0.881,0,-0.217,-0.881,-0.009,-0.211,-0.881,-0.018,-0.203,-0.881,-0.023,-0.194,-0.881,-0.025,-0.194,-0.97,-0.023,-0.185,-0.97,-0.022,-0.177,-0.97,-0.017,-0.172,-0.97,-0.009,-0.17,-0.97,0,-0.172,-0.97,0.009,-0.177,-0.97,0.017,-0.185,-0.97,0.022,-0.194,-0.97,0.023,-0.202,-0.97,0.022,-0.21,-0.97,0.017,-0.215,-0.97,0.009,-0.217,-0.97,0,-0.215,-0.97,-0.009,-0.21,-0.97,-0.017,-0.202,-0.97,-0.022,-0.194,-0.97,-0.023,-0.194,-1.04,-0.02,-0.186,-1.04,-0.019,-0.179,-1.04,-0.014,-0.175,-1.04,-0.007,-0.173,-1.04,0,-0.175,-1.04,0.007,-0.179,-1.04,0.014,-0.186,-1.04,0.019,-0.194,-1.04,0.02,-0.201,-1.04,0.019,-0.208,-1.04,0.014,-0.212,-1.04,0.007,-0.214,-1.04,0,-0.212,-1.04,-0.007,-0.208,-1.04,-0.014,-0.201,-1.04,-0.019,-0.194,-1.04,-0.02,-0.194,-1.089,-0.015,-0.188,-1.089,-0.014,-0.183,-1.089,-0.011,-0.179,-1.089,-0.006,-0.178,-1.089,0,-0.179,-1.089,0.006,-0.183,-1.089,0.011,-0.188,-1.089,0.014,-0.194,-1.089,0.015,-0.199,-1.089,0.014,-0.204,-1.089,0.011,-0.208,-1.089,0.006,-0.209,-1.089,0,-0.208,-1.089,-0.006,-0.204,-1.089,-0.011,-0.199,-1.089,-0.014,-0.194,-1.089,-0.015,-0.194,-1.119,-0.008,-0.19,-1.119,-0.008,-0.188,-1.119,-0.006,-0.186,-1.119,-0.003,-0.185,-1.119,0,-0.186,-1.119,0.003,-0.188,-1.119,0.006,-0.19,-1.119,0.008,-0.194,-1.119,0.008,-0.197,-1.119,0.008,-0.2,-1.119,0.006,-0.201,-1.119,0.003,-0.202,-1.119,0,-0.201,-1.119,-0.003,-0.2,-1.119,-0.006,-0.197,-1.119,-0.008,-0.194,-1.119,-0.008,-0.194,-1.129,0,-0.194,-1.129,0,-0.194,-1.138,-0.008,-0.19,-1.138,-0.008,-0.188,-1.138,-0.006,-0.186,-1.138,-0.003,-0.185,-1.138,0,-0.186,-1.138,0.003,-0.188,-1.138,0.006,-0.19,-1.138,0.008,-0.194,-1.138,0.008,-0.197,-1.138,0.008,-0.2,-1.138,0.006,-0.201,-1.138,0.003,-0.202,-1.138,0,-0.201,-1.138,-0.003,-0.2,-1.138,-0.006,-0.197,-1.138,-0.008,-0.194,-1.138,-0.008,-0.194,-1.164,-0.015,-0.188,-1.164,-0.014,-0.183,-1.164,-0.011,-0.179,-1.164,-0.006,-0.178,-1.164,0,-0.179,-1.164,0.006,-0.183,-1.164,0.011,-0.188,-1.164,0.014,-0.194,-1.164,0.015,-0.199,-1.164,0.014,-0.204,-1.164,0.011,-0.208,-1.164,0.006,-0.209,-1.164,0,-0.208,-1.164,-0.006,-0.204,-1.164,-0.011,-0.199,-1.164,-0.014,-0.194,-1.164,-0.015,-0.194,-1.208,-0.02,-0.186,-1.208,-0.019,-0.179,-1.208,-0.014,-0.175,-1.208,-0.007,-0.173,-1.208,0,-0.175,-1.208,0.007,-0.179,-1.208,0.014,-0.186,-1.208,0.019,-0.194,-1.208,0.02,-0.201,-1.208,0.019,-0.208,-1.208,0.014,-0.212,-1.208,0.007,-0.214,-1.208,0,-0.212,-1.208,-0.007,-0.208,-1.208,-0.014,-0.201,-1.208,-0.019,-0.194,-1.208,-0.02,-0.194,-1.27,-0.023,-0.185,-1.27,-0.022,-0.177,-1.27,-0.017,-0.172,-1.27,-0.009,-0.17,-1.27,0,-0.172,-1.27,0.009,-0.177,-1.27,0.017,-0.185,-1.27,0.022,-0.194,-1.27,0.023,-0.202,-1.27,0.022,-0.21,-1.27,0.017,-0.215,-1.27,0.009,-0.217,-1.27,0,-0.215,-1.27,-0.009,-0.21,-1.27,-0.017,-0.202,-1.27,-0.022,-0.194,-1.27,-0.023,-0.194,-1.349,-0.025,-0.184,-1.349,-0.023,-0.176,-1.349,-0.018,-0.17,-1.349,-0.009,-0.169,-1.349,0,-0.17,-1.349,0.009,-0.176,-1.349,0.018,-0.184,-1.349,0.023,-0.194,-1.349,0.025,-0.203,-1.349,0.023,-0.211,-1.349,0.018,-0.217,-1.349,0.009,-0.218,-1.349,0,-0.217,-1.349,-0.009,-0.211,-1.349,-0.018,-0.203,-1.349,-0.023,-0.194,-1.349,-0.025,-0.194,-1.442,-0.025,-0.184,-1.442,-0.023,-0.176,-1.442,-0.018,-0.17,-1.442,-0.009,-0.169,-1.442,0,-0.17,-1.442,0.009,-0.176,-1.442,0.018,-0.184,-1.442,0.023,-0.194,-1.442,0.025,-0.203,-1.442,0.023,-0.211,-1.442,0.018,-0.217,-1.442,0.009,-0.219,-1.442,0,-0.217,-1.442,-0.009,-0.211,-1.442,-0.018,-0.203,-1.442,-0.023,-0.194,-1.442,-0.025,-0.194,-1.535,-0.025,-0.184,-1.535,-0.023,-0.176,-1.535,-0.018,-0.17,-1.535,-0.009,-0.169,-1.535,0,-0.17,-1.535,0.009,-0.176,-1.535,0.018,-0.184,-1.535,0.023,-0.194,-1.535,0.025,-0.203,-1.535,0.023,-0.211,-1.535,0.018,-0.217,-1.535,0.009,-0.219,-1.535,0,-0.217,-1.535,-0.009,-0.211,-1.535,-0.018,-0.203,-1.535,-0.023,-0.194,-1.535,-0.025,-0.194,-1.629,-0.025,-0.184,-1.629,-0.023,-0.176,-1.629,-0.018,-0.17,-1.629,-0.009,-0.169,-1.629,0,-0.17,-1.629,0.009,-0.176,-1.629,0.018,-0.184,-1.629,0.023,-0.194,-1.629,0.025,-0.203,-1.629,0.023,-0.211,-1.629,0.018,-0.217,-1.629,0.009,-0.219,-1.629,0,-0.217,-1.629,-0.009,-0.211,-1.629,-0.018,-0.203,-1.629,-0.023,-0.194,-1.629,-0.025,-0.194,-1.723,-0.025,-0.184,-1.723,-0.023,-0.176,-1.723,-0.018,-0.17,-1.723,-0.009,-0.169,-1.723,0,-0.17,-1.723,0.009,-0.176,-1.723,0.018,-0.184,-1.723,0.023,-0.194,-1.723,0.025,-0.203,-1.723,0.023,-0.211,-1.723,0.018,-0.217,-1.723,0.009,-0.219,-1.723,0,-0.217,-1.723,-0.009,-0.211,-1.723,-0.018,-0.203,-1.723,-0.023,-0.194,-1.723,-0.025,-0.194,-1.817,-0.025,-0.184,-1.817,-0.023,-0.176,-1.817,-0.018,-0.17,-1.817,-0.009,-0.169,-1.817,0,-0.17,-1.817,0.009,-0.176,-1.817,0.018,-0.184,-1.817,0.023,-0.194,-1.817,0.025,-0.203,-1.817,0.023,-0.211,-1.817,0.018,-0.217,-1.817,0.009,-0.219,-1.817,0,-0.217,-1.817,-0.009,-0.211,-1.817,-0.018,-0.203,-1.817,-0.023,-0.194,-1.817,-0.025,-0.194,-1.909,-0.025,-0.184,-1.909,-0.023,-0.176,-1.909,-0.018,-0.17,-1.909,-0.009,-0.169,-1.909,0,-0.17,-1.909,0.009,-0.176,-1.909,0.018,-0.184,-1.909,0.023,-0.194,-1.909,0.025,-0.203,-1.909,0.023,-0.211,-1.909,0.018,-0.217,-1.909,0.009,-0.218,-1.909,0,-0.217,-1.909,-0.009,-0.211,-1.909,-0.018,-0.203,-1.909,-0.023,-0.194,-1.909,-0.025,-0.194,-1.988,-0.023,-0.185,-1.988,-0.022,-0.177,-1.988,-0.017,-0.172,-1.988,-0.009,-0.17,-1.988,0,-0.172,-1.988,0.009,-0.177,-1.988,0.017,-0.185,-1.988,0.022,-0.194,-1.988,0.023,-0.202,-1.988,0.022,-0.21,-1.988,0.017,-0.215,-1.988,0.009,-0.217,-1.988,0,-0.215,-1.988,-0.009,-0.21,-1.988,-0.017,-0.202,-1.988,-0.022,-0.194,-1.988,-0.023,-0.194,-2.05,-0.02,-0.186,-2.05,-0.019,-0.179,-2.05,-0.014,-0.175,-2.05,-0.007,-0.173,-2.05,0,-0.175,-2.05,0.007,-0.179,-2.05,0.014,-0.186,-2.05,0.019,-0.194,-2.05,0.02,-0.201,-2.05,0.019,-0.208,-2.05,0.014,-0.212,-2.05,0.007,-0.214,-2.05,0,-0.212,-2.05,-0.007,-0.208,-2.05,-0.014,-0.201,-2.05,-0.019,-0.194,-2.05,-0.02,-0.194,-2.094,-0.015,-0.188,-2.094,-0.014,-0.183,-2.094,-0.011,-0.179,-2.094,-0.006,-0.178,-2.094,0,-0.179,-2.094,0.006,-0.183,-2.094,0.011,-0.188,-2.094,0.014,-0.194,-2.094,0.015,-0.199,-2.094,0.014,-0.204,-2.094,0.011,-0.208,-2.094,0.006,-0.209,-2.094,0,-0.208,-2.094,-0.006,-0.204,-2.094,-0.011,-0.199,-2.094,-0.014,-0.194,-2.094,-0.015,-0.194,-2.12,-0.008,-0.19,-2.12,-0.008,-0.188,-2.12,-0.006,-0.186,-2.12,-0.003,-0.185,-2.12,0,-0.186,-2.12,0.003,-0.188,-2.12,0.006,-0.19,-2.12,0.008,-0.194,-2.12,0.008,-0.197,-2.12,0.008,-0.2,-2.12,0.006,-0.201,-2.12,0.003,-0.202,-2.12,0,-0.201,-2.12,-0.003,-0.2,-2.12,-0.006,-0.197,-2.12,-0.008,-0.194,-2.12,-0.008,-0.194,-2.129,0,-0.194,-2.129,0,-0.194,-2.134,0.007,-0.197,-2.134,0.006,-0.2,-2.133,0.005,-0.201,-2.132,0.002,-0.202,-2.131,-0.001,-0.201,-2.13,-0.004,-0.2,-2.129,-0.006,-0.197,-2.128,-0.008,-0.194,-2.128,-0.009,-0.19,-2.128,-0.008,-0.188,-2.129,-0.006,-0.186,-2.13,-0.004,-0.185,-2.131,-0.001,-0.186,-2.132,0.002,-0.188,-2.133,0.005,-0.19,-2.134,0.006,-0.194,-2.134,0.007,-0.194,-2.143,0.011,-0.199,-2.143,0.01,-0.204,-2.141,0.006,-0.208,-2.139,0.002,-0.209,-2.137,-0.003,-0.208,-2.135,-0.009,-0.204,-2.133,-0.013,-0.199,-2.131,-0.016,-0.194,-2.131,-0.017,-0.188,-2.131,-0.016,-0.183,-2.133,-0.013,-0.179,-2.135,-0.009,-0.178,-2.137,-0.003,-0.179,-2.139,0.002,-0.183,-2.141,0.006,-0.188,-2.143,0.01,-0.194,-2.143,0.011,-0.194,-2.155,0.011,-0.201,-2.154,0.01,-0.208,-2.153,0.005,-0.212,-2.15,-0.001,-0.214,-2.147,-0.008,-0.212,-2.144,-0.014,-0.208,-2.141,-0.021,-0.201,-2.139,-0.025,-0.194,-2.139,-0.026,-0.186,-2.139,-0.025,-0.179,-2.141,-0.021,-0.175,-2.144,-0.014,-0.173,-2.147,-0.008,-0.175,-2.15,-0.001,-0.179,-2.153,0.005,-0.186,-2.154,0.01,-0.194,-2.155,0.011,-0.194,-2.17,0.008,-0.202,-2.169,0.006,-0.21,-2.167,0.002,-0.215,-2.164,-0.006,-0.217,-2.161,-0.014,-0.215,-2.157,-0.022,-0.21,-2.154,-0.029,-0.202,-2.152,-0.034,-0.194,-2.152,-0.035,-0.185,-2.152,-0.034,-0.177,-2.154,-0.029,-0.172,-2.157,-0.022,-0.17,-2.161,-0.014,-0.172,-2.164,-0.006,-0.177,-2.167,0.002,-0.185,-2.169,0.006,-0.194,-2.17,0.008,-0.194,-2.188,0.002,-0.203,-2.188,0,-0.211,-2.186,-0.005,-0.217,-2.182,-0.013,-0.218,-2.179,-0.021,-0.217,-2.175,-0.03,-0.211,-2.172,-0.037,-0.203,-2.17,-0.043,-0.194,-2.169,-0.044,-0.184,-2.17,-0.043,-0.176,-2.172,-0.037,-0.17,-2.175,-0.03,-0.169,-2.179,-0.021,-0.17,-2.182,-0.013,-0.176,-2.186,-0.005,-0.184,-2.188,0,-0.194,-2.188,0.002,-0.194,-2.209,-0.007,-0.203,-2.209,-0.009,-0.211,-2.207,-0.014,-0.217,-2.203,-0.022,-0.219,-2.2,-0.03,-0.217,-2.196,-0.039,-0.211,-2.193,-0.046,-0.203,-2.19,-0.052,-0.194,-2.19,-0.053,-0.184,-2.19,-0.052,-0.176,-2.193,-0.046,-0.17,-2.196,-0.039,-0.169,-2.2,-0.03,-0.17,-2.203,-0.022,-0.176,-2.207,-0.014,-0.184,-2.209,-0.009,-0.194,-2.209,-0.007,-0.194,-2.231,-0.016,-0.203,-2.23,-0.018,-0.211,-2.228,-0.023,-0.217,-2.224,-0.031,-0.219,-2.221,-0.039,-0.217,-2.217,-0.048,-0.211,-2.214,-0.056,-0.203,-2.212,-0.061,-0.194,-2.211,-0.062,-0.184,-2.212,-0.061,-0.176,-2.214,-0.056,-0.17,-2.217,-0.048,-0.169,-2.221,-0.039,-0.17,-2.224,-0.031,-0.176,-2.228,-0.023,-0.184,-2.23,-0.018,-0.194,-2.231,-0.016,-0.194,-2.252,-0.025,-0.203,-2.251,-0.027,-0.211,-2.249,-0.032,-0.217,-2.246,-0.04,-0.219,-2.242,-0.048,-0.217,-2.238,-0.057,-0.211,-2.235,-0.065,-0.203,-2.233,-0.07,-0.194,-2.232,-0.071,-0.184,-2.233,-0.07,-0.176,-2.235,-0.065,-0.17,-2.238,-0.057,-0.169,-2.242,-0.048,-0.17,-2.246,-0.04,-0.176,-2.249,-0.032,-0.184,-2.251,-0.027,-0.194,-2.252,-0.025,-0.194,-2.273,-0.034,-0.203,-2.272,-0.036,-0.211,-2.27,-0.041,-0.217,-2.267,-0.049,-0.219,-2.263,-0.057,-0.217,-2.259,-0.066,-0.211,-2.256,-0.074,-0.203,-2.254,-0.079,-0.194,-2.253,-0.08,-0.184,-2.254,-0.079,-0.176,-2.256,-0.074,-0.17,-2.259,-0.066,-0.169,-2.263,-0.057,-0.17,-2.267,-0.049,-0.176,-2.27,-0.041,-0.184,-2.272,-0.036,-0.194,-2.273,-0.034,-0.194,-2.294,-0.044,-0.203,-2.293,-0.045,-0.211,-2.291,-0.05,-0.217,-2.288,-0.058,-0.219,-2.284,-0.067,-0.217,-2.281,-0.075,-0.211,-2.277,-0.083,-0.203,-2.275,-0.088,-0.194,-2.274,-0.09,-0.184,-2.275,-0.088,-0.176,-2.277,-0.083,-0.17,-2.281,-0.075,-0.169,-2.284,-0.067,-0.17,-2.288,-0.058,-0.176,-2.291,-0.05,-0.184,-2.293,-0.045,-0.194,-2.294,-0.044,-0.194,-2.315,-0.053,-0.203,-2.314,-0.054,-0.211,-2.312,-0.059,-0.217,-2.309,-0.067,-0.218,-2.305,-0.076,-0.217,-2.302,-0.084,-0.211,-2.298,-0.092,-0.203,-2.296,-0.097,-0.194,-2.295,-0.098,-0.184,-2.296,-0.097,-0.176,-2.298,-0.092,-0.17,-2.302,-0.084,-0.169,-2.305,-0.076,-0.17,-2.309,-0.067,-0.176,-2.312,-0.059,-0.184,-2.314,-0.054,-0.194,-2.315,-0.053,-0.194,-2.332,-0.062,-0.202,-2.332,-0.063,-0.21,-2.33,-0.068,-0.215,-2.326,-0.075,-0.217,-2.323,-0.083,-0.215,-2.32,-0.091,-0.21,-2.317,-0.098,-0.202,-2.315,-0.103,-0.194,-2.314,-0.105,-0.185,-2.315,-0.103,-0.177,-2.317,-0.098,-0.172,-2.32,-0.091,-0.17,-2.323,-0.083,-0.172,-2.326,-0.075,-0.177,-2.33,-0.068,-0.185,-2.332,-0.063,-0.194,-2.332,-0.062,-0.194,-2.345,-0.071,-0.201,-2.344,-0.072,-0.208,-2.343,-0.076,-0.212,-2.34,-0.082,-0.214,-2.337,-0.089,-0.212,-2.334,-0.096,-0.208,-2.331,-0.102,-0.201,-2.33,-0.106,-0.194,-2.329,-0.108,-0.186,-2.33,-0.106,-0.179,-2.331,-0.102,-0.175,-2.334,-0.096,-0.173,-2.337,-0.089,-0.175,-2.34,-0.082,-0.179,-2.343,-0.076,-0.186,-2.344,-0.072,-0.194,-2.345,-0.071,-0.194,-2.353,-0.079,-0.199,-2.352,-0.08,-0.204,-2.351,-0.083,-0.208,-2.349,-0.088,-0.209,-2.347,-0.093,-0.208,-2.345,-0.099,-0.204,-2.343,-0.103,-0.199,-2.341,-0.106,-0.194,-2.341,-0.107,-0.188,-2.341,-0.106,-0.183,-2.343,-0.103,-0.179,-2.345,-0.099,-0.178,-2.347,-0.093,-0.179,-2.349,-0.088,-0.183,-2.351,-0.083,-0.188,-2.352,-0.08,-0.194,-2.353,-0.079,-0.194,-2.356,-0.088,-0.197,-2.356,-0.089,-0.2,-2.355,-0.09,-0.201,-2.354,-0.093,-0.202,-2.353,-0.096,-0.201,-2.352,-0.099,-0.2,-2.35,-0.101,-0.197,-2.35,-0.103,-0.194,-2.35,-0.104,-0.19,-2.35,-0.103,-0.188,-2.35,-0.101,-0.186,-2.352,-0.099,-0.185,-2.353,-0.096,-0.186,-2.354,-0.093,-0.188,-2.355,-0.09,-0.19,-2.356,-0.089,-0.194,-2.356,-0.088,-0.194,-2.355,-0.097,-0.194,-2.355,-0.097,-0.194,-2.346,-0.093,-0.197,-2.347,-0.093,-0.2,-2.349,-0.093,-0.201,-2.352,-0.093,-0.202,-2.355,-0.093,-0.201,-2.358,-0.093,-0.2,-2.361,-0.093,-0.197,-2.363,-0.093,-0.194,-2.363,-0.093,-0.19,-2.363,-0.093,-0.188,-2.361,-0.093,-0.186,-2.358,-0.093,-0.185,-2.355,-0.093,-0.186,-2.352,-0.093,-0.188,-2.349,-0.093,-0.19,-2.347,-0.093,-0.194,-2.346,-0.093,-0.194,-2.34,-0.083,-0.199,-2.341,-0.083,-0.204,-2.344,-0.083,-0.208,-2.349,-0.083,-0.209,-2.355,-0.083,-0.208,-2.36,-0.083,-0.204,-2.366,-0.083,-0.199,-2.369,-0.083,-0.194,-2.37,-0.083,-0.188,-2.369,-0.083,-0.183,-2.366,-0.083,-0.179,-2.36,-0.083,-0.178,-2.355,-0.083,-0.179,-2.349,-0.083,-0.183,-2.344,-0.083,-0.188,-2.341,-0.083,-0.194,-2.34,-0.083,-0.194,-2.335,-0.066,-0.201,-2.336,-0.066,-0.208,-2.341,-0.066,-0.212,-2.347,-0.066,-0.214,-2.355,-0.066,-0.212,-2.362,-0.066,-0.208,-2.369,-0.066,-0.201,-2.374,-0.066,-0.194,-2.375,-0.066,-0.186,-2.374,-0.066,-0.179,-2.369,-0.066,-0.175,-2.362,-0.066,-0.173,-2.355,-0.066,-0.175,-2.347,-0.066,-0.179,-2.341,-0.066,-0.186,-2.336,-0.066,-0.194,-2.335,-0.066,-0.194,-2.331,-0.042,-0.202,-2.333,-0.042,-0.21,-2.338,-0.042,-0.215,-2.346,-0.042,-0.217,-2.355,-0.042,-0.215,-2.363,-0.042,-0.21,-2.371,-0.042,-0.202,-2.377,-0.042,-0.194,-2.378,-0.042,-0.185,-2.377,-0.042,-0.177,-2.371,-0.042,-0.172,-2.363,-0.042,-0.17,-2.355,-0.042,-0.172,-2.346,-0.042,-0.177,-2.338,-0.042,-0.185,-2.333,-0.042,-0.194,-2.331,-0.042,-0.194,-2.33,-0.012,-0.203,-2.332,-0.012,-0.211,-2.337,-0.012,-0.217,-2.346,-0.012,-0.218,-2.355,-0.012,-0.217,-2.364,-0.012,-0.211,-2.372,-0.012,-0.203,-2.378,-0.012,-0.194,-2.38,-0.012,-0.184,-2.378,-0.012,-0.176,-2.372,-0.012,-0.17,-2.364,-0.012,-0.169,-2.355,-0.012,-0.17,-2.346,-0.012,-0.176,-2.337,-0.012,-0.184,-2.332,-0.012,-0.194,-2.33,-0.012,-0.194,-2.33,0.024,-0.203,-2.332,0.024,-0.211,-2.337,0.024,-0.217,-2.346,0.024,-0.219,-2.355,0.024,-0.217,-2.364,0.024,-0.211,-2.373,0.024,-0.203,-2.378,0.024,-0.194,-2.38,0.024,-0.184,-2.378,0.024,-0.176,-2.373,0.024,-0.17,-2.364,0.024,-0.169,-2.355,0.024,-0.17,-2.346,0.024,-0.176,-2.337,0.024,-0.184,-2.332,0.024,-0.194,-2.33,0.024,-0.194,-2.33,0.06,-0.203,-2.332,0.06,-0.211,-2.337,0.06,-0.217,-2.346,0.06,-0.219,-2.355,0.06,-0.217,-2.364,0.06,-0.211,-2.373,0.06,-0.203,-2.378,0.06,-0.194,-2.38,0.06,-0.184,-2.378,0.06,-0.176,-2.373,0.06,-0.17,-2.364,0.06,-0.169,-2.355,0.06,-0.17,-2.346,0.06,-0.176,-2.337,0.06,-0.184,-2.332,0.06,-0.194,-2.33,0.06,-0.194,-2.33,0.097,-0.203,-2.332,0.097,-0.211,-2.337,0.097,-0.217,-2.346,0.097,-0.219,-2.355,0.097,-0.217,-2.364,0.097,-0.211,-2.373,0.097,-0.203,-2.378,0.097,-0.194,-2.38,0.097,-0.184,-2.378,0.097,-0.176,-2.373,0.097,-0.17,-2.364,0.097,-0.169,-2.355,0.097,-0.17,-2.346,0.097,-0.176,-2.337,0.097,-0.184,-2.332,0.097,-0.194,-2.33,0.097,-0.194,-2.33,0.133,-0.203,-2.332,0.133,-0.211,-2.337,0.133,-0.217,-2.346,0.133,-0.219,-2.355,0.133,-0.217,-2.364,0.133,-0.211,-2.373,0.133,-0.203,-2.378,0.133,-0.194,-2.38,0.133,-0.184,-2.378,0.133,-0.176,-2.373,0.133,-0.17,-2.364,0.133,-0.169,-2.355,0.133,-0.17,-2.346,0.133,-0.176,-2.337,0.133,-0.184,-2.332,0.133,-0.194,-2.33,0.133,-0.194,-2.33,0.169,-0.203,-2.332,0.169,-0.211,-2.337,0.169,-0.217,-2.346,0.169,-0.219,-2.355,0.169,-0.217,-2.364,0.169,-0.211,-2.373,0.169,-0.203,-2.378,0.169,-0.194,-2.38,0.169,-0.184,-2.378,0.169,-0.176,-2.373,0.169,-0.17,-2.364,0.169,-0.169,-2.355,0.169,-0.17,-2.346,0.169,-0.176,-2.337,0.169,-0.184,-2.332,0.169,-0.194,-2.33,0.169,-0.194,-2.33,0.205,-0.203,-2.332,0.205,-0.211,-2.337,0.205,-0.217,-2.346,0.205,-0.218,-2.355,0.205,-0.217,-2.364,0.205,-0.211,-2.372,0.205,-0.203,-2.378,0.205,-0.194,-2.38,0.205,-0.184,-2.378,0.205,-0.176,-2.372,0.205,-0.17,-2.364,0.205,-0.169,-2.355,0.205,-0.17,-2.346,0.205,-0.176,-2.337,0.205,-0.184,-2.332,0.205,-0.194,-2.33,0.205,-0.194,-2.331,0.236,-0.202,-2.333,0.236,-0.21,-2.338,0.236,-0.215,-2.346,0.236,-0.217,-2.355,0.236,-0.215,-2.363,0.236,-0.21,-2.371,0.236,-0.202,-2.377,0.236,-0.194,-2.378,0.236,-0.185,-2.377,0.236,-0.177,-2.371,0.236,-0.172,-2.363,0.236,-0.17,-2.355,0.236,-0.172,-2.346,0.236,-0.177,-2.338,0.236,-0.185,-2.333,0.236,-0.194,-2.331,0.236,-0.194,-2.335,0.26,-0.201,-2.336,0.26,-0.208,-2.341,0.26,-0.212,-2.347,0.26,-0.214,-2.355,0.26,-0.212,-2.362,0.26,-0.208,-2.369,0.26,-0.201,-2.374,0.26,-0.194,-2.375,0.26,-0.186,-2.374,0.26,-0.179,-2.369,0.26,-0.175,-2.362,0.26,-0.173,-2.355,0.26,-0.175,-2.347,0.26,-0.179,-2.341,0.26,-0.186,-2.336,0.26,-0.194,-2.335,0.26,-0.194,-2.34,0.277,-0.199,-2.341,0.277,-0.204,-2.344,0.277,-0.208,-2.349,0.277,-0.209,-2.355,0.277,-0.208,-2.36,0.277,-0.204,-2.366,0.277,-0.199,-2.369,0.277,-0.194,-2.37,0.277,-0.188,-2.369,0.277,-0.183,-2.366,0.277,-0.179,-2.36,0.277,-0.178,-2.355,0.277,-0.179,-2.349,0.277,-0.183,-2.344,0.277,-0.188,-2.341,0.277,-0.194,-2.34,0.277,-0.194,-2.346,0.287,-0.197,-2.347,0.287,-0.2,-2.349,0.287,-0.201,-2.352,0.287,-0.202,-2.355,0.287,-0.201,-2.358,0.287,-0.2,-2.361,0.287,-0.197,-2.363,0.287,-0.194,-2.363,0.287,-0.19,-2.363,0.287,-0.188,-2.361,0.287,-0.186,-2.358,0.287,-0.185,-2.355,0.287,-0.186,-2.352,0.287,-0.188,-2.349,0.287,-0.19,-2.347,0.287,-0.194,-2.346,0.287,-0.194,-2.355,0.29,0,0.194,-0.065,0,0.195,-0.073,-0.003,0.195,-0.072,-0.006,0.195,-0.071,-0.008,0.195,-0.068,-0.008,0.195,-0.065,-0.008,0.195,-0.061,-0.006,0.195,-0.059,-0.003,0.195,-0.057,0,0.195,-0.056,0.003,0.195,-0.057,0.006,0.195,-0.059,0.008,0.195,-0.061,0.008,0.195,-0.065,0.008,0.195,-0.068,0.006,0.195,-0.071,0.003,0.195,-0.072,0,0.195,-0.073,0,0.2,-0.08,-0.006,0.2,-0.079,-0.011,0.2,-0.075,-0.014,0.2,-0.07,-0.015,0.2,-0.065,-0.014,0.2,-0.059,-0.011,0.2,-0.054,-0.006,0.2,-0.05,0,0.2,-0.049,0.006,0.2,-0.05,0.011,0.2,-0.054,0.014,0.2,-0.059,0.015,0.2,-0.065,0.014,0.2,-0.07,0.011,0.2,-0.075,0.006,0.2,-0.079,0,0.2,-0.08,0,0.209,-0.085,-0.007,0.209,-0.083,-0.014,0.209,-0.079,-0.019,0.209,-0.072,-0.02,0.209,-0.065,-0.019,0.209,-0.057,-0.014,0.209,-0.05,-0.007,0.209,-0.046,0,0.209,-0.044,0.007,0.209,-0.046,0.014,0.209,-0.05,0.019,0.209,-0.057,0.02,0.209,-0.065,0.019,0.209,-0.072,0.014,0.209,-0.079,0.007,0.209,-0.083,0,0.209,-0.085,0,0.221,-0.088,-0.009,0.221,-0.086,-0.017,0.221,-0.081,-0.022,0.221,-0.073,-0.023,0.221,-0.065,-0.022,0.221,-0.056,-0.017,0.221,-0.048,-0.009,0.221,-0.043,0,0.221,-0.041,0.009,0.221,-0.043,0.017,0.221,-0.048,0.022,0.221,-0.056,0.023,0.221,-0.065,0.022,0.221,-0.073,0.017,0.221,-0.081,0.009,0.221,-0.086,0,0.221,-0.088,0,0.236,-0.089,-0.009,0.236,-0.088,-0.018,0.236,-0.082,-0.023,0.236,-0.074,-0.025,0.236,-0.065,-0.023,0.236,-0.055,-0.018,0.236,-0.047,-0.009,0.236,-0.041,0,0.236,-0.04,0.009,0.236,-0.041,0.018,0.236,-0.047,0.023,0.236,-0.055,0.025,0.236,-0.065,0.023,0.236,-0.074,0.018,0.236,-0.082,0.009,0.236,-0.088,0,0.236,-0.089,0,0.254,-0.09,-0.009,0.254,-0.088,-0.018,0.254,-0.082,-0.023,0.254,-0.074,-0.025,0.254,-0.065,-0.023,0.254,-0.055,-0.018,0.254,-0.047,-0.009,0.254,-0.041,0,0.254,-0.04,0.009,0.254,-0.041,0.018,0.254,-0.047,0.023,0.254,-0.055,0.025,0.254,-0.065,0.023,0.254,-0.074,0.018,0.254,-0.082,0.009,0.254,-0.088,0,0.254,-0.09,0,0.272,-0.09,-0.009,0.272,-0.088,-0.018,0.272,-0.082,-0.023,0.272,-0.074,-0.025,0.272,-0.065,-0.023,0.272,-0.055,-0.018,0.272,-0.047,-0.009,0.272,-0.041,0,0.272,-0.04,0.009,0.272,-0.041,0.018,0.272,-0.047,0.023,0.272,-0.055,0.025,0.272,-0.065,0.023,0.272,-0.074,0.018,0.272,-0.082,0.009,0.272,-0.088,0,0.272,-0.09,0,0.29,-0.09,-0.009,0.29,-0.088,-0.018,0.29,-0.082,-0.023,0.29,-0.074,-0.025,0.29,-0.065,-0.023,0.29,-0.055,-0.018,0.29,-0.047,-0.009,0.29,-0.041,0,0.29,-0.04,0.009,0.29,-0.041,0.018,0.29,-0.047,0.023,0.29,-0.055,0.025,0.29,-0.065,0.023,0.29,-0.074,0.018,0.29,-0.082,0.009,0.29,-0.088,0,0.29,-0.09,0,0.308,-0.09,-0.009,0.308,-0.088,-0.018,0.308,-0.082,-0.023,0.308,-0.074,-0.025,0.308,-0.065,-0.023,0.308,-0.055,-0.018,0.308,-0.047,-0.009,0.308,-0.041,0,0.308,-0.04,0.009,0.308,-0.041,0.018,0.308,-0.047,0.023,0.308,-0.055,0.025,0.308,-0.065,0.023,0.308,-0.074,0.018,0.308,-0.082,0.009,0.308,-0.088,0,0.308,-0.09,0,0.327,-0.09,-0.009,0.327,-0.088,-0.018,0.327,-0.082,-0.023,0.327,-0.074,-0.025,0.327,-0.065,-0.023,0.327,-0.055,-0.018,0.327,-0.047,-0.009,0.327,-0.041,0,0.327,-0.04,0.009,0.327,-0.041,0.018,0.327,-0.047,0.023,0.327,-0.055,0.025,0.327,-0.065,0.023,0.327,-0.074,0.018,0.327,-0.082,0.009,0.327,-0.088,0,0.327,-0.09,0,0.345,-0.089,-0.009,0.345,-0.088,-0.018,0.345,-0.082,-0.023,0.345,-0.074,-0.025,0.345,-0.065,-0.023,0.345,-0.055,-0.018,0.345,-0.047,-0.009,0.345,-0.041,0,0.345,-0.04,0.009,0.345,-0.041,0.018,0.345,-0.047,0.023,0.345,-0.055,0.025,0.345,-0.065,0.023,0.345,-0.074,0.018,0.345,-0.082,0.009,0.345,-0.088,0,0.345,-0.089,0,0.36,-0.088,-0.009,0.36,-0.086,-0.017,0.36,-0.081,-0.022,0.36,-0.073,-0.023,0.36,-0.065,-0.022,0.36,-0.056,-0.017,0.36,-0.048,-0.009,0.36,-0.043,0,0.36,-0.041,0.009,0.36,-0.043,0.017,0.36,-0.048,0.022,0.36,-0.056,0.023,0.36,-0.065,0.022,0.36,-0.073,0.017,0.36,-0.081,0.009,0.36,-0.086,0,0.36,-0.088,0,0.372,-0.085,-0.007,0.372,-0.083,-0.014,0.372,-0.079,-0.019,0.372,-0.072,-0.02,0.372,-0.065,-0.019,0.372,-0.057,-0.014,0.372,-0.05,-0.007,0.372,-0.046,0,0.372,-0.044,0.007,0.372,-0.046,0.014,0.372,-0.05,0.019,0.372,-0.057,0.02,0.372,-0.065,0.019,0.372,-0.072,0.014,0.372,-0.079,0.007,0.372,-0.083,0,0.372,-0.085,0,0.38,-0.08,-0.006,0.38,-0.079,-0.011,0.38,-0.075,-0.014,0.38,-0.07,-0.015,0.38,-0.065,-0.014,0.38,-0.059,-0.011,0.38,-0.054,-0.006,0.38,-0.05,0,0.38,-0.049,0.006,0.38,-0.05,0.011,0.38,-0.054,0.014,0.38,-0.059,0.015,0.38,-0.065,0.014,0.38,-0.07,0.011,0.38,-0.075,0.006,0.38,-0.079,0,0.38,-0.08,0,0.385,-0.073,-0.003,0.385,-0.072,-0.006,0.385,-0.071,-0.008,0.385,-0.068,-0.008,0.385,-0.065,-0.008,0.385,-0.061,-0.006,0.385,-0.059,-0.003,0.385,-0.057,0,0.385,-0.056,0.003,0.385,-0.057,0.006,0.385,-0.059,0.008,0.385,-0.061,0.008,0.385,-0.065,0.008,0.385,-0.068,0.006,0.385,-0.071,0.003,0.385,-0.072,0,0.385,-0.073,0,0.387,-0.065,0,0.387,-0.065,0.002,0.395,-0.072,-0.001,0.396,-0.072,-0.004,0.396,-0.07,-0.006,0.396,-0.067,-0.007,0.396,-0.064,-0.006,0.396,-0.061,-0.004,0.395,-0.058,-0.001,0.395,-0.056,0.002,0.394,-0.055,0.005,0.393,-0.056,0.008,0.393,-0.058,0.009,0.392,-0.061,0.01,0.393,-0.064,0.009,0.393,-0.067,0.008,0.394,-0.07,0.005,0.394,-0.072,0.002,0.395,-0.072,0.007,0.418,-0.077,0.001,0.419,-0.076,-0.004,0.42,-0.073,-0.007,0.42,-0.068,-0.008,0.42,-0.062,-0.007,0.419,-0.057,-0.004,0.418,-0.051,0.001,0.417,-0.048,0.007,0.415,-0.047,0.012,0.414,-0.048,0.017,0.413,-0.052,0.021,0.413,-0.057,0.022,0.413,-0.062,0.021,0.414,-0.068,0.017,0.415,-0.073,0.012,0.416,-0.076,0.007,0.418,-0.077,0.015,0.455,-0.08,0.008,0.457,-0.078,0.002,0.458,-0.074,-0.003,0.458,-0.067,-0.004,0.458,-0.059,-0.003,0.457,-0.052,0.001,0.456,-0.045,0.008,0.454,-0.041,0.015,0.452,-0.039,0.022,0.45,-0.041,0.029,0.449,-0.045,0.034,0.449,-0.052,0.035,0.449,-0.06,0.034,0.45,-0.067,0.029,0.451,-0.074,0.023,0.453,-0.078,0.015,0.455,-0.08,0.027,0.507,-0.079,0.019,0.509,-0.077,0.011,0.51,-0.072,0.006,0.511,-0.064,0.004,0.51,-0.055,0.006,0.509,-0.047,0.011,0.508,-0.039,0.019,0.505,-0.034,0.027,0.503,-0.032,0.035,0.501,-0.034,0.043,0.5,-0.039,0.048,0.5,-0.047,0.05,0.5,-0.056,0.049,0.501,-0.064,0.044,0.503,-0.072,0.036,0.505,-0.077,0.027,0.507,-0.079,0.043,0.573,-0.075,0.034,0.575,-0.073,0.026,0.577,-0.068,0.02,0.577,-0.059,0.018,0.577,-0.05,0.02,0.576,-0.041,0.025,0.574,-0.033,0.033,0.572,-0.027,0.042,0.57,-0.026,0.051,0.568,-0.027,0.06,0.566,-0.033,0.065,0.566,-0.041,0.067,0.566,-0.051,0.065,0.567,-0.06,0.06,0.569,-0.068,0.052,0.571,-0.074,0.043,0.573,-0.075,0.061,0.651,-0.069,0.052,0.653,-0.067,0.043,0.654,-0.062,0.038,0.655,-0.053,0.036,0.655,-0.044,0.038,0.654,-0.035,0.043,0.652,-0.027,0.051,0.65,-0.021,0.06,0.647,-0.019,0.069,0.645,-0.021,0.078,0.644,-0.027,0.083,0.643,-0.035,0.085,0.644,-0.045,0.083,0.645,-0.054,0.078,0.647,-0.062,0.07,0.649,-0.068,0.061,0.651,-0.069,0.079,0.73,-0.063,0.07,0.732,-0.061,0.062,0.733,-0.056,0.056,0.734,-0.047,0.054,0.733,-0.038,0.056,0.732,-0.029,0.061,0.73,-0.021,0.069,0.728,-0.015,0.078,0.726,-0.013,0.087,0.724,-0.015,0.096,0.723,-0.021,0.101,0.722,-0.029,0.103,0.722,-0.039,0.101,0.723,-0.048,0.096,0.725,-0.056,0.088,0.727,-0.062,0.079,0.73,-0.063,0.097,0.808,-0.057,0.088,0.81,-0.055,0.08,0.812,-0.05,0.074,0.812,-0.041,0.072,0.812,-0.032,0.074,0.811,-0.023,0.079,0.809,-0.014,0.088,0.807,-0.009,0.097,0.805,-0.007,0.106,0.803,-0.009,0.114,0.801,-0.015,0.119,0.801,-0.023,0.121,0.801,-0.032,0.12,0.802,-0.042,0.114,0.804,-0.05,0.106,0.806,-0.056,0.097,0.808,-0.057,0.115,0.887,-0.051,0.106,0.889,-0.049,0.098,0.89,-0.044,0.092,0.891,-0.035,0.091,0.891,-0.026,0.092,0.89,-0.017,0.098,0.888,-0.008,0.106,0.885,-0.003,0.115,0.883,-0.001,0.124,0.881,-0.003,0.132,0.88,-0.009,0.137,0.879,-0.017,0.139,0.879,-0.026,0.138,0.881,-0.036,0.132,0.882,-0.044,0.124,0.885,-0.049,0.115,0.887,-0.051,0.133,0.966,-0.045,0.124,0.968,-0.043,0.116,0.969,-0.038,0.11,0.97,-0.029,0.109,0.969,-0.02,0.11,0.968,-0.011,0.116,0.966,-0.002,0.124,0.964,0.003,0.133,0.962,0.005,0.142,0.96,0.003,0.15,0.958,-0.003,0.156,0.958,-0.011,0.157,0.958,-0.02,0.156,0.959,-0.03,0.15,0.961,-0.038,0.142,0.963,-0.043,0.133,0.966,-0.045,0.151,1.043,-0.039,0.142,1.045,-0.037,0.134,1.047,-0.032,0.129,1.047,-0.023,0.127,1.047,-0.014,0.128,1.046,-0.005,0.134,1.044,0.004,0.142,1.042,0.009,0.151,1.04,0.011,0.16,1.038,0.009,0.168,1.036,0.003,0.174,1.036,-0.005,0.175,1.036,-0.014,0.174,1.037,-0.024,0.168,1.039,-0.032,0.16,1.041,-0.037,0.151,1.043,-0.039,0.167,1.11,-0.032,0.158,1.111,-0.031,0.15,1.113,-0.025,0.145,1.113,-0.017,0.143,1.113,-0.009,0.145,1.112,0,0.15,1.11,0.008,0.158,1.108,0.013,0.166,1.106,0.014,0.175,1.104,0.013,0.182,1.103,0.007,0.187,1.102,-0.001,0.189,1.103,-0.009,0.188,1.104,-0.018,0.183,1.105,-0.026,0.175,1.108,-0.031,0.167,1.11,-0.032,0.178,1.161,-0.025,0.171,1.163,-0.024,0.164,1.164,-0.019,0.16,1.164,-0.012,0.159,1.164,-0.005,0.16,1.163,0.002,0.164,1.162,0.009,0.171,1.16,0.014,0.178,1.158,0.015,0.185,1.156,0.014,0.192,1.155,0.009,0.196,1.155,0.002,0.198,1.155,-0.005,0.197,1.156,-0.013,0.192,1.157,-0.019,0.186,1.159,-0.024,0.178,1.161,-0.025,0.187,1.197,-0.017,0.181,1.199,-0.016,0.176,1.2,-0.013,0.173,1.2,-0.008,0.172,1.2,-0.002,0.173,1.199,0.003,0.176,1.198,0.009,0.181,1.197,0.012,0.187,1.195,0.013,0.192,1.194,0.012,0.197,1.193,0.008,0.201,1.193,0.003,0.202,1.193,-0.002,0.201,1.194,-0.008,0.197,1.195,-0.013,0.192,1.196,-0.016,0.187,1.197,-0.017,0.192,1.219,-0.009,0.189,1.22,-0.008,0.186,1.22,-0.007,0.184,1.22,-0.004,0.184,1.22,0,0.184,1.22,0.003,0.186,1.219,0.005,0.189,1.219,0.007,0.192,1.218,0.008,0.195,1.217,0.007,0.198,1.217,0.005,0.2,1.216,0.002,0.2,1.217,-0.001,0.2,1.217,-0.004,0.198,1.218,-0.007,0.195,1.218,-0.008,0.192,1.219,-0.009,0.194,1.226,0,0,0.387,-0.065,-0.002,0.395,-0.072,-0.005,0.394,-0.072,-0.008,0.394,-0.07,-0.009,0.393,-0.067,-0.01,0.393,-0.064,-0.009,0.392,-0.061,-0.008,0.393,-0.058,-0.005,0.393,-0.056,-0.002,0.394,-0.055,0.001,0.395,-0.056,0.004,0.395,-0.058,0.006,0.396,-0.061,0.007,0.396,-0.064,0.006,0.396,-0.067,0.004,0.396,-0.07,0.001,0.396,-0.072,-0.002,0.395,-0.072,-0.007,0.418,-0.077,-0.012,0.416,-0.076,-0.017,0.415,-0.073,-0.021,0.414,-0.068,-0.022,0.413,-0.062,-0.021,0.413,-0.057,-0.017,0.413,-0.052,-0.012,0.414,-0.048,-0.007,0.415,-0.047,-0.001,0.417,-0.048,0.004,0.418,-0.051,0.007,0.419,-0.057,0.008,0.42,-0.062,0.007,0.42,-0.068,0.004,0.42,-0.073,-0.001,0.419,-0.076,-0.007,0.418,-0.077,-0.015,0.455,-0.08,-0.023,0.453,-0.078,-0.029,0.451,-0.074,-0.034,0.45,-0.067,-0.035,0.449,-0.06,-0.034,0.449,-0.052,-0.029,0.449,-0.045,-0.022,0.45,-0.041,-0.015,0.452,-0.039,-0.008,0.454,-0.041,-0.001,0.456,-0.045,0.003,0.457,-0.052,0.004,0.458,-0.059,0.003,0.458,-0.067,-0.002,0.458,-0.074,-0.008,0.457,-0.078,-0.015,0.455,-0.08,-0.027,0.507,-0.079,-0.036,0.505,-0.077,-0.044,0.503,-0.072,-0.049,0.501,-0.064,-0.05,0.5,-0.056,-0.048,0.5,-0.047,-0.043,0.5,-0.039,-0.035,0.501,-0.034,-0.027,0.503,-0.032,-0.019,0.505,-0.034,-0.011,0.508,-0.039,-0.006,0.509,-0.047,-0.004,0.51,-0.055,-0.006,0.511,-0.064,-0.011,0.51,-0.072,-0.019,0.509,-0.077,-0.027,0.507,-0.079,-0.043,0.573,-0.075,-0.052,0.571,-0.074,-0.06,0.569,-0.068,-0.065,0.567,-0.06,-0.067,0.566,-0.051,-0.065,0.566,-0.041,-0.06,0.566,-0.033,-0.051,0.568,-0.027,-0.042,0.57,-0.026,-0.033,0.572,-0.027,-0.025,0.574,-0.033,-0.02,0.576,-0.041,-0.018,0.577,-0.05,-0.02,0.577,-0.059,-0.026,0.577,-0.068,-0.034,0.575,-0.073,-0.043,0.573,-0.075,-0.061,0.651,-0.069,-0.07,0.649,-0.068,-0.078,0.647,-0.062,-0.083,0.645,-0.054,-0.085,0.644,-0.045,-0.083,0.643,-0.035,-0.078,0.644,-0.027,-0.069,0.645,-0.021,-0.06,0.647,-0.019,-0.051,0.65,-0.021,-0.043,0.652,-0.027,-0.038,0.654,-0.035,-0.036,0.655,-0.044,-0.038,0.655,-0.053,-0.043,0.654,-0.062,-0.052,0.653,-0.067,-0.061,0.651,-0.069,-0.079,0.73,-0.063,-0.088,0.727,-0.062,-0.096,0.725,-0.056,-0.101,0.723,-0.048,-0.103,0.722,-0.039,-0.101,0.722,-0.029,-0.096,0.723,-0.021,-0.087,0.724,-0.015,-0.078,0.726,-0.013,-0.069,0.728,-0.015,-0.061,0.73,-0.021,-0.056,0.732,-0.029,-0.054,0.733,-0.038,-0.056,0.734,-0.047,-0.062,0.733,-0.056,-0.07,0.732,-0.061,-0.079,0.73,-0.063,-0.097,0.808,-0.057,-0.106,0.806,-0.056,-0.114,0.804,-0.05,-0.12,0.802,-0.042,-0.121,0.801,-0.032,-0.119,0.801,-0.023,-0.114,0.801,-0.015,-0.106,0.803,-0.009,-0.097,0.805,-0.007,-0.088,0.807,-0.009,-0.079,0.809,-0.014,-0.074,0.811,-0.023,-0.072,0.812,-0.032,-0.074,0.812,-0.041,-0.08,0.812,-0.05,-0.088,0.81,-0.055,-0.097,0.808,-0.057,-0.115,0.887,-0.051,-0.124,0.885,-0.049,-0.132,0.882,-0.044,-0.138,0.881,-0.036,-0.139,0.879,-0.026,-0.137,0.879,-0.017,-0.132,0.88,-0.009,-0.124,0.881,-0.003,-0.115,0.883,-0.001,-0.106,0.885,-0.003,-0.098,0.888,-0.008,-0.092,0.89,-0.017,-0.091,0.891,-0.026,-0.092,0.891,-0.035,-0.098,0.89,-0.044,-0.106,0.889,-0.049,-0.115,0.887,-0.051,-0.133,0.966,-0.045,-0.142,0.963,-0.043,-0.15,0.961,-0.038,-0.156,0.959,-0.03,-0.157,0.958,-0.02,-0.156,0.958,-0.011,-0.15,0.958,-0.003,-0.142,0.96,0.003,-0.133,0.962,0.005,-0.124,0.964,0.003,-0.116,0.966,-0.002,-0.11,0.968,-0.011,-0.109,0.969,-0.02,-0.11,0.97,-0.029,-0.116,0.969,-0.038,-0.124,0.968,-0.043,-0.133,0.966,-0.045,-0.151,1.043,-0.039,-0.16,1.041,-0.037,-0.168,1.039,-0.032,-0.174,1.037,-0.024,-0.175,1.036,-0.014,-0.174,1.036,-0.005,-0.168,1.036,0.003,-0.16,1.038,0.009,-0.151,1.04,0.011,-0.142,1.042,0.009,-0.134,1.044,0.004,-0.128,1.046,-0.005,-0.127,1.047,-0.014,-0.129,1.047,-0.023,-0.134,1.047,-0.032,-0.142,1.045,-0.037,-0.151,1.043,-0.039,-0.167,1.11,-0.032,-0.175,1.108,-0.031,-0.183,1.105,-0.026,-0.188,1.104,-0.018,-0.189,1.103,-0.009,-0.187,1.102,-0.001,-0.182,1.103,0.007,-0.175,1.104,0.013,-0.166,1.106,0.014,-0.158,1.108,0.013,-0.15,1.11,0.008,-0.145,1.112,0,-0.143,1.113,-0.009,-0.145,1.113,-0.017,-0.15,1.113,-0.025,-0.158,1.111,-0.031,-0.167,1.11,-0.032,-0.178,1.161,-0.025,-0.186,1.159,-0.024,-0.192,1.157,-0.019,-0.197,1.156,-0.013,-0.198,1.155,-0.005,-0.196,1.155,0.002,-0.192,1.155,0.009,-0.185,1.156,0.014,-0.178,1.158,0.015,-0.171,1.16,0.014,-0.164,1.162,0.009,-0.16,1.163,0.002,-0.159,1.164,-0.005,-0.16,1.164,-0.012,-0.164,1.164,-0.019,-0.171,1.163,-0.024,-0.178,1.161,-0.025,-0.187,1.197,-0.017,-0.192,1.196,-0.016,-0.197,1.195,-0.013,-0.201,1.194,-0.008,-0.202,1.193,-0.002,-0.201,1.193,0.003,-0.197,1.193,0.008,-0.192,1.194,0.012,-0.187,1.195,0.013,-0.181,1.197,0.012,-0.176,1.198,0.009,-0.173,1.199,0.003,-0.172,1.2,-0.002,-0.173,1.2,-0.008,-0.176,1.2,-0.013,-0.181,1.199,-0.016,-0.187,1.197,-0.017,-0.192,1.219,-0.009,-0.195,1.218,-0.008,-0.198,1.218,-0.007,-0.2,1.217,-0.004,-0.2,1.217,-0.001,-0.2,1.216,0.002,-0.198,1.217,0.005,-0.195,1.217,0.007,-0.192,1.218,0.008,-0.189,1.219,0.007,-0.186,1.219,0.005,-0.184,1.22,0.003,-0.184,1.22,0,-0.184,1.22,-0.004,-0.186,1.22,-0.007,-0.189,1.22,-0.008,-0.192,1.219,-0.009,-0.194,1.226,0,0,0.387,-0.065,0,0.396,-0.072,-0.003,0.396,-0.072,-0.006,0.396,-0.07,-0.008,0.396,-0.067,-0.008,0.396,-0.064,-0.008,0.395,-0.061,-0.006,0.395,-0.058,-0.003,0.395,-0.056,0,0.395,-0.055,0.003,0.395,-0.056,0.006,0.395,-0.058,0.008,0.395,-0.061,0.008,0.396,-0.064,0.008,0.396,-0.067,0.006,0.396,-0.07,0.003,0.396,-0.072,0,0.396,-0.072,0,0.422,-0.077,-0.006,0.422,-0.076,-0.011,0.422,-0.073,-0.014,0.421,-0.068,-0.015,0.421,-0.062,-0.014,0.421,-0.057,-0.011,0.42,-0.051,-0.006,0.42,-0.048,0,0.42,-0.047,0.006,0.42,-0.048,0.011,0.42,-0.051,0.014,0.421,-0.057,0.015,0.421,-0.062,0.014,0.421,-0.068,0.011,0.422,-0.073,0.006,0.422,-0.076,0,0.422,-0.077,0,0.465,-0.08,-0.007,0.465,-0.078,-0.014,0.465,-0.074,-0.019,0.464,-0.067,-0.02,0.464,-0.059,-0.019,0.463,-0.052,-0.014,0.463,-0.045,-0.007,0.462,-0.041,0,0.462,-0.039,0.007,0.462,-0.041,0.014,0.463,-0.045,0.019,0.463,-0.052,0.02,0.464,-0.059,0.019,0.464,-0.067,0.014,0.465,-0.074,0.007,0.465,-0.078,0,0.465,-0.08,0,0.525,-0.079,-0.009,0.525,-0.077,-0.017,0.524,-0.072,-0.022,0.524,-0.064,-0.023,0.523,-0.055,-0.022,0.523,-0.047,-0.017,0.522,-0.039,-0.009,0.522,-0.034,0,0.522,-0.032,0.009,0.522,-0.034,0.017,0.522,-0.039,0.022,0.523,-0.047,0.023,0.523,-0.055,0.022,0.524,-0.064,0.017,0.524,-0.072,0.009,0.525,-0.077,0,0.525,-0.079,0,0.601,-0.075,-0.009,0.601,-0.073,-0.018,0.601,-0.068,-0.023,0.6,-0.059,-0.025,0.6,-0.05,-0.023,0.599,-0.041,-0.018,0.599,-0.033,-0.009,0.598,-0.027,0,0.598,-0.025,0.009,0.598,-0.027,0.018,0.599,-0.033,0.023,0.599,-0.041,0.025,0.6,-0.05,0.023,0.6,-0.059,0.018,0.601,-0.068,0.009,0.601,-0.073,0,0.601,-0.075,0,0.691,-0.069,-0.009,0.691,-0.068,-0.018,0.691,-0.062,-0.023,0.69,-0.054,-0.025,0.69,-0.044,-0.023,0.689,-0.035,-0.018,0.688,-0.027,-0.009,0.688,-0.021,0,0.688,-0.019,0.009,0.688,-0.021,0.018,0.688,-0.027,0.023,0.689,-0.035,0.025,0.69,-0.044,0.023,0.69,-0.054,0.018,0.691,-0.062,0.009,0.691,-0.068,0,0.691,-0.069,0,0.782,-0.063,-0.009,0.782,-0.061,-0.018,0.781,-0.056,-0.023,0.781,-0.047,-0.025,0.78,-0.038,-0.023,0.78,-0.029,-0.018,0.779,-0.021,-0.009,0.779,-0.015,0,0.779,-0.013,0.009,0.779,-0.015,0.018,0.779,-0.021,0.023,0.78,-0.029,0.025,0.78,-0.038,0.023,0.781,-0.047,0.018,0.781,-0.056,0.009,0.782,-0.061,0,0.782,-0.063,0,0.873,-0.057,-0.009,0.873,-0.055,-0.018,0.872,-0.05,-0.023,0.872,-0.041,-0.025,0.871,-0.032,-0.023,0.87,-0.023,-0.018,0.87,-0.015,-0.009,0.869,-0.009,0,0.869,-0.007,0.009,0.869,-0.009,0.018,0.87,-0.015,0.023,0.87,-0.023,0.025,0.871,-0.032,0.023,0.872,-0.041,0.018,0.872,-0.05,0.009,0.873,-0.055,0,0.873,-0.057,0,0.963,-0.051,-0.009,0.963,-0.049,-0.018,0.963,-0.044,-0.023,0.962,-0.035,-0.025,0.962,-0.026,-0.023,0.961,-0.017,-0.018,0.961,-0.009,-0.009,0.96,-0.003,0,0.96,-0.001,0.009,0.96,-0.003,0.018,0.961,-0.009,0.023,0.961,-0.017,0.025,0.962,-0.026,0.023,0.962,-0.035,0.018,0.963,-0.044,0.009,0.963,-0.049,0,0.963,-0.051,0,1.054,-0.045,-0.009,1.054,-0.043,-0.018,1.054,-0.038,-0.023,1.053,-0.029,-0.025,1.052,-0.02,-0.023,1.052,-0.011,-0.018,1.051,-0.003,-0.009,1.051,0.003,0,1.051,0.005,0.009,1.051,0.003,0.018,1.051,-0.003,0.023,1.052,-0.011,0.025,1.052,-0.02,0.023,1.053,-0.029,0.018,1.054,-0.038,0.009,1.054,-0.043,0,1.054,-0.045,0,1.144,-0.039,-0.009,1.144,-0.037,-0.018,1.143,-0.032,-0.023,1.143,-0.023,-0.025,1.142,-0.014,-0.023,1.142,-0.005,-0.018,1.141,0.003,-0.009,1.141,0.009,0,1.141,0.011,0.009,1.141,0.009,0.018,1.141,0.003,0.023,1.142,-0.005,0.025,1.142,-0.014,0.023,1.143,-0.023,0.018,1.143,-0.032,0.009,1.144,-0.037,0,1.144,-0.039,0,1.22,-0.032,-0.009,1.22,-0.031,-0.017,1.22,-0.026,-0.022,1.219,-0.018,-0.023,1.219,-0.009,-0.022,1.218,0,-0.017,1.218,0.007,-0.009,1.217,0.013,0,1.217,0.014,0.009,1.217,0.013,0.017,1.218,0.007,0.022,1.218,0,0.023,1.219,-0.009,0.022,1.219,-0.018,0.017,1.22,-0.026,0.009,1.22,-0.031,0,1.22,-0.032,0,1.28,-0.025,-0.007,1.28,-0.024,-0.014,1.279,-0.019,-0.019,1.279,-0.013,-0.02,1.278,-0.005,-0.019,1.278,0.002,-0.014,1.277,0.009,-0.007,1.277,0.014,0,1.277,0.015,0.007,1.277,0.014,0.014,1.277,0.009,0.019,1.278,0.002,0.02,1.278,-0.005,0.019,1.279,-0.013,0.014,1.279,-0.019,0.007,1.28,-0.024,0,1.28,-0.025,0,1.322,-0.017,-0.006,1.322,-0.016,-0.011,1.322,-0.013,-0.014,1.321,-0.008,-0.015,1.321,-0.002,-0.014,1.32,0.003,-0.011,1.32,0.008,-0.006,1.32,0.012,0,1.32,0.013,0.006,1.32,0.012,0.011,1.32,0.008,0.014,1.32,0.003,0.015,1.321,-0.002,0.014,1.321,-0.008,0.011,1.322,-0.013,0.006,1.322,-0.016,0,1.322,-0.017,0,1.347,-0.009,-0.003,1.347,-0.008,-0.006,1.347,-0.007,-0.008,1.347,-0.004,-0.008,1.346,-0.001,-0.008,1.346,0.003,-0.006,1.346,0.005,-0.003,1.346,0.007,0,1.346,0.008,0.003,1.346,0.007,0.006,1.346,0.005,0.008,1.346,0.003,0.008,1.346,-0.001,0.008,1.347,-0.004,0.006,1.347,-0.007,0.003,1.347,-0.008,0,1.347,-0.009,0,1.355,0,0.194,1.226,0,0.196,1.226,-0.008,0.196,1.229,-0.008,0.196,1.232,-0.006,0.196,1.234,-0.003,0.196,1.234,0,0.196,1.234,0.003,0.196,1.232,0.006,0.196,1.229,0.008,0.196,1.226,0.008,0.196,1.223,0.008,0.196,1.22,0.006,0.196,1.218,0.003,0.196,1.217,0,0.196,1.218,-0.003,0.196,1.22,-0.006,0.196,1.223,-0.008,0.196,1.226,-0.008,0.205,1.226,-0.015,0.205,1.231,-0.014,0.205,1.237,-0.011,0.205,1.24,-0.006,0.205,1.241,0,0.205,1.24,0.006,0.205,1.237,0.011,0.205,1.231,0.014,0.205,1.226,0.015,0.205,1.22,0.014,0.205,1.215,0.011,0.205,1.212,0.006,0.205,1.211,0,0.205,1.212,-0.006,0.205,1.215,-0.011,0.205,1.22,-0.014,0.205,1.226,-0.015,0.219,1.226,-0.02,0.219,1.233,-0.019,0.219,1.24,-0.014,0.219,1.245,-0.007,0.219,1.246,0,0.219,1.245,0.007,0.219,1.24,0.014,0.219,1.233,0.019,0.219,1.226,0.02,0.219,1.218,0.019,0.219,1.212,0.014,0.219,1.207,0.007,0.219,1.206,0,0.219,1.207,-0.007,0.219,1.212,-0.014,0.219,1.218,-0.019,0.219,1.226,-0.02,0.239,1.226,-0.023,0.239,1.234,-0.022,0.239,1.242,-0.017,0.239,1.248,-0.009,0.239,1.249,0,0.239,1.248,0.009,0.239,1.242,0.017,0.239,1.234,0.022,0.239,1.226,0.023,0.239,1.217,0.022,0.239,1.209,0.017,0.239,1.204,0.009,0.239,1.202,0,0.239,1.204,-0.009,0.239,1.209,-0.017,0.239,1.217,-0.022,0.239,1.226,-0.023,0.264,1.226,-0.025,0.264,1.235,-0.023,0.264,1.243,-0.018,0.264,1.249,-0.009,0.264,1.251,0,0.264,1.249,0.009,0.264,1.243,0.018,0.264,1.235,0.023,0.264,1.226,0.025,0.264,1.217,0.023,0.264,1.208,0.018,0.264,1.203,0.009,0.264,1.201,0,0.264,1.203,-0.009,0.264,1.208,-0.018,0.264,1.217,-0.023,0.264,1.226,-0.025,0.294,1.226,-0.025,0.294,1.235,-0.023,0.294,1.243,-0.018,0.294,1.249,-0.009,0.294,1.251,0,0.294,1.249,0.009,0.294,1.243,0.018,0.294,1.235,0.023,0.294,1.226,0.025,0.294,1.217,0.023,0.294,1.208,0.018,0.294,1.203,0.009,0.294,1.201,0,0.294,1.203,-0.009,0.294,1.208,-0.018,0.294,1.217,-0.023,0.294,1.226,-0.025,0.325,1.226,-0.025,0.325,1.235,-0.023,0.325,1.243,-0.018,0.325,1.249,-0.009,0.325,1.251,0,0.325,1.249,0.009,0.325,1.243,0.018,0.325,1.235,0.023,0.325,1.226,0.025,0.325,1.217,0.023,0.325,1.208,0.018,0.325,1.203,0.009,0.325,1.201,0,0.325,1.203,-0.009,0.325,1.208,-0.018,0.325,1.217,-0.023,0.325,1.226,-0.025,0.355,1.226,-0.025,0.355,1.235,-0.023,0.355,1.243,-0.018,0.355,1.249,-0.009,0.355,1.251,0,0.355,1.249,0.009,0.355,1.243,0.018,0.355,1.235,0.023,0.355,1.226,0.025,0.355,1.217,0.023,0.355,1.208,0.018,0.355,1.203,0.009,0.355,1.201,0,0.355,1.203,-0.009,0.355,1.208,-0.018,0.355,1.217,-0.023,0.355,1.226,-0.025,0.385,1.226,-0.025,0.385,1.235,-0.023,0.385,1.243,-0.018,0.385,1.249,-0.009,0.385,1.251,0,0.385,1.249,0.009,0.385,1.243,0.018,0.385,1.235,0.023,0.385,1.226,0.025,0.385,1.217,0.023,0.385,1.208,0.018,0.385,1.203,0.009,0.385,1.201,0,0.385,1.203,-0.009,0.385,1.208,-0.018,0.385,1.217,-0.023,0.385,1.226,-0.025,0.415,1.226,-0.025,0.415,1.235,-0.023,0.415,1.243,-0.018,0.415,1.249,-0.009,0.415,1.251,0,0.415,1.249,0.009,0.415,1.243,0.018,0.415,1.235,0.023,0.415,1.226,0.025,0.415,1.217,0.023,0.415,1.208,0.018,0.415,1.203,0.009,0.415,1.201,0,0.415,1.203,-0.009,0.415,1.208,-0.018,0.415,1.217,-0.023,0.415,1.226,-0.025,0.445,1.226,-0.025,0.445,1.235,-0.023,0.445,1.243,-0.018,0.445,1.249,-0.009,0.445,1.251,0,0.445,1.249,0.009,0.445,1.243,0.018,0.445,1.235,0.023,0.445,1.226,0.025,0.445,1.217,0.023,0.445,1.208,0.018,0.445,1.203,0.009,0.445,1.201,0,0.445,1.203,-0.009,0.445,1.208,-0.018,0.445,1.217,-0.023,0.445,1.226,-0.025,0.471,1.226,-0.023,0.471,1.234,-0.022,0.471,1.242,-0.017,0.471,1.248,-0.009,0.471,1.249,0,0.471,1.248,0.009,0.471,1.242,0.017,0.471,1.234,0.022,0.471,1.226,0.023,0.471,1.217,0.022,0.471,1.209,0.017,0.471,1.204,0.009,0.471,1.202,0,0.471,1.204,-0.009,0.471,1.209,-0.017,0.471,1.217,-0.022,0.471,1.226,-0.023,0.491,1.226,-0.02,0.491,1.233,-0.019,0.491,1.24,-0.014,0.491,1.245,-0.007,0.491,1.246,0,0.491,1.245,0.007,0.491,1.24,0.014,0.491,1.233,0.019,0.491,1.226,0.02,0.491,1.218,0.019,0.491,1.212,0.014,0.491,1.207,0.007,0.491,1.206,0,0.491,1.207,-0.007,0.491,1.212,-0.014,0.491,1.218,-0.019,0.491,1.226,-0.02,0.505,1.226,-0.015,0.505,1.231,-0.014,0.505,1.237,-0.011,0.505,1.24,-0.006,0.505,1.241,0,0.505,1.24,0.006,0.505,1.237,0.011,0.505,1.231,0.014,0.505,1.226,0.015,0.505,1.22,0.014,0.505,1.215,0.011,0.505,1.212,0.006,0.505,1.211,0,0.505,1.212,-0.006,0.505,1.215,-0.011,0.505,1.22,-0.014,0.505,1.226,-0.015,0.513,1.226,-0.008,0.513,1.229,-0.008,0.513,1.232,-0.006,0.513,1.234,-0.003,0.513,1.234,0,0.513,1.234,0.003,0.513,1.232,0.006,0.513,1.229,0.008,0.513,1.226,0.008,0.513,1.223,0.008,0.513,1.22,0.006,0.513,1.218,0.003,0.513,1.217,0,0.513,1.218,-0.003,0.513,1.22,-0.006,0.513,1.223,-0.008,0.513,1.226,-0.008,0.516,1.226,0,0.516,1.226,0,0.516,1.219,-0.008,0.519,1.219,-0.008,0.522,1.219,-0.006,0.524,1.219,-0.003,0.525,1.219,0,0.524,1.219,0.003,0.522,1.219,0.006,0.519,1.219,0.008,0.516,1.219,0.008,0.513,1.219,0.008,0.51,1.219,0.006,0.508,1.219,0.003,0.508,1.219,0,0.508,1.219,-0.003,0.51,1.219,-0.006,0.513,1.219,-0.008,0.516,1.219,-0.008,0.516,1.199,-0.015,0.522,1.199,-0.014,0.527,1.199,-0.011,0.53,1.199,-0.006,0.531,1.199,0,0.53,1.199,0.006,0.527,1.199,0.011,0.522,1.199,0.014,0.516,1.199,0.015,0.511,1.199,0.014,0.505,1.199,0.011,0.502,1.199,0.006,0.501,1.199,0,0.502,1.199,-0.006,0.505,1.199,-0.011,0.511,1.199,-0.014,0.516,1.199,-0.015,0.516,1.165,-0.02,0.524,1.165,-0.019,0.53,1.165,-0.014,0.535,1.165,-0.007,0.536,1.165,0,0.535,1.165,0.007,0.53,1.165,0.014,0.524,1.165,0.019,0.516,1.165,0.02,0.509,1.165,0.019,0.502,1.165,0.014,0.497,1.165,0.007,0.496,1.165,0,0.497,1.165,-0.007,0.502,1.165,-0.014,0.509,1.165,-0.019,0.516,1.165,-0.02,0.516,1.117,-0.023,0.525,1.117,-0.022,0.533,1.117,-0.017,0.538,1.117,-0.009,0.54,1.117,0,0.538,1.117,0.009,0.533,1.117,0.017,0.525,1.117,0.022,0.516,1.117,0.023,0.508,1.117,0.022,0.5,1.117,0.017,0.494,1.117,0.009,0.493,1.117,0,0.494,1.117,-0.009,0.5,1.117,-0.017,0.508,1.117,-0.022,0.516,1.117,-0.023,0.516,1.056,-0.025,0.525,1.056,-0.023,0.534,1.056,-0.018,0.539,1.056,-0.009,0.541,1.056,0,0.539,1.056,0.009,0.534,1.056,0.018,0.525,1.056,0.023,0.516,1.056,0.025,0.507,1.056,0.023,0.499,1.056,0.018,0.493,1.056,0.009,0.491,1.056,0,0.493,1.056,-0.009,0.499,1.056,-0.018,0.507,1.056,-0.023,0.516,1.056,-0.025,0.516,0.984,-0.025,0.525,0.984,-0.023,0.534,0.984,-0.018,0.539,0.984,-0.009,0.541,0.984,0,0.539,0.984,0.009,0.534,0.984,0.018,0.525,0.984,0.023,0.516,0.984,0.025,0.507,0.984,0.023,0.498,0.984,0.018,0.493,0.984,0.009,0.491,0.984,0,0.493,0.984,-0.009,0.498,0.984,-0.018,0.507,0.984,-0.023,0.516,0.984,-0.025,0.516,0.911,-0.025,0.525,0.911,-0.023,0.534,0.911,-0.018,0.539,0.911,-0.009,0.541,0.911,0,0.539,0.911,0.009,0.534,0.911,0.018,0.525,0.911,0.023,0.516,0.911,0.025,0.507,0.911,0.023,0.498,0.911,0.018,0.493,0.911,0.009,0.491,0.911,0,0.493,0.911,-0.009,0.498,0.911,-0.018,0.507,0.911,-0.023,0.516,0.911,-0.025,0.516,0.839,-0.025,0.525,0.839,-0.023,0.534,0.839,-0.018,0.539,0.839,-0.009,0.541,0.839,0,0.539,0.839,0.009,0.534,0.839,0.018,0.525,0.839,0.023,0.516,0.839,0.025,0.507,0.839,0.023,0.498,0.839,0.018,0.493,0.839,0.009,0.491,0.839,0,0.493,0.839,-0.009,0.498,0.839,-0.018,0.507,0.839,-0.023,0.516,0.839,-0.025,0.516,0.766,-0.025,0.525,0.766,-0.023,0.534,0.766,-0.018,0.539,0.766,-0.009,0.541,0.766,0,0.539,0.766,0.009,0.534,0.766,0.018,0.525,0.766,0.023,0.516,0.766,0.025,0.507,0.766,0.023,0.498,0.766,0.018,0.493,0.766,0.009,0.491,0.766,0,0.493,0.766,-0.009,0.498,0.766,-0.018,0.507,0.766,-0.023,0.516,0.766,-0.025,0.516,0.694,-0.025,0.525,0.694,-0.023,0.534,0.694,-0.018,0.539,0.694,-0.009,0.541,0.694,0,0.539,0.694,0.009,0.534,0.694,0.018,0.525,0.694,0.023,0.516,0.694,0.025,0.507,0.694,0.023,0.498,0.694,0.018,0.493,0.694,0.009,0.491,0.694,0,0.493,0.694,-0.009,0.498,0.694,-0.018,0.507,0.694,-0.023,0.516,0.694,-0.025,0.516,0.622,-0.025,0.525,0.622,-0.023,0.534,0.622,-0.018,0.539,0.622,-0.009,0.541,0.622,0,0.539,0.622,0.009,0.534,0.622,0.018,0.525,0.622,0.023,0.516,0.622,0.025,0.507,0.622,0.023,0.499,0.622,0.018,0.493,0.622,0.009,0.491,0.622,0,0.493,0.622,-0.009,0.499,0.622,-0.018,0.507,0.622,-0.023,0.516,0.622,-0.025,0.516,0.56,-0.023,0.525,0.56,-0.022,0.533,0.56,-0.017,0.538,0.56,-0.009,0.54,0.56,0,0.538,0.56,0.009,0.533,0.56,0.017,0.525,0.56,0.022,0.516,0.56,0.023,0.508,0.56,0.022,0.5,0.56,0.017,0.494,0.56,0.009,0.493,0.56,0,0.494,0.56,-0.009,0.5,0.56,-0.017,0.508,0.56,-0.022,0.516,0.56,-0.023,0.516,0.513,-0.02,0.524,0.513,-0.019,0.53,0.513,-0.014,0.535,0.513,-0.007,0.536,0.513,0,0.535,0.513,0.007,0.53,0.513,0.014,0.524,0.513,0.019,0.516,0.513,0.02,0.509,0.513,0.019,0.502,0.513,0.014,0.497,0.513,0.007,0.496,0.513,0,0.497,0.513,-0.007,0.502,0.513,-0.014,0.509,0.513,-0.019,0.516,0.513,-0.02,0.516,0.479,-0.015,0.522,0.479,-0.014,0.527,0.479,-0.011,0.53,0.479,-0.006,0.531,0.479,0,0.53,0.479,0.006,0.527,0.479,0.011,0.522,0.479,0.014,0.516,0.479,0.015,0.511,0.479,0.014,0.505,0.479,0.011,0.502,0.479,0.006,0.501,0.479,0,0.502,0.479,-0.006,0.505,0.479,-0.011,0.511,0.479,-0.014,0.516,0.479,-0.015,0.516,0.458,-0.008,0.519,0.458,-0.008,0.522,0.458,-0.006,0.524,0.458,-0.003,0.525,0.458,0,0.524,0.458,0.003,0.522,0.458,0.006,0.519,0.458,0.008,0.516,0.458,0.008,0.513,0.458,0.008,0.51,0.458,0.006,0.508,0.458,0.003,0.508,0.458,0,0.508,0.458,-0.003,0.51,0.458,-0.006,0.513,0.458,-0.008,0.516,0.458,-0.008,0.516,0.452,0,0.516,0.452,0,0.516,0.446,-0.008,0.519,0.446,-0.008,0.522,0.446,-0.006,0.524,0.446,-0.003,0.525,0.446,0,0.524,0.446,0.003,0.522,0.446,0.006,0.519,0.446,0.008,0.516,0.446,0.008,0.513,0.446,0.008,0.51,0.446,0.006,0.508,0.446,0.003,0.508,0.446,0,0.508,0.446,-0.003,0.51,0.446,-0.006,0.513,0.446,-0.008,0.516,0.446,-0.008,0.516,0.43,-0.015,0.522,0.43,-0.014,0.527,0.43,-0.011,0.53,0.43,-0.006,0.531,0.43,0,0.53,0.43,0.006,0.527,0.43,0.011,0.522,0.43,0.014,0.516,0.43,0.015,0.511,0.43,0.014,0.505,0.43,0.011,0.502,0.43,0.006,0.501,0.43,0,0.502,0.43,-0.006,0.505,0.43,-0.011,0.511,0.43,-0.014,0.516,0.43,-0.015,0.516,0.403,-0.02,0.524,0.403,-0.019,0.53,0.403,-0.014,0.535,0.403,-0.007,0.536,0.403,0,0.535,0.403,0.007,0.53,0.403,0.014,0.524,0.403,0.019,0.516,0.403,0.02,0.509,0.403,0.019,0.502,0.403,0.014,0.497,0.403,0.007,0.496,0.403,0,0.497,0.403,-0.007,0.502,0.403,-0.014,0.509,0.403,-0.019,0.516,0.403,-0.02,0.516,0.365,-0.023,0.525,0.365,-0.022,0.533,0.365,-0.017,0.538,0.365,-0.009,0.54,0.365,0,0.538,0.365,0.009,0.533,0.365,0.017,0.525,0.365,0.022,0.516,0.365,0.023,0.508,0.365,0.022,0.5,0.365,0.017,0.494,0.365,0.009,0.493,0.365,0,0.494,0.365,-0.009,0.5,0.365,-0.017,0.508,0.365,-0.022,0.516,0.365,-0.023,0.516,0.317,-0.025,0.525,0.317,-0.023,0.534,0.317,-0.018,0.539,0.317,-0.009,0.541,0.317,0,0.539,0.317,0.009,0.534,0.317,0.018,0.525,0.317,0.023,0.516,0.317,0.025,0.507,0.317,0.023,0.499,0.317,0.018,0.493,0.317,0.009,0.491,0.317,0,0.493,0.317,-0.009,0.499,0.317,-0.018,0.507,0.317,-0.023,0.516,0.317,-0.025,0.516,0.26,-0.025,0.525,0.26,-0.023,0.534,0.26,-0.018,0.539,0.26,-0.009,0.541,0.26,0,0.539,0.26,0.009,0.534,0.26,0.018,0.525,0.26,0.023,0.516,0.26,0.025,0.507,0.26,0.023,0.498,0.26,0.018,0.493,0.26,0.009,0.491,0.26,0,0.493,0.26,-0.009,0.498,0.26,-0.018,0.507,0.26,-0.023,0.516,0.26,-0.025,0.516,0.203,-0.025,0.525,0.203,-0.023,0.534,0.203,-0.018,0.539,0.203,-0.009,0.541,0.203,0,0.539,0.203,0.009,0.534,0.203,0.018,0.525,0.203,0.023,0.516,0.203,0.025,0.507,0.203,0.023,0.498,0.203,0.018,0.493,0.203,0.009,0.491,0.203,0,0.493,0.203,-0.009,0.498,0.203,-0.018,0.507,0.203,-0.023,0.516,0.203,-0.025,0.516,0.145,-0.025,0.525,0.145,-0.023,0.534,0.145,-0.018,0.539,0.145,-0.009,0.541,0.145,0,0.539,0.145,0.009,0.534,0.145,0.018,0.525,0.145,0.023,0.516,0.145,0.025,0.507,0.145,0.023,0.498,0.145,0.018,0.493,0.145,0.009,0.491,0.145,0,0.493,0.145,-0.009,0.498,0.145,-0.018,0.507,0.145,-0.023,0.516,0.145,-0.025,0.516,0.088,-0.025,0.525,0.088,-0.023,0.534,0.088,-0.018,0.539,0.088,-0.009,0.541,0.088,0,0.539,0.088,0.009,0.534,0.088,0.018,0.525,0.088,0.023,0.516,0.088,0.025,0.507,0.088,0.023,0.498,0.088,0.018,0.493,0.088,0.009,0.491,0.088,0,0.493,0.088,-0.009,0.498,0.088,-0.018,0.507,0.088,-0.023,0.516,0.088,-0.025,0.516,0.03,-0.025,0.525,0.03,-0.023,0.534,0.03,-0.018,0.539,0.03,-0.009,0.541,0.03,0,0.539,0.03,0.009,0.534,0.03,0.018,0.525,0.03,0.023,0.516,0.03,0.025,0.507,0.03,0.023,0.498,0.03,0.018,0.493,0.03,0.009,0.491,0.03,0,0.493,0.03,-0.009,0.498,0.03,-0.018,0.507,0.03,-0.023,0.516,0.03,-0.025,0.516,-0.027,-0.025,0.525,-0.027,-0.023,0.534,-0.027,-0.018,0.539,-0.027,-0.009,0.541,-0.027,0,0.539,-0.027,0.009,0.534,-0.027,0.018,0.525,-0.027,0.023,0.516,-0.027,0.025,0.507,-0.027,0.023,0.499,-0.027,0.018,0.493,-0.027,0.009,0.491,-0.027,0,0.493,-0.027,-0.009,0.499,-0.027,-0.018,0.507,-0.027,-0.023,0.516,-0.027,-0.025,0.516,-0.075,-0.023,0.525,-0.075,-0.022,0.533,-0.075,-0.017,0.538,-0.075,-0.009,0.54,-0.075,0,0.538,-0.075,0.009,0.533,-0.075,0.017,0.525,-0.075,0.022,0.516,-0.075,0.023,0.508,-0.075,0.022,0.5,-0.075,0.017,0.494,-0.075,0.009,0.493,-0.075,0,0.494,-0.075,-0.009,0.5,-0.075,-0.017,0.508,-0.075,-0.022,0.516,-0.075,-0.023,0.516,-0.113,-0.02,0.524,-0.113,-0.019,0.53,-0.113,-0.014,0.535,-0.113,-0.007,0.536,-0.113,0,0.535,-0.113,0.007,0.53,-0.113,0.014,0.524,-0.113,0.019,0.516,-0.113,0.02,0.509,-0.113,0.019,0.502,-0.113,0.014,0.497,-0.113,0.007,0.496,-0.113,0,0.497,-0.113,-0.007,0.502,-0.113,-0.014,0.509,-0.113,-0.019,0.516,-0.113,-0.02,0.516,-0.14,-0.015,0.522,-0.14,-0.014,0.527,-0.14,-0.011,0.53,-0.14,-0.006,0.531,-0.14,0,0.53,-0.14,0.006,0.527,-0.14,0.011,0.522,-0.14,0.014,0.516,-0.14,0.015,0.511,-0.14,0.014,0.505,-0.14,0.011,0.502,-0.14,0.006,0.501,-0.14,0,0.502,-0.14,-0.006,0.505,-0.14,-0.011,0.511,-0.14,-0.014,0.516,-0.14,-0.015,0.516,-0.156,-0.008,0.519,-0.156,-0.008,0.522,-0.156,-0.006,0.524,-0.156,-0.003,0.525,-0.156,0,0.524,-0.156,0.003,0.522,-0.156,0.006,0.519,-0.156,0.008,0.516,-0.156,0.008,0.513,-0.156,0.008,0.51,-0.156,0.006,0.508,-0.156,0.003,0.508,-0.156,0,0.508,-0.156,-0.003,0.51,-0.156,-0.006,0.513,-0.156,-0.008,0.516,-0.156,-0.008,0.516,-0.161,0,0.516,-0.161,0,0.516,-0.165,-0.008,0.519,-0.165,-0.008,0.522,-0.165,-0.006,0.524,-0.165,-0.003,0.525,-0.165,0,0.524,-0.165,0.003,0.522,-0.165,0.006,0.519,-0.165,0.008,0.516,-0.165,0.008,0.513,-0.165,0.008,0.51,-0.165,0.006,0.508,-0.165,0.003,0.508,-0.165,0,0.508,-0.165,-0.003,0.51,-0.165,-0.006,0.513,-0.165,-0.008,0.516,-0.165,-0.008,0.516,-0.177,-0.015,0.522,-0.177,-0.014,0.527,-0.177,-0.011,0.53,-0.177,-0.006,0.531,-0.177,0,0.53,-0.177,0.006,0.527,-0.177,0.011,0.522,-0.177,0.014,0.516,-0.177,0.015,0.511,-0.177,0.014,0.505,-0.177,0.011,0.502,-0.177,0.006,0.501,-0.177,0,0.502,-0.177,-0.006,0.505,-0.177,-0.011,0.511,-0.177,-0.014,0.516,-0.177,-0.015,0.516,-0.197,-0.02,0.524,-0.197,-0.019,0.53,-0.197,-0.014,0.535,-0.197,-0.007,0.536,-0.197,0,0.535,-0.197,0.007,0.53,-0.197,0.014,0.524,-0.197,0.019,0.516,-0.197,0.02,0.509,-0.197,0.019,0.502,-0.197,0.014,0.497,-0.197,0.007,0.496,-0.197,0,0.497,-0.197,-0.007,0.502,-0.197,-0.014,0.509,-0.197,-0.019,0.516,-0.197,-0.02,0.516,-0.225,-0.023,0.525,-0.225,-0.022,0.533,-0.225,-0.017,0.538,-0.225,-0.009,0.54,-0.225,0,0.538,-0.225,0.009,0.533,-0.225,0.017,0.525,-0.225,0.022,0.516,-0.225,0.023,0.508,-0.225,0.022,0.5,-0.225,0.017,0.494,-0.225,0.009,0.493,-0.225,0,0.494,-0.225,-0.009,0.5,-0.225,-0.017,0.508,-0.225,-0.022,0.516,-0.225,-0.023,0.516,-0.261,-0.025,0.525,-0.261,-0.023,0.534,-0.261,-0.018,0.539,-0.261,-0.009,0.541,-0.261,0,0.539,-0.261,0.009,0.534,-0.261,0.018,0.525,-0.261,0.023,0.516,-0.261,0.025,0.507,-0.261,0.023,0.499,-0.261,0.018,0.493,-0.261,0.009,0.491,-0.261,0,0.493,-0.261,-0.009,0.499,-0.261,-0.018,0.507,-0.261,-0.023,0.516,-0.261,-0.025,0.516,-0.302,-0.025,0.525,-0.302,-0.023,0.534,-0.302,-0.018,0.539,-0.302,-0.009,0.541,-0.302,0,0.539,-0.302,0.009,0.534,-0.302,0.018,0.525,-0.302,0.023,0.516,-0.302,0.025,0.507,-0.302,0.023,0.498,-0.302,0.018,0.493,-0.302,0.009,0.491,-0.302,0,0.493,-0.302,-0.009,0.498,-0.302,-0.018,0.507,-0.302,-0.023,0.516,-0.302,-0.025,0.516,-0.345,-0.025,0.525,-0.345,-0.023,0.534,-0.345,-0.018,0.539,-0.345,-0.009,0.541,-0.345,0,0.539,-0.345,0.009,0.534,-0.345,0.018,0.525,-0.345,0.023,0.516,-0.345,0.025,0.507,-0.345,0.023,0.498,-0.345,0.018,0.493,-0.345,0.009,0.491,-0.345,0,0.493,-0.345,-0.009,0.498,-0.345,-0.018,0.507,-0.345,-0.023,0.516,-0.345,-0.025,0.516,-0.387,-0.025,0.525,-0.387,-0.023,0.534,-0.387,-0.018,0.539,-0.387,-0.009,0.541,-0.387,0,0.539,-0.387,0.009,0.534,-0.387,0.018,0.525,-0.387,0.023,0.516,-0.387,0.025,0.507,-0.387,0.023,0.498,-0.387,0.018,0.493,-0.387,0.009,0.491,-0.387,0,0.493,-0.387,-0.009,0.498,-0.387,-0.018,0.507,-0.387,-0.023,0.516,-0.387,-0.025,0.516,-0.429,-0.025,0.525,-0.429,-0.023,0.534,-0.429,-0.018,0.539,-0.429,-0.009,0.541,-0.429,0,0.539,-0.429,0.009,0.534,-0.429,0.018,0.525,-0.429,0.023,0.516,-0.429,0.025,0.507,-0.429,0.023,0.498,-0.429,0.018,0.493,-0.429,0.009,0.491,-0.429,0,0.493,-0.429,-0.009,0.498,-0.429,-0.018,0.507,-0.429,-0.023,0.516,-0.429,-0.025,0.516,-0.472,-0.025,0.525,-0.472,-0.023,0.534,-0.472,-0.018,0.539,-0.472,-0.009,0.541,-0.472,0,0.539,-0.472,0.009,0.534,-0.472,0.018,0.525,-0.472,0.023,0.516,-0.472,0.025,0.507,-0.472,0.023,0.498,-0.472,0.018,0.493,-0.472,0.009,0.491,-0.472,0,0.493,-0.472,-0.009,0.498,-0.472,-0.018,0.507,-0.472,-0.023,0.516,-0.472,-0.025,0.516,-0.514,-0.025,0.525,-0.514,-0.023,0.534,-0.514,-0.018,0.539,-0.514,-0.009,0.541,-0.514,0,0.539,-0.514,0.009,0.534,-0.514,0.018,0.525,-0.514,0.023,0.516,-0.514,0.025,0.507,-0.514,0.023,0.499,-0.514,0.018,0.493,-0.514,0.009,0.491,-0.514,0,0.493,-0.514,-0.009,0.499,-0.514,-0.018,0.507,-0.514,-0.023,0.516,-0.514,-0.025,0.516,-0.549,-0.023,0.525,-0.549,-0.022,0.533,-0.549,-0.017,0.538,-0.549,-0.009,0.54,-0.549,0,0.538,-0.549,0.009,0.533,-0.549,0.017,0.525,-0.549,0.022,0.516,-0.549,0.023,0.508,-0.549,0.022,0.5,-0.549,0.017,0.494,-0.549,0.009,0.493,-0.549,0,0.494,-0.549,-0.009,0.5,-0.549,-0.017,0.508,-0.549,-0.022,0.516,-0.549,-0.023,0.516,-0.577,-0.02,0.524,-0.577,-0.019,0.53,-0.577,-0.014,0.535,-0.577,-0.007,0.536,-0.577,0,0.535,-0.577,0.007,0.53,-0.577,0.014,0.524,-0.577,0.019,0.516,-0.577,0.02,0.509,-0.577,0.019,0.502,-0.577,0.014,0.497,-0.577,0.007,0.496,-0.577,0,0.497,-0.577,-0.007,0.502,-0.577,-0.014,0.509,-0.577,-0.019,0.516,-0.577,-0.02,0.516,-0.597,-0.015,0.522,-0.597,-0.014,0.527,-0.597,-0.011,0.53,-0.597,-0.006,0.531,-0.597,0,0.53,-0.597,0.006,0.527,-0.597,0.011,0.522,-0.597,0.014,0.516,-0.597,0.015,0.511,-0.597,0.014,0.505,-0.597,0.011,0.502,-0.597,0.006,0.501,-0.597,0,0.502,-0.597,-0.006,0.505,-0.597,-0.011,0.511,-0.597,-0.014,0.516,-0.597,-0.015,0.516,-0.609,-0.008,0.519,-0.609,-0.008,0.522,-0.609,-0.006,0.524,-0.609,-0.003,0.525,-0.609,0,0.524,-0.609,0.003,0.522,-0.609,0.006,0.519,-0.609,0.008,0.516,-0.609,0.008,0.513,-0.609,0.008,0.51,-0.609,0.006,0.508,-0.609,0.003,0.508,-0.609,0,0.508,-0.609,-0.003,0.51,-0.609,-0.006,0.513,-0.609,-0.008,0.516,-0.609,-0.008,0.516,-0.613,0,-0.194,1.226,0,-0.196,1.226,-0.008,-0.196,1.223,-0.008,-0.196,1.22,-0.006,-0.196,1.218,-0.003,-0.196,1.217,0,-0.196,1.218,0.003,-0.196,1.22,0.006,-0.196,1.223,0.008,-0.196,1.226,0.008,-0.196,1.229,0.008,-0.196,1.232,0.006,-0.196,1.234,0.003,-0.196,1.234,0,-0.196,1.234,-0.003,-0.196,1.232,-0.006,-0.196,1.229,-0.008,-0.196,1.226,-0.008,-0.205,1.226,-0.015,-0.205,1.22,-0.014,-0.205,1.215,-0.011,-0.205,1.212,-0.006,-0.205,1.211,0,-0.205,1.212,0.006,-0.205,1.215,0.011,-0.205,1.22,0.014,-0.205,1.226,0.015,-0.205,1.231,0.014,-0.205,1.237,0.011,-0.205,1.24,0.006,-0.205,1.241,0,-0.205,1.24,-0.006,-0.205,1.237,-0.011,-0.205,1.231,-0.014,-0.205,1.226,-0.015,-0.219,1.226,-0.02,-0.219,1.218,-0.019,-0.219,1.212,-0.014,-0.219,1.207,-0.007,-0.219,1.206,0,-0.219,1.207,0.007,-0.219,1.212,0.014,-0.219,1.218,0.019,-0.219,1.226,0.02,-0.219,1.233,0.019,-0.219,1.24,0.014,-0.219,1.245,0.007,-0.219,1.246,0,-0.219,1.245,-0.007,-0.219,1.24,-0.014,-0.219,1.233,-0.019,-0.219,1.226,-0.02,-0.239,1.226,-0.023,-0.239,1.217,-0.022,-0.239,1.209,-0.017,-0.239,1.204,-0.009,-0.239,1.202,0,-0.239,1.204,0.009,-0.239,1.209,0.017,-0.239,1.217,0.022,-0.239,1.226,0.023,-0.239,1.234,0.022,-0.239,1.242,0.017,-0.239,1.248,0.009,-0.239,1.249,0,-0.239,1.248,-0.009,-0.239,1.242,-0.017,-0.239,1.234,-0.022,-0.239,1.226,-0.023,-0.264,1.226,-0.025,-0.264,1.217,-0.023,-0.264,1.208,-0.018,-0.264,1.203,-0.009,-0.264,1.201,0,-0.264,1.203,0.009,-0.264,1.208,0.018,-0.264,1.217,0.023,-0.264,1.226,0.025,-0.264,1.235,0.023,-0.264,1.243,0.018,-0.264,1.249,0.009,-0.264,1.251,0,-0.264,1.249,-0.009,-0.264,1.243,-0.018,-0.264,1.235,-0.023,-0.264,1.226,-0.025,-0.294,1.226,-0.025,-0.294,1.217,-0.023,-0.294,1.208,-0.018,-0.294,1.203,-0.009,-0.294,1.201,0,-0.294,1.203,0.009,-0.294,1.208,0.018,-0.294,1.217,0.023,-0.294,1.226,0.025,-0.294,1.235,0.023,-0.294,1.243,0.018,-0.294,1.249,0.009,-0.294,1.251,0,-0.294,1.249,-0.009,-0.294,1.243,-0.018,-0.294,1.235,-0.023,-0.294,1.226,-0.025,-0.325,1.226,-0.025,-0.325,1.217,-0.023,-0.325,1.208,-0.018,-0.325,1.203,-0.009,-0.325,1.201,0,-0.325,1.203,0.009,-0.325,1.208,0.018,-0.325,1.217,0.023,-0.325,1.226,0.025,-0.325,1.235,0.023,-0.325,1.243,0.018,-0.325,1.249,0.009,-0.325,1.251,0,-0.325,1.249,-0.009,-0.325,1.243,-0.018,-0.325,1.235,-0.023,-0.325,1.226,-0.025,-0.355,1.226,-0.025,-0.355,1.217,-0.023,-0.355,1.208,-0.018,-0.355,1.203,-0.009,-0.355,1.201,0,-0.355,1.203,0.009,-0.355,1.208,0.018,-0.355,1.217,0.023,-0.355,1.226,0.025,-0.355,1.235,0.023,-0.355,1.243,0.018,-0.355,1.249,0.009,-0.355,1.251,0,-0.355,1.249,-0.009,-0.355,1.243,-0.018,-0.355,1.235,-0.023,-0.355,1.226,-0.025,-0.385,1.226,-0.025,-0.385,1.217,-0.023,-0.385,1.208,-0.018,-0.385,1.203,-0.009,-0.385,1.201,0,-0.385,1.203,0.009,-0.385,1.208,0.018,-0.385,1.217,0.023,-0.385,1.226,0.025,-0.385,1.235,0.023,-0.385,1.243,0.018,-0.385,1.249,0.009,-0.385,1.251,0,-0.385,1.249,-0.009,-0.385,1.243,-0.018,-0.385,1.235,-0.023,-0.385,1.226,-0.025,-0.415,1.226,-0.025,-0.415,1.217,-0.023,-0.415,1.208,-0.018,-0.415,1.203,-0.009,-0.415,1.201,0,-0.415,1.203,0.009,-0.415,1.208,0.018,-0.415,1.217,0.023,-0.415,1.226,0.025,-0.415,1.235,0.023,-0.415,1.243,0.018,-0.415,1.249,0.009,-0.415,1.251,0,-0.415,1.249,-0.009,-0.415,1.243,-0.018,-0.415,1.235,-0.023,-0.415,1.226,-0.025,-0.445,1.226,-0.025,-0.445,1.217,-0.023,-0.445,1.208,-0.018,-0.445,1.203,-0.009,-0.445,1.201,0,-0.445,1.203,0.009,-0.445,1.208,0.018,-0.445,1.217,0.023,-0.445,1.226,0.025,-0.445,1.235,0.023,-0.445,1.243,0.018,-0.445,1.249,0.009,-0.445,1.251,0,-0.445,1.249,-0.009,-0.445,1.243,-0.018,-0.445,1.235,-0.023,-0.445,1.226,-0.025,-0.471,1.226,-0.023,-0.471,1.217,-0.022,-0.471,1.209,-0.017,-0.471,1.204,-0.009,-0.471,1.202,0,-0.471,1.204,0.009,-0.471,1.209,0.017,-0.471,1.217,0.022,-0.471,1.226,0.023,-0.471,1.234,0.022,-0.471,1.242,0.017,-0.471,1.248,0.009,-0.471,1.249,0,-0.471,1.248,-0.009,-0.471,1.242,-0.017,-0.471,1.234,-0.022,-0.471,1.226,-0.023,-0.491,1.226,-0.02,-0.491,1.218,-0.019,-0.491,1.212,-0.014,-0.491,1.207,-0.007,-0.491,1.206,0,-0.491,1.207,0.007,-0.491,1.212,0.014,-0.491,1.218,0.019,-0.491,1.226,0.02,-0.491,1.233,0.019,-0.491,1.24,0.014,-0.491,1.245,0.007,-0.491,1.246,0,-0.491,1.245,-0.007,-0.491,1.24,-0.014,-0.491,1.233,-0.019,-0.491,1.226,-0.02,-0.505,1.226,-0.015,-0.505,1.22,-0.014,-0.505,1.215,-0.011,-0.505,1.212,-0.006,-0.505,1.211,0,-0.505,1.212,0.006,-0.505,1.215,0.011,-0.505,1.22,0.014,-0.505,1.226,0.015,-0.505,1.231,0.014,-0.505,1.237,0.011,-0.505,1.24,0.006,-0.505,1.241,0,-0.505,1.24,-0.006,-0.505,1.237,-0.011,-0.505,1.231,-0.014,-0.505,1.226,-0.015,-0.513,1.226,-0.008,-0.513,1.223,-0.008,-0.513,1.22,-0.006,-0.513,1.218,-0.003,-0.513,1.217,0,-0.513,1.218,0.003,-0.513,1.22,0.006,-0.513,1.223,0.008,-0.513,1.226,0.008,-0.513,1.229,0.008,-0.513,1.232,0.006,-0.513,1.234,0.003,-0.513,1.234,0,-0.513,1.234,-0.003,-0.513,1.232,-0.006,-0.513,1.229,-0.008,-0.513,1.226,-0.008,-0.516,1.226,0,-0.516,1.226,0,-0.516,1.219,-0.008,-0.513,1.219,-0.008,-0.51,1.219,-0.006,-0.508,1.219,-0.003,-0.508,1.219,0,-0.508,1.219,0.003,-0.51,1.219,0.006,-0.513,1.219,0.008,-0.516,1.219,0.008,-0.519,1.219,0.008,-0.522,1.219,0.006,-0.524,1.219,0.003,-0.525,1.219,0,-0.524,1.219,-0.003,-0.522,1.219,-0.006,-0.519,1.219,-0.008,-0.516,1.219,-0.008,-0.516,1.199,-0.015,-0.511,1.199,-0.014,-0.505,1.199,-0.011,-0.502,1.199,-0.006,-0.501,1.199,0,-0.502,1.199,0.006,-0.505,1.199,0.011,-0.511,1.199,0.014,-0.516,1.199,0.015,-0.522,1.199,0.014,-0.527,1.199,0.011,-0.53,1.199,0.006,-0.531,1.199,0,-0.53,1.199,-0.006,-0.527,1.199,-0.011,-0.522,1.199,-0.014,-0.516,1.199,-0.015,-0.516,1.165,-0.02,-0.509,1.165,-0.019,-0.502,1.165,-0.014,-0.497,1.165,-0.007,-0.496,1.165,0,-0.497,1.165,0.007,-0.502,1.165,0.014,-0.509,1.165,0.019,-0.516,1.165,0.02,-0.524,1.165,0.019,-0.53,1.165,0.014,-0.535,1.165,0.007,-0.536,1.165,0,-0.535,1.165,-0.007,-0.53,1.165,-0.014,-0.524,1.165,-0.019,-0.516,1.165,-0.02,-0.516,1.117,-0.023,-0.508,1.117,-0.022,-0.5,1.117,-0.017,-0.494,1.117,-0.009,-0.493,1.117,0,-0.494,1.117,0.009,-0.5,1.117,0.017,-0.508,1.117,0.022,-0.516,1.117,0.023,-0.525,1.117,0.022,-0.533,1.117,0.017,-0.538,1.117,0.009,-0.54,1.117,0,-0.538,1.117,-0.009,-0.533,1.117,-0.017,-0.525,1.117,-0.022,-0.516,1.117,-0.023,-0.516,1.056,-0.025,-0.507,1.056,-0.023,-0.499,1.056,-0.018,-0.493,1.056,-0.009,-0.491,1.056,0,-0.493,1.056,0.009,-0.499,1.056,0.018,-0.507,1.056,0.023,-0.516,1.056,0.025,-0.525,1.056,0.023,-0.534,1.056,0.018,-0.539,1.056,0.009,-0.541,1.056,0,-0.539,1.056,-0.009,-0.534,1.056,-0.018,-0.525,1.056,-0.023,-0.516,1.056,-0.025,-0.516,0.984,-0.025,-0.507,0.984,-0.023,-0.498,0.984,-0.018,-0.493,0.984,-0.009,-0.491,0.984,0,-0.493,0.984,0.009,-0.498,0.984,0.018,-0.507,0.984,0.023,-0.516,0.984,0.025,-0.525,0.984,0.023,-0.534,0.984,0.018,-0.539,0.984,0.009,-0.541,0.984,0,-0.539,0.984,-0.009,-0.534,0.984,-0.018,-0.525,0.984,-0.023,-0.516,0.984,-0.025,-0.516,0.911,-0.025,-0.507,0.911,-0.023,-0.498,0.911,-0.018,-0.493,0.911,-0.009,-0.491,0.911,0,-0.493,0.911,0.009,-0.498,0.911,0.018,-0.507,0.911,0.023,-0.516,0.911,0.025,-0.525,0.911,0.023,-0.534,0.911,0.018,-0.539,0.911,0.009,-0.541,0.911,0,-0.539,0.911,-0.009,-0.534,0.911,-0.018,-0.525,0.911,-0.023,-0.516,0.911,-0.025,-0.516,0.839,-0.025,-0.507,0.839,-0.023,-0.498,0.839,-0.018,-0.493,0.839,-0.009,-0.491,0.839,0,-0.493,0.839,0.009,-0.498,0.839,0.018,-0.507,0.839,0.023,-0.516,0.839,0.025,-0.525,0.839,0.023,-0.534,0.839,0.018,-0.539,0.839,0.009,-0.541,0.839,0,-0.539,0.839,-0.009,-0.534,0.839,-0.018,-0.525,0.839,-0.023,-0.516,0.839,-0.025,-0.516,0.766,-0.025,-0.507,0.766,-0.023,-0.498,0.766,-0.018,-0.493,0.766,-0.009,-0.491,0.766,0,-0.493,0.766,0.009,-0.498,0.766,0.018,-0.507,0.766,0.023,-0.516,0.766,0.025,-0.525,0.766,0.023,-0.534,0.766,0.018,-0.539,0.766,0.009,-0.541,0.766,0,-0.539,0.766,-0.009,-0.534,0.766,-0.018,-0.525,0.766,-0.023,-0.516,0.766,-0.025,-0.516,0.694,-0.025,-0.507,0.694,-0.023,-0.498,0.694,-0.018,-0.493,0.694,-0.009,-0.491,0.694,0,-0.493,0.694,0.009,-0.498,0.694,0.018,-0.507,0.694,0.023,-0.516,0.694,0.025,-0.525,0.694,0.023,-0.534,0.694,0.018,-0.539,0.694,0.009,-0.541,0.694,0,-0.539,0.694,-0.009,-0.534,0.694,-0.018,-0.525,0.694,-0.023,-0.516,0.694,-0.025,-0.516,0.622,-0.025,-0.507,0.622,-0.023,-0.499,0.622,-0.018,-0.493,0.622,-0.009,-0.491,0.622,0,-0.493,0.622,0.009,-0.499,0.622,0.018,-0.507,0.622,0.023,-0.516,0.622,0.025,-0.525,0.622,0.023,-0.534,0.622,0.018,-0.539,0.622,0.009,-0.541,0.622,0,-0.539,0.622,-0.009,-0.534,0.622,-0.018,-0.525,0.622,-0.023,-0.516,0.622,-0.025,-0.516,0.56,-0.023,-0.508,0.56,-0.022,-0.5,0.56,-0.017,-0.494,0.56,-0.009,-0.493,0.56,0,-0.494,0.56,0.009,-0.5,0.56,0.017,-0.508,0.56,0.022,-0.516,0.56,0.023,-0.525,0.56,0.022,-0.533,0.56,0.017,-0.538,0.56,0.009,-0.54,0.56,0,-0.538,0.56,-0.009,-0.533,0.56,-0.017,-0.525,0.56,-0.022,-0.516,0.56,-0.023,-0.516,0.513,-0.02,-0.509,0.513,-0.019,-0.502,0.513,-0.014,-0.497,0.513,-0.007,-0.496,0.513,0,-0.497,0.513,0.007,-0.502,0.513,0.014,-0.509,0.513,0.019,-0.516,0.513,0.02,-0.524,0.513,0.019,-0.53,0.513,0.014,-0.535,0.513,0.007,-0.536,0.513,0,-0.535,0.513,-0.007,-0.53,0.513,-0.014,-0.524,0.513,-0.019,-0.516,0.513,-0.02,-0.516,0.479,-0.015,-0.511,0.479,-0.014,-0.505,0.479,-0.011,-0.502,0.479,-0.006,-0.501,0.479,0,-0.502,0.479,0.006,-0.505,0.479,0.011,-0.511,0.479,0.014,-0.516,0.479,0.015,-0.522,0.479,0.014,-0.527,0.479,0.011,-0.53,0.479,0.006,-0.531,0.479,0,-0.53,0.479,-0.006,-0.527,0.479,-0.011,-0.522,0.479,-0.014,-0.516,0.479,-0.015,-0.516,0.458,-0.008,-0.513,0.458,-0.008,-0.51,0.458,-0.006,-0.508,0.458,-0.003,-0.508,0.458,0,-0.508,0.458,0.003,-0.51,0.458,0.006,-0.513,0.458,0.008,-0.516,0.458,0.008,-0.519,0.458,0.008,-0.522,0.458,0.006,-0.524,0.458,0.003,-0.525,0.458,0,-0.524,0.458,-0.003,-0.522,0.458,-0.006,-0.519,0.458,-0.008,-0.516,0.458,-0.008,-0.516,0.452,0,-0.516,0.452,0,-0.516,0.446,-0.008,-0.513,0.446,-0.008,-0.51,0.446,-0.006,-0.508,0.446,-0.003,-0.508,0.446,0,-0.508,0.446,0.003,-0.51,0.446,0.006,-0.513,0.446,0.008,-0.516,0.446,0.008,-0.519,0.446,0.008,-0.522,0.446,0.006,-0.524,0.446,0.003,-0.525,0.446,0,-0.524,0.446,-0.003,-0.522,0.446,-0.006,-0.519,0.446,-0.008,-0.516,0.446,-0.008,-0.516,0.43,-0.015,-0.511,0.43,-0.014,-0.505,0.43,-0.011,-0.502,0.43,-0.006,-0.501,0.43,0,-0.502,0.43,0.006,-0.505,0.43,0.011,-0.511,0.43,0.014,-0.516,0.43,0.015,-0.522,0.43,0.014,-0.527,0.43,0.011,-0.53,0.43,0.006,-0.531,0.43,0,-0.53,0.43,-0.006,-0.527,0.43,-0.011,-0.522,0.43,-0.014,-0.516,0.43,-0.015,-0.516,0.403,-0.02,-0.509,0.403,-0.019,-0.502,0.403,-0.014,-0.497,0.403,-0.007,-0.496,0.403,0,-0.497,0.403,0.007,-0.502,0.403,0.014,-0.509,0.403,0.019,-0.516,0.403,0.02,-0.524,0.403,0.019,-0.53,0.403,0.014,-0.535,0.403,0.007,-0.536,0.403,0,-0.535,0.403,-0.007,-0.53,0.403,-0.014,-0.524,0.403,-0.019,-0.516,0.403,-0.02,-0.516,0.365,-0.023,-0.508,0.365,-0.022,-0.5,0.365,-0.017,-0.494,0.365,-0.009,-0.493,0.365,0,-0.494,0.365,0.009,-0.5,0.365,0.017,-0.508,0.365,0.022,-0.516,0.365,0.023,-0.525,0.365,0.022,-0.533,0.365,0.017,-0.538,0.365,0.009,-0.54,0.365,0,-0.538,0.365,-0.009,-0.533,0.365,-0.017,-0.525,0.365,-0.022,-0.516,0.365,-0.023,-0.516,0.317,-0.025,-0.507,0.317,-0.023,-0.499,0.317,-0.018,-0.493,0.317,-0.009,-0.491,0.317,0,-0.493,0.317,0.009,-0.499,0.317,0.018,-0.507,0.317,0.023,-0.516,0.317,0.025,-0.525,0.317,0.023,-0.534,0.317,0.018,-0.539,0.317,0.009,-0.541,0.317,0,-0.539,0.317,-0.009,-0.534,0.317,-0.018,-0.525,0.317,-0.023,-0.516,0.317,-0.025,-0.516,0.26,-0.025,-0.507,0.26,-0.023,-0.498,0.26,-0.018,-0.493,0.26,-0.009,-0.491,0.26,0,-0.493,0.26,0.009,-0.498,0.26,0.018,-0.507,0.26,0.023,-0.516,0.26,0.025,-0.525,0.26,0.023,-0.534,0.26,0.018,-0.539,0.26,0.009,-0.541,0.26,0,-0.539,0.26,-0.009,-0.534,0.26,-0.018,-0.525,0.26,-0.023,-0.516,0.26,-0.025,-0.516,0.203,-0.025,-0.507,0.203,-0.023,-0.498,0.203,-0.018,-0.493,0.203,-0.009,-0.491,0.203,0,-0.493,0.203,0.009,-0.498,0.203,0.018,-0.507,0.203,0.023,-0.516,0.203,0.025,-0.525,0.203,0.023,-0.534,0.203,0.018,-0.539,0.203,0.009,-0.541,0.203,0,-0.539,0.203,-0.009,-0.534,0.203,-0.018,-0.525,0.203,-0.023,-0.516,0.203,-0.025,-0.516,0.145,-0.025,-0.507,0.145,-0.023,-0.498,0.145,-0.018,-0.493,0.145,-0.009,-0.491,0.145,0,-0.493,0.145,0.009,-0.498,0.145,0.018,-0.507,0.145,0.023,-0.516,0.145,0.025,-0.525,0.145,0.023,-0.534,0.145,0.018,-0.539,0.145,0.009,-0.541,0.145,0,-0.539,0.145,-0.009,-0.534,0.145,-0.018,-0.525,0.145,-0.023,-0.516,0.145,-0.025,-0.516,0.088,-0.025,-0.507,0.088,-0.023,-0.498,0.088,-0.018,-0.493,0.088,-0.009,-0.491,0.088,0,-0.493,0.088,0.009,-0.498,0.088,0.018,-0.507,0.088,0.023,-0.516,0.088,0.025,-0.525,0.088,0.023,-0.534,0.088,0.018,-0.539,0.088,0.009,-0.541,0.088,0,-0.539,0.088,-0.009,-0.534,0.088,-0.018,-0.525,0.088,-0.023,-0.516,0.088,-0.025,-0.516,0.03,-0.025,-0.507,0.03,-0.023,-0.498,0.03,-0.018,-0.493,0.03,-0.009,-0.491,0.03,0,-0.493,0.03,0.009,-0.498,0.03,0.018,-0.507,0.03,0.023,-0.516,0.03,0.025,-0.525,0.03,0.023,-0.534,0.03,0.018,-0.539,0.03,0.009,-0.541,0.03,0,-0.539,0.03,-0.009,-0.534,0.03,-0.018,-0.525,0.03,-0.023,-0.516,0.03,-0.025,-0.516,-0.027,-0.025,-0.507,-0.027,-0.023,-0.499,-0.027,-0.018,-0.493,-0.027,-0.009,-0.491,-0.027,0,-0.493,-0.027,0.009,-0.499,-0.027,0.018,-0.507,-0.027,0.023,-0.516,-0.027,0.025,-0.525,-0.027,0.023,-0.534,-0.027,0.018,-0.539,-0.027,0.009,-0.541,-0.027,0,-0.539,-0.027,-0.009,-0.534,-0.027,-0.018,-0.525,-0.027,-0.023,-0.516,-0.027,-0.025,-0.516,-0.075,-0.023,-0.508,-0.075,-0.022,-0.5,-0.075,-0.017,-0.494,-0.075,-0.009,-0.493,-0.075,0,-0.494,-0.075,0.009,-0.5,-0.075,0.017,-0.508,-0.075,0.022,-0.516,-0.075,0.023,-0.525,-0.075,0.022,-0.533,-0.075,0.017,-0.538,-0.075,0.009,-0.54,-0.075,0,-0.538,-0.075,-0.009,-0.533,-0.075,-0.017,-0.525,-0.075,-0.022,-0.516,-0.075,-0.023,-0.516,-0.113,-0.02,-0.509,-0.113,-0.019,-0.502,-0.113,-0.014,-0.497,-0.113,-0.007,-0.496,-0.113,0,-0.497,-0.113,0.007,-0.502,-0.113,0.014,-0.509,-0.113,0.019,-0.516,-0.113,0.02,-0.524,-0.113,0.019,-0.53,-0.113,0.014,-0.535,-0.113,0.007,-0.536,-0.113,0,-0.535,-0.113,-0.007,-0.53,-0.113,-0.014,-0.524,-0.113,-0.019,-0.516,-0.113,-0.02,-0.516,-0.14,-0.015,-0.511,-0.14,-0.014,-0.505,-0.14,-0.011,-0.502,-0.14,-0.006,-0.501,-0.14,0,-0.502,-0.14,0.006,-0.505,-0.14,0.011,-0.511,-0.14,0.014,-0.516,-0.14,0.015,-0.522,-0.14,0.014,-0.527,-0.14,0.011,-0.53,-0.14,0.006,-0.531,-0.14,0,-0.53,-0.14,-0.006,-0.527,-0.14,-0.011,-0.522,-0.14,-0.014,-0.516,-0.14,-0.015,-0.516,-0.156,-0.008,-0.513,-0.156,-0.008,-0.51,-0.156,-0.006,-0.508,-0.156,-0.003,-0.508,-0.156,0,-0.508,-0.156,0.003,-0.51,-0.156,0.006,-0.513,-0.156,0.008,-0.516,-0.156,0.008,-0.519,-0.156,0.008,-0.522,-0.156,0.006,-0.524,-0.156,0.003,-0.525,-0.156,0,-0.524,-0.156,-0.003,-0.522,-0.156,-0.006,-0.519,-0.156,-0.008,-0.516,-0.156,-0.008,-0.516,-0.161,0,-0.516,-0.161,0,-0.516,-0.165,-0.008,-0.513,-0.165,-0.008,-0.51,-0.165,-0.006,-0.508,-0.165,-0.003,-0.508,-0.165,0,-0.508,-0.165,0.003,-0.51,-0.165,0.006,-0.513,-0.165,0.008,-0.516,-0.165,0.008,-0.519,-0.165,0.008,-0.522,-0.165,0.006,-0.524,-0.165,0.003,-0.525,-0.165,0,-0.524,-0.165,-0.003,-0.522,-0.165,-0.006,-0.519,-0.165,-0.008,-0.516,-0.165,-0.008,-0.516,-0.177,-0.015,-0.511,-0.177,-0.014,-0.505,-0.177,-0.011,-0.502,-0.177,-0.006,-0.501,-0.177,0,-0.502,-0.177,0.006,-0.505,-0.177,0.011,-0.511,-0.177,0.014,-0.516,-0.177,0.015,-0.522,-0.177,0.014,-0.527,-0.177,0.011,-0.53,-0.177,0.006,-0.531,-0.177,0,-0.53,-0.177,-0.006,-0.527,-0.177,-0.011,-0.522,-0.177,-0.014,-0.516,-0.177,-0.015,-0.516,-0.197,-0.02,-0.509,-0.197,-0.019,-0.502,-0.197,-0.014,-0.497,-0.197,-0.007,-0.496,-0.197,0,-0.497,-0.197,0.007,-0.502,-0.197,0.014,-0.509,-0.197,0.019,-0.516,-0.197,0.02,-0.524,-0.197,0.019,-0.53,-0.197,0.014,-0.535,-0.197,0.007,-0.536,-0.197,0,-0.535,-0.197,-0.007,-0.53,-0.197,-0.014,-0.524,-0.197,-0.019,-0.516,-0.197,-0.02,-0.516,-0.225,-0.023,-0.508,-0.225,-0.022,-0.5,-0.225,-0.017,-0.494,-0.225,-0.009,-0.493,-0.225,0,-0.494,-0.225,0.009,-0.5,-0.225,0.017,-0.508,-0.225,0.022,-0.516,-0.225,0.023,-0.525,-0.225,0.022,-0.533,-0.225,0.017,-0.538,-0.225,0.009,-0.54,-0.225,0,-0.538,-0.225,-0.009,-0.533,-0.225,-0.017,-0.525,-0.225,-0.022,-0.516,-0.225,-0.023,-0.516,-0.261,-0.025,-0.507,-0.261,-0.023,-0.499,-0.261,-0.018,-0.493,-0.261,-0.009,-0.491,-0.261,0,-0.493,-0.261,0.009,-0.499,-0.261,0.018,-0.507,-0.261,0.023,-0.516,-0.261,0.025,-0.525,-0.261,0.023,-0.534,-0.261,0.018,-0.539,-0.261,0.009,-0.541,-0.261,0,-0.539,-0.261,-0.009,-0.534,-0.261,-0.018,-0.525,-0.261,-0.023,-0.516,-0.261,-0.025,-0.516,-0.302,-0.025,-0.507,-0.302,-0.023,-0.498,-0.302,-0.018,-0.493,-0.302,-0.009,-0.491,-0.302,0,-0.493,-0.302,0.009,-0.498,-0.302,0.018,-0.507,-0.302,0.023,-0.516,-0.302,0.025,-0.525,-0.302,0.023,-0.534,-0.302,0.018,-0.539,-0.302,0.009,-0.541,-0.302,0,-0.539,-0.302,-0.009,-0.534,-0.302,-0.018,-0.525,-0.302,-0.023,-0.516,-0.302,-0.025,-0.516,-0.345,-0.025,-0.507,-0.345,-0.023,-0.498,-0.345,-0.018,-0.493,-0.345,-0.009,-0.491,-0.345,0,-0.493,-0.345,0.009,-0.498,-0.345,0.018,-0.507,-0.345,0.023,-0.516,-0.345,0.025,-0.525,-0.345,0.023,-0.534,-0.345,0.018,-0.539,-0.345,0.009,-0.541,-0.345,0,-0.539,-0.345,-0.009,-0.534,-0.345,-0.018,-0.525,-0.345,-0.023,-0.516,-0.345,-0.025,-0.516,-0.387,-0.025,-0.507,-0.387,-0.023,-0.498,-0.387,-0.018,-0.493,-0.387,-0.009,-0.491,-0.387,0,-0.493,-0.387,0.009,-0.498,-0.387,0.018,-0.507,-0.387,0.023,-0.516,-0.387,0.025,-0.525,-0.387,0.023,-0.534,-0.387,0.018,-0.539,-0.387,0.009,-0.541,-0.387,0,-0.539,-0.387,-0.009,-0.534,-0.387,-0.018,-0.525,-0.387,-0.023,-0.516,-0.387,-0.025,-0.516,-0.429,-0.025,-0.507,-0.429,-0.023,-0.498,-0.429,-0.018,-0.493,-0.429,-0.009,-0.491,-0.429,0,-0.493,-0.429,0.009,-0.498,-0.429,0.018,-0.507,-0.429,0.023,-0.516,-0.429,0.025,-0.525,-0.429,0.023,-0.534,-0.429,0.018,-0.539,-0.429,0.009,-0.541,-0.429,0,-0.539,-0.429,-0.009,-0.534,-0.429,-0.018,-0.525,-0.429,-0.023,-0.516,-0.429,-0.025,-0.516,-0.472,-0.025,-0.507,-0.472,-0.023,-0.498,-0.472,-0.018,-0.493,-0.472,-0.009,-0.491,-0.472,0,-0.493,-0.472,0.009,-0.498,-0.472,0.018,-0.507,-0.472,0.023,-0.516,-0.472,0.025,-0.525,-0.472,0.023,-0.534,-0.472,0.018,-0.539,-0.472,0.009,-0.541,-0.472,0,-0.539,-0.472,-0.009,-0.534,-0.472,-0.018,-0.525,-0.472,-0.023,-0.516,-0.472,-0.025,-0.516,-0.514,-0.025,-0.507,-0.514,-0.023,-0.499,-0.514,-0.018,-0.493,-0.514,-0.009,-0.491,-0.514,0,-0.493,-0.514,0.009,-0.499,-0.514,0.018,-0.507,-0.514,0.023,-0.516,-0.514,0.025,-0.525,-0.514,0.023,-0.534,-0.514,0.018,-0.539,-0.514,0.009,-0.541,-0.514,0,-0.539,-0.514,-0.009,-0.534,-0.514,-0.018,-0.525,-0.514,-0.023,-0.516,-0.514,-0.025,-0.516,-0.549,-0.023,-0.508,-0.549,-0.022,-0.5,-0.549,-0.017,-0.494,-0.549,-0.009,-0.493,-0.549,0,-0.494,-0.549,0.009,-0.5,-0.549,0.017,-0.508,-0.549,0.022,-0.516,-0.549,0.023,-0.525,-0.549,0.022,-0.533,-0.549,0.017,-0.538,-0.549,0.009,-0.54,-0.549,0,-0.538,-0.549,-0.009,-0.533,-0.549,-0.017,-0.525,-0.549,-0.022,-0.516,-0.549,-0.023,-0.516,-0.577,-0.02,-0.509,-0.577,-0.019,-0.502,-0.577,-0.014,-0.497,-0.577,-0.007,-0.496,-0.577,0,-0.497,-0.577,0.007,-0.502,-0.577,0.014,-0.509,-0.577,0.019,-0.516,-0.577,0.02,-0.524,-0.577,0.019,-0.53,-0.577,0.014,-0.535,-0.577,0.007,-0.536,-0.577,0,-0.535,-0.577,-0.007,-0.53,-0.577,-0.014,-0.524,-0.577,-0.019,-0.516,-0.577,-0.02,-0.516,-0.597,-0.015,-0.511,-0.597,-0.014,-0.505,-0.597,-0.011,-0.502,-0.597,-0.006,-0.501,-0.597,0,-0.502,-0.597,0.006,-0.505,-0.597,0.011,-0.511,-0.597,0.014,-0.516,-0.597,0.015,-0.522,-0.597,0.014,-0.527,-0.597,0.011,-0.53,-0.597,0.006,-0.531,-0.597,0,-0.53,-0.597,-0.006,-0.527,-0.597,-0.011,-0.522,-0.597,-0.014,-0.516,-0.597,-0.015,-0.516,-0.609,-0.008,-0.513,-0.609,-0.008,-0.51,-0.609,-0.006,-0.508,-0.609,-0.003,-0.508,-0.609,0,-0.508,-0.609,0.003,-0.51,-0.609,0.006,-0.513,-0.609,0.008,-0.516,-0.609,0.008,-0.519,-0.609,0.008,-0.522,-0.609,0.006,-0.524,-0.609,0.003,-0.525,-0.609,0,-0.524,-0.609,-0.003,-0.522,-0.609,-0.006,-0.519,-0.609,-0.008,-0.516,-0.609,-0.008,-0.516,-0.613,0,0,1.355,0,0,1.359,-0.008,-0.003,1.359,-0.008,-0.006,1.359,-0.006,-0.008,1.359,-0.003,-0.008,1.359,0,-0.008,1.359,0.003,-0.006,1.359,0.006,-0.003,1.359,0.008,0,1.359,0.008,0.003,1.359,0.008,0.006,1.359,0.006,0.008,1.359,0.003,0.008,1.359,0,0.008,1.359,-0.003,0.006,1.359,-0.006,0.003,1.359,-0.008,0,1.359,-0.008,0,1.37,-0.015,-0.006,1.37,-0.014,-0.011,1.37,-0.011,-0.014,1.37,-0.006,-0.015,1.37,0,-0.014,1.37,0.006,-0.011,1.37,0.011,-0.006,1.37,0.014,0,1.37,0.015,0.006,1.37,0.014,0.011,1.37,0.011,0.014,1.37,0.006,0.015,1.37,0,0.014,1.37,-0.006,0.011,1.37,-0.011,0.006,1.37,-0.014,0,1.37,-0.015,0,1.388,-0.02,-0.007,1.388,-0.019,-0.014,1.388,-0.014,-0.019,1.388,-0.007,-0.02,1.388,0,-0.019,1.388,0.007,-0.014,1.388,0.014,-0.007,1.388,0.019,0,1.388,0.02,0.007,1.388,0.019,0.014,1.388,0.014,0.019,1.388,0.007,0.02,1.388,0,0.019,1.388,-0.007,0.014,1.388,-0.014,0.007,1.388,-0.019,0,1.388,-0.02,0,1.414,-0.023,-0.009,1.414,-0.022,-0.017,1.414,-0.017,-0.022,1.414,-0.009,-0.023,1.414,0,-0.022,1.414,0.009,-0.017,1.414,0.017,-0.009,1.414,0.022,0,1.414,0.023,0.009,1.414,0.022,0.017,1.414,0.017,0.022,1.414,0.009,0.023,1.414,0,0.022,1.414,-0.009,0.017,1.414,-0.017,0.009,1.414,-0.022,0,1.414,-0.023,0,1.447,-0.025,-0.009,1.447,-0.023,-0.018,1.447,-0.018,-0.023,1.447,-0.009,-0.025,1.447,0,-0.023,1.447,0.009,-0.018,1.447,0.018,-0.009,1.447,0.023,0,1.447,0.025,0.009,1.447,0.023,0.018,1.447,0.018,0.023,1.447,0.009,0.025,1.447,0,0.023,1.447,-0.009,0.018,1.447,-0.018,0.009,1.447,-0.023,0,1.447,-0.025,0,1.486,-0.025,-0.009,1.486,-0.023,-0.018,1.486,-0.018,-0.023,1.486,-0.009,-0.025,1.486,0,-0.023,1.486,0.009,-0.018,1.486,0.018,-0.009,1.486,0.023,0,1.486,0.025,0.009,1.486,0.023,0.018,1.486,0.018,0.023,1.486,0.009,0.025,1.486,0,0.023,1.486,-0.009,0.018,1.486,-0.018,0.009,1.486,-0.023,0,1.486,-0.025,0,1.525,-0.025,-0.009,1.525,-0.023,-0.018,1.525,-0.018,-0.023,1.525,-0.009,-0.025,1.525,0,-0.023,1.525,0.009,-0.018,1.525,0.018,-0.009,1.525,0.023,0,1.525,0.025,0.009,1.525,0.023,0.018,1.525,0.018,0.023,1.525,0.009,0.025,1.525,0,0.023,1.525,-0.009,0.018,1.525,-0.018,0.009,1.525,-0.023,0,1.525,-0.025,0,1.565,-0.025,-0.009,1.565,-0.023,-0.018,1.565,-0.018,-0.023,1.565,-0.009,-0.025,1.565,0,-0.023,1.565,0.009,-0.018,1.565,0.018,-0.009,1.565,0.023,0,1.565,0.025,0.009,1.565,0.023,0.018,1.565,0.018,0.023,1.565,0.009,0.025,1.565,0,0.023,1.565,-0.009,0.018,1.565,-0.018,0.009,1.565,-0.023,0,1.565,-0.025,0,1.604,-0.025,-0.009,1.604,-0.023,-0.018,1.604,-0.018,-0.023,1.604,-0.009,-0.025,1.604,0,-0.023,1.604,0.009,-0.018,1.604,0.018,-0.009,1.604,0.023,0,1.604,0.025,0.009,1.604,0.023,0.018,1.604,0.018,0.023,1.604,0.009,0.025,1.604,0,0.023,1.604,-0.009,0.018,1.604,-0.018,0.009,1.604,-0.023,0,1.604,-0.025,0,1.643,-0.025,-0.009,1.643,-0.023,-0.018,1.643,-0.018,-0.023,1.643,-0.009,-0.025,1.643,0,-0.023,1.643,0.009,-0.018,1.643,0.018,-0.009,1.643,0.023,0,1.643,0.025,0.009,1.643,0.023,0.018,1.643,0.018,0.023,1.643,0.009,0.025,1.643,0,0.023,1.643,-0.009,0.018,1.643,-0.018,0.009,1.643,-0.023,0,1.643,-0.025,0,1.682,-0.025,-0.009,1.682,-0.023,-0.018,1.682,-0.018,-0.023,1.682,-0.009,-0.025,1.682,0,-0.023,1.682,0.009,-0.018,1.682,0.018,-0.009,1.682,0.023,0,1.682,0.025,0.009,1.682,0.023,0.018,1.682,0.018,0.023,1.682,0.009,0.025,1.682,0,0.023,1.682,-0.009,0.018,1.682,-0.018,0.009,1.682,-0.023,0,1.682,-0.025,0,1.715,-0.023,-0.009,1.715,-0.022,-0.017,1.715,-0.017,-0.022,1.715,-0.009,-0.023,1.715,0,-0.022,1.715,0.009,-0.017,1.715,0.017,-0.009,1.715,0.022,0,1.715,0.023,0.009,1.715,0.022,0.017,1.715,0.017,0.022,1.715,0.009,0.023,1.715,0,0.022,1.715,-0.009,0.017,1.715,-0.017,0.009,1.715,-0.022,0,1.715,-0.023,0,1.741,-0.02,-0.007,1.741,-0.019,-0.014,1.741,-0.014,-0.019,1.741,-0.007,-0.02,1.741,0,-0.019,1.741,0.007,-0.014,1.741,0.014,-0.007,1.741,0.019,0,1.741,0.02,0.007,1.741,0.019,0.014,1.741,0.014,0.019,1.741,0.007,0.02,1.741,0,0.019,1.741,-0.007,0.014,1.741,-0.014,0.007,1.741,-0.019,0,1.741,-0.02,0,1.759,-0.015,-0.006,1.759,-0.014,-0.011,1.759,-0.011,-0.014,1.759,-0.006,-0.015,1.759,0,-0.014,1.759,0.006,-0.011,1.759,0.011,-0.006,1.759,0.014,0,1.759,0.015,0.006,1.759,0.014,0.011,1.759,0.011,0.014,1.759,0.006,0.015,1.759,0,0.014,1.759,-0.006,0.011,1.759,-0.011,0.006,1.759,-0.014,0,1.759,-0.015,0,1.771,-0.008,-0.003,1.771,-0.008,-0.006,1.771,-0.006,-0.008,1.771,-0.003,-0.008,1.771,0,-0.008,1.771,0.003,-0.006,1.771,0.006,-0.003,1.771,0.008,0,1.771,0.008,0.003,1.771,0.008,0.006,1.771,0.006,0.008,1.771,0.003,0.008,1.771,0,0.008,1.771,-0.003,0.006,1.771,-0.006,0.003,1.771,-0.008,0,1.771,-0.008,0,1.774,0,0,1.774,0,0,1.776,-0.008,-0.003,1.776,-0.008,-0.006,1.776,-0.006,-0.008,1.776,-0.003,-0.008,1.776,0,-0.008,1.776,0.003,-0.006,1.776,0.006,-0.003,1.776,0.008,0,1.776,0.008,0.003,1.776,0.008,0.006,1.776,0.006,0.008,1.776,0.003,0.008,1.776,0,0.008,1.776,-0.003,0.006,1.776,-0.006,0.003,1.776,-0.008,0,1.776,-0.008,0,1.783,-0.015,-0.006,1.783,-0.014,-0.011,1.783,-0.011,-0.014,1.783,-0.006,-0.015,1.783,0,-0.014,1.783,0.006,-0.011,1.783,0.011,-0.006,1.783,0.014,0,1.783,0.015,0.006,1.783,0.014,0.011,1.783,0.011,0.014,1.783,0.006,0.015,1.783,0,0.014,1.783,-0.006,0.011,1.783,-0.011,0.006,1.783,-0.014,0,1.783,-0.015,0,1.795,-0.02,-0.007,1.795,-0.019,-0.014,1.795,-0.014,-0.019,1.795,-0.007,-0.02,1.795,0,-0.019,1.795,0.007,-0.014,1.795,0.014,-0.007,1.795,0.019,0,1.795,0.02,0.007,1.795,0.019,0.014,1.795,0.014,0.019,1.795,0.007,0.02,1.795,0,0.019,1.795,-0.007,0.014,1.795,-0.014,0.007,1.795,-0.019,0,1.795,-0.02,0,1.81,-0.023,-0.009,1.81,-0.022,-0.017,1.81,-0.017,-0.022,1.81,-0.009,-0.023,1.81,0,-0.022,1.81,0.009,-0.017,1.81,0.017,-0.009,1.81,0.022,0,1.81,0.023,0.009,1.81,0.022,0.017,1.81,0.017,0.022,1.81,0.009,0.023,1.81,0,0.022,1.81,-0.009,0.017,1.81,-0.017,0.009,1.81,-0.022,0,1.81,-0.023,0,1.831,-0.025,-0.009,1.831,-0.023,-0.018,1.831,-0.018,-0.023,1.831,-0.009,-0.025,1.831,0,-0.023,1.831,0.009,-0.018,1.831,0.018,-0.009,1.831,0.023,0,1.831,0.025,0.009,1.831,0.023,0.018,1.831,0.018,0.023,1.831,0.009,0.025,1.831,0,0.023,1.831,-0.009,0.018,1.831,-0.018,0.009,1.831,-0.023,0,1.831,-0.025,0,1.855,-0.025,-0.009,1.855,-0.023,-0.018,1.855,-0.018,-0.023,1.855,-0.009,-0.025,1.855,0,-0.023,1.855,0.009,-0.018,1.855,0.018,-0.009,1.855,0.023,0,1.855,0.025,0.009,1.855,0.023,0.018,1.855,0.018,0.023,1.855,0.009,0.025,1.855,0,0.023,1.855,-0.009,0.018,1.855,-0.018,0.009,1.855,-0.023,0,1.855,-0.025,0,1.879,-0.025,-0.009,1.879,-0.023,-0.018,1.879,-0.018,-0.023,1.879,-0.009,-0.025,1.879,0,-0.023,1.879,0.009,-0.018,1.879,0.018,-0.009,1.879,0.023,0,1.879,0.025,0.009,1.879,0.023,0.018,1.879,0.018,0.023,1.879,0.009,0.025,1.879,0,0.023,1.879,-0.009,0.018,1.879,-0.018,0.009,1.879,-0.023,0,1.879,-0.025,0,1.903,-0.025,-0.009,1.903,-0.023,-0.018,1.903,-0.018,-0.023,1.903,-0.009,-0.025,1.903,0,-0.023,1.903,0.009,-0.018,1.903,0.018,-0.009,1.903,0.023,0,1.903,0.025,0.009,1.903,0.023,0.018,1.903,0.018,0.023,1.903,0.009,0.025,1.903,0,0.023,1.903,-0.009,0.018,1.903,-0.018,0.009,1.903,-0.023,0,1.903,-0.025,0,1.927,-0.025,-0.009,1.927,-0.023,-0.018,1.927,-0.018,-0.023,1.927,-0.009,-0.025,1.927,0,-0.023,1.927,0.009,-0.018,1.927,0.018,-0.009,1.927,0.023,0,1.927,0.025,0.009,1.927,0.023,0.018,1.927,0.018,0.023,1.927,0.009,0.025,1.927,0,0.023,1.927,-0.009,0.018,1.927,-0.018,0.009,1.927,-0.023,0,1.927,-0.025,0,1.952,-0.025,-0.009,1.952,-0.023,-0.018,1.952,-0.018,-0.023,1.952,-0.009,-0.025,1.952,0,-0.023,1.952,0.009,-0.018,1.952,0.018,-0.009,1.952,0.023,0,1.952,0.025,0.009,1.952,0.023,0.018,1.952,0.018,0.023,1.952,0.009,0.025,1.952,0,0.023,1.952,-0.009,0.018,1.952,-0.018,0.009,1.952,-0.023,0,1.952,-0.025,0,1.976,-0.025,-0.009,1.976,-0.023,-0.018,1.976,-0.018,-0.023,1.976,-0.009,-0.025,1.976,0,-0.023,1.976,0.009,-0.018,1.976,0.018,-0.009,1.976,0.023,0,1.976,0.025,0.009,1.976,0.023,0.018,1.976,0.018,0.023,1.976,0.009,0.025,1.976,0,0.023,1.976,-0.009,0.018,1.976,-0.018,0.009,1.976,-0.023,0,1.976,-0.025,0,1.996,-0.023,-0.009,1.996,-0.022,-0.017,1.996,-0.017,-0.022,1.996,-0.009,-0.023,1.996,0,-0.022,1.996,0.009,-0.017,1.996,0.017,-0.009,1.996,0.022,0,1.996,0.023,0.009,1.996,0.022,0.017,1.996,0.017,0.022,1.996,0.009,0.023,1.996,0,0.022,1.996,-0.009,0.017,1.996,-0.017,0.009,1.996,-0.022,0,1.996,-0.023,0,2.012,-0.02,-0.007,2.012,-0.019,-0.014,2.012,-0.014,-0.019,2.012,-0.007,-0.02,2.012,0,-0.019,2.012,0.007,-0.014,2.012,0.014,-0.007,2.012,0.019,0,2.012,0.02,0.007,2.012,0.019,0.014,2.012,0.014,0.019,2.012,0.007,0.02,2.012,0,0.019,2.012,-0.007,0.014,2.012,-0.014,0.007,2.012,-0.019,0,2.012,-0.02,0,2.023,-0.015,-0.006,2.023,-0.014,-0.011,2.023,-0.011,-0.014,2.023,-0.006,-0.015,2.023,0,-0.014,2.023,0.006,-0.011,2.023,0.011,-0.006,2.023,0.014,0,2.023,0.015,0.006,2.023,0.014,0.011,2.023,0.011,0.014,2.023,0.006,0.015,2.023,0,0.014,2.023,-0.006,0.011,2.023,-0.011,0.006,2.023,-0.014,0,2.023,-0.015,0,2.03,-0.008,-0.003,2.03,-0.008,-0.006,2.03,-0.006,-0.008,2.03,-0.003,-0.008,2.03,0,-0.008,2.03,0.003,-0.006,2.03,0.006,-0.003,2.03,0.008,0,2.03,0.008,0.003,2.03,0.008,0.006,2.03,0.006,0.008,2.03,0.003,0.008,2.03,0,0.008,2.03,-0.003,0.006,2.03,-0.006,0.003,2.03,-0.008,0,2.03,-0.008,0,2.032,0]
}
},
"-color":
{ "Color":
{
"@color":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
}
}
}
}
}
}
],
"-skinCoord":
{ "Coordinate":
{
"@USE":"c03f39530"
}
},
"-skeleton":[
{ "HAnimJoint":
{
"@name":"Hips",
"@DEF":"Hips",
"@rotation":[-0.922733,-0.06516,-0.379891,0.083338],
"@skinCoordIndex":[0,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],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftHip",
"@DEF":"LeftHip",
"@center":[0.193548,0,0],
"@rotation":[0.820139,0.385255,0.423026,0.122068],
"@skinCoordIndex":[771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftKnee",
"@DEF":"LeftKnee",
"@center":[0.193548,-1.129032,0],
"@rotation":[-0.607431,-0.522806,-0.598082,0.111567],
"@skinCoordIndex":[1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftAnkle",
"@DEF":"LeftAnkle",
"@center":[0.193548,-2.129032,0],
"@rotation":[0.700938,0.250389,0.667826,0.063876],
"@skinCoordIndex":[1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftAnkleEnd",
"@DEF":"LeftAnkleEnd",
"@center":[0.193548,-2.354838,-0.096774],
"@skinCoordIndex":[1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
}
}
]
}
}
]
}
}
]
}
},
{ "HAnimJoint":
{
"@name":"RightHip",
"@DEF":"RightHip",
"@center":[-0.193548,0,0],
"@rotation":[0.981172,-0.172956,-0.085957,0.104632],
"@skinCoordIndex":[1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"RightKnee",
"@DEF":"RightKnee",
"@center":[-0.193548,-1.129032,0],
"@rotation":[-0.054493,0.875338,0.480431,0.072507],
"@skinCoordIndex":[2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"RightAnkle",
"@DEF":"RightAnkle",
"@center":[-0.193548,-2.129032,0],
"@rotation":[-0.661555,-0.336789,-0.670013,0.034124],
"@skinCoordIndex":[2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"RightAnkleEnd",
"@DEF":"RightAnkleEnd",
"@center":[-0.193548,-2.354838,-0.096774],
"@skinCoordIndex":[2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
}
}
]
}
}
]
}
}
]
}
},
{ "HAnimJoint":
{
"@name":"Chest",
"@DEF":"Chest",
"@center":[0,0.193548,-0.064516],
"@skinCoordIndex":[2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"Chest2",
"@DEF":"Chest2",
"@center":[0,0.387096,-0.064516],
"@rotation":[-0.048364,0.174889,0.9834,0.078102],
"@skinCoordIndex":[3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftCollar",
"@DEF":"LeftCollar",
"@center":[0.193548,1.225806,0],
"@skinCoordIndex":[3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftShoulder",
"@DEF":"LeftShoulder",
"@center":[0.516129,1.225806,0],
"@rotation":[0.143927,-0.953293,-0.265552,0.213214],
"@skinCoordIndex":[4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftElbow",
"@DEF":"LeftElbow",
"@center":[0.516129,0.451612,0],
"@rotation":[-0.023489,0.963443,-0.266882,0.282057],
"@skinCoordIndex":[4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"LeftWrist",
"@DEF":"LeftWrist",
"@center":[0.516129,-0.161291,0],
"@rotation":[0.831805,0.304275,0.464237,0.181447],
"@skinCoordIndex":[4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
}
}
]
}
}
]
}
}
]
}
},
{ "HAnimJoint":
{
"@name":"RightCollar",
"@DEF":"RightCollar",
"@center":[-0.193548,1.225806,0],
"@skinCoordIndex":[4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"RightShoulder",
"@DEF":"RightShoulder",
"@center":[-0.516129,1.225806,0],
"@rotation":[0.434395,0.861147,0.264057,0.110508],
"@skinCoordIndex":[5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"RightElbow",
"@DEF":"RightElbow",
"@center":[-0.516129,0.451612,0],
"@rotation":[-0.179208,-0.972335,-0.149833,0.304531],
"@skinCoordIndex":[5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"RightWrist",
"@DEF":"RightWrist",
"@center":[-0.516129,-0.161291,0],
"@rotation":[0.55477,-0.191888,0.809574,0.056037],
"@skinCoordIndex":[5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
}
}
]
}
}
]
}
}
]
}
},
{ "HAnimJoint":
{
"@name":"Neck",
"@DEF":"Neck",
"@center":[0,1.354838,0],
"@rotation":[0.740445,-0.567374,0.360317,0.052709],
"@skinCoordIndex":[5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
"-children":[
{ "HAnimJoint":
{
"@name":"Head",
"@DEF":"Head",
"@center":[0,1.774193,0],
"@rotation":[0.740445,-0.567373,0.360318,0.052709],
"@skinCoordIndex":[6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424],
"@skinCoordWeight":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]
}
}
]
}
}
]
}
}
]
}
}
]
}
}
],
"-joints":[
{ "HAnimJoint":
{
"@USE":"Hips"
}
},
{ "HAnimJoint":
{
"@USE":"LeftHip"
}
},
{ "HAnimJoint":
{
"@USE":"LeftKnee"
}
},
{ "HAnimJoint":
{
"@USE":"LeftAnkle"
}
},
{ "HAnimJoint":
{
"@USE":"LeftAnkleEnd"
}
},
{ "HAnimJoint":
{
"@USE":"RightHip"
}
},
{ "HAnimJoint":
{
"@USE":"RightKnee"
}
},
{ "HAnimJoint":
{
"@USE":"RightAnkle"
}
},
{ "HAnimJoint":
{
"@USE":"RightAnkleEnd"
}
},
{ "HAnimJoint":
{
"@USE":"Chest"
}
},
{ "HAnimJoint":
{
"@USE":"Chest2"
}
},
{ "HAnimJoint":
{
"@USE":"LeftCollar"
}
},
{ "HAnimJoint":
{
"@USE":"LeftShoulder"
}
},
{ "HAnimJoint":
{
"@USE":"LeftElbow"
}
},
{ "HAnimJoint":
{
"@USE":"LeftWrist"
}
},
{ "HAnimJoint":
{
"@USE":"RightCollar"
}
},
{ "HAnimJoint":
{
"@USE":"RightShoulder"
}
},
{ "HAnimJoint":
{
"@USE":"RightElbow"
}
},
{ "HAnimJoint":
{
"@USE":"RightWrist"
}
},
{ "HAnimJoint":
{
"@USE":"Neck"
}
},
{ "HAnimJoint":
{
"@USE":"Head"
}
}
]
}
},
{ "ProtoInstance":
{
"@name":"PAnim",
"@DEF":"t02de8af0",
"fieldValue": [
{
"@name":"period",
"@value":4.750095
},
{
"@name":"children",
"-children":[
{ "PositionInterpolator":
{
"@DEF":"pi_Hips",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.038726,2.423108,-0.012884,0.038726,2.423108,-0.012884,0.038904,2.422985,-0.011568,0.039031,2.422919,-0.008991,0.041554,2.42301,-0.010737,0.040976,2.423007,-0.013472,0.043217,2.423037,-0.017907,0.043046,2.423115,-0.022226,0.045595,2.423007,-0.024574,0.048547,2.42322,-0.026723,0.053387,2.42323,-0.027707,0.056117,2.423122,-0.025484,0.05953,2.423327,-0.025061,0.064552,2.423448,-0.025905,0.067842,2.423593,-0.0253,0.072365,2.424006,-0.023837,0.075658,2.424238,-0.020722,0.078841,2.424595,-0.017756,0.078954,2.425297,-0.014678,0.077816,2.425921,-0.009174,0.075881,2.426346,-0.004046,0.075274,2.426855,0.003935,0.07321,2.426667,0.009188,0.071002,2.426358,0.010746,0.069503,2.425805,0.009163,0.06805,2.42506,0.007106,0.06828,2.42449,0.00417,0.069261,2.423739,0.003935,0.069828,2.423864,0.005575,0.0698,2.424177,0.008263,0.071169,2.424506,0.009476,0.074047,2.425423,0.015778,0.077935,2.426383,0.019617,0.084489,2.427071,0.026428,0.089472,2.427484,0.033012,0.09307,2.427554,0.0398,0.096372,2.427323,0.048436,0.099389,2.42669,0.058068,0.101529,2.428522,0.06741,0.103794,2.4304,0.076897,0.104811,2.431713,0.087049,0.107418,2.432184,0.096955,0.109842,2.432017,0.105512,0.119015,2.43327,0.108924,0.127653,2.433247,0.112025,0.136791,2.433305,0.115335,0.145467,2.432648,0.1194,0.151779,2.432001,0.124034,0.154812,2.43023,0.13077,0.158396,2.428127,0.138351,0.162317,2.425478,0.145206,0.166058,2.421958,0.152429,0.171849,2.418144,0.15962,0.176661,2.416293,0.169862,0.179753,2.41411,0.179131,0.184877,2.41293,0.189318,0.188772,2.41227,0.197282,0.193223,2.411103,0.20671,0.199583,2.410308,0.216802,0.205238,2.40949,0.229872,0.211457,2.40754,0.245619,0.218623,2.404861,0.262754,0.227142,2.402507,0.280851,0.23581,2.400132,0.297609,0.24672,2.397778,0.317386,0.258297,2.394961,0.339448,0.26986,2.392384,0.361429,0.282228,2.390607,0.385412,0.296715,2.38852,0.409667,0.312494,2.387178,0.436444,0.330355,2.386678,0.462932,0.35024,2.386342,0.48894,0.37606,2.385836,0.515026,0.404141,2.385613,0.542418,0.432844,2.384479,0.569323,0.460513,2.381429,0.595298,0.488257,2.376425,0.621235,0.516263,2.369386,0.646731,0.534332,2.365493,0.671842,0.531576,2.371866,0.696804,0.533443,2.377788,0.720632,0.533942,2.382886,0.7439,0.53559,2.387795,0.765115,0.536792,2.392502,0.786792,0.536039,2.397699,0.809769,0.536548,2.403011,0.833979,0.537257,2.40773,0.858054,0.537798,2.412342,0.881101,0.538515,2.417283,0.905725,0.537526,2.421151,0.930334,0.536949,2.424398,0.953583,0.536327,2.426887,0.975677,0.536831,2.429119,0.997841,0.536381,2.430576,1.018801,0.536133,2.431809,1.037829,0.536397,2.432073,1.058271,0.538639,2.432431,1.079595,0.539595,2.432604,1.099226,0.54345,2.432706,1.122294,0.548288,2.432598,1.144489,0.552062,2.432478,1.170864,0.556042,2.432245,1.198314,0.561536,2.43162,1.226969,0.56544,2.429966,1.258431,0.572626,2.428405,1.288228,0.580415,2.426727,1.318482,0.588659,2.424148,1.349251,0.593546,2.421425,1.380711,0.601313,2.418045,1.41416,0.609587,2.414068,1.450622,0.618518,2.410468,1.485407,0.627082,2.40708,1.521456,0.638119,2.402871,1.559831,0.648214,2.399495,1.598722,0.662962,2.397551,1.638098,0.67916,2.395889,1.67931,0.697159,2.393852,1.721576,0.720866,2.390894,1.764628,0.744771,2.38722,1.807606,0.768751,2.38181,1.850388,0.793229,2.374312,1.892029,0.809784,2.37392,1.927557,0.819702,2.381192,1.954441,0.828696,2.387127,1.979241,0.839639,2.392637,2.003341,0.851242,2.397495,2.026338,0.863036,2.402437,2.048603,0.873582,2.406745,2.07137,0.882506,2.410434,2.093612,0.891117,2.413824,2.114958,0.899677,2.416806,2.137323,0.909331,2.419696,2.159644,0.919094,2.422702,2.182886,0.930318,2.425217,2.205889,0.940141,2.427757,2.228252,0.949168,2.429963,2.2517,0.958763,2.432136,2.279798,0.96732,2.433646,2.308718,0.976928,2.434306,2.337334,0.985258,2.434835,2.36453,0.992587,2.434816,2.395049,1.000486,2.433331,2.428061,1.007794,2.431221,2.462561,1.016579,2.427891,2.498934,1.0282,2.423684,2.537083,1.039179,2.419251,2.571618,1.053243,2.414242,2.607022,1.07069,2.408099,2.642133,1.090486,2.400614,2.678267,1.110036,2.39236,2.714715,1.131969,2.387282,2.754149,1.15676,2.382477,2.794822,1.186038,2.378303,2.838084,1.217255,2.373613,2.88336,1.253078,2.369598,2.927631,1.291776,2.364923,2.970341,1.335703,2.358977,3.010617,1.379288,2.352484,3.050341,1.4218,2.344448,3.090094,1.463695,2.334746,3.130197,1.505301,2.323146,3.169872,1.519961,2.328363,3.214476,1.52446,2.337986,3.257994,1.529778,2.346408,3.300748,1.534451,2.353709,3.341783,1.539313,2.360138,3.382006,1.543699,2.366842,3.415403,1.548644,2.372738,3.447315,1.55428,2.377984,3.478998,1.558743,2.383468,3.513079,1.563112,2.388342,3.547843,1.566304,2.393453,3.584271,1.568589,2.397471,3.619353,1.570415,2.400608,3.655413,1.572089,2.40285,3.691406,1.573637,2.403544,3.727913,1.57551,2.403317,3.76501,1.576876,2.403004,3.803094,1.57987,2.402732,3.836,1.581712,2.401719,3.870627,1.586188,2.400114,3.905918,1.590594,2.398042,3.94177,1.594301,2.395265,3.978263,1.599191,2.39221,4.015911,1.605155,2.389105,4.05663,1.613516,2.38546,4.099741,1.619526,2.381269,4.143521,1.628224,2.377092,4.185869,1.637291,2.372962,4.227919,1.648749,2.368321,4.270587,1.661285,2.363684,4.314125,1.676166,2.359107,4.358619,1.69265,2.354858,4.406334,1.709243,2.350653,4.456331,1.729744,2.346017,4.507718,1.753695,2.340792,4.558078,1.777688,2.334703,4.607354,1.801374,2.327608,4.654412,1.821026,2.337851,4.686495,1.83875,2.348693,4.721669,1.852935,2.359481,4.758173,1.867227,2.369138,4.793871,1.880743,2.378011,4.828824,1.893279,2.385263,4.863434,1.904957,2.390546,4.896356,1.916829,2.395118,4.928054,1.92671,2.400192,4.951164,1.936409,2.405423,4.976414,1.944142,2.411078,5.003555,1.951334,2.415926,5.030966,1.957348,2.420207,5.056308,1.959809,2.423608,5.081143,1.960363,2.427282,5.108264,1.963791,2.42986,5.133306,1.968372,2.431837,5.158499,1.971834,2.433335,5.183704,1.9769,2.434321,5.206331,1.979942,2.435204,5.230756,1.984719,2.435519,5.253376,1.991794,2.434911,5.276443,2.000924,2.434314,5.303172,2.01026,2.432829,5.330706,2.022956,2.430472,5.359931,2.037569,2.427589,5.39113,2.053277,2.424258,5.422244,2.068994,2.420098,5.453819,2.085096,2.415247,5.484929,2.100527,2.409913,5.514849,2.116314,2.403583,5.546034,2.133222,2.39868,5.578311,2.151756,2.393891,5.611379,2.169052,2.389452,5.644591,2.186412,2.386478,5.680265,2.207295,2.383051,5.718944,2.230048,2.379981,5.761542,2.257014,2.377971,5.801975,2.28594,2.375434,5.841632,2.317629,2.372484,5.882346,2.351264,2.369054,5.91939,2.383825,2.364597,5.955048,2.415964,2.358446,5.990637,2.448481,2.350225,6.025124,2.480506,2.33974,6.058349,2.485613,2.346491,6.096341,2.488607,2.354148,6.132882,2.491243,2.360836,6.168089,2.494087,2.365784,6.202569,2.497058,2.36891,6.235628,2.500147,2.370605,6.267494,2.503049,2.373487,6.295246,2.507375,2.376828,6.313918,2.51193,2.38049,6.333858,2.51583,2.384206,6.357299,2.518648,2.387749,6.384396,2.521513,2.390866,6.412079,2.524342,2.394088,6.440107,2.528829,2.396135,6.461016,2.533349,2.397921,6.481929,2.534018,2.399066,6.503276,2.534569,2.399723,6.524999,2.535015,2.400224,6.546947,2.536647,2.400034,6.567987,2.53896,2.39999,6.589966,2.542064,2.399812,6.613571,2.545853,2.399528,6.637609,2.550306,2.399161,6.662519,2.553979,2.398538,6.685753,2.559407,2.397331,6.709146,2.564314,2.395863,6.733685,2.568164,2.394459,6.758285,2.572189,2.392259,6.783365,2.578641,2.390131,6.809483,2.584654,2.387521,6.835917,2.591719,2.385305,6.861866,2.599644,2.384451,6.88708,2.60696,2.384289,6.912275,2.614109,2.38398,6.937118,2.622903,2.384091,6.96057,2.634543,2.384106,6.98497,2.648197,2.383748,7.011794,2.663628,2.387017,7.036684,2.670585,2.392168,7.056317,2.677436,2.396297,7.074762,2.683964,2.399941,7.089936,2.690355,2.402153,7.099744,2.696771,2.403763,7.106995]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_Hips",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[-0.922733,-0.06516,-0.379891,0.083338,-0.922733,-0.06516,-0.379891,0.083338,-0.922733,-0.06516,-0.379891,0.083338,-0.922733,-0.06516,-0.379891,0.083338,-0.922733,-0.06516,-0.379891,0.083338,-0.922752,-0.076298,-0.377767,0.08183,-0.922752,-0.076298,-0.377767,0.08183,-0.922752,-0.076298,-0.377767,0.08183,-0.926561,-0.060668,-0.371219,0.080644,-0.930199,-0.044542,-0.364343,0.079483,-0.926727,-0.01533,-0.375422,0.078109,-0.92757,0.024245,-0.372862,0.077379,-0.923776,0.074133,-0.375689,0.075162,-0.921895,0.135447,-0.362993,0.073801,-0.913921,0.204752,-0.350465,0.074432,-0.899468,0.276217,-0.338617,0.077153,-0.873931,0.358188,-0.328551,0.081184,-0.842556,0.425422,-0.330327,0.084934,-0.798557,0.493805,-0.344185,0.089426,-0.75012,0.55109,-0.365541,0.091898,-0.712416,0.595258,-0.37166,0.094352,-0.670279,0.626728,-0.397415,0.097771,-0.633196,0.649545,-0.420898,0.098357,-0.591454,0.673643,-0.443156,0.097458,-0.549096,0.693135,-0.466967,0.093667,-0.493319,0.733383,-0.467746,0.089191,-0.454329,0.757501,-0.468804,0.083911,-0.467763,0.754038,-0.461113,0.07971,-0.491257,0.728392,-0.47761,0.075105,-0.522516,0.680525,-0.513676,0.070231,-0.539813,0.637027,-0.550271,0.06548,-0.532376,0.581084,-0.615563,0.063216,-0.520068,0.516674,-0.68013,0.061452,-0.481832,0.479517,-0.733418,0.062441,-0.437382,0.458664,-0.773514,0.065005,-0.423963,0.433555,-0.795164,0.06815,-0.407616,0.426729,-0.807311,0.072556,-0.411012,0.437487,-0.799796,0.0768,-0.398949,0.452441,-0.797582,0.082252,-0.399119,0.473252,-0.785326,0.087754,-0.405354,0.504185,-0.762552,0.091722,-0.395531,0.54806,-0.737011,0.093952,-0.397977,0.58582,-0.705995,0.09521,-0.394572,0.608574,-0.688441,0.098019,-0.395791,0.628992,-0.669118,0.098122,-0.387932,0.64354,-0.659822,0.098041,-0.409212,0.646816,-0.643564,0.097122,-0.430568,0.649673,-0.626527,0.096276,-0.465084,0.649384,-0.601662,0.094418,-0.486568,0.651038,-0.582581,0.093761,-0.513429,0.649526,-0.560809,0.094859,-0.525914,0.664821,-0.530498,0.094337,-0.517456,0.679419,-0.520221,0.094337,-0.51689,0.683004,-0.516071,0.097492,-0.513766,0.693595,-0.504945,0.099214,-0.513289,0.696494,-0.501429,0.102376,-0.498398,0.708856,-0.499122,0.105089,-0.509836,0.708508,-0.487939,0.107301,-0.506833,0.717388,-0.47799,0.109089,-0.506535,0.719262,-0.475484,0.112262,-0.509341,0.729655,-0.456263,0.114655,-0.519372,0.728569,-0.446586,0.116925,-0.519372,0.728569,-0.446586,0.116925,-0.511799,0.739288,-0.437624,0.117102,-0.511799,0.739288,-0.437624,0.117102,-0.488983,0.755369,-0.436249,0.11657,-0.478188,0.7568,-0.445635,0.11433,-0.474897,0.747244,-0.464865,0.111892,-0.490474,0.723058,-0.486438,0.108377,-0.519573,0.677256,-0.52093,0.103495,-0.563154,0.613167,-0.553971,0.099687,-0.598917,0.555623,-0.576699,0.096348,-0.637727,0.512365,-0.575141,0.09535,-0.656596,0.48976,-0.5736,0.094974,-0.657444,0.51097,-0.553785,0.095082,-0.657745,0.531678,-0.533564,0.095273,-0.670362,0.545735,-0.50278,0.094839,-0.669457,0.565419,-0.481797,0.095193,-0.655368,0.596612,-0.463191,0.094821,-0.637316,0.629841,-0.443992,0.092843,-0.622672,0.651224,-0.433804,0.089319,-0.610129,0.67014,-0.422677,0.087591,-0.610768,0.684087,-0.398732,0.085169,-0.621223,0.682398,-0.385247,0.082732,-0.632106,0.680385,-0.370835,0.080321,-0.655197,0.675199,-0.338857,0.075586,-0.682897,0.663752,-0.305099,0.072704,-0.709029,0.653978,-0.2638,0.068265,-0.736564,0.640909,-0.216122,0.064018,-0.779789,0.59819,-0.184655,0.061654,-0.822459,0.550923,-0.141582,0.057908,-0.86325,0.490512,-0.119155,0.055136,-0.903764,0.423084,-0.064897,0.052163,-0.950848,0.30693,-0.041026,0.048942,-0.987046,0.160439,-0.000207,0.048683,-0.999964,0.004525,-0.007114,0.049619,-0.989729,-0.142321,-0.013452,0.051713,-0.956077,-0.290876,-0.036178,0.055999,-0.924606,-0.377526,-0.050764,0.061086,-0.885449,-0.458493,-0.075921,0.068009,-0.854053,-0.513298,-0.084374,0.073956,-0.824675,-0.558193,-0.091279,0.080161,-0.806413,-0.58488,-0.087251,0.086795,-0.782582,-0.613033,-0.108423,0.09223,-0.764444,-0.633632,-0.118892,0.096244,-0.747178,-0.652098,-0.12843,0.100338,-0.743284,-0.654989,-0.13608,0.101923,-0.730769,-0.665591,-0.151543,0.10346,-0.727056,-0.668017,-0.158569,0.105071,-0.727056,-0.668017,-0.158569,0.105071,-0.727056,-0.668017,-0.158569,0.105071,-0.727056,-0.668017,-0.158569,0.105071,-0.730588,-0.662284,-0.166197,0.102446,-0.734223,-0.656177,-0.174207,0.099828,-0.751561,-0.638256,-0.16669,0.095667,-0.783821,-0.600764,-0.157186,0.090718,-0.812049,-0.562681,-0.154812,0.087552,-0.840297,-0.520418,-0.151873,0.084599,-0.856421,-0.488753,-0.166324,0.084835,-0.863299,-0.467237,-0.190801,0.084889,-0.854643,-0.470609,-0.219345,0.083757,-0.843584,-0.465803,-0.267197,0.081938,-0.825182,-0.483842,-0.291498,0.080024,-0.811426,-0.495192,-0.31044,0.076601,-0.807492,-0.496128,-0.319082,0.073341,-0.811576,-0.479071,-0.334418,0.071068,-0.815813,-0.451191,-0.361768,0.071463,-0.834265,-0.422289,-0.354504,0.072674,-0.840659,-0.405174,-0.359341,0.073769,-0.842318,-0.377673,-0.384529,0.074364,-0.837527,-0.36659,-0.405167,0.073888,-0.844087,-0.327424,-0.424631,0.073119,-0.84225,-0.274229,-0.464126,0.07218,-0.847155,-0.207615,-0.489107,0.071793,-0.84984,-0.125799,-0.511807,0.073217,-0.850995,-0.017912,-0.524869,0.075466,-0.839167,0.112048,-0.532206,0.080777,-0.823555,0.229812,-0.518598,0.087784,-0.811858,0.320196,-0.488223,0.09724,-0.786583,0.400564,-0.469931,0.109617,-0.758389,0.474903,-0.446446,0.122257,-0.7297,0.547051,-0.410212,0.134245,-0.69897,0.602341,-0.385521,0.14632,-0.66808,0.656599,-0.350068,0.15975,-0.639414,0.699638,-0.318836,0.173864,-0.610976,0.733738,-0.297215,0.187738,-0.588129,0.75804,-0.281921,0.19996,-0.572653,0.776602,-0.262597,0.211788,-0.565925,0.785842,-0.249361,0.221968,-0.559196,0.793243,-0.240969,0.231452,-0.551305,0.80253,-0.228055,0.240071,-0.544108,0.808857,-0.222929,0.245798,-0.532742,0.816431,-0.222771,0.252161,-0.526266,0.820095,-0.224696,0.254978,-0.52401,0.819837,-0.230825,0.257263,-0.5322,0.81208,-0.239353,0.2562,-0.546922,0.798457,-0.251678,0.253346,-0.557882,0.785748,-0.267146,0.248196,-0.570959,0.772215,-0.278729,0.243901,-0.584195,0.757817,-0.290569,0.23973,-0.593526,0.747545,-0.298167,0.236,-0.597317,0.743638,-0.300359,0.230885,-0.605423,0.734186,-0.3073,0.225494,-0.616367,0.725738,-0.305609,0.221562,-0.623562,0.716877,-0.311861,0.214503,-0.63377,0.709114,-0.309018,0.208882,-0.643043,0.702537,-0.304857,0.201537,-0.654249,0.693579,-0.301506,0.195982,-0.667928,0.684472,-0.292182,0.191254,-0.680134,0.674102,-0.288104,0.185796,-0.688667,0.666995,-0.28435,0.181658,-0.693712,0.665175,-0.276235,0.179437,-0.698815,0.663244,-0.26789,0.177233,-0.703973,0.661196,-0.25931,0.175046,-0.712415,0.650818,-0.262489,0.171911,-0.722747,0.640584,-0.259403,0.169658,-0.737841,0.624907,-0.255111,0.166224,-0.764167,0.592078,-0.255914,0.163734,-0.78405,0.565003,-0.256977,0.160599,-0.807955,0.526935,-0.26372,0.157791,-0.830915,0.486429,-0.270124,0.155316,-0.852645,0.443588,-0.276092,0.153194,-0.875822,0.391851,-0.281761,0.154437,-0.897629,0.340901,-0.279373,0.154882,-0.914535,0.283593,-0.288446,0.154559,-0.926712,0.221741,-0.303375,0.154071,-0.930628,0.17506,-0.32138,0.153291,-0.934126,0.131708,-0.331755,0.153537,-0.934287,0.09342,-0.344064,0.152561,-0.931321,0.065622,-0.358238,0.1522,-0.930724,0.036148,-0.363931,0.153826,-0.929781,0.002032,-0.368107,0.153982,-0.933934,-0.03345,-0.355876,0.155096,-0.941552,-0.066348,-0.33027,0.155656,-0.949512,-0.090898,-0.300273,0.155354,-0.956357,-0.110422,-0.270535,0.15385,-0.959665,-0.135501,-0.246338,0.152006,-0.961833,-0.160983,-0.221273,0.15035,-0.960324,-0.192535,-0.201761,0.148343,-0.953486,-0.239429,-0.183136,0.146457,-0.939025,-0.301033,-0.166169,0.143253,-0.919694,-0.363775,-0.147753,0.14069,-0.906015,-0.402653,-0.130412,0.141267,-0.894919,-0.427583,-0.127645,0.142161,-0.891342,-0.436237,-0.123316,0.141145,-0.887193,-0.442848,-0.129515,0.140788,-0.880189,-0.445961,-0.162437,0.139981,-0.867289,-0.455037,-0.201869,0.139062,-0.85574,-0.449603,-0.256058,0.138633,-0.848305,-0.441685,-0.292048,0.139511,-0.8398,-0.433265,-0.327136,0.140581,-0.83966,-0.413703,-0.351883,0.14043,-0.830582,-0.393857,-0.393715,0.139754,-0.832045,-0.352806,-0.428053,0.139162,-0.836869,-0.304727,-0.454744,0.1391,-0.844971,-0.254373,-0.470444,0.141086,-0.850534,-0.204831,-0.484392,0.143462,-0.859581,-0.144171,-0.490239,0.147913,-0.869547,-0.093176,-0.484981,0.15301,-0.88026,-0.046156,-0.472241,0.157267,-0.88494,-0.001144,-0.465704,0.163109,-0.891647,0.053225,-0.449591,0.168653,-0.895801,0.112244,-0.430049,0.173766,-0.892765,0.169806,-0.417297,0.177782,-0.886985,0.224057,-0.403803,0.182381,-0.881794,0.266902,-0.388848,0.186825,-0.877051,0.297472,-0.377216,0.190454,-0.870791,0.322757,-0.370878,0.191817,-0.864701,0.346301,-0.363823,0.191508,-0.855921,0.368375,-0.362905,0.192443,-0.843314,0.396725,-0.362533,0.194361,-0.828974,0.434185,-0.352542,0.198612,-0.807284,0.471761,-0.354591,0.204548,-0.780423,0.510064,-0.361628,0.211178,-0.75868,0.54158,-0.36207,0.217861,-0.739895,0.564673,-0.36565,0.223129,-0.734272,0.573869,-0.362656,0.22779,-0.729769,0.576093,-0.368176,0.230049,-0.733099,0.569004,-0.37256,0.231981,-0.743613,0.553273,-0.375406,0.231812,-0.751159,0.543775,-0.374258,0.231559,-0.75418,0.539953,-0.373715,0.228655,-0.744403,0.549607,-0.379204,0.224553,-0.737377,0.55212,-0.389151,0.222483,-0.737035,0.55276,-0.388889,0.220652,-0.737035,0.55276,-0.388889,0.220652,-0.737035,0.55276,-0.388889,0.220652,-0.742964,0.54206,-0.392653,0.217892,-0.745527,0.539099,-0.391869,0.211306,-0.748242,0.535941,-0.391026,0.204726,-0.742038,0.544366,-0.391209,0.196564,-0.739518,0.547517,-0.391586,0.189117,-0.732722,0.556267,-0.392027,0.182809,-0.729555,0.556338,-0.39779,0.178496,-0.726198,0.556388,-0.403817,0.174194,-0.728852,0.55328,-0.403306,0.167596,-0.736056,0.539865,-0.408372,0.163011,-0.750266,0.521593,-0.406254,0.156203,-0.766315,0.488785,-0.416954,0.14911,-0.782664,0.451936,-0.428008,0.142253,-0.801869,0.398931,-0.444815,0.136156,-0.821162,0.329478,-0.46598,0.132982,-0.846614,0.255403,-0.46692,0.132661,-0.866849,0.17987,-0.464995,0.133154,-0.881615,0.104275,-0.460307,0.134451,-0.892341,0.040207,-0.449567,0.135453,-0.890296,-0.021072,-0.454894,0.136492,-0.884304,-0.075247,-0.460808,0.136697,-0.87365,-0.125838,-0.47,0.135717,-0.85515,-0.182527,-0.485183,0.134885,-0.832604,-0.234492,-0.501781,0.133131,-0.816982,-0.278035,-0.50521,0.131896,-0.799277,-0.321728,-0.50759,0.130947,-0.782354,-0.35243,-0.513533,0.13001,-0.775821,-0.374769,-0.507592,0.12911,-0.776031,-0.391292,-0.494638,0.128264,-0.787047,-0.392096,-0.476254,0.128621,-0.786776,-0.408503,-0.462719,0.127866,-0.774541,-0.440966,-0.45347,0.126075,-0.753778,-0.471771,-0.45744,0.125643,-0.721738,-0.514307,-0.463231,0.122847,-0.680907,-0.568823,-0.461309,0.121095,-0.641324,-0.610977,-0.464123,0.119134,-0.598328,-0.652243,-0.465385,0.117588,-0.542912,-0.702138,-0.460704,0.1159,-0.493239,-0.739511,-0.458083,0.115321]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftHip",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.820139,0.385255,0.423026,0.122068,0.820139,0.385255,0.423026,0.122068,0.817057,0.388586,0.425934,0.123916,0.819024,0.393278,0.41777,0.12636,0.821243,0.400094,0.406797,0.124193,0.813201,0.41788,0.405068,0.120915,0.807366,0.436075,0.397491,0.118488,0.803926,0.442707,0.397133,0.11575,0.815084,0.431409,0.386684,0.110426,0.82704,0.418781,0.375003,0.105141,0.845059,0.383967,0.372082,0.099735,0.867335,0.328385,0.374023,0.096911,0.890465,0.273129,0.363967,0.090534,0.913281,0.214024,0.346571,0.084271,0.932663,0.157944,0.324336,0.080934,0.946106,0.116096,0.302333,0.080819,0.952187,0.091835,0.291387,0.083538,0.953023,0.077898,0.292709,0.085688,0.942087,0.07939,0.325837,0.088017,0.918465,0.138663,0.370397,0.09144,0.886522,0.207243,0.413677,0.096748,0.844906,0.277332,0.457406,0.106139,0.792196,0.356513,0.495302,0.114711,0.74162,0.416495,0.525864,0.119805,0.697549,0.465741,0.544529,0.120951,0.662798,0.489955,0.566254,0.116649,0.640983,0.501756,0.580845,0.112283,0.659633,0.490397,0.569558,0.112716,0.668445,0.486969,0.562177,0.115352,0.679597,0.480592,0.554238,0.119464,0.678808,0.482977,0.55313,0.122214,0.674591,0.487528,0.554296,0.127683,0.663375,0.499293,0.557351,0.131225,0.662253,0.493075,0.564178,0.135265,0.662535,0.486963,0.569134,0.139266,0.661934,0.496139,0.561863,0.146013,0.662024,0.504295,0.554446,0.153911,0.669506,0.515057,0.535237,0.163645,0.660274,0.525641,0.536414,0.172726,0.657738,0.531484,0.533766,0.181678,0.661558,0.5318,0.528705,0.189569,0.666175,0.528396,0.526316,0.19242,0.673759,0.528596,0.516367,0.195648,0.675741,0.545013,0.496322,0.194428,0.679578,0.558224,0.475982,0.192631,0.68624,0.562477,0.461188,0.189298,0.713692,0.54895,0.435083,0.186585,0.744065,0.520515,0.418845,0.183816,0.775006,0.488563,0.400839,0.184083,0.797901,0.461695,0.387546,0.186476,0.816435,0.43796,0.376332,0.193479,0.823381,0.435538,0.3638,0.20177,0.822597,0.445435,0.353442,0.208674,0.830176,0.432378,0.351935,0.216604,0.840115,0.416273,0.347742,0.221931,0.854082,0.390038,0.344115,0.227174,0.863684,0.360911,0.351843,0.227373,0.871525,0.340669,0.352687,0.229732,0.880136,0.326207,0.34489,0.230792,0.880647,0.320335,0.349064,0.236056,0.882933,0.315793,0.347424,0.242153,0.884821,0.316317,0.342103,0.250547,0.88136,0.324056,0.343791,0.256461,0.881741,0.325474,0.341468,0.25927,0.880085,0.330598,0.340815,0.263516,0.882652,0.322329,0.342096,0.263751,0.882115,0.323589,0.342292,0.265615,0.882211,0.323464,0.342162,0.269383,0.883515,0.322865,0.339351,0.273931,0.884312,0.323671,0.336495,0.277998,0.88288,0.331058,0.333051,0.280428,0.880723,0.337035,0.332767,0.278414,0.879846,0.341443,0.330587,0.270957,0.871528,0.35894,0.334066,0.25893,0.849149,0.387208,0.359187,0.242305,0.805232,0.441121,0.39625,0.225314,0.72865,0.527111,0.437291,0.21208,0.604811,0.636913,0.478064,0.206129,0.437939,0.748737,0.497597,0.208026,0.250576,0.8441,0.474032,0.218615,0.06149,0.902633,0.425997,0.234324,-0.10935,0.92128,0.373211,0.253282,-0.264689,0.911574,0.3146,0.27582,-0.392082,0.883544,0.256168,0.302633,-0.490572,0.847676,0.201953,0.329535,-0.570011,0.80808,0.148644,0.358953,-0.62877,0.770513,0.104678,0.383758,-0.673603,0.735903,0.068607,0.407116,-0.711742,0.70141,0.038049,0.427794,-0.740708,0.671572,0.018497,0.442321,-0.7685,0.639843,0.002965,0.456188,-0.78989,0.613231,-0.004635,0.466257,-0.80911,0.587445,-0.015793,0.474501,-0.822016,0.568918,-0.024936,0.482559,-0.828079,0.55965,-0.032828,0.486199,-0.832837,0.552451,-0.034353,0.486769,-0.839583,0.541827,-0.039041,0.486018,-0.846567,0.530743,-0.040439,0.481107,-0.856392,0.514624,-0.041891,0.473242,-0.865275,0.499555,-0.04177,0.462672,-0.873893,0.484272,-0.042318,0.451743,-0.878442,0.476107,-0.040769,0.439313,-0.878264,0.476679,-0.037823,0.426952,-0.87675,0.480055,-0.02928,0.416535,-0.876425,0.480972,-0.023353,0.407315,-0.877414,0.479361,-0.018935,0.400427,-0.882864,0.468812,-0.02769,0.395697,-0.892683,0.449188,-0.036693,0.393876,-0.899966,0.433101,-0.049852,0.388308,-0.906704,0.416901,-0.06388,0.382472,-0.907546,0.412773,-0.077321,0.37721,-0.900403,0.423942,-0.097713,0.371019,-0.887072,0.445682,-0.120292,0.363093,-0.868545,0.476297,-0.137009,0.35531,-0.859192,0.487674,-0.154798,0.346403,-0.867204,0.46978,-0.165119,0.330165,-0.883366,0.436462,-0.170779,0.312451,-0.901068,0.397021,-0.1745,0.290427,-0.914479,0.36567,-0.173242,0.265254,-0.916797,0.361037,-0.170693,0.240715,-0.914547,0.370959,-0.161227,0.220298,-0.912748,0.379978,-0.150029,0.199507,-0.907259,0.393891,-0.147413,0.182781,-0.908648,0.390041,-0.149088,0.167747,-0.909864,0.383765,-0.157708,0.151715,-0.915436,0.363687,-0.172363,0.134864,-0.920359,0.347773,-0.178867,0.11596,-0.923857,0.324937,-0.202246,0.09527,-0.925547,0.287128,-0.24682,0.077486,-0.933599,0.220956,-0.282083,0.061456,-0.923762,0.170393,-0.342972,0.04715,-0.895848,0.044538,-0.442122,0.033858,-0.828183,-0.121443,-0.547142,0.021967,-0.393874,-0.44975,-0.801616,0.013372,0.623371,-0.581029,-0.523272,0.014169,0.955674,-0.257861,-0.142109,0.025287,0.990606,-0.131994,0.035738,0.043723,0.990084,-0.024085,0.138394,0.063618,0.983476,0.051799,0.173468,0.086055,0.969706,0.095629,0.22478,0.109759,0.961712,0.108015,0.251877,0.133946,0.956486,0.108546,0.270835,0.158244,0.951502,0.106207,0.28873,0.182828,0.952174,0.096249,0.290001,0.207787,0.953565,0.084127,0.289198,0.231318,0.951515,0.076425,0.297958,0.250989,0.952044,0.066434,0.298661,0.268331,0.954761,0.05693,0.291873,0.284839,0.955063,0.056548,0.290958,0.301315,0.953559,0.062912,0.294562,0.316528,0.951172,0.071255,0.300323,0.32873,0.947672,0.09135,0.305896,0.339277,0.944362,0.099742,0.31342,0.34715,0.94033,0.114776,0.320323,0.35226,0.936261,0.123152,0.329011,0.35232,0.931245,0.136559,0.337838,0.349017,0.924617,0.152149,0.349191,0.339897,0.911125,0.173483,0.373838,0.321791,0.88601,0.201618,0.417536,0.302389,0.848939,0.241944,0.469858,0.283124,0.791645,0.303807,0.530093,0.264268,0.715527,0.388932,0.580304,0.245264,0.607689,0.496337,0.619971,0.229839,0.466183,0.601687,0.648572,0.21715,0.27631,0.712689,0.644769,0.211192,0.070154,0.796581,0.600447,0.211837,-0.140163,0.841121,0.52237,0.219502,-0.319738,0.839347,0.439618,0.23386,-0.465486,0.812167,0.35172,0.252528,-0.579985,0.766896,0.274752,0.273352,-0.666579,0.716822,0.204545,0.293859,-0.741482,0.65516,0.144809,0.311274,-0.797398,0.596169,0.093486,0.328424,-0.840938,0.539109,0.046745,0.344461,-0.87142,0.490455,0.009015,0.360426,-0.89322,0.449037,-0.022879,0.371145,-0.907214,0.417946,-0.04779,0.379789,-0.916358,0.395839,-0.059995,0.382335,-0.924619,0.374514,-0.069417,0.380532,-0.930153,0.361197,-0.065968,0.377696,-0.933888,0.352896,-0.057606,0.370709,-0.940675,0.336278,-0.045262,0.360444,-0.947384,0.319494,-0.019668,0.34678,-0.952587,0.304267,-0.000063,0.333644,-0.952865,0.302207,0.026816,0.320621,-0.95064,0.306031,0.051263,0.308507,-0.948353,0.309424,0.069875,0.298543,-0.946442,0.314718,0.072112,0.292949,-0.94696,0.315252,0.06232,0.293806,-0.95154,0.303775,0.047887,0.293059,-0.955919,0.29201,0.030816,0.287614,-0.957033,0.289692,0.012907,0.279436,-0.955247,0.29539,-0.015734,0.265746,-0.956681,0.287156,-0.047988,0.253943,-0.964462,0.25038,-0.084404,0.244407,-0.976388,0.185552,-0.110617,0.2381,-0.986235,0.112464,-0.12121,0.23159,-0.990089,0.057682,-0.12805,0.222319,-0.988828,0.02882,-0.14625,0.207894,-0.983198,0.048348,-0.176023,0.190447,-0.976015,0.092605,-0.197028,0.173023,-0.965841,0.128905,-0.224799,0.156625,-0.954071,0.1503,-0.25915,0.138557,-0.942344,0.162765,-0.292397,0.11926,-0.935056,0.108266,-0.337564,0.102931,-0.917888,-0.020508,-0.396309,0.087637,-0.885452,-0.243751,-0.395677,0.075806,-0.788169,-0.494945,-0.365812,0.066553,-0.594152,-0.753876,-0.280455,0.05909,-0.278015,-0.936062,-0.215628,0.052641,0.129973,-0.985073,-0.112861,0.048864,0.528394,-0.848949,0.009234,0.051022,0.784031,-0.590629,0.190924,0.060035,0.882696,-0.39066,0.261215,0.074687,0.921583,-0.269309,0.279565,0.091636,0.94321,-0.178281,0.280305,0.111413,0.950118,-0.127374,0.284697,0.129941,0.950111,-0.09023,0.298575,0.15202,0.950754,-0.034023,0.308074,0.170234,0.952026,0.019632,0.305387,0.187602,0.951095,0.063897,0.302217,0.206719,0.95106,0.085828,0.296848,0.226193,0.953724,0.085097,0.288389,0.244663,0.955752,0.080715,0.282885,0.259705,0.959499,0.068879,0.273161,0.274244,0.962058,0.059818,0.266206,0.28937,0.964225,0.050263,0.260277,0.302677,0.965679,0.039638,0.256697,0.313096,0.967196,0.032281,0.251974,0.322014,0.968036,0.028615,0.249173,0.331198,0.967916,0.02382,0.250142,0.339575,0.967201,0.012447,0.253709,0.347351,0.963574,0.008593,0.267305,0.355221,0.959159,0.007309,0.282774,0.36259,0.955486,0.009988,0.294866,0.368837,0.951448,0.020931,0.307097,0.368302,0.9476,0.034466,0.317594,0.366596,0.940556,0.051426,0.335724,0.358448,0.931534,0.070944,0.356668,0.344323,0.916692,0.098802,0.387187,0.323551,0.893072,0.128057,0.431305,0.297793,0.854187,0.169215,0.491661,0.2666,0.787957,0.231322,0.570626,0.234426,0.676364,0.336988,0.654958,0.207875,0.518925,0.470992,0.71336,0.188797,0.300382,0.611559,0.73196,0.179513,0.047829,0.724718,0.687383,0.179525,-0.204458,0.786123,0.583273,0.193494,-0.411877,0.791951,0.450745,0.217286,-0.549003,0.766274,0.333796,0.247012,-0.655058,0.71867,0.233265,0.279132,-0.722696,0.673933,0.153374,0.309477,-0.770707,0.630185,0.09422,0.336648,-0.803795,0.592411,0.054435,0.358376,-0.827513,0.560781,0.027346,0.37653,-0.846194,0.532855,0.004682,0.389043,-0.861374,0.507925,-0.0068,0.396942,-0.871988,0.489091,-0.02067,0.401639,-0.878743,0.476844,-0.020761,0.404374,-0.882915,0.469042,-0.021459,0.404403,-0.887171,0.461136,-0.016769,0.403088,-0.894926,0.44617,-0.006318,0.396053,-0.902684,0.430292,0.003292,0.383837,-0.913765,0.406066,0.011981,0.370054,-0.922844,0.384631,0.020435,0.35459,-0.929495,0.368096,0.023353,0.340424,-0.932849,0.358371,0.03693,0.327631,-0.93095,0.361433,0.051939,0.31768,-0.926239,0.371596,0.06323,0.309351,-0.9159,0.395142,0.070639,0.300875,-0.90807,0.411294,0.079036,0.291072,-0.905996,0.41478,0.084427,0.276676,-0.916011,0.391304,0.088348,0.26055,-0.938127,0.332827,0.095621,0.242654,-0.964127,0.248919,0.092187,0.226802,-0.985569,0.140969,0.093709,0.212495,-0.99475,0.035079,0.096135,0.197219,-0.994623,-0.035615,0.097247,0.187301,-0.992206,-0.069859,0.103186,0.176388,-0.9895,-0.065767,0.128704,0.162712,-0.988241,-0.048284,0.145079,0.152304,-0.987048,-0.017054,0.159516,0.141936,-0.984121,-0.004348,0.177447,0.133816,-0.980952,-0.028767,0.192107,0.12744,-0.97953,-0.066639,0.189947,0.125686,-0.976461,-0.113829,0.183214,0.125152]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftKnee",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[-0.607431,-0.522806,-0.598082,0.111567,-0.607431,-0.522806,-0.598082,0.111567,-0.605937,-0.511099,-0.609605,0.113637,-0.613981,-0.515104,-0.598076,0.115783,-0.613109,-0.525052,-0.590269,0.113486,-0.60331,-0.54647,-0.580851,0.111584,-0.59047,-0.579044,-0.562186,0.112015,-0.579675,-0.61169,-0.538342,0.112164,-0.562004,-0.643511,-0.519659,0.111843,-0.543202,-0.674386,-0.500136,0.111704,-0.527791,-0.698431,-0.483353,0.113062,-0.508054,-0.714285,-0.481329,0.115767,-0.481805,-0.749905,-0.453328,0.117003,-0.444654,-0.77982,-0.44064,0.118687,-0.412247,-0.811758,-0.413644,0.120915,-0.381773,-0.83594,-0.394275,0.125713,-0.372179,-0.847927,-0.377496,0.132754,-0.369519,-0.852933,-0.368729,0.137419,-0.370959,-0.853759,-0.365357,0.140438,-0.381527,-0.848686,-0.366291,0.145686,-0.394998,-0.828977,-0.395947,0.149439,-0.410707,-0.808288,-0.421888,0.1573,-0.415166,-0.791312,-0.448845,0.169607,-0.413363,-0.789107,-0.454358,0.183704,-0.42329,-0.7847,-0.452848,0.193663,-0.427858,-0.77702,-0.461712,0.198968,-0.439958,-0.762645,-0.474141,0.200973,-0.469968,-0.734197,-0.489985,0.200696,-0.48815,-0.715477,-0.499802,0.199725,-0.51756,-0.690216,-0.5057,0.196806,-0.540106,-0.661599,-0.520166,0.194307,-0.560383,-0.635148,-0.531562,0.190812,-0.573657,-0.612499,-0.54384,0.185869,-0.586964,-0.58445,-0.56026,0.184157,-0.608205,-0.556438,-0.566095,0.182456,-0.62531,-0.530125,-0.572673,0.1811,-0.640152,-0.510243,-0.574332,0.181601,-0.652263,-0.490472,-0.577919,0.18213,-0.646879,-0.479471,-0.593005,0.183925,-0.637093,-0.480434,-0.602741,0.187102,-0.623958,-0.486241,-0.611756,0.192118,-0.599579,-0.499695,-0.625148,0.196973,-0.57673,-0.520458,-0.629688,0.204231,-0.548573,-0.566065,-0.615335,0.206998,-0.513934,-0.607394,-0.605759,0.21348,-0.48692,-0.635261,-0.59946,0.218476,-0.477512,-0.646352,-0.595157,0.219526,-0.474466,-0.638388,-0.606089,0.218513,-0.475748,-0.616533,-0.627336,0.215709,-0.479698,-0.592051,-0.647584,0.213792,-0.491707,-0.56197,-0.665142,0.217283,-0.487157,-0.543203,-0.683819,0.226629,-0.486069,-0.540635,-0.686622,0.235645,-0.487639,-0.536343,-0.688872,0.241946,-0.49062,-0.532405,-0.689809,0.246611,-0.494842,-0.526216,-0.691541,0.250806,-0.485179,-0.516949,-0.705241,0.252354,-0.46516,-0.507611,-0.72523,0.253839,-0.447497,-0.503667,-0.738963,0.252557,-0.420465,-0.501454,-0.756144,0.255147,-0.388561,-0.495243,-0.777017,0.259764,-0.352731,-0.493453,-0.795038,0.263359,-0.310193,-0.491198,-0.813944,0.269431,-0.269036,-0.484393,-0.832456,0.272463,-0.216988,-0.480934,-0.849482,0.27705,-0.164411,-0.467372,-0.868638,0.28072,-0.112777,-0.452816,-0.884443,0.285315,-0.066845,-0.434518,-0.898179,0.290177,-0.016247,-0.404535,-0.914378,0.29573,0.045619,-0.365576,-0.929663,0.301573,0.126135,-0.327251,-0.936481,0.308896,0.215433,-0.280047,-0.935501,0.320962,0.323398,-0.223122,-0.919582,0.339797,0.432859,-0.169895,-0.885307,0.365344,0.531628,-0.123607,-0.83791,0.406988,0.609175,-0.089602,-0.787957,0.457512,0.669848,-0.076994,-0.738495,0.518637,0.714728,-0.087954,-0.69385,0.585915,0.74966,-0.109308,-0.652734,0.655932,0.77888,-0.131461,-0.613241,0.725451,0.805026,-0.142348,-0.575908,0.789909,0.829268,-0.141672,-0.540596,0.847976,0.853749,-0.129071,-0.504434,0.898068,0.877309,-0.110471,-0.467039,0.93736,0.899467,-0.090396,-0.427537,0.963855,0.919671,-0.070909,-0.386235,0.980171,0.936733,-0.054272,-0.345812,0.985517,0.949921,-0.045621,-0.309142,0.977592,0.960572,-0.044671,-0.274419,0.959042,0.969172,-0.050044,-0.241248,0.928767,0.975916,-0.062001,-0.20915,0.893082,0.980392,-0.082555,-0.178932,0.849742,0.983604,-0.10825,-0.144242,0.803301,0.983966,-0.145515,-0.103132,0.755093,0.978623,-0.197517,-0.0573,0.705544,0.966823,-0.255382,-0.005761,0.658486,0.948549,-0.311457,0.05701,0.614634,0.923627,-0.360105,0.13129,0.570711,0.891327,-0.397925,0.217237,0.528892,0.85215,-0.418994,0.313504,0.486524,0.8014,-0.423021,0.422862,0.447462,0.735797,-0.416144,0.534254,0.41159,0.647142,-0.404834,0.646,0.38465,0.5485,-0.392221,0.738452,0.367534,0.456484,-0.380517,0.804257,0.356909,0.390495,-0.377023,0.839861,0.355506,0.357192,-0.381425,0.852601,0.361835,0.356379,-0.384364,0.851621,0.368413,0.364688,-0.383605,0.84844,0.37229,0.380153,-0.379126,0.843651,0.37302,0.389385,-0.367638,0.844524,0.369124,0.393274,-0.354083,0.848505,0.36359,0.388642,-0.356818,0.849493,0.357376,0.382822,-0.378822,0.84258,0.351897,0.395126,-0.39533,0.82921,0.343397,0.418119,-0.394597,0.818211,0.328275,0.445546,-0.391885,0.804932,0.310359,0.464865,-0.397006,0.791383,0.291026,0.470534,-0.406978,0.782922,0.269871,0.44932,-0.441666,0.776558,0.250351,0.419673,-0.475647,0.773068,0.229968,0.38233,-0.483702,0.78731,0.20767,0.347154,-0.4788,0.806371,0.186268,0.31369,-0.454849,0.833493,0.165961,0.268018,-0.451553,0.851038,0.146346,0.2141,-0.442108,0.871035,0.129806,0.141911,-0.449938,0.881713,0.114898,0.057642,-0.45915,0.886487,0.10131,-0.034926,-0.422786,0.905556,0.092251,-0.135516,-0.3787,0.915544,0.082463,-0.268816,-0.345202,0.899207,0.074844,-0.394129,-0.343418,0.852483,0.067053,-0.512212,-0.390738,0.764829,0.060769,-0.621499,-0.454856,0.637845,0.057383,-0.728245,-0.50319,0.465251,0.054963,-0.786393,-0.568456,0.241752,0.057254,-0.791227,-0.610552,0.034431,0.064048,-0.736249,-0.657394,-0.16053,0.076054,-0.671711,-0.674239,-0.306929,0.092856,-0.612768,-0.681616,-0.399894,0.111282,-0.574426,-0.677894,-0.458796,0.128623,-0.545463,-0.649394,-0.529866,0.14801,-0.532444,-0.617521,-0.578939,0.166315,-0.524745,-0.593773,-0.609981,0.185272,-0.501612,-0.58162,-0.640393,0.202711,-0.468682,-0.573906,-0.671543,0.218727,-0.433087,-0.56547,-0.701911,0.229585,-0.391975,-0.551809,-0.736113,0.238737,-0.333461,-0.534834,-0.776374,0.249785,-0.257642,-0.524018,-0.811804,0.261103,-0.164437,-0.510246,-0.844162,0.276725,-0.072894,-0.498971,-0.863548,0.29372,0.023104,-0.481312,-0.876245,0.312021,0.128454,-0.450246,-0.883616,0.331393,0.243551,-0.407119,-0.880305,0.354957,0.353581,-0.356179,-0.864937,0.385562,0.456307,-0.302219,-0.836927,0.425873,0.545759,-0.252454,-0.799008,0.476545,0.615588,-0.212007,-0.759015,0.541943,0.666857,-0.186355,-0.721508,0.611998,0.706416,-0.175508,-0.685691,0.687291,0.736169,-0.176587,-0.653354,0.761519,0.762438,-0.178087,-0.622072,0.830816,0.785932,-0.17694,-0.592455,0.89658,0.809296,-0.171725,-0.561738,0.952426,0.833287,-0.162159,-0.528523,0.99963,0.855575,-0.149771,-0.49554,1.036002,0.876554,-0.137604,-0.461214,1.063736,0.896378,-0.126999,-0.424709,1.079649,0.913719,-0.119044,-0.388518,1.083263,0.92914,-0.115859,-0.351106,1.075671,0.943329,-0.113173,-0.311965,1.060061,0.956205,-0.115382,-0.268997,1.035583,0.967358,-0.120777,-0.222783,1.00458,0.976511,-0.12941,-0.172278,0.967099,0.981698,-0.146657,-0.121492,0.922077,0.982699,-0.173023,-0.066079,0.873237,0.97828,-0.207081,-0.009271,0.820481,0.967223,-0.248826,0.050643,0.761727,0.947844,-0.298427,0.111948,0.704586,0.917146,-0.353821,0.183452,0.645244,0.87791,-0.399601,0.263807,0.584549,0.828269,-0.436251,0.351646,0.526687,0.761737,-0.459624,0.45662,0.473379,0.669862,-0.468713,0.575841,0.427102,0.56015,-0.452657,0.693782,0.393179,0.450089,-0.419398,0.788368,0.373332,0.369221,-0.3908,0.84318,0.366936,0.332357,-0.377591,0.864271,0.370332,0.327717,-0.366335,0.870862,0.373809,0.339676,-0.366746,0.866093,0.376374,0.34204,-0.377433,0.860554,0.374809,0.344269,-0.391254,0.853463,0.369629,0.370044,-0.396956,0.839936,0.364973,0.418335,-0.387873,0.82131,0.356726,0.485292,-0.364506,0.79475,0.345654,0.55199,-0.341351,0.76078,0.330689,0.607056,-0.331979,0.721992,0.31409,0.634791,-0.342469,0.692643,0.295633,0.64291,-0.359298,0.67644,0.276745,0.650438,-0.353186,0.67245,0.251759,0.667175,-0.313418,0.675756,0.225439,0.685394,-0.273921,0.674687,0.199222,0.697863,-0.238931,0.675203,0.175818,0.713107,-0.214821,0.667331,0.155129,0.72231,-0.170502,0.670221,0.137889,0.744774,-0.046352,0.665706,0.121221,0.744104,0.127827,0.655721,0.105567,0.701945,0.314544,0.639011,0.092359,0.610599,0.464858,0.641152,0.07885,0.431046,0.609578,0.665293,0.064887,0.16599,0.698674,0.695918,0.050467,-0.272241,0.779192,0.564575,0.040771,-0.681746,0.662834,0.309635,0.040713,-0.872479,0.48434,0.064772,0.047878,-0.948548,0.304857,-0.085546,0.058539,-0.953379,0.217507,-0.209186,0.070411,-0.934648,0.139596,-0.327025,0.082922,-0.892764,0.023698,-0.449901,0.090457,-0.832573,-0.102898,-0.544273,0.100663,-0.765328,-0.208465,-0.608946,0.110571,-0.694087,-0.270784,-0.667023,0.123413,-0.621926,-0.295587,-0.725146,0.137625,-0.545221,-0.314541,-0.777045,0.14935,-0.484385,-0.328944,-0.810658,0.159502,-0.429133,-0.333642,-0.839362,0.171117,-0.373431,-0.33036,-0.86684,0.183403,-0.317759,-0.312626,-0.89515,0.193466,-0.260379,-0.297276,-0.918602,0.203759,-0.199372,-0.289125,-0.9363,0.213627,-0.129844,-0.278672,-0.951568,0.225603,-0.050984,-0.270479,-0.961375,0.23967,0.028497,-0.270095,-0.962412,0.25437,0.109286,-0.273197,-0.95573,0.272717,0.196579,-0.271486,-0.942153,0.291901,0.299045,-0.262355,-0.917465,0.314544,0.395532,-0.23896,-0.886822,0.343594,0.492887,-0.203626,-0.845931,0.381042,0.585359,-0.160207,-0.794788,0.425292,0.664042,-0.110389,-0.739502,0.484201,0.725752,-0.068549,-0.684533,0.553541,0.772787,-0.038948,-0.63347,0.63079,0.805764,-0.026211,-0.591656,0.70781,0.831506,-0.02954,-0.554729,0.783932,0.850442,-0.038457,-0.524662,0.856085,0.867514,-0.048185,-0.495074,0.920243,0.884465,-0.052628,-0.463629,0.972669,0.900393,-0.055696,-0.431497,1.014634,0.914183,-0.060001,-0.400835,1.046237,0.926867,-0.065103,-0.369701,1.063183,0.938944,-0.070749,-0.336718,1.067564,0.949771,-0.078947,-0.302823,1.057288,0.958725,-0.091287,-0.269282,1.035214,0.965834,-0.108848,-0.235194,1.003058,0.97061,-0.134583,-0.199507,0.963846,0.972908,-0.161729,-0.165211,0.915556,0.972581,-0.195174,-0.126462,0.861942,0.969009,-0.233174,-0.081554,0.804145,0.96005,-0.277831,-0.033386,0.746505,0.94446,-0.327592,0.026047,0.689805,0.924029,-0.371586,0.089971,0.637789,0.901666,-0.401953,0.159474,0.588672,0.882294,-0.410902,0.229602,0.543051,0.863959,-0.399504,0.306549,0.502324,0.844929,-0.371805,0.384521,0.465138,0.820192,-0.339693,0.46032,0.434336,0.793875,-0.310678,0.522726,0.409571,0.773183,-0.292522,0.562689,0.389206,0.750373,-0.29093,0.593548,0.372923,0.717761,-0.320315,0.618238,0.360403,0.680725,-0.364492,0.635421,0.347638,0.643584,-0.408166,0.647457,0.335254,0.62213,-0.422744,0.65897,0.321952,0.614406,-0.407396,0.675673,0.305903,0.622546,-0.358667,0.695553,0.290199,0.640108,-0.288916,0.711891,0.274116,0.654412,-0.217952,0.724046,0.25634,0.665436,-0.17953,0.724544,0.242447,0.656288,-0.166312,0.735953,0.224858,0.632889,-0.186313,0.751491,0.206073,0.599636,-0.195237,0.776092,0.189411,0.571796,-0.188114,0.798538,0.171354,0.538012,-0.163807,0.826868,0.154712,0.51433,-0.118162,0.849413,0.140105,0.488279,-0.056448,0.87086,0.12886,0.462916,0.00452,0.886391,0.121492]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftAnkle",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.700938,0.250389,0.667826,0.063876,0.700938,0.250389,0.667826,0.063876,0.694288,0.226007,0.68329,0.064497,0.694288,0.226007,0.68329,0.064497,0.694288,0.226007,0.68329,0.064497,0.700938,0.250389,0.667826,0.063876,0.704036,0.286188,0.649946,0.065694,0.710425,0.343377,0.614319,0.067099,0.688823,0.414154,0.594979,0.069302,0.680454,0.480548,0.553224,0.0715,0.643267,0.565029,0.516672,0.074444,0.597964,0.640729,0.481566,0.076361,0.525311,0.739302,0.421285,0.079357,0.458562,0.804944,0.376545,0.082188,0.41791,0.847021,0.328491,0.084472,0.359467,0.882079,0.3045,0.085446,0.347585,0.893833,0.283279,0.085616,0.34263,0.898389,0.274775,0.084277,0.355435,0.897314,0.261713,0.078759,0.386945,0.889874,0.241658,0.0715,0.434991,0.871367,0.226941,0.059788,0.504529,0.825028,0.254519,0.051143,0.568945,0.712821,0.410106,0.049571,0.585425,0.651563,0.482434,0.054602,0.61247,0.618956,0.491705,0.061522,0.624981,0.609213,0.488117,0.064832,0.615781,0.652712,0.441339,0.067191,0.635943,0.669913,0.383135,0.067778,0.60662,0.751346,0.259791,0.064891,0.588855,0.805756,0.063299,0.061893,0.544728,0.82104,-0.170776,0.059042,0.447594,0.784774,-0.428706,0.056267,0.316525,0.684508,-0.656705,0.0594,0.216637,0.61456,-0.758541,0.06207,0.219747,0.513995,-0.829169,0.063129,0.278165,0.386413,-0.87938,0.061024,0.396943,0.259532,-0.880386,0.058502,0.524412,0.045208,-0.850264,0.054128,0.641105,-0.169831,-0.748427,0.052145,0.725538,-0.327675,-0.605164,0.052786,0.786766,-0.418507,-0.453708,0.054667,0.832008,-0.484775,-0.269733,0.053637,0.87122,-0.488464,-0.048768,0.053508,0.887828,-0.423873,0.179147,0.056562,0.864753,-0.313142,0.392613,0.05954,0.808006,-0.215873,0.548202,0.065418,0.757799,-0.144513,0.636283,0.068387,0.718685,-0.087791,0.689771,0.070448,0.671657,-0.079052,0.736633,0.065338,0.620682,-0.119994,0.774826,0.055939,0.564956,-0.153573,0.810704,0.048319,0.392869,-0.225992,0.891393,0.041364,0.230731,-0.279336,0.932059,0.039343,0.096801,-0.290687,0.951909,0.039361,-0.060678,-0.288383,0.955591,0.039488,-0.110528,-0.194137,0.974728,0.042947,-0.175693,-0.135356,0.975095,0.046498,-0.282273,-0.103601,0.953724,0.049897,-0.363462,-0.096273,0.926621,0.054177,-0.437181,-0.11422,0.892091,0.058799,-0.501616,-0.147841,0.852364,0.065991,-0.600654,-0.178454,0.779339,0.074892,-0.651171,-0.193096,0.733955,0.083389,-0.712518,-0.22074,0.666027,0.090241,-0.760059,-0.244289,0.60219,0.097983,-0.803072,-0.266688,0.532872,0.106047,-0.829571,-0.286518,0.479291,0.112767,-0.838629,-0.316301,0.443458,0.115325,-0.833656,-0.377247,0.403365,0.117702,-0.82155,-0.446499,0.354534,0.116606,-0.793063,-0.537853,0.285946,0.113614,-0.727048,-0.654108,0.208673,0.108647,-0.597476,-0.792917,0.119604,0.103629,-0.364994,-0.930722,-0.023138,0.098638,-0.015708,-0.984662,-0.173765,0.103005,0.374239,-0.877962,-0.298542,0.122987,0.617397,-0.703317,-0.352372,0.156062,0.754841,-0.543625,-0.366996,0.191129,0.839889,-0.419968,-0.343821,0.214904,0.908295,-0.313031,-0.277509,0.219114,0.96788,-0.188228,-0.166667,0.213157,0.999677,-0.024626,0.006347,0.200739,0.968261,0.140817,0.206499,0.197416,0.884232,0.273216,0.378796,0.201379,0.782822,0.345829,0.517292,0.200339,0.687209,0.373468,0.623109,0.194228,0.585647,0.358819,0.726819,0.181323,0.496346,0.30471,0.812892,0.168102,0.408765,0.244972,0.879147,0.152723,0.32032,0.188753,0.928314,0.136254,0.205182,0.168285,0.964148,0.117043,0.042615,0.179882,0.982765,0.099713,-0.179893,0.198017,0.96355,0.081151,-0.523179,0.233893,0.819498,0.061835,-0.900893,0.245585,0.357883,0.051625,-0.950748,0.179011,-0.253047,0.062985,-0.810317,0.123925,-0.572738,0.08992,-0.686246,0.106692,-0.719503,0.124565,-0.58728,0.110122,-0.801857,0.163051,-0.516863,0.108532,-0.849161,0.201087,-0.453713,0.103878,-0.885073,0.240222,-0.408834,0.102414,-0.906844,0.277045,-0.369023,0.102244,-0.923779,0.312263,-0.338673,0.102642,-0.935289,0.341953,-0.317045,0.094328,-0.943708,0.361579,-0.299043,0.085157,-0.950432,0.374443,-0.281033,0.084412,-0.955979,0.380189,-0.25737,0.084657,-0.962597,0.381486,-0.227041,0.086541,-0.970033,0.37847,-0.180418,0.098371,-0.978658,0.371717,-0.108624,0.095497,-0.989485,0.359641,-0.021952,0.077489,-0.996752,0.345628,0.062096,0.052702,-0.996678,0.336115,0.144298,0.035704,-0.98889,0.331463,0.21025,0.030661,-0.977167,0.324067,0.260599,0.036717,-0.964749,0.318077,0.295884,0.064025,-0.953076,0.311732,0.313614,0.10461,-0.943771,0.306751,0.312726,0.148069,-0.938231,0.300621,0.316004,0.194859,-0.928532,0.293912,0.336049,0.220428,-0.915687,0.284803,0.360348,0.224173,-0.905481,0.270466,0.387661,0.219309,-0.895334,0.254043,0.409877,0.208941,-0.887888,0.240886,0.425996,0.215707,-0.878634,0.228104,0.432091,0.230208,-0.871953,0.218699,0.426614,0.255124,-0.867705,0.209383,0.411221,0.287577,-0.864984,0.20122,0.390209,0.307992,-0.867685,0.193258,0.380482,0.321284,-0.867185,0.183541,0.37145,0.343956,-0.862392,0.174707,0.341543,0.374855,-0.861877,0.164152,0.289539,0.408658,-0.865544,0.155649,0.219469,0.4489,-0.866211,0.14964,0.128714,0.466321,-0.875201,0.143268,0.030729,0.463644,-0.885489,0.136989,-0.079264,0.449081,-0.889968,0.133645,-0.180503,0.427147,-0.885982,0.130585,-0.282441,0.422771,-0.861099,0.12562,-0.365611,0.39596,-0.842345,0.122244,-0.456262,0.356567,-0.815282,0.120676,-0.541926,0.3002,-0.784982,0.116426,-0.612096,0.21386,-0.761316,0.112343,-0.681129,0.132892,-0.720002,0.107335,-0.762192,0.049404,-0.645464,0.103262,-0.835105,-0.037062,-0.54884,0.098867,-0.898542,-0.109654,-0.424968,0.098812,-0.933134,-0.199765,-0.298922,0.102271,-0.94397,-0.277924,-0.177988,0.109122,-0.939891,-0.329919,-0.08808,0.120631,-0.926082,-0.377234,-0.008166,0.132727,-0.906368,-0.420636,0.039518,0.143104,-0.876707,-0.477131,0.061077,0.147947,-0.828545,-0.557483,0.052218,0.151572,-0.749191,-0.662078,0.019114,0.148634,-0.618007,-0.784299,-0.054248,0.140076,-0.373875,-0.90883,-0.185055,0.128368,0.040009,-0.915969,-0.399249,0.128406,0.428557,-0.736611,-0.523204,0.156718,0.629575,-0.547822,-0.550932,0.199915,0.732225,-0.41797,-0.537724,0.234377,0.806733,-0.315299,-0.499769,0.250685,0.871001,-0.219561,-0.439488,0.249106,0.933155,-0.106577,-0.343313,0.237952,0.979626,0.012823,-0.20042,0.224383,0.989954,0.138845,-0.026721,0.207464,0.952057,0.254585,0.169628,0.195324,0.873595,0.327544,0.359926,0.185034,0.774893,0.35093,0.525726,0.177939,0.677345,0.329866,0.657565,0.167029,0.573897,0.292145,0.765045,0.152883,0.437118,0.255257,0.862422,0.132828,0.255078,0.213262,0.943109,0.109532,-0.029,0.164225,0.985997,0.09018,-0.381331,0.091685,0.919881,0.077085,-0.719458,0.040976,0.693326,0.073083,-0.957335,-0.004418,0.288946,0.077861,-0.991952,0.005017,-0.126518,0.095107,-0.910056,0.025277,-0.413715,0.122368,-0.803171,0.042789,-0.59421,0.158642,-0.701792,0.059802,-0.709868,0.202764,-0.613942,0.075966,-0.785687,0.247397,-0.539149,0.097432,-0.836555,0.290073,-0.463668,0.10409,-0.879873,0.327303,-0.394512,0.106513,-0.912697,0.362641,-0.341899,0.110099,-0.933265,0.394211,-0.306485,0.106276,-0.945924,0.418507,-0.274479,0.105033,-0.95584,0.428245,-0.235889,0.108104,-0.965748,0.427792,-0.194231,0.107715,-0.975024,0.420385,-0.147578,0.117069,-0.982098,0.410091,-0.074102,0.141074,-0.987222,0.394336,0.015009,0.167553,-0.985749,0.376615,0.098262,0.189501,-0.976951,0.36717,0.167931,0.21539,-0.961981,0.355884,0.216265,0.246193,-0.944785,0.341004,0.252208,0.290527,-0.923031,0.324811,0.27759,0.344958,-0.896631,0.305648,0.297739,0.403861,-0.865013,0.288189,0.316592,0.451553,-0.834188,0.26709,0.342344,0.467754,-0.814866,0.243391,0.369666,0.477679,-0.796975,0.216133,0.403281,0.493717,-0.77046,0.193733,0.42354,0.51692,-0.743914,0.174431,0.440855,0.570826,-0.69268,0.161013,0.446576,0.634669,-0.630686,0.153531,0.449028,0.682159,-0.577091,0.142548,0.457873,0.710752,-0.534026,0.131419,0.453367,0.737592,-0.500417,0.120528,0.436023,0.766043,-0.472295,0.115134,0.426823,0.769659,-0.474813,0.111796,0.412326,0.7711,-0.485172,0.111668,0.399304,0.767375,-0.50169,0.105608,0.388534,0.753432,-0.530454,0.100817,0.360297,0.757395,-0.544554,0.094604,0.319376,0.753451,-0.574726,0.090127,0.281928,0.754764,-0.592324,0.084181,0.204766,0.738316,-0.64262,0.079734,0.093596,0.743991,-0.661602,0.073639,-0.012012,0.770918,-0.636821,0.067792,-0.180887,0.772403,-0.60883,0.063099,-0.371933,0.757682,-0.536268,0.058815,-0.592173,0.68244,-0.428493,0.058445,-0.78135,0.554916,-0.285588,0.062005,-0.869579,0.451451,-0.200062,0.072008,-0.919156,0.358204,-0.163833,0.082564,-0.950621,0.27915,-0.135628,0.09344,-0.968762,0.21372,-0.125797,0.105867,-0.978838,0.150661,-0.138481,0.119196,-0.983664,0.09392,-0.15357,0.131686,-0.986703,0.045937,-0.155906,0.145123,-0.987155,-0.001615,-0.159758,0.155705,-0.982175,-0.063981,-0.176742,0.161301,-0.974001,-0.135026,-0.181906,0.163323,-0.9533,-0.219176,-0.207799,0.161542,-0.914486,-0.322356,-0.244544,0.153717,-0.831774,-0.457906,-0.313807,0.141922,-0.659443,-0.608695,-0.441164,0.128443,-0.300735,-0.71381,-0.632483,0.126026,0.126415,-0.676999,-0.725046,0.149267,0.415167,-0.561606,-0.715706,0.194484,0.569152,-0.459522,-0.68184,0.241009,0.668906,-0.378353,-0.639855,0.274902,0.74247,-0.300028,-0.598933,0.292353,0.810653,-0.215769,-0.544321,0.288265,0.872266,-0.118562,-0.474441,0.271875,0.925019,-0.010351,-0.379779,0.252753,0.954618,0.095285,-0.282179,0.235834,0.959999,0.201087,-0.194849,0.21347,0.952723,0.283863,-0.108353,0.18584,0.936306,0.350816,-0.0161,0.155362,0.909356,0.40338,0.101764,0.124113,0.851684,0.453268,0.263025,0.098071,0.709587,0.561944,0.425095,0.075589,0.397191,0.753434,0.524001,0.057482,-0.084118,0.927348,0.364622,0.047226,-0.481843,0.86168,-0.159171,0.050273,-0.566857,0.599405,-0.565143,0.073256,-0.544997,0.414469,-0.72883,0.104417,-0.482866,0.323044,-0.81393,0.13471,-0.410223,0.268441,-0.871583,0.16295,-0.321378,0.247865,-0.913936,0.188444,-0.259318,0.222188,-0.939887,0.207667,-0.205351,0.208962,-0.95612,0.229565,-0.157933,0.195234,-0.967957,0.249949,-0.099344,0.180785,-0.978492,0.268558,-0.059396,0.167413,-0.984096,0.288013,-0.041024,0.154517,-0.987138,0.302577,-0.028544,0.134947,-0.990442,0.313823,-0.010373,0.133155,-0.991041,0.320527,0.032847,0.14985,-0.988163,0.317263,0.097555,0.194835,-0.975973,0.305666,0.154164,0.242749,-0.957761,0.292321,0.209266,0.287747,-0.934564,0.279845,0.2543,0.311804,-0.915483,0.268715,0.285962,0.330343,-0.899499,0.259875,0.310904,0.345671,-0.885353,0.250781,0.322224,0.371617,-0.870674,0.243306,0.347377,0.406639,-0.84497,0.237791,0.362278,0.435947,-0.823835,0.232487,0.380478,0.461208,-0.801576,0.226089,0.407256,0.474697,-0.78026,0.214459,0.432691,0.484307,-0.760411,0.205769,0.450562,0.505622,-0.735758,0.196698,0.470942,0.529155,-0.705839,0.19043,0.486231,0.55149,-0.677819,0.186238]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftAnkleEnd",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightHip",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.981172,-0.172956,-0.085957,0.104632,0.983377,-0.161097,-0.083771,0.105639,0.985122,-0.14942,-0.084901,0.106722,0.98401,-0.136483,-0.114439,0.108046,0.978038,-0.146174,-0.148576,0.107419,0.970594,-0.141309,-0.194883,0.103179,0.96187,-0.1416,-0.234,0.10048,0.956292,-0.144212,-0.254378,0.096224,0.950428,-0.138398,-0.278446,0.091336,0.94663,-0.118015,-0.29994,0.087495,0.947545,-0.09488,-0.305214,0.083746,0.94572,-0.048485,-0.321345,0.080194,0.931008,-0.036423,-0.363176,0.075674,0.905544,-0.047485,-0.421586,0.074104,0.888569,-0.085439,-0.450716,0.073266,0.876448,-0.132957,-0.462776,0.07361,0.867496,-0.189896,-0.459772,0.072714,0.844986,-0.249784,-0.47287,0.067711,0.802473,-0.379487,-0.460464,0.061398,0.701367,-0.545019,-0.459389,0.053735,0.550298,-0.702309,-0.45159,0.048912,0.340887,-0.862118,-0.374899,0.043865,-0.026949,-0.95495,-0.29554,0.045293,-0.434096,-0.888673,-0.14772,0.059995,-0.669208,-0.741825,-0.043094,0.087805,-0.75104,-0.660007,0.018146,0.12846,-0.773239,-0.630692,0.065797,0.172657,-0.775662,-0.624782,0.089419,0.213726,-0.76905,-0.629715,0.109638,0.253959,-0.763502,-0.631566,0.134867,0.289755,-0.761821,-0.627794,0.159698,0.322523,-0.7674,-0.613356,0.186794,0.352795,-0.778927,-0.591553,0.208178,0.375977,-0.793369,-0.566908,0.221767,0.396586,-0.815511,-0.531257,0.229581,0.411525,-0.841712,-0.485405,0.236438,0.420212,-0.870301,-0.429046,0.241859,0.426789,-0.895979,-0.368791,0.247417,0.430383,-0.914806,-0.31232,0.256098,0.437646,-0.925849,-0.268677,0.265736,0.443029,-0.931809,-0.242215,0.270302,0.447625,-0.93494,-0.23334,0.267281,0.454218,-0.935182,-0.237071,0.263121,0.461718,-0.932022,-0.250874,0.26153,0.473234,-0.932911,-0.258296,0.25092,0.485994,-0.936041,-0.256846,0.240536,0.499183,-0.94019,-0.248883,0.232594,0.50528,-0.944244,-0.239618,0.225802,0.509811,-0.948998,-0.229693,0.215972,0.511358,-0.952515,-0.221918,0.208489,0.513381,-0.955398,-0.214922,0.202541,0.513707,-0.958035,-0.212082,0.192846,0.515125,-0.959782,-0.209905,0.186436,0.518756,-0.961095,-0.210634,0.17869,0.522652,-0.962464,-0.210485,0.171343,0.525797,-0.962373,-0.213585,0.167986,0.525216,-0.961864,-0.217522,0.165835,0.525936,-0.96097,-0.222572,0.16431,0.521336,-0.959473,-0.229939,0.162908,0.515421,-0.957211,-0.237654,0.165128,0.507284,-0.955316,-0.244463,0.166159,0.496676,-0.953214,-0.249801,0.170241,0.485248,-0.953855,-0.242917,0.176499,0.47306,-0.955797,-0.233677,0.178459,0.459756,-0.957145,-0.2207,0.187524,0.443572,-0.95861,-0.208267,0.194143,0.430462,-0.959291,-0.193271,0.20593,0.418421,-0.95609,-0.182808,0.229072,0.407601,-0.950354,-0.169808,0.260755,0.395062,-0.943283,-0.154423,0.293889,0.382478,-0.935187,-0.140092,0.325268,0.367867,-0.929446,-0.128979,0.345679,0.35012,-0.925979,-0.118418,0.358524,0.330042,-0.924966,-0.104916,0.365282,0.31303,-0.928705,-0.092215,0.359172,0.294787,-0.931521,-0.069758,0.356936,0.276605,-0.93534,-0.040053,0.351476,0.257363,-0.938252,-0.014776,0.345637,0.240813,-0.940381,0.005794,0.340075,0.226319,-0.941108,0.022304,0.337369,0.214024,-0.944372,0.045738,0.325682,0.201627,-0.941637,0.060684,0.331116,0.190663,-0.94515,0.071543,0.318706,0.178879,-0.94577,0.091333,0.311732,0.166876,-0.944023,0.099163,0.314624,0.153065,-0.947393,0.115114,0.298655,0.13787,-0.949394,0.128258,0.286708,0.121564,-0.958807,0.120736,0.257122,0.1037,-0.973233,0.083201,0.21423,0.084965,-0.980766,0.011692,0.194837,0.06514,-0.984566,-0.118511,0.128785,0.04854,-0.921574,-0.386019,0.041118,0.035231,-0.69546,-0.695629,-0.1801,0.028639,-0.335832,-0.856268,-0.392456,0.025522,0.149667,-0.801625,-0.578789,0.026494,0.475022,-0.664732,-0.576615,0.032108,0.713381,-0.493495,-0.497545,0.039069,0.850669,-0.315945,-0.420168,0.045951,0.917925,-0.191038,-0.347734,0.056777,0.950907,-0.083221,-0.298079,0.068122,0.962112,-0.038673,-0.269899,0.081938,0.970996,-0.019034,-0.238337,0.095593,0.973175,-0.021681,-0.229041,0.111747,0.981319,-0.017367,-0.1916,0.125569,0.983819,-0.022715,-0.17772,0.137922,0.984495,-0.01925,-0.174352,0.150561,0.985881,-0.021537,-0.166058,0.162683,0.988738,-0.012177,-0.149163,0.172552,0.989195,-0.020587,-0.145151,0.183552,0.987517,-0.041203,-0.152029,0.195181,0.985593,-0.07087,-0.153572,0.20561,0.984332,-0.092637,-0.150028,0.214915,0.980941,-0.123563,-0.149956,0.22193,0.979592,-0.143691,-0.140542,0.226466,0.973582,-0.172661,-0.149421,0.229847,0.966028,-0.200101,-0.163554,0.232073,0.957786,-0.227899,-0.175238,0.230292,0.938796,-0.272549,-0.210663,0.225905,0.91353,-0.323114,-0.247102,0.219171,0.868732,-0.399689,-0.292495,0.208721,0.781995,-0.513414,-0.353398,0.199513,0.655677,-0.654035,-0.37726,0.196243,0.499455,-0.779841,-0.37735,0.198783,0.321117,-0.879924,-0.350169,0.205253,0.138629,-0.945807,-0.293651,0.217596,-0.021122,-0.974014,-0.225501,0.234204,-0.162386,-0.9751,-0.151033,0.251505,-0.286028,-0.953969,-0.090172,0.271023,-0.394921,-0.918374,-0.025033,0.290042,-0.490119,-0.870753,0.039652,0.310039,-0.578741,-0.810631,0.089084,0.32904,-0.651639,-0.747431,0.129281,0.346092,-0.713804,-0.679596,0.169217,0.362569,-0.766432,-0.610725,0.19899,0.37499,-0.807628,-0.545667,0.223574,0.383953,-0.838556,-0.487528,0.243187,0.391663,-0.858769,-0.44222,0.258761,0.396983,-0.872777,-0.40537,0.271911,0.39725,-0.885631,-0.370899,0.27945,0.39462,-0.894846,-0.342267,0.286537,0.391042,-0.90351,-0.318648,0.286588,0.388354,-0.912049,-0.298145,0.281562,0.387064,-0.918528,-0.279774,0.279342,0.388999,-0.921461,-0.278232,0.271104,0.390433,-0.92283,-0.2863,0.257717,0.390722,-0.92023,-0.303273,0.24739,0.390179,-0.916303,-0.322416,0.237563,0.39101,-0.912013,-0.341353,0.227401,0.391845,-0.90709,-0.360102,0.217977,0.391597,-0.899407,-0.37992,0.216167,0.39221,-0.888968,-0.404969,0.213859,0.392805,-0.876339,-0.428344,0.220343,0.392226,-0.861869,-0.452691,0.228587,0.39346,-0.850677,-0.467403,0.24059,0.392293,-0.847535,-0.46501,0.255832,0.387739,-0.858661,-0.440064,0.262763,0.378012,-0.875054,-0.402415,0.268968,0.365664,-0.887049,-0.37027,0.275762,0.35164,-0.88589,-0.360308,0.292193,0.333698,-0.874261,-0.369651,0.314684,0.314448,-0.858178,-0.384627,0.339989,0.295354,-0.840823,-0.4005,0.364165,0.277526,-0.823325,-0.407915,0.39464,0.260481,-0.804401,-0.41937,0.420794,0.241362,-0.795033,-0.401574,0.454599,0.225207,-0.793671,-0.369753,0.483083,0.205587,-0.80401,-0.302629,0.511843,0.184655,-0.807874,-0.20377,0.553007,0.163616,-0.80001,-0.079273,0.594727,0.14367,-0.756325,0.048554,0.652391,0.126141,-0.678744,0.13558,0.721751,0.110894,-0.548566,0.155257,0.821566,0.093812,-0.361676,0.116894,0.924947,0.079872,-0.092504,0.04208,0.994823,0.071926,0.171386,-0.001745,0.985202,0.071065,0.414707,-0.016594,0.909804,0.074011,0.599224,0.018487,0.800368,0.080473,0.734306,0.067342,0.67547,0.092787,0.812325,0.088703,0.576419,0.104769,0.858105,0.10378,0.502878,0.119692,0.900499,0.090827,0.425266,0.134713,0.930034,0.062532,0.362114,0.152717,0.947885,0.025409,0.317598,0.173515,0.964471,-0.007837,0.264072,0.19289,0.972566,-0.017945,0.231935,0.212078,0.979642,-0.027718,0.198828,0.23017,0.982939,-0.045525,0.178212,0.245045,0.985654,-0.059545,0.157925,0.258547,0.987554,-0.07067,0.14051,0.268372,0.989522,-0.074352,0.123763,0.277209,0.991848,-0.076542,0.101879,0.286863,0.993658,-0.080375,0.078638,0.294001,0.994466,-0.091187,0.052181,0.301762,0.993551,-0.111054,0.022875,0.308713,0.990698,-0.13563,-0.011094,0.310701,0.985124,-0.165639,-0.045768,0.305149,0.975202,-0.200845,-0.092965,0.291548,0.952676,-0.260263,-0.157073,0.269888,0.904223,-0.359016,-0.231277,0.247488,0.814402,-0.494057,-0.304397,0.229271,0.668077,-0.652797,-0.357113,0.218067,0.480674,-0.794326,-0.371481,0.21743,0.285513,-0.893971,-0.345397,0.230995,0.114187,-0.950082,-0.290355,0.251367,-0.044445,-0.97079,-0.235777,0.276685,-0.184674,-0.966079,-0.180521,0.299108,-0.30588,-0.943483,-0.127579,0.318983,-0.415616,-0.906281,-0.076931,0.337217,-0.506275,-0.861876,-0.029241,0.355985,-0.584772,-0.811184,0.004772,0.372178,-0.650206,-0.758925,0.035564,0.388985,-0.696879,-0.714531,0.061688,0.404675,-0.729174,-0.678364,0.090151,0.421077,-0.741121,-0.660759,0.118899,0.437322,-0.741453,-0.654855,0.14633,0.450671,-0.73777,-0.653277,0.170072,0.457607,-0.734906,-0.651614,0.187919,0.459452,-0.734767,-0.647507,0.20212,0.456038,-0.743425,-0.636113,0.20659,0.443943,-0.761019,-0.612924,0.212542,0.425826,-0.786647,-0.57539,0.223857,0.403352,-0.814005,-0.530659,0.236212,0.379347,-0.840961,-0.48406,0.241808,0.357557,-0.864145,-0.440558,0.243234,0.339802,-0.875222,-0.417529,0.244246,0.325213,-0.87527,-0.419315,0.240992,0.316884,-0.86749,-0.433391,0.2442,0.314225,-0.85767,-0.445347,0.257039,0.318268,-0.852094,-0.449325,0.268407,0.325536,-0.844223,-0.45215,0.287832,0.329725,-0.836376,-0.45506,0.305607,0.332421,-0.828301,-0.463647,0.314562,0.329066,-0.816135,-0.474952,0.329156,0.322805,-0.805894,-0.480506,0.345902,0.313381,-0.802889,-0.476314,0.358462,0.302588,-0.811279,-0.451893,0.370971,0.294126,-0.823334,-0.413671,0.388584,0.283043,-0.836628,-0.363041,0.410189,0.271426,-0.84658,-0.314806,0.429185,0.257437,-0.848586,-0.269004,0.455564,0.24193,-0.83575,-0.257153,0.485174,0.223654,-0.815134,-0.274311,0.510206,0.206652,-0.784302,-0.329642,0.525553,0.194754,-0.731962,-0.394962,0.555191,0.184251,-0.664682,-0.470446,0.580412,0.17408,-0.591092,-0.537783,0.601166,0.168735,-0.528057,-0.582168,0.618252,0.164859,-0.500749,-0.569632,0.651744,0.156252,-0.522492,-0.50996,0.683332,0.145704,-0.554358,-0.412071,0.723107,0.133219,-0.590603,-0.296854,0.750377,0.124531,-0.601803,-0.189558,0.775822,0.115585,-0.58654,-0.155753,0.794803,0.108002,-0.506861,-0.184572,0.842036,0.100528,-0.40287,-0.260263,0.877473,0.096165,-0.29945,-0.348925,0.888021,0.090951,-0.191564,-0.425521,0.88444,0.089116,-0.124766,-0.45971,0.879261,0.086552,-0.056106,-0.439205,0.896633,0.0852,-0.010911,-0.395802,0.918271,0.082266,0.046779,-0.328923,0.943197,0.08025,0.120176,-0.217709,0.968587,0.080357,0.24461,-0.127055,0.961261,0.080146,0.385219,-0.050535,0.921441,0.082795,0.50515,0.020838,0.86278,0.087435,0.597117,0.057448,0.800095,0.092959,0.657292,0.095237,0.747594,0.101041,0.702597,0.090948,0.705752,0.106348,0.740062,0.091876,0.666234,0.111473,0.773679,0.086707,0.627616,0.118488,0.79725,0.067266,0.59989,0.123334,0.833454,0.057999,0.549536,0.129115,0.863704,0.049338,0.501579,0.135314,0.888093,0.028785,0.458762,0.142173,0.912124,0.018144,0.409514,0.149084,0.931747,0.011638,0.362921,0.154906,0.94579,-0.025354,0.323787,0.161308,0.956628,-0.057351,0.28561,0.161849,0.962665,-0.109895,0.247384,0.158033,0.954654,-0.200114,0.220432,0.153891,0.92613,-0.327077,0.187896,0.144307,0.863613,-0.478471,0.158865,0.13365,0.737203,-0.665494,0.116829,0.127155,0.544913,-0.835538,0.070331,0.125814,0.283191,-0.958869,0.019321,0.131276,0.042194,-0.999105,-0.002885,0.147418]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightKnee",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[-0.054493,0.875338,0.480431,0.072507,-0.052879,0.876208,0.479024,0.071756,-0.053065,0.872906,0.484994,0.070465,-0.070231,0.847809,0.52563,0.071353,-0.087585,0.823354,0.56073,0.07464,-0.081961,0.809785,0.580974,0.077064,-0.059263,0.801746,0.594719,0.079624,-0.036701,0.80097,0.597579,0.082411,-0.001633,0.79905,0.601262,0.083051,0.018263,0.792532,0.609557,0.082838,0.040102,0.78243,0.621446,0.081234,0.082523,0.740463,0.667011,0.077944,0.142951,0.701334,0.698352,0.077953,0.196833,0.678546,0.707695,0.079486,0.257656,0.650387,0.71457,0.079408,0.34934,0.635163,0.688861,0.078066,0.473464,0.60563,0.639566,0.077255,0.640828,0.534917,0.550639,0.078705,0.788786,0.459544,0.408211,0.086715,0.883291,0.395888,0.251138,0.101763,0.941257,0.315806,0.119592,0.121382,0.973244,0.229772,-0.000431,0.149001,0.979492,0.181012,-0.088489,0.187351,0.973916,0.172553,-0.147356,0.236951,0.963974,0.187507,-0.188668,0.295937,0.952438,0.213111,-0.217819,0.358221,0.937329,0.250188,-0.242531,0.418469,0.924498,0.281841,-0.256651,0.472526,0.911126,0.315439,-0.265233,0.517366,0.89758,0.344391,-0.275219,0.550672,0.885973,0.364112,-0.287184,0.570568,0.879789,0.371318,-0.296808,0.57905,0.877091,0.370061,-0.306212,0.575979,0.878678,0.365708,-0.306891,0.561401,0.885908,0.34991,-0.304515,0.537916,0.898177,0.32299,-0.298253,0.50738,0.913572,0.282632,-0.292412,0.473993,0.928919,0.234419,-0.286632,0.437681,0.940016,0.185422,-0.286336,0.404753,0.945542,0.145994,-0.290922,0.370081,0.946377,0.12871,-0.296319,0.33837,0.94332,0.130755,-0.305042,0.308789,0.936029,0.158065,-0.314429,0.284955,0.925366,0.206157,-0.318114,0.270133,0.918413,0.241942,-0.313022,0.261148,0.912393,0.27035,-0.307328,0.256282,0.909493,0.282653,-0.304845,0.248555,0.906848,0.290316,-0.305523,0.240726,0.906263,0.290838,-0.30676,0.231689,0.908927,0.282128,-0.30701,0.222887,0.914958,0.254925,-0.312835,0.21552,0.922202,0.224235,-0.315059,0.210339,0.927336,0.185973,-0.32475,0.208126,0.939055,0.144095,-0.312109,0.212169,0.943741,0.116427,-0.309511,0.217952,0.94414,0.097017,-0.314941,0.224106,0.944551,0.085515,-0.317033,0.231112,0.943529,0.09364,-0.317781,0.236859,0.940903,0.103753,-0.322393,0.239503,0.939802,0.112032,-0.322833,0.24226,0.938156,0.112398,-0.327459,0.241471,0.936528,0.121846,-0.328739,0.242384,0.934893,0.115312,-0.335676,0.239835,0.936673,0.092273,-0.337831,0.235417,0.936837,0.057756,-0.344964,0.226425,0.937243,0.010788,-0.348511,0.21642,0.936154,-0.025165,-0.350689,0.212303,0.929995,-0.023079,-0.366848,0.209331,0.921013,-0.000034,-0.389531,0.208906,0.911675,0.042882,-0.408669,0.210034,0.903967,0.089771,-0.418073,0.210626,0.902996,0.129971,-0.40952,0.20717,0.902458,0.155989,-0.401544,0.200374,0.910963,0.15902,-0.380605,0.195841,0.933106,0.135018,-0.333293,0.188301,0.952246,0.100153,-0.288438,0.179729,0.967063,0.071656,-0.244242,0.171853,0.980273,0.04435,-0.192606,0.164517,0.989494,0.023185,-0.142703,0.157918,0.993784,0.01438,-0.110394,0.152194,0.997432,-0.003828,-0.071517,0.144916,0.998022,-0.030479,-0.054976,0.141011,0.997607,-0.066048,-0.020434,0.137226,0.992336,-0.122769,0.014062,0.134161,0.984413,-0.170047,0.04489,0.128006,0.972953,-0.212884,0.089687,0.121116,0.957977,-0.259415,0.122413,0.112375,0.933306,-0.303996,0.191119,0.101185,0.890383,-0.361363,0.276829,0.090536,0.831194,-0.415407,0.369531,0.080467,0.751128,-0.455815,0.477535,0.072599,0.650585,-0.474485,0.592962,0.0667,0.568431,-0.478794,0.669061,0.06568,0.444809,-0.48345,0.753937,0.067152,0.348612,-0.489406,0.799345,0.069484,0.316953,-0.419988,0.850383,0.072058,0.274034,-0.360442,0.89162,0.069833,0.255983,-0.297661,0.919712,0.06986,0.257453,-0.259168,0.930887,0.069257,0.269904,-0.227045,0.935736,0.070003,0.27366,-0.186594,0.943553,0.07175,0.302425,-0.112895,0.946464,0.070668,0.310592,-0.007839,0.950511,0.071896,0.359481,0.089858,0.928816,0.071998,0.412335,0.201665,0.888432,0.07308,0.45074,0.288655,0.844696,0.075998,0.520207,0.342244,0.782466,0.07848,0.605535,0.344867,0.717213,0.08025,0.689752,0.379578,0.616574,0.085133,0.738399,0.425596,0.523102,0.094243,0.779166,0.479886,0.403249,0.10381,0.815903,0.504272,0.282864,0.116001,0.853614,0.493754,0.165984,0.132531,0.890545,0.452288,0.048628,0.151413,0.910637,0.41059,-0.046443,0.175137,0.927304,0.356697,-0.113467,0.203229,0.936538,0.307061,-0.169146,0.240855,0.943511,0.272523,-0.188462,0.286153,0.946099,0.251957,-0.203508,0.339296,0.94599,0.244547,-0.212837,0.401994,0.941742,0.253303,-0.221267,0.471415,0.933111,0.270817,-0.236562,0.545579,0.923098,0.290518,-0.251972,0.618588,0.915956,0.301463,-0.264847,0.688135,0.90929,0.307357,-0.280576,0.752709,0.904106,0.309535,-0.294584,0.808139,0.900118,0.306639,-0.309451,0.855653,0.896392,0.304021,-0.322571,0.893432,0.893006,0.300897,-0.334667,0.919941,0.889119,0.298291,-0.347118,0.934286,0.886837,0.296086,-0.354758,0.936068,0.884708,0.295076,-0.360863,0.924329,0.8828,0.294249,-0.366173,0.901632,0.881566,0.296062,-0.367681,0.866826,0.879958,0.30233,-0.36643,0.821585,0.877716,0.313157,-0.362694,0.768833,0.873341,0.331715,-0.356708,0.710378,0.86703,0.350955,-0.353681,0.644469,0.861166,0.36863,-0.350008,0.576032,0.857894,0.37645,-0.349718,0.503195,0.857079,0.377143,-0.350967,0.432606,0.862123,0.356904,-0.35967,0.364323,0.875944,0.30176,-0.376382,0.301726,0.88852,0.212294,-0.406773,0.244937,0.899638,0.090076,-0.427244,0.19754,0.889108,-0.064393,-0.453146,0.158395,0.859307,-0.209732,-0.466481,0.128756,0.839129,-0.331393,-0.431324,0.12343,0.834634,-0.395088,-0.383785,0.121488,0.841169,-0.406401,-0.356754,0.126111,0.85996,-0.372851,-0.348499,0.134295,0.876264,-0.318922,-0.361178,0.143099,0.890538,-0.265194,-0.369614,0.154959,0.900865,-0.217453,-0.375708,0.17153,0.907117,-0.188671,-0.37622,0.192471,0.921209,-0.177985,-0.34597,0.216813,0.93592,-0.176184,-0.304979,0.241003,0.95378,-0.153782,-0.258178,0.259735,0.969765,-0.100097,-0.222568,0.266598,0.981327,-0.031496,-0.189749,0.268816,0.985663,0.014635,-0.168093,0.26867,0.986932,0.041865,-0.155605,0.268486,0.98808,0.052686,-0.144647,0.268971,0.990107,0.049259,-0.13138,0.269291,0.992612,0.045834,-0.112343,0.269177,0.995011,0.03831,-0.092116,0.267576,0.997656,0.026529,-0.063078,0.262723,0.999243,-0.004958,-0.038595,0.256074,0.999211,-0.037659,-0.012597,0.249776,0.99783,-0.065323,0.00823,0.239397,0.99675,-0.076784,0.024353,0.228751,0.996649,-0.066372,0.0478,0.214002,0.996874,-0.030348,0.072948,0.200632,0.996198,0.0124,0.086226,0.189051,0.994177,0.035411,0.101777,0.182295,0.990376,0.051684,0.128394,0.177227,0.987494,0.061496,0.145169,0.173717,0.983557,0.07707,0.163329,0.170555,0.978568,0.098377,0.180906,0.168888,0.976476,0.107818,0.186733,0.168346,0.968854,0.139403,0.204667,0.16785,0.961309,0.180477,0.20812,0.165027,0.954057,0.221442,0.20184,0.166906,0.944496,0.261465,0.198908,0.169034,0.943529,0.276952,0.181797,0.170391,0.938579,0.298948,0.172335,0.17416,0.935602,0.316758,0.155924,0.183153,0.937978,0.323944,0.123523,0.19435,0.938508,0.332793,0.09193,0.209447,0.945262,0.320087,0.063429,0.225361,0.951484,0.305039,0.040376,0.243563,0.955552,0.294725,0.007635,0.264164,0.955543,0.292884,-0.034005,0.289284,0.953367,0.291112,-0.079661,0.317754,0.952089,0.281618,-0.119242,0.353946,0.954732,0.252353,-0.157497,0.3975,0.959497,0.214809,-0.182271,0.451902,0.962544,0.179225,-0.203439,0.519013,0.959848,0.158841,-0.231217,0.595175,0.95211,0.158177,-0.261662,0.677676,0.940806,0.179895,-0.287266,0.76149,0.928792,0.208923,-0.3061,0.8424,0.917469,0.234692,-0.321201,0.91738,0.908154,0.252756,-0.333724,0.983883,0.901543,0.263822,-0.342954,1.04252,0.898916,0.267523,-0.34696,1.093448,0.89935,0.268298,-0.345232,1.130803,0.901731,0.263886,-0.342412,1.155299,0.905422,0.258923,-0.336407,1.167166,0.91012,0.252345,-0.328638,1.167537,0.914676,0.247687,-0.319404,1.156241,0.918316,0.244456,-0.311348,1.132855,0.920197,0.24594,-0.304552,1.094275,0.918928,0.254059,-0.301703,1.045924,0.914623,0.268379,-0.302387,0.987319,0.909422,0.285693,-0.302212,0.919492,0.904125,0.305694,-0.298511,0.843501,0.900321,0.320082,-0.294906,0.763903,0.900526,0.327591,-0.285897,0.675808,0.904332,0.322548,-0.279547,0.583878,0.915766,0.293524,-0.274257,0.48718,0.933801,0.227331,-0.27629,0.391063,0.956249,0.097756,-0.27574,0.301487,0.952705,-0.137606,-0.270957,0.227383,0.846404,-0.47206,-0.246493,0.181574,0.641234,-0.744869,-0.184363,0.167497,0.468695,-0.870681,-0.149129,0.166716,0.402365,-0.901724,-0.158102,0.164068,0.437992,-0.875957,-0.202142,0.154514,0.518308,-0.811966,-0.268456,0.141382,0.616229,-0.707848,-0.345272,0.129462,0.674597,-0.633027,-0.379731,0.124485,0.700066,-0.605242,-0.378933,0.127434,0.695277,-0.620662,-0.362449,0.137953,0.684708,-0.642243,-0.344528,0.152326,0.70442,-0.636393,-0.31432,0.170995,0.731184,-0.613126,-0.299076,0.189493,0.758061,-0.589347,-0.279309,0.204108,0.789071,-0.565337,-0.240335,0.216177,0.814645,-0.542552,-0.204918,0.22151,0.839617,-0.516397,-0.168459,0.218112,0.865538,-0.484553,-0.126697,0.210085,0.892461,-0.44314,-0.084505,0.200125,0.913386,-0.403464,-0.054249,0.191482,0.931352,-0.362446,-0.034872,0.182592,0.94846,-0.316191,-0.021133,0.178896,0.95809,-0.286377,-0.007173,0.178531,0.958884,-0.28377,0.003897,0.183723,0.952064,-0.305751,0.009538,0.191447,0.938084,-0.345911,0.018531,0.197137,0.922794,-0.384645,0.022363,0.202187,0.901979,-0.430153,0.037453,0.205296,0.890075,-0.453176,0.048967,0.206158,0.883128,-0.465828,0.055583,0.201719,0.883668,-0.465547,0.048956,0.195637,0.882857,-0.46753,0.044479,0.186782,0.891322,-0.451583,0.040213,0.179788,0.906941,-0.420528,0.024801,0.177904,0.920787,-0.389855,0.012804,0.176738,0.935868,-0.352308,0.005567,0.178904,0.94902,-0.315212,-0.001809,0.181347,0.958314,-0.285582,-0.008763,0.185458,0.968515,-0.248951,-0.001619,0.188577,0.977336,-0.211676,-0.002851,0.189411,0.985188,-0.171463,0.002271,0.190517,0.991635,-0.128966,-0.005218,0.191971,0.995762,-0.089599,-0.020722,0.191889,0.998464,-0.043718,-0.034039,0.195105,0.998919,-0.004752,-0.046233,0.197537,0.997533,0.040219,-0.057534,0.195328,0.994667,0.074634,-0.071191,0.196031,0.992048,0.091999,-0.085887,0.195023,0.988879,0.109305,-0.100846,0.194092,0.98334,0.133736,-0.123111,0.193104,0.980638,0.132317,-0.144363,0.194251,0.976922,0.127161,-0.171622,0.198576,0.971496,0.123282,-0.202479,0.207593,0.967419,0.11499,-0.225563,0.220955,0.961498,0.117248,-0.248545,0.241095,0.95441,0.13052,-0.26845,0.267726,0.94806,0.149624,-0.280703,0.302123,0.940539,0.165088,-0.29687,0.344959,0.935929,0.177832,-0.303996,0.392359,0.932203,0.18714,-0.3098,0.444718,0.928863,0.195931,-0.314364,0.503426,0.924515,0.201802,-0.32334,0.561895]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightAnkle",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[-0.661555,-0.336789,-0.670013,0.034124,-0.684453,-0.341543,-0.644106,0.035034,-0.669935,-0.322751,-0.668594,0.038143,-0.669935,-0.322751,-0.668594,0.038143,-0.619781,-0.330295,-0.711882,0.03682,-0.562725,-0.383296,-0.73241,0.034912,-0.526276,-0.444018,-0.725177,0.033963,-0.436087,-0.513521,-0.739002,0.034347,-0.412632,-0.60006,-0.685319,0.035655,-0.387087,-0.673873,-0.629332,0.037328,-0.427609,-0.774645,-0.465913,0.038867,-0.462993,-0.834474,-0.298816,0.04263,-0.514992,-0.852409,-0.090453,0.048235,-0.522627,-0.846791,0.099028,0.057698,-0.534253,-0.803808,0.26166,0.06294,-0.558698,-0.722981,0.406393,0.072471,-0.557229,-0.651751,0.514506,0.082778,-0.562395,-0.568915,0.600039,0.092723,-0.568147,-0.492092,0.659586,0.103895,-0.583879,-0.427887,0.689926,0.117162,-0.593476,-0.359981,0.719861,0.132192,-0.604139,-0.28589,0.74383,0.152658,-0.609762,-0.218763,0.761796,0.176668,-0.61719,-0.18119,0.765667,0.193482,-0.635244,-0.151841,0.757238,0.20643,-0.650444,-0.133392,0.747749,0.21535,-0.65594,-0.128719,0.743757,0.222976,-0.659699,-0.120716,0.741772,0.229936,-0.660054,-0.110034,0.743116,0.233346,-0.643287,-0.104691,0.758434,0.235315,-0.622035,-0.091593,0.777614,0.235201,-0.600456,-0.065903,0.796938,0.236421,-0.577921,-0.039407,0.815141,0.240351,-0.548067,-0.035483,0.835682,0.242353,-0.509573,-0.034379,0.85974,0.244583,-0.46375,-0.04241,0.88495,0.243399,-0.399383,-0.047438,0.915556,0.242984,-0.335811,-0.047875,0.940712,0.243434,-0.277547,-0.038541,0.959939,0.248731,-0.217089,-0.028396,0.975739,0.254951,-0.1675,-0.025555,0.985541,0.260752,-0.107668,-0.01494,0.994075,0.266227,-0.038728,-0.012598,0.99917,0.269983,0.014696,-0.011234,0.999829,0.275184,0.04521,0.001409,0.998977,0.280337,0.067638,0.001539,0.997709,0.285472,0.086383,-0.000145,0.996262,0.288887,0.101946,-0.008859,0.99475,0.291661,0.125759,-0.011545,0.991994,0.291799,0.161972,-0.014508,0.986689,0.288282,0.208462,-0.014879,0.977917,0.283116,0.259062,-0.007858,0.965829,0.274719,0.314275,0.006954,0.949307,0.265877,0.376744,0.013056,0.926225,0.254039,0.444903,0.018872,0.89538,0.243766,0.511855,0.024357,0.858727,0.23539,0.582923,0.032287,0.811886,0.229762,0.651897,0.040281,0.757237,0.227028,0.702774,0.06359,0.708566,0.229989,0.737926,0.089284,0.66895,0.232306,0.770494,0.12878,0.624303,0.235957,0.798859,0.154542,0.581327,0.237453,0.829958,0.171815,0.530706,0.239952,0.859681,0.180748,0.477785,0.241768,0.90001,0.176627,0.398479,0.246177,0.938839,0.164825,0.302348,0.250733,0.961959,0.151013,0.227663,0.247481,0.974935,0.131286,0.179625,0.240693,0.984545,0.10107,0.143027,0.230988,0.991032,0.061224,0.118776,0.219388,0.996689,0.025592,0.077176,0.203189,0.998936,-0.008852,0.04526,0.189163,0.998789,-0.038223,0.030969,0.178941,0.996131,-0.074415,0.046741,0.169039,0.993258,-0.095387,0.065885,0.158279,0.988552,-0.119922,0.091559,0.150583,0.974009,-0.158408,0.161905,0.143516,0.95612,-0.19679,0.217045,0.139253,0.934794,-0.239003,0.26275,0.132328,0.912906,-0.273505,0.302981,0.125468,0.889586,-0.29748,0.346616,0.120163,0.862729,-0.307123,0.401713,0.113507,0.840458,-0.295084,0.454484,0.108335,0.817565,-0.243645,0.521752,0.103817,0.780356,-0.181266,0.598487,0.103865,0.722861,-0.124082,0.679761,0.105227,0.644803,-0.065736,0.761517,0.11268,0.564291,0.017586,0.825389,0.122952,0.50511,0.110594,0.85594,0.136607,0.443797,0.179661,0.877933,0.152326,0.391865,0.230331,0.890724,0.167732,0.353612,0.276919,0.893462,0.182168,0.306009,0.314198,0.898687,0.195536,0.281785,0.34688,0.894579,0.205984,0.251493,0.369405,0.89459,0.217187,0.210405,0.381148,0.900253,0.221427,0.176455,0.375739,0.909772,0.220145,0.147286,0.373889,0.915704,0.216868,0.107186,0.38568,0.916385,0.211587,0.069283,0.398752,0.914438,0.208106,0.024577,0.416555,0.908778,0.204402,-0.024772,0.431169,0.901931,0.200952,-0.082353,0.443738,0.892365,0.192017,-0.16339,0.459271,0.87314,0.182644,-0.246704,0.464414,0.850563,0.17252,-0.32444,0.468819,0.821552,0.165418,-0.422256,0.456835,0.782944,0.162599,-0.500135,0.457574,0.735181,0.163944,-0.574478,0.446227,0.68619,0.169861,-0.647742,0.417049,0.637574,0.175622,-0.691417,0.397077,0.603549,0.182937,-0.725836,0.371095,0.579182,0.188207,-0.74194,0.354833,0.568875,0.198506,-0.737256,0.350996,0.577283,0.20598,-0.697792,0.3612,0.618564,0.211411,-0.632453,0.392867,0.667577,0.214628,-0.540256,0.438251,0.718373,0.216348,-0.419603,0.503275,0.755413,0.213229,-0.24569,0.568839,0.784894,0.207732,-0.009492,0.613982,0.789263,0.206486,0.224085,0.600837,0.76732,0.218841,0.359047,0.554085,0.751049,0.238156,0.41752,0.517279,0.747061,0.244628,0.429931,0.509494,0.745369,0.234429,0.421399,0.509966,0.749905,0.213357,0.385589,0.511231,0.768091,0.185253,0.316398,0.500401,0.80591,0.154241,0.188153,0.449109,0.873441,0.124093,-0.034352,0.330513,0.943176,0.099699,-0.331086,0.130909,0.934476,0.088333,-0.574222,-0.082977,0.814484,0.089588,-0.701281,-0.224052,0.676761,0.098631,-0.747522,-0.283611,0.600647,0.106816,-0.742471,-0.295227,0.601314,0.11291,-0.705274,-0.276652,0.652727,0.116725,-0.626679,-0.2548,0.736445,0.118962,-0.503311,-0.232493,0.832241,0.122212,-0.360868,-0.185731,0.913936,0.127278,-0.19414,-0.139887,0.970949,0.133869,-0.009788,-0.065986,0.997773,0.143934,0.141374,-0.013204,0.989868,0.15962,0.267398,0.02303,0.963311,0.178666,0.37714,0.063476,0.923979,0.198443,0.46553,0.088986,0.880547,0.221803,0.532577,0.099629,0.840497,0.240923,0.580099,0.115293,0.806346,0.25871,0.609914,0.113986,0.784227,0.273425,0.592698,0.129117,0.795008,0.278645,0.580932,0.140469,0.80174,0.280369,0.570699,0.151092,0.80714,0.276148,0.571104,0.15928,0.805277,0.265838,0.595099,0.137559,0.791792,0.254271,0.651261,0.10683,0.751296,0.241743,0.713534,0.091956,0.694559,0.229684,0.767491,0.066642,0.637586,0.224668,0.804914,0.02895,0.592685,0.22121,0.835652,-0.013219,0.5491,0.214569,0.856097,-0.07167,0.511821,0.200843,0.872994,-0.172547,0.45619,0.185356,0.874184,-0.28502,0.393148,0.169025,0.864503,-0.381397,0.327369,0.153562,0.849178,-0.459132,0.260949,0.134917,0.82042,-0.544194,0.175395,0.116615,0.766617,-0.638449,0.068421,0.096743,0.656788,-0.747142,-0.102021,0.084076,0.483888,-0.835899,-0.259086,0.080771,0.277553,-0.879952,-0.385551,0.086583,0.106456,-0.872786,-0.476352,0.093906,-0.050231,-0.836729,-0.545308,0.106597,-0.15497,-0.80023,-0.579324,0.115917,-0.243557,-0.76722,-0.593341,0.122824,-0.303771,-0.731469,-0.610472,0.130397,-0.361844,-0.704785,-0.610203,0.135998,-0.432192,-0.684295,-0.587325,0.138562,-0.516892,-0.653257,-0.553243,0.142089,-0.588794,-0.621981,-0.516199,0.145781,-0.657091,-0.59325,-0.465066,0.150738,-0.713844,-0.565212,-0.413475,0.157476,-0.752739,-0.541796,-0.373952,0.164428,-0.796261,-0.505532,-0.332273,0.170818,-0.833893,-0.466374,-0.295158,0.17845,-0.865616,-0.430102,-0.256361,0.186462,-0.894851,-0.38601,-0.224137,0.195012,-0.924432,-0.332905,-0.186009,0.202566,-0.946706,-0.286949,-0.146314,0.208773,-0.964403,-0.24418,-0.101506,0.215842,-0.976784,-0.205484,-0.060578,0.223294,-0.984471,-0.175513,-0.003505,0.230318,-0.985937,-0.157453,0.055999,0.236035,-0.983822,-0.131654,0.121498,0.240394,-0.977516,-0.099852,0.185722,0.241615,-0.965198,-0.05422,0.255838,0.238986,-0.945872,-0.009969,0.324387,0.229374,-0.914082,0.053598,0.401972,0.213703,-0.853975,0.138449,0.501556,0.191116,-0.717207,0.294997,0.63134,0.163106,-0.407072,0.519091,0.751556,0.139593,0.120394,0.702839,0.701087,0.146106,0.505359,0.699746,0.504943,0.196176,0.659473,0.656842,0.365588,0.257041,0.725053,0.620409,0.298983,0.294064,0.764214,0.589601,0.261433,0.301394,0.797874,0.553749,0.238242,0.28791,0.833366,0.51094,0.210813,0.258462,0.873306,0.459299,0.162421,0.222809,0.917387,0.386689,0.094196,0.182661,0.962027,0.269034,0.0461,0.144525,0.99084,0.131704,0.02985,0.108198,0.996907,-0.041061,0.067009,0.076035,0.930076,-0.275235,0.243321,0.046846,0.483144,-0.562131,0.671253,0.030462,-0.328883,-0.477311,0.814869,0.036683,-0.534365,-0.327801,0.779103,0.052659,-0.554507,-0.247355,0.794567,0.068111,-0.517461,-0.22565,0.825419,0.082089,-0.457299,-0.201399,0.866208,0.094705,-0.35849,-0.19174,0.913631,0.103271,-0.226651,-0.141041,0.96371,0.115014,-0.056672,-0.057232,0.996751,0.129545,0.097017,0.022256,0.995034,0.149898,0.213158,0.08653,0.973179,0.175133,0.291224,0.117823,0.949372,0.206093,0.349671,0.128099,0.928074,0.239192,0.402669,0.124066,0.906899,0.275668,0.444701,0.135297,0.885402,0.31077,0.468524,0.161042,0.868649,0.338529,0.47596,0.184671,0.85986,0.356317,0.48183,0.196389,0.853974,0.36215,0.486704,0.186699,0.853383,0.356551,0.500009,0.166405,0.849883,0.345453,0.522875,0.125279,0.843153,0.332543,0.575798,0.080892,0.81358,0.319067,0.643374,0.051587,0.763812,0.302392,0.716812,0.028664,0.696677,0.284568,0.794773,0.017527,0.606653,0.269547,0.85944,-0.004864,0.511214,0.251776,0.902365,-0.047249,0.428375,0.235326,0.927449,-0.108239,0.357942,0.220859,0.938008,-0.182943,0.294401,0.207496,0.935254,-0.264013,0.23579,0.195738,0.917945,-0.348347,0.189821,0.183384,0.893687,-0.429765,0.128937,0.170193,0.863426,-0.500044,0.066727,0.156534,0.827987,-0.560486,0.017092,0.142134,0.788365,-0.614183,-0.035493,0.129289,0.725216,-0.682978,-0.0872,0.117147,0.654278,-0.743408,-0.138798,0.108116,0.546729,-0.816321,-0.186301,0.099399,0.43564,-0.869835,-0.231527,0.095538,0.331526,-0.911647,-0.242878,0.0955,0.191105,-0.915699,-0.353517,0.09825,0.091419,-0.8953,-0.435983,0.099663,-0.030451,-0.877077,-0.479384,0.099245,-0.142375,-0.857484,-0.494419,0.09523,-0.261721,-0.826343,-0.498657,0.090673,-0.362669,-0.784217,-0.503463,0.085071,-0.458103,-0.741408,-0.490362,0.08259,-0.573563,-0.700749,-0.424236,0.08465,-0.652193,-0.654738,-0.382051,0.089742,-0.712085,-0.620026,-0.329396,0.097815,-0.754965,-0.58632,-0.293695,0.109011,-0.780972,-0.559407,-0.277753,0.120221,-0.803248,-0.53143,-0.269025,0.131439,-0.826755,-0.518609,-0.217996,0.141037,-0.848278,-0.496727,-0.183542,0.152247,-0.862349,-0.480495,-0.159623,0.162856,-0.869799,-0.473312,-0.139372,0.175332,-0.885362,-0.447774,-0.125028,0.18628,-0.895284,-0.433815,-0.101348,0.197905,-0.903805,-0.41988,-0.082685,0.206561,-0.9139,-0.400708,-0.064954,0.212557,-0.924993,-0.377655,-0.042017,0.217825,-0.933955,-0.357081,-0.014872,0.221937,-0.938513,-0.34451,0.022487,0.224924,-0.944285,-0.321827,0.068949,0.227017,-0.944389,-0.303203,0.127273,0.226822,-0.941064,-0.278044,0.192587,0.226927,-0.932212,-0.236496,0.273952,0.22482,-0.913565,-0.179281,0.365045,0.224974,-0.883788,-0.116697,0.453101,0.224992,-0.847237,-0.045783,0.529238,0.226127,-0.795856,0.022429,0.60507,0.225375,-0.735321,0.100018,0.670298,0.220682,-0.66003,0.171325,0.731443,0.214514,-0.568764,0.253506,0.782459,0.206278,-0.445712,0.348752,0.824447,0.193837]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightAnkleEnd",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_Chest",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_Chest2",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[-0.048364,0.174889,0.9834,0.078102,-0.041772,0.187799,0.981319,0.079633,-0.027983,0.18124,0.983041,0.082174,-0.020742,0.162835,0.986435,0.083206,-0.020742,0.162835,0.986435,0.083206,-0.037407,0.174617,0.983926,0.082686,-0.037407,0.174617,0.983926,0.082686,-0.044886,0.193168,0.980138,0.081682,-0.102775,0.18106,0.978087,0.079137,-0.155083,0.18105,0.971169,0.078334,-0.190986,0.154737,0.96932,0.079378,-0.226831,0.140161,0.963796,0.078483,-0.273507,0.119353,0.954436,0.078865,-0.301817,0.085538,0.949521,0.07957,-0.311846,0.073512,0.947285,0.080836,-0.317529,0.055279,0.946636,0.083358,-0.317888,0.029194,0.947679,0.084164,-0.325761,0.023782,0.945153,0.08642,-0.316195,0.016556,0.94855,0.090267,-0.346971,0.027777,0.937464,0.092805,-0.372873,0.049653,0.926553,0.093995,-0.388896,0.04565,0.92015,0.097235,-0.428172,0.044802,0.902586,0.098727,-0.47871,0.052887,0.876379,0.100397,-0.549771,0.07379,0.83205,0.101374,-0.623966,0.062336,0.778961,0.098988,-0.691184,0.0846,0.71771,0.094468,-0.727223,0.109154,0.677666,0.085852,-0.745107,0.164408,0.646363,0.080544,-0.748235,0.213839,0.628026,0.077741,-0.765707,0.221501,0.603847,0.074936,-0.774284,0.209044,0.597315,0.075488,-0.766212,0.210228,0.607227,0.075273,-0.757388,0.18153,0.627224,0.07563,-0.74459,0.150921,0.650238,0.076054,-0.719496,0.139474,0.680347,0.075079,-0.695791,0.119434,0.708244,0.072352,-0.669717,0.09919,0.735963,0.067911,-0.658879,0.068222,0.749149,0.065535,-0.629182,0.045733,0.775911,0.062754,-0.624161,0.02326,0.780949,0.059585,-0.655892,-0.010402,0.754783,0.056411,-0.677429,-0.004277,0.735576,0.052614,-0.642128,0.009136,0.766543,0.051929,-0.640982,0.017087,0.767365,0.051301,-0.624811,0.040707,0.779714,0.052618,-0.56842,0.073001,0.819494,0.052387,-0.525963,0.131191,0.840328,0.051782,-0.494709,0.213956,0.84231,0.049388,-0.462804,0.254125,0.849254,0.048091,-0.423411,0.233392,0.875358,0.049252,-0.450377,0.236163,0.861039,0.049058,-0.471417,0.212051,0.856038,0.052478,-0.472236,0.182921,0.862284,0.058767,-0.495147,0.161428,0.853681,0.062311,-0.469531,0.110078,0.876027,0.066186,-0.479709,0.073254,0.874364,0.070014,-0.489651,0.060058,0.869848,0.073937,-0.54768,0.033416,0.83602,0.080018,-0.579532,-0.006292,0.814925,0.086841,-0.623986,-0.038875,0.780468,0.09332,-0.636907,-0.045667,0.769587,0.099761,-0.65457,-0.054943,0.754002,0.106662,-0.665525,-0.067675,0.743301,0.112735,-0.659154,-0.078486,0.747901,0.119785,-0.669794,-0.112875,0.733918,0.126553,-0.671878,-0.117711,0.731248,0.132046,-0.663161,-0.116966,0.739281,0.13634,-0.648031,-0.119319,0.752209,0.139443,-0.621186,-0.11722,0.774846,0.143031,-0.593038,-0.113421,0.797146,0.145323,-0.560896,-0.113096,0.820125,0.14695,-0.528312,-0.117264,0.840913,0.143096,-0.502906,-0.12464,0.855307,0.138688,-0.488046,-0.149428,0.859932,0.136126,-0.473336,-0.171101,0.864105,0.131459,-0.464196,-0.183756,0.866462,0.126332,-0.456167,-0.186392,0.870155,0.124705,-0.457973,-0.201569,0.865812,0.123747,-0.472793,-0.201008,0.857941,0.122709,-0.491482,-0.181952,0.851668,0.121817,-0.49737,-0.178987,0.848874,0.120996,-0.511193,-0.172784,0.841919,0.117949,-0.509975,-0.160043,0.84517,0.114035,-0.49367,-0.139132,0.858447,0.109733,-0.487301,-0.114369,0.865712,0.104239,-0.47535,-0.094743,0.874681,0.097671,-0.47468,-0.090998,0.875442,0.091253,-0.486137,-0.07218,0.870897,0.083817,-0.455653,-0.060813,0.888078,0.077925,-0.451294,-0.028567,0.891918,0.073168,-0.444726,-0.003482,0.89566,0.070604,-0.437336,0.00673,0.899273,0.067806,-0.432565,0.037963,0.900803,0.067686,-0.376582,0.061281,0.924354,0.066312,-0.305618,0.086566,0.948211,0.067439,-0.262894,0.121863,0.957098,0.068586,-0.205859,0.135063,0.969216,0.070523,-0.129052,0.127306,0.983432,0.071483,-0.066855,0.146508,0.986948,0.073289,-0.018946,0.149544,0.988574,0.074165,0.035153,0.132405,0.990572,0.076298,0.074271,0.130926,0.988606,0.077193,0.088839,0.122692,0.988461,0.080155,0.097937,0.115089,0.988515,0.083409,0.100899,0.125424,0.986959,0.085499,0.096392,0.10115,0.990191,0.086619,0.063885,0.118584,0.990887,0.089562,0.057102,0.134114,0.989319,0.091401,0.028366,0.130764,0.991008,0.092351,-0.006351,0.143635,0.98961,0.092292,-0.049218,0.170325,0.984158,0.09464,-0.106557,0.171637,0.979381,0.097257,-0.191328,0.183019,0.964312,0.100743,-0.271796,0.198287,0.941706,0.101317,-0.35659,0.182635,0.916236,0.100357,-0.427837,0.167778,0.888147,0.100459,-0.49557,0.16094,0.853527,0.101595,-0.528259,0.153154,0.835157,0.104557,-0.567217,0.128728,0.813446,0.10993,-0.602851,0.128636,0.787416,0.118185,-0.636561,0.10714,0.763748,0.125692,-0.662453,0.117699,0.739799,0.132346,-0.686556,0.122079,0.716755,0.1363,-0.712233,0.130591,0.689689,0.137188,-0.727266,0.138196,0.672299,0.136543,-0.722359,0.138524,0.677501,0.135828,-0.719534,0.137389,0.680732,0.131995,-0.718647,0.141722,0.68078,0.131059,-0.711678,0.146951,0.686964,0.133653,-0.703229,0.146422,0.695722,0.135684,-0.698358,0.14684,0.700524,0.135437,-0.69269,0.137981,0.707913,0.136485,-0.687102,0.125378,0.715662,0.136195,-0.673154,0.120404,0.729634,0.132517,-0.657129,0.119293,0.744279,0.128411,-0.633996,0.099102,0.76696,0.125405,-0.607498,0.073127,0.790948,0.121305,-0.567278,0.047271,0.822169,0.11583,-0.531483,0.010848,0.846999,0.113566,-0.485119,-0.038521,0.873599,0.11306,-0.478486,-0.094559,0.872989,0.110631,-0.473619,-0.14514,0.868688,0.109657,-0.478349,-0.22064,0.85,0.108561,-0.473438,-0.292314,0.830908,0.107057,-0.476795,-0.358198,0.802721,0.108105,-0.478033,-0.398966,0.782502,0.110482,-0.474686,-0.444455,0.759693,0.111475,-0.459114,-0.473086,0.751934,0.113041,-0.446784,-0.492213,0.747068,0.115149,-0.431725,-0.505614,0.746973,0.118185,-0.439628,-0.506915,0.741461,0.122173,-0.443143,-0.505506,0.740329,0.129123,-0.445416,-0.493997,0.746707,0.136221,-0.43961,-0.482209,0.757771,0.143504,-0.429508,-0.468037,0.772311,0.150448,-0.413536,-0.452703,0.789967,0.159216,-0.411284,-0.42864,0.804433,0.168398,-0.400909,-0.410047,0.819227,0.175875,-0.393901,-0.400704,0.827211,0.182909,-0.393846,-0.387363,0.833568,0.188921,-0.409922,-0.37863,0.829821,0.191417,-0.420485,-0.362742,0.831631,0.19182,-0.420665,-0.36027,0.832614,0.189868,-0.426827,-0.353644,0.832319,0.188873,-0.428429,-0.356086,0.830453,0.18407,-0.438648,-0.353715,0.82612,0.178892,-0.440947,-0.356303,0.82378,0.174104,-0.440522,-0.364496,0.820417,0.16841,-0.445359,-0.360348,0.819637,0.161293,-0.45493,-0.359449,0.814761,0.155995,-0.465764,-0.374404,0.801802,0.149656,-0.47208,-0.388878,0.791147,0.144683,-0.47998,-0.39583,0.782903,0.138906,-0.48497,-0.39552,0.77998,0.134885,-0.48398,-0.410561,0.772789,0.13008,-0.486077,-0.416392,0.76834,0.126692,-0.471985,-0.409957,0.780491,0.122361,-0.458905,-0.412339,0.787008,0.117975,-0.437719,-0.403722,0.803375,0.115931,-0.422119,-0.396643,0.815163,0.114975,-0.4061,-0.389282,0.826766,0.114054,-0.363538,-0.385434,0.848105,0.112889,-0.330295,-0.380663,0.863714,0.110823,-0.306551,-0.361428,0.880566,0.11264,-0.288509,-0.334419,0.897177,0.115414,-0.291499,-0.307091,0.905938,0.119797,-0.291203,-0.280786,0.914527,0.123426,-0.309648,-0.262547,0.913886,0.128486,-0.319514,-0.235309,0.9179,0.132995,-0.315216,-0.210648,0.925347,0.136338,-0.328006,-0.184199,0.926543,0.140239,-0.333465,-0.165781,0.928072,0.139895,-0.365319,-0.141516,0.920063,0.138207,-0.397443,-0.13476,0.907678,0.137353,-0.431121,-0.137121,0.891814,0.135914,-0.467233,-0.132992,0.874075,0.1358,-0.497668,-0.125029,0.858309,0.134975,-0.52253,-0.133977,0.842029,0.134396,-0.549593,-0.126509,0.825798,0.134382,-0.581737,-0.109418,0.805984,0.134557,-0.604396,-0.092295,0.79132,0.132564,-0.603805,-0.091886,0.791819,0.127868,-0.591935,-0.10687,0.798869,0.124483,-0.596959,-0.130481,0.79159,0.118371,-0.590457,-0.140226,0.794794,0.115163,-0.571973,-0.154821,0.805529,0.115426,-0.545748,-0.171891,0.82013,0.117807,-0.516403,-0.175904,0.838085,0.122802,-0.486708,-0.180153,0.854787,0.12519,-0.457609,-0.183934,0.869921,0.127716,-0.433805,-0.204293,0.877541,0.128993,-0.415955,-0.20281,0.886482,0.132679,-0.39201,-0.223959,0.892284,0.135247,-0.372733,-0.246736,0.894534,0.138012,-0.349353,-0.262118,0.899581,0.138241,-0.325771,-0.277198,0.9039,0.138596,-0.286665,-0.30442,0.908379,0.138614,-0.244342,-0.326982,0.912896,0.137275,-0.214236,-0.353488,0.910576,0.135647,-0.176322,-0.367992,0.912958,0.138667,-0.150421,-0.393828,0.906793,0.141501,-0.153865,-0.420876,0.893974,0.143942,-0.165653,-0.449331,0.877873,0.149047,-0.182225,-0.471426,0.862874,0.152642,-0.200405,-0.489838,0.848467,0.157713,-0.224288,-0.489693,0.842553,0.162098,-0.258128,-0.48509,0.835498,0.166722,-0.293945,-0.474994,0.829444,0.170015,-0.315315,-0.467398,0.825903,0.174012,-0.329028,-0.465608,0.821553,0.178171,-0.340412,-0.47642,0.810644,0.180552,-0.347372,-0.486609,0.801589,0.186039,-0.355167,-0.497098,0.791675,0.19333,-0.355159,-0.509903,0.783493,0.198072,-0.354061,-0.515376,0.780403,0.203783,-0.345429,-0.519353,0.781634,0.204637,-0.336658,-0.51658,0.787278,0.20734,-0.312522,-0.509717,0.801573,0.206669,-0.281391,-0.501398,0.81818,0.201804,-0.257142,-0.495678,0.829567,0.195464,-0.244736,-0.480108,0.842378,0.189592,-0.244637,-0.481241,0.84176,0.185152,-0.233643,-0.473369,0.849313,0.181432,-0.213041,-0.474429,0.854126,0.17552,-0.181942,-0.478872,0.858824,0.170523,-0.157415,-0.479271,0.863435,0.166231,-0.132297,-0.463842,0.875984,0.162067,-0.129882,-0.449011,0.884036,0.155923,-0.134517,-0.435467,0.890098,0.150516,-0.152312,-0.426321,0.891657,0.144899,-0.169719,-0.414658,0.89401,0.139938,-0.20044,-0.417701,0.8862,0.135953,-0.204796,-0.419957,0.884135,0.132466,-0.219773,-0.417264,0.881811,0.129621,-0.24599,-0.426664,0.870314,0.12398,-0.257771,-0.430494,0.865002,0.121568,-0.28029,-0.426391,0.860017,0.116809,-0.283821,-0.413871,0.86496,0.113832,-0.292793,-0.414183,0.861815,0.110316,-0.294721,-0.401834,0.866989,0.106974,-0.282901,-0.384932,0.878518,0.105327,-0.235677,-0.376193,0.896066,0.100961,-0.208011,-0.362737,0.908379,0.098328,-0.170111,-0.356639,0.918624,0.097333,-0.165131,-0.362124,0.917386,0.09747,-0.188674,-0.332836,0.923917,0.09994,-0.232414,-0.315634,0.919978,0.103633,-0.288967,-0.294112,0.911041,0.10811,-0.342232,-0.273263,0.899002,0.11391,-0.391636,-0.257206,0.88344,0.119572,-0.430582,-0.253813,0.866128,0.123833,-0.462299,-0.243714,0.852574,0.12503,-0.489331,-0.246533,0.836527,0.127042,-0.501111,-0.246756,0.829457,0.126871,-0.517619,-0.253253,0.817272,0.124502,-0.52827,-0.279433,0.801778,0.120765,-0.547659,-0.278826,0.788876,0.118612,-0.581601,-0.285225,0.761831,0.119424,-0.604895,-0.286126,0.743125,0.122083,-0.63657,-0.284619,0.716778,0.123753,-0.67083,-0.269515,0.690904,0.125036,-0.698511,-0.267463,0.663737,0.127172,-0.720707,-0.270462,0.638304,0.128156,-0.749989,-0.265648,0.605762,0.12976,-0.7709,-0.275676,0.574209,0.128504]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftCollar",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftShoulder",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.143927,-0.953293,-0.265552,0.213214,0.140999,-0.954578,-0.262487,0.215034,0.139741,-0.951542,-0.273934,0.219707,0.142883,-0.950991,-0.274227,0.223198,0.141894,-0.952702,-0.268746,0.229057,0.147168,-0.953638,-0.262519,0.233579,0.152467,-0.952882,-0.26224,0.23501,0.159929,-0.953489,-0.255501,0.237491,0.181539,-0.95277,-0.243462,0.239518,0.204614,-0.948851,-0.240446,0.241471,0.217544,-0.944484,-0.246221,0.241369,0.230395,-0.942822,-0.240842,0.242136,0.239734,-0.940861,-0.239393,0.243285,0.24872,-0.937605,-0.242973,0.241681,0.253634,-0.937244,-0.239256,0.242307,0.26701,-0.933008,-0.24125,0.241445,0.270572,-0.931668,-0.242459,0.241517,0.275785,-0.930161,-0.242371,0.239951,0.26401,-0.933973,-0.240816,0.239655,0.261773,-0.936714,-0.232467,0.236649,0.25936,-0.939462,-0.223926,0.233651,0.26349,-0.938296,-0.223996,0.229398,0.27992,-0.936533,-0.21107,0.221947,0.29721,-0.934244,-0.197114,0.214589,0.324569,-0.929179,-0.176863,0.207725,0.350475,-0.925385,-0.144323,0.199868,0.364984,-0.926292,-0.093645,0.194098,0.370434,-0.928164,-0.035925,0.189075,0.368381,-0.929602,0.011641,0.186418,0.371698,-0.927528,0.039153,0.184964,0.371202,-0.926337,0.064097,0.182076,0.36817,-0.926802,0.074083,0.180247,0.350894,-0.93344,0.074591,0.180934,0.332527,-0.941077,0.061646,0.185121,0.314158,-0.947392,0.061265,0.193325,0.299198,-0.952655,0.054127,0.202541,0.278633,-0.958784,0.055652,0.211849,0.263622,-0.962627,0.062066,0.220436,0.260572,-0.962218,0.078981,0.229376,0.261979,-0.96022,0.096671,0.235797,0.263356,-0.958806,0.106466,0.240674,0.261522,-0.957373,0.122649,0.241635,0.262174,-0.955388,0.136013,0.24256,0.259734,-0.955662,0.138736,0.239467,0.26605,-0.952985,0.145043,0.232129,0.269938,-0.951655,0.14658,0.224654,0.266528,-0.953637,0.139787,0.216589,0.263998,-0.954667,0.137533,0.210114,0.262741,-0.95541,0.134752,0.206271,0.220562,-0.966082,0.134309,0.200387,0.172444,-0.978397,0.114026,0.195833,0.127841,-0.986504,0.102305,0.194919,0.09088,-0.992441,0.082468,0.195809,0.087116,-0.994567,0.05699,0.19967,0.083965,-0.99575,0.037854,0.206119,0.062943,-0.997936,0.01273,0.211528,0.053811,-0.99852,-0.007893,0.216895,0.05418,-0.99815,-0.027588,0.222522,0.064973,-0.99658,-0.051058,0.226701,0.081088,-0.993952,-0.074058,0.231174,0.093939,-0.991197,-0.093295,0.235182,0.094335,-0.988133,-0.12122,0.241259,0.101454,-0.984183,-0.145226,0.24533,0.103609,-0.981023,-0.163886,0.248775,0.111099,-0.975323,-0.190793,0.249812,0.116684,-0.970845,-0.20939,0.246091,0.11738,-0.967003,-0.226114,0.242836,0.112319,-0.962402,-0.247321,0.238502,0.108,-0.956303,-0.271701,0.231769,0.107035,-0.948811,-0.297156,0.224733,0.111852,-0.939088,-0.324967,0.217685,0.110665,-0.930261,-0.34981,0.2155,0.102989,-0.931601,-0.348588,0.217674,0.092899,-0.939037,-0.331028,0.224087,0.079699,-0.943733,-0.32096,0.237118,0.0651,-0.950631,-0.303418,0.250426,0.044579,-0.957318,-0.285579,0.261726,0.027722,-0.961433,-0.273639,0.272641,0.012716,-0.963941,-0.265814,0.279991,-0.00391,-0.965922,-0.258803,0.285217,-0.021385,-0.966319,-0.256456,0.287413,-0.040302,-0.966576,-0.253192,0.285861,-0.060485,-0.966164,-0.250737,0.282916,-0.078625,-0.965981,-0.246372,0.278599,-0.105615,-0.964459,-0.242206,0.277591,-0.129018,-0.963208,-0.235763,0.276265,-0.146713,-0.962261,-0.229194,0.277755,-0.16354,-0.960456,-0.225342,0.2795,-0.170453,-0.962433,-0.211348,0.283591,-0.180104,-0.962584,-0.202469,0.286776,-0.181483,-0.963801,-0.195325,0.288599,-0.179138,-0.965201,-0.190517,0.289722,-0.182223,-0.964899,-0.189114,0.287212,-0.18158,-0.964842,-0.190024,0.284001,-0.185423,-0.963145,-0.194859,0.283178,-0.185914,-0.962227,-0.198883,0.280635,-0.185238,-0.962131,-0.199976,0.277441,-0.184014,-0.961535,-0.203934,0.274369,-0.183162,-0.961525,-0.204746,0.270243,-0.174852,-0.963449,-0.202962,0.266418,-0.17006,-0.964513,-0.201978,0.264328,-0.162379,-0.964802,-0.20686,0.262247,-0.150544,-0.965291,-0.213422,0.260658,-0.137262,-0.96561,-0.220808,0.25693,-0.131652,-0.963887,-0.231495,0.253846,-0.124454,-0.963815,-0.235737,0.249051,-0.116956,-0.963669,-0.240134,0.244277,-0.109841,-0.961658,-0.251293,0.241132,-0.105392,-0.958552,-0.264709,0.238724,-0.093006,-0.956673,-0.27591,0.234026,-0.081349,-0.954806,-0.28588,0.229412,-0.068784,-0.950132,-0.304167,0.226508,-0.060544,-0.942808,-0.327791,0.222822,-0.045798,-0.934652,-0.352603,0.221385,-0.029691,-0.930265,-0.365685,0.22177,-0.01175,-0.923954,-0.382323,0.220395,0.006736,-0.919736,-0.392479,0.218258,0.030757,-0.917566,-0.396392,0.21812,0.059545,-0.90938,-0.411683,0.217969,0.081152,-0.902827,-0.422276,0.216155,0.105514,-0.894527,-0.434382,0.217481,0.128433,-0.891365,-0.43471,0.21657,0.141859,-0.892829,-0.427472,0.220391,0.135768,-0.901168,-0.41166,0.224478,0.119516,-0.918572,-0.376751,0.229898,0.093251,-0.935487,-0.340836,0.234613,0.060181,-0.949995,-0.30641,0.240621,0.019673,-0.961429,-0.274349,0.244343,-0.013306,-0.968475,-0.248754,0.246678,-0.038372,-0.971237,-0.235004,0.249496,-0.071327,-0.971925,-0.22422,0.250966,-0.097879,-0.971324,-0.216678,0.255063,-0.123503,-0.970023,-0.209289,0.259352,-0.141264,-0.97019,-0.196916,0.265289,-0.15961,-0.969925,-0.183768,0.270609,-0.166449,-0.971735,-0.167409,0.282737,-0.165274,-0.973368,-0.158868,0.293032,-0.160831,-0.975585,-0.149558,0.301671,-0.155284,-0.977237,-0.14455,0.310302,-0.140992,-0.980583,-0.136303,0.319723,-0.130108,-0.982596,-0.132582,0.325237,-0.113563,-0.985453,-0.126432,0.32768,-0.101678,-0.988142,-0.115051,0.329783,-0.099509,-0.98954,-0.104448,0.333476,-0.103859,-0.990136,-0.094038,0.339527,-0.11588,-0.989322,-0.088395,0.347057,-0.137477,-0.986849,-0.085027,0.355326,-0.159094,-0.983901,-0.081411,0.362649,-0.186746,-0.979075,-0.080854,0.368053,-0.218043,-0.972665,-0.079875,0.372871,-0.251687,-0.964013,-0.085628,0.378244,-0.276506,-0.956791,-0.089971,0.38242,-0.300406,-0.948845,-0.097211,0.387225,-0.328814,-0.93825,-0.107554,0.389694,-0.35805,-0.926351,-0.116939,0.39142,-0.391847,-0.91113,-0.127667,0.387196,-0.424194,-0.893618,-0.146653,0.380428,-0.451894,-0.877181,-0.162311,0.37515,-0.471878,-0.864402,-0.173609,0.372613,-0.478775,-0.859163,-0.180591,0.372315,-0.471714,-0.861751,-0.186739,0.371322,-0.45904,-0.868793,-0.185688,0.371216,-0.444697,-0.878042,-0.176881,0.368377,-0.431981,-0.885374,-0.17177,0.363263,-0.417081,-0.893836,-0.164624,0.355529,-0.401582,-0.902685,-0.154573,0.348746,-0.377477,-0.913547,-0.15147,0.344574,-0.352562,-0.923958,-0.148328,0.340618,-0.320784,-0.93531,-0.149308,0.337473,-0.29303,-0.945171,-0.144172,0.33585,-0.258589,-0.955092,-0.144676,0.332347,-0.226983,-0.963815,-0.139784,0.328412,-0.195159,-0.969587,-0.147697,0.324059,-0.162383,-0.974548,-0.15456,0.321533,-0.128789,-0.978247,-0.162625,0.317838,-0.096936,-0.980945,-0.168378,0.310726,-0.061873,-0.980537,-0.186329,0.302732,-0.023577,-0.977623,-0.209039,0.295268,0.005861,-0.973773,-0.227446,0.289191,0.040353,-0.965313,-0.25796,0.283189,0.085181,-0.953047,-0.290597,0.27604,0.136496,-0.936257,-0.323716,0.271251,0.188622,-0.914937,-0.356807,0.267592,0.236716,-0.889736,-0.390301,0.263571,0.287244,-0.855612,-0.430604,0.260885,0.3395,-0.814581,-0.470317,0.256992,0.388857,-0.768764,-0.507733,0.255347,0.432083,-0.72214,-0.540202,0.253813,0.474066,-0.670766,-0.570381,0.251502,0.502539,-0.632671,-0.589222,0.252183,0.523318,-0.597436,-0.607625,0.254066,0.541376,-0.568936,-0.61905,0.256299,0.562055,-0.542359,-0.624452,0.258748,0.582886,-0.519577,-0.624727,0.264239,0.600472,-0.49499,-0.628028,0.267689,0.617562,-0.462203,-0.636385,0.268254,0.63425,-0.431575,-0.641459,0.268186,0.643295,-0.410323,-0.646379,0.265757,0.64956,-0.390687,-0.652254,0.26157,0.652532,-0.379079,-0.656126,0.257166,0.645796,-0.383097,-0.660443,0.254746,0.627113,-0.408171,-0.663419,0.251562,0.598971,-0.457596,-0.657145,0.250335,0.560237,-0.523058,-0.642296,0.249998,0.513682,-0.606354,-0.607014,0.24928,0.444171,-0.690032,-0.571461,0.252494,0.367128,-0.76211,-0.533297,0.25656,0.295977,-0.815856,-0.496766,0.259253,0.223927,-0.858364,-0.461593,0.263213,0.154956,-0.891839,-0.424984,0.263773,0.09032,-0.915916,-0.391075,0.264539,0.03,-0.932281,-0.36049,0.262304,-0.019642,-0.944173,-0.328863,0.261116,-0.069587,-0.952656,-0.295979,0.260869,-0.111143,-0.959207,-0.259942,0.260152,-0.147809,-0.963645,-0.222577,0.261381,-0.176529,-0.967622,-0.180405,0.264789,-0.208731,-0.967011,-0.146017,0.270017,-0.239299,-0.964366,-0.112849,0.275838,-0.260857,-0.961146,-0.090289,0.283804,-0.278371,-0.957254,-0.078584,0.290627,-0.291697,-0.953531,-0.075444,0.296928,-0.288322,-0.953879,-0.083582,0.303509,-0.284868,-0.952644,-0.106394,0.306421,-0.279939,-0.951724,-0.125917,0.309999,-0.274274,-0.949128,-0.154692,0.311774,-0.258783,-0.948344,-0.183506,0.31371,-0.241447,-0.945424,-0.218808,0.312805,-0.223633,-0.9418,-0.250999,0.311291,-0.209802,-0.936657,-0.280458,0.309867,-0.190537,-0.930639,-0.312422,0.308265,-0.160979,-0.927064,-0.338583,0.309444,-0.130774,-0.923507,-0.360602,0.313556,-0.099885,-0.917545,-0.384882,0.318329,-0.075251,-0.910834,-0.405856,0.320235,-0.053264,-0.898813,-0.435085,0.321504,-0.029834,-0.884994,-0.464646,0.31753,-0.003619,-0.864526,-0.502576,0.311214,0.019321,-0.848621,-0.528648,0.306001,0.043371,-0.835455,-0.547846,0.300729,0.074023,-0.830664,-0.551831,0.299769,0.105329,-0.827017,-0.552221,0.301558,0.126918,-0.82958,-0.543773,0.304114,0.152308,-0.8334,-0.531269,0.306021,0.176676,-0.837319,-0.51738,0.303744,0.193352,-0.840783,-0.505667,0.298735,0.215337,-0.838675,-0.500253,0.292096,0.232292,-0.833438,-0.501419,0.283409,0.250134,-0.827513,-0.502648,0.274808,0.260712,-0.827189,-0.497783,0.268018,0.268762,-0.826547,-0.494558,0.261818,0.272008,-0.829069,-0.488525,0.258915,0.283446,-0.829627,-0.481017,0.255566,0.29064,-0.833644,-0.469644,0.254399,0.293806,-0.83721,-0.461256,0.254923,0.29164,-0.845117,-0.448022,0.252475,0.284917,-0.84735,-0.448129,0.251457,0.278811,-0.852328,-0.442495,0.250514,0.265575,-0.853814,-0.447741,0.247712,0.255917,-0.85531,-0.450501,0.243405,0.240205,-0.861306,-0.44772,0.24039,0.227247,-0.865782,-0.445847,0.240115,0.201563,-0.876387,-0.4374,0.240755,0.187286,-0.879869,-0.436755,0.242822,0.164691,-0.881547,-0.442439,0.24548,0.152005,-0.879163,-0.451626,0.248967,0.149324,-0.872729,-0.464808,0.251569,0.15188,-0.863284,-0.481324,0.251371,0.161074,-0.857423,-0.488755,0.247669,0.170636,-0.844904,-0.506972,0.243583,0.186792,-0.838382,-0.512079,0.239234,0.202529,-0.827906,-0.523024,0.234971,0.207195,-0.827366,-0.522049,0.232294,0.211977,-0.826803,-0.52102,0.229626,0.198857,-0.829892,-0.521283,0.229165,0.190315,-0.836461,-0.513919,0.229094,0.182526,-0.844388,-0.503679,0.230451,0.174424,-0.851058,-0.495254,0.231408,0.176605,-0.8487,-0.498516,0.231366,0.181126,-0.84853,-0.497182,0.228685,0.17453,-0.849512,-0.497865,0.22506,0.174533,-0.848996,-0.498743,0.220164,0.180165,-0.848065,-0.498324,0.216704,0.174466,-0.85443,-0.489399,0.213707,0.168557,-0.865276,-0.472107,0.213575,0.154115,-0.884529,-0.440292,0.214255]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftElbow",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[-0.023489,0.963443,-0.266882,0.282057,-0.013365,0.960159,-0.279134,0.284172,-0.009374,0.960771,-0.277185,0.286775,-0.011764,0.960876,-0.276728,0.29277,-0.009688,0.960267,-0.278914,0.299631,-0.006767,0.95887,-0.283764,0.305079,-0.007398,0.958697,-0.284333,0.308146,-0.007023,0.95685,-0.290496,0.30997,-0.007631,0.953832,-0.300243,0.31329,-0.011597,0.952652,-0.303843,0.314666,-0.012705,0.951237,-0.308198,0.316779,-0.017017,0.950338,-0.310754,0.319934,-0.016992,0.949654,-0.31284,0.323359,-0.019936,0.947195,-0.320039,0.324292,-0.017546,0.945708,-0.324544,0.3268,-0.019855,0.9434,-0.331063,0.326316,-0.014593,0.945517,-0.325245,0.326973,-0.012282,0.945777,-0.324584,0.325174,-0.005751,0.947912,-0.318481,0.326295,-0.000252,0.951199,-0.308579,0.325088,0.00071,0.954225,-0.29909,0.32399,0.000883,0.960456,-0.278432,0.32365,-0.007665,0.96491,-0.26247,0.321457,-0.01996,0.967491,-0.252118,0.318279,-0.033051,0.970257,-0.239811,0.316484,-0.050865,0.971327,-0.232241,0.313935,-0.059405,0.969924,-0.236047,0.311915,-0.061589,0.967871,-0.243786,0.311954,-0.052494,0.962305,-0.266859,0.312097,-0.041068,0.957177,-0.286576,0.313208,-0.020539,0.950444,-0.310218,0.316838,0.008645,0.94279,-0.333275,0.322207,0.031875,0.933084,-0.358244,0.331157,0.050151,0.925953,-0.374293,0.341991,0.055579,0.91786,-0.392993,0.353577,0.059774,0.909563,-0.411245,0.362117,0.062562,0.902592,-0.425927,0.366261,0.064137,0.896178,-0.439035,0.367574,0.059121,0.892468,-0.447219,0.367587,0.047895,0.889551,-0.454319,0.365228,0.036109,0.891702,-0.451181,0.361975,0.02871,0.895317,-0.444503,0.357031,0.016521,0.901457,-0.432554,0.353989,0.008452,0.911276,-0.411709,0.349251,-0.003252,0.919903,-0.392133,0.344949,-0.011522,0.928396,-0.371414,0.341051,-0.020931,0.937466,-0.347447,0.338391,-0.030702,0.94593,-0.322916,0.335984,-0.041476,0.954244,-0.296138,0.333488,-0.021558,0.962183,-0.271548,0.331461,0.002022,0.969273,-0.24598,0.331189,0.023605,0.973566,-0.227182,0.33183,0.044377,0.97508,-0.217372,0.332252,0.052196,0.977202,-0.205794,0.331924,0.057464,0.978965,-0.195769,0.333263,0.072835,0.979126,-0.189755,0.336706,0.083275,0.979489,-0.183485,0.338324,0.094814,0.978473,-0.183305,0.342182,0.11731,0.976687,-0.179781,0.345179,0.127808,0.975067,-0.18141,0.347761,0.148401,0.971235,-0.186226,0.350187,0.169376,0.967931,-0.185528,0.354074,0.184216,0.964128,-0.191108,0.356216,0.202246,0.958856,-0.199228,0.356208,0.215681,0.95369,-0.209659,0.355985,0.230471,0.948145,-0.218869,0.354455,0.245417,0.940403,-0.2354,0.354017,0.261271,0.932797,-0.248248,0.352854,0.275779,0.924445,-0.26334,0.353629,0.284128,0.916738,-0.280824,0.35606,0.29129,0.909946,-0.29521,0.357972,0.294054,0.904088,-0.310091,0.360784,0.298878,0.896872,-0.326025,0.364644,0.301819,0.889252,-0.343711,0.369216,0.307209,0.882869,-0.355197,0.373197,0.320011,0.873455,-0.366972,0.373526,0.34571,0.858159,-0.379536,0.370539,0.373405,0.841036,-0.391443,0.3666,0.394484,0.830761,-0.392707,0.360511,0.412889,0.825085,-0.38569,0.355019,0.425818,0.826055,-0.369204,0.351058,0.434113,0.832381,-0.344512,0.347619,0.434515,0.845258,-0.311023,0.345164,0.427081,0.861184,-0.275615,0.343568,0.419272,0.874901,-0.242403,0.343794,0.407255,0.887837,-0.214218,0.34215,0.401996,0.896812,-0.184737,0.340623,0.394769,0.904927,-0.158946,0.337552,0.388888,0.910212,-0.142407,0.333463,0.386877,0.912172,-0.135161,0.327425,0.383208,0.914468,-0.129998,0.319636,0.380102,0.915729,-0.13024,0.311396,0.3816,0.914621,-0.133607,0.300572,0.380997,0.913803,-0.140732,0.291289,0.379438,0.912421,-0.153345,0.285742,0.37346,0.911404,-0.172832,0.280065,0.374546,0.905993,-0.197213,0.276543,0.37387,0.901046,-0.219858,0.277237,0.367491,0.895042,-0.252685,0.275334,0.363093,0.88625,-0.28762,0.275731,0.364132,0.875574,-0.317457,0.278889,0.352818,0.868437,-0.348333,0.283458,0.344212,0.863003,-0.369789,0.288298,0.337743,0.857018,-0.389166,0.293845,0.329091,0.852523,-0.406083,0.301108,0.327508,0.845935,-0.420872,0.307395,0.326793,0.836242,-0.440348,0.313414,0.336615,0.823922,-0.455899,0.318977,0.347564,0.813328,-0.46658,0.322113,0.354934,0.802378,-0.479804,0.326356,0.365581,0.791029,-0.490533,0.330168,0.37849,0.77871,-0.500356,0.333786,0.392595,0.768928,-0.504597,0.338579,0.400595,0.765652,-0.503291,0.345319,0.405926,0.763492,-0.5023,0.352344,0.414489,0.764988,-0.492943,0.356621,0.42295,0.765362,-0.485113,0.360252,0.42347,0.768372,-0.479872,0.364251,0.422193,0.774517,-0.471038,0.3654,0.431866,0.775456,-0.460607,0.367179,0.436493,0.779351,-0.44954,0.366494,0.441397,0.782145,-0.439793,0.365142,0.443333,0.787814,-0.427557,0.364653,0.451049,0.792067,-0.411321,0.363122,0.460515,0.79462,-0.395608,0.36333,0.478466,0.789936,-0.383499,0.36139,0.500225,0.783619,-0.368398,0.361381,0.531244,0.770533,-0.352221,0.362173,0.560446,0.757864,-0.33398,0.363339,0.58622,0.749801,-0.306829,0.36206,0.607756,0.744306,-0.276841,0.363065,0.61965,0.747817,-0.238336,0.364032,0.626086,0.753337,-0.201246,0.363643,0.626876,0.761462,-0.164933,0.36174,0.625113,0.770676,-0.123657,0.356622,0.614722,0.784287,-0.083734,0.351335,0.601726,0.797535,-0.043173,0.34562,0.588793,0.808249,-0.007495,0.337834,0.568142,0.822066,0.037721,0.330589,0.539218,0.838156,0.082088,0.325646,0.498964,0.857546,0.125101,0.321514,0.45586,0.871555,0.180509,0.318464,0.410302,0.882568,0.22962,0.31917,0.377939,0.886808,0.265959,0.321513,0.36523,0.880219,0.303021,0.323132,0.378993,0.861224,0.338611,0.328348,0.409465,0.835228,0.36706,0.331808,0.445987,0.802034,0.397287,0.336525,0.489767,0.764319,0.419458,0.344052,0.531695,0.722673,0.441638,0.353762,0.562212,0.689567,0.456525,0.366363,0.582061,0.663963,0.469424,0.381716,0.594724,0.647757,0.476146,0.399905,0.608107,0.633296,0.478687,0.41968,0.62675,0.616657,0.476359,0.437827,0.648507,0.598606,0.470223,0.454691,0.672915,0.579572,0.459654,0.469378,0.701492,0.558783,0.442347,0.481207,0.727847,0.541124,0.421217,0.490405,0.753124,0.527187,0.393545,0.498737,0.775783,0.514546,0.365243,0.499444,0.79603,0.50376,0.335502,0.498257,0.815024,0.49233,0.305526,0.492488,0.829496,0.485424,0.276225,0.484206,0.838571,0.483764,0.250541,0.472271,0.844288,0.486706,0.224266,0.458758,0.843583,0.4977,0.201649,0.445177,0.84114,0.511723,0.174994,0.432457,0.834224,0.530313,0.151122,0.418149,0.829401,0.544657,0.124267,0.405828,0.822479,0.560539,0.096562,0.391254,0.814566,0.575908,0.069365,0.378241,0.803099,0.594149,0.044932,0.36473,0.788013,0.615467,0.015342,0.352458,0.768727,0.63935,-0.017033,0.339589,0.748966,0.660564,-0.052006,0.328385,0.72285,0.685235,-0.089106,0.317552,0.693182,0.709417,-0.12738,0.30914,0.656162,0.734675,-0.172348,0.305493,0.617158,0.757185,-0.21398,0.30201,0.570532,0.778302,-0.262181,0.299581,0.515489,0.801262,-0.303727,0.298456,0.456889,0.821981,-0.339999,0.301646,0.391549,0.84265,-0.369636,0.309753,0.32041,0.865676,-0.384632,0.324122,0.253036,0.883774,-0.393593,0.340929,0.20094,0.894208,-0.400019,0.357006,0.17169,0.892453,-0.417193,0.367641,0.161701,0.878512,-0.449522,0.369427,0.165118,0.855014,-0.491617,0.363515,0.175439,0.82445,-0.538056,0.355075,0.19023,0.789277,-0.583827,0.347257,0.199253,0.755697,-0.623876,0.340957,0.20741,0.729718,-0.651531,0.338431,0.215114,0.708286,-0.672351,0.339318,0.219788,0.694726,-0.684871,0.339094,0.222962,0.688655,-0.689958,0.339866,0.226383,0.690051,-0.687444,0.342083,0.228293,0.698761,-0.67795,0.344517,0.231303,0.709439,-0.665729,0.347492,0.230651,0.728359,-0.645208,0.351063,0.232552,0.748107,-0.621494,0.35284,0.23314,0.76913,-0.595051,0.35424,0.241423,0.783397,-0.572717,0.354801,0.267823,0.784277,-0.559626,0.353617,0.313404,0.778825,-0.543333,0.351977,0.371835,0.765395,-0.525271,0.34977,0.427055,0.75245,-0.501442,0.348322,0.482394,0.74397,-0.462389,0.350206,0.527739,0.742382,-0.412747,0.353391,0.559219,0.752233,-0.348454,0.359237,0.579507,0.767721,-0.273452,0.362822,0.591504,0.782155,-0.19585,0.363998,0.599269,0.792854,-0.110723,0.365426,0.605558,0.79516,-0.03195,0.364367,0.618431,0.784316,0.048903,0.361725,0.63124,0.765923,0.122055,0.359233,0.650935,0.735555,0.187731,0.357985,0.676235,0.693515,0.248482,0.356281,0.697656,0.649296,0.302805,0.360087,0.716136,0.609044,0.340904,0.361306,0.730036,0.571845,0.37422,0.364744,0.735935,0.543183,0.404169,0.367949,0.73743,0.516914,0.434738,0.372597,0.737788,0.50079,0.452635,0.376367,0.733403,0.494047,0.466945,0.380128,0.72529,0.501093,0.47208,0.383761,0.716268,0.51214,0.473997,0.385639,0.706513,0.530507,0.468403,0.383937,0.693359,0.556522,0.457752,0.381998,0.680692,0.587397,0.437748,0.37803,0.66904,0.620566,0.409002,0.37312,0.657497,0.65875,0.365712,0.368744,0.652486,0.688662,0.316239,0.365077,0.658729,0.709087,0.25154,0.358319,0.667936,0.721172,0.183773,0.352953,0.684771,0.720262,0.110955,0.345317,0.698865,0.714289,0.03714,0.33758,0.701786,0.711126,-0.042385,0.331773,0.690679,0.714122,-0.113985,0.32902,0.665413,0.725043,-0.177589,0.328297,0.633552,0.73689,-0.235805,0.328538,0.602881,0.744645,-0.286423,0.331097,0.572084,0.748867,-0.334541,0.332424,0.548494,0.745277,-0.3791,0.331079,0.535101,0.734744,-0.416914,0.326831,0.524889,0.722232,-0.450414,0.321136,0.514183,0.712926,-0.476815,0.315271,0.498116,0.711596,-0.495491,0.311404,0.479522,0.716508,-0.506631,0.312753,0.455967,0.73129,-0.507256,0.31257,0.43343,0.746208,-0.505284,0.314561,0.41329,0.759905,-0.501732,0.315013,0.390365,0.771198,-0.50286,0.312702,0.376798,0.778688,-0.501665,0.308065,0.375672,0.778557,-0.502713,0.30436,0.384325,0.780235,-0.493485,0.29987,0.387525,0.781579,-0.488833,0.295778,0.389442,0.787981,-0.476887,0.29261,0.385604,0.79971,-0.460189,0.289234,0.381105,0.811893,-0.442255,0.288492,0.37254,0.828058,-0.418968,0.289567,0.368751,0.842507,-0.392688,0.291472,0.36812,0.850844,-0.374902,0.291692,0.376601,0.855524,-0.355318,0.292248,0.385047,0.859671,-0.335714,0.29297,0.402682,0.857785,-0.319456,0.289976,0.419386,0.855445,-0.303858,0.287875,0.430277,0.850082,-0.303681,0.28769,0.431037,0.854214,-0.290733,0.289358,0.421889,0.859757,-0.287797,0.291377,0.410806,0.868358,-0.277836,0.294758,0.400222,0.875499,-0.270785,0.299583,0.392493,0.87931,-0.269746,0.30348,0.396123,0.878512,-0.267028,0.307456,0.400965,0.876184,-0.267449,0.309488,0.406783,0.875525,-0.260738,0.311544,0.418034,0.871081,-0.257809,0.312513,0.421789,0.871359,-0.250653,0.312334,0.423147,0.871784,-0.246859,0.310796,0.427976,0.873337,-0.232634,0.310004,0.422824,0.879825,-0.217088,0.306719,0.411933,0.888971,-0.200106,0.303751,0.404456,0.895929,-0.183646,0.303969,0.398172,0.90155,-0.169315,0.30574,0.391994,0.90481,-0.16631,0.308524]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_LeftWrist",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.831805,0.304275,0.464237,0.181447,0.813346,0.307261,0.494024,0.179223,0.795172,0.317991,0.516318,0.177085,0.786299,0.313708,0.53228,0.178808,0.772872,0.306125,0.555838,0.180994,0.751391,0.305068,0.585103,0.182244,0.747726,0.294508,0.595122,0.184027,0.734162,0.289128,0.614338,0.188119,0.719359,0.286385,0.632856,0.192384,0.71005,0.2823,0.645086,0.194539,0.703157,0.269748,0.657881,0.198457,0.699,0.255506,0.667919,0.202987,0.700202,0.247911,0.66952,0.204834,0.698657,0.24417,0.672502,0.208137,0.704478,0.235849,0.669393,0.210641,0.706472,0.23284,0.668343,0.211795,0.709908,0.230164,0.665624,0.209602,0.710763,0.231115,0.664381,0.20883,0.72493,0.230447,0.649131,0.205851,0.738406,0.235464,0.631913,0.201007,0.758044,0.241996,0.605646,0.196269,0.780827,0.250882,0.57216,0.190061,0.808558,0.258539,0.528576,0.185186,0.828278,0.271478,0.490159,0.181212,0.852638,0.275347,0.444063,0.17491,0.869067,0.293236,0.398415,0.169116,0.868704,0.316505,0.381021,0.162008,0.856442,0.34439,0.384581,0.156171,0.820126,0.369736,0.43668,0.152122,0.77115,0.372475,0.516323,0.150862,0.691885,0.362562,0.624375,0.156281,0.596771,0.342392,0.725695,0.167408,0.504628,0.314248,0.804114,0.186878,0.434045,0.279835,0.856328,0.20923,0.391031,0.254408,0.884518,0.233578,0.367617,0.229047,0.90133,0.255578,0.368757,0.204791,0.906686,0.273573,0.382324,0.181198,0.906088,0.286974,0.408749,0.159861,0.898537,0.293112,0.438935,0.143662,0.88696,0.295426,0.465839,0.136182,0.874327,0.292056,0.496929,0.136731,0.856952,0.28533,0.523804,0.143148,0.839725,0.274049,0.545178,0.149041,0.824966,0.258178,0.56525,0.158021,0.809643,0.241062,0.579039,0.182477,0.794617,0.223615,0.595945,0.212595,0.774372,0.204866,0.615666,0.25434,0.745833,0.188177,0.630424,0.306989,0.712968,0.174148,0.647152,0.34811,0.678243,0.161123,0.680624,0.375446,0.629119,0.15563,0.716463,0.388178,0.579653,0.152109,0.747738,0.385941,0.540313,0.151269,0.783119,0.373021,0.497574,0.151429,0.808343,0.363528,0.463064,0.155343,0.822256,0.337124,0.458523,0.157572,0.827554,0.321304,0.460345,0.16149,0.830747,0.297738,0.470331,0.165435,0.823601,0.289093,0.487961,0.166785,0.809814,0.283928,0.513406,0.169934,0.794254,0.280877,0.538766,0.171874,0.779822,0.270802,0.564397,0.17247,0.753844,0.265856,0.600866,0.173718,0.728286,0.26384,0.632446,0.172243,0.703149,0.254176,0.66406,0.17281,0.683089,0.244964,0.688028,0.173037,0.646606,0.23012,0.727286,0.17499,0.603296,0.22482,0.765173,0.179362,0.557533,0.216665,0.801382,0.186449,0.5048,0.218822,0.835041,0.193405,0.457317,0.213725,0.86324,0.202274,0.409104,0.209644,0.888079,0.210726,0.358873,0.208027,0.909909,0.219157,0.316547,0.198571,0.92756,0.227797,0.269841,0.184358,0.945091,0.234615,0.227101,0.170529,0.958825,0.239974,0.184163,0.159707,0.969834,0.241624,0.140555,0.146658,0.979151,0.239438,0.102647,0.136916,0.98525,0.23256,0.061551,0.136487,0.988728,0.22119,0.015631,0.147369,0.988958,0.205536,-0.035643,0.182354,0.982587,0.186382,-0.091701,0.232835,0.968183,0.161989,-0.169497,0.301515,0.938275,0.139788,-0.26526,0.393573,0.880192,0.1203,-0.348469,0.499336,0.793242,0.104866,-0.434096,0.579792,0.689494,0.095483,-0.486313,0.641932,0.592809,0.087378,-0.517323,0.705296,0.4847,0.080606,-0.531028,0.734606,0.422331,0.07446,-0.544722,0.765067,0.343439,0.066488,-0.532306,0.791368,0.300644,0.058925,-0.487406,0.837576,0.246783,0.0527,-0.422237,0.884623,0.197885,0.047221,-0.388861,0.894371,0.221107,0.046318,-0.333338,0.89776,0.287945,0.045555,-0.264635,0.862909,0.430531,0.045993,-0.19993,0.771016,0.604617,0.046912,-0.084252,0.663659,0.743276,0.052989,0.020506,0.531043,0.847097,0.062525,0.095786,0.404564,0.909479,0.073995,0.170297,0.302916,0.937678,0.089356,0.246758,0.233425,0.940544,0.104614,0.292879,0.193861,0.936291,0.119763,0.337107,0.15826,0.928069,0.135701,0.344259,0.123867,0.930668,0.149166,0.334487,0.101245,0.936946,0.163796,0.308188,0.082145,0.947772,0.177601,0.271703,0.079477,0.959094,0.190956,0.245151,0.070452,0.966922,0.203316,0.212384,0.060534,0.97531,0.217811,0.186571,0.065234,0.980273,0.231245,0.167969,0.061492,0.983873,0.243582,0.16419,0.053323,0.984987,0.255838,0.168309,0.045333,0.984691,0.268095,0.175096,0.044464,0.983547,0.275504,0.179232,0.046041,0.982729,0.282743,0.18212,0.043625,0.982308,0.286453,0.185806,0.0422,0.98168,0.289114,0.183203,0.040266,0.98225,0.286777,0.187363,0.036438,0.981615,0.281931,0.182966,0.033496,0.982548,0.274781,0.177135,0.030643,0.983709,0.265391,0.171058,0.033901,0.984678,0.250517,0.150153,0.033023,0.988111,0.234475,0.120092,0.033914,0.992183,0.217932,0.070614,0.038914,0.996744,0.20009,-0.009028,0.047848,0.998814,0.182972,-0.104709,0.053225,0.993078,0.167196,-0.221505,0.068551,0.972747,0.15055,-0.348083,0.0936,0.932779,0.133985,-0.486127,0.114372,0.866372,0.119418,-0.633781,0.143906,0.760008,0.105966,-0.786871,0.200526,0.58363,0.092856,-0.91578,0.254165,0.311042,0.08461,-0.946789,0.321294,-0.018994,0.081533,-0.882802,0.325981,-0.338227,0.085905,-0.755417,0.321006,-0.571227,0.095323,-0.575016,0.310452,-0.756952,0.106796,-0.344554,0.275742,-0.897357,0.121903,-0.093947,0.212968,-0.972532,0.139979,0.138734,0.150543,-0.978821,0.171561,0.317133,0.079142,-0.945073,0.211932,0.427,0.035539,-0.903553,0.254724,0.480768,0.002732,-0.876844,0.294,0.496114,-0.028228,-0.867798,0.32657,0.487429,-0.052738,-0.871569,0.349346,0.460537,-0.064396,-0.885302,0.361908,0.410429,-0.063378,-0.909687,0.367552,0.351444,-0.049461,-0.934901,0.372792,0.288966,-0.029867,-0.956873,0.379025,0.223501,-0.00085,-0.974703,0.389078,0.156787,0.024876,-0.987319,0.405167,0.088473,0.049842,-0.994831,0.421825,0.020378,0.08447,-0.996218,0.439206,-0.05304,0.110437,-0.992467,0.452888,-0.136634,0.139539,-0.980745,0.460832,-0.226489,0.168772,-0.95928,0.462396,-0.317815,0.197106,-0.927439,0.461613,-0.408826,0.216561,-0.886545,0.458529,-0.487899,0.232353,-0.841408,0.453082,-0.557866,0.238807,-0.794831,0.446532,-0.608476,0.238635,-0.756842,0.437015,-0.650428,0.234778,-0.722373,0.422642,-0.682233,0.229706,-0.694113,0.40521,-0.7055,0.226397,-0.671576,0.384576,-0.728955,0.223531,-0.647038,0.362794,-0.752624,0.220268,-0.620515,0.342232,-0.776028,0.218789,-0.591534,0.321073,-0.802559,0.215304,-0.556366,0.301297,-0.830844,0.213907,-0.513752,0.279294,-0.856041,0.211084,-0.471844,0.254819,-0.88517,0.204718,-0.41781,0.229207,-0.912754,0.199476,-0.356496,0.204074,-0.939544,0.207004,-0.272776,0.175933,-0.966966,0.192814,-0.166734,0.149798,-0.982693,0.185241,0.000895,0.123731,-0.954988,0.158635,0.250665,0.102887,-0.800693,0.111747,0.58856,0.093062,-0.508428,0.069003,0.858335,0.09825,-0.219032,0.022227,0.975464,0.119462,-0.029627,0.03089,0.999084,0.148881,0.074635,0.044096,0.996235,0.181366,0.140106,0.075474,0.987256,0.216804,0.173115,0.107062,0.979065,0.25177,0.192359,0.129388,0.972757,0.284497,0.190556,0.139865,0.971662,0.315459,0.177127,0.132023,0.975293,0.344162,0.167247,0.115299,0.97915,0.37286,0.158026,0.098946,0.982465,0.398337,0.154445,0.0784,0.984886,0.426144,0.157607,0.06417,0.985415,0.448765,0.162213,0.052356,0.985366,0.467931,0.168557,0.044245,0.984698,0.48444,0.180927,0.038137,0.982757,0.498169,0.198239,0.030893,0.979667,0.508395,0.214398,0.026703,0.976381,0.514403,0.230556,0.020676,0.972839,0.516457,0.239318,0.017986,0.970775,0.513976,0.246609,0.015859,0.968985,0.507942,0.246374,0.0133,0.969084,0.497345,0.244854,0.012987,0.969473,0.480942,0.24085,0.013431,0.970469,0.461315,0.233354,0.008808,0.972352,0.438386,0.212698,0.010069,0.977066,0.413455,0.179219,0.005692,0.983793,0.389128,0.125659,0.000112,0.992073,0.364511,0.063113,-0.010422,0.997952,0.338507,-0.010311,-0.015682,0.999824,0.309064,-0.098376,-0.01792,0.994988,0.273688,-0.209761,-0.011816,0.977681,0.233598,-0.354498,0.000545,0.935057,0.186594,-0.579606,0.034035,0.814186,0.139743,-0.875132,0.104009,0.472574,0.106563,-0.978418,0.162781,-0.127282,0.108319,-0.828533,0.180919,-0.529907,0.147195,-0.705964,0.179281,-0.685181,0.202185,-0.647502,0.179157,-0.740705,0.257716,-0.617109,0.189763,-0.763653,0.313234,-0.605718,0.195158,-0.771375,0.36448,-0.605915,0.202833,-0.769237,0.409442,-0.606768,0.21442,-0.765413,0.44821,-0.608807,0.227881,-0.759885,0.481019,-0.611131,0.245243,-0.752579,0.507627,-0.612144,0.259567,-0.74693,0.524177,-0.610098,0.27394,-0.743463,0.532058,-0.607998,0.281221,-0.742464,0.530695,-0.606464,0.290441,-0.740166,0.520687,-0.601612,0.299483,-0.740522,0.502203,-0.593907,0.307744,-0.743349,0.474538,-0.59037,0.316895,-0.742321,0.439384,-0.590485,0.325917,-0.738312,0.398842,-0.594949,0.334744,-0.730741,0.350987,-0.611506,0.345097,-0.712017,0.299292,-0.650192,0.356516,-0.67093,0.240846,-0.717134,0.37197,-0.58937,0.181034,-0.840231,0.384125,-0.3827,0.123126,-0.924476,0.348737,0.154034,0.082812,-0.548992,0.157125,0.820926,0.08405,-0.124672,-0.007277,0.992171,0.12446,0.071022,-0.060482,0.995639,0.170942,0.16698,-0.082185,0.982529,0.216593,0.206157,-0.075936,0.975568,0.254538,0.208984,-0.077756,0.974823,0.286922,0.201259,-0.076837,0.97652,0.309901,0.188484,-0.0727,0.979382,0.325891,0.166336,-0.064927,0.983929,0.337947,0.142439,-0.058115,0.988096,0.346577,0.119426,-0.048707,0.991648,0.351125,0.097847,-0.040912,0.99436,0.35224,0.087388,-0.034794,0.995567,0.350782,0.079491,-0.023215,0.996565,0.348375,0.080036,-0.025977,0.996453,0.343593,0.085038,-0.022825,0.996116,0.339671,0.089518,-0.022974,0.99572,0.334177,0.090532,-0.021049,0.995671,0.328437,0.085904,-0.025067,0.995988,0.320551,0.078081,-0.022617,0.996691,0.312797,0.065946,-0.02626,0.997478,0.304147,0.058238,-0.02226,0.998055,0.293874,0.049883,-0.01778,0.998597,0.283638,0.043942,-0.016083,0.998905,0.272548,0.035104,-0.005288,0.99937,0.260988,0.02304,0.00409,0.999726,0.252807,0.008555,0.011334,0.999899,0.243748,-0.009294,0.006505,0.999936,0.236307,-0.030875,0.008102,0.99949,0.229443,-0.040978,0.006881,0.999136,0.225907,-0.044792,0.006169,0.998977,0.222826,-0.039022,0.003108,0.999234,0.217912,-0.037271,0.012212,0.999231,0.213875,-0.030716,0.012119,0.999455,0.208454,-0.010218,0.016115,0.999818,0.205073,-0.000294,0.018903,0.999821,0.203716,0.010545,0.018124,0.99978,0.203362,0.010927,0.012521,0.999862,0.20392,0.022361,0.004699,0.999739,0.203082,0.011393,0.000356,0.999935,0.201265,0.007792,-0.004816,0.999958,0.19977,0.003062,-0.001829,0.999994,0.193911,-0.013505,-0.003475,0.999903,0.185548,-0.022068,0.003517,0.99975,0.175027,-0.031256,0.011628,0.999444,0.164536,-0.036136,0.024374,0.99905,0.155379,-0.043761,0.036925,0.998359,0.147344,-0.066381,0.038345,0.997057,0.143114]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightCollar",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightShoulder",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.434395,0.861147,0.264057,0.110508,0.425893,0.858883,0.284492,0.109591,0.411937,0.867678,0.278286,0.109774,0.411171,0.868771,0.276,0.111599,0.415662,0.863144,0.286718,0.111983,0.414615,0.859366,0.299306,0.111529,0.39248,0.863058,0.317948,0.110337,0.376743,0.86248,0.337925,0.109074,0.38768,0.851887,0.352126,0.112,0.385851,0.848145,0.363001,0.114154,0.364917,0.860656,0.355115,0.118994,0.338797,0.867902,0.363268,0.125188,0.317855,0.876256,0.362139,0.131443,0.297443,0.888012,0.350661,0.137414,0.289669,0.893084,0.344228,0.142652,0.297211,0.894486,0.334007,0.148507,0.293644,0.893801,0.338959,0.153116,0.292839,0.891935,0.344525,0.156738,0.28316,0.893861,0.347611,0.158859,0.277704,0.892111,0.356396,0.162517,0.262919,0.892431,0.366661,0.167345,0.250073,0.900605,0.355492,0.176069,0.236148,0.90701,0.348666,0.18759,0.227107,0.914626,0.334486,0.196973,0.215102,0.920408,0.326466,0.207199,0.187134,0.926963,0.325148,0.218483,0.157048,0.928249,0.33718,0.226363,0.12746,0.927522,0.351364,0.234428,0.104885,0.92755,0.358678,0.238883,0.094973,0.927673,0.361113,0.243729,0.081423,0.929039,0.360911,0.250204,0.077047,0.928127,0.364204,0.253864,0.070587,0.926419,0.369817,0.254505,0.070379,0.924104,0.375605,0.252692,0.070367,0.920719,0.38383,0.246787,0.070554,0.914014,0.3995,0.236798,0.067155,0.90584,0.418264,0.22711,0.063941,0.895959,0.43951,0.219251,0.067914,0.881925,0.466472,0.214156,0.071012,0.867773,0.491862,0.207478,0.085064,0.853151,0.514682,0.203866,0.095647,0.841926,0.531049,0.202539,0.105674,0.836931,0.537009,0.202242,0.108581,0.835823,0.538154,0.202466,0.122098,0.845458,0.519897,0.205238,0.126511,0.857951,0.497911,0.208605,0.134628,0.869624,0.475004,0.211016,0.140332,0.879607,0.45453,0.211954,0.140777,0.883802,0.446179,0.21211,0.140363,0.885263,0.443404,0.210318,0.144262,0.88766,0.43732,0.207519,0.153257,0.878868,0.451779,0.201762,0.166938,0.875008,0.454414,0.193675,0.208007,0.86239,0.461537,0.183944,0.243171,0.849179,0.468789,0.175083,0.274145,0.841025,0.466392,0.168,0.305931,0.825143,0.474916,0.159841,0.361136,0.802837,0.474376,0.153447,0.432555,0.768227,0.471936,0.148391,0.493848,0.735252,0.46424,0.146799,0.549081,0.700448,0.455942,0.14565,0.588173,0.668187,0.455607,0.144378,0.614954,0.644809,0.453932,0.14412,0.644032,0.616366,0.453118,0.138815,0.672048,0.589258,0.448471,0.134504,0.688479,0.574329,0.442881,0.131735,0.700547,0.553918,0.449898,0.129553,0.69471,0.554954,0.457607,0.127318,0.672787,0.586097,0.451495,0.128877,0.633584,0.639447,0.435521,0.133509,0.59369,0.68838,0.416733,0.139006,0.558772,0.724573,0.403445,0.141463,0.537298,0.730606,0.421337,0.140991,0.520698,0.722989,0.454049,0.137117,0.515739,0.721176,0.462514,0.131227,0.502729,0.713737,0.487691,0.125133,0.499631,0.699934,0.510354,0.119218,0.504947,0.693362,0.514079,0.114142,0.51077,0.690745,0.511846,0.111554,0.522061,0.697912,0.490277,0.10755,0.508375,0.721033,0.470815,0.10672,0.490728,0.754032,0.436603,0.107077,0.458918,0.786925,0.412485,0.109402,0.396476,0.832777,0.386379,0.112453,0.326046,0.865979,0.379176,0.114694,0.270434,0.897101,0.349392,0.118175,0.216742,0.91393,0.343153,0.122066,0.174636,0.928562,0.327528,0.127443,0.143635,0.931607,0.333883,0.132538,0.097889,0.942565,0.319358,0.136956,0.074602,0.950862,0.300494,0.139667,0.074765,0.955398,0.285701,0.141737,0.075029,0.963128,0.258371,0.142684,0.079141,0.968238,0.237176,0.143094,0.069385,0.97432,0.214212,0.140742,0.059064,0.979926,0.190414,0.138488,0.060951,0.982828,0.174169,0.135779,0.066595,0.984214,0.163977,0.135684,0.061291,0.983304,0.171339,0.137134,0.049657,0.980547,0.189901,0.138209,0.03903,0.976566,0.21165,0.142069,0.026105,0.974821,0.221457,0.147034,0.049898,0.970791,0.234681,0.150768,0.06828,0.968695,0.23868,0.154527,0.075352,0.968073,0.239077,0.15816,0.093516,0.96463,0.246461,0.1594,0.103015,0.961092,0.2563,0.162102,0.122468,0.955821,0.267221,0.16183,0.134313,0.950284,0.280928,0.161102,0.153782,0.946153,0.28486,0.164155,0.171852,0.941289,0.29059,0.166224,0.19234,0.934882,0.298331,0.167839,0.209625,0.928911,0.305258,0.166108,0.255739,0.914575,0.313288,0.162807,0.298375,0.893967,0.334359,0.157713,0.340992,0.87504,0.343555,0.155601,0.378914,0.852094,0.361054,0.153524,0.412232,0.831186,0.373089,0.148798,0.439389,0.816679,0.37413,0.145605,0.467714,0.808419,0.357355,0.144302,0.490139,0.799904,0.346291,0.142719,0.486534,0.804635,0.340364,0.143098,0.47867,0.812217,0.333433,0.140004,0.438339,0.831928,0.340226,0.135991,0.388342,0.847376,0.362138,0.131735,0.326082,0.861752,0.388657,0.12717,0.261859,0.878187,0.400272,0.12536,0.19319,0.896665,0.398333,0.125392,0.145709,0.90927,0.389868,0.126965,0.120015,0.925214,0.359967,0.128382,0.090242,0.943688,0.318291,0.129996,0.059683,0.951552,0.30164,0.130609,0.033166,0.958732,0.28237,0.129335,0.020634,0.96284,0.269284,0.126739,-0.000958,0.9625,0.271281,0.12178,-0.01166,0.954282,0.29868,0.112356,-0.010151,0.944725,0.327708,0.102408,0.015864,0.932529,0.360747,0.094342,0.053075,0.915402,0.399028,0.084466,0.145799,0.871211,0.468758,0.077517,0.229413,0.822486,0.520467,0.069033,0.354221,0.703582,0.616036,0.063216,0.496459,0.496058,0.712359,0.059143,0.605554,0.224662,0.763434,0.05831,0.639937,-0.064295,0.765733,0.063389,0.653098,-0.262589,0.710288,0.074168,0.651635,-0.402792,0.642752,0.086069,0.64476,-0.47974,0.595092,0.096997,0.628447,-0.557142,0.542815,0.108414,0.612849,-0.619043,0.491123,0.119382,0.587011,-0.682692,0.435144,0.130102,0.56491,-0.731019,0.382737,0.140496,0.544537,-0.772206,0.32738,0.150792,0.543188,-0.79638,0.265942,0.157209,0.550454,-0.806881,0.214347,0.158205,0.583125,-0.796212,0.161282,0.155989,0.630411,-0.770162,0.097117,0.149816,0.694226,-0.71962,0.014066,0.147989,0.728028,-0.682803,-0.061278,0.145938,0.759862,-0.63882,-0.120496,0.144644,0.772054,-0.609882,-0.178822,0.143496,0.771781,-0.592655,-0.230466,0.141845,0.757909,-0.591926,-0.274221,0.139479,0.738755,-0.589371,-0.32693,0.133591,0.719606,-0.577126,-0.386125,0.124076,0.695776,-0.576574,-0.428321,0.114123,0.678362,-0.570639,-0.462813,0.102278,0.661154,-0.567294,-0.490971,0.090584,0.656044,-0.534175,-0.533165,0.079462,0.649916,-0.516367,-0.557651,0.069997,0.658169,-0.479045,-0.580801,0.062468,0.678475,-0.441343,-0.587272,0.054414,0.68493,-0.368625,-0.628479,0.049691,0.70869,-0.322991,-0.627244,0.046927,0.740586,-0.237093,-0.628744,0.044222,0.76169,-0.091692,-0.641421,0.042332,0.765477,0.066154,-0.640053,0.042377,0.771215,0.21155,-0.600394,0.043019,0.759244,0.381638,-0.527164,0.044619,0.745005,0.512293,-0.427228,0.048146,0.721586,0.607709,-0.331668,0.054159,0.712768,0.667668,-0.214899,0.0598,0.699691,0.70613,-0.108691,0.063614,0.681041,0.732101,-0.014565,0.068178,0.680266,0.732351,0.029997,0.074435,0.682306,0.726708,0.079707,0.079206,0.699524,0.706619,0.106562,0.084998,0.720909,0.681191,0.127552,0.090344,0.740606,0.659834,0.126973,0.097583,0.76664,0.628268,0.132451,0.101923,0.778207,0.610997,0.145177,0.106382,0.775818,0.615636,0.138199,0.114064,0.754242,0.640889,0.14276,0.121553,0.741393,0.653202,0.153833,0.131672,0.733062,0.663741,0.148552,0.141179,0.719144,0.678794,0.148562,0.150061,0.704652,0.695658,0.139735,0.157744,0.689851,0.709786,0.142513,0.16374,0.665486,0.735512,0.127084,0.169478,0.640234,0.760024,0.111644,0.17362,0.613126,0.784288,0.094704,0.174383,0.584348,0.807053,0.084867,0.171804,0.548517,0.831954,0.083559,0.165885,0.505394,0.859073,0.081053,0.158541,0.46008,0.881094,0.109545,0.148764,0.427608,0.893259,0.138711,0.139938,0.401801,0.900555,0.166002,0.130571,0.36413,0.911614,0.190707,0.12562,0.343526,0.916484,0.205054,0.119952,0.328682,0.921066,0.208822,0.116563,0.30746,0.929914,0.201811,0.113128,0.293741,0.935886,0.194508,0.111351,0.296495,0.93743,0.182524,0.105021,0.303085,0.939919,0.157137,0.1003,0.331961,0.933445,0.135953,0.09563,0.373163,0.916724,0.142714,0.089458,0.44628,0.883482,0.142456,0.084455,0.531343,0.83253,0.156744,0.080259,0.601968,0.781457,0.164194,0.079788,0.670414,0.723293,0.16551,0.080214,0.758424,0.641605,0.114615,0.08179,0.842197,0.534672,0.069495,0.083195,0.934692,0.353198,0.040032,0.085569,0.98674,0.161484,-0.016364,0.089479,0.997023,-0.066368,-0.03925,0.097527,0.970285,-0.234341,-0.060254,0.110724,0.928866,-0.357298,-0.097699,0.126447,0.887871,-0.442904,-0.124585,0.143206,0.853145,-0.497673,-0.156413,0.160245,0.822424,-0.537517,-0.186266,0.176436,0.796471,-0.565669,-0.213666,0.192275,0.774812,-0.587615,-0.233186,0.207563,0.760823,-0.594997,-0.259087,0.222972,0.755359,-0.591049,-0.283011,0.237022,0.760167,-0.577501,-0.297724,0.248212,0.766486,-0.559644,-0.315117,0.254874,0.780761,-0.535046,-0.322704,0.256819,0.799732,-0.49605,-0.338176,0.255543,0.818855,-0.458503,-0.345328,0.248951,0.846332,-0.407792,-0.342677,0.236657,0.872328,-0.357768,-0.333236,0.224931,0.889868,-0.314309,-0.330673,0.216142,0.905655,-0.271188,-0.325954,0.206821,0.917382,-0.226265,-0.327437,0.19826,0.924915,-0.17385,-0.338095,0.189269,0.926278,-0.125913,-0.355182,0.179001,0.93052,-0.07466,-0.35855,0.168752,0.929107,-0.021485,-0.369187,0.157129,0.925826,0.039086,-0.375924,0.143571,0.921198,0.098432,-0.376439,0.132373,0.915744,0.158905,-0.369002,0.119494,0.903192,0.230005,-0.362412,0.108121,0.896075,0.303622,-0.323826,0.100556,0.864136,0.404979,-0.298767,0.093504,0.828051,0.499571,-0.254481,0.088815,0.772807,0.600927,-0.204098,0.086877,0.704059,0.690588,-0.165498,0.088952,0.630376,0.766752,-0.121316,0.092987,0.533056,0.84104,-0.092214,0.097912,0.454079,0.889291,-0.054528,0.105646,0.381534,0.924244,-0.014326,0.112587,0.330434,0.94359,0.021246,0.122839,0.313986,0.947865,0.054443,0.132272,0.34857,0.934849,0.067501,0.143376,0.358816,0.93043,0.0745,0.155678,0.381602,0.92124,0.075473,0.164148,0.415373,0.906142,0.079829,0.168856,0.466354,0.881078,0.078842,0.170925,0.526795,0.846948,0.071878,0.172233,0.57798,0.813561,0.0637,0.173203,0.62986,0.775289,0.04693,0.174935,0.671692,0.740035,0.034321,0.178583,0.704561,0.7091,0.027773,0.179975,0.735655,0.676976,0.022727,0.183582,0.763571,0.645711,0.00405,0.18394,0.792771,0.609515,0.002387,0.185714,0.818823,0.574043,-0.001908,0.187587,0.844417,0.535568,-0.011279,0.190528,0.858118,0.512247,-0.035174,0.196802,0.869878,0.489879,-0.057717,0.203304,0.878335,0.471748,-0.077341,0.205821,0.886414,0.452183,-0.098999,0.205654,0.89658,0.427108,-0.117144,0.204304,0.904289,0.405593,-0.133252,0.20194,0.911483,0.383181,-0.149571,0.199731,0.919676,0.362817,-0.150201,0.195072]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightElbow",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[-0.179208,-0.972335,-0.149833,0.304531,-0.180165,-0.970844,-0.15812,0.3037,-0.18129,-0.970025,-0.16182,0.303502,-0.188069,-0.968413,-0.163729,0.302833,-0.190641,-0.967216,-0.167777,0.302903,-0.190457,-0.966438,-0.172407,0.302296,-0.181812,-0.966823,-0.17944,0.301496,-0.171779,-0.968859,-0.178336,0.298778,-0.165528,-0.970193,-0.176992,0.297513,-0.146535,-0.973764,-0.174101,0.296875,-0.121164,-0.977488,-0.172734,0.297957,-0.088139,-0.978602,-0.185928,0.298602,-0.061814,-0.978109,-0.198702,0.296222,-0.027917,-0.976081,-0.215607,0.292615,-0.001063,-0.972012,-0.234931,0.290247,0.015354,-0.967442,-0.252627,0.28775,0.035767,-0.963004,-0.267105,0.287205,0.051887,-0.96036,-0.27389,0.288394,0.059398,-0.956793,-0.28464,0.289962,0.063926,-0.956443,-0.284833,0.29251,0.068974,-0.953721,-0.292677,0.296816,0.065694,-0.954022,-0.29245,0.300356,0.055336,-0.954805,-0.292036,0.302755,0.037958,-0.958573,-0.282307,0.301455,0.018317,-0.96143,-0.274438,0.300329,-0.008892,-0.964138,-0.265251,0.298021,-0.036971,-0.967408,-0.250509,0.295808,-0.074318,-0.967848,-0.240308,0.292712,-0.113521,-0.96815,-0.223154,0.29085,-0.157005,-0.966901,-0.201126,0.288378,-0.196272,-0.963938,-0.179723,0.288276,-0.242975,-0.957172,-0.15743,0.28719,-0.286281,-0.94754,-0.142168,0.285481,-0.333395,-0.933824,-0.129692,0.284686,-0.380208,-0.918916,-0.10505,0.283227,-0.422008,-0.902981,-0.080839,0.280486,-0.450193,-0.891177,-0.055947,0.280258,-0.468112,-0.883162,-0.029941,0.281441,-0.473546,-0.880538,-0.020194,0.285994,-0.469105,-0.883096,-0.009053,0.286873,-0.456391,-0.889772,-0.003529,0.287378,-0.434748,-0.900534,-0.005792,0.28664,-0.401895,-0.915642,-0.009004,0.285808,-0.357787,-0.933469,-0.024984,0.286409,-0.317678,-0.947713,-0.030358,0.291071,-0.274089,-0.961179,-0.031777,0.296152,-0.247788,-0.967953,-0.040846,0.301583,-0.225257,-0.973301,-0.044095,0.305134,-0.209826,-0.976344,-0.052214,0.30589,-0.199445,-0.977867,-0.063234,0.304273,-0.184665,-0.979687,-0.078184,0.300512,-0.179712,-0.979508,-0.090928,0.296402,-0.180237,-0.979421,-0.090821,0.293213,-0.192615,-0.977099,-0.090426,0.289617,-0.208828,-0.974529,-0.081762,0.28797,-0.227127,-0.971203,-0.071961,0.285098,-0.251272,-0.96557,-0.067355,0.284477,-0.26988,-0.960495,-0.067931,0.285414,-0.281304,-0.957281,-0.066945,0.28448,-0.283011,-0.956657,-0.068646,0.286996,-0.273262,-0.958912,-0.076258,0.291034,-0.256885,-0.962324,-0.08912,0.295186,-0.237891,-0.96624,-0.09894,0.299695,-0.216439,-0.970356,-0.107533,0.299689,-0.201096,-0.972021,-0.121388,0.298803,-0.181103,-0.974146,-0.13506,0.298998,-0.167994,-0.974193,-0.150749,0.298568,-0.146237,-0.974205,-0.171872,0.300977,-0.124939,-0.973832,-0.189846,0.306964,-0.105589,-0.971648,-0.211545,0.313577,-0.086127,-0.97095,-0.223243,0.321027,-0.079594,-0.967891,-0.238436,0.324887,-0.082198,-0.964889,-0.249466,0.326056,-0.09192,-0.961694,-0.258255,0.32376,-0.103836,-0.962166,-0.251903,0.320836,-0.115904,-0.962489,-0.245317,0.317969,-0.133845,-0.961748,-0.239012,0.313258,-0.150729,-0.960352,-0.234531,0.311241,-0.171627,-0.958068,-0.229455,0.310728,-0.192211,-0.956667,-0.218733,0.308543,-0.198413,-0.957378,-0.209903,0.30838,-0.20687,-0.957833,-0.199403,0.306593,-0.204873,-0.958061,-0.200365,0.30555,-0.191607,-0.960472,-0.201943,0.305135,-0.174483,-0.960579,-0.216435,0.302521,-0.16009,-0.96198,-0.221281,0.301582,-0.146953,-0.961101,-0.23386,0.302685,-0.139788,-0.960881,-0.239096,0.303211,-0.135021,-0.960447,-0.24354,0.302542,-0.128169,-0.961895,-0.241516,0.300813,-0.130747,-0.962262,-0.238657,0.298684,-0.146905,-0.962358,-0.228662,0.295689,-0.166621,-0.961952,-0.216533,0.292865,-0.186743,-0.960403,-0.20677,0.290135,-0.200897,-0.959949,-0.195289,0.285507,-0.21772,-0.958995,-0.181456,0.284315,-0.230173,-0.958152,-0.170193,0.282625,-0.23674,-0.957488,-0.164835,0.281454,-0.233402,-0.957664,-0.168534,0.282643,-0.211958,-0.9612,-0.176546,0.281907,-0.18277,-0.96527,-0.186678,0.285806,-0.151193,-0.967268,-0.203797,0.288004,-0.128692,-0.968144,-0.21479,0.291526,-0.102215,-0.969439,-0.223026,0.293949,-0.069842,-0.9699,-0.233272,0.296099,-0.049244,-0.970378,-0.236522,0.295702,-0.022863,-0.968776,-0.246883,0.296352,0.00339,-0.966405,-0.257003,0.297259,0.029445,-0.963286,-0.266857,0.29842,0.04802,-0.960655,-0.273562,0.303636,0.065638,-0.957151,-0.282054,0.306228,0.079036,-0.952814,-0.293085,0.310667,0.09625,-0.94687,-0.306876,0.312723,0.101007,-0.942576,-0.318353,0.310936,0.098128,-0.940987,-0.323906,0.310608,0.090696,-0.94359,-0.318453,0.311095,0.073568,-0.945276,-0.317869,0.310136,0.050714,-0.946513,-0.318657,0.306141,0.027256,-0.947299,-0.31919,0.302316,-0.001704,-0.949273,-0.314448,0.297552,-0.038465,-0.947234,-0.318227,0.295229,-0.077091,-0.943495,-0.322294,0.295204,-0.117438,-0.940647,-0.318421,0.29659,-0.162102,-0.936085,-0.3122,0.298924,-0.202707,-0.931193,-0.302967,0.302069,-0.238626,-0.927553,-0.287581,0.305267,-0.275758,-0.920483,-0.276891,0.309832,-0.314041,-0.911744,-0.264765,0.313308,-0.346032,-0.904022,-0.251011,0.316428,-0.379895,-0.89518,-0.233092,0.320275,-0.4124,-0.884339,-0.218793,0.320219,-0.445953,-0.869348,-0.212977,0.320048,-0.477011,-0.855447,-0.201671,0.317363,-0.511661,-0.837886,-0.190132,0.31324,-0.544636,-0.82111,-0.170733,0.310945,-0.571443,-0.805129,-0.158808,0.308553,-0.591328,-0.793768,-0.142349,0.308219,-0.599967,-0.789322,-0.130428,0.309437,-0.604112,-0.787734,-0.120513,0.307701,-0.597911,-0.792845,-0.117895,0.307632,-0.584221,-0.802375,-0.121985,0.3042,-0.561915,-0.816029,-0.135454,0.298622,-0.531893,-0.833358,-0.150345,0.2926,-0.483216,-0.859048,-0.168934,0.283233,-0.423797,-0.885731,-0.189413,0.275795,-0.355114,-0.910823,-0.210465,0.27285,-0.276926,-0.93186,-0.234411,0.275806,-0.197325,-0.946247,-0.256281,0.2823,-0.124671,-0.950262,-0.285411,0.287882,-0.056304,-0.947667,-0.314257,0.292588,0.008148,-0.935882,-0.35222,0.295298,0.069652,-0.917218,-0.39225,0.296669,0.122563,-0.894616,-0.429698,0.298512,0.168018,-0.872638,-0.458556,0.302132,0.205838,-0.857632,-0.471273,0.307741,0.233339,-0.845656,-0.48002,0.312268,0.253606,-0.835752,-0.487035,0.31686,0.255347,-0.834307,-0.4886,0.315865,0.255398,-0.834008,-0.489083,0.313301,0.233145,-0.840608,-0.488899,0.309709,0.208229,-0.847715,-0.487872,0.307288,0.174642,-0.863079,-0.473914,0.301425,0.141546,-0.875366,-0.462277,0.294683,0.105937,-0.888989,-0.445506,0.288748,0.064905,-0.901794,-0.427265,0.283977,0.022041,-0.910221,-0.413535,0.27895,-0.017784,-0.913441,-0.406582,0.277124,-0.058454,-0.91237,-0.405172,0.274766,-0.099676,-0.910978,-0.400229,0.274351,-0.142318,-0.908598,-0.392676,0.272958,-0.18798,-0.906117,-0.378966,0.271245,-0.228051,-0.901172,-0.368621,0.270394,-0.269414,-0.898944,-0.345421,0.26669,-0.312147,-0.89225,-0.326273,0.262055,-0.351117,-0.885113,-0.305438,0.256712,-0.386175,-0.879772,-0.277253,0.251026,-0.414205,-0.874156,-0.253545,0.246649,-0.435793,-0.868506,-0.236183,0.242628,-0.4529,-0.867033,-0.20769,0.239928,-0.463465,-0.864458,-0.194713,0.24075,-0.461289,-0.869782,-0.175193,0.242145,-0.456137,-0.875078,-0.161793,0.248529,-0.438001,-0.887033,-0.14604,0.254686,-0.420096,-0.898169,-0.129659,0.264458,-0.408862,-0.90582,-0.111003,0.273619,-0.393938,-0.913604,-0.1007,0.282416,-0.380169,-0.921225,-0.08256,0.290511,-0.370736,-0.926328,-0.066872,0.296597,-0.360831,-0.930866,-0.057357,0.30156,-0.356777,-0.932677,-0.053134,0.302616,-0.347848,-0.935818,-0.056983,0.303579,-0.332996,-0.940871,-0.062248,0.305457,-0.307655,-0.949004,-0.068851,0.307796,-0.2826,-0.955455,-0.085103,0.310808,-0.265658,-0.958581,-0.102703,0.309774,-0.243214,-0.961982,-0.124246,0.306934,-0.223829,-0.963775,-0.145047,0.304339,-0.213927,-0.960766,-0.176534,0.299824,-0.213057,-0.95664,-0.198613,0.292772,-0.218859,-0.951097,-0.217981,0.287276,-0.225833,-0.945579,-0.234265,0.281837,-0.248815,-0.93752,-0.243201,0.27761,-0.272955,-0.929762,-0.24706,0.276873,-0.287137,-0.926095,-0.244745,0.27901,-0.303315,-0.922305,-0.239484,0.282768,-0.317697,-0.917808,-0.238111,0.289914,-0.328459,-0.914496,-0.236246,0.296199,-0.337911,-0.910592,-0.237988,0.302476,-0.343216,-0.908042,-0.240131,0.308265,-0.345785,-0.905971,-0.244232,0.31089,-0.341439,-0.907052,-0.246327,0.308734,-0.335496,-0.90749,-0.252794,0.306249,-0.335498,-0.905021,-0.261491,0.298274,-0.325139,-0.907497,-0.265959,0.292042,-0.309313,-0.911281,-0.271832,0.284914,-0.288995,-0.913751,-0.285553,0.278846,-0.27421,-0.91753,-0.288007,0.274206,-0.253443,-0.922572,-0.290907,0.270685,-0.226252,-0.928746,-0.293669,0.270064,-0.196043,-0.93451,-0.297084,0.269103,-0.16806,-0.940052,-0.296746,0.26654,-0.141547,-0.944438,-0.296651,0.263946,-0.109585,-0.944899,-0.308475,0.25872,-0.073594,-0.946537,-0.314088,0.254058,-0.047453,-0.94741,-0.316485,0.251537,-0.027869,-0.944683,-0.3268,0.24889,-0.00883,-0.948109,-0.317824,0.248298,0.000004,-0.949941,-0.31243,0.248181,0.00645,-0.955279,-0.295637,0.249623,0.015831,-0.957905,-0.28665,0.247461,0.014509,-0.962894,-0.269489,0.242731,0.01913,-0.966744,-0.255029,0.239389,0.027314,-0.972411,-0.231671,0.234783,0.03409,-0.978556,-0.203142,0.233411,0.044076,-0.9819,-0.184201,0.233403,0.07025,-0.980825,-0.181787,0.235899,0.10042,-0.976722,-0.189554,0.239234,0.135349,-0.969915,-0.202349,0.243865,0.175183,-0.960294,-0.217133,0.250857,0.202211,-0.950846,-0.234525,0.260779,0.219826,-0.94336,-0.248494,0.27112,0.215452,-0.944496,-0.248008,0.276582,0.200893,-0.949719,-0.240158,0.276168,0.174284,-0.959372,-0.221881,0.275881,0.147161,-0.968888,-0.198998,0.272918,0.118629,-0.976324,-0.180884,0.269067,0.084526,-0.980798,-0.17576,0.267265,0.048085,-0.984019,-0.17145,0.265542,0.012896,-0.985012,-0.172004,0.267462,-0.025215,-0.983865,-0.177126,0.270628,-0.065483,-0.98131,-0.180952,0.276269,-0.100855,-0.978497,-0.179921,0.283126,-0.147725,-0.972793,-0.178469,0.290352,-0.188653,-0.967451,-0.168668,0.296714,-0.224432,-0.960683,-0.163461,0.301116,-0.261104,-0.953231,-0.152235,0.302768,-0.29454,-0.944648,-0.144521,0.303536,-0.32436,-0.936026,-0.136547,0.30426,-0.348726,-0.927911,-0.131803,0.30226,-0.368356,-0.921301,-0.124576,0.300475,-0.383731,-0.91509,-0.123938,0.298448,-0.394969,-0.910106,-0.125323,0.296009,-0.413717,-0.901453,-0.127363,0.293668,-0.439962,-0.889385,-0.124211,0.293738,-0.448021,-0.885204,-0.125266,0.292132,-0.454746,-0.881006,-0.130515,0.284777,-0.449205,-0.881513,-0.145428,0.276758,-0.445295,-0.881868,-0.154987,0.266963,-0.438484,-0.885265,-0.155042,0.261876,-0.420589,-0.893771,-0.155816,0.256284,-0.40349,-0.903226,-0.146213,0.253555,-0.374117,-0.917506,-0.13498,0.251357,-0.340307,-0.931926,-0.125323,0.248448,-0.307218,-0.943521,-0.124034,0.245228,-0.257875,-0.957906,-0.126162,0.238693,-0.213971,-0.967074,-0.137787,0.233446,-0.154631,-0.977374,-0.144326,0.229626,-0.113093,-0.981915,-0.151832,0.227091,-0.074006,-0.986059,-0.149036,0.226439,-0.042412,-0.988373,-0.146012,0.224082,-0.010955,-0.989444,-0.144501,0.221455,0.011415,-0.989684,-0.142813,0.219218,0.029596,-0.988494,-0.148335,0.21648,0.039751,-0.988832,-0.143633,0.217577,0.033841,-0.990405,-0.133984,0.220931,0.028091,-0.992376,-0.12,0.226866]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_RightWrist",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.55477,-0.191888,0.809574,0.056037,0.552839,-0.192254,0.810807,0.055567,0.550913,-0.192648,0.812023,0.055098,0.563563,-0.22086,0.796001,0.054776,0.563563,-0.22086,0.796001,0.054776,0.563563,-0.22086,0.796001,0.054776,0.563563,-0.22086,0.796001,0.054776,0.583361,-0.236314,0.777075,0.054894,0.607719,-0.210136,0.765846,0.056626,0.608428,-0.185938,0.77152,0.057366,0.597971,-0.171633,0.782926,0.058571,0.580694,-0.136527,0.802593,0.061172,0.612033,-0.092241,0.785434,0.061681,0.616875,-0.033424,0.786351,0.062682,0.623631,0.019249,0.781482,0.066248,0.651807,0.054044,0.756457,0.070702,0.675036,0.081917,0.733223,0.072998,0.693865,0.113756,0.711063,0.07551,0.708636,0.1295,0.693588,0.079851,0.714631,0.145577,0.684185,0.080615,0.714017,0.140812,0.685822,0.083446,0.697936,0.147286,0.700851,0.08483,0.679234,0.14624,0.719205,0.08504,0.653792,0.140606,0.743496,0.082304,0.621644,0.128954,0.772613,0.080274,0.578921,0.110052,0.807923,0.075727,0.535115,0.090463,0.839922,0.069552,0.473552,0.0531,0.879164,0.067063,0.429443,0.038606,0.902268,0.06712,0.415925,0.012221,0.909317,0.066578,0.413646,-0.004735,0.910425,0.069322,0.430784,-0.012451,0.902369,0.071939,0.437589,0.016048,0.899032,0.074249,0.42959,0.00793,0.902989,0.077925,0.443221,0.01191,0.896333,0.077732,0.452599,0.018419,0.891524,0.075718,0.413863,0.014238,0.910228,0.075,0.399752,-0.006504,0.9166,0.070469,0.379375,-0.025936,0.924879,0.068874,0.322385,-0.039731,0.945775,0.065705,0.293481,-0.067795,0.953558,0.062078,0.296469,-0.08667,0.951102,0.061561,0.295888,-0.09235,0.950748,0.060447,0.234634,-0.10683,0.966196,0.06225,0.150194,-0.109395,0.982586,0.063299,-0.011274,-0.1711,0.985189,0.064821,-0.140942,-0.22648,0.963765,0.067365,-0.265371,-0.26669,0.926528,0.066796,-0.350485,-0.288266,0.891102,0.064604,-0.392968,-0.271783,0.87847,0.062921,-0.408173,-0.237856,0.881374,0.062586,-0.394355,-0.199348,0.897075,0.062223,-0.339565,-0.180072,0.923185,0.063246,-0.289598,-0.167962,0.942296,0.064349,-0.24807,-0.122705,0.96094,0.065553,-0.231414,-0.116046,0.965909,0.066161,-0.195933,-0.082183,0.977167,0.066775,-0.161538,-0.019587,0.986672,0.068964,-0.141078,0.009373,0.989954,0.070452,-0.140916,0.040354,0.989199,0.070836,-0.103294,0.087883,0.990761,0.072022,-0.10019,0.076966,0.991987,0.072936,-0.079943,0.092179,0.992528,0.073807,-0.048332,0.10493,0.993304,0.074435,0.01233,0.134698,0.99081,0.076598,0.071014,0.169576,0.982955,0.076812,0.144798,0.188093,0.971419,0.077203,0.193568,0.20466,0.959503,0.079224,0.220596,0.207857,0.95296,0.081401,0.221348,0.17926,0.958578,0.080972,0.2236,0.163956,0.960792,0.078182,0.25444,0.159549,0.953837,0.076345,0.254071,0.175389,0.95115,0.072904,0.275566,0.202225,0.93977,0.071125,0.311086,0.235993,0.920615,0.070529,0.312111,0.260403,0.913661,0.072028,0.335907,0.256969,0.906164,0.073011,0.348032,0.25019,0.903481,0.073752,0.356018,0.24409,0.902037,0.073233,0.354043,0.236247,0.904898,0.073289,0.294415,0.235835,0.926122,0.071075,0.27428,0.242907,0.930466,0.067834,0.244069,0.2454,0.938195,0.06696,0.216997,0.269632,0.938196,0.066603,0.198565,0.263659,0.943958,0.065636,0.197352,0.259254,0.945431,0.065228,0.206163,0.278271,0.938116,0.066978,0.243185,0.281696,0.928175,0.067985,0.280874,0.279534,0.918134,0.067117,0.300103,0.289902,0.908788,0.0667,0.299918,0.310021,0.902184,0.067908,0.293164,0.32106,0.900542,0.067841,0.311139,0.306451,0.8996,0.069095,0.295462,0.281373,0.912979,0.070058,0.245073,0.253861,0.935678,0.068143,0.225195,0.247991,0.942225,0.066585,0.223643,0.228473,0.947515,0.064626,0.21626,0.235427,0.947526,0.064489,0.229124,0.212111,0.950006,0.063148,0.240856,0.181648,0.953411,0.060569,0.281294,0.200291,0.938487,0.060031,0.327574,0.210896,0.920988,0.060608,0.41148,0.247616,0.877138,0.063779,0.495109,0.27468,0.824268,0.067658,0.546211,0.294263,0.784259,0.071577,0.621149,0.310926,0.719374,0.075139,0.661784,0.328643,0.673821,0.079037,0.686455,0.335327,0.64524,0.082194,0.694642,0.35782,0.624049,0.085861,0.70737,0.379524,0.596313,0.091124,0.727751,0.365765,0.580168,0.096881,0.744361,0.378418,0.550206,0.102676,0.748551,0.384174,0.540445,0.108359,0.760767,0.375296,0.529515,0.116131,0.769384,0.374925,0.517184,0.123616,0.767372,0.378711,0.517415,0.1284,0.766302,0.380271,0.517856,0.134796,0.76524,0.363214,0.531491,0.140535,0.752196,0.364568,0.5489,0.139795,0.736723,0.363038,0.570476,0.139145,0.719693,0.355838,0.596172,0.135256,0.697508,0.339649,0.630968,0.130771,0.673603,0.334278,0.659179,0.124358,0.648043,0.303527,0.698507,0.114906,0.602029,0.267246,0.752423,0.104129,0.538213,0.230651,0.810634,0.093231,0.459441,0.180775,0.869617,0.084655,0.400704,0.114155,0.909068,0.078947,0.341861,0.086334,0.935777,0.074435,0.316574,0.061407,0.946578,0.070937,0.262133,0.017329,0.964876,0.071276,0.243352,0.001048,0.969938,0.072746,0.208342,0.009006,0.978015,0.074869,0.170899,-0.008102,0.985255,0.076809,0.173361,-0.018569,0.984683,0.077631,0.14093,-0.02431,0.989721,0.07892,0.125213,-0.024537,0.991826,0.079004,0.115782,-0.027597,0.992891,0.078501,0.09969,-0.029575,0.994579,0.079432,0.104411,-0.01586,0.994408,0.080369,0.131692,-0.006655,0.991268,0.079788,0.161606,0.02183,0.986614,0.081474,0.205254,0.069484,0.976239,0.083243,0.240059,0.093608,0.966235,0.083962,0.31034,0.139186,0.940381,0.087255,0.415337,0.183408,0.890986,0.093213,0.473619,0.21464,0.854175,0.102329,0.503067,0.217925,0.836321,0.111471,0.541115,0.259041,0.800058,0.120688,0.6135,0.293784,0.733013,0.131339,0.68023,0.32705,0.655993,0.144739,0.737784,0.334246,0.586476,0.161416,0.778006,0.345538,0.524699,0.174688,0.7924,0.356103,0.49527,0.185047,0.807453,0.363229,0.464849,0.186669,0.813175,0.370169,0.449133,0.181908,0.811616,0.378367,0.445104,0.172305,0.80748,0.388802,0.443632,0.158883,0.798039,0.404415,0.446747,0.145818,0.793407,0.417743,0.442715,0.136308,0.778421,0.419981,0.466558,0.129885,0.77109,0.404446,0.491776,0.125965,0.741293,0.396316,0.541682,0.123675,0.705018,0.37612,0.601235,0.1217,0.656653,0.360671,0.662362,0.117249,0.598522,0.343802,0.723583,0.10917,0.502893,0.319498,0.803131,0.100093,0.384417,0.281257,0.879271,0.088891,0.244633,0.23535,0.94062,0.080875,0.091645,0.178736,0.97962,0.074149,-0.041595,0.122324,0.991618,0.068247,-0.130952,0.082881,0.987918,0.067145,-0.18888,0.047535,0.980849,0.06548,-0.248056,0.023077,0.968471,0.067623,-0.269494,0.004644,0.962991,0.067988,-0.269429,-0.014819,0.962906,0.06958,-0.225741,-0.005945,0.974169,0.070611,-0.172328,0.01031,0.984986,0.072237,-0.122803,0.023629,0.99215,0.070729,-0.023367,0.045069,0.998711,0.073266,0.087069,0.049688,0.994962,0.074841,0.2183,0.066072,0.973642,0.078853,0.316903,0.075764,0.945427,0.085691,0.417422,0.062786,0.906541,0.092856,0.486395,0.041606,0.872748,0.101705,0.534378,0.034624,0.844536,0.110545,0.567276,0.038907,0.822608,0.116369,0.581632,0.045585,0.812174,0.121909,0.594956,0.054977,0.801876,0.125853,0.591214,0.058606,0.804383,0.129948,0.592153,0.067809,0.802967,0.134163,0.585345,0.083433,0.80648,0.137266,0.579175,0.091417,0.810062,0.137339,0.579652,0.099217,0.808801,0.138474,0.585829,0.10749,0.803275,0.140222,0.581239,0.128373,0.803543,0.141275,0.586421,0.162979,0.793441,0.145578,0.593932,0.192088,0.781247,0.151351,0.607398,0.201847,0.768327,0.157899,0.608403,0.214719,0.76403,0.162104,0.593521,0.213738,0.775918,0.16316,0.572529,0.200583,0.79497,0.157579,0.538529,0.179643,0.823234,0.150121,0.483889,0.150094,0.862162,0.137968,0.413025,0.105667,0.904569,0.124682,0.316904,0.056363,0.946781,0.112434,0.195308,-0.000488,0.980742,0.101719,0.084552,-0.065239,0.994281,0.093062,-0.011299,-0.099121,0.995011,0.088398,-0.0846,-0.120789,0.989067,0.085217,-0.135948,-0.136753,0.981232,0.083469,-0.156729,-0.113628,0.981084,0.082605,-0.109857,-0.102994,0.988597,0.082179,-0.073269,-0.05884,0.995575,0.082835,-0.041584,-0.010313,0.999082,0.083772,0.003316,0.01802,0.999832,0.084299,0.031991,0.038635,0.998741,0.082622,0.044826,0.071462,0.996436,0.08188,0.081186,0.096914,0.991976,0.081769,0.117263,0.122147,0.985561,0.08179,0.127882,0.145837,0.981009,0.083666,0.16702,0.190387,0.967397,0.086072,0.183077,0.221772,0.957758,0.091401,0.200688,0.253833,0.946199,0.097475,0.248774,0.291088,0.923785,0.103003,0.300747,0.294403,0.907126,0.109382,0.341034,0.311431,0.886965,0.113874,0.380998,0.315854,0.868951,0.118631,0.401738,0.3481,0.847014,0.120708,0.39428,0.350659,0.84946,0.122308,0.405141,0.357101,0.841629,0.120805,0.397377,0.380502,0.835051,0.118745,0.378786,0.384728,0.841728,0.114046,0.370217,0.397666,0.839524,0.109746,0.325721,0.404485,0.854574,0.104769,0.284665,0.41378,0.864726,0.101937,0.2837,0.426381,0.858903,0.098933,0.284746,0.421919,0.860758,0.100095,0.316355,0.434531,0.843269,0.101086,0.364177,0.44305,0.819196,0.103529,0.41197,0.455903,0.788944,0.10891,0.47337,0.465081,0.748078,0.112292,0.491658,0.467321,0.734768,0.112336,0.488909,0.474773,0.731819,0.112746,0.469422,0.464756,0.750763,0.110808,0.428438,0.455885,0.780134,0.108072,0.355745,0.444176,0.822285,0.10544,0.304038,0.425147,0.852532,0.099981,0.252046,0.398769,0.881735,0.094934,0.202589,0.379544,0.90272,0.090933,0.145343,0.353361,0.924127,0.086866,0.082576,0.322923,0.942816,0.084302,0.029478,0.283213,0.958604,0.083646,-0.017399,0.238408,0.971009,0.084787,-0.1086,0.197104,0.974349,0.085997,-0.162645,0.163907,0.972975,0.087214,-0.208378,0.124413,0.970103,0.090185,-0.239691,0.105291,0.965123,0.091896,-0.257955,0.091574,0.961807,0.093509,-0.276306,0.091075,0.956745,0.0953,-0.262235,0.113536,0.958302,0.095782,-0.248627,0.106813,0.962692,0.094175,-0.230106,0.109398,0.966997,0.094425,-0.217519,0.117541,0.968953,0.094703,-0.206721,0.136309,0.968858,0.093817,-0.192914,0.156947,0.968582,0.091025,-0.186901,0.172837,0.967055,0.091012,-0.193181,0.185996,0.963373,0.091396,-0.173898,0.22685,0.958279,0.088525,-0.141679,0.252215,0.957243,0.08786,-0.09434,0.280208,0.955292,0.087506,-0.067651,0.308839,0.948705,0.08529,-0.008894,0.347959,0.937468,0.08618,0.076306,0.380728,0.921533,0.085716,0.128745,0.417777,0.899382,0.087941,0.232594,0.452609,0.86084,0.090257,0.307524,0.497856,0.810906,0.094554,0.393853,0.50965,0.764942,0.100502,0.474114,0.520064,0.710457,0.107304,0.52787,0.509601,0.679456,0.113418,0.540818,0.520472,0.660775,0.118793,0.550961,0.529494,0.645041,0.12232,0.540086,0.5412,0.644522,0.119747,0.511522,0.553479,0.657271,0.113269,0.479824,0.55675,0.678084,0.103271,0.412796,0.570102,0.71034,0.092124]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_Neck",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.740445,-0.567374,0.360317,0.052709,0.742988,-0.584736,0.325658,0.051496,0.752809,-0.600831,0.268851,0.050164,0.765849,-0.601731,0.226707,0.049748,0.77795,-0.593885,0.205171,0.050278,0.789286,-0.585818,0.183969,0.050844,0.798887,-0.577212,0.169134,0.052204,0.802601,-0.575713,0.156158,0.05492,0.82016,-0.551497,0.152279,0.05792,0.835214,-0.529823,0.147331,0.061145,0.837221,-0.530496,0.132795,0.062449,0.845141,-0.51566,0.140821,0.064711,0.844172,-0.516959,0.141871,0.067305,0.843448,-0.517409,0.144509,0.069648,0.835632,-0.530698,0.141699,0.071929,0.823542,-0.549419,0.141129,0.074869,0.806302,-0.571302,0.153269,0.077867,0.792978,-0.589516,0.153806,0.082645,0.768404,-0.61963,0.160044,0.085546,0.751251,-0.635938,0.176651,0.089854,0.736055,-0.651675,0.183149,0.094109,0.728249,-0.657505,0.193236,0.098309,0.724315,-0.653006,0.221248,0.102243,0.715765,-0.652438,0.249009,0.106299,0.714531,-0.641807,0.278442,0.110333,0.711368,-0.627841,0.315865,0.113662,0.700785,-0.613973,0.363231,0.116872,0.684417,-0.598999,0.415659,0.119638,0.669268,-0.586252,0.456497,0.122033,0.658264,-0.567184,0.494965,0.123482,0.648656,-0.54591,0.530309,0.123368,0.639346,-0.530076,0.557006,0.122789,0.621726,-0.516775,0.588558,0.121358,0.601162,-0.505759,0.618718,0.119594,0.585406,-0.497847,0.639881,0.118361,0.566186,-0.499065,0.656024,0.117113,0.547515,-0.491109,0.677524,0.1165,0.522499,-0.489585,0.69807,0.117442,0.493576,-0.489967,0.718551,0.11913,0.470841,-0.493755,0.731105,0.120962,0.460578,-0.504724,0.730152,0.122483,0.448767,-0.515318,0.730107,0.12327,0.437251,-0.53548,0.722546,0.122244,0.424858,-0.561047,0.710438,0.120131,0.415687,-0.578233,0.702034,0.117365,0.409197,-0.596599,0.690382,0.11391,0.401468,-0.611687,0.681662,0.11005,0.396182,-0.630861,0.667124,0.107466,0.396586,-0.64117,0.656978,0.105334,0.396135,-0.647851,0.650666,0.103142,0.406076,-0.660055,0.632005,0.100014,0.423415,-0.659919,0.620667,0.097998,0.438607,-0.667617,0.601591,0.096271,0.463269,-0.677233,0.571609,0.095428,0.485385,-0.680131,0.549384,0.095585,0.504131,-0.681815,0.530076,0.094534,0.516588,-0.688134,0.509518,0.095313,0.536326,-0.689164,0.487246,0.096147,0.570834,-0.682851,0.455921,0.099219,0.604265,-0.665014,0.438885,0.10177,0.629744,-0.649103,0.426719,0.104775,0.642942,-0.646033,0.411419,0.107319,0.657411,-0.639079,0.399235,0.108818,0.659516,-0.643127,0.389135,0.109245,0.670439,-0.642165,0.371665,0.108605,0.683463,-0.628799,0.370797,0.108467,0.685793,-0.623398,0.375584,0.107606,0.693571,-0.607478,0.387207,0.107012,0.706665,-0.582866,0.401113,0.105745,0.723972,-0.551316,0.414627,0.104273,0.737318,-0.512819,0.439749,0.103098,0.748424,-0.47208,0.465835,0.101665,0.739411,-0.445637,0.504657,0.101939,0.718432,-0.42158,0.553286,0.102648,0.701483,-0.407388,0.58477,0.103322,0.681921,-0.397827,0.613773,0.104687,0.665935,-0.388252,0.637018,0.105752,0.653162,-0.387494,0.65056,0.106881,0.649256,-0.38665,0.654957,0.106637,0.64358,-0.396869,0.654446,0.106092,0.644187,-0.402908,0.650145,0.10528,0.646328,-0.396569,0.651915,0.103975,0.654302,-0.390754,0.647456,0.103255,0.66114,-0.385366,0.643729,0.101712,0.659966,-0.383734,0.645905,0.099921,0.661875,-0.374047,0.649624,0.097044,0.654066,-0.367277,0.66129,0.095102,0.649808,-0.347803,0.675857,0.092741,0.641406,-0.331402,0.691933,0.091263,0.634811,-0.317739,0.704314,0.088482,0.633088,-0.305599,0.711202,0.086033,0.637368,-0.289266,0.714204,0.083786,0.645282,-0.266517,0.715947,0.080751,0.651677,-0.244522,0.718002,0.078215,0.65523,-0.218161,0.723243,0.074716,0.658455,-0.189016,0.728498,0.071269,0.664497,-0.151593,0.731754,0.069525,0.674133,-0.103448,0.73133,0.069191,0.674287,-0.052409,0.736607,0.068048,0.676151,-0.006122,0.736738,0.068034,0.671196,0.017843,0.741066,0.068181,0.673021,0.058973,0.737269,0.067901,0.683858,0.064432,0.726764,0.06904,0.699502,0.069566,0.711237,0.069604,0.712115,0.06604,0.69895,0.070068,0.713056,0.051391,0.699221,0.070546,0.719754,0.051579,0.692311,0.071736,0.727365,0.03027,0.685583,0.073675,0.732585,0.013482,0.680542,0.0755,0.736938,0.00639,0.67593,0.077551,0.737713,-0.007403,0.675073,0.081644,0.739876,-0.020514,0.672431,0.084573,0.752736,-0.036713,0.657298,0.088293,0.769498,-0.054757,0.636297,0.092679,0.772058,-0.089403,0.629233,0.098211,0.772385,-0.11342,0.624946,0.104406,0.772118,-0.130371,0.621963,0.11062,0.771647,-0.149825,0.618153,0.116901,0.773984,-0.163907,0.611624,0.121827,0.776861,-0.17057,0.60613,0.126332,0.784479,-0.183116,0.592504,0.129634,0.783975,-0.187198,0.591896,0.133768,0.779162,-0.200006,0.594058,0.136177,0.771305,-0.213627,0.599544,0.137468,0.755857,-0.225976,0.614504,0.138846,0.73917,-0.235717,0.630924,0.138278,0.724319,-0.237215,0.647372,0.137643,0.70889,-0.237856,0.664003,0.135633,0.703333,-0.234499,0.671069,0.134676,0.70103,-0.243428,0.670298,0.132941,0.702521,-0.243032,0.668879,0.12993,0.698186,-0.250519,0.670654,0.128192,0.696406,-0.254314,0.671076,0.126549,0.6998,-0.255979,0.6669,0.125468,0.688576,-0.26802,0.673816,0.125538,0.677311,-0.292834,0.674906,0.126221,0.669244,-0.318735,0.671208,0.127344,0.661124,-0.345243,0.666125,0.129339,0.66045,-0.369735,0.65353,0.131477,0.65808,-0.403308,0.635825,0.134913,0.663804,-0.437083,0.606896,0.137466,0.664676,-0.469085,0.58152,0.142119,0.662574,-0.496365,0.560907,0.146608,0.664059,-0.525415,0.531944,0.151517,0.656392,-0.55081,0.515517,0.156648,0.651949,-0.571994,0.497781,0.162071,0.646782,-0.591661,0.481259,0.166639,0.63848,-0.610156,0.469098,0.171232,0.626476,-0.628548,0.460928,0.174067,0.614468,-0.641564,0.459157,0.176698,0.601081,-0.656613,0.455588,0.177935,0.594014,-0.662177,0.456803,0.179562,0.593051,-0.663614,0.455967,0.180611,0.594717,-0.662751,0.455053,0.180382,0.598806,-0.656407,0.45887,0.179959,0.608859,-0.64293,0.464684,0.179211,0.624613,-0.624766,0.468536,0.176628,0.645757,-0.599286,0.473132,0.174982,0.658606,-0.581049,0.478143,0.172564,0.676754,-0.555062,0.483643,0.171015,0.691336,-0.533473,0.4873,0.169481,0.701797,-0.510168,0.497203,0.168924,0.70818,-0.492716,0.50568,0.168875,0.712301,-0.474296,0.517369,0.168408,0.716301,-0.451891,0.531703,0.168088,0.716985,-0.431752,0.547286,0.168621,0.71299,-0.418474,0.562606,0.16897,0.708324,-0.409113,0.575242,0.168919,0.70529,-0.400636,0.584856,0.168529,0.698766,-0.396013,0.595734,0.168455,0.692349,-0.396435,0.602904,0.168638,0.683734,-0.399993,0.610339,0.168953,0.676736,-0.404435,0.615191,0.168694,0.66542,-0.410584,0.623407,0.168356,0.658198,-0.414966,0.628155,0.168152,0.649409,-0.414469,0.63756,0.167423,0.645461,-0.408213,0.645556,0.165981,0.641623,-0.402607,0.652861,0.165326,0.634606,-0.394838,0.664363,0.16358,0.636741,-0.383947,0.668689,0.161852,0.637812,-0.374057,0.673259,0.160589,0.643038,-0.360915,0.675457,0.15907,0.643572,-0.349479,0.68094,0.157105,0.648668,-0.33569,0.683039,0.155649,0.661192,-0.322882,0.67718,0.154004,0.671376,-0.307075,0.674507,0.152146,0.680299,-0.303213,0.667274,0.151345,0.686681,-0.299829,0.662248,0.150429,0.696563,-0.29168,0.655533,0.151059,0.700562,-0.291935,0.651142,0.151051,0.704711,-0.293646,0.645875,0.151792,0.711835,-0.289354,0.639973,0.153345,0.720066,-0.278354,0.635629,0.154979,0.733085,-0.272893,0.62299,0.158297,0.741907,-0.265578,0.615664,0.160781,0.747942,-0.257119,0.611942,0.162909,0.753738,-0.248898,0.608218,0.165057,0.755086,-0.239924,0.610149,0.166667,0.757902,-0.222918,0.6131,0.167272,0.758603,-0.20521,0.618393,0.168381,0.753225,-0.187725,0.630406,0.168598,0.746527,-0.171934,0.642757,0.168201,0.73659,-0.15467,0.658416,0.164869,0.726061,-0.138761,0.673484,0.162332,0.71408,-0.127308,0.688391,0.161019,0.705249,-0.125477,0.697767,0.158734,0.702348,-0.122904,0.701144,0.156474,0.701191,-0.116386,0.70341,0.153526,0.701663,-0.12027,0.702285,0.150922,0.706345,-0.124306,0.696868,0.147468,0.713621,-0.127818,0.688772,0.144886,0.718281,-0.128256,0.68383,0.142152,0.720135,-0.145607,0.678384,0.139849,0.723363,-0.154119,0.673047,0.138636,0.728338,-0.171933,0.663297,0.13811,0.728122,-0.190523,0.658437,0.138164,0.72789,-0.210995,0.652424,0.139002,0.729623,-0.23233,0.643174,0.13942,0.724272,-0.254314,0.640901,0.139844,0.726201,-0.271894,0.631432,0.141132,0.735199,-0.289482,0.612929,0.141727,0.743994,-0.309827,0.592014,0.141964,0.748928,-0.332996,0.572905,0.143605,0.755807,-0.351482,0.552463,0.143826,0.764091,-0.363938,0.532648,0.145279,0.771007,-0.377091,0.513177,0.145579,0.778818,-0.390573,0.49081,0.14705,0.784811,-0.399334,0.473923,0.148757,0.784505,-0.409242,0.46591,0.150798,0.78217,-0.418228,0.461839,0.152352,0.776853,-0.429857,0.460132,0.154433,0.765905,-0.442524,0.466435,0.157861,0.755123,-0.454601,0.472364,0.161326,0.748316,-0.462936,0.475093,0.164662,0.740408,-0.466444,0.483968,0.167927,0.733968,-0.472385,0.488,0.170774,0.726972,-0.471303,0.499385,0.173326,0.725836,-0.466924,0.505117,0.174227,0.720804,-0.45986,0.518624,0.174877,0.711464,-0.452555,0.5376,0.173993,0.699529,-0.446687,0.55779,0.173997,0.686358,-0.445018,0.575215,0.173755,0.67136,-0.437631,0.598127,0.173517,0.654767,-0.43651,0.61704,0.173144,0.638134,-0.432399,0.637037,0.172658,0.620621,-0.427288,0.657461,0.171521,0.609072,-0.425172,0.669522,0.170784,0.600832,-0.422527,0.678581,0.168778,0.592283,-0.419783,0.687738,0.166792,0.590344,-0.416946,0.691122,0.164123,0.587219,-0.417928,0.693188,0.16162,0.580664,-0.417827,0.698748,0.159303,0.579509,-0.420872,0.69788,0.157473,0.572618,-0.420325,0.703872,0.155071,0.569579,-0.416555,0.708563,0.153456,0.565753,-0.409645,0.715622,0.15267,0.563522,-0.404197,0.720463,0.150572,0.562015,-0.393829,0.72735,0.14898,0.558748,-0.385072,0.73452,0.146525,0.551103,-0.367652,0.749078,0.144665,0.547955,-0.352465,0.758626,0.142729,0.546531,-0.335087,0.767476,0.141295,0.543532,-0.313945,0.778467,0.14002,0.551546,-0.29551,0.780046,0.139275,0.557904,-0.270324,0.784645,0.137612,0.575491,-0.247801,0.779362,0.136499,0.601353,-0.238346,0.762604,0.134477,0.636549,-0.229349,0.736345,0.132585,0.670767,-0.216267,0.709437,0.130912,0.700136,-0.205024,0.68394,0.130327,0.718013,-0.193558,0.668576,0.130998,0.730658,-0.181733,0.658113,0.132528,0.734412,-0.176527,0.655345,0.134961,0.733672,-0.171267,0.657566,0.138184,0.727894,-0.17436,0.663151,0.139757,0.718418,-0.18084,0.671693,0.143009,0.710619,-0.182203,0.679576,0.145908,0.705467,-0.189722,0.682878,0.147748,0.70265,-0.183889,0.687363,0.149438,0.702598,-0.185206,0.687063,0.150669,0.693832,-0.183386,0.696395,0.151225,0.691596,-0.176825,0.700306,0.152423,0.682848,-0.174989,0.709294,0.153024,0.673585,-0.170659,0.719138,0.154216,0.661547,-0.167221,0.731021,0.154643,0.642045,-0.159456,0.749901,0.154709]
}
},
{ "OrientationInterpolator":
{
"@DEF":"oi_Head",
"@key":[0,0.003509,0.007018,0.010526,0.014035,0.017544,0.021053,0.024561,0.02807,0.031579,0.035088,0.038596,0.042105,0.045614,0.049123,0.052632,0.05614,0.059649,0.063158,0.066667,0.070175,0.073684,0.077193,0.080702,0.084211,0.087719,0.091228,0.094737,0.098246,0.101754,0.105263,0.108772,0.112281,0.115789,0.119298,0.122807,0.126316,0.129825,0.133333,0.136842,0.140351,0.14386,0.147368,0.150877,0.154386,0.157895,0.161404,0.164912,0.168421,0.17193,0.175439,0.178947,0.182456,0.185965,0.189474,0.192982,0.196491,0.2,0.203509,0.207018,0.210526,0.214035,0.217544,0.221053,0.224561,0.22807,0.231579,0.235088,0.238596,0.242105,0.245614,0.249123,0.252632,0.25614,0.259649,0.263158,0.266667,0.270175,0.273684,0.277193,0.280702,0.284211,0.287719,0.291228,0.294737,0.298246,0.301754,0.305263,0.308772,0.312281,0.315789,0.319298,0.322807,0.326316,0.329825,0.333333,0.336842,0.340351,0.34386,0.347368,0.350877,0.354386,0.357895,0.361403,0.364912,0.368421,0.37193,0.375439,0.378947,0.382456,0.385965,0.389474,0.392982,0.396491,0.4,0.403509,0.407018,0.410526,0.414035,0.417544,0.421053,0.424561,0.42807,0.431579,0.435088,0.438596,0.442105,0.445614,0.449123,0.452632,0.45614,0.459649,0.463158,0.466667,0.470175,0.473684,0.477193,0.480702,0.484211,0.487719,0.491228,0.494737,0.498246,0.501754,0.505263,0.508772,0.512281,0.515789,0.519298,0.522807,0.526316,0.529825,0.533333,0.536842,0.540351,0.54386,0.547368,0.550877,0.554386,0.557895,0.561404,0.564912,0.568421,0.57193,0.575439,0.578947,0.582456,0.585965,0.589474,0.592982,0.596491,0.6,0.603509,0.607018,0.610526,0.614035,0.617544,0.621053,0.624561,0.62807,0.631579,0.635088,0.638596,0.642105,0.645614,0.649123,0.652632,0.65614,0.659649,0.663158,0.666667,0.670175,0.673684,0.677193,0.680702,0.684211,0.687719,0.691228,0.694737,0.698246,0.701754,0.705263,0.708772,0.712281,0.715789,0.719298,0.722807,0.726316,0.729825,0.733333,0.736842,0.740351,0.74386,0.747368,0.750877,0.754386,0.757895,0.761404,0.764912,0.768421,0.77193,0.775439,0.778947,0.782456,0.785965,0.789474,0.792982,0.796491,0.8,0.803509,0.807018,0.810526,0.814035,0.817544,0.821053,0.824561,0.82807,0.831579,0.835088,0.838596,0.842105,0.845614,0.849123,0.852632,0.85614,0.859649,0.863158,0.866667,0.870175,0.873684,0.877193,0.880702,0.884211,0.887719,0.891228,0.894737,0.898246,0.901754,0.905263,0.908772,0.912281,0.915789,0.919298,0.922807,0.926316,0.929825,0.933333,0.936842,0.940351,0.94386,0.947368,0.950877,0.954386,0.957895,0.961403,0.964912,0.968421,0.97193,0.975439,0.978947,0.982456,0.985965,0.989474,0.992982,0.996491,1],
"@keyValue":[0.740445,-0.567373,0.360318,0.052709,0.742987,-0.584736,0.325659,0.051496,0.752809,-0.600831,0.268852,0.050164,0.765849,-0.60173,0.226707,0.049748,0.77795,-0.593884,0.205172,0.050278,0.789287,-0.585818,0.183969,0.050844,0.798887,-0.577212,0.169134,0.052204,0.802601,-0.575713,0.156158,0.05492,0.82016,-0.551497,0.152279,0.05792,0.835214,-0.529823,0.147331,0.061145,0.837221,-0.530497,0.132795,0.062449,0.845141,-0.51566,0.140821,0.064711,0.844172,-0.516959,0.141871,0.067305,0.843448,-0.517409,0.14451,0.069648,0.835632,-0.530698,0.1417,0.071929,0.823542,-0.549419,0.141129,0.074869,0.806302,-0.571302,0.15327,0.077867,0.792978,-0.589516,0.153806,0.082645,0.768404,-0.61963,0.160044,0.085546,0.751251,-0.635938,0.176651,0.089854,0.736055,-0.651675,0.183149,0.094109,0.728249,-0.657505,0.193237,0.098309,0.724315,-0.653006,0.221248,0.102243,0.715765,-0.652438,0.249009,0.106299,0.714531,-0.641807,0.278441,0.110333,0.711368,-0.627841,0.315865,0.113662,0.700785,-0.613973,0.363232,0.116872,0.684417,-0.599,0.415659,0.119638,0.669268,-0.586252,0.456497,0.122033,0.658265,-0.567184,0.494965,0.123482,0.648656,-0.54591,0.530309,0.123368,0.639346,-0.530076,0.557006,0.122789,0.621726,-0.516775,0.588558,0.121358,0.601162,-0.505759,0.618718,0.119594,0.585406,-0.497847,0.639881,0.118361,0.566186,-0.499065,0.656024,0.117113,0.547507,-0.491101,0.677537,0.116498,0.522499,-0.489584,0.69807,0.117442,0.493576,-0.489966,0.718551,0.11913,0.470841,-0.493755,0.731105,0.120962,0.460578,-0.504724,0.730152,0.122483,0.448767,-0.515318,0.730107,0.12327,0.437251,-0.535479,0.722546,0.122244,0.424858,-0.561047,0.710438,0.120131,0.415687,-0.578233,0.702034,0.117365,0.409197,-0.596599,0.690383,0.11391,0.401468,-0.611687,0.681662,0.11005,0.396182,-0.630861,0.667124,0.107466,0.396586,-0.64117,0.656979,0.105334,0.396135,-0.647851,0.650666,0.103142,0.406076,-0.660055,0.632005,0.100014,0.423415,-0.659919,0.620667,0.097998,0.438607,-0.667617,0.601591,0.096271,0.463268,-0.677233,0.571609,0.095428,0.485385,-0.680131,0.549385,0.095585,0.504131,-0.681815,0.530076,0.094534,0.516587,-0.688134,0.509518,0.095313,0.536326,-0.689164,0.487246,0.096147,0.570834,-0.682851,0.455921,0.099219,0.604265,-0.665014,0.438885,0.10177,0.629743,-0.649103,0.426719,0.104775,0.642942,-0.646034,0.411419,0.107319,0.657411,-0.639079,0.399235,0.108818,0.659516,-0.643127,0.389136,0.109245,0.670439,-0.642165,0.371665,0.108605,0.683463,-0.628799,0.370797,0.108467,0.685793,-0.623398,0.375584,0.107606,0.693571,-0.607478,0.387207,0.107012,0.706665,-0.582866,0.401113,0.105745,0.723972,-0.551315,0.414627,0.104273,0.737317,-0.512819,0.439749,0.103098,0.748424,-0.47208,0.465835,0.101665,0.739411,-0.445637,0.504657,0.101939,0.718432,-0.42158,0.553286,0.102648,0.701483,-0.407388,0.584771,0.103322,0.681921,-0.397826,0.613773,0.104687,0.665935,-0.388252,0.637018,0.105752,0.653162,-0.387494,0.65056,0.106881,0.649256,-0.386649,0.654957,0.106637,0.64358,-0.396869,0.654446,0.106092,0.644187,-0.402909,0.650145,0.10528,0.646328,-0.396569,0.651915,0.103975,0.654302,-0.390754,0.647457,0.103255,0.66114,-0.385366,0.643729,0.101712,0.659966,-0.383733,0.645905,0.099921,0.661875,-0.374047,0.649624,0.097044,0.654067,-0.367277,0.66129,0.095102,0.649808,-0.347803,0.675857,0.092741,0.641406,-0.331402,0.691933,0.091263,0.63481,-0.317739,0.704314,0.088482,0.633088,-0.305599,0.711202,0.086033,0.637368,-0.289266,0.714204,0.083786,0.645282,-0.266516,0.715947,0.080751,0.651677,-0.244522,0.718002,0.078215,0.65523,-0.218161,0.723243,0.074716,0.658455,-0.189015,0.728498,0.071269,0.664497,-0.151593,0.731754,0.069525,0.674133,-0.103448,0.73133,0.069191,0.674287,-0.052409,0.736608,0.068052,0.676151,-0.006122,0.736738,0.068034,0.671196,0.017843,0.741066,0.068181,0.673021,0.058973,0.737269,0.067901,0.683858,0.064433,0.726765,0.06904,0.699502,0.069566,0.711237,0.069604,0.712115,0.06604,0.69895,0.070068,0.713056,0.051392,0.699221,0.070546,0.719754,0.051578,0.692311,0.071736,0.727365,0.03027,0.685583,0.073675,0.732585,0.013482,0.680542,0.0755,0.736938,0.00639,0.675931,0.077551,0.737714,-0.007402,0.675073,0.081644,0.739876,-0.020514,0.672431,0.084573,0.752736,-0.036713,0.657298,0.088293,0.769499,-0.054757,0.636297,0.092679,0.772057,-0.089403,0.629233,0.098211,0.772386,-0.113419,0.624945,0.104406,0.772118,-0.130371,0.621963,0.11062,0.771647,-0.149825,0.618154,0.116901,0.773984,-0.163907,0.611624,0.121827,0.776861,-0.17057,0.60613,0.126332,0.784479,-0.183116,0.592504,0.129634,0.783975,-0.187198,0.591896,0.133768,0.779162,-0.200006,0.594058,0.136177,0.771304,-0.213627,0.599544,0.137468,0.755857,-0.225976,0.614504,0.138846,0.73917,-0.235717,0.630924,0.138278,0.72432,-0.237215,0.647372,0.137643,0.70889,-0.237856,0.664003,0.135633,0.703332,-0.234499,0.671069,0.134676,0.70103,-0.243428,0.670298,0.132941,0.702521,-0.243032,0.668879,0.12993,0.698186,-0.250519,0.670654,0.128192,0.696406,-0.254314,0.671076,0.126549,0.6998,-0.255979,0.6669,0.125468,0.688576,-0.268021,0.673816,0.125538,0.677311,-0.292834,0.674906,0.126221,0.669244,-0.318735,0.671208,0.127344,0.661124,-0.345243,0.666125,0.129339,0.66045,-0.369735,0.65353,0.131477,0.65808,-0.403308,0.635825,0.134913,0.663804,-0.437083,0.606896,0.137466,0.664676,-0.469084,0.58152,0.142119,0.662574,-0.496365,0.560907,0.146608,0.664059,-0.525414,0.531944,0.151517,0.656392,-0.55081,0.515517,0.15665,0.651949,-0.571993,0.497781,0.162071,0.646781,-0.591661,0.48126,0.166639,0.63848,-0.610156,0.469098,0.171232,0.626476,-0.628548,0.460928,0.174067,0.614468,-0.641564,0.459158,0.176698,0.601082,-0.656613,0.455588,0.177935,0.594014,-0.662177,0.456803,0.179562,0.593051,-0.663614,0.455967,0.180611,0.594717,-0.662751,0.455053,0.180382,0.598806,-0.656407,0.45887,0.179959,0.608859,-0.64293,0.464684,0.179211,0.624613,-0.624766,0.468536,0.176628,0.645757,-0.599286,0.473132,0.174982,0.658606,-0.581049,0.478143,0.172564,0.676754,-0.555062,0.483643,0.171015,0.691335,-0.533473,0.4873,0.169481,0.701796,-0.510168,0.497203,0.168924,0.70818,-0.492716,0.50568,0.168875,0.712301,-0.474296,0.517369,0.168408,0.7163,-0.451891,0.531703,0.168088,0.716985,-0.431752,0.547286,0.168621,0.71299,-0.418474,0.562606,0.16897,0.708325,-0.409113,0.575242,0.168919,0.70529,-0.400636,0.584856,0.168529,0.698766,-0.396013,0.595735,0.168455,0.692349,-0.396435,0.602904,0.168638,0.683734,-0.399992,0.610339,0.168953,0.676736,-0.404435,0.615191,0.168694,0.665421,-0.410583,0.623408,0.168356,0.658198,-0.414966,0.628155,0.168152,0.649409,-0.414469,0.63756,0.167423,0.645461,-0.408213,0.645556,0.165981,0.641623,-0.402607,0.652861,0.165326,0.634606,-0.394838,0.664363,0.16358,0.636741,-0.383946,0.66869,0.161852,0.637812,-0.374057,0.673259,0.160589,0.643038,-0.360915,0.675457,0.15907,0.643572,-0.349479,0.68094,0.157105,0.648668,-0.33569,0.683039,0.155649,0.661192,-0.322882,0.67718,0.154004,0.671376,-0.307075,0.674507,0.152146,0.680299,-0.303213,0.667274,0.151345,0.686681,-0.299829,0.662248,0.150429,0.696563,-0.29168,0.655533,0.151059,0.700562,-0.291935,0.651142,0.151051,0.704711,-0.293646,0.645875,0.151792,0.711835,-0.289354,0.639973,0.153345,0.720066,-0.278354,0.635629,0.154979,0.733085,-0.272893,0.62299,0.158297,0.741907,-0.265578,0.615664,0.160781,0.747941,-0.257119,0.611942,0.162909,0.753737,-0.248898,0.608219,0.165057,0.755086,-0.239924,0.610149,0.166667,0.757902,-0.222918,0.613101,0.167272,0.758603,-0.20521,0.618393,0.168381,0.753225,-0.187725,0.630406,0.168598,0.746527,-0.171934,0.642757,0.168201,0.73659,-0.15467,0.658416,0.164869,0.726061,-0.138761,0.673484,0.162332,0.71408,-0.127307,0.688392,0.161019,0.705249,-0.125477,0.697767,0.158734,0.702348,-0.122904,0.701144,0.156474,0.701191,-0.116386,0.70341,0.153526,0.701663,-0.12027,0.702285,0.150922,0.706345,-0.124306,0.696868,0.147468,0.713621,-0.127818,0.688772,0.144886,0.718281,-0.128256,0.68383,0.142152,0.720135,-0.145607,0.678384,0.139849,0.723363,-0.154119,0.673047,0.138636,0.728338,-0.171933,0.663297,0.13811,0.728122,-0.190523,0.658437,0.138164,0.72789,-0.210995,0.652424,0.139002,0.729623,-0.23233,0.643174,0.13942,0.724272,-0.254314,0.640901,0.139844,0.726201,-0.271894,0.631432,0.141132,0.735199,-0.289482,0.612929,0.141727,0.743994,-0.309827,0.592014,0.141964,0.748928,-0.332996,0.572905,0.143605,0.755807,-0.351482,0.552464,0.143826,0.764091,-0.363937,0.532648,0.145279,0.771007,-0.377091,0.513177,0.145579,0.778818,-0.390573,0.49081,0.14705,0.784811,-0.399334,0.473923,0.148757,0.784505,-0.409242,0.46591,0.150798,0.78217,-0.418228,0.461839,0.152352,0.776853,-0.429857,0.460133,0.154433,0.765905,-0.442524,0.466435,0.157861,0.755123,-0.454601,0.472364,0.161326,0.748316,-0.462936,0.475094,0.164662,0.740408,-0.466444,0.483968,0.167927,0.733968,-0.472385,0.488,0.170774,0.726972,-0.471303,0.499385,0.173326,0.725836,-0.466924,0.505117,0.174227,0.720804,-0.45986,0.518624,0.174877,0.711464,-0.452555,0.5376,0.173993,0.699529,-0.446688,0.55779,0.173997,0.686358,-0.445018,0.575215,0.173755,0.67136,-0.43763,0.598127,0.173517,0.654767,-0.43651,0.61704,0.173144,0.638134,-0.432399,0.637037,0.172658,0.620621,-0.427288,0.657461,0.171521,0.609072,-0.425172,0.669522,0.170784,0.600832,-0.422527,0.678581,0.168778,0.592283,-0.419783,0.687738,0.166792,0.590344,-0.416946,0.691122,0.164123,0.587219,-0.417928,0.693188,0.16162,0.580664,-0.417827,0.698748,0.159303,0.579509,-0.420872,0.69788,0.157473,0.572618,-0.420325,0.703872,0.155071,0.569579,-0.416555,0.708563,0.153456,0.565753,-0.409645,0.715622,0.15267,0.563522,-0.404197,0.720463,0.150572,0.562014,-0.393829,0.72735,0.14898,0.558748,-0.385072,0.73452,0.146525,0.551103,-0.367652,0.749078,0.144665,0.547955,-0.352465,0.758626,0.142729,0.546531,-0.335087,0.767477,0.141295,0.543532,-0.313945,0.778467,0.14002,0.551546,-0.29551,0.780046,0.139275,0.557904,-0.270324,0.784645,0.137612,0.575491,-0.247801,0.779362,0.136499,0.601353,-0.238346,0.762604,0.134477,0.636549,-0.229349,0.736345,0.132585,0.670767,-0.216266,0.709437,0.130912,0.700136,-0.205024,0.68394,0.130327,0.718013,-0.193558,0.668576,0.130998,0.730658,-0.181733,0.658113,0.132528,0.734412,-0.176527,0.655345,0.134961,0.733672,-0.171267,0.657566,0.138184,0.727894,-0.17436,0.663151,0.139757,0.718418,-0.180841,0.671693,0.143009,0.710618,-0.182203,0.679576,0.145908,0.705467,-0.189721,0.682878,0.147748,0.70265,-0.183889,0.687363,0.149438,0.702598,-0.185206,0.687063,0.150669,0.693832,-0.183386,0.696395,0.151225,0.691596,-0.176825,0.700306,0.152423,0.682848,-0.174988,0.709294,0.153024,0.673585,-0.170659,0.719138,0.154216,0.661547,-0.167221,0.731021,0.154643,0.642045,-0.159456,0.749901,0.154709]
}
}
]
}
]
}
},
{ "Script":
{
"@DEF":"s03e13e80",
"@directOutput":true,
"field": [
{
"@name":"f03e07a38",
"@accessType":"inputOutput",
"@type":"SFFloat",
"@value":0
},
{
"@name":"pi_Hips",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "PositionInterpolator":
{
"@USE":"pi_Hips"
}
}
]
},
{
"@name":"Hips",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "HAnimJoint":
{
"@USE":"Hips"
}
}
]
},
{
"@name":"oi_Hips",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "OrientationInterpolator":
{
"@USE":"oi_Hips"
}
}
]
},
{
"@name":"oi_LeftHip",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "OrientationInterpolator":
{
"@USE":"oi_LeftHip"
}
}
]
},
{
"@name":"LeftHip",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "HAnimJoint":
{
"@USE":"LeftHip"
}
}
]
},
{
"@name":"oi_LeftKnee",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "OrientationInterpolator":
{
"@USE":"oi_LeftKnee"
}
}
]
},
{
"@name":"LeftKnee",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "HAnimJoint":
{
"@USE":"LeftKnee"
}
}
]
},
{
"@name":"oi_LeftAnkle",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "OrientationInterpolator":
{
"@USE":"oi_LeftAnkle"
}
}
]
},
{
"@name":"LeftAnkle",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "HAnimJoint":
{
"@USE":"LeftAnkle"
}
}
]
},
{
"@name":"oi_LeftAnkleEnd",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "OrientationInterpolator":
{
"@USE":"oi_LeftAnkleEnd"
}
}
]
},
{
"@name":"LeftAnkleEnd",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "HAnimJoint":
{
"@USE":"LeftAnkleEnd"
}
}
]
},
{
"@name":"oi_RightHip",
"@accessType":"inputOutput",
"@type":"SFNode",
"-children":[
{ "OrientationInterpolator":
{
"@USE":"oi_RightHip"
}
}
]
},
{
"@name":"RightHip",