Subversion Repository Public Repository

Nextrek

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
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
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
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
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteIWSecondI/tMillisecondIq�'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSSaC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_1003_SmallStep_IdleToIdle.fbxV�PSSrcDocumentUrlSKStringSUrlSSaC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_1003_SmallStep_IdleToIdle.fbx�$PSOriginalSCompoundSS�BPSOriginal|ApplicationVendorSKStringSSSAutodesk+EPSOriginal|ApplicationNameSKStringSSS
MotionBuilderx?PSOriginal|ApplicationVersionSKStringSSS2013�MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 21:14:47.6121PSOriginal|FileNameSKStringSSSE%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk�FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder8@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 21:14:47.612�FileIdR,�(� �ϴ��)�,��CreationTimeS2012-11-08 16:14:47:625b6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105�GlobalSettings�VersionI��Properties70�)PSUpAxisSintSIntegerSI!	-PS
UpAxisSignSintSIntegerSI[	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI
0PS
CoordAxisSignSintSIntegerSIP
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI�
8PSUnitScaleFactorSdoubleSNumberSD�?'@PSOriginalUnitScaleFactorSdoubleSNumberSD�?}HPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective�%PSTimeModeSenumSSI@3PS
TimeSpanStartSKTimeSTimeSL�2PSTimeSpanStopSKTimeSTimeSL���"�8PSCustomFrameRateSdoubleSNumberSD�$	Documents

CountI!DocumentL~�S	KFbxSceneSScene�
Properties70�
&PSSourceObjectSobjectSS�
APSActiveAnimStackNameSKStringSSS1003_smallStep
	RootNodeLH
References�CDefinitionsyVersionId�CountI��
ObjectTypeSGlobalSettings�CountI2
ObjectTypeSMotionBuilder_System%CountI�"

ObjectTypeSModeljCountIT�"PropertyTemplateSFbxNode�"Properties70�2PSQuaternionInterpolateSenumSSIEKPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDD�JPS
ScalingOffsetSVector3DSVectorSDDDLIPSScalingPivotSVector3DSVectorSDDD�.PSTranslationActiveSboolSSI�KPSTranslationMinSVector3DSVectorSDDD:KPSTranslationMaxSVector3DSVectorSDDDt,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI�,PSTranslationMinZSboolSSI",PSTranslationMaxXSboolSSI\,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSI6PSRotationSpaceForLimitOnlySboolSSI[;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD�;PSRotationStiffnessZSdoubleSNumberSD+0PSAxisLenSdoubleSNumberSD$@�HPSPreRotationSVector3DSVectorSDDD�IPSPostRotationSVector3DSVectorSDDD+PSRotationActiveSboolSSIgHPSRotationMinSVector3DSVectorSDDD�HPSRotationMaxSVector3DSVectorSDDD�)PSRotationMinXSboolSSI+)PSRotationMinYSboolSSIb)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI)PSRotationMaxZSboolSSI=(PSInheritTypeSenumSSIu*PS
ScalingActiveSboolSSI�GPS
ScalingMinSVector3DSVectorSDDDGPS
ScalingMaxSVector3DSVectorSD�?D�?D�?U(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI�(PSScalingMaxXSboolSSI-(PSScalingMaxYSboolSSIc(PSScalingMaxZSboolSSI�QPSGeometricTranslationSVector3DSVectorSDDDNPSGeometricRotationSVector3DSVectorSDDDyMPSGeometricScalingSVector3DSVectorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD6PS
MinDampRangeYSdoubleSNumberSDE6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD6PS
MaxDampRangeZSdoubleSNumberSDX9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD�9PSMinDampStrengthZSdoubleSNumberSD-9PSMaxDampStrengthXSdoubleSNumberSDt9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD7PSPreferedAngleXSdoubleSNumberSDE7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD�(PSLookAtPropertySobjectSS�*PSUpVectorPropertySobjectSS' !PSShowSboolSSIm 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����� #PSFreezeSboolSSI!#PSLODBoxSboolSSIq!NPSLcl TranslationSLcl TranslationSSADDD�!HPSLcl RotationSLcl RotationSSADDD"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?["2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI�=
ObjectTypeS
NodeAttribute#CountIT�=PropertyTemplateS	FbxCamera�=Properties70�#>PSPositionSVectorSSADDDI��#>PSUpVectorSVectorSSADD�?DE$FPSInterestPositionSVectorSSADDDy$&PSRollSRollSSAD�$:PSOpticalCenterXSOpticalCenterXSSAD	%:PSOpticalCenterYSOpticalCenterYSSAD[%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD�%1PSDisplayTurnTableIconSboolSSI
&*PS
UseMotionBlurSboolSSIM&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?�&,PSAspectRatioModeSenumSSI'4PSAspectWidthSdoubleSNumberSDt@S'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?�'/PSFilmOffsetXSNumberSSAD(/PSFilmOffsetYSNumberSSADT(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?�(8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?")9PSFilmSqueezeRatioSdoubleSNumberSD�?\),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?�)2PSFilmTranslateXSNumberSSAD*2PSFilmTranslateYSNumberSSADV*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD�*1PS
FilmRollValueSNumberSSAD
+*PS
FilmRollOrderSenumSSID+)PSApertureModeSenumSSIv+$PSGateFitSenumSSI�+4PSFieldOfViewSFieldOfViewSSAD�p9@�+6PSFieldOfViewXSFieldOfViewXSSADD@@,6PSFieldOfViewYSFieldOfViewYSSADD@},/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI�,*PS
UseFrameColorSboolSSI@-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?s-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI�-%PSShowGridSboolSSI..PSShowOpticalCenterSboolSSIR.'PS
ShowAzimutSboolSSI�.)PSShowTimeCodeSboolSSI�.&PS	ShowAudioSboolSSI/GPS
AudioColorSVector3DSVectorSDD�?DR/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@�/1PSAutoComputeClipPanesSboolSSI
0/PSViewCameraToLookAtSboolSSIO04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI�05PSBackPlaneDistanceSNumberSSAD@�@12PSBackPlaneDistanceModeSenumSSIY16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@�13PSFrontPlaneDistanceModeSenumSSI2%PSLockModeSboolSSIR23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI�2*PS
BackPlateCropSboolSSI3,PSBackPlateCenterSboolSSI=3/PSBackPlateKeepRatioSboolSSI�3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?�3*PS
ShowBackplateSboolSSI44PSBackPlaneOffsetXSNumberSSADG44PSBackPlaneOffsetYSNumberSSAD�45PSBackPlaneRotationSNumberSSAD�43PSBackPlaneScaleXSNumberSSAD�?53PSBackPlaneScaleYSNumberSSAD�?F5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI�5+PSFrontPlateCropSboolSSI�5-PSFrontPlateCenterSboolSSI560PSFrontPlateKeepRatioSboolSSI~6;PSForeground OpacitySdoubleSNumberSD�?�6+PSShowFrontplateSboolSSI�65PSFrontPlaneOffsetXSNumberSSAD=75PSFrontPlaneOffsetYSNumberSSAD�76PSFrontPlaneRotationSNumberSSAD�74PSFrontPlaneScaleXSNumberSSAD�?84PSFrontPlaneScaleYSNumberSSAD�??8,PSForeground TextureSobjectSSy8,PSDisplaySafeAreaSboolSSI�84PSDisplaySafeAreaOnRenderSboolSSI�81PSSafeAreaDisplayStyleSenumSSID9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?�9/PSUse2DMagnifierZoomSboolSSI�95PS2D Magnifier ZoomSNumberSSADY@:2PS2D Magnifier XSNumberSSADI@D:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI�:2PS	OrthoZoomSdoubleSNumberSD�?;0PSUseRealTimeDOFAndAASboolSSI;;,PSUseDepthOfFieldSboolSSIq;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@�;6PS
FocusDistanceSdoubleSNumberSDi@0<,PSUseAntialiasingSboolSSI|<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?�</PSAntialiasingMethodSenumSSI�<2PSUseAccumulationBufferSboolSSI<=5PSFrameSamplingCountSintSIntegerSIx=.PSFrameSamplingTypeSenumSSI�=APSColorSColorRGBSColorSD�������?D�������?D�������?C>
ObjectTypeSMotionBuilder_Generic6>CountIA
ObjectTypeSAnimationLayer�>CountI�@PropertyTemplateSFbxAnimLayer�@Properties70?*PSWeightSNumberSSADY@2?!PSMuteSboolSSIa?!PSSoloSboolSSI�?!PSLockSboolSSI�?APSColorSColorRGBSColorSD�������?D�������?D�������?@&PS	BlendModeSenumSSIV@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI�@5PSBlendModeBypassS	ULongLongSSL�B
ObjectTypeSAnimationStackAACountI�BPropertyTemplateSFbxAnimStack�BProperties70�A+PSDescriptionSKStringSSS�A0PS
LocalStartSKTimeSTimeSL<B/PS	LocalStopSKTimeSTimeSL~B4PSReferenceStartSKTimeSTimeSL�B3PS
ReferenceStopSKTimeSTimeSL8C
ObjectTypeSAnimationCurveNode+CCountI.�C
ObjectTypeSAnimationCurveyCCountI���
Objects�H<
NodeAttributeL���;S#Producer PerspectiveNodeAttributeSCameraGProperties70bD>PSPositionSVectorSSADD b@D�r@�DFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@DEDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?GE1PSDisplayTurnTableIconSboolSSI�E,PSFilmFormatIndexSenumSSI�E4PSFieldOfViewSFieldOfViewSSADD@F/PSFocalLengthSNumberSSAD �Z5@JF<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�F5PS2D Magnifier ZoomSNumberSSAD�F2PS2D Magnifier XSNumberSSAD
G2PS2D Magnifier YSNumberSSAD;G	TypeFlagsSCamera\GGeometryVersionI|�GPositionDD b@D�r@�GUpDD�?D�GLookAtD1�ʧ�U�<D�����V@DHShowInfoOnMovingI!H	ShowAudioISH
AudioColorDD�?DxH	CameraOrthoZoomD�?N6
NodeAttributeL�7�;SProducer FrontNodeAttributeSCamera�LProperties70:I>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D�IDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?J1PSDisplayTurnTableIconSboolSSIYJ,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@�J/PSFocalLengthSNumberSSAD �Z5@K2PS	NearPlaneSdoubleSNumberSD�?WK1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�K5PS2D Magnifier ZoomSNumberSSAD$L2PS2D Magnifier XSNumberSSADdL2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSI�L	TypeFlagsSCamera�LGeometryVersionI|"MPositionDD�V@DL�@LMUpDD�?DzMLookAtDD�V@D�MShowInfoOnMovingI�M	ShowAudioI�M
AudioColorDD�?DN	CameraOrthoZoomD�?�S5
NodeAttributeLXp�;SProducer BackNodeAttributeSCameraERProperties70�N>PSPositionSVectorSSADD�V@DL��#OFPSInterestPositionSVectorSSADD�V@DuODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSI�O,PSFilmFormatIndexSenumSSI0P4PSFieldOfViewSFieldOfViewSSADD@mP/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?�P1PSFarPlaneSdoubleSNumberSDL�@6Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?yQ5PS2D Magnifier ZoomSNumberSSAD�Q2PS2D Magnifier XSNumberSSAD�Q2PS2D Magnifier YSNumberSSAD8R1PSCameraProjectionTypeSenumSSIfR	TypeFlagsSCamera�RGeometryVersionI|�RPositionDD�V@DL���RUpDD�?DSLookAtDD�V@D1SShowInfoOnMovingILS	ShowAudioI~S
AudioColorDD�?D�S	CameraOrthoZoomD�?FY6
NodeAttributeL���;SProducer RightNodeAttributeSCamera�WProperties70eT>PSPositionSVectorSSADL�@D�V@D�TFPSInterestPositionSVectorSSADD�V@DUDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?JU1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSI�U4PSFieldOfViewSFieldOfViewSSADD@V/PSFocalLengthSNumberSSAD �Z5@CV2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@�V<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?W5PS2D Magnifier ZoomSNumberSSADOW2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSAD�W1PSCameraProjectionTypeSenumSSI�W	TypeFlagsSCameraXGeometryVersionI|MXPositionDL�@D�V@DwXUpDD�?D�XLookAtDD�V@D�XShowInfoOnMovingI�X	ShowAudioIY
AudioColorDD�?D9Y	CameraOrthoZoomD�?�^5
NodeAttributeL��;SProducer LeftNodeAttributeSCamerap]Properties70�Y>PSPositionSVectorSSADL��D�V@DNZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�Z1PSDisplayTurnTableIconSboolSSI[,PSFilmFormatIndexSenumSSI[[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@�[2PS	NearPlaneSdoubleSNumberSD�?\1PSFarPlaneSdoubleSNumberSDL�@a\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD�\2PS2D Magnifier XSNumberSSAD$]2PS2D Magnifier YSNumberSSADc]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|�]PositionDL��D�V@D^UpDD�?D:^LookAtDD�V@D\^ShowInfoOnMovingIw^	ShowAudioI�^
AudioColorDD�?D�^	CameraOrthoZoomD�?�d4
NodeAttributeL T�;SProducer TopNodeAttributeSCameraPcProperties70�_>PSPositionSVectorSSADDy�@D�_>PSUpVectorSVectorSSADDD�.`FPSInterestPositionSVectorSSADD�V@D�`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�`1PSDisplayTurnTableIconSboolSSI�`,PSFilmFormatIndexSenumSSI;a4PSFieldOfViewSFieldOfViewSSADD@xa/PSFocalLengthSNumberSSAD �Z5@�a2PS	NearPlaneSdoubleSNumberSD�?�a1PSFarPlaneSdoubleSNumberSDL�@Ab<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSAD�b2PS2D Magnifier XSNumberSSADc2PS2D Magnifier YSNumberSSADCc1PSCameraProjectionTypeSenumSSIqc	TypeFlagsSCamera�cGeometryVersionI|�cPositionDDy�@D�cUpDDD�dLookAtDD�V@D<dShowInfoOnMovingIWd	ShowAudioI�d
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeL�	�;SProducer BottomNodeAttributeSCamera3iProperties70qe>PSPositionSVectorSSADD��D�e>PSUpVectorSVectorSSAD�D�D�?fFPSInterestPositionSVectorSSADD�V@DcfDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI�f,PSFilmFormatIndexSenumSSIg4PSFieldOfViewSFieldOfViewSSADD@[g/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?�g1PSFarPlaneSdoubleSNumberSDL�@$h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?gh5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD�h2PS2D Magnifier YSNumberSSAD&i1PSCameraProjectionTypeSenumSSITi	TypeFlagsSCamerauiGeometryVersionI|�iPositionDD��D�iUpD�D�D�?�iLookAtDD�V@DjShowInfoOnMovingI:j	ShowAudioIlj
AudioColorDD�?D�j	CameraOrthoZoomD�?�k?
NodeAttributeL�4�9SCamera SwitcherNodeAttributeSCameraSwitcherXkProperties70Kk-PSCamera IndexSIntegerSSAIqkVersionIe�kNameSCamera SwitcherModel�kCameraIdI�k
CameraNameId�kCameraIndexName�l*
NodeAttributeL�݋<SNodeAttributeSLimbNode�lProperties70�lAPSColorSColorRGBSColorSD�?DD�l
	TypeFlagsSSkeletonYm*
NodeAttributeL�ۋ<SNodeAttributeSLimbNodeLm
	TypeFlagsSSkeleton�m*
NodeAttributeL�ڋ<SNodeAttributeSLimbNode�m
	TypeFlagsSSkeletonAn*
NodeAttributeL8ڋ<SNodeAttributeSLimbNode4n
	TypeFlagsSSkeleton�n*
NodeAttributeLxً<SNodeAttributeSLimbNode�n
	TypeFlagsSSkeleton)o*
NodeAttributeL�؋<SNodeAttributeSLimbNodeo
	TypeFlagsSSkeleton�o*
NodeAttributeL�׋<SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonp*
NodeAttributeL8׋<SNodeAttributeSLimbNodep
	TypeFlagsSSkeleton�p*
NodeAttributeL8֋<SNodeAttributeSLimbNodexp
	TypeFlagsSSkeleton�p*
NodeAttributeLxՋ<SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonmq*
NodeAttributeL�ԋ<SNodeAttributeSLimbNode`q
	TypeFlagsSSkeleton�q*
NodeAttributeL�Ӌ<SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletonUr*
NodeAttributeL8Ӌ<SNodeAttributeSLimbNodeHr
	TypeFlagsSSkeleton�r*
NodeAttributeL8ҋ<SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton=s*
NodeAttributeLxы<SNodeAttributeSLimbNode0s
	TypeFlagsSSkeleton�s*
NodeAttributeL�Ћ<SNodeAttributeSLimbNode�s
	TypeFlagsSSkeleton%t*
NodeAttributeL�ϋ<SNodeAttributeSLimbNodet
	TypeFlagsSSkeleton�t*
NodeAttributeL8ϋ<SNodeAttributeSLimbNode�t
	TypeFlagsSSkeleton
u*
NodeAttributeLx΋<SNodeAttributeSLimbNodeu
	TypeFlagsSSkeleton�u*
NodeAttributeL�͋<SNodeAttributeSLimbNodetu
	TypeFlagsSSkeleton�u*
NodeAttributeL�̋<SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletoniv*
NodeAttributeL8̋<SNodeAttributeSLimbNode\v
	TypeFlagsSSkeleton�v*
NodeAttributeLxˋ<SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonQw*
NodeAttributeLxʋ<SNodeAttributeSLimbNodeDw
	TypeFlagsSSkeleton�w*
NodeAttributeL�ɋ<SNodeAttributeSLimbNode�w
	TypeFlagsSSkeleton9x*
NodeAttributeL�ȋ<SNodeAttributeSLimbNode,x
	TypeFlagsSSkeleton�x*
NodeAttributeL�Nj<SNodeAttributeSLimbNode�x
	TypeFlagsSSkeleton!y*
NodeAttributeL8Nj<SNodeAttributeSLimbNodey
	TypeFlagsSSkeleton�y*
NodeAttributeLxƋ<SNodeAttributeSLimbNode�y
	TypeFlagsSSkeleton	z*
NodeAttributeL�ŋ<SNodeAttributeSLimbNode�y
	TypeFlagsSSkeleton}z*
NodeAttributeL�ċ<SNodeAttributeSLimbNodepz
	TypeFlagsSSkeleton�z*
NodeAttributeL8ċ<SNodeAttributeSLimbNode�z
	TypeFlagsSSkeletone{*
NodeAttributeLxË<SNodeAttributeSLimbNodeX{
	TypeFlagsSSkeleton�{*
NodeAttributeL�‹<SNodeAttributeSLimbNode�{
	TypeFlagsSSkeletonM|*
NodeAttributeL���<SNodeAttributeSLimbNode@|
	TypeFlagsSSkeleton�|*
NodeAttributeL8��<SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton5}*
NodeAttributeLx��<SNodeAttributeSLimbNode(}
	TypeFlagsSSkeleton�}*
NodeAttributeL���<SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton~*
NodeAttributeL���<SNodeAttributeSLimbNode~
	TypeFlagsSSkeleton�~*
NodeAttributeL8��<SNodeAttributeSLimbNode�~
	TypeFlagsSSkeleton*
NodeAttributeLx��<SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletony*
NodeAttributeL���<SNodeAttributeSLimbNodel
	TypeFlagsSSkeleton�*
NodeAttributeL���<SNodeAttributeSLimbNode�
	TypeFlagsSSkeletona�*
NodeAttributeL8��<SNodeAttributeSLimbNodeT�
	TypeFlagsSSkeletonՀ*
NodeAttributeLx��<SNodeAttributeSLimbNodeȀ
	TypeFlagsSSkeletonI�*
NodeAttributeL���<SNodeAttributeSLimbNode<�
	TypeFlagsSSkeleton��*
NodeAttributeL���<SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton1�*
NodeAttributeL8��<SNodeAttributeSLimbNode$�
	TypeFlagsSSkeleton��*
NodeAttributeLx��<SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL���<SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���<SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL8��<SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonu�*
NodeAttributeLx��<SNodeAttributeSLimbNodeh�
	TypeFlagsSSkeleton�*
NodeAttributeL���<SNodeAttributeSLimbNode܄
	TypeFlagsSSkeleton]�*
NodeAttributeL���<SNodeAttributeSLimbNodeP�
	TypeFlagsSSkeletonх*
NodeAttributeL8��<SNodeAttributeSLimbNodeą
	TypeFlagsSSkeletonE�*
NodeAttributeLx��<SNodeAttributeSLimbNode8�
	TypeFlagsSSkeleton��*
NodeAttributeL���<SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton-�*
NodeAttributeL���<SNodeAttributeSLimbNode �
	TypeFlagsSSkeleton��*
NodeAttributeL8��<SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLx��<SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���<SNodeAttributeSLimbNode|�
	TypeFlagsSSkeleton��*
NodeAttributeL���<SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonq�*
NodeAttributeL8��<SNodeAttributeSLimbNoded�
	TypeFlagsSSkeleton�*
NodeAttributeLx��<SNodeAttributeSLimbNode؉
	TypeFlagsSSkeletonY�*
NodeAttributeL���<SNodeAttributeSLimbNodeL�
	TypeFlagsSSkeleton͊*
NodeAttributeL���<SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonA�*
NodeAttributeL8��<SNodeAttributeSLimbNode4�
	TypeFlagsSSkeleton��*
NodeAttributeLx��<SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton)�*
NodeAttributeL���<SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���<SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL8��<SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeLx��<SNodeAttributeSLimbNodex�
	TypeFlagsSSkeleton��*
NodeAttributeL���<SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonm�*
NodeAttributeLxJ�<SNodeAttributeSLimbNode`�
	TypeFlagsSSkeleton�*
NodeAttributeLx�<SNodeAttributeSLimbNodeԎ
	TypeFlagsSSkeleton*�4ModelL.v)SProducer PerspectiveModelSCamera@�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?ݏ!PSShowSboolSSI#�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADD b@D�r@ՐHPSLcl RotationSLcl RotationSSAD�V�D����S@D�V��,PS	MultiTakeSintSIntegerSIJ�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI%�-PSPivotsVisibilitySenumSSIh�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI1�3PSRotationAxisVisibilitySboolSSIp�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIA�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIŔ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI0�*PS
TransformableSboolSSIf�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIڕ+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?V�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI�#PSCenterSboolSSI�&PS	KeepRatioSboolSSI]�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSIח*PSResetCameraSActionSSI��ShadingCW�CullingS
CullingOffm�.ModelL0Bv)SProducer FrontModelSCamera��VersionI�'�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�? �!PSShowSboolSSIf�8PSDefaultAttributeIndexSintSIntegerSI™NPSLcl TranslationSLcl TranslationSSADD�V@DL�@�HPSLcl RotationSLcl RotationSSADD�V@DR�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD-�/PSSetPreferedAngleSActionSSIh�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI3�2PSRotationRefVisibilitySboolSSIt�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI>�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ǝ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI;�%PSPickableSboolSSIs�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI[�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?̟%PSFitImageSboolSSI��!PSCropSboolSSI,�#PSCenterSboolSSI`�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI=�ShadingCW`�CullingS
CullingOff��-ModelL(=v)SProducer BackModelSCamerašVersionI�i�Properties703�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?b�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADD�V@DL��Z�HPSLcl RotationSLcl RotationSSAD�D�V�D��,PS	MultiTakeSintSIntegerSIϣ-PSManipulationModeSenumSSI2�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDo�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI5�:PSLocalTranslationRefVisibilitySboolSSIu�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI<�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIƦ8PSReferentialSizeSdoubleSNumberSD(@	�5PSDefaultKeyingGroupSintSIntegerSIJ�3PSDefaultKeyingGroupEnumSenumSSI}�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI&�-PSShowTrajectoriesSboolSSI_�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?ۨ0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI=�!PSCropSboolSSIn�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI$�4PSDisplay2DMagnifierFrameSboolSSI\�*PSResetCameraSActionSSI�ShadingCW��CullingS
CullingOff�.ModelLHQv)SProducer RightModelSCamera�VersionI���Properties70v�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIG�NPSLcl TranslationSLcl TranslationSSADL�@D�V@D��HPSLcl RotationSLcl RotationSSAD�f@D�D�f@׬,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIu�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI0�5PSRotationLimitsVisibilitySboolSSIx�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI8�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIï6PSGeometricCenterVisibilitySboolSSI	�8PSReferentialSizeSdoubleSNumberSD(@L�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI.�(PSCullingModeSenumSSIi�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?Q�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSI%�2PSForegroundTransparentSboolSSIg�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI³ShadingCW�CullingS
CullingOff޼-ModelL�v)SProducer LeftModelSCameraJ�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI-�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADL��D�V@Dõ,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIa�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIٶ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSId�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI$�1PSScalingRefVisibilitySboolSSIk�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@8�5PSDefaultKeyingGroupSintSIntegerSIy�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSIU�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI̺0PSAspectWSdoubleSNumberSD�?
�0PSAspectHSdoubleSNumberSD�?=�%PSFitImageSboolSSIl�!PSCropSboolSSI��#PSCenterSboolSSIѻ&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIS�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCWѼCullingS
CullingOff�,ModelL3v)SProducer TopModelSCamera5�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?ҽ!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIt�NPSLcl TranslationSLcl TranslationSSADDy�@DʾHPSLcl RotationSLcl RotationSSAD�V�D�D�V��,PS	MultiTakeSintSIntegerSI?�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD߿/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI]�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI&�3PSRotationAxisVisibilitySboolSSIe�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI6�8PSReferentialSizeSdoubleSNumberSD(@y�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI%�*PS
TransformableSboolSSI[�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI
�0PSAspectWSdoubleSNumberSD�?K�0PSAspectHSdoubleSNumberSD�?~�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSIR�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW�CullingS
CullingOffc�/ModelLPVv)SProducer BottomModelSCameray�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI\�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD��D�HPSLcl RotationSLcl RotationSSAD�V@D�D�V@H�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD#�/PSSetPreferedAngleSActionSSI^�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI)�2PSRotationRefVisibilitySboolSSIj�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI4�6PSGeometricCenterVisibilitySboolSSIz�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI1�%PSPickableSboolSSIi�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSIQ�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI"�#PSCenterSboolSSIV�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI3�ShadingCWV�CullingS
CullingOff��7ModelL�^�9SCamera SwitcherModelSCameraSwitcher��VersionI���Properties703�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?b�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI;�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIC�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@W�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI9�(PSCullingModeSenumSSIt�-PSShowTrajectoriesSboolSSI��ShadingCW��CullingS
CullingOff��+ModelL�c�9SReferenceModelSLimbNode�VersionI���Properties70o�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD@�8PSDefaultAttributeIndexSintSIntegerSI��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIk�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI&�5PSRotationLimitsVisibilitySboolSSIn�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI.�1PSScalingRefVisibilitySboolSSIu�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@B�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI$�(PSCullingModeSenumSSI_�-PSShowTrajectoriesSboolSSI��3PSlockInfluenceWeightsSBoolSSAUI��ShadingCY��CullingS
CullingOffc�&ModelL�h�9SHipsModelSLimbNodeD�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI!�GPS
ScalingMaxSVector3DSVectorSDDDg�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�!@D���W@D`d�,@�IPSLcl RotationSLcl RotationSSA+D��1f�D�xJ�D �sf@p�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI8�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIV�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI^�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI/�8PSReferentialSizeSdoubleSNumberSD(@r�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIT�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@3�ShadingCYV�CullingS
CullingOff��'ModelL�m�9SSpineModelSLimbNode��VersionI���Properties70�+PSRotationActiveSboolSSI=�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI4�NPSLcl TranslationSLcl TranslationSSAD@�D�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D ��D�a��D�p߿��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?3�EPSVisibility InheritanceSVisibility InheritanceSSIm�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDH�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIN�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIY�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI#�3PSDefaultKeyingGroupEnumSenumSSIV�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI/�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffC�'ModelL�r�9SChestModelSLimbNode%�VersionI���Properties70w�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDH�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADA��DA0@D�2ſ��IPSLcl RotationSLcl RotationSSA+D��
%@DY�D@��?P�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI{�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI6�5PSRotationLimitsVisibilitySboolSSI~�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI>�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@R�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI4�(PSCullingModeSenumSSIo�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY6�CullingS
CullingOff��&ModelLx�9SNeckModelSLimbNode��VersionI�l�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIq�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���عD`��9@D <�	�j�IPSLcl RotationSLcl RotationSSA+D��@D�H�?D@�r����GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIL�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD'�/PSSetPreferedAngleSActionSSIb�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI-�2PSRotationRefVisibilitySboolSSIn�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI8�6PSGeometricCenterVisibilitySboolSSI~�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI5�%PSPickableSboolSSIm�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI_�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff!&ModelL}�9SHeadModelSLimbNode�VersionI��Properties70U�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD&8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���?;D 4� @D s�?�IPSLcl RotationSLcl RotationSSA+D�0��D �2�?D@_�?.GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIYUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI\:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIc9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@05PSDefaultKeyingGroupSintSIntegerSIq3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIM-PSShowTrajectoriesSboolSSI}"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�)ModelL��9SLeftEyeModelSLimbNodeuVersionI�MProperties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIRGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@K	IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�	GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�	EPSVisibility InheritanceSVisibility InheritanceSSI-
,PS	MultiTakeSintSIntegerSIh
-PSManipulationModeSenumSSI�
UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSIC-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSIO3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI
6PSGeometricCenterVisibilitySboolSSI_
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI�
3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIN*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI@CPSLimbLength 1SNumberSSAUD�?DDY@cShadingCY�CullingS
CullingOff>*ModelL��9SRightEyeModelSLimbNode�VersionI��Properties709*PS
RotationOrderSenumSSIr+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDC8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼKGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIvUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI15PSRotationLimitsVisibilitySboolSSIy:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI91PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI
8PSReferentialSizeSdoubleSNumberSD(@M5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI/(PSCullingModeSenumSSIj-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY1CullingS
CullingOff� %ModelL ��9S
JawModelSLimbNode�VersionI�� Properties70�+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIkGPS
ScalingMaxSVector3DSVectorSDDD�7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@�8PSDefaultAttributeIndexSintSIntegerSIRNPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?QEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI)UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI,:PSLocalTranslationRefVisibilitySboolSSIl2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI39PSHierarchicalCenterVisibilitySboolSSIw6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIA3PSDefaultKeyingGroupEnumSenumSSIt%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI -PSShowTrajectoriesSboolSSIM "PSliwSBoolSSAUI� CPSLimbLength 1SNumberSSAUD�?DDY@� ShadingCY� CullingS
CullingOfff),ModelL(��9STongueBackModelSLimbNodeH!VersionI� )Properties70�!+PSRotationActiveSboolSSI�!(PSInheritTypeSenumSSI%"GPS
ScalingMaxSVector3DSVectorSDDDk"8PSDefaultAttributeIndexSintSIntegerSI�"NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?#IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼs#GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�#EPSVisibility InheritanceSVisibility InheritanceSSI$,PS	MultiTakeSintSIntegerSI;$-PSManipulationModeSenumSSI�$UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�$/PSSetPreferedAngleSActionSSI%-PSPivotsVisibilitySenumSSIY%5PSRotationLimitsVisibilitySboolSSI�%:PSLocalTranslationRefVisibilitySboolSSI�%2PSRotationRefVisibilitySboolSSI"&3PSRotationAxisVisibilitySboolSSIa&1PSScalingRefVisibilitySboolSSI�&9PSHierarchicalCenterVisibilitySboolSSI�&6PSGeometricCenterVisibilitySboolSSI2'8PSReferentialSizeSdoubleSNumberSD(@u'5PSDefaultKeyingGroupSintSIntegerSI�'3PSDefaultKeyingGroupEnumSenumSSI�'%PSPickableSboolSSI!(*PS
TransformableSboolSSIW((PSCullingModeSenumSSI�(-PSShowTrajectoriesSboolSSI�("PSliwSBoolSSAUI)CPSLimbLength 1SNumberSSAUD�?DDY@6)ShadingCYY)CullingS
CullingOff�1+ModelL0��9STongueTipModelSLimbNode�)VersionI��1Properties70*+PSRotationActiveSboolSSID*(PSInheritTypeSenumSSI�*GPS
ScalingMaxSVector3DSVectorSDDD�*8PSDefaultAttributeIndexSintSIntegerSI;+NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@�+IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�+GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?:,EPSVisibility InheritanceSVisibility InheritanceSSIt,,PS	MultiTakeSintSIntegerSI�,-PSManipulationModeSenumSSI-UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDO-/PSSetPreferedAngleSActionSSI�--PSPivotsVisibilitySenumSSI�-5PSRotationLimitsVisibilitySboolSSI.:PSLocalTranslationRefVisibilitySboolSSIU.2PSRotationRefVisibilitySboolSSI�.3PSRotationAxisVisibilitySboolSSI�.1PSScalingRefVisibilitySboolSSI/9PSHierarchicalCenterVisibilitySboolSSI`/6PSGeometricCenterVisibilitySboolSSI�/8PSReferentialSizeSdoubleSNumberSD(@�/5PSDefaultKeyingGroupSintSIntegerSI*03PSDefaultKeyingGroupEnumSenumSSI]0%PSPickableSboolSSI�0*PS
TransformableSboolSSI�0(PSCullingModeSenumSSI1-PSShowTrajectoriesSboolSSI61"PSliwSBoolSSAUI�1CPSLimbLength 1SNumberSSAUD�?DDY@�1ShadingCY�1CullingS
CullingOffQ:.ModelL��:SLeftLipLowerModelSLimbNode32VersionI�:Properties70�2+PSRotationActiveSboolSSI�2(PSInheritTypeSenumSSI3GPS
ScalingMaxSVector3DSVectorSDDDV38PSDefaultAttributeIndexSintSIntegerSI�3NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @	4IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ^4GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�4EPSVisibility InheritanceSVisibility InheritanceSSI�4,PS	MultiTakeSintSIntegerSI&5-PSManipulationModeSenumSSI�5UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�5/PSSetPreferedAngleSActionSSI6-PSPivotsVisibilitySenumSSID65PSRotationLimitsVisibilitySboolSSI�6:PSLocalTranslationRefVisibilitySboolSSI�62PSRotationRefVisibilitySboolSSI
73PSRotationAxisVisibilitySboolSSIL71PSScalingRefVisibilitySboolSSI�79PSHierarchicalCenterVisibilitySboolSSI�76PSGeometricCenterVisibilitySboolSSI88PSReferentialSizeSdoubleSNumberSD(@`85PSDefaultKeyingGroupSintSIntegerSI�83PSDefaultKeyingGroupEnumSenumSSI�8%PSPickableSboolSSI9*PS
TransformableSboolSSIB9(PSCullingModeSenumSSI}9-PSShowTrajectoriesSboolSSI�9"PSliwSBoolSSAUI�9CPSLimbLength 1SNumberSSAUD�?DDY@!:ShadingCYD:CullingS
CullingOff�B(ModelL��:S
JawENDModelSLimbNode�:VersionI��BProperties70�:*PS
RotationOrderSenumSSI.;+PSRotationActiveSboolSSId;(PSInheritTypeSenumSSI�;GPS
ScalingMaxSVector3DSVectorSDDD�;8PSDefaultAttributeIndexSintSIntegerSI[<NPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�<IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ=GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?Z=EPSVisibility InheritanceSVisibility InheritanceSSI�=,PS	MultiTakeSintSIntegerSI�=-PSManipulationModeSenumSSI2>UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDo>/PSSetPreferedAngleSActionSSI�>-PSPivotsVisibilitySenumSSI�>5PSRotationLimitsVisibilitySboolSSI5?:PSLocalTranslationRefVisibilitySboolSSIu?2PSRotationRefVisibilitySboolSSI�?3PSRotationAxisVisibilitySboolSSI�?1PSScalingRefVisibilitySboolSSI<@9PSHierarchicalCenterVisibilitySboolSSI�@6PSGeometricCenterVisibilitySboolSSI�@8PSReferentialSizeSdoubleSNumberSD(@	A5PSDefaultKeyingGroupSintSIntegerSIJA3PSDefaultKeyingGroupEnumSenumSSI}A%PSPickableSboolSSI�A*PS
TransformableSboolSSI�A(PSCullingModeSenumSSI&B-PSShowTrajectoriesSboolSSIVB"PSliwSBoolSSAUI�BCPSLimbLength 1SNumberSSAUD�?DDY@�BShadingCY�BCullingS
CullingOffrK/ModelL��:SRightLipLowerModelSLimbNodeTCVersionI�,KProperties70�C+PSRotationActiveSboolSSI�C(PSInheritTypeSenumSSI1DGPS
ScalingMaxSVector3DSVectorSDDDwD8PSDefaultAttributeIndexSintSIntegerSI�DNPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @*EIPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼEGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EEPSVisibility InheritanceSVisibility InheritanceSSIF,PS	MultiTakeSintSIntegerSIGF-PSManipulationModeSenumSSI�FUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�F/PSSetPreferedAngleSActionSSI"G-PSPivotsVisibilitySenumSSIeG5PSRotationLimitsVisibilitySboolSSI�G:PSLocalTranslationRefVisibilitySboolSSI�G2PSRotationRefVisibilitySboolSSI.H3PSRotationAxisVisibilitySboolSSImH1PSScalingRefVisibilitySboolSSI�H9PSHierarchicalCenterVisibilitySboolSSI�H6PSGeometricCenterVisibilitySboolSSI>I8PSReferentialSizeSdoubleSNumberSD(@�I5PSDefaultKeyingGroupSintSIntegerSI�I3PSDefaultKeyingGroupEnumSenumSSI�I%PSPickableSboolSSI-J*PS
TransformableSboolSSIcJ(PSCullingModeSenumSSI�J-PSShowTrajectoriesSboolSSI�J"PSliwSBoolSSAUIKCPSLimbLength 1SNumberSSAUD�?DDY@BKShadingCYeKCullingS
CullingOff�S0ModelL��:SRightLipCornerModelSLimbNode�KVersionI��SProperties70L+PSRotationActiveSboolSSIUL(PSInheritTypeSenumSSI�LGPS
ScalingMaxSVector3DSVectorSDDD�L8PSDefaultAttributeIndexSintSIntegerSILMNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@�MIPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�MGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?KNEPSVisibility InheritanceSVisibility InheritanceSSI�N,PS	MultiTakeSintSIntegerSI�N-PSManipulationModeSenumSSI#OUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD`O/PSSetPreferedAngleSActionSSI�O-PSPivotsVisibilitySenumSSI�O5PSRotationLimitsVisibilitySboolSSI&P:PSLocalTranslationRefVisibilitySboolSSIfP2PSRotationRefVisibilitySboolSSI�P3PSRotationAxisVisibilitySboolSSI�P1PSScalingRefVisibilitySboolSSI-Q9PSHierarchicalCenterVisibilitySboolSSIqQ6PSGeometricCenterVisibilitySboolSSI�Q8PSReferentialSizeSdoubleSNumberSD(@�Q5PSDefaultKeyingGroupSintSIntegerSI;R3PSDefaultKeyingGroupEnumSenumSSInR%PSPickableSboolSSI�R*PS
TransformableSboolSSI�R(PSCullingModeSenumSSIS-PSShowTrajectoriesSboolSSIGS"PSliwSBoolSSAUI�SCPSLimbLength 1SNumberSSAUD�?DDY@�SShadingCY�SCullingS
CullingOffc\/ModelL��:SLeftLipCornerModelSLimbNodeETVersionI�\Properties70�T+PSRotationActiveSboolSSI�T(PSInheritTypeSenumSSI"UGPS
ScalingMaxSVector3DSVectorSDDDhU8PSDefaultAttributeIndexSintSIntegerSI�UNPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@VIPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼpVGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�VEPSVisibility InheritanceSVisibility InheritanceSSI�V,PS	MultiTakeSintSIntegerSI8W-PSManipulationModeSenumSSI�WUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�W/PSSetPreferedAngleSActionSSIX-PSPivotsVisibilitySenumSSIVX5PSRotationLimitsVisibilitySboolSSI�X:PSLocalTranslationRefVisibilitySboolSSI�X2PSRotationRefVisibilitySboolSSIY3PSRotationAxisVisibilitySboolSSI^Y1PSScalingRefVisibilitySboolSSI�Y9PSHierarchicalCenterVisibilitySboolSSI�Y6PSGeometricCenterVisibilitySboolSSI/Z8PSReferentialSizeSdoubleSNumberSD(@rZ5PSDefaultKeyingGroupSintSIntegerSI�Z3PSDefaultKeyingGroupEnumSenumSSI�Z%PSPickableSboolSSI[*PS
TransformableSboolSSIT[(PSCullingModeSenumSSI�[-PSShowTrajectoriesSboolSSI�["PSliwSBoolSSAUI\CPSLimbLength 1SNumberSSAUD�?DDY@3\ShadingCYV\CullingS
CullingOff�d.ModelL�:SLeftLipUpperModelSLimbNode�\VersionI��dProperties70]+PSRotationActiveSboolSSID](PSInheritTypeSenumSSI�]GPS
ScalingMaxSVector3DSVectorSDDD�]8PSDefaultAttributeIndexSintSIntegerSI;^NPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@�^IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�^GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?:_EPSVisibility InheritanceSVisibility InheritanceSSIt_,PS	MultiTakeSintSIntegerSI�_-PSManipulationModeSenumSSI`UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDO`/PSSetPreferedAngleSActionSSI�`-PSPivotsVisibilitySenumSSI�`5PSRotationLimitsVisibilitySboolSSIa:PSLocalTranslationRefVisibilitySboolSSIUa2PSRotationRefVisibilitySboolSSI�a3PSRotationAxisVisibilitySboolSSI�a1PSScalingRefVisibilitySboolSSIb9PSHierarchicalCenterVisibilitySboolSSI`b6PSGeometricCenterVisibilitySboolSSI�b8PSReferentialSizeSdoubleSNumberSD(@�b5PSDefaultKeyingGroupSintSIntegerSI*c3PSDefaultKeyingGroupEnumSenumSSI]c%PSPickableSboolSSI�c*PS
TransformableSboolSSI�c(PSCullingModeSenumSSId-PSShowTrajectoriesSboolSSI6d"PSliwSBoolSSAUI�dCPSLimbLength 1SNumberSSAUD�?DDY@�dShadingCY�dCullingS
CullingOffPm-ModelL �:SLeftNostrilModelSLimbNode2eVersionI�
mProperties70�e+PSRotationActiveSboolSSI�e(PSInheritTypeSenumSSIfGPS
ScalingMaxSVector3DSVectorSDDDUf8PSDefaultAttributeIndexSintSIntegerSI�fNPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@gIPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ]gGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�gEPSVisibility InheritanceSVisibility InheritanceSSI�g,PS	MultiTakeSintSIntegerSI%h-PSManipulationModeSenumSSI�hUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�h/PSSetPreferedAngleSActionSSIi-PSPivotsVisibilitySenumSSICi5PSRotationLimitsVisibilitySboolSSI�i:PSLocalTranslationRefVisibilitySboolSSI�i2PSRotationRefVisibilitySboolSSIj3PSRotationAxisVisibilitySboolSSIKj1PSScalingRefVisibilitySboolSSI�j9PSHierarchicalCenterVisibilitySboolSSI�j6PSGeometricCenterVisibilitySboolSSIk8PSReferentialSizeSdoubleSNumberSD(@_k5PSDefaultKeyingGroupSintSIntegerSI�k3PSDefaultKeyingGroupEnumSenumSSI�k%PSPickableSboolSSIl*PS
TransformableSboolSSIAl(PSCullingModeSenumSSI|l-PSShowTrajectoriesSboolSSI�l"PSliwSBoolSSAUI�lCPSLimbLength 1SNumberSSAUD�?DDY@ mShadingCYCmCullingS
CullingOff�u+ModelL%�:SLeftCheekModelSLimbNode�mVersionI�~uProperties70�m+PSRotationActiveSboolSSI.n(PSInheritTypeSenumSSI�nGPS
ScalingMaxSVector3DSVectorSDDD�n8PSDefaultAttributeIndexSintSIntegerSI%oNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@|oIPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�oGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?$pEPSVisibility InheritanceSVisibility InheritanceSSI^p,PS	MultiTakeSintSIntegerSI�p-PSManipulationModeSenumSSI�pUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD9q/PSSetPreferedAngleSActionSSItq-PSPivotsVisibilitySenumSSI�q5PSRotationLimitsVisibilitySboolSSI�q:PSLocalTranslationRefVisibilitySboolSSI?r2PSRotationRefVisibilitySboolSSI�r3PSRotationAxisVisibilitySboolSSI�r1PSScalingRefVisibilitySboolSSIs9PSHierarchicalCenterVisibilitySboolSSIJs6PSGeometricCenterVisibilitySboolSSI�s8PSReferentialSizeSdoubleSNumberSD(@�s5PSDefaultKeyingGroupSintSIntegerSIt3PSDefaultKeyingGroupEnumSenumSSIGt%PSPickableSboolSSIt*PS
TransformableSboolSSI�t(PSCullingModeSenumSSI�t-PSShowTrajectoriesSboolSSI u"PSliwSBoolSSAUIquCPSLimbLength 1SNumberSSAUD�?DDY@�uShadingCY�uCullingS
CullingOff>~1ModelL*�:SLeftEyelidLowerModelSLimbNode vVersionI��}Properties70rv+PSRotationActiveSboolSSI�v(PSInheritTypeSenumSSI�vGPS
ScalingMaxSVector3DSVectorSDDDCw8PSDefaultAttributeIndexSintSIntegerSI�wNPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@�wIPSLcl RotationSLcl RotationSSA+D�D����<D��FǼKxGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�xEPSVisibility InheritanceSVisibility InheritanceSSI�x,PS	MultiTakeSintSIntegerSIy-PSManipulationModeSenumSSIvyUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�y/PSSetPreferedAngleSActionSSI�y-PSPivotsVisibilitySenumSSI1z5PSRotationLimitsVisibilitySboolSSIyz:PSLocalTranslationRefVisibilitySboolSSI�z2PSRotationRefVisibilitySboolSSI�z3PSRotationAxisVisibilitySboolSSI9{1PSScalingRefVisibilitySboolSSI�{9PSHierarchicalCenterVisibilitySboolSSI�{6PSGeometricCenterVisibilitySboolSSI
|8PSReferentialSizeSdoubleSNumberSD(@M|5PSDefaultKeyingGroupSintSIntegerSI�|3PSDefaultKeyingGroupEnumSenumSSI�|%PSPickableSboolSSI�|*PS
TransformableSboolSSI/}(PSCullingModeSenumSSIj}-PSShowTrajectoriesSboolSSI�}"PSliwSBoolSSAUI�}CPSLimbLength 1SNumberSSAUD�?DDY@~ShadingCY1~CullingS
CullingOff��1ModelL /�:SLeftEyelidUpperModelSLimbNode�~VersionI�r�Properties70�~+PSRotationActiveSboolSSI"(PSInheritTypeSenumSSIwGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @p�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼŀGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIR�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD-�/PSSetPreferedAngleSActionSSIh�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI3�2PSRotationRefVisibilitySboolSSIt�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI>�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@DŽ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI;�%PSPickableSboolSSIs�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIe�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff0�/ModelL(4�:SLeftInnerBrowModelSLimbNode�VersionI��Properties70d�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD5�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ=�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSIʉ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIh�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI#�5PSRotationLimitsVisibilitySboolSSIk�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI+�1PSScalingRefVisibilitySboolSSIr�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@?�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI!�(PSCullingModeSenumSSI\�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIݎCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY#�CullingS
CullingOff�0ModelL09�:SLeftIOuterBrowModelSLimbNode��VersionI���Properties70܏*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSIK�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIB�NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@��IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?A�EPSVisibility InheritanceSVisibility InheritanceSSI{�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDV�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIԓ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI\�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIܔ1PSScalingRefVisibilitySboolSSI#�9PSHierarchicalCenterVisibilitySboolSSIg�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI1�3PSDefaultKeyingGroupEnumSenumSSId�%PSPickableSboolSSI��*PS
TransformableSboolSSIҖ(PSCullingModeSenumSSI
�-PSShowTrajectoriesSboolSSI=�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYԗCullingS
CullingOffZ�0ModelLiV:SRightInnerBrowModelSLimbNode<�VersionI��Properties70��+PSRotationActiveSboolSSIĘ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD_�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼg�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI/�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDϛ/PSSetPreferedAngleSActionSSI
�-PSPivotsVisibilitySenumSSIM�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI՜2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIU�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI&�8PSReferentialSizeSdoubleSNumberSD(@i�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIݞ%PSPickableSboolSSI�*PS
TransformableSboolSSIK�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@*�ShadingCYM�CullingS
CullingOff�1ModelLnV:SRightIOuterBrowModelSLimbNode��VersionI�ƨProperties70�*PS
RotationOrderSenumSSI@�+PSRotationActiveSboolSSIv�(PSInheritTypeSenumSSIˡGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIm�NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@ĢIPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?l�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSID�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIG�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIȥ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIN�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIئ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI\�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIǧ*PS
TransformableSboolSSI��(PSCullingModeSenumSSI8�-PSShowTrajectoriesSboolSSIh�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ܨShadingCY��CullingS
CullingOff��2ModelLsV:SRightEyelidUpperModelSLimbNodei�VersionI�A�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIF�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @?�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI!�,PS	MultiTakeSintSIntegerSI\�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI7�-PSPivotsVisibilitySenumSSIz�5PSRotationLimitsVisibilitySboolSSI­:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIC�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIɮ9PSHierarchicalCenterVisibilitySboolSSI
�6PSGeometricCenterVisibilitySboolSSIS�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIׯ3PSDefaultKeyingGroupEnumSenumSSI
�%PSPickableSboolSSIB�*PS
TransformableSboolSSIx�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI4�CPSLimbLength 1SNumberSSAUD�?DDY@W�ShadingCYz�CullingS
CullingOff�2ModelLxV:SRightEyelidLowerModelSLimbNode�VersionI���Properties706�+PSRotationActiveSboolSSIl�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIc�NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@��IPSLcl RotationSLcl RotationSSA+D�D����<D��FǼ�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?b�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI״-PSManipulationModeSenumSSI:�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDw�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI=�:PSLocalTranslationRefVisibilitySboolSSI}�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSID�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIη8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIR�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI.�-PSShowTrajectoriesSboolSSI^�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ҹShadingCY��CullingS
CullingOffw�,ModelL }V:SRightCheekModelSLimbNodeY�VersionI�1�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI6�GPS
ScalingMaxSVector3DSVectorSDDD|�8PSDefaultAttributeIndexSintSIntegerSIػNPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@/�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?׼EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIL�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI'�-PSPivotsVisibilitySenumSSIj�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3�3PSRotationAxisVisibilitySboolSSIr�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIC�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI2�*PS
TransformableSboolSSIh�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI$�CPSLimbLength 1SNumberSSAUD�?DDY@G�ShadingCYj�CullingS
CullingOff��.ModelL(�V:SRightNostrilModelSLimbNode��VersionI���Properties70"�+PSRotationActiveSboolSSIX�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIO�NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@��IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼ��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?N�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI&�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDc�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI)�:PSLocalTranslationRefVisibilitySboolSSIi�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI0�9PSHierarchicalCenterVisibilitySboolSSIt�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI>�3PSDefaultKeyingGroupEnumSenumSSIq�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIJ�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOfff�/ModelL0�V:SRightLipUpperModelSLimbNodeH�VersionI� �Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI%�GPS
ScalingMaxSVector3DSVectorSDDDk�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����<D��FǼs�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI;�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIY�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI"�3PSRotationAxisVisibilitySboolSSIa�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI2�8PSReferentialSizeSdoubleSNumberSD(@u�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI!�*PS
TransformableSboolSSIW�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@6�ShadingCYY�CullingS
CullingOff4�/ModelL8�V:SRightShoulderModelSLimbNode��VersionI���Properties70/�HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc�h�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD9�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD����D`�)6@D@
M����IPSLcl RotationSLcl RotationSSA+D�LE�?D���D�O��A�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI	�-PSManipulationModeSenumSSIl�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI'�5PSRotationLimitsVisibilitySboolSSIo�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI/�1PSScalingRefVisibilitySboolSSIv�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@C�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI%�(PSCullingModeSenumSSI`�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY'�CullingS
CullingOff��*ModelL@�V:SRightArmModelSLimbNode��VersionI���Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc�1�+PSRotationActiveSboolSSIg�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI^�NPSLcl TranslationSLcl TranslationSSAD��$@D �\0�D`��վ��IPSLcl RotationSLcl RotationSSA+D"�@D��K�?D�/�R@
�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?]�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI5�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDr�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI8�:PSLocalTranslationRefVisibilitySboolSSIx�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI?�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIM�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI)�-PSShowTrajectoriesSboolSSIY�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��.ModelLH�V:SRightForeArmModelSLimbNodeV�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?��+PSRotationActiveSboolSSI4�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI+�NPSLcl TranslationSLcl TranslationSSAD`�W9�D �<�?D`,�����IPSLcl RotationSLcl RotationSSA+D`�%.@D�4�@D@��@��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?*�EPSVisibility InheritanceSVisibility InheritanceSSId�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD?�/PSSetPreferedAngleSActionSSIz�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIE�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIP�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIM�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI&�"PSliwSBoolSSAUIw�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff>�+ModelLP�V:SRightHandModelSLimbNode �VersionI���Properties70r�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDC�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D`nI�Dh�
�D��;�K�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIv�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI1�5PSRotationLimitsVisibilitySboolSSIy�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI9�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI
�8PSReferentialSizeSdoubleSNumberSD(@M�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI/�(PSCullingModeSenumSSIj�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY1�CullingS
CullingOff�1ModelLX�V:SRightHandPinky1ModelSLimbNode��VersionI���Properties70	�HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q��B�+PSRotationActiveSboolSSIx�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIo�NPSLcl TranslationSLcl TranslationSSAD����D�K�ɿD�ۚ���IPSLcl RotationSLcl RotationSSA+D ��"�D�S�3@D���*@�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?n�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIF�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSII�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI	�1PSScalingRefVisibilitySboolSSIP�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI^�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI:�-PSShowTrajectoriesSboolSSIj�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff�1ModelLx+.;SRightHandPinky2ModelSLimbNodej�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?+PSRotationActiveSboolSSIH(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI?NPSLcl TranslationSLcl TranslationSSAD���D�(���D`��IPSLcl RotationSLcl RotationSSA+D J���D'w˿D@�!2@�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?>EPSVisibility InheritanceSVisibility InheritanceSSIx,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDS/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIY2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI 9PSHierarchicalCenterVisibilitySboolSSId6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI.3PSDefaultKeyingGroupEnumSenumSSIa%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI
-PSShowTrajectoriesSboolSSI:"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOffX1ModelL�0.;SRightHandPinky3ModelSLimbNode:VersionI�Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI	GPS
ScalingMaxSVector3DSVectorSDDD]	8PSDefaultAttributeIndexSintSIntegerSI�	NPSLcl TranslationSLcl TranslationSSAD�8$�D��V��D �@�
IPSLcl RotationSLcl RotationSSA+D@!��D�y��?D���;@e
GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�
EPSVisibility InheritanceSVisibility InheritanceSSI�
,PS	MultiTakeSintSIntegerSI--PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIK5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI
3PSRotationAxisVisibilitySboolSSIS
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSI�
6PSGeometricCenterVisibilitySboolSSI$8PSReferentialSizeSdoubleSNumberSD(@g5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSII(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@(ShadingCYKCullingS
CullingOff'0ModelL�5.;SRightHandRing1ModelSLimbNode�VersionI��Properties70"HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c�[+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD,8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD�H=�Djs�?D �m��IPSLcl RotationSLcl RotationSSA+D`!���D˵!@D�!�-@4GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI_UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIb:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI"1PSScalingRefVisibilitySboolSSIi9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@65PSDefaultKeyingGroupSintSIntegerSIw3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIS-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�!0ModelL�:.;SRightHandRing2ModelSLimbNode�VersionI��!Properties70�HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{�*+PSRotationActiveSboolSSI`(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIWNPSLcl TranslationSLcl TranslationSSAD�'�D ښ��D`K�߿�IPSLcl RotationSLcl RotationSSA+D��߿D �ε�D�/I1@GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?VEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI.UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDk/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI1:PSLocalTranslationRefVisibilitySboolSSIq2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI89PSHierarchicalCenterVisibilitySboolSSI|6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@ 5PSDefaultKeyingGroupSintSIntegerSIF 3PSDefaultKeyingGroupEnumSenumSSIy %PSPickableSboolSSI� *PS
TransformableSboolSSI� (PSCullingModeSenumSSI"!-PSShowTrajectoriesSboolSSIR!"PSliwSBoolSSAUI�!CPSLimbLength 1SNumberSSAUD�?DDY@�!ShadingCY�!CullingS
CullingOffo*0ModelL�?.;SRightHandRing3ModelSLimbNodeQ"VersionI�)*Properties70�"+PSRotationActiveSboolSSI�"(PSInheritTypeSenumSSI.#GPS
ScalingMaxSVector3DSVectorSDDDt#8PSDefaultAttributeIndexSintSIntegerSI�#NPSLcl TranslationSLcl TranslationSSAD@���D�
��D��ݿ'$IPSLcl RotationSLcl RotationSSA+D@4��D ���?D �m<@|$GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�$EPSVisibility InheritanceSVisibility InheritanceSSI	%,PS	MultiTakeSintSIntegerSID%-PSManipulationModeSenumSSI�%UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�%/PSSetPreferedAngleSActionSSI&-PSPivotsVisibilitySenumSSIb&5PSRotationLimitsVisibilitySboolSSI�&:PSLocalTranslationRefVisibilitySboolSSI�&2PSRotationRefVisibilitySboolSSI+'3PSRotationAxisVisibilitySboolSSIj'1PSScalingRefVisibilitySboolSSI�'9PSHierarchicalCenterVisibilitySboolSSI�'6PSGeometricCenterVisibilitySboolSSI;(8PSReferentialSizeSdoubleSNumberSD(@~(5PSDefaultKeyingGroupSintSIntegerSI�(3PSDefaultKeyingGroupEnumSenumSSI�(%PSPickableSboolSSI*)*PS
TransformableSboolSSI`)(PSCullingModeSenumSSI�)-PSShowTrajectoriesSboolSSI�)"PSliwSBoolSSAUI*CPSLimbLength 1SNumberSSAUD�?DDY@?*ShadingCYb*CullingS
CullingOff@32ModelL�D.;SRightHandMiddle1ModelSLimbNode�*VersionI��2Properties70;+HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�t++PSRotationActiveSboolSSI�+(PSInheritTypeSenumSSI�+GPS
ScalingMaxSVector3DSVectorSDDDE,8PSDefaultAttributeIndexSintSIntegerSI�,NPSLcl TranslationSLcl TranslationSSAD�QB�D<��?D@��?�,IPSLcl RotationSLcl RotationSSA+D`�B�?D�<g��D�<�-@M-GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�-EPSVisibility InheritanceSVisibility InheritanceSSI�-,PS	MultiTakeSintSIntegerSI.-PSManipulationModeSenumSSIx.UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�./PSSetPreferedAngleSActionSSI�.-PSPivotsVisibilitySenumSSI3/5PSRotationLimitsVisibilitySboolSSI{/:PSLocalTranslationRefVisibilitySboolSSI�/2PSRotationRefVisibilitySboolSSI�/3PSRotationAxisVisibilitySboolSSI;01PSScalingRefVisibilitySboolSSI�09PSHierarchicalCenterVisibilitySboolSSI�06PSGeometricCenterVisibilitySboolSSI18PSReferentialSizeSdoubleSNumberSD(@O15PSDefaultKeyingGroupSintSIntegerSI�13PSDefaultKeyingGroupEnumSenumSSI�1%PSPickableSboolSSI�1*PS
TransformableSboolSSI12(PSCullingModeSenumSSIl2-PSShowTrajectoriesSboolSSI�2"PSliwSBoolSSAUI�2CPSLimbLength 1SNumberSSAUD�?DDY@3ShadingCY33CullingS
CullingOff<2ModelL�I.;SRightHandMiddle2ModelSLimbNode�3VersionI��;Properties704HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9�E4+PSRotationActiveSboolSSI{4(PSInheritTypeSenumSSI�4GPS
ScalingMaxSVector3DSVectorSDDD58PSDefaultAttributeIndexSintSIntegerSIr5NPSLcl TranslationSLcl TranslationSSAD`��D���?D@��?�5IPSLcl RotationSLcl RotationSSA+D �5�?D@P�?D��E4@6GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?q6EPSVisibility InheritanceSVisibility InheritanceSSI�6,PS	MultiTakeSintSIntegerSI�6-PSManipulationModeSenumSSII7UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�7/PSSetPreferedAngleSActionSSI�7-PSPivotsVisibilitySenumSSI85PSRotationLimitsVisibilitySboolSSIL8:PSLocalTranslationRefVisibilitySboolSSI�82PSRotationRefVisibilitySboolSSI�83PSRotationAxisVisibilitySboolSSI91PSScalingRefVisibilitySboolSSIS99PSHierarchicalCenterVisibilitySboolSSI�96PSGeometricCenterVisibilitySboolSSI�98PSReferentialSizeSdoubleSNumberSD(@ :5PSDefaultKeyingGroupSintSIntegerSIa:3PSDefaultKeyingGroupEnumSenumSSI�:%PSPickableSboolSSI�:*PS
TransformableSboolSSI;(PSCullingModeSenumSSI=;-PSShowTrajectoriesSboolSSIm;"PSliwSBoolSSAUI�;CPSLimbLength 1SNumberSSAUD�?DDY@�;ShadingCY<CullingS
CullingOff�D2ModelL�N.;SRightHandMiddle3ModelSLimbNoden<VersionI�FDProperties70�<+PSRotationActiveSboolSSI�<(PSInheritTypeSenumSSIK=GPS
ScalingMaxSVector3DSVectorSDDD�=8PSDefaultAttributeIndexSintSIntegerSI�=NPSLcl TranslationSLcl TranslationSSAD >u
�D@�&�D�I��?D>IPSLcl RotationSLcl RotationSSA+D�P;�?D@?^ÿD ��@@�>GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�>EPSVisibility InheritanceSVisibility InheritanceSSI&?,PS	MultiTakeSintSIntegerSIa?-PSManipulationModeSenumSSI�?UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD@/PSSetPreferedAngleSActionSSI<@-PSPivotsVisibilitySenumSSI@5PSRotationLimitsVisibilitySboolSSI�@:PSLocalTranslationRefVisibilitySboolSSIA2PSRotationRefVisibilitySboolSSIHA3PSRotationAxisVisibilitySboolSSI�A1PSScalingRefVisibilitySboolSSI�A9PSHierarchicalCenterVisibilitySboolSSIB6PSGeometricCenterVisibilitySboolSSIXB8PSReferentialSizeSdoubleSNumberSD(@�B5PSDefaultKeyingGroupSintSIntegerSI�B3PSDefaultKeyingGroupEnumSenumSSIC%PSPickableSboolSSIGC*PS
TransformableSboolSSI}C(PSCullingModeSenumSSI�C-PSShowTrajectoriesSboolSSI�C"PSliwSBoolSSAUI9DCPSLimbLength 1SNumberSSAUD�?DDY@\DShadingCYDCullingS
CullingOff\M1ModelL�S.;SRightHandIndex1ModelSLimbNode�DVersionI�MProperties70WEHPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A���E+PSRotationActiveSboolSSI�E(PSInheritTypeSenumSSIFGPS
ScalingMaxSVector3DSVectorSDDDaF8PSDefaultAttributeIndexSintSIntegerSI�FNPSLcl TranslationSLcl TranslationSSAD�e��D�yҿ�D��y@GIPSLcl RotationSLcl RotationSSA+D ��?D���-�D`�5@iGGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�GEPSVisibility InheritanceSVisibility InheritanceSSI�G,PS	MultiTakeSintSIntegerSI1H-PSManipulationModeSenumSSI�HUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�H/PSSetPreferedAngleSActionSSII-PSPivotsVisibilitySenumSSIOI5PSRotationLimitsVisibilitySboolSSI�I:PSLocalTranslationRefVisibilitySboolSSI�I2PSRotationRefVisibilitySboolSSIJ3PSRotationAxisVisibilitySboolSSIWJ1PSScalingRefVisibilitySboolSSI�J9PSHierarchicalCenterVisibilitySboolSSI�J6PSGeometricCenterVisibilitySboolSSI(K8PSReferentialSizeSdoubleSNumberSD(@kK5PSDefaultKeyingGroupSintSIntegerSI�K3PSDefaultKeyingGroupEnumSenumSSI�K%PSPickableSboolSSIL*PS
TransformableSboolSSIML(PSCullingModeSenumSSI�L-PSShowTrajectoriesSboolSSI�L"PSliwSBoolSSAUI	MCPSLimbLength 1SNumberSSAUD�?DDY@,MShadingCYOMCullingS
CullingOff,V1ModelL�X.;SRightHandIndex2ModelSLimbNode�MVersionI��UProperties70'NHPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\�`N+PSRotationActiveSboolSSI�N(PSInheritTypeSenumSSI�NGPS
ScalingMaxSVector3DSVectorSDDD1O8PSDefaultAttributeIndexSintSIntegerSI�ONPSLcl TranslationSLcl TranslationSSAD���
�D���?D�!C�?�OIPSLcl RotationSLcl RotationSSA+D����?D�zxɿD�
5@9PGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�PEPSVisibility InheritanceSVisibility InheritanceSSI�P,PS	MultiTakeSintSIntegerSIQ-PSManipulationModeSenumSSIdQUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�Q/PSSetPreferedAngleSActionSSI�Q-PSPivotsVisibilitySenumSSIR5PSRotationLimitsVisibilitySboolSSIgR:PSLocalTranslationRefVisibilitySboolSSI�R2PSRotationRefVisibilitySboolSSI�R3PSRotationAxisVisibilitySboolSSI'S1PSScalingRefVisibilitySboolSSInS9PSHierarchicalCenterVisibilitySboolSSI�S6PSGeometricCenterVisibilitySboolSSI�S8PSReferentialSizeSdoubleSNumberSD(@;T5PSDefaultKeyingGroupSintSIntegerSI|T3PSDefaultKeyingGroupEnumSenumSSI�T%PSPickableSboolSSI�T*PS
TransformableSboolSSIU(PSCullingModeSenumSSIXU-PSShowTrajectoriesSboolSSI�U"PSliwSBoolSSAUI�UCPSLimbLength 1SNumberSSAUD�?DDY@�UShadingCYVCullingS
CullingOff�^1ModelL�].;SRightHandIndex3ModelSLimbNode�VVersionI�`^Properties70�V+PSRotationActiveSboolSSIW(PSInheritTypeSenumSSIeWGPS
ScalingMaxSVector3DSVectorSDDD�W8PSDefaultAttributeIndexSintSIntegerSIXNPSLcl TranslationSLcl TranslationSSAD�.�D��߿D@���?^XIPSLcl RotationSLcl RotationSSA+D�!��?D�C��D�5@�XGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?YEPSVisibility InheritanceSVisibility InheritanceSSI@Y,PS	MultiTakeSintSIntegerSI{Y-PSManipulationModeSenumSSI�YUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDZ/PSSetPreferedAngleSActionSSIVZ-PSPivotsVisibilitySenumSSI�Z5PSRotationLimitsVisibilitySboolSSI�Z:PSLocalTranslationRefVisibilitySboolSSI![2PSRotationRefVisibilitySboolSSIb[3PSRotationAxisVisibilitySboolSSI�[1PSScalingRefVisibilitySboolSSI�[9PSHierarchicalCenterVisibilitySboolSSI,\6PSGeometricCenterVisibilitySboolSSIr\8PSReferentialSizeSdoubleSNumberSD(@�\5PSDefaultKeyingGroupSintSIntegerSI�\3PSDefaultKeyingGroupEnumSenumSSI)]%PSPickableSboolSSIa]*PS
TransformableSboolSSI�](PSCullingModeSenumSSI�]-PSShowTrajectoriesSboolSSI^"PSliwSBoolSSAUIS^CPSLimbLength 1SNumberSSAUD�?DDY@v^ShadingCY�^CullingS
CullingOffvg1ModelL�b.;SRightHandThumb1ModelSLimbNode_VersionI�0gProperties70q_HPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D	��*��_+PSRotationActiveSboolSSI�_(PSInheritTypeSenumSSI5`GPS
ScalingMaxSVector3DSVectorSDDD{`8PSDefaultAttributeIndexSintSIntegerSI�`NPSLcl TranslationSLcl TranslationSSAD�~��D����D༯@.aIPSLcl RotationSLcl RotationSSA+D��5@D�� �D`U(�?�aGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�aEPSVisibility InheritanceSVisibility InheritanceSSIb,PS	MultiTakeSintSIntegerSIKb-PSManipulationModeSenumSSI�bUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�b/PSSetPreferedAngleSActionSSI&c-PSPivotsVisibilitySenumSSIic5PSRotationLimitsVisibilitySboolSSI�c:PSLocalTranslationRefVisibilitySboolSSI�c2PSRotationRefVisibilitySboolSSI2d3PSRotationAxisVisibilitySboolSSIqd1PSScalingRefVisibilitySboolSSI�d9PSHierarchicalCenterVisibilitySboolSSI�d6PSGeometricCenterVisibilitySboolSSIBe8PSReferentialSizeSdoubleSNumberSD(@�e5PSDefaultKeyingGroupSintSIntegerSI�e3PSDefaultKeyingGroupEnumSenumSSI�e%PSPickableSboolSSI1f*PS
TransformableSboolSSIgf(PSCullingModeSenumSSI�f-PSShowTrajectoriesSboolSSI�f"PSliwSBoolSSAUI#gCPSLimbLength 1SNumberSSAUD�?DDY@FgShadingCYigCullingS
CullingOff�o1ModelL�V?;SRightHandThumb2ModelSLimbNode�gVersionI��oProperties70$h+PSRotationActiveSboolSSIZh(PSInheritTypeSenumSSI�hGPS
ScalingMaxSVector3DSVectorSDDD�h8PSDefaultAttributeIndexSintSIntegerSIQiNPSLcl TranslationSLcl TranslationSSAD`�2��D`���D��@�iIPSLcl RotationSLcl RotationSSA+D c��?D b�!�D�q�ֿ�iGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?PjEPSVisibility InheritanceSVisibility InheritanceSSI�j,PS	MultiTakeSintSIntegerSI�j-PSManipulationModeSenumSSI(kUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDek/PSSetPreferedAngleSActionSSI�k-PSPivotsVisibilitySenumSSI�k5PSRotationLimitsVisibilitySboolSSI+l:PSLocalTranslationRefVisibilitySboolSSIkl2PSRotationRefVisibilitySboolSSI�l3PSRotationAxisVisibilitySboolSSI�l1PSScalingRefVisibilitySboolSSI2m9PSHierarchicalCenterVisibilitySboolSSIvm6PSGeometricCenterVisibilitySboolSSI�m8PSReferentialSizeSdoubleSNumberSD(@�m5PSDefaultKeyingGroupSintSIntegerSI@n3PSDefaultKeyingGroupEnumSenumSSIsn%PSPickableSboolSSI�n*PS
TransformableSboolSSI�n(PSCullingModeSenumSSIo-PSShowTrajectoriesSboolSSILo"PSliwSBoolSSAUI�oCPSLimbLength 1SNumberSSAUD�?DDY@�oShadingCY�oCullingS
CullingOff�x1ModelL�[?;SRightHandThumb3ModelSLimbNodeLpVersionI�zxProperties70�pHPSPreRotationSVector3DSVectorSD$�rOϸ>DD�p+PSRotationActiveSboolSSI*q(PSInheritTypeSenumSSIqGPS
ScalingMaxSVector3DSVectorSDDD�q8PSDefaultAttributeIndexSintSIntegerSI!rNPSLcl TranslationSLcl TranslationSSAD@5^�D �r�D@��@xrIPSLcl RotationSLcl RotationSSA+D C@D�99�D�w��rGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�? sEPSVisibility InheritanceSVisibility InheritanceSSIZs,PS	MultiTakeSintSIntegerSI�s-PSManipulationModeSenumSSI�sUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD5t/PSSetPreferedAngleSActionSSIpt-PSPivotsVisibilitySenumSSI�t5PSRotationLimitsVisibilitySboolSSI�t:PSLocalTranslationRefVisibilitySboolSSI;u2PSRotationRefVisibilitySboolSSI|u3PSRotationAxisVisibilitySboolSSI�u1PSScalingRefVisibilitySboolSSIv9PSHierarchicalCenterVisibilitySboolSSIFv6PSGeometricCenterVisibilitySboolSSI�v8PSReferentialSizeSdoubleSNumberSD(@�v5PSDefaultKeyingGroupSintSIntegerSIw3PSDefaultKeyingGroupEnumSenumSSICw%PSPickableSboolSSI{w*PS
TransformableSboolSSI�w(PSCullingModeSenumSSI�w-PSShowTrajectoriesSboolSSIx"PSliwSBoolSSAUImxCPSLimbLength 1SNumberSSAUD�?DDY@�xShadingCY�xCullingS
CullingOff��.ModelL�`?;SLeftShoulderModelSLimbNodeyVersionI�G�Properties70�yHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9��y+PSRotationActiveSboolSSI�y(PSInheritTypeSenumSSILzGPS
ScalingMaxSVector3DSVectorSDDD�z8PSDefaultAttributeIndexSintSIntegerSI�zNPSLcl TranslationSLcl TranslationSSAD��@D@�)6@D@
M��E{IPSLcl RotationSLcl RotationSSA+D �4�?D(��D��"��{GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�{EPSVisibility InheritanceSVisibility InheritanceSSI'|,PS	MultiTakeSintSIntegerSIb|-PSManipulationModeSenumSSI�|UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD}/PSSetPreferedAngleSActionSSI=}-PSPivotsVisibilitySenumSSI�}5PSRotationLimitsVisibilitySboolSSI�}:PSLocalTranslationRefVisibilitySboolSSI~2PSRotationRefVisibilitySboolSSII~3PSRotationAxisVisibilitySboolSSI�~1PSScalingRefVisibilitySboolSSI�~9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSIY8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIH�*PS
TransformableSboolSSI~�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI:�CPSLimbLength 1SNumberSSAUD�?DDY@]�ShadingCY��CullingS
CullingOffU�)ModelL�e?;SLeftArmModelSLimbNode�VersionI��Properties70P�HPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDZ�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��$@D��3~>D@lqT�
�IPSLcl RotationSLcl RotationSSA+D�g���Dx� @D��8R�b�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI*�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDʅ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIH�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIІ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIP�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIۇ6PSGeometricCenterVisibilitySboolSSI!�8PSReferentialSizeSdoubleSNumberSD(@d�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI؈%PSPickableSboolSSI�*PS
TransformableSboolSSIF�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@%�ShadingCYH�CullingS
CullingOff!�-ModelL�j?;SLeftForeArmModelSLimbNode��VersionI�ےProperties70�HPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?U�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD&�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��g9@D��F�D��sG>ٌIPSLcl RotationSLcl RotationSSA+D �_4@D��'�D�'��.�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIY�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIю-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI\�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIݏ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIc�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@0�5PSDefaultKeyingGroupSintSIntegerSIq�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIܑ*PS
TransformableSboolSSI�(PSCullingModeSenumSSIM�-PSShowTrajectoriesSboolSSI}�"PSliwSBoolSSAUIΒCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff��*ModelL�o?;SLeftHandModelSLimbNodev�VersionI�N�Properties70ȓ+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIS�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���8@Dl�H�D�)>L�IPSLcl RotationSLcl RotationSSA+D�� �D@�J@D���?��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI.�,PS	MultiTakeSintSIntegerSIi�-PSManipulationModeSenumSSI̖UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD	�/PSSetPreferedAngleSActionSSID�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIϗ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIP�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI֘9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI`�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIO�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIA�CPSLimbLength 1SNumberSSAUD�?DDY@d�ShadingCY��CullingS
CullingOffc�0ModelL�t?;SLeftHandPinky1ModelSLimbNode�VersionI��Properties70^�HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@DU�Z~Q����+PSRotationActiveSboolSSI͜(PSInheritTypeSenumSSI"�GPS
ScalingMaxSVector3DSVectorSDDDh�8PSDefaultAttributeIndexSintSIntegerSIĝNPSLcl TranslationSLcl TranslationSSAD �C@D�S
�D@�	��IPSLcl RotationSLcl RotationSSA+D�0��D��t2�D �3�p�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ÞEPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI8�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD؟/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIV�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIޠ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI^�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI/�8PSReferentialSizeSdoubleSNumberSD(@r�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSIT�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@3�ShadingCYV�CullingS
CullingOff2�0ModelL�y?;SLeftHandPinky2ModelSLimbNode��VersionI��Properties70-�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?f�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD7�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���@D@�Ji�D`�¿�IPSLcl RotationSLcl RotationSSA+D �F@D`\�?D`o63�?�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI̧,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIj�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI%�5PSRotationLimitsVisibilitySboolSSIm�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI-�1PSScalingRefVisibilitySboolSSIt�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@A�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI#�(PSCullingModeSenumSSI^�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI߬CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY%�CullingS
CullingOff��0ModelL�~?;SLeftHandPinky3ModelSLimbNode��VersionI�e�Properties70߭+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIj�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@�s@D���D�D�T��>c�IPSLcl RotationSLcl RotationSSA+D ,a
@D M��?D�V�1���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIE�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD �/PSSetPreferedAngleSActionSSI[�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI&�2PSRotationRefVisibilitySboolSSIg�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI1�6PSGeometricCenterVisibilitySboolSSIw�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI.�%PSPickableSboolSSIf�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI״-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIX�CPSLimbLength 1SNumberSSAUD�?DDY@{�ShadingCY��CullingS
CullingOffy�/ModelLЃ?;SLeftHandRing1ModelSLimbNode�VersionI�3�Properties70t�HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI8�GPS
ScalingMaxSVector3DSVectorSDDD~�8PSDefaultAttributeIndexSintSIntegerSIڷNPSLcl TranslationSLcl TranslationSSAD��@D�P�׿D EB�1�IPSLcl RotationSLcl RotationSSA+D@���?D~� �D�<�0���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ٸEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIN�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI)�-PSPivotsVisibilitySenumSSIl�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI5�3PSRotationAxisVisibilitySboolSSIt�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIE�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIɼ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI4�*PS
TransformableSboolSSIj�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIս"PSliwSBoolSSAUI&�CPSLimbLength 1SNumberSSAUD�?DDY@I�ShadingCYl�CullingS
CullingOffG�/ModelL؈?;SLeftHandRing2ModelSLimbNodeӾVersionI��Properties70B�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{�{�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDL�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD A@D�Ua�D`;�̿��IPSLcl RotationSLcl RotationSSA+Dh�?D���?D`D3�T�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI:�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIB�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@V�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI8�(PSCullingModeSenumSSIs�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY:�CullingS
CullingOff��/ModelL��?;SLeftHandRing3ModelSLimbNode��VersionI�y�Properties70��+PSRotationActiveSboolSSI)�(PSInheritTypeSenumSSI~�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI �NPSLcl TranslationSLcl TranslationSSAD��@D��P>D`����w�IPSLcl RotationSLcl RotationSSA+D����?D�T$�?D��1���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIY�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD4�/PSSetPreferedAngleSActionSSIo�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI:�2PSRotationRefVisibilitySboolSSI{�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIE�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIB�%PSPickableSboolSSIz�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIl�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelL�:SLeftHandMiddle1ModelSLimbNode�VersionI�I�Properties70��HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIN�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�h@D`5!ȿD�9�?G�IPSLcl RotationSLcl RotationSSA+D��>�D?�?D���2���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI)�,PS	MultiTakeSintSIntegerSId�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI?�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI
�2PSRotationRefVisibilitySboolSSIK�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI[�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIJ�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI<�CPSLimbLength 1SNumberSSAUD�?DDY@_�ShadingCY��CullingS
CullingOff_�1ModelL�:SLeftHandMiddle2ModelSLimbNode��VersionI��Properties70Z�HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDd�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD Q�@D +s??D��ǥ��IPSLcl RotationSLcl RotationSSA+D��F�D�%lտD��8�l�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI4�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIR�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIZ�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI+�8PSReferentialSizeSdoubleSNumberSD(@n�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIP�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@/�ShadingCYR�CullingS
CullingOff��1ModelL�:SLeftHandMiddle3ModelSLimbNode��VersionI���Properties70
�+PSRotationActiveSboolSSIC�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI:�NPSLcl TranslationSLcl TranslationSSAD �+@D�q��D�.�>��IPSLcl RotationSLcl RotationSSA+D`C�D`�4ƿD@��6���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?9�EPSVisibility InheritanceSVisibility InheritanceSSIs�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDN�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIT�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI_�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI)�3PSDefaultKeyingGroupEnumSenumSSI\�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI5�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelL �:SLeftHandIndex1ModelSLimbNode4�VersionI�b�Properties70��HPSPreRotationSVector3DSVectorSD4�t�c�D���PNk"�Dʴ	A����+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIg�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI	�NPSLcl TranslationSLcl TranslationSSAD��@D���D�B
@`�IPSLcl RotationSLcl RotationSSA+D�[s�D 7�(@D�$���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIB�,PS	MultiTakeSintSIntegerSI}�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIX�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI#�2PSRotationRefVisibilitySboolSSId�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI.�6PSGeometricCenterVisibilitySboolSSIt�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI+�%PSPickableSboolSSIc�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIU�CPSLimbLength 1SNumberSSAUD�?DDY@x�ShadingCY��CullingS
CullingOffw�0ModelL(�:SLeftHandIndex2ModelSLimbNode�VersionI�1�Properties70r�HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI6�GPS
ScalingMaxSVector3DSVectorSDDD|�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�{�@D`�ft?D`�Z�?/�IPSLcl RotationSLcl RotationSSA+D �P �D@2t�D`6&7���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIL�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI'�-PSPivotsVisibilitySenumSSIj�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI3�3PSRotationAxisVisibilitySboolSSIr�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIC�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI2�*PS
TransformableSboolSSIh�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI$�CPSLimbLength 1SNumberSSAUD�?DDY@G�ShadingCYj�CullingS
CullingOff�0ModelL0�:SLeftHandIndex3ModelSLimbNode��VersionI��Properties70$�+PSRotationActiveSboolSSIZ�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIQ�NPSLcl TranslationSLcl TranslationSSAD��_@D�����D ƒվ��IPSLcl RotationSLcl RotationSSA+D t�D���?D ��"���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?P�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI(�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDe�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI+:PSLocalTranslationRefVisibilitySboolSSIk2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI29PSHierarchicalCenterVisibilitySboolSSIv6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI@3PSDefaultKeyingGroupEnumSenumSSIs%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIL"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelL8�:SLeftHandThumb1ModelSLimbNodeKVersionI�yProperties70�HPSPreRotationSVector3DSVectorSDD��t[��?D2��*��+PSRotationActiveSboolSSI)(PSInheritTypeSenumSSI~GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI NPSLcl TranslationSLcl TranslationSSAD���?D���D��l@wIPSLcl RotationSLcl RotationSSA+D��@D 34@D����?�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?EPSVisibility InheritanceSVisibility InheritanceSSIY,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD4/PSSetPreferedAngleSActionSSIo-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI:	2PSRotationRefVisibilitySboolSSI{	3PSRotationAxisVisibilitySboolSSI�	1PSScalingRefVisibilitySboolSSI
9PSHierarchicalCenterVisibilitySboolSSIE
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIB%PSPickableSboolSSIz*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIlCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff80ModelL@:SLeftHandThumb2ModelSLimbNode
VersionI��Properties70l
+PSRotationActiveSboolSSI�
(PSInheritTypeSenumSSI�
GPS
ScalingMaxSVector3DSVectorSDDD=8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD`�2�?D`���D`
�@�IPSLcl RotationSLcl RotationSSA+D��!@D`7+@D����?EGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI
-PSManipulationModeSenumSSIpUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI+5PSRotationLimitsVisibilitySboolSSIs:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI31PSScalingRefVisibilitySboolSSIz9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@G5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI)(PSCullingModeSenumSSId-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY+CullingS
CullingOff0ModelLH:SLeftHandThumb3ModelSLimbNode�VersionI��Properties70HPSPreRotationSVector3DSVectorSD��cܥ�>DD;+PSRotationActiveSboolSSIq(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSIhNPSLcl TranslationSLcl TranslationSSAD@5^@D �r�D@��@�IPSLcl RotationSLcl RotationSSA+DD@D�99@D��s@GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?gEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI?UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD|/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIB:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSII9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIW3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI3-PSShowTrajectoriesSboolSSIc"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff|&,ModelLP:SRightUpLegModelSLimbNode^VersionI�6&Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI;GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@.�D �C�D4 IPSLcl RotationSLcl RotationSSA+D����D����Dಳ�?� GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?� EPSVisibility InheritanceSVisibility InheritanceSSI!,PS	MultiTakeSintSIntegerSIQ!-PSManipulationModeSenumSSI�!UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�!/PSSetPreferedAngleSActionSSI,"-PSPivotsVisibilitySenumSSIo"5PSRotationLimitsVisibilitySboolSSI�":PSLocalTranslationRefVisibilitySboolSSI�"2PSRotationRefVisibilitySboolSSI8#3PSRotationAxisVisibilitySboolSSIw#1PSScalingRefVisibilitySboolSSI�#9PSHierarchicalCenterVisibilitySboolSSI$6PSGeometricCenterVisibilitySboolSSIH$8PSReferentialSizeSdoubleSNumberSD(@�$5PSDefaultKeyingGroupSintSIntegerSI�$3PSDefaultKeyingGroupEnumSenumSSI�$%PSPickableSboolSSI7%*PS
TransformableSboolSSIm%(PSCullingModeSenumSSI�%-PSShowTrajectoriesSboolSSI�%"PSliwSBoolSSAUI)&CPSLimbLength 1SNumberSSAUD�?DDY@L&ShadingCYo&CullingS
CullingOff�.*ModelLX:SRightLegModelSLimbNode�&VersionI��.Properties70#'+PSRotationActiveSboolSSIY'(PSInheritTypeSenumSSI�'GPS
ScalingMaxSVector3DSVectorSDDD�'8PSDefaultAttributeIndexSintSIntegerSIP(NPSLcl TranslationSLcl TranslationSSAD`�p�D@�tD�D@�e���(IPSLcl RotationSLcl RotationSSA+D@��@D@9U�?D@#ɔ?�(GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?O)EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSI'*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDd*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI�*5PSRotationLimitsVisibilitySboolSSI*+:PSLocalTranslationRefVisibilitySboolSSIj+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI�+1PSScalingRefVisibilitySboolSSI1,9PSHierarchicalCenterVisibilitySboolSSIu,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@�,5PSDefaultKeyingGroupSintSIntegerSI?-3PSDefaultKeyingGroupEnumSenumSSIr-%PSPickableSboolSSI�-*PS
TransformableSboolSSI�-(PSCullingModeSenumSSI.-PSShowTrajectoriesSboolSSIK."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY�.CullingS
CullingOffc7+ModelL`:SRightFootModelSLimbNodeE/VersionI�7Properties70�/+PSRotationActiveSboolSSI�/(PSInheritTypeSenumSSI"0GPS
ScalingMaxSVector3DSVectorSDDDh08PSDefaultAttributeIndexSintSIntegerSI�0NPSLcl TranslationSLcl TranslationSSAD`V}�D@e(E�D |�1IPSLcl RotationSLcl RotationSSA+D�&��D���%�D@:�p1GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�1EPSVisibility InheritanceSVisibility InheritanceSSI�1,PS	MultiTakeSintSIntegerSI82-PSManipulationModeSenumSSI�2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�2/PSSetPreferedAngleSActionSSI3-PSPivotsVisibilitySenumSSIV35PSRotationLimitsVisibilitySboolSSI�3:PSLocalTranslationRefVisibilitySboolSSI�32PSRotationRefVisibilitySboolSSI43PSRotationAxisVisibilitySboolSSI^41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI�46PSGeometricCenterVisibilitySboolSSI/58PSReferentialSizeSdoubleSNumberSD(@r55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI�5%PSPickableSboolSSI6*PS
TransformableSboolSSIT6(PSCullingModeSenumSSI�6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI7CPSLimbLength 1SNumberSSAUD�?DDY@37ShadingCYV7CullingS
CullingOff�?+ModelL�:j;SRightToesModelSLimbNode�7VersionI��?Properties708+PSRotationActiveSboolSSIA8(PSInheritTypeSenumSSI�8GPS
ScalingMaxSVector3DSVectorSDDD�88PSDefaultAttributeIndexSintSIntegerSI89NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@�9IPSLcl RotationSLcl RotationSSA+D@]�?D���?D�X˿�9GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?7:EPSVisibility InheritanceSVisibility InheritanceSSIq:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSI;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDL;/PSSetPreferedAngleSActionSSI�;-PSPivotsVisibilitySenumSSI�;5PSRotationLimitsVisibilitySboolSSI<:PSLocalTranslationRefVisibilitySboolSSIR<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI�<1PSScalingRefVisibilitySboolSSI=9PSHierarchicalCenterVisibilitySboolSSI]=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@�=5PSDefaultKeyingGroupSintSIntegerSI'>3PSDefaultKeyingGroupEnumSenumSSIZ>%PSPickableSboolSSI�>*PS
TransformableSboolSSI�>(PSCullingModeSenumSSI?-PSShowTrajectoriesSboolSSI3?"PSliwSBoolSSAUI�?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY�?CullingS
CullingOffKH+ModelL�?j;SLeftUpLegModelSLimbNode-@VersionI�HProperties70@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSI
AGPS
ScalingMaxSVector3DSVectorSDDDPA8PSDefaultAttributeIndexSintSIntegerSI�ANPSLcl TranslationSLcl TranslationSSAD`.@D��C�DBIPSLcl RotationSLcl RotationSSA+D@���D��
�D��XBGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSI C-PSManipulationModeSenumSSI�CUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSI>D5PSRotationLimitsVisibilitySboolSSI�D:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSIE3PSRotationAxisVisibilitySboolSSIFE1PSScalingRefVisibilitySboolSSI�E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSIF8PSReferentialSizeSdoubleSNumberSD(@ZF5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSIG*PS
TransformableSboolSSI<G(PSCullingModeSenumSSIwG-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@HShadingCY>HCullingS
CullingOff�P)ModelLEj;SLeftLegModelSLimbNode�HVersionI�wPProperties70�H+PSRotationActiveSboolSSI'I(PSInheritTypeSenumSSI|IGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSIJNPSLcl TranslationSLcl TranslationSSAD�p@D �tD�D@�e��uJIPSLcl RotationSLcl RotationSSA+D�� @D�}ۡ?D@�Xؿ�JGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?KEPSVisibility InheritanceSVisibility InheritanceSSIWK,PS	MultiTakeSintSIntegerSI�K-PSManipulationModeSenumSSI�KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD2L/PSSetPreferedAngleSActionSSImL-PSPivotsVisibilitySenumSSI�L5PSRotationLimitsVisibilitySboolSSI�L:PSLocalTranslationRefVisibilitySboolSSI8M2PSRotationRefVisibilitySboolSSIyM3PSRotationAxisVisibilitySboolSSI�M1PSScalingRefVisibilitySboolSSI�M9PSHierarchicalCenterVisibilitySboolSSICN6PSGeometricCenterVisibilitySboolSSI�N8PSReferentialSizeSdoubleSNumberSD(@�N5PSDefaultKeyingGroupSintSIntegerSI
O3PSDefaultKeyingGroupEnumSenumSSI@O%PSPickableSboolSSIxO*PS
TransformableSboolSSI�O(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSIP"PSliwSBoolSSAUIjPCPSLimbLength 1SNumberSSAUD�?DDY@�PShadingCY�PCullingS
CullingOff0Y*ModelLJj;SLeftFootModelSLimbNodeQVersionI��XProperties70dQ+PSRotationActiveSboolSSI�Q(PSInheritTypeSenumSSI�QGPS
ScalingMaxSVector3DSVectorSDDD5R8PSDefaultAttributeIndexSintSIntegerSI�RNPSLcl TranslationSLcl TranslationSSAD`V}�?D@e(E�D |��RIPSLcl RotationSLcl RotationSSA+D �@�Dç.@D�Z@=SGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�SEPSVisibility InheritanceSVisibility InheritanceSSI�S,PS	MultiTakeSintSIntegerSIT-PSManipulationModeSenumSSIhTUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�T/PSSetPreferedAngleSActionSSI�T-PSPivotsVisibilitySenumSSI#U5PSRotationLimitsVisibilitySboolSSIkU:PSLocalTranslationRefVisibilitySboolSSI�U2PSRotationRefVisibilitySboolSSI�U3PSRotationAxisVisibilitySboolSSI+V1PSScalingRefVisibilitySboolSSIrV9PSHierarchicalCenterVisibilitySboolSSI�V6PSGeometricCenterVisibilitySboolSSI�V8PSReferentialSizeSdoubleSNumberSD(@?W5PSDefaultKeyingGroupSintSIntegerSI�W3PSDefaultKeyingGroupEnumSenumSSI�W%PSPickableSboolSSI�W*PS
TransformableSboolSSI!X(PSCullingModeSenumSSI\X-PSShowTrajectoriesSboolSSI�X"PSliwSBoolSSAUI�XCPSLimbLength 1SNumberSSAUD�?DDY@YShadingCY#YCullingS
CullingOff�a*ModelLOj;SLeftToesModelSLimbNode�YVersionI�]aProperties70�Y+PSRotationActiveSboolSSI
Z(PSInheritTypeSenumSSIbZGPS
ScalingMaxSVector3DSVectorSDDD�Z8PSDefaultAttributeIndexSintSIntegerSI[NPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@[[IPSLcl RotationSLcl RotationSSA+D ���D���D@�\�?�[GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?\EPSVisibility InheritanceSVisibility InheritanceSSI=\,PS	MultiTakeSintSIntegerSIx\-PSManipulationModeSenumSSI�\UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD]/PSSetPreferedAngleSActionSSIS]-PSPivotsVisibilitySenumSSI�]5PSRotationLimitsVisibilitySboolSSI�]:PSLocalTranslationRefVisibilitySboolSSI^2PSRotationRefVisibilitySboolSSI_^3PSRotationAxisVisibilitySboolSSI�^1PSScalingRefVisibilitySboolSSI�^9PSHierarchicalCenterVisibilitySboolSSI)_6PSGeometricCenterVisibilitySboolSSIo_8PSReferentialSizeSdoubleSNumberSD(@�_5PSDefaultKeyingGroupSintSIntegerSI�_3PSDefaultKeyingGroupEnumSenumSSI&`%PSPickableSboolSSI^`*PS
TransformableSboolSSI�`(PSCullingModeSenumSSI�`-PSShowTrajectoriesSboolSSI�`"PSliwSBoolSSAUIPaCPSLimbLength 1SNumberSSAUD�?DDY@saShadingCY�aCullingS
CullingOffc.AnimationStackL�rZ:SAvatart_T_StanceAnimStackScProperties70Cb0PS
LocalStartSKTimeSTimeSL��G��b/PS	LocalStopSKTimeSTimeSL3�\$�b4PSReferenceStartSKTimeSTimeSL��G�c3PS
ReferenceStopSKTimeSTimeSL3�\$d,AnimationStackL��Z:S1003_smallStepAnimStackSdProperties70�c/PS	LocalStopSKTimeSTimeSL���"�c3PS
ReferenceStopSKTimeSTimeSL���"�f<AnimationLayerLx"�9S)Avatart_T_Stance:BaseAnimationAnimLayerS�fProperties70�dAPSColorSColorRGBSColorSD�������?DD�������?e5PSBlendModeBypassS	ULongLongSSLQe,PS	MultiTakeSintSIntegerSI�e+PSmLayerIDSintSIntegerSI�e)PSMutedForSoloSboolSSI�e*PS
MutedByParentSboolSSI2f+PSLockedByParentSboolSSIuf5PSParentCollapseVisibilitySboolSSI�f"PSEmptySboolSSIfi9AnimationLayerL�
�9S&Avatart_T_Stance:AnimLayer1AnimLayerSYiProperties70{gAPSColorSColorRGBSColorSD�������?DD�������?�g5PSBlendModeBypassS	ULongLongSSL�g,PS	MultiTakeSintSIntegerSI1h+PSmLayerIDSintSIntegerSIhh)PSMutedForSoloSboolSSI�h*PS
MutedByParentSboolSSI�h+PSLockedByParentSboolSSIi5PSParentCollapseVisibilitySboolSSILi"PSEmptySboolSSIl7AnimationLayerL���9S$1003_smallStep:AnimLayer1AnimLayerS�kProperties70 jAPSColorSColorRGBSColorSD�������?DD�������?cj5PSBlendModeBypassS	ULongLongSSL�j,PS	MultiTakeSintSIntegerSI�j+PSmLayerIDSintSIntegerSI
k)PSMutedForSoloSboolSSIEk*PS
MutedByParentSboolSSI~k+PSLockedByParentSboolSSI�k5PSParentCollapseVisibilitySboolSSI�k"PSEmptySboolSSI�n:AnimationLayerLH`�9S'1003_smallStep:BaseAnimationAnimLayerS�nProperties70�lAPSColorSColorRGBSColorSD�������?DD�������?m5PSBlendModeBypassS	ULongLongSSLEm,PS	MultiTakeSintSIntegerSI~m+PSmLayerIDSintSIntegerSI�m)PSMutedForSoloSboolSSI�m*PS
MutedByParentSboolSSI&n+PSLockedByParentSboolSSIin5PSParentCollapseVisibilitySboolSSI�n"PSEmptySboolSSI�o#AnimationCurveNodeLP|�:STAnimCurveNodeS�oProperties709oPSdSCompoundSSno'PSd|XSNumberSSAD��ke@�o'PSd|YSNumberSSAD��W@�o'PSd|ZSNumberSSAD�u�1q#AnimationCurveNodeL�O�:SRAnimCurveNodeS$qProperties70xpPSdSCompoundSS�p'PSd|XSNumberSSAD�p'PSd|YSNumberSSAD�q'PSd|ZSNumberSSADpr#AnimationCurveNodeL8�:SSAnimCurveNodeScrProperties70�qPSdSCompoundSS�q'PSd|XSNumberSSAD�?!r'PSd|YSNumberSSAD�?Vr'PSd|ZSNumberSSAD�?�s#AnimationCurveNodeL`��:SRAnimCurveNodeS�sProperties70�rPSdSCompoundSS+s'PSd|XSNumberSSAD�@��`s'PSd|YSNumberSSAD ܥ���s'PSd|ZSNumberSSAD ܥ���t#AnimationCurveNodeLƅ:SSAnimCurveNodeS�tProperties705tPSdSCompoundSSjt'PSd|XSNumberSSAD�?�t'PSd|YSNumberSSAD�?�t'PSd|ZSNumberSSAD�?-v#AnimationCurveNodeL���:SRAnimCurveNodeS vProperties70tuPSdSCompoundSS�u'PSd|XSNumberSSAD j	���u'PSd|YSNumberSSAD ܥ�9v'PSd|ZSNumberSSAD ܥ̹lw#AnimationCurveNodeL�Ӆ:SSAnimCurveNodeS_wProperties70�vPSdSCompoundSS�v'PSd|XSNumberSSAD�?w'PSd|YSNumberSSAD�?Rw'PSd|ZSNumberSSAD�?�x#AnimationCurveNodeLP߅:SRAnimCurveNodeS�xProperties70�wPSdSCompoundSS'x'PSd|XSNumberSSAD���չ\x'PSd|YSNumberSSAD��x'PSd|ZSNumberSSAD�a��y#AnimationCurveNodeL���:SSAnimCurveNodeS�yProperties701yPSdSCompoundSSfy'PSd|XSNumberSSAD�?�y'PSd|YSNumberSSAD�?�y'PSd|ZSNumberSSAD�?){#AnimationCurveNodeLh�:SRAnimCurveNodeS{Properties70pzPSdSCompoundSS�z'PSd|XSNumberSSAD�[q��z'PSd|YSNumberSSAD�{'PSd|ZSNumberSSAD@� �h|#AnimationCurveNodeLF�:SSAnimCurveNodeS[|Properties70�{PSdSCompoundSS�{'PSd|XSNumberSSAD�?|'PSd|YSNumberSSAD�?N|'PSd|ZSNumberSSAD�?�}#AnimationCurveNodeL��:SRAnimCurveNodeS�}Properties70�|PSdSCompoundSS#}'PSd|XSNumberSSADX}'PSd|YSNumberSSAD��}'PSd|ZSNumberSSAD�~#AnimationCurveNodeL�T�:SSAnimCurveNodeS�~Properties70-~PSdSCompoundSSb~'PSd|XSNumberSSAD�?�~'PSd|YSNumberSSAD�?�~'PSd|ZSNumberSSAD�?%�#AnimationCurveNodeLHυ:SRAnimCurveNodeS�Properties70lPSdSCompoundSS�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD�d�#AnimationCurveNodeLp5�:SSAnimCurveNodeSW�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?J�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADT�'PSd|YSNumberSSAD�Y	�<��'PSd|ZSNumberSSAD����<�#AnimationCurveNodeL�A�:SSAnimCurveNodeSՃProperties70)�PSdSCompoundSS^�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?ȃ'PSd|ZSNumberSSAD�?!�#AnimationCurveNodeL�p�:SRAnimCurveNodeS�Properties70h�PSdSCompoundSS��'PSd|XSNumberSSAD҄'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD`�#AnimationCurveNodeL0��:SSAnimCurveNodeSS�Properties70��PSdSCompoundSS܅'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?F�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�q�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADP�'PSd|YSNumberSSAD���'PSd|ZSNumberSSADވ#AnimationCurveNodeL �:SSAnimCurveNodeSшProperties70%�PSdSCompoundSSZ�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?Ĉ'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL(>�:SRAnimCurveNodeS�Properties70d�PSdSCompoundSS��'PSd|XSNumberSSADΉ'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD\�#AnimationCurveNodeL��:SSAnimCurveNodeSO�Properties70��PSdSCompoundSS؊'PSd|XSNumberSSAD�?
�'PSd|YSNumberSSAD�?B�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�L�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�ڍ#AnimationCurveNodeL0��:SSAnimCurveNodeS͍Properties70!�PSdSCompoundSSV�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL`��:SRAnimCurveNodeS�Properties70`�PSdSCompoundSS��'PSd|XSNumberSSADʎ'PSd|YSNumberSSAD���'PSd|ZSNumberSSADX�#AnimationCurveNodeL ��:SSAnimCurveNodeSK�Properties70��PSdSCompoundSSԏ'PSd|XSNumberSSAD�?	�'PSd|YSNumberSSAD�?>�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`��:SRAnimCurveNodeS��Properties70ސPSdSCompoundSS�'PSd|XSNumberSSADH�'PSd|YSNumberSSAD�}�'PSd|ZSNumberSSAD֒#AnimationCurveNodeL �:SSAnimCurveNodeSɒProperties70�PSdSCompoundSSR�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLhd�:SRAnimCurveNodeS�Properties70\�PSdSCompoundSS��'PSd|XSNumberSSADƓ'PSd|YSNumberSSAD���'PSd|ZSNumberSSADT�#AnimationCurveNodeLx̅:SSAnimCurveNodeSG�Properties70��PSdSCompoundSSД'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?:�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�M�:SRAnimCurveNodeS��Properties70ڕPSdSCompoundSS�'PSd|XSNumberSSADD�'PSd|YSNumberSSAD�y�'PSd|ZSNumberSSADҗ#AnimationCurveNodeLxE�:SSAnimCurveNodeSŗProperties70�PSdSCompoundSSN�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL(�:SRAnimCurveNodeS�Properties70X�PSdSCompoundSS��'PSd|XSNumberSSAD˜'PSd|YSNumberSSAD���'PSd|ZSNumberSSADP�#AnimationCurveNodeL��:SSAnimCurveNodeSC�Properties70��PSdSCompoundSS̙'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?6�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�U�:SRAnimCurveNodeS��Properties70֚PSdSCompoundSS�'PSd|XSNumberSSAD@�'PSd|YSNumberSSAD�u�'PSd|ZSNumberSSADΜ#AnimationCurveNodeL���:SSAnimCurveNodeS��Properties70�PSdSCompoundSSJ�'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?
�#AnimationCurveNodeLЀ�:SRAnimCurveNodeS�Properties70T�PSdSCompoundSS��'PSd|XSNumberSSAD���'PSd|YSNumberSSAD��'PSd|ZSNumberSSADL�#AnimationCurveNodeL���:SSAnimCurveNodeS?�Properties70��PSdSCompoundSSȞ'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?2�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL���:SRAnimCurveNodeS~�Properties70ҟPSdSCompoundSS�'PSd|XSNumberSSAD<�'PSd|YSNumberSSAD�q�'PSd|ZSNumberSSADʡ#AnimationCurveNodeL�K�:SSAnimCurveNodeS��Properties70�PSdSCompoundSSF�'PSd|XSNumberSSAD�?{�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?	�#AnimationCurveNodeL�Q�:SRAnimCurveNodeS��Properties70P�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADH�#AnimationCurveNodeLx�:SSAnimCurveNodeS;�Properties70��PSdSCompoundSSģ'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?.�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL���:SRAnimCurveNodeSz�Properties70ΤPSdSCompoundSS�'PSd|XSNumberSSAD�8�'PSd|YSNumberSSADm�'PSd|ZSNumberSSAD�Ʀ#AnimationCurveNodeLh7�:SSAnimCurveNodeS��Properties70
�PSdSCompoundSSB�'PSd|XSNumberSSAD�?w�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL`��:SRAnimCurveNodeS��Properties70L�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADD�#AnimationCurveNodeLhЅ:SSAnimCurveNodeS7�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?*�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL]�:SRAnimCurveNodeSv�Properties70ʩPSdSCompoundSS��'PSd|XSNumberSSAD�4�'PSd|YSNumberSSADi�'PSd|ZSNumberSSAD�«#AnimationCurveNodeL…:SSAnimCurveNodeS��Properties70	�PSdSCompoundSS>�'PSd|XSNumberSSAD�?s�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLXz�:SRAnimCurveNodeS��Properties70H�PSdSCompoundSS}�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD@�#AnimationCurveNodeLP�:SSAnimCurveNodeS3�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?&�'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLHZ�:SRAnimCurveNodeSr�Properties70ƮPSdSCompoundSS��'PSd|XSNumberSSAD�0�'PSd|YSNumberSSAD�e�'PSd|ZSNumberSSAD��#AnimationCurveNodeLp�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS:�'PSd|XSNumberSSAD�?o�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�݅:SRAnimCurveNodeS�Properties70D�PSdSCompoundSSy�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD<�#AnimationCurveNodeLxi�:SSAnimCurveNodeS/�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?"�'PSd|ZSNumberSSAD�?{�#AnimationCurveNodeLx�:SRAnimCurveNodeSn�Properties70³PSdSCompoundSS��'PSd|XSNumberSSAD,�'PSd|YSNumberSSAD�a�'PSd|ZSNumberSSAD��#AnimationCurveNodeLP+�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS6�'PSd|XSNumberSSAD�?k�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL@S�:SRAnimCurveNodeS�Properties70@�PSdSCompoundSSu�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�߶'PSd|ZSNumberSSAD8�#AnimationCurveNodeL`�:SSAnimCurveNodeS+�Properties70�PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?w�#AnimationCurveNodeL���:SRAnimCurveNodeSj�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD(�'PSd|YSNumberSSAD e|�]�'PSd|ZSNumberSSAD`��<��#AnimationCurveNodeL�:SSAnimCurveNodeS��Properties70��PSdSCompoundSS2�'PSd|XSNumberSSAD�?g�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLؐ�:SRAnimCurveNodeS�Properties70<�PSdSCompoundSSq�'PSd|XSNumberSSADj�%���'PSd|YSNumberSSAD��F'=ۻ'PSd|ZSNumberSSAD@��=�4�#AnimationCurveNodeL�h�:SSAnimCurveNodeS'�Properties70{�PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?s�#AnimationCurveNodeLp��:SRAnimCurveNodeSf�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�4��$�'PSd|YSNumberSSAD���q=Y�'PSd|ZSNumberSSAD +n����#AnimationCurveNodeLP7;SSAnimCurveNodeS��Properties70��PSdSCompoundSS.�'PSd|XSNumberSSAD�?c�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLXo;SRAnimCurveNodeS��Properties708�PSdSCompoundSSm�'PSd|XSNumberSSAD��å���'PSd|YSNumberSSAD@���=��'PSd|ZSNumberSSAD�����0�#AnimationCurveNodeL8n;SSAnimCurveNodeS#�Properties70w�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?o�#AnimationCurveNodeL`<;SRAnimCurveNodeSb�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD 14�� �'PSd|YSNumberSSAD��G�=U�'PSd|ZSNumberSSAD@G�н��#AnimationCurveNodeLHj;SSAnimCurveNodeS��Properties70��PSdSCompoundSS*�'PSd|XSNumberSSAD�?_�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL0g;SRAnimCurveNodeS��Properties704�PSdSCompoundSSi�'PSd|XSNumberSSAD�~#Ͽ��'PSd|YSNumberSSAD��j���'PSd|ZSNumberSSAD@��?,�#AnimationCurveNodeL�d;SSAnimCurveNodeS�Properties70s�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?k�#AnimationCurveNodeL�b;SRAnimCurveNodeS^�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�/ý�'PSd|YSNumberSSAD�C��=Q�'PSd|ZSNumberSSAD@����#AnimationCurveNodeLHa;SSAnimCurveNodeS��Properties70��PSdSCompoundSS&�'PSd|XSNumberSSAD�?[�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�_;SRAnimCurveNodeS��Properties700�PSdSCompoundSSe�'PSd|XSNumberSSAD@kȺ���'PSd|YSNumberSSAD@|F�=��'PSd|ZSNumberSSAD`a6ӽ(�#AnimationCurveNodeL];SSAnimCurveNodeS�Properties70o�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?g�#AnimationCurveNodeL�[;SRAnimCurveNodeSZ�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD���ǽ�'PSd|YSNumberSSAD����=M�'PSd|ZSNumberSSAD���ݽ��#AnimationCurveNodeL�/;SSAnimCurveNodeS��Properties70��PSdSCompoundSS"�'PSd|XSNumberSSAD�?W�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�3;SRAnimCurveNodeS��Properties70,�PSdSCompoundSSa�'PSd|XSNumberSSAD�݋н��'PSd|YSNumberSSAD`���=��'PSd|ZSNumberSSAD@$��$�#AnimationCurveNodeL�V;SSAnimCurveNodeS�Properties70k�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?
�'PSd|ZSNumberSSAD�?c�#AnimationCurveNodeLT;SRAnimCurveNodeSV�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD������'PSd|YSNumberSSAD��ľ=I�'PSd|ZSNumberSSAD`H�Խ��#AnimationCurveNodeL�Q;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?S�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL P;SRAnimCurveNodeS��Properties70(�PSdSCompoundSS]�'PSd|XSNumberSSAD��<ͽ��'PSd|YSNumberSSAD{m�=��'PSd|ZSNumberSSAD`��߽ �#AnimationCurveNodeLpN;SSAnimCurveNodeS�Properties70g�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?_�#AnimationCurveNodeL�L;SRAnimCurveNodeSR�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD ��Խ�'PSd|YSNumberSSAD�o��=E�'PSd|ZSNumberSSAD ;����#AnimationCurveNodeLX�;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?O�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`I;SRAnimCurveNodeS��Properties70$�PSdSCompoundSSY�'PSd|XSNumberSSAD�"�Ž��'PSd|YSNumberSSAD@��=��'PSd|ZSNumberSSAD@C�ս�#AnimationCurveNodeL�;SSAnimCurveNodeS�Properties70c�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?[�#AnimationCurveNodeL G;SRAnimCurveNodeSN�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�Pս�'PSd|YSNumberSSAD ��=A�'PSd|ZSNumberSSAD��,���#AnimationCurveNodeLF;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?K�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�;SRAnimCurveNodeS��Properties70 �PSdSCompoundSSU�'PSd|XSNumberSSAD�j#޽��'PSd|YSNumberSSAD`8"�=��'PSd|ZSNumberSSAD�m��#AnimationCurveNodeL;SSAnimCurveNodeS�Properties70_�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?W�#AnimationCurveNodeL�@;SRAnimCurveNodeSJ�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD ̵���'PSd|YSNumberSSAD@,��==�'PSd|ZSNumberSSAD�y�ӽ��#AnimationCurveNodeL�?;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?G�'PSd|YSNumberSSAD�?|�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL8+;SRAnimCurveNodeS��Properties70�PSdSCompoundSSQ�'PSd|XSNumberSSAD�
�Ƚ��'PSd|YSNumberSSAD�N��=��'PSd|ZSNumberSSAD��
��#AnimationCurveNodeL�(;SSAnimCurveNodeS�Properties70[�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?S�#AnimationCurveNodeL�;SRAnimCurveNodeSF�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��ѽ�'PSd|YSNumberSSAD P��=9�'PSd|ZSNumberSSAD�?���#AnimationCurveNodeL�";SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?C�'PSd|YSNumberSSAD�?x�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL� ;SRAnimCurveNodeS��Properties70�PSdSCompoundSSM�'PSd|XSNumberSSAD ܥ����'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD�O��<�#AnimationCurveNodeL(;SSAnimCurveNodeS�Properties70W�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?O�#AnimationCurveNodeLX;SRAnimCurveNodeSB�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`YH=�'PSd|YSNumberSSAD@Z�'=5�'PSd|ZSNumberSSAD�b�@=��#AnimationCurveNodeL;SSAnimCurveNodeS��Properties70��PSdSCompoundSS
�'PSd|XSNumberSSAD�??�'PSd|YSNumberSSAD�?t�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�;SRAnimCurveNodeS��Properties70�PSdSCompoundSSI�'PSd|XSNumberSSAD��r=~�'PSd|YSNumberSSAD`�
m=��'PSd|ZSNumberSSAD`��=�#AnimationCurveNodeL�;SSAnimCurveNodeS��Properties70S�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?K�#AnimationCurveNodeL�;SRAnimCurveNodeS>�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD ø�=��'PSd|YSNumberSSAD�O@�=1�'PSd|ZSNumberSSAD`���=��#AnimationCurveNodeLH;SSAnimCurveNodeS}�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?;�'PSd|YSNumberSSAD�?p�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLx	;SRAnimCurveNodeS��Properties70�PSdSCompoundSSE�'PSd|XSNumberSSAD��V�z�'PSd|YSNumberSSAD�5�=��'PSd|ZSNumberSSAD���=�#AnimationCurveNodeL8;SSAnimCurveNodeS��Properties70O�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?G�#AnimationCurveNodeLX�;SRAnimCurveNodeS:�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�$���'PSd|YSNumberSSAD��Y?-�'PSd|ZSNumberSSAD U���#AnimationCurveNodeL(�;SSAnimCurveNodeSy�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?7�'PSd|YSNumberSSAD�?l�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��;SRAnimCurveNodeS��Properties70�PSdSCompoundSSA�'PSd|XSNumberSSAD�4���v�'PSd|YSNumberSSAD����=��'PSd|ZSNumberSSAD��=�#AnimationCurveNodeL��;SSAnimCurveNodeS��Properties70K�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?C�#AnimationCurveNodeL��;SRAnimCurveNodeS6�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�wD�=��'PSd|YSNumberSSAD�b�=)�'PSd|ZSNumberSSAD�P��=��#AnimationCurveNodeL��;SSAnimCurveNodeSu�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?3�'PSd|YSNumberSSAD�?h�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��;SRAnimCurveNodeS��Properties70�PSdSCompoundSS=�'PSd|XSNumberSSAD@�Y�=r�'PSd|YSNumberSSAD@���=��'PSd|ZSNumberSSAD :��=�#AnimationCurveNodeL(�;SSAnimCurveNodeS��Properties70G�PSdSCompoundSS|�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�??�#AnimationCurveNodeLX�;SRAnimCurveNodeS2�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��z�=��'PSd|YSNumberSSAD`�m�=%�'PSd|ZSNumberSSAD@\6�=~#AnimationCurveNodeL�;SSAnimCurveNodeSqProperties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?/'PSd|YSNumberSSAD�?d'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��;SRAnimCurveNodeS�Properties70PSdSCompoundSS9'PSd|XSNumberSSAD�w��=n'PSd|YSNumberSSAD��(�=�'PSd|ZSNumberSSAD����=�#AnimationCurveNodeL��;SSAnimCurveNodeS�Properties70CPSdSCompoundSSx'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?;#AnimationCurveNodeL��;SRAnimCurveNodeS.Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�.��=�'PSd|YSNumberSSAD����=!'PSd|ZSNumberSSAD 
�=z#AnimationCurveNodeLH�;SSAnimCurveNodeSmProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?+'PSd|YSNumberSSAD�?`'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLx�;SRAnimCurveNodeS�Properties70PSdSCompoundSS5'PSd|XSNumberSSAD��0�=j'PSd|YSNumberSSAD@���=�'PSd|ZSNumberSSAD�گ�=�#AnimationCurveNodeL8�;SSAnimCurveNodeS�Properties70?PSdSCompoundSSt'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?7	#AnimationCurveNodeL��;SRAnimCurveNodeS*	Properties70~PSdSCompoundSS�'PSd|XSNumberSSAD���=�'PSd|YSNumberSSAD�_�=	'PSd|ZSNumberSSAD��=v
#AnimationCurveNodeL�;SSAnimCurveNodeSi
Properties70�	PSdSCompoundSS�	'PSd|XSNumberSSAD�?'
'PSd|YSNumberSSAD�?\
'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��;SRAnimCurveNodeS�Properties70�
PSdSCompoundSS1'PSd|XSNumberSSAD�x�=f'PSd|YSNumberSSAD r��=�'PSd|ZSNumberSSAD ��=�#AnimationCurveNodeL��;SSAnimCurveNodeS�Properties70;PSdSCompoundSSp'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?3#AnimationCurveNodeL��;SRAnimCurveNodeS&Properties70z
PSdSCompoundSS�
'PSd|XSNumberSSAD�WO�=�
'PSd|YSNumberSSAD`X��='PSd|ZSNumberSSADn��=r#AnimationCurveNodeLX�;SSAnimCurveNodeSeProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?#'PSd|YSNumberSSAD�?X'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLȿ;SRAnimCurveNodeS�Properties70�PSdSCompoundSS-'PSd|XSNumberSSAD�w��=b'PSd|YSNumberSSAD@�6�=�'PSd|ZSNumberSSAD��6�=�#AnimationCurveNodeL��;SSAnimCurveNodeS�Properties707PSdSCompoundSSl'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?/#AnimationCurveNodeL(�;SRAnimCurveNodeS"Properties70vPSdSCompoundSS�'PSd|XSNumberSSAD�fո=�'PSd|YSNumberSSAD��G�='PSd|ZSNumberSSAD�U6�=n#AnimationCurveNodeLX�;SSAnimCurveNodeSaProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?'PSd|YSNumberSSAD�?T'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��;SRAnimCurveNodeS�Properties70�PSdSCompoundSS)'PSd|XSNumberSSAD��L�>^'PSd|YSNumberSSAD b��=�'PSd|ZSNumberSSAD�P�=�#AnimationCurveNodeL��;SSAnimCurveNodeS�Properties703PSdSCompoundSSh'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?+#AnimationCurveNodeL�;SRAnimCurveNodeSProperties70rPSdSCompoundSS�'PSd|XSNumberSSAD`�?�'PSd|YSNumberSSAD ER��'PSd|ZSNumberSSAD X�s�j#AnimationCurveNodeL�;SSAnimCurveNodeS]Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?'PSd|YSNumberSSAD�?P'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLH�;SRAnimCurveNodeS�Properties70�PSdSCompoundSS%'PSd|XSNumberSSAD@xG�Z'PSd|YSNumberSSAD@���>�'PSd|ZSNumberSSAD`��w>�#AnimationCurveNodeLx�;SSAnimCurveNodeS�Properties70/PSdSCompoundSSd'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?'#AnimationCurveNodeLH�;SRAnimCurveNodeSProperties70nPSdSCompoundSS�'PSd|XSNumberSSAD ?�'PSd|YSNumberSSAD`Pᘾ
'PSd|ZSNumberSSAD n3M�f#AnimationCurveNodeLh�;SSAnimCurveNodeSYProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?'PSd|YSNumberSSAD�?L'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��;SRAnimCurveNodeS�Properties70�PSdSCompoundSS!'PSd|XSNumberSSADV'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD� #AnimationCurveNodeLX�;SSAnimCurveNodeS� Properties70+ PSdSCompoundSS` 'PSd|XSNumberSSAD�?� 'PSd|YSNumberSSAD�?� 'PSd|ZSNumberSSAD�?#"#AnimationCurveNodeL�;SRAnimCurveNodeS"Properties70j!PSdSCompoundSS�!'PSd|XSNumberSSAD@J�?�!'PSd|YSNumberSSAD@,�>	"'PSd|ZSNumberSSAD
y�>b##AnimationCurveNodeL@�;SSAnimCurveNodeSU#Properties70�"PSdSCompoundSS�"'PSd|XSNumberSSAD�?#'PSd|YSNumberSSAD�?H#'PSd|ZSNumberSSAD�?�$#AnimationCurveNodeLp�;SRAnimCurveNodeS�$Properties70�#PSdSCompoundSS$'PSd|XSNumberSSAD��0�R$'PSd|YSNumberSSAD�w�¾�$'PSd|ZSNumberSSAD`�����%#AnimationCurveNodeL��;SSAnimCurveNodeS�%Properties70'%PSdSCompoundSS\%'PSd|XSNumberSSAD�?�%'PSd|YSNumberSSAD�?�%'PSd|ZSNumberSSAD�?'#AnimationCurveNodeLЇ;SRAnimCurveNodeS'Properties70f&PSdSCompoundSS�&'PSd|XSNumberSSAD��
?�&'PSd|YSNumberSSAD��>''PSd|ZSNumberSSAD@�v~�^(#AnimationCurveNodeL�;SSAnimCurveNodeSQ(Properties70�'PSdSCompoundSS�''PSd|XSNumberSSAD�?('PSd|YSNumberSSAD�?D('PSd|ZSNumberSSAD�?�)#AnimationCurveNodeL0�;SRAnimCurveNodeS�)Properties70�(PSdSCompoundSS)'PSd|XSNumberSSADN)'PSd|YSNumberSSAD��)'PSd|ZSNumberSSAD�*#AnimationCurveNodeLȀ;SSAnimCurveNodeS�*Properties70#*PSdSCompoundSSX*'PSd|XSNumberSSAD�?�*'PSd|YSNumberSSAD�?�*'PSd|ZSNumberSSAD�?,#AnimationCurveNodeL;STAnimCurveNodeS,Properties70b+PSdSCompoundSS�+'PSd|XSNumberSSAD�!@�+'PSd|YSNumberSSAD���W@,'PSd|ZSNumberSSAD`d�,@Z-#AnimationCurveNodeL�|;SRAnimCurveNodeSM-Properties70�,PSdSCompoundSS�,'PSd|XSNumberSSAD��1f�-'PSd|YSNumberSSAD�xJ�@-'PSd|ZSNumberSSAD �sf@�.#AnimationCurveNodeL�x;SSAnimCurveNodeS�.Properties70�-PSdSCompoundSS.'PSd|XSNumberSSAD�?J.'PSd|YSNumberSSAD�?.'PSd|ZSNumberSSAD�?�/#AnimationCurveNodeL`v;SRAnimCurveNodeS�/Properties70/PSdSCompoundSST/'PSd|XSNumberSSAD ���/'PSd|YSNumberSSAD�a��/'PSd|ZSNumberSSAD�p߿1#AnimationCurveNodeL�r;SSAnimCurveNodeS
1Properties70^0PSdSCompoundSS�0'PSd|XSNumberSSAD�?�0'PSd|YSNumberSSAD�?�0'PSd|ZSNumberSSAD�?V2#AnimationCurveNodeL���<SRAnimCurveNodeSI2Properties70�1PSdSCompoundSS�1'PSd|XSNumberSSAD��
%@2'PSd|YSNumberSSADY�<2'PSd|ZSNumberSSAD@��?�3#AnimationCurveNodeL���<SSAnimCurveNodeS�3Properties70�2PSdSCompoundSS3'PSd|XSNumberSSAD�?F3'PSd|YSNumberSSAD�?{3'PSd|ZSNumberSSAD�?�4#AnimationCurveNodeL��<SRAnimCurveNodeS�4Properties704PSdSCompoundSSP4'PSd|XSNumberSSAD��@�4'PSd|YSNumberSSAD ��?�4'PSd|ZSNumberSSAD@�r��6#AnimationCurveNodeL��<SSAnimCurveNodeS6Properties70Z5PSdSCompoundSS�5'PSd|XSNumberSSAD�?�5'PSd|YSNumberSSAD�?�5'PSd|ZSNumberSSAD�?R7#AnimationCurveNodeL���<SRAnimCurveNodeSE7Properties70�6PSdSCompoundSS�6'PSd|XSNumberSSAD�0��7'PSd|YSNumberSSAD�l�?87'PSd|ZSNumberSSAD@_�?�8#AnimationCurveNodeL���<SSAnimCurveNodeS�8Properties70�7PSdSCompoundSS
8'PSd|XSNumberSSAD�?B8'PSd|YSNumberSSAD�?w8'PSd|ZSNumberSSAD�?�9#AnimationCurveNodeL���<SRAnimCurveNodeS�9Properties709PSdSCompoundSSL9'PSd|XSNumberSSAD ܥ�<�9'PSd|YSNumberSSAD����<�9'PSd|ZSNumberSSAD��FǼ;#AnimationCurveNodeLڊ<SSAnimCurveNodeS;Properties70V:PSdSCompoundSS�:'PSd|XSNumberSSAD�:'PSd|YSNumberSSAD�:'PSd|ZSNumberSSADN<#AnimationCurveNodeL�݊<SRAnimCurveNodeSA<Properties70�;PSdSCompoundSS�;'PSd|XSNumberSSAD ܥ�<�;'PSd|YSNumberSSAD����<4<'PSd|ZSNumberSSAD��FǼ�=#AnimationCurveNodeL���<SSAnimCurveNodeS�=Properties70�<PSdSCompoundSS	='PSd|XSNumberSSAD>='PSd|YSNumberSSADs='PSd|ZSNumberSSAD�>#AnimationCurveNodeL0�<SRAnimCurveNodeS�>Properties70>PSdSCompoundSSH>'PSd|XSNumberSSAD ܥ�<}>'PSd|YSNumberSSAD����<�>'PSd|ZSNumberSSAD��FǼ@#AnimationCurveNodeLx�<SSAnimCurveNodeS�?Properties70R?PSdSCompoundSS�?'PSd|XSNumberSSAD�?'PSd|YSNumberSSAD�?'PSd|ZSNumberSSADJA#AnimationCurveNodeL�<SRAnimCurveNodeS=AProperties70�@PSdSCompoundSS�@'PSd|XSNumberSSAD ܥ�<�@'PSd|YSNumberSSAD����<0A'PSd|ZSNumberSSAD��FǼ�B#AnimationCurveNodeL��<SSAnimCurveNodeS|BProperties70�APSdSCompoundSSB'PSd|XSNumberSSAD:B'PSd|YSNumberSSADoB'PSd|ZSNumberSSAD�C#AnimationCurveNodeL0�<SRAnimCurveNodeS�CProperties70CPSdSCompoundSSDC'PSd|XSNumberSSAD ܥ�<yC'PSd|YSNumberSSAD����<�C'PSd|ZSNumberSSAD��FǼE#AnimationCurveNodeL�ߊ<SSAnimCurveNodeS�DProperties70NDPSdSCompoundSS�D'PSd|XSNumberSSAD�D'PSd|YSNumberSSAD�D'PSd|ZSNumberSSADFF#AnimationCurveNodeL`�<SRAnimCurveNodeS9FProperties70�EPSdSCompoundSS�E'PSd|XSNumberSSAD ܥ�<�E'PSd|YSNumberSSAD����<,F'PSd|ZSNumberSSAD��FǼ�G#AnimationCurveNodeLȷ�<SSAnimCurveNodeSxGProperties70�FPSdSCompoundSSG'PSd|XSNumberSSAD6G'PSd|YSNumberSSADkG'PSd|ZSNumberSSAD�H#AnimationCurveNodeLp��<SRAnimCurveNodeS�HProperties70HPSdSCompoundSS@H'PSd|XSNumberSSAD ܥ�<uH'PSd|YSNumberSSAD����<�H'PSd|ZSNumberSSAD��FǼJ#AnimationCurveNodeLXӊ<SSAnimCurveNodeS�IProperties70JIPSdSCompoundSSI'PSd|XSNumberSSAD�I'PSd|YSNumberSSAD�I'PSd|ZSNumberSSADBK#AnimationCurveNodeL׊<SRAnimCurveNodeS5KProperties70�JPSdSCompoundSS�J'PSd|XSNumberSSAD ܥ�<�J'PSd|YSNumberSSAD����<(K'PSd|ZSNumberSSAD��FǼ�L#AnimationCurveNodeL�Њ<SSAnimCurveNodeStLProperties70�KPSdSCompoundSS�K'PSd|XSNumberSSAD2L'PSd|YSNumberSSADgL'PSd|ZSNumberSSAD�M#AnimationCurveNodeLʊ<SRAnimCurveNodeS�MProperties70MPSdSCompoundSS<M'PSd|XSNumberSSAD ܥ�<qM'PSd|YSNumberSSAD����<�M'PSd|ZSNumberSSAD��FǼ�N#AnimationCurveNodeLXʊ<SSAnimCurveNodeS�NProperties70FNPSdSCompoundSS{N'PSd|XSNumberSSAD�N'PSd|YSNumberSSAD�N'PSd|ZSNumberSSAD>P#AnimationCurveNodeL�Ê<SRAnimCurveNodeS1PProperties70�OPSdSCompoundSS�O'PSd|XSNumberSSAD ܥ�<�O'PSd|YSNumberSSAD����<$P'PSd|ZSNumberSSAD��FǼ}Q#AnimationCurveNodeL�NJ<SSAnimCurveNodeSpQProperties70�PPSdSCompoundSS�P'PSd|XSNumberSSAD.Q'PSd|YSNumberSSADcQ'PSd|ZSNumberSSAD�R#AnimationCurveNodeL��<SRAnimCurveNodeS�RProperties70RPSdSCompoundSS8R'PSd|XSNumberSSAD ܥ�<mR'PSd|YSNumberSSAD����<�R'PSd|ZSNumberSSAD��FǼ�S#AnimationCurveNodeL��<SSAnimCurveNodeS�SProperties70BSPSdSCompoundSSwS'PSd|XSNumberSSAD�S'PSd|YSNumberSSAD�S'PSd|ZSNumberSSAD:U#AnimationCurveNodeL���<SRAnimCurveNodeS-UProperties70�TPSdSCompoundSS�T'PSd|XSNumberSSAD ܥ�<�T'PSd|YSNumberSSAD����< U'PSd|ZSNumberSSAD��FǼyV#AnimationCurveNodeLh��<SSAnimCurveNodeSlVProperties70�UPSdSCompoundSS�U'PSd|XSNumberSSAD*V'PSd|YSNumberSSAD_V'PSd|ZSNumberSSAD�W#AnimationCurveNodeLP��<SRAnimCurveNodeS�WProperties70�VPSdSCompoundSS4W'PSd|XSNumberSSAD ܥ�<iW'PSd|YSNumberSSAD����<�W'PSd|ZSNumberSSAD��FǼ�X#AnimationCurveNodeL8��<SSAnimCurveNodeS�XProperties70>XPSdSCompoundSSsX'PSd|XSNumberSSAD�X'PSd|YSNumberSSAD�X'PSd|ZSNumberSSAD6Z#AnimationCurveNodeL ��<SRAnimCurveNodeS)ZProperties70}YPSdSCompoundSS�Y'PSd|XSNumberSSAD��Y'PSd|YSNumberSSAD����<Z'PSd|ZSNumberSSAD��FǼu[#AnimationCurveNodeL��<SSAnimCurveNodeSh[Properties70�ZPSdSCompoundSS�Z'PSd|XSNumberSSAD&['PSd|YSNumberSSAD[['PSd|ZSNumberSSAD�\#AnimationCurveNodeL�<SRAnimCurveNodeS�\Properties70�[PSdSCompoundSS0\'PSd|XSNumberSSAD ܥ�<e\'PSd|YSNumberSSAD����<�\'PSd|ZSNumberSSAD��FǼ�]#AnimationCurveNodeLء�<SSAnimCurveNodeS�]Properties70:]PSdSCompoundSSo]'PSd|XSNumberSSAD�]'PSd|YSNumberSSAD�]'PSd|ZSNumberSSAD2_#AnimationCurveNodeL�<SRAnimCurveNodeS%_Properties70y^PSdSCompoundSS�^'PSd|XSNumberSSAD ܥ�<�^'PSd|YSNumberSSAD����<_'PSd|ZSNumberSSAD��FǼq`#AnimationCurveNodeLX��<SSAnimCurveNodeSd`Properties70�_PSdSCompoundSS�_'PSd|XSNumberSSAD"`'PSd|YSNumberSSADW`'PSd|ZSNumberSSAD�a#AnimationCurveNodeL@��<SRAnimCurveNodeS�aProperties70�`PSdSCompoundSS,a'PSd|XSNumberSSAD ܥ�<aa'PSd|YSNumberSSAD����<�a'PSd|ZSNumberSSAD��FǼ�b#AnimationCurveNodeL(��<SSAnimCurveNodeS�bProperties706bPSdSCompoundSSkb'PSd|XSNumberSSAD�b'PSd|YSNumberSSAD�b'PSd|ZSNumberSSAD.d#AnimationCurveNodeL`��<SRAnimCurveNodeS!dProperties70ucPSdSCompoundSS�c'PSd|XSNumberSSAD ܥ�<�c'PSd|YSNumberSSAD����<d'PSd|ZSNumberSSAD��FǼme#AnimationCurveNodeLH��<SSAnimCurveNodeS`eProperties70�dPSdSCompoundSS�d'PSd|XSNumberSSADe'PSd|YSNumberSSADSe'PSd|ZSNumberSSAD�f#AnimationCurveNodeL8�<SRAnimCurveNodeS�fProperties70�ePSdSCompoundSS(f'PSd|XSNumberSSAD ܥ�<]f'PSd|YSNumberSSAD����<�f'PSd|ZSNumberSSAD��FǼ�g#AnimationCurveNodeLP�<SSAnimCurveNodeS�gProperties702gPSdSCompoundSSgg'PSd|XSNumberSSAD�g'PSd|YSNumberSSAD�g'PSd|ZSNumberSSAD*i#AnimationCurveNodeLh�<SRAnimCurveNodeSiProperties70qhPSdSCompoundSS�h'PSd|XSNumberSSAD ܥ�<�h'PSd|YSNumberSSAD����<i'PSd|ZSNumberSSAD��FǼij#AnimationCurveNodeL��<SSAnimCurveNodeS\jProperties70�iPSdSCompoundSS�i'PSd|XSNumberSSADj'PSd|YSNumberSSADOj'PSd|ZSNumberSSAD�k#AnimationCurveNodeL��<SRAnimCurveNodeS�kProperties70�jPSdSCompoundSS$k'PSd|XSNumberSSAD�Yk'PSd|YSNumberSSAD����<�k'PSd|ZSNumberSSAD��FǼ�l#AnimationCurveNodeL��<SSAnimCurveNodeS�lProperties70.lPSdSCompoundSScl'PSd|XSNumberSSAD�l'PSd|YSNumberSSAD�l'PSd|ZSNumberSSAD&n#AnimationCurveNodeL��<SRAnimCurveNodeSnProperties70mmPSdSCompoundSS�m'PSd|XSNumberSSAD ܥ�<�m'PSd|YSNumberSSAD����<n'PSd|ZSNumberSSAD��FǼeo#AnimationCurveNodeL��<SSAnimCurveNodeSXoProperties70�nPSdSCompoundSS�n'PSd|XSNumberSSADo'PSd|YSNumberSSADKo'PSd|ZSNumberSSAD�p#AnimationCurveNodeL� �<SRAnimCurveNodeS�pProperties70�oPSdSCompoundSS p'PSd|XSNumberSSAD ܥ�<Up'PSd|YSNumberSSAD����<�p'PSd|ZSNumberSSAD��FǼ�q#AnimationCurveNodeL$�<SSAnimCurveNodeS�qProperties70*qPSdSCompoundSS_q'PSd|XSNumberSSAD�q'PSd|YSNumberSSAD�q'PSd|ZSNumberSSAD"s#AnimationCurveNodeL('�<SRAnimCurveNodeSsProperties70irPSdSCompoundSS�r'PSd|XSNumberSSAD ܥ�<�r'PSd|YSNumberSSAD����<s'PSd|ZSNumberSSAD��FǼat#AnimationCurveNodeL@*�<SSAnimCurveNodeSTtProperties70�sPSdSCompoundSS�s'PSd|XSNumberSSADt'PSd|YSNumberSSADGt'PSd|ZSNumberSSAD�u#AnimationCurveNodeLX-�<SRAnimCurveNodeS�uProperties70�tPSdSCompoundSSu'PSd|XSNumberSSAD�LE�?Qu'PSd|YSNumberSSAD��꿆u'PSd|ZSNumberSSAD�O���v#AnimationCurveNodeL1�<SSAnimCurveNodeS�vProperties70&vPSdSCompoundSS[v'PSd|XSNumberSSAD�?�v'PSd|YSNumberSSAD�?�v'PSd|ZSNumberSSAD�?x#AnimationCurveNodeL4�<SRAnimCurveNodeSxProperties70ewPSdSCompoundSS�w'PSd|XSNumberSSAD"�@�w'PSd|YSNumberSSAD��K�?x'PSd|ZSNumberSSAD�/�R@]y#AnimationCurveNodeL07�<SSAnimCurveNodeSPyProperties70�xPSdSCompoundSS�x'PSd|XSNumberSSAD�?y'PSd|YSNumberSSAD�?Cy'PSd|ZSNumberSSAD�?�z#AnimationCurveNodeLH:�<SRAnimCurveNodeS�zProperties70�yPSdSCompoundSSz'PSd|XSNumberSSAD`�%.@Mz'PSd|YSNumberSSAD�4�@�z'PSd|ZSNumberSSAD@��@�{#AnimationCurveNodeL`=�<SSAnimCurveNodeS�{Properties70"{PSdSCompoundSSW{'PSd|XSNumberSSAD�?�{'PSd|YSNumberSSAD�?�{'PSd|ZSNumberSSAD�?}#AnimationCurveNodeLx@�<SRAnimCurveNodeS
}Properties70a|PSdSCompoundSS�|'PSd|XSNumberSSAD`nI��|'PSd|YSNumberSSADh�
�}'PSd|ZSNumberSSAD��;�Y~#AnimationCurveNodeL�C�<SSAnimCurveNodeSL~Properties70�}PSdSCompoundSS�}'PSd|XSNumberSSAD�?
~'PSd|YSNumberSSAD�??~'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�F�<SRAnimCurveNodeS�Properties70�~PSdSCompoundSS'PSd|XSNumberSSAD ��"�I'PSd|YSNumberSSAD�S�3@~'PSd|ZSNumberSSAD���*@׀#AnimationCurveNodeL�I�<SSAnimCurveNodeSʀProperties70�PSdSCompoundSSS�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�L�<SRAnimCurveNodeS	�Properties70]�PSdSCompoundSS��'PSd|XSNumberSSAD J���ǁ'PSd|YSNumberSSAD'w˿��'PSd|ZSNumberSSAD@�!2@U�#AnimationCurveNodeL�O�<SSAnimCurveNodeSH�Properties70��PSdSCompoundSSт'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?;�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLS�<SRAnimCurveNodeS��Properties70ۃPSdSCompoundSS�'PSd|XSNumberSSAD@!��E�'PSd|YSNumberSSAD�y��?z�'PSd|ZSNumberSSAD���;@Ӆ#AnimationCurveNodeL V�<SSAnimCurveNodeSƅProperties70�PSdSCompoundSSO�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL8Y�<SRAnimCurveNodeS�Properties70Y�PSdSCompoundSS��'PSd|XSNumberSSAD`!���Æ'PSd|YSNumberSSAD˵!@��'PSd|ZSNumberSSAD�!�-@Q�#AnimationCurveNodeLP\�<SSAnimCurveNodeSD�Properties70��PSdSCompoundSS͇'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?7�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLh_�<SRAnimCurveNodeS��Properties70׈PSdSCompoundSS�'PSd|XSNumberSSAD��߿A�'PSd|YSNumberSSAD �ε�v�'PSd|ZSNumberSSAD�/I1@ϊ#AnimationCurveNodeL�b�<SSAnimCurveNodeSŠProperties70�PSdSCompoundSSK�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�e�<SRAnimCurveNodeS�Properties70U�PSdSCompoundSS��'PSd|XSNumberSSAD@4����'PSd|YSNumberSSAD ���?�'PSd|ZSNumberSSAD �m<@M�#AnimationCurveNodeL�h�<SSAnimCurveNodeS@�Properties70��PSdSCompoundSSɌ'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?3�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�k�<SRAnimCurveNodeS�Properties70ӍPSdSCompoundSS�'PSd|XSNumberSSAD`�B�?=�'PSd|YSNumberSSAD�<g��r�'PSd|ZSNumberSSAD�<�-@ˏ#AnimationCurveNodeL�n�<SSAnimCurveNodeS��Properties70�PSdSCompoundSSG�'PSd|XSNumberSSAD�?|�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?
�#AnimationCurveNodeL�q�<SRAnimCurveNodeS��Properties70Q�PSdSCompoundSS��'PSd|XSNumberSSAD �5�?��'PSd|YSNumberSSAD@P�?�'PSd|ZSNumberSSAD��E4@I�#AnimationCurveNodeLu�<SSAnimCurveNodeS<�Properties70��PSdSCompoundSSő'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?/�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL(x�<SRAnimCurveNodeS{�Properties70ϒPSdSCompoundSS�'PSd|XSNumberSSAD�P;�?9�'PSd|YSNumberSSAD@?^ÿn�'PSd|ZSNumberSSAD ��@@ǔ#AnimationCurveNodeL@{�<SSAnimCurveNodeS��Properties70�PSdSCompoundSSC�'PSd|XSNumberSSAD�?x�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLX~�<SRAnimCurveNodeS��Properties70M�PSdSCompoundSS��'PSd|XSNumberSSAD ��?��'PSd|YSNumberSSAD���-��'PSd|ZSNumberSSAD`�5@E�#AnimationCurveNodeLp��<SSAnimCurveNodeS8�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?+�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL���<SRAnimCurveNodeSw�Properties70˗PSdSCompoundSS�'PSd|XSNumberSSAD����?5�'PSd|YSNumberSSAD�zxɿj�'PSd|ZSNumberSSAD�
5@Ù#AnimationCurveNodeL��>;SSAnimCurveNodeS��Properties70
�PSdSCompoundSS?�'PSd|XSNumberSSAD�?t�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��>;SRAnimCurveNodeS��Properties70I�PSdSCompoundSS~�'PSd|XSNumberSSAD�!��?��'PSd|YSNumberSSAD�C���'PSd|ZSNumberSSAD�5@A�#AnimationCurveNodeL��>;SSAnimCurveNodeS4�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?'�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`�>;SRAnimCurveNodeSs�Properties70ǜPSdSCompoundSS��'PSd|XSNumberSSAD��5@1�'PSd|YSNumberSSAD�� �f�'PSd|ZSNumberSSAD`U(�?��#AnimationCurveNodeLH�>;SSAnimCurveNodeS��Properties70�PSdSCompoundSS;�'PSd|XSNumberSSAD�?p�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�>;SRAnimCurveNodeS�Properties70E�PSdSCompoundSSz�'PSd|XSNumberSSAD c��?��'PSd|YSNumberSSAD b�!��'PSd|ZSNumberSSAD�q�ֿ=�#AnimationCurveNodeL��>;SSAnimCurveNodeS0�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?#�'PSd|ZSNumberSSAD�?|�#AnimationCurveNodeL��>;SRAnimCurveNodeSo�Properties70áPSdSCompoundSS��'PSd|XSNumberSSAD C@-�'PSd|YSNumberSSAD�99�b�'PSd|ZSNumberSSAD�w���#AnimationCurveNodeL��>;SSAnimCurveNodeS��Properties70�PSdSCompoundSS7�'PSd|XSNumberSSAD�?l�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLP�>;SRAnimCurveNodeS�Properties70A�PSdSCompoundSSv�'PSd|XSNumberSSAD �4�?��'PSd|YSNumberSSAD(���'PSd|ZSNumberSSAD��"�9�#AnimationCurveNodeL8�>;SSAnimCurveNodeS,�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?x�#AnimationCurveNodeL�>;SRAnimCurveNodeSk�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�g���)�'PSd|YSNumberSSADx� @^�'PSd|ZSNumberSSAD��8R���#AnimationCurveNodeL�>;SSAnimCurveNodeS��Properties70��PSdSCompoundSS3�'PSd|XSNumberSSAD�?h�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLй>;SRAnimCurveNodeS�Properties70=�PSdSCompoundSSr�'PSd|XSNumberSSAD �_4@��'PSd|YSNumberSSAD��'�ܩ'PSd|ZSNumberSSAD�'��5�#AnimationCurveNodeL��>;SSAnimCurveNodeS(�Properties70|�PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?t�#AnimationCurveNodeL`�>;SRAnimCurveNodeSg�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�� �%�'PSd|YSNumberSSAD@�J@Z�'PSd|ZSNumberSSAD���?��#AnimationCurveNodeL(�>;SSAnimCurveNodeS��Properties70��PSdSCompoundSS/�'PSd|XSNumberSSAD�?d�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLU?;SRAnimCurveNodeS�Properties709�PSdSCompoundSSn�'PSd|XSNumberSSAD�0�濣�'PSd|YSNumberSSAD@�t2�خ'PSd|ZSNumberSSAD �3�1�#AnimationCurveNodeLS?;SSAnimCurveNodeS$�Properties70x�PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?p�#AnimationCurveNodeLHP?;SRAnimCurveNodeSc�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD �F@!�'PSd|YSNumberSSAD`\�?V�'PSd|ZSNumberSSAD`o63���#AnimationCurveNodeLN?;SSAnimCurveNodeS��Properties70��PSdSCompoundSS+�'PSd|XSNumberSSAD�?`�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�K?;SRAnimCurveNodeS�Properties705�PSdSCompoundSSj�'PSd|XSNumberSSAD ,a
@��'PSd|YSNumberSSAD M��?Գ'PSd|ZSNumberSSAD�V�1�-�#AnimationCurveNodeL�I?;SSAnimCurveNodeS �Properties70t�PSdSCompoundSS��'PSd|XSNumberSSAD�?޴'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?l�#AnimationCurveNodeL��>;SRAnimCurveNodeS_�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD`���?�'PSd|YSNumberSSAD`q� �R�'PSd|ZSNumberSSAD�<�0���#AnimationCurveNodeL0D?;SSAnimCurveNodeS��Properties70�PSdSCompoundSS'�'PSd|XSNumberSSAD�?\�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�>;SRAnimCurveNodeSݸProperties701�PSdSCompoundSSf�'PSd|XSNumberSSADh�?��'PSd|YSNumberSSAD�i
�?и'PSd|ZSNumberSSAD`D3�)�#AnimationCurveNodeL�??;SSAnimCurveNodeS�Properties70p�PSdSCompoundSS��'PSd|XSNumberSSAD�?ڹ'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?h�#AnimationCurveNodeL��>;SRAnimCurveNodeS[�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD����?�'PSd|YSNumberSSAD�T$�?N�'PSd|ZSNumberSSAD��1���#AnimationCurveNodeL0;?;SSAnimCurveNodeS��Properties70�PSdSCompoundSS#�'PSd|XSNumberSSAD�?X�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�8?;SRAnimCurveNodeSٽProperties70-�PSdSCompoundSSb�'PSd|XSNumberSSAD��>��'PSd|YSNumberSSAD?�?̽'PSd|ZSNumberSSAD���2�%�#AnimationCurveNodeL�>;SSAnimCurveNodeS�Properties70l�PSdSCompoundSS��'PSd|XSNumberSSAD�?־'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?d�#AnimationCurveNodeL@�>;SRAnimCurveNodeSW�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD��F��'PSd|YSNumberSSAD�%lտJ�'PSd|ZSNumberSSAD��8���#AnimationCurveNodeLh�>;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?T�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�/?;SRAnimCurveNodeS��Properties70)�PSdSCompoundSS^�'PSd|XSNumberSSAD`Cΐ�'PSd|YSNumberSSAD`�4ƿ��'PSd|ZSNumberSSAD@��6�!�#AnimationCurveNodeLh-?;SSAnimCurveNodeS�Properties70h�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?`�#AnimationCurveNodeL�*?;SRAnimCurveNodeSS�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�[s��'PSd|YSNumberSSAD@1�(@F�'PSd|ZSNumberSSAD�$���#AnimationCurveNodeLP�>;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?P�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`&?;SRAnimCurveNodeS��Properties70%�PSdSCompoundSSZ�'PSd|XSNumberSSAD��M ���'PSd|YSNumberSSAD@�����'PSd|ZSNumberSSAD`6&7��#AnimationCurveNodeL�>;SSAnimCurveNodeS�Properties70d�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?\�#AnimationCurveNodeL�!?;SRAnimCurveNodeSO�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD t�
�'PSd|YSNumberSSAD���?B�'PSd|ZSNumberSSAD ��"���#AnimationCurveNodeLX?;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?L�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL?;SRAnimCurveNodeS��Properties70!�PSdSCompoundSSV�'PSd|XSNumberSSAD��@��'PSd|YSNumberSSAD 34@��'PSd|ZSNumberSSAD����?�#AnimationCurveNodeL�?;SSAnimCurveNodeS�Properties70`�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?X�#AnimationCurveNodeLP?;SRAnimCurveNodeSK�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��!@	�'PSd|YSNumberSSAD`7+@>�'PSd|ZSNumberSSAD����?��#AnimationCurveNodeL?;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?H�'PSd|YSNumberSSAD�?}�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�?;SRAnimCurveNodeS��Properties70�PSdSCompoundSSR�'PSd|XSNumberSSADD@��'PSd|YSNumberSSAD�99@��'PSd|ZSNumberSSAD��s@�#AnimationCurveNodeLp�>;SSAnimCurveNodeS�Properties70\�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?T�#AnimationCurveNodeLP?;SRAnimCurveNodeSG�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�����'PSd|YSNumberSSAD����:�'PSd|ZSNumberSSADಳ�?��#AnimationCurveNodeL�>;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?D�'PSd|YSNumberSSAD�?y�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL?;SRAnimCurveNodeS��Properties70�PSdSCompoundSSN�'PSd|XSNumberSSAD@��@��'PSd|YSNumberSSAD@9U�?��'PSd|ZSNumberSSAD�l]�?�#AnimationCurveNodeL�?;SSAnimCurveNodeS�Properties70X�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?P�#AnimationCurveNodeL�?;SRAnimCurveNodeSC�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�&���'PSd|YSNumberSSAD�p�%�6�'PSd|ZSNumberSSAD�'���#AnimationCurveNodeL�?;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?@�'PSd|YSNumberSSAD�?u�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLЌ>;SRAnimCurveNodeS��Properties70�PSdSCompoundSSJ�'PSd|XSNumberSSAD@]�?�'PSd|YSNumberSSAD���?��'PSd|ZSNumberSSAD�X˿
�#AnimationCurveNodeLH�>;SSAnimCurveNodeS�Properties70T�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADL�#AnimationCurveNodeL �>;SRAnimCurveNodeS?�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD@�����'PSd|YSNumberSSAD��
�2�'PSd|ZSNumberSSAD����#AnimationCurveNodeL��>;SSAnimCurveNodeS~�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?<�'PSd|YSNumberSSAD�?q�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL@�>;SRAnimCurveNodeS��Properties70�PSdSCompoundSSF�'PSd|XSNumberSSAD �� @{�'PSd|YSNumberSSAD�}ۡ?��'PSd|ZSNumberSSAD@�Xؿ	�#AnimationCurveNodeL��>;SSAnimCurveNodeS��Properties70P�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?H�#AnimationCurveNodeL��>;SRAnimCurveNodeS;�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD �@���'PSd|YSNumberSSADç.@.�'PSd|ZSNumberSSAD�Z@��#AnimationCurveNodeLx�>;SSAnimCurveNodeSz�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?8�'PSd|YSNumberSSAD�?m�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLȅ>;SRAnimCurveNodeS��Properties70
�PSdSCompoundSSB�'PSd|XSNumberSSAD ���w�'PSd|YSNumberSSAD��񨿬�'PSd|ZSNumberSSAD@�\�?�#AnimationCurveNodeLh�>;SSAnimCurveNodeS��Properties70L�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADe�AnimationCurveL�j\:SAnimCurveS[�	DefaultD��ke@s�KeyVerI���KeyTimel��
KeyValueFloatf��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveL`C\:SAnimCurveS��	DefaultD��W@��KeyVerI���KeyTimel'�
KeyValueFloatfA��BQ�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL�4\:SAnimCurveS�	DefaultD�u�3�KeyVerI�\�KeyTimel��
KeyValueFloatf��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS{�	DefaultD��KeyVerI���KeyTimel��
KeyValueFloatf�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveL0X\:SAnimCurveS��	DefaultD���KeyVerI��KeyTimelG�
KeyValueFloatf�q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL�D\:SAnimCurveS;�	DefaultDS�KeyVerI�|�KeyTimel��
KeyValueFloatf��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL@�[:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�s\:SAnimCurveS��	DefaultD�?�KeyVerI�<�KeyTimelg�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL0�[:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�@����KeyVerI���KeyTimel'�
KeyValueFloatfg��Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL0�[:SAnimCurveS�	DefaultD ܥ��3�KeyVerI�\�KeyTimel��
KeyValueFloatf�.e���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL<\:SAnimCurveS{�	DefaultD ܥ����KeyVerI���KeyTimel��
KeyValueFloatf�.e��KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveL01\:SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveLЎ[:SAnimCurveS;�	DefaultD�?S�KeyVerI�|�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL�i\:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�R\:SAnimCurveS��	DefaultD j	���KeyVerI�<�KeyTimelg�
KeyValueFloatfQK����KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL�\:SAnimCurveS[�	DefaultD ܥ�9s�KeyVerI���KeyTimel��
KeyValueFloatf�.e
��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveLC\:SAnimCurveS��	DefaultD ܥ̹��KeyVerI���KeyTimel'�
KeyValueFloatf�.e�Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%AnimationCurveLP�[:SAnimCurveS	DefaultD�?3KeyVerI�\KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveL@�[:SAnimCurveS{	DefaultD�?�KeyVerI��KeyTimel�
KeyValueFloatf�?KeyAttrFlagsi!KKeyAttrDataFloatf

xKeyAttrRefCounti�AnimationCurveL
\:SAnimCurveS�	DefaultD�?�KeyVerI�KeyTimelG
KeyValueFloatf�?qKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiEAnimationCurveLР[:SAnimCurveS;	DefaultD���չSKeyVerI�|KeyTimel�
KeyValueFloatf�����KeyAttrFlagsi!KeyAttrDataFloatf

8KeyAttrRefCounti�AnimationCurveL\:SAnimCurveS�	DefaultD��KeyVerI��KeyTimel
KeyValueFloatf�1KeyAttrFlagsi!kKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveLp�[:SAnimCurveS�	DefaultD�a�KeyVerI�<KeyTimelg
KeyValueFloatf�3��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountie	AnimationCurveL0�[:SAnimCurveS[	DefaultD�?sKeyVerI��KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!+	KeyAttrDataFloatf

X	KeyAttrRefCounti�
AnimationCurveL��[:SAnimCurveS�		DefaultD�?�	KeyVerI��	KeyTimel'

KeyValueFloatf�?Q
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCounti%AnimationCurveL0�[:SAnimCurveS	DefaultD�?3KeyVerI�\KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�
AnimationCurveL�[:SAnimCurveS{	DefaultD�[q�KeyVerI��KeyTimel�
KeyValueFloatf݊��
KeyAttrFlagsi!K
KeyAttrDataFloatf

x
KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�
	DefaultD��
KeyVerI�KeyTimelG
KeyValueFloatf�qKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiEAnimationCurveL�]\:SAnimCurveS;	DefaultD@� �SKeyVerI�|KeyTimel�
KeyValueFloatf���KeyAttrFlagsi!KeyAttrDataFloatf

8KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimel
KeyValueFloatf�?1KeyAttrFlagsi!kKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL�[:SAnimCurveS�	DefaultD�?KeyVerI�<KeyTimelg
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountieAnimationCurveL 2\:SAnimCurveS[	DefaultD�?sKeyVerI��KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!+KeyAttrDataFloatf

XKeyAttrRefCounti�AnimationCurveL�\:SAnimCurveS�	DefaultD�KeyVerI��KeyTimel'
KeyValueFloatfQKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti%AnimationCurveL��[:SAnimCurveS	DefaultD e|�3KeyVerI�\KeyTimel�
KeyValueFloatf)�+��KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveLK\:SAnimCurveS{	DefaultD`��<�KeyVerI��KeyTimel�
KeyValueFloatf;�&KeyAttrFlagsi!KKeyAttrDataFloatf

xKeyAttrRefCounti�AnimationCurveLP�[:SAnimCurveS�	DefaultD�?�KeyVerI�KeyTimelG
KeyValueFloatf�?qKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiEAnimationCurveL�U\:SAnimCurveS;	DefaultD�?SKeyVerI�|KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!KeyAttrDataFloatf

8KeyAttrRefCounti�AnimationCurveL0^\:SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimel
KeyValueFloatf�?1KeyAttrFlagsi!kKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL �[:SAnimCurveS�	DefaultDj�%�KeyVerI�<KeyTimelg
KeyValueFloatfP�,��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountieAnimationCurveL�d\:SAnimCurveS[	DefaultD��F'=sKeyVerI��KeyTimel�
KeyValueFloatf6:)�KeyAttrFlagsi!+KeyAttrDataFloatf

XKeyAttrRefCounti� AnimationCurveL��\:SAnimCurveS�	DefaultD@��=��KeyVerI��KeyTimel' 
KeyValueFloatf:��Q KeyAttrFlagsi!� KeyAttrDataFloatf

� KeyAttrRefCounti%"AnimationCurveL�%\:SAnimCurveS!	DefaultD�?3!KeyVerI�\!KeyTimel�!
KeyValueFloatf�?�!KeyAttrFlagsi!�!KeyAttrDataFloatf

"KeyAttrRefCounti�#AnimationCurveL �[:SAnimCurveS{"	DefaultD�?�"KeyVerI��"KeyTimel�"
KeyValueFloatf�?#KeyAttrFlagsi!K#KeyAttrDataFloatf

x#KeyAttrRefCounti�$AnimationCurveLp�[:SAnimCurveS�#	DefaultD�?�#KeyVerI�$KeyTimelG$
KeyValueFloatf�?q$KeyAttrFlagsi!�$KeyAttrDataFloatf

�$KeyAttrRefCountiE&AnimationCurveLp\:SAnimCurveS;%	DefaultD�4��S%KeyVerI�|%KeyTimel�%
KeyValueFloatf@���%KeyAttrFlagsi!&KeyAttrDataFloatf

8&KeyAttrRefCounti�'AnimationCurveL�
\:SAnimCurveS�&	DefaultD���q=�&KeyVerI��&KeyTimel'
KeyValueFloatf䯏+1'KeyAttrFlagsi!k'KeyAttrDataFloatf

�'KeyAttrRefCounti)AnimationCurveL�\:SAnimCurveS�'	DefaultD +n��(KeyVerI�<(KeyTimelg(
KeyValueFloatfYq#��(KeyAttrFlagsi!�(KeyAttrDataFloatf

�(KeyAttrRefCountie*AnimationCurveL�)\:SAnimCurveS[)	DefaultD�?s)KeyVerI��)KeyTimel�)
KeyValueFloatf�?�)KeyAttrFlagsi!+*KeyAttrDataFloatf

X*KeyAttrRefCounti�+AnimationCurveL��[:SAnimCurveS�*	DefaultD�?�*KeyVerI��*KeyTimel'+
KeyValueFloatf�?Q+KeyAttrFlagsi!�+KeyAttrDataFloatf

�+KeyAttrRefCounti%-AnimationCurveL@�[:SAnimCurveS,	DefaultD�?3,KeyVerI�\,KeyTimel�,
KeyValueFloatf�?�,KeyAttrFlagsi!�,KeyAttrDataFloatf

-KeyAttrRefCounti�.AnimationCurveL��[:SAnimCurveS{-	DefaultD���-KeyVerI��-KeyTimel�-
KeyValueFloatf.�.KeyAttrFlagsi!K.KeyAttrDataFloatf

x.KeyAttrRefCounti�/AnimationCurveLp�[:SAnimCurveS�.	DefaultD@���=�.KeyVerI�/KeyTimelG/
KeyValueFloatf��W-q/KeyAttrFlagsi!�/KeyAttrDataFloatf

�/KeyAttrRefCountiE1AnimationCurveL��[:SAnimCurveS;0	DefaultD�����S0KeyVerI�|0KeyTimel�0
KeyValueFloatf-
��0KeyAttrFlagsi!1KeyAttrDataFloatf

81KeyAttrRefCounti�2AnimationCurveLPY\:SAnimCurveS�1	DefaultD�?�1KeyVerI��1KeyTimel2
KeyValueFloatf�?12KeyAttrFlagsi!k2KeyAttrDataFloatf

�2KeyAttrRefCounti4AnimationCurveLPP\:SAnimCurveS�2	DefaultD�?3KeyVerI�<3KeyTimelg3
KeyValueFloatf�?�3KeyAttrFlagsi!�3KeyAttrDataFloatf

�3KeyAttrRefCountie5AnimationCurveL�e\:SAnimCurveS[4	DefaultD�?s4KeyVerI��4KeyTimel�4
KeyValueFloatf�?�4KeyAttrFlagsi!+5KeyAttrDataFloatf

X5KeyAttrRefCounti�6AnimationCurveL�L\:SAnimCurveS�5	DefaultD 14���5KeyVerI��5KeyTimel'6
KeyValueFloatf����Q6KeyAttrFlagsi!�6KeyAttrDataFloatf

�6KeyAttrRefCounti%8AnimationCurveL�f\:SAnimCurveS7	DefaultD��G�=37KeyVerI�\7KeyTimel�7
KeyValueFloatf�?�-�7KeyAttrFlagsi!�7KeyAttrDataFloatf

8KeyAttrRefCounti�9AnimationCurveL��[:SAnimCurveS{8	DefaultD@G�н�8KeyVerI��8KeyTimel�8
KeyValueFloatf:���9KeyAttrFlagsi!K9KeyAttrDataFloatf

x9KeyAttrRefCounti�:AnimationCurveLP�[:SAnimCurveS�9	DefaultD�?�9KeyVerI�:KeyTimelG:
KeyValueFloatf�?q:KeyAttrFlagsi!�:KeyAttrDataFloatf

�:KeyAttrRefCountiE<AnimationCurveL��[:SAnimCurveS;;	DefaultD�?S;KeyVerI�|;KeyTimel�;
KeyValueFloatf�?�;KeyAttrFlagsi!<KeyAttrDataFloatf

8<KeyAttrRefCounti�=AnimationCurveL`O\:SAnimCurveS�<	DefaultD�?�<KeyVerI��<KeyTimel=
KeyValueFloatf�?1=KeyAttrFlagsi!k=KeyAttrDataFloatf

�=KeyAttrRefCounti?AnimationCurveL��[:SAnimCurveS�=	DefaultD�~#Ͽ>KeyVerI�<>KeyTimelg>
KeyValueFloatf�y��>KeyAttrFlagsi!�>KeyAttrDataFloatf

�>KeyAttrRefCountie@AnimationCurveL��[:SAnimCurveS[?	DefaultD��j�s?KeyVerI��?KeyTimel�?
KeyValueFloatf��V��?KeyAttrFlagsi!+@KeyAttrDataFloatf

X@KeyAttrRefCounti�AAnimationCurveL�n\:SAnimCurveS�@	DefaultD@��?�@KeyVerI��@KeyTimel'A
KeyValueFloatf��?QAKeyAttrFlagsi!�AKeyAttrDataFloatf

�AKeyAttrRefCounti%CAnimationCurveL@�[:SAnimCurveSB	DefaultD�?3BKeyVerI�\BKeyTimel�B
KeyValueFloatf�?�BKeyAttrFlagsi!�BKeyAttrDataFloatf

CKeyAttrRefCounti�DAnimationCurveLp�[:SAnimCurveS{C	DefaultD�?�CKeyVerI��CKeyTimel�C
KeyValueFloatf�?DKeyAttrFlagsi!KDKeyAttrDataFloatf

xDKeyAttrRefCounti�EAnimationCurveL�g\:SAnimCurveS�D	DefaultD�?�DKeyVerI�EKeyTimelGE
KeyValueFloatf�?qEKeyAttrFlagsi!�EKeyAttrDataFloatf

�EKeyAttrRefCountiEGAnimationCurveL��[:SAnimCurveS;F	DefaultD�/ýSFKeyVerI�|FKeyTimel�F
KeyValueFloatf���FKeyAttrFlagsi!GKeyAttrDataFloatf

8GKeyAttrRefCounti�HAnimationCurveL��[:SAnimCurveS�G	DefaultD�C��=�GKeyVerI��GKeyTimelH
KeyValueFloatf—.1HKeyAttrFlagsi!kHKeyAttrDataFloatf

�HKeyAttrRefCountiJAnimationCurveLB\:SAnimCurveS�H	DefaultD@��IKeyVerI�<IKeyTimelgI
KeyValueFloatf��0��IKeyAttrFlagsi!�IKeyAttrDataFloatf

�IKeyAttrRefCountieKAnimationCurveL >\:SAnimCurveS[J	DefaultD�?sJKeyVerI��JKeyTimel�J
KeyValueFloatf�?�JKeyAttrFlagsi!+KKeyAttrDataFloatf

XKKeyAttrRefCounti�LAnimationCurveL��[:SAnimCurveS�K	DefaultD�?�KKeyVerI��KKeyTimel'L
KeyValueFloatf�?QLKeyAttrFlagsi!�LKeyAttrDataFloatf

�LKeyAttrRefCounti%NAnimationCurveL��[:SAnimCurveSM	DefaultD�?3MKeyVerI�\MKeyTimel�M
KeyValueFloatf�?�MKeyAttrFlagsi!�MKeyAttrDataFloatf

NKeyAttrRefCounti�OAnimationCurveL \:SAnimCurveS{N	DefaultD@kȺ��NKeyVerI��NKeyTimel�N
KeyValueFloatfZC֭OKeyAttrFlagsi!KOKeyAttrDataFloatf

xOKeyAttrRefCounti�PAnimationCurveL �[:SAnimCurveS�O	DefaultD@|F�=�OKeyVerI�PKeyTimelGP
KeyValueFloatf�3�-qPKeyAttrFlagsi!�PKeyAttrDataFloatf

�PKeyAttrRefCountiERAnimationCurveL�K\:SAnimCurveS;Q	DefaultD`a6ӽSQKeyVerI�|QKeyTimel�Q
KeyValueFloatf����QKeyAttrFlagsi!RKeyAttrDataFloatf

8RKeyAttrRefCounti�SAnimationCurveL@{\:SAnimCurveS�R	DefaultD�?�RKeyVerI��RKeyTimelS
KeyValueFloatf�?1SKeyAttrFlagsi!kSKeyAttrDataFloatf

�SKeyAttrRefCountiUAnimationCurveL��[:SAnimCurveS�S	DefaultD�?TKeyVerI�<TKeyTimelgT
KeyValueFloatf�?�TKeyAttrFlagsi!�TKeyAttrDataFloatf

�TKeyAttrRefCountieVAnimationCurveLp�[:SAnimCurveS[U	DefaultD�?sUKeyVerI��UKeyTimel�U
KeyValueFloatf�?�UKeyAttrFlagsi!+VKeyAttrDataFloatf

XVKeyAttrRefCounti�WAnimationCurveLi\:SAnimCurveS�V	DefaultD���ǽ�VKeyVerI��VKeyTimel'W
KeyValueFloatfu�<�QWKeyAttrFlagsi!�WKeyAttrDataFloatf

�WKeyAttrRefCounti%YAnimationCurveL�H\:SAnimCurveSX	DefaultD����=3XKeyVerI�\XKeyTimel�X
KeyValueFloatf->.�XKeyAttrFlagsi!�XKeyAttrDataFloatf

YKeyAttrRefCounti�ZAnimationCurveLPJ\:SAnimCurveS{Y	DefaultD���ݽ�YKeyVerI��YKeyTimel�Y
KeyValueFloatf��ZKeyAttrFlagsi!KZKeyAttrDataFloatf

xZKeyAttrRefCounti�[AnimationCurveL�T\:SAnimCurveS�Z	DefaultD�?�ZKeyVerI�[KeyTimelG[
KeyValueFloatf�?q[KeyAttrFlagsi!�[KeyAttrDataFloatf

�[KeyAttrRefCountiE]AnimationCurveL��[:SAnimCurveS;\	DefaultD�?S\KeyVerI�|\KeyTimel�\
KeyValueFloatf�?�\KeyAttrFlagsi!]KeyAttrDataFloatf

8]KeyAttrRefCounti�^AnimationCurveLPz\:SAnimCurveS�]	DefaultD�?�]KeyVerI��]KeyTimel^
KeyValueFloatf�?1^KeyAttrFlagsi!k^KeyAttrDataFloatf

�^KeyAttrRefCounti`AnimationCurveL`�[:SAnimCurveS�^	DefaultD�݋н_KeyVerI�<_KeyTimelg_
KeyValueFloatf�^���_KeyAttrFlagsi!�_KeyAttrDataFloatf

�_KeyAttrRefCountieaAnimationCurveL��[:SAnimCurveS[`	DefaultD`���=s`KeyVerI��`KeyTimel�`
KeyValueFloatfV�.�`KeyAttrFlagsi!+aKeyAttrDataFloatf

XaKeyAttrRefCounti�bAnimationCurveL�\:SAnimCurveS�a	DefaultD@$���aKeyVerI��aKeyTimel'b
KeyValueFloatf"�4�QbKeyAttrFlagsi!�bKeyAttrDataFloatf

�bKeyAttrRefCounti%dAnimationCurveL��[:SAnimCurveSc	DefaultD�?3cKeyVerI�\cKeyTimel�c
KeyValueFloatf�?�cKeyAttrFlagsi!�cKeyAttrDataFloatf

dKeyAttrRefCounti�eAnimationCurveL��[:SAnimCurveS{d	DefaultD�?�dKeyVerI��dKeyTimel�d
KeyValueFloatf�?eKeyAttrFlagsi!KeKeyAttrDataFloatf

xeKeyAttrRefCounti�fAnimationCurveL`�[:SAnimCurveS�e	DefaultD�?�eKeyVerI�fKeyTimelGf
KeyValueFloatf�?qfKeyAttrFlagsi!�fKeyAttrDataFloatf

�fKeyAttrRefCountiEhAnimationCurveL�f\:SAnimCurveS;g	DefaultD�����SgKeyVerI�|gKeyTimel�g
KeyValueFloatf����gKeyAttrFlagsi!hKeyAttrDataFloatf

8hKeyAttrRefCounti�iAnimationCurveL�W\:SAnimCurveS�h	DefaultD��ľ=�hKeyVerI��hKeyTimeli
KeyValueFloatf�&�-1iKeyAttrFlagsi!kiKeyAttrDataFloatf

�iKeyAttrRefCountikAnimationCurveL��[:SAnimCurveS�i	DefaultD`H�ԽjKeyVerI�<jKeyTimelgj
KeyValueFloatfC����jKeyAttrFlagsi!�jKeyAttrDataFloatf

�jKeyAttrRefCountielAnimationCurveL�y\:SAnimCurveS[k	DefaultD�?skKeyVerI��kKeyTimel�k
KeyValueFloatf�?�kKeyAttrFlagsi!+lKeyAttrDataFloatf

XlKeyAttrRefCounti�mAnimationCurveLP\:SAnimCurveS�l	DefaultD�?�lKeyVerI��lKeyTimel'm
KeyValueFloatf�?QmKeyAttrFlagsi!�mKeyAttrDataFloatf

�mKeyAttrRefCounti%oAnimationCurveL��[:SAnimCurveSn	DefaultD�?3nKeyVerI�\nKeyTimel�n
KeyValueFloatf�?�nKeyAttrFlagsi!�nKeyAttrDataFloatf

oKeyAttrRefCounti�pAnimationCurveL|\:SAnimCurveS{o	DefaultD��<ͽ�oKeyVerI��oKeyTimel�o
KeyValueFloatf��i�pKeyAttrFlagsi!KpKeyAttrDataFloatf

xpKeyAttrRefCounti�qAnimationCurveL-\:SAnimCurveS�p	DefaultD{m�=�pKeyVerI�qKeyTimelGq
KeyValueFloatf�k;.qqKeyAttrFlagsi!�qKeyAttrDataFloatf

�qKeyAttrRefCountiEsAnimationCurveL�g\:SAnimCurveS;r	DefaultD`��߽SrKeyVerI�|rKeyTimel�r
KeyValueFloatf�����rKeyAttrFlagsi!sKeyAttrDataFloatf

8sKeyAttrRefCounti�tAnimationCurveL�/\:SAnimCurveS�s	DefaultD�?�sKeyVerI��sKeyTimelt
KeyValueFloatf�?1tKeyAttrFlagsi!ktKeyAttrDataFloatf

�tKeyAttrRefCountivAnimationCurveL`�[:SAnimCurveS�t	DefaultD�?uKeyVerI�<uKeyTimelgu
KeyValueFloatf�?�uKeyAttrFlagsi!�uKeyAttrDataFloatf

�uKeyAttrRefCountiewAnimationCurveL0�[:SAnimCurveS[v	DefaultD�?svKeyVerI��vKeyTimel�v
KeyValueFloatf�?�vKeyAttrFlagsi!+wKeyAttrDataFloatf

XwKeyAttrRefCounti�xAnimationCurveL �[:SAnimCurveS�w	DefaultD ��Խ�wKeyVerI��wKeyTimel'x
KeyValueFloatf�̦�QxKeyAttrFlagsi!�xKeyAttrDataFloatf

�xKeyAttrRefCounti%zAnimationCurveL�N\:SAnimCurveSy	DefaultD�o��=3yKeyVerI�\yKeyTimel�y
KeyValueFloatf~3�.�yKeyAttrFlagsi!�yKeyAttrDataFloatf

zKeyAttrRefCounti�{AnimationCurveL��[:SAnimCurveS{z	DefaultD ;�罓zKeyVerI��zKeyTimel�z
KeyValueFloatf�1?�{KeyAttrFlagsi!K{KeyAttrDataFloatf

x{KeyAttrRefCounti�|AnimationCurveL�4\:SAnimCurveS�{	DefaultD�?�{KeyVerI�|KeyTimelG|
KeyValueFloatf�?q|KeyAttrFlagsi!�|KeyAttrDataFloatf

�|KeyAttrRefCountiE~AnimationCurveL�m\:SAnimCurveS;}	DefaultD�?S}KeyVerI�|}KeyTimel�}
KeyValueFloatf�?�}KeyAttrFlagsi!~KeyAttrDataFloatf

8~KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�~	DefaultD�?�~KeyVerI��~KeyTimel
KeyValueFloatf�?1KeyAttrFlagsi!kKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLs\:SAnimCurveS�	DefaultD�"�Ž�KeyVerI�<�KeyTimelg�
KeyValueFloatf�/���KeyAttrFlagsi!ˀKeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL"\:SAnimCurveS[�	DefaultD@��=s�KeyVerI���KeyTimelǁ
KeyValueFloatfb��-�KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCountiŃAnimationCurveL0�[:SAnimCurveS��	DefaultD@C�սӂKeyVerI���KeyTimel'�
KeyValueFloatf���Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL��[:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS{�	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveSۆ	DefaultD�?�KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

؇KeyAttrRefCountiE�AnimationCurveL�^\:SAnimCurveS;�	DefaultD�PսS�KeyVerI�|�KeyTimel��
KeyValueFloatf����шKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD ��=��KeyVerI�܉KeyTimel�
KeyValueFloatf�h5.1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLg\:SAnimCurveS��	DefaultD��,��KeyVerI�<�KeyTimelg�
KeyValueFloatf�f���KeyAttrFlagsi!ˋKeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL�[:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimelnj
KeyValueFloatf�?�KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCountiŎAnimationCurveL��[:SAnimCurveS��	DefaultD�?ӍKeyVerI���KeyTimel'�
KeyValueFloatf�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL`\:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�\:SAnimCurveS{�	DefaultD�j#޽��KeyVerI���KeyTimel�
KeyValueFloatfU��KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti�AnimationCurveL�G\:SAnimCurveSۑ	DefaultD`8"�=�KeyVerI��KeyTimelG�
KeyValueFloatf��.q�KeyAttrFlagsi!��KeyAttrDataFloatf

ؒKeyAttrRefCountiE�AnimationCurveL�[:SAnimCurveS;�	DefaultD�m�S�KeyVerI�|�KeyTimel��
KeyValueFloatf`oK�ѓKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�?��KeyVerI�ܔKeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL0�[:SAnimCurveS��	DefaultD�?�KeyVerI�<�KeyTimelg�
KeyValueFloatf�?��KeyAttrFlagsi!˖KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL�\\:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimelǗ
KeyValueFloatf�?�KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCountiřAnimationCurveL\:SAnimCurveS��	DefaultD ̵��ӘKeyVerI���KeyTimel'�
KeyValueFloatfa��Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL��[:SAnimCurveS�	DefaultD@,��=3�KeyVerI�\�KeyTimel��
KeyValueFloatfby�-��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL0|\:SAnimCurveS{�	DefaultD�y�ӽ��KeyVerI���KeyTimel�
KeyValueFloatf�s���KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti�AnimationCurveLP�[:SAnimCurveSۜ	DefaultD�?�KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

؝KeyAttrRefCountiE�AnimationCurveL��[:SAnimCurveS;�	DefaultD�?S�KeyVerI�|�KeyTimel��
KeyValueFloatf�?ўKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL0�[:SAnimCurveS��	DefaultD�?��KeyVerI�ܟKeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS��	DefaultD�
�Ƚ�KeyVerI�<�KeyTimelg�
KeyValueFloatfV�F���KeyAttrFlagsi!ˡKeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL=\:SAnimCurveS[�	DefaultD�N��=s�KeyVerI���KeyTimelǢ
KeyValueFloatfw*T.�KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCountiŤAnimationCurveL��[:SAnimCurveS��	DefaultD��
�ӣKeyVerI���KeyTimel'�
KeyValueFloatfl�Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL\:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�\:SAnimCurveS{�	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti�AnimationCurveLp�[:SAnimCurveSۧ	DefaultD�?�KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

بKeyAttrRefCountiE�AnimationCurveL��[:SAnimCurveS;�	DefaultD��ѽS�KeyVerI�|�KeyTimel��
KeyValueFloatf^8��ѩKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS��	DefaultD P��=��KeyVerI�ܪKeyTimel�
KeyValueFloatf���.1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS��	DefaultD�?��KeyVerI�<�KeyTimelg�
KeyValueFloatf��A���KeyAttrFlagsi!ˬKeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveLp�[:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimelǭ
KeyValueFloatf�?�KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCountiůAnimationCurveL0\:SAnimCurveS��	DefaultD�?ӮKeyVerI���KeyTimel'�
KeyValueFloatf�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL��[:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL04\:SAnimCurveS{�	DefaultD ܥ����KeyVerI���KeyTimel�
KeyValueFloatf�.��KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti�AnimationCurveLpo\:SAnimCurveS۲	DefaultD�����KeyVerI��KeyTimelG�
KeyValueFloatfM=��q�KeyAttrFlagsi!��KeyAttrDataFloatf

سKeyAttrRefCountiE�AnimationCurveL�\:SAnimCurveS;�	DefaultD�O��<S�KeyVerI�|�KeyTimel��
KeyValueFloatf|��'ѴKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL`�[:SAnimCurveS��	DefaultD�?��KeyVerI�ܵKeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL`[\:SAnimCurveS��	DefaultD�?�KeyVerI�<�KeyTimelg�
KeyValueFloatf�?��KeyAttrFlagsi!˷KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL��[:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimelǸ
KeyValueFloatf�?�KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCountiźAnimationCurveL��[:SAnimCurveS��	DefaultD`YH=ӹKeyVerI���KeyTimel'�
KeyValueFloatf�B�(Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL�[:SAnimCurveS�	DefaultD@Z�'=3�KeyVerI�\�KeyTimel��
KeyValueFloatf��=)��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL`(\:SAnimCurveS{�	DefaultD�b�@=��KeyVerI���KeyTimel�
KeyValueFloatf�*�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti�AnimationCurveL�[:SAnimCurveS۽	DefaultD�?�KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

ؾKeyAttrRefCountiE�AnimationCurveL�\:SAnimCurveS;�	DefaultD�?S�KeyVerI�|�KeyTimel��
KeyValueFloatf�?ѿKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL�
\:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�\:SAnimCurveS��	DefaultD��r=�KeyVerI�<�KeyTimelg�
KeyValueFloatf`�+��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveLP\:SAnimCurveS[�	DefaultD`�
m=s�KeyVerI���KeyTimel��
KeyValueFloatf�mh+��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveL`�[:SAnimCurveS��	DefaultD`��=��KeyVerI���KeyTimel'�
KeyValueFloatf�5,Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL��[:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS{�	DefaultD�?��KeyVerI���KeyTimel��
KeyValueFloatf�?�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveLp�[:SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL�<\:SAnimCurveS;�	DefaultD ø�=S�KeyVerI�|�KeyTimel��
KeyValueFloatf��,��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL@�[:SAnimCurveS��	DefaultD�O@�=��KeyVerI���KeyTimel�
KeyValueFloatf}B-1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�Q\:SAnimCurveS��	DefaultD`���=�KeyVerI�<�KeyTimelg�
KeyValueFloatfK�.��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL@\:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveLF\:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel'�
KeyValueFloatf�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL`7\:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS{�	DefaultD��V���KeyVerI���KeyTimel��
KeyValueFloatf�����KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveL\:SAnimCurveS��	DefaultD�5�=��KeyVerI��KeyTimelG�
KeyValueFloatf`��-q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveLPw\:SAnimCurveS;�	DefaultD���=S�KeyVerI�|�KeyTimel��
KeyValueFloatf�@�.��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL�F\:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS��	DefaultD�?�KeyVerI�<�KeyTimelg�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL@�[:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveLp�[:SAnimCurveS��	DefaultD�$���KeyVerI���KeyTimel'�
KeyValueFloatf%��Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL��[:SAnimCurveS�	DefaultD��Y?3�KeyVerI�\�KeyTimel��
KeyValueFloatf���:��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS{�	DefaultD U忓�KeyVerI���KeyTimel��
KeyValueFloatf��(��KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveL0\:SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL�\:SAnimCurveS;�	DefaultD�?S�KeyVerI�|�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�[:SAnimCurveS��	DefaultD�4����KeyVerI�<�KeyTimelg�
KeyValueFloatf�A����KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL��[:SAnimCurveS[�	DefaultD����=s�KeyVerI���KeyTimel��
KeyValueFloatf}w�.��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveL �[:SAnimCurveS��	DefaultD��=��KeyVerI���KeyTimel'�
KeyValueFloatfP/Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL0�[:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS{�	DefaultD�?��KeyVerI���KeyTimel��
KeyValueFloatf�?�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelG�
KeyValueFloatf�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL��[:SAnimCurveS;�	DefaultD�wD�=S�KeyVerI�|�KeyTimel��
KeyValueFloatf�#2-��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS��	DefaultD�b�=��KeyVerI���KeyTimel�
KeyValueFloatf��-1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL0"\:SAnimCurveS��	DefaultD�P��=�KeyVerI�<�KeyTimelg�
KeyValueFloatf�گ.��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL�-\:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel'�
KeyValueFloatf�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL�[:SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLpc\:SAnimCurveS{�	DefaultD@�Y�=��KeyVerI���KeyTimel��
KeyValueFloatfj��,�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD@���=��KeyVerI��KeyTimelG�
KeyValueFloatf��O.q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL�\:SAnimCurveS;�	DefaultD :��=S�KeyVerI�|�KeyTimel��
KeyValueFloatf�Y/��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL�&\:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS��	DefaultD�?�KeyVerI�<�KeyTimelg�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL�\:SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti��AnimationCurveL�y\:SAnimCurveS��	DefaultD��z�=��KeyVerI���KeyTimel'�
KeyValueFloatfM�#-Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL �[:SAnimCurveS�	DefaultD`�m�=3�KeyVerI�\�KeyTimel��
KeyValueFloatf[m�.��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLP�[:SAnimCurveS{�	DefaultD@\6�=��KeyVerI���KeyTimel��
KeyValueFloatf�Q/�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti�AnimationCurveL �[:SAnimCurveS��	DefaultD�?��KeyVerI�KeyTimelG
KeyValueFloatf�?qKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiEAnimationCurveL��[:SAnimCurveS;	DefaultD�?SKeyVerI�|KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!KeyAttrDataFloatf

8KeyAttrRefCounti�AnimationCurveLp\:SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimel
KeyValueFloatf�?1KeyAttrFlagsi!kKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL�%\:SAnimCurveS�	DefaultD�w��=KeyVerI�<KeyTimelg
KeyValueFloatf�k�-�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountieAnimationCurveL\:SAnimCurveS[	DefaultD��(�=sKeyVerI��KeyTimel�
KeyValueFloatf�D�-�KeyAttrFlagsi!+KeyAttrDataFloatf

XKeyAttrRefCounti�AnimationCurveL \:SAnimCurveS�	DefaultD����=�KeyVerI��KeyTimel'
KeyValueFloatf��.QKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti%	AnimationCurveL�[:SAnimCurveS	DefaultD�?3KeyVerI�\KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

	KeyAttrRefCounti�
AnimationCurveLP�[:SAnimCurveS{		DefaultD�?�	KeyVerI��	KeyTimel�	
KeyValueFloatf�?
KeyAttrFlagsi!K
KeyAttrDataFloatf

x
KeyAttrRefCounti�AnimationCurveLP�[:SAnimCurveS�
	DefaultD�?�
KeyVerI�KeyTimelG
KeyValueFloatf�?qKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiE
AnimationCurveLК[:SAnimCurveS;	DefaultD�.��=SKeyVerI�|KeyTimel�
KeyValueFloatfv	�-�KeyAttrFlagsi!
KeyAttrDataFloatf

8
KeyAttrRefCounti�AnimationCurveL@�[:SAnimCurveS�
	DefaultD����=�
KeyVerI��
KeyTimel
KeyValueFloatf��U.1KeyAttrFlagsi!kKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL�Y\:SAnimCurveS�	DefaultD 
�=KeyVerI�<KeyTimelg
KeyValueFloatfh/�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountieAnimationCurveL0�[:SAnimCurveS[	DefaultD�?sKeyVerI��KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!+KeyAttrDataFloatf

XKeyAttrRefCounti�AnimationCurveL�e\:SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimel'
KeyValueFloatf�?QKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti%AnimationCurveL�V\:SAnimCurveS	DefaultD�?3KeyVerI�\KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveLp�[:SAnimCurveS{	DefaultD��0�=�KeyVerI��KeyTimel�
KeyValueFloatfօ.KeyAttrFlagsi!KKeyAttrDataFloatf

xKeyAttrRefCounti�AnimationCurveL@u\:SAnimCurveS�	DefaultD@���=�KeyVerI�KeyTimelG
KeyValueFloatf�ߗ.qKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiEAnimationCurveL@�[:SAnimCurveS;	DefaultD�گ�=SKeyVerI�|KeyTimel�
KeyValueFloatf�~U/�KeyAttrFlagsi!KeyAttrDataFloatf

8KeyAttrRefCounti�AnimationCurveL\:SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimel
KeyValueFloatf�?1KeyAttrFlagsi!kKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL h\:SAnimCurveS�	DefaultD�?KeyVerI�<KeyTimelg
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountieAnimationCurveL�\:SAnimCurveS[	DefaultD�?sKeyVerI��KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!+KeyAttrDataFloatf

XKeyAttrRefCounti�AnimationCurveL`�[:SAnimCurveS�	DefaultD���=�KeyVerI��KeyTimel'
KeyValueFloatfV�-QKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti%AnimationCurveLP�[:SAnimCurveS	DefaultD�_�=3KeyVerI�\KeyTimel�
KeyValueFloatf�r�-�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti� AnimationCurveL0�[:SAnimCurveS{	DefaultD��=�KeyVerI��KeyTimel�
KeyValueFloatfо�. KeyAttrFlagsi!K KeyAttrDataFloatf

x KeyAttrRefCounti�!AnimationCurveL$\:SAnimCurveS� 	DefaultD�?� KeyVerI�!KeyTimelG!
KeyValueFloatf�?q!KeyAttrFlagsi!�!KeyAttrDataFloatf

�!KeyAttrRefCountiE#AnimationCurveLP�[:SAnimCurveS;"	DefaultD�?S"KeyVerI�|"KeyTimel�"
KeyValueFloatf�?�"KeyAttrFlagsi!#KeyAttrDataFloatf

8#KeyAttrRefCounti�$AnimationCurveL�[:SAnimCurveS�#	DefaultD�?�#KeyVerI��#KeyTimel$
KeyValueFloatf�?1$KeyAttrFlagsi!k$KeyAttrDataFloatf

�$KeyAttrRefCounti&AnimationCurveL�G\:SAnimCurveS�$	DefaultD�x�=%KeyVerI�<%KeyTimelg%
KeyValueFloatf��K.�%KeyAttrFlagsi!�%KeyAttrDataFloatf

�%KeyAttrRefCountie'AnimationCurveL�q\:SAnimCurveS[&	DefaultD r��=s&KeyVerI��&KeyTimel�&
KeyValueFloatf��].�&KeyAttrFlagsi!+'KeyAttrDataFloatf

X'KeyAttrRefCounti�(AnimationCurveLP&\:SAnimCurveS�'	DefaultD ��=�'KeyVerI��'KeyTimel'(
KeyValueFloatf�/Q(KeyAttrFlagsi!�(KeyAttrDataFloatf

�(KeyAttrRefCounti%*AnimationCurveL��[:SAnimCurveS)	DefaultD�?3)KeyVerI�\)KeyTimel�)
KeyValueFloatf�?�)KeyAttrFlagsi!�)KeyAttrDataFloatf

*KeyAttrRefCounti�+AnimationCurveL`:\:SAnimCurveS{*	DefaultD�?�*KeyVerI��*KeyTimel�*
KeyValueFloatf�?+KeyAttrFlagsi!K+KeyAttrDataFloatf

x+KeyAttrRefCounti�,AnimationCurveL��[:SAnimCurveS�+	DefaultD�?�+KeyVerI�,KeyTimelG,
KeyValueFloatf�?q,KeyAttrFlagsi!�,KeyAttrDataFloatf

�,KeyAttrRefCountiE.AnimationCurveLPh\:SAnimCurveS;-	DefaultD�WO�=S-KeyVerI�|-KeyTimel�-
KeyValueFloatf�z�.�-KeyAttrFlagsi!.KeyAttrDataFloatf

8.KeyAttrRefCounti�/AnimationCurveL��[:SAnimCurveS�.	DefaultD`X��=�.KeyVerI��.KeyTimel/
KeyValueFloatf���.1/KeyAttrFlagsi!k/KeyAttrDataFloatf

�/KeyAttrRefCounti1AnimationCurveL`�[:SAnimCurveS�/	DefaultDn��=0KeyVerI�<0KeyTimelg0
KeyValueFloatfp{V/�0KeyAttrFlagsi!�0KeyAttrDataFloatf

�0KeyAttrRefCountie2AnimationCurveL�;\:SAnimCurveS[1	DefaultD�?s1KeyVerI��1KeyTimel�1
KeyValueFloatf�?�1KeyAttrFlagsi!+2KeyAttrDataFloatf

X2KeyAttrRefCounti�3AnimationCurveL`L\:SAnimCurveS�2	DefaultD�?�2KeyVerI��2KeyTimel'3
KeyValueFloatf�?Q3KeyAttrFlagsi!�3KeyAttrDataFloatf

�3KeyAttrRefCounti%5AnimationCurveL`m\:SAnimCurveS4	DefaultD�?34KeyVerI�\4KeyTimel�4
KeyValueFloatf�?�4KeyAttrFlagsi!�4KeyAttrDataFloatf

5KeyAttrRefCounti�6AnimationCurveL�[:SAnimCurveS{5	DefaultD�w��=�5KeyVerI��5KeyTimel�5
KeyValueFloatf��e-6KeyAttrFlagsi!K6KeyAttrDataFloatf

x6KeyAttrRefCounti�7AnimationCurveL��[:SAnimCurveS�6	DefaultD@�6�=�6KeyVerI�7KeyTimelG7
KeyValueFloatfr��-q7KeyAttrFlagsi!�7KeyAttrDataFloatf

�7KeyAttrRefCountiE9AnimationCurveLp]\:SAnimCurveS;8	DefaultD��6�=S8KeyVerI�|8KeyTimel�8
KeyValueFloatfL��.�8KeyAttrFlagsi!9KeyAttrDataFloatf

89KeyAttrRefCounti�:AnimationCurveL��[:SAnimCurveS�9	DefaultD�?�9KeyVerI��9KeyTimel:
KeyValueFloatf�?1:KeyAttrFlagsi!k:KeyAttrDataFloatf

�:KeyAttrRefCounti<AnimationCurveL0�[:SAnimCurveS�:	DefaultD�?;KeyVerI�<;KeyTimelg;
KeyValueFloatf�?�;KeyAttrFlagsi!�;KeyAttrDataFloatf

�;KeyAttrRefCountie=AnimationCurveL�P\:SAnimCurveS[<	DefaultD�?s<KeyVerI��<KeyTimel�<
KeyValueFloatf�?�<KeyAttrFlagsi!+=KeyAttrDataFloatf

X=KeyAttrRefCounti�>AnimationCurveL��[:SAnimCurveS�=	DefaultD�fո=�=KeyVerI��=KeyTimel'>
KeyValueFloatf5��-Q>KeyAttrFlagsi!�>KeyAttrDataFloatf

�>KeyAttrRefCounti%@AnimationCurveL�|\:SAnimCurveS?	DefaultD��G�=3?KeyVerI�\?KeyTimel�?
KeyValueFloatf�>J.�?KeyAttrFlagsi!�?KeyAttrDataFloatf

@KeyAttrRefCounti�AAnimationCurveL��[:SAnimCurveS{@	DefaultD�U6�=�@KeyVerI��@KeyTimel�@
KeyValueFloatf��/AKeyAttrFlagsi!KAKeyAttrDataFloatf

xAKeyAttrRefCounti�BAnimationCurveL��[:SAnimCurveS�A	DefaultD�?�AKeyVerI�BKeyTimelGB
KeyValueFloatf�?qBKeyAttrFlagsi!�BKeyAttrDataFloatf

�BKeyAttrRefCountiEDAnimationCurveL0�[:SAnimCurveS;C	DefaultD�?SCKeyVerI�|CKeyTimel�C
KeyValueFloatf�?�CKeyAttrFlagsi!DKeyAttrDataFloatf

8DKeyAttrRefCounti�EAnimationCurveL0�[:SAnimCurveS�D	DefaultD�?�DKeyVerI��DKeyTimelE
KeyValueFloatf�?1EKeyAttrFlagsi!kEKeyAttrDataFloatf

�EKeyAttrRefCountiGAnimationCurveL��[:SAnimCurveS�E	DefaultD��L�>FKeyVerI�<FKeyTimelgF
KeyValueFloatf4gb6�FKeyAttrFlagsi!�FKeyAttrDataFloatf

�FKeyAttrRefCountieHAnimationCurveL�G\:SAnimCurveS[G	DefaultD b��=sGKeyVerI��GKeyTimel�G
KeyValueFloatf�.�GKeyAttrFlagsi!+HKeyAttrDataFloatf

XHKeyAttrRefCounti�IAnimationCurveL[\:SAnimCurveS�H	DefaultD�P�=�HKeyVerI��HKeyTimel'I
KeyValueFloatf�Z/QIKeyAttrFlagsi!�IKeyAttrDataFloatf

�IKeyAttrRefCounti%KAnimationCurveL\:SAnimCurveSJ	DefaultD�?3JKeyVerI�\JKeyTimel�J
KeyValueFloatf�?�JKeyAttrFlagsi!�JKeyAttrDataFloatf

KKeyAttrRefCounti�LAnimationCurveL��[:SAnimCurveS{K	DefaultD�?�KKeyVerI��KKeyTimel�K
KeyValueFloatf�?LKeyAttrFlagsi!KLKeyAttrDataFloatf

xLKeyAttrRefCounti�MAnimationCurveL�L\:SAnimCurveS�L	DefaultD�?�LKeyVerI�MKeyTimelGM
KeyValueFloatf�?qMKeyAttrFlagsi!�MKeyAttrDataFloatf

�MKeyAttrRefCountiEOAnimationCurveL�n\:SAnimCurveS;N	DefaultD`�?SNKeyVerI�|NKeyTimel�N
KeyValueFloatfSw8�NKeyAttrFlagsi!OKeyAttrDataFloatf

8OKeyAttrRefCounti�PAnimationCurveL��[:SAnimCurveS�O	DefaultD ER���OKeyVerI��OKeyTimelP
KeyValueFloatf)���1PKeyAttrFlagsi!kPKeyAttrDataFloatf

�PKeyAttrRefCountiRAnimationCurveL��[:SAnimCurveS�P	DefaultD X�s�QKeyVerI�<QKeyTimelgQ
KeyValueFloatf�R���QKeyAttrFlagsi!�QKeyAttrDataFloatf

�QKeyAttrRefCountieSAnimationCurveL �[:SAnimCurveS[R	DefaultD�?sRKeyVerI��RKeyTimel�R
KeyValueFloatf�?�RKeyAttrFlagsi!+SKeyAttrDataFloatf

XSKeyAttrRefCounti�TAnimationCurveL0�[:SAnimCurveS�S	DefaultD�?�SKeyVerI��SKeyTimel'T
KeyValueFloatf�?QTKeyAttrFlagsi!�TKeyAttrDataFloatf

�TKeyAttrRefCounti%VAnimationCurveL��[:SAnimCurveSU	DefaultD�?3UKeyVerI�\UKeyTimel�U
KeyValueFloatf�?�UKeyAttrFlagsi!�UKeyAttrDataFloatf

VKeyAttrRefCounti�WAnimationCurveL�\:SAnimCurveS{V	DefaultD@xG��VKeyVerI��VKeyTimel�V
KeyValueFloatf�;��WKeyAttrFlagsi!KWKeyAttrDataFloatf

xWKeyAttrRefCounti�XAnimationCurveL�k\:SAnimCurveS�W	DefaultD@���>�WKeyVerI�XKeyTimelGX
KeyValueFloatf�T�5qXKeyAttrFlagsi!�XKeyAttrDataFloatf

�XKeyAttrRefCountiEZAnimationCurveLpZ\:SAnimCurveS;Y	DefaultD`��w>SYKeyVerI�|YKeyTimel�Y
KeyValueFloatf���3�YKeyAttrFlagsi!ZKeyAttrDataFloatf

8ZKeyAttrRefCounti�[AnimationCurveL@�[:SAnimCurveS�Z	DefaultD�?�ZKeyVerI��ZKeyTimel[
KeyValueFloatf�?1[KeyAttrFlagsi!k[KeyAttrDataFloatf

�[KeyAttrRefCounti]AnimationCurveL �[:SAnimCurveS�[	DefaultD�?\KeyVerI�<\KeyTimelg\
KeyValueFloatf�?�\KeyAttrFlagsi!�\KeyAttrDataFloatf

�\KeyAttrRefCountie^AnimationCurveLP�[:SAnimCurveS[]	DefaultD�?s]KeyVerI��]KeyTimel�]
KeyValueFloatf�?�]KeyAttrFlagsi!+^KeyAttrDataFloatf

X^KeyAttrRefCounti�_AnimationCurveL�[:SAnimCurveS�^	DefaultD ?�^KeyVerI��^KeyTimel'_
KeyValueFloatf18Q_KeyAttrFlagsi!�_KeyAttrDataFloatf

�_KeyAttrRefCounti%aAnimationCurveL0.\:SAnimCurveS`	DefaultD`Pᘾ3`KeyVerI�\`KeyTimel�`
KeyValueFloatf�
Ǵ�`KeyAttrFlagsi!�`KeyAttrDataFloatf

aKeyAttrRefCounti�bAnimationCurveL�-\:SAnimCurveS{a	DefaultD n3M��aKeyVerI��aKeyTimel�a
KeyValueFloatfq�i�bKeyAttrFlagsi!KbKeyAttrDataFloatf

xbKeyAttrRefCounti�cAnimationCurveL��[:SAnimCurveS�b	DefaultD�?�bKeyVerI�cKeyTimelGc
KeyValueFloatf�?qcKeyAttrFlagsi!�cKeyAttrDataFloatf

�cKeyAttrRefCountiEeAnimationCurveL�\:SAnimCurveS;d	DefaultD�?SdKeyVerI�|dKeyTimel�d
KeyValueFloatf�?�dKeyAttrFlagsi!eKeyAttrDataFloatf

8eKeyAttrRefCounti�fAnimationCurveL�0\:SAnimCurveS�e	DefaultD�?�eKeyVerI��eKeyTimelf
KeyValueFloatf�?1fKeyAttrFlagsi!kfKeyAttrDataFloatf

�fKeyAttrRefCountihAnimationCurveL  \:SAnimCurveS�f	DefaultD@J�?gKeyVerI�<gKeyTimelgg
KeyValueFloatfR*]8�gKeyAttrFlagsi!�gKeyAttrDataFloatf

�gKeyAttrRefCountieiAnimationCurveL�@\:SAnimCurveS[h	DefaultD@,�>shKeyVerI��hKeyTimel�h
KeyValueFloatf�`�5�hKeyAttrFlagsi!+iKeyAttrDataFloatf

XiKeyAttrRefCounti�jAnimationCurveLP�[:SAnimCurveS�i	DefaultD
y�>�iKeyVerI��iKeyTimel'j
KeyValueFloatfhȋ4QjKeyAttrFlagsi!�jKeyAttrDataFloatf

�jKeyAttrRefCounti%lAnimationCurveL�[:SAnimCurveSk	DefaultD�?3kKeyVerI�\kKeyTimel�k
KeyValueFloatf�?�kKeyAttrFlagsi!�kKeyAttrDataFloatf

lKeyAttrRefCounti�mAnimationCurveL3\:SAnimCurveS{l	DefaultD�?�lKeyVerI��lKeyTimel�l
KeyValueFloatf�?mKeyAttrFlagsi!KmKeyAttrDataFloatf

xmKeyAttrRefCounti�nAnimationCurveL@�[:SAnimCurveS�m	DefaultD�?�mKeyVerI�nKeyTimelGn
KeyValueFloatf�?qnKeyAttrFlagsi!�nKeyAttrDataFloatf

�nKeyAttrRefCountiEpAnimationCurveL�:\:SAnimCurveS;o	DefaultD��0�SoKeyVerI�|oKeyTimel�o
KeyValueFloatf��ٸ�oKeyAttrFlagsi!pKeyAttrDataFloatf

8pKeyAttrRefCounti�qAnimationCurveL��[:SAnimCurveS�p	DefaultD�w�¾�pKeyVerI��pKeyTimelq
KeyValueFloatf���1qKeyAttrFlagsi!kqKeyAttrDataFloatf

�qKeyAttrRefCountisAnimationCurveL�\:SAnimCurveS�q	DefaultD`����rKeyVerI�<rKeyTimelgr
KeyValueFloatf����rKeyAttrFlagsi!�rKeyAttrDataFloatf

�rKeyAttrRefCountietAnimationCurveLP�[:SAnimCurveS[s	DefaultD�?ssKeyVerI��sKeyTimel�s
KeyValueFloatf�?�sKeyAttrFlagsi!+tKeyAttrDataFloatf

XtKeyAttrRefCounti�uAnimationCurveL \:SAnimCurveS�t	DefaultD�?�tKeyVerI��tKeyTimel'u
KeyValueFloatf�?QuKeyAttrFlagsi!�uKeyAttrDataFloatf

�uKeyAttrRefCounti%wAnimationCurveL�\:SAnimCurveSv	DefaultD�?3vKeyVerI�\vKeyTimel�v
KeyValueFloatf�?�vKeyAttrFlagsi!�vKeyAttrDataFloatf

wKeyAttrRefCounti�xAnimationCurveL�\:SAnimCurveS{w	DefaultD��
?�wKeyVerI��wKeyTimel�w
KeyValueFloatf��U8xKeyAttrFlagsi!KxKeyAttrDataFloatf

xxKeyAttrRefCounti�yAnimationCurveL0�[:SAnimCurveS�x	DefaultD��>�xKeyVerI�yKeyTimelGy
KeyValueFloatf�(5qyKeyAttrFlagsi!�yKeyAttrDataFloatf

�yKeyAttrRefCountiE{AnimationCurveL0�[:SAnimCurveS;z	DefaultD@�v~�SzKeyVerI�|zKeyTimel�z
KeyValueFloatf����zKeyAttrFlagsi!{KeyAttrDataFloatf

8{KeyAttrRefCounti�|AnimationCurveL�h\:SAnimCurveS�{	DefaultD�?�{KeyVerI��{KeyTimel|
KeyValueFloatf�?1|KeyAttrFlagsi!k|KeyAttrDataFloatf

�|KeyAttrRefCounti~AnimationCurveL��[:SAnimCurveS�|	DefaultD�?}KeyVerI�<}KeyTimelg}
KeyValueFloatf�?�}KeyAttrFlagsi!�}KeyAttrDataFloatf

�}KeyAttrRefCountieAnimationCurveL�\:SAnimCurveS[~	DefaultD�?s~KeyVerI��~KeyTimel�~
KeyValueFloatf�?�~KeyAttrFlagsi!+KeyAttrDataFloatf

XKeyAttrRefCountiQ�AnimationCurveLУ[:SAnimCurveS�	DefaultD�!@�KeyVerI��KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�@�
A��
A�
A�T
A;
A��A��A
TABA
�A�A#�AoZAwA��
AU�
A��
A"A��AR�A�FA<;A��A�"A	,A��A�A$�"A�X&A�/*Al8.Asu2A�7A3�;Ax�@A*xHA�vOAғUAI�ZA{�^A��aAX�cAw�dA,+eAd�dA��cA�bA�`A��[A�hTA��LA��DAn<A�(4A>�#AuAaQA�	
A��A�Ak�@"��@���@:`�@�S�@o[�@p�A@9AN�A�gA�A��Ax�$A<�'AT*A�k.Az0Ax1A�4AD_5A�w6A8A��8A��8A�9A%�8A��8Ay�7A�7A�Z6AȦ4A0�3A��2A8�0A�0Ah"/A��-ALK-A݄KeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCountib��AnimationCurveL@x\:SAnimCurveS��	DefaultD���W@��KeyVerI����KeyTimelV�P�����8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!�e
KeyValueFloatfVX�߿B�߿B�߿B��B��B�Bz�B9�B6�BP�B��B�B��B���B���B��B��B��BR�B��B	�B���B&��B���Bd�ByӿB���Bu{�Bwl�BWU�B�,�Bb��B�;BB=t�B�;�B��B+��Bk�B�s�B޹�B^�B�K�B��By�Bi�B��B*�B��B���Bt�B���B��BȾB%ǾB�پB>2�Bid�Bċ�B$��B{ǿB�ϿBNٿB
ٿB�ؿB?׿B�տB�ԿBҿB�пB�ϿB�ͿBQ̿B�ʿB.ǿB�ſB�ĿBG¿B��B߿�B.��B»�Bi��B϶�BZ��BZ��B9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCountiV��AnimationCurveLp�[:SAnimCurveS�	DefaultD`d�,@�KeyVerI�L�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�#sdAɤdA�]eA�RfASRgAz]hA�{iAÌjAA�kA>�lA(�mA�nAyZoA��oA�pAv*qA�qA^rA�sA�sA�=tA��tA�CuA��uA�RvA��vA�YvA
�uA�ouA��uA��uA��uA�GuA�tA,#uA��wA��yA;}yA�^wA)�rA4�kA��aA$oSA�AA��,Ak�A�J�@�I�@3�@U(@:á?�����ϱ�Q(����/7��j5��G���Z��G�_��X�
��W�����a�����-���3�۠9�C�ۃF�;pI���M���O���Q��T�\�U�v/W�qY��kZ��b[�F�\��d]���]���]�s�]��z]���\�NJ\��A\��\���[���[��-\���\��]�f^�!_�%�KeyAttrFlagsi!_�KeyAttrDataFloatf

��KeyAttrRefCountib��AnimationCurveL��[:SAnimCurveS�	DefaultD��1f��KeyVerI�8�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"��
KeyValueFloatfb��1Á�1��1É�1��~1�
x1�Br1ßj1Å`1�oU1��I1�l>1�z61ò(1��1ò�0��0ñ�0Ú�0ú�0�-�0��0ÿ�0ÿ�0�.�0�r�0ð�0�,�0�1ù=1ä_1�Qw1�6�1Ì�1���1�".2�݀2���2��.3ôm3�ِ3�%�3��3�B�3�C�3ê�3���3Ù4�-4�m74�+4ø�3ÿ�3æ3�q#3ä�2�T�2���2Ó�2�J�2�OD2�32��1�Bj1�41Û�0�w�0��0���0�>1îZ1ãj1��|1ç�1��1ð�1�u�1Ì�1ì�1���1�~�1�^�1�8�1�|�1�{�1��1�"�1ú�1�|�1�C�1Ô�1�Y�1�(�1�{�1�2��2��-2�j62��KeyAttrFlagsi!�aH�_�-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveL\:SAnimCurveS�	DefaultD�xJ��KeyVerI�<�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"��
KeyValueFloatfb��SZ��zX�H�S���Q��Q��`V�K2\�^�d�q�m�FBu��[x��t�R�m�6�g��e��f�]�g�+j�m�2Mp�i�s�0z�
׆����� ���S�2h��"O�����-��5������Ŀ�{���k��Ϻ��_��K���T��!g��L᜿�X��"��,�o>�4[?ɷ?���?��@�9+@�q:@ʕL@�\e@~�@�^�@�u@�EY@�T@I�X@O�x@m�@���@�@�`�@O3�@h��@cl�@h��@�mm@S�]@>M@�s3@�Q,@�$&@M�@�@K@F@�y@?Q@~s@=�@��@K$@[@ǝ@�s@�@@��@9	@�q"@�u&@g�-@8�0@ȝ2@�I4@{;5@�KeyAttrFlagsi!�aH�c�-KeyAttrDataFloatf 



��KeyAttrRefCountiau�AnimationCurveL�/\:SAnimCurveS��	DefaultD �sf@�KeyVerI�0�
KeyTimel`P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"ס�
KeyValueFloatf`�a�3C��3CǞ3Cr�3C��3C(�3C��3C��3C��3C)�3C��3C��3C��3C_�3C��3C��3C4�3CS�3C��3CR�3CG�3C�3Cܻ3C��3Cم3C�q3CX3Cx(3C-�2C��2C�e2C2C�2C "2C�2C�2C!2C�X2C̟2Ca�2C�,3C�v3C\�3C}�3Cx�3C��3C�w3COG3CL!3C �2C93C�'3C<3CLN3C�3C��3C�4C�!4C�
4CL�3Cy�3C�3C��3C�L4C�z4Cތ4Ct4C4\4C�M4C554C`"4C84Ck�3C��3C��3C[�3CF�3C��3Ca�3C��3C��3CX�3C��3C�3C��3C�4C4C4C�4C� 4C�04C�:4CG4C�\4C�a4C�c4C�KeyAttrFlagsi�aH�;�KeyAttrDataFloatf

h�KeyAttrRefCounti`գAnimationCurveL��[:SAnimCurveSˢ	DefaultD�?�KeyVerI��KeyTimel7�
KeyValueFloatf�?a�KeyAttrFlagsi!��KeyAttrDataFloatf

ȣKeyAttrRefCounti5�AnimationCurveL��[:SAnimCurveS+�	DefaultD�?C�KeyVerI�l�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveL@�[:SAnimCurveS��	DefaultD�?��KeyVerI�̥KeyTimel��
KeyValueFloatf�?!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS�	DefaultD ���KeyVerI�4�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"��
KeyValueFloatfb�q���&���8���,������m������]�������af��A���I���o��eݹ�U[���m��ɻ�]���i���,������)����Ϥ��۝��b����b�������|�cqe���Q��-I�zD��0��g�h�����
��>��?�"�?��?�9�?4�?25�?:�?�;����pM���Aҿ�
�C�=�w�b̒��O��mu�����E��������u�σ��cɿ3>L���ᾗ�3�
Ӓ�"����1���I��Mi�4�r��3{����������ъ����� i���Q��u��
���U������U����+������B���n��%_���ǩ�D����Ȩ��(��t���(
��f��?����������KeyAttrFlagsi!�aH�[�-KeyAttrDataFloatf 



��KeyAttrRefCountiam�AnimationCurveL0�[:SAnimCurveS�	DefaultD�a���KeyVerI���KeyTimel^��~�[P����{J��
oHy���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3���B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatf^x���ܔ�����\��1���捎��Ȏ�����b������������`䈿�����_��=���]珿����8ɍ�L����W���7��n���񳣿���о���W���ѿ�;㿉C�g1ʿ,죿���ɸb��I�r�D�V�M�ƻ[�"�a�[��YG��&�T���f/��=�k�	)X�����Cľ��1�̾��־�l�Yb�k爿<����*��_@���螿脊�0���
k��v{�$������ㇿ�f���+~�����j����|���Ϗ����
���Ҕ�>��!}���̓����텖�h��L'��)���v���l'��xʘ�4���<R��l���Z��)Z��N��P|�����KeyAttrFlagsi!�aH�/�-KeyAttrDataFloatf 



`�KeyAttrRefCounti]q�AnimationCurveL�q\:SAnimCurveSò	DefaultD�p߿۲KeyVerI��KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�����h��S�����K��=���*�;�ؾ�0Ծ5��'ᄍ+�>����.�1������ܾg�־�ξ�Eþw�ľ�
���@�����/ݼ���߾E6� ����d0��ќ�k�q�jQ���^�#�H�Pc�>F�?�O�?jy�?���?��@['@z�<@�O@+�f@�K�@W��@�;�@}tr@�D@5�@R��?g!�?I8e?L1?CjC>�W~���K��Կr]��$�wOM��cc���x�V�������{�*�(�ܞ������y�^��*-����4!����t�;���� >����5�k�&�"J��	l��qn��mb�/�������Pp��IIG���2�_�J�*�v��`�Ʋ��TX�\(��uY<�uY<�KeyAttrFlagsi!�aH�3�-KeyAttrDataFloatf 



d�KeyAttrRefCountiaѹAnimationCurveL`@\:SAnimCurveSǸ	DefaultD�?߸KeyVerI��KeyTimel3�
KeyValueFloatf�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

ĹKeyAttrRefCounti1�AnimationCurveL��[:SAnimCurveS'�	DefaultD�??�KeyVerI�h�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL@\:SAnimCurveS��	DefaultD�?��KeyVerI�ȻKeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS�	DefaultD��
%@��KeyVerI�0�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb��l(AF*A�I-A�~*A3�)A0l*AT�)Aͷ)A;c)A�)Ac)A>)A5�(A��(Aر(A�q(Az(A�(A]&A$A��"A=!AđA�,A#�A�"AY�A�'AA��AJ�A�fAc[A?yA��A��A}$AuA?A�
AX�	AN�AmA�t	Ah]A,Az�A��A2�A�FAl�!A|�$A��(Av�+AK/A'w3A�6AS�3A]�/A��*A��AײA�ZA��AF-A�:A3AS�A�z"A��'A�v)Aea*A�E+A�$,A��-Aί.A6�/A<�0A02Ay�2Ac$3A�<4AJS4A��3A&�2A��2A��2A�2Aܮ1A��1Ah�1A��0AX0A5R/A�.A��.A&�.A/A
�KeyAttrFlagsi!�aH�W�-KeyAttrDataFloatf 



��KeyAttrRefCountiau�AnimationCurveL�o\:SAnimCurveS��	DefaultDY��KeyVerI��KeyTimel_��~�[P����{J��
oHy�����&�vX��s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0������Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatf_|8Ȃ�{��7A��T�܏}��9}�@�{��z�jYy�h�w��4s���n���l�Z<n�r�p�);r��Ht�V"v���w�\!y��[w��t��Iy�� �������B���/��s��;��5��ļ���Ŀ�]Ŀ�d��Ѹ���zA�c@����V���������#[$��}�L��]zǾ��z����s�����\����h���PFa���l�N����7�|Vj�<|�����X���+������������4���a����������n�!�d�n�^v�w�x�Z���ځ�V?���恿MԀ��������ԁ��L���X������`{�^w���v���u���t���r��o��n���o��Zr�(s���KeyAttrFlagsi!�aH�7�-KeyAttrDataFloatf 



h�KeyAttrRefCounti^y�AnimationCurveL`\:SAnimCurveS��	DefaultD@��?��KeyVerI��KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb��
(?�e(?׾*?�/?��0?�1?�^0?�S)?�� ?�< ?�� ?�� ?W?��?�"?��&?4V"?	�?*?k{?P?�f?�?��?��?�>1?��C? �F?�T3?�%?ؗ1?u�G?�OV?
�O?���>F�N��о��)��;'�*�����4޾PT�8��D��U���?��j���ྣ���uSM�	�� ���#�L�
<!E�>6�?�D�?f��?�J@=@�M@��@f$@�V(@�C
@���?!��? �b?A�<?�M,?Z/6?Ԍ2?ڷ.?(�$?�?~&?��?Tn%?h+?�?�r?��
?�?�1	?4�>8�>��>OT�>w��>�Ӌ>��>��>��>�$z>���>���>��KeyAttrFlagsi!�aH�;�-KeyAttrDataFloatf 



l�KeyAttrRefCountia��AnimationCurveL�[:SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel;�
KeyValueFloatf�?e�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti9�AnimationCurveL�\:SAnimCurveS/�	DefaultD�?G�KeyVerI�p�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCounti��AnimationCurveL@0\:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��
KeyValueFloatf�?%�KeyAttrFlagsi!_�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD��@�KeyVerI�8�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb���.@��$@#�@�e%@�4'@��!@gY"@q$@�'@,[)@��(@Co'@ڻ'@e*@�-@�1@�70@A�)@��@B�@��@1d�?k�?�XJ?y0�>ce�=!Y���¼�#+��߾o�
�8҅��I>�?؂?���?�t�?��@�B@*�?.��?�=�?�p�?��?K��?ڋ�?W@_�6@[�C@G�>@�7@�9@�C@�S@�p|@���@G\�@}7�@0T�@�ć@|�@\�s@J�Z@� @���?�E�?>��?�R@8*@V�@@��E@�I@�N@��O@d�N@(xM@�&O@R@	[R@�CR@��Q@ѽL@��J@QkJ@�I@1G@�_E@�D@v[C@��B@[�A@L�@@sJA@g�H@eIR@�G^@ךv@}�@�KeyAttrFlagsi!�aH�_�-KeyAttrDataFloatf 



��KeyAttrRefCountia}�AnimationCurveL1\:SAnimCurveS��	DefaultD ��?�KeyVerI�4�KeyTimela�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfa�D�?�տ?i6�?��?
4�?��?G��?��?S��?�t�?7z�?�}�?nC�?+#�?	�?��?��?4$�?��?3�?��?���?��?;��?��?`�?ʭ�?�V�?l�?��?���?���?o��?`�?�j�?3�?���?��?s@�?O��? -{?Q}?t�?��?��?���?SӠ?�H�?�/�?��?3��?��?��@�@i�@�@�@!@r�?�@�t@�~�?��?�H�?�!�?�?lZ�?ڱ�?p��?N��?`�?bP�?yQ�?Gw�?bP�?0�?���?ʩ?�Ϭ?�~�?�
�?�ө?vǢ?�Ȣ?��?z��?�æ?�_�?��?�v�?1˷?l��?N�?�?�@�?�u�?���?	�KeyAttrFlagsi�aH�C�KeyAttrDataFloatf

p�KeyAttrRefCountia��AnimationCurveL��[:SAnimCurveS��	DefaultD@�r����KeyVerI��KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�”���8���2��.U����ÿ�^Ϳ�Jֿ�ݿz�}�迳4�O���W�kR��B�;.	��y�;��������qC�ߡ�y���H�|��]�����H¿�΋�ۭV�g�N�FUg��������6ƾ��ȱ�����{���D��,��7�2�]��M������3������儿�ng�6�T��_��a��85�������m׿�Կ�ȿѻ��Th5�V��ҩȾI��k�پEI�>$16?0j?K3?:�>O�J>ܣ��o�.���<i���y�����޾��羃T��L��`&��x8�z;B��A���;���?��nL��3L���Z�:qe���r��J���Z���}��}D��⹬��9���3��N(����KeyAttrFlagsi!�aH�C�-KeyAttrDataFloatf 



t�KeyAttrRefCountia��AnimationCurveL �[:SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelC�
KeyValueFloatf�?m�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiA�AnimationCurveL�[:SAnimCurveS7�	DefaultD�?O�KeyVerI�x�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

4�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?-�KeyAttrFlagsi!g�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLQ\:SAnimCurveS��	DefaultD�0���KeyVerI�@�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb���&�B�"����/�*��/�8G0�B64�~�8�$>���B���E���G�UI�7K�Z�L���L�†K��DF��>�n�6��J.�2b$�-?��<�'
�á��^�Kc���"��0%�h(���0���>�Q�x�b�{�u��Ҁ��e����k�{��Ts��i�T>_�ڣY�PZ��~[�dMZ�Z�Z��9]��Z�[�T���P���N�9�K��H�
�N�ԲS�
\Y�KqZ���W��pW��SX���V�V�A�S���P��aU�2I\���d�$j���h�:f�,�_��[�'�V�0�M�>K�PJ���D�9bB���?��(9�h�6��	5��4���3�
83�34�΢4�%5��+4��J3���3�VZ9�"(?��\F�e�T���Z��KeyAttrFlagsi!�aH�g�-KeyAttrDataFloatf 



��KeyAttrRefCountia�AnimationCurveL��[:SAnimCurveS��	DefaultD�l�?�KeyVerI����KeyTimelX����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf����S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"{�m
KeyValueFloatfX`锱?�߱?!�?�~�?Q�?蟸?a�?���?��?���?p�?j�?��?�t�?�o�?�β?ڬ�?/(�?%[�?��?��?���?�t�?f�?Ų�?�X�?�'�?���?u�?�\�?'�?��?~y�?�N�?��?Vg�?v�?YC�?�e�?��?�A�?�d�?vy�?J@��@�@B!
@��@�=
@��@�!@��@��@�@��@�8@�@�G@���?�O�?��?p��?�?�?v�?���?�M�?�@�?ڙ�?
H�?�}�?�U�?��?��?�M�?��?�*�?7��?%2�?�&�?r
�?
��?�B�?�j�?�f�?G&�?���?y��?
��?��KeyAttrFlagsi�aH���KeyAttrDataFloatf

�KeyAttrRefCountiX�AnimationCurveL@�[:SAnimCurveSo�	DefaultD@_�?��KeyVerI���KeyTimela�~�[P����{J��
oHy�����&�vX�@���s�98qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"[��
KeyValueFloatfa���:>4�B>�FN>G�D>ݎR>5�m>J�>DA�>Oʨ>�Q�>V��>���>&2�>o'�>���>��>m+�>K��>��>΁�>��?�? �?�u�>�S�>�=�>Z	c>{.>?�=�	>�uE>��s>���>�:�>�ʸ>鷅>�>����o�������
:����xG���������2�(�9���6��)�/��ȾY>��>ϊ�#��2+��kq��	�3����3�/�6�(6�7�O��/l��y����v�	V�FE4��~��=
�;����p;��/���Ⱦ,�ž8���ء��4���݂�Ϙ]���J��9�������������)�7=U;o�6<.�<!J�<v=��=ܣ=,�=wX�=sX�=��KeyAttrFlagsi!�aH���-KeyAttrDataFloatf 



�KeyAttrRefCounti`q�AnimationCurveL�h\:SAnimCurveSg�	DefaultD�?�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCounti��AnimationCurveLj\:SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel3�
KeyValueFloatf�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti1�AnimationCurveL �[:SAnimCurveS'�	DefaultD�??�KeyVerI�h�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveLp�[:SAnimCurveS��	DefaultD ܥ�<��KeyVerI���KeyTimel�~�[��
KeyValueFloatf�.e&�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�[:SAnimCurveS��	DefaultD����<��KeyVerI�(KeyTimel�~�[S
KeyValueFloatfM=�&}KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiQAnimationCurveL��[:SAnimCurveSG	DefaultD��FǼ_KeyVerI��KeyTimel�~�[�
KeyValueFloatf6:��KeyAttrFlagsi!KeyAttrDataFloatf

DKeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD�KeyVerI��KeyTimel��G�
KeyValueFloatf�?=KeyAttrFlagsi!wKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL�\:SAnimCurveS	DefaultDKeyVerI�HKeyTimel��G�s
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiqAnimationCurveLp�[:SAnimCurveSg	DefaultDKeyVerI��KeyTimel��G��
KeyValueFloatf�?�KeyAttrFlagsi!7KeyAttrDataFloatf

dKeyAttrRefCounti�AnimationCurveL@�[:SAnimCurveS�	DefaultD ܥ�<�KeyVerI�KeyTimel�~�[3
KeyValueFloatf�.e&]KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti1	AnimationCurveL��[:SAnimCurveS'	DefaultD����<?KeyVerI�hKeyTimel�~�[�
KeyValueFloatfM=�&�KeyAttrFlagsi!�KeyAttrDataFloatf

$	KeyAttrRefCounti�
AnimationCurveL@B\:SAnimCurveS�		DefaultD��FǼ�	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatf6:�
KeyAttrFlagsi!W
KeyAttrDataFloatf

�
KeyAttrRefCounti�AnimationCurveL@o\:SAnimCurveS�
	DefaultD�
KeyVerI�(KeyTimel��G�S
KeyValueFloatf�?}KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiQ
AnimationCurveL �[:SAnimCurveSG	DefaultD_KeyVerI��KeyTimel��G��
KeyValueFloatf�?�KeyAttrFlagsi!
KeyAttrDataFloatf

D
KeyAttrRefCounti�AnimationCurveL�	\:SAnimCurveS�
	DefaultD�
KeyVerI��
KeyTimel��G�
KeyValueFloatf�?=KeyAttrFlagsi!wKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL�[:SAnimCurveS	DefaultD ܥ�<KeyVerI�HKeyTimel�~�[s
KeyValueFloatf�.e&�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiqAnimationCurveLp\:SAnimCurveSg	DefaultD����<KeyVerI��KeyTimel�~�[�
KeyValueFloatfM=�&�KeyAttrFlagsi!7KeyAttrDataFloatf

dKeyAttrRefCounti�AnimationCurveL �[:SAnimCurveS�	DefaultD��FǼ�KeyVerI�KeyTimel�~�[3
KeyValueFloatf6:�]KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti1AnimationCurveLP8\:SAnimCurveS'	DefaultD?KeyVerI�hKeyTimel��G��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

$KeyAttrRefCounti�AnimationCurveL�\:SAnimCurveS�	DefaultD�KeyVerI��KeyTimel��G��
KeyValueFloatf�?KeyAttrFlagsi!WKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLP�[:SAnimCurveS�	DefaultD�KeyVerI�(KeyTimel��G�S
KeyValueFloatf�?}KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiQAnimationCurveLpT\:SAnimCurveSG	DefaultD ܥ�<_KeyVerI��KeyTimel�~�[�
KeyValueFloatf�.e&�KeyAttrFlagsi!KeyAttrDataFloatf

DKeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD����<�KeyVerI��KeyTimel�~�[
KeyValueFloatfM=�&=KeyAttrFlagsi!wKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL@�[:SAnimCurveS	DefaultD��FǼKeyVerI�HKeyTimel�~�[s
KeyValueFloatf6:��KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiqAnimationCurveL�9\:SAnimCurveSg	DefaultDKeyVerI��KeyTimel��G��
KeyValueFloatf�?�KeyAttrFlagsi!7KeyAttrDataFloatf

dKeyAttrRefCounti�AnimationCurveL4\:SAnimCurveS�	DefaultD�KeyVerI�KeyTimel��G�3
KeyValueFloatf�?]KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti1AnimationCurveL@\:SAnimCurveS'	DefaultD?KeyVerI�hKeyTimel��G��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

$KeyAttrRefCounti� AnimationCurveLpx\:SAnimCurveS�	DefaultD ܥ�<�KeyVerI��KeyTimel�~�[�
KeyValueFloatf�.e& KeyAttrFlagsi!W KeyAttrDataFloatf

� KeyAttrRefCounti�!AnimationCurveLP�[:SAnimCurveS� 	DefaultD����<� KeyVerI�(!KeyTimel�~�[S!
KeyValueFloatfM=�&}!KeyAttrFlagsi!�!KeyAttrDataFloatf

�!KeyAttrRefCountiQ#AnimationCurveL@9\:SAnimCurveSG"	DefaultD��FǼ_"KeyVerI��"KeyTimel�~�[�"
KeyValueFloatf6:��"KeyAttrFlagsi!#KeyAttrDataFloatf

D#KeyAttrRefCounti�$AnimationCurveL \\:SAnimCurveS�#	DefaultD�#KeyVerI��#KeyTimel��G�$
KeyValueFloatf�?=$KeyAttrFlagsi!w$KeyAttrDataFloatf

�$KeyAttrRefCounti&AnimationCurveL�[:SAnimCurveS%	DefaultD%KeyVerI�H%KeyTimel��G�s%
KeyValueFloatf�?�%KeyAttrFlagsi!�%KeyAttrDataFloatf

&KeyAttrRefCountiq'AnimationCurveL �[:SAnimCurveSg&	DefaultD&KeyVerI��&KeyTimel��G��&
KeyValueFloatf�?�&KeyAttrFlagsi!7'KeyAttrDataFloatf

d'KeyAttrRefCounti�(AnimationCurveL�U\:SAnimCurveS�'	DefaultD ܥ�<�'KeyVerI�(KeyTimel�~�[3(
KeyValueFloatf�.e&](KeyAttrFlagsi!�(KeyAttrDataFloatf

�(KeyAttrRefCounti1*AnimationCurveL�\:SAnimCurveS')	DefaultD����<?)KeyVerI�h)KeyTimel�~�[�)
KeyValueFloatfM=�&�)KeyAttrFlagsi!�)KeyAttrDataFloatf

$*KeyAttrRefCounti�+AnimationCurveL�u\:SAnimCurveS�*	DefaultD��FǼ�*KeyVerI��*KeyTimel�~�[�*
KeyValueFloatf6:�+KeyAttrFlagsi!W+KeyAttrDataFloatf

�+KeyAttrRefCounti�,AnimationCurveL��[:SAnimCurveS�+	DefaultD�+KeyVerI�(,KeyTimel��G�S,
KeyValueFloatf�?},KeyAttrFlagsi!�,KeyAttrDataFloatf

�,KeyAttrRefCountiQ.AnimationCurveL0=\:SAnimCurveSG-	DefaultD_-KeyVerI��-KeyTimel��G��-
KeyValueFloatf�?�-KeyAttrFlagsi!.KeyAttrDataFloatf

D.KeyAttrRefCounti�/AnimationCurveL�[:SAnimCurveS�.	DefaultD�.KeyVerI��.KeyTimel��G�/
KeyValueFloatf�?=/KeyAttrFlagsi!w/KeyAttrDataFloatf

�/KeyAttrRefCounti1AnimationCurveL�[:SAnimCurveS0	DefaultD ܥ�<0KeyVerI�H0KeyTimel�~�[s0
KeyValueFloatf�.e&�0KeyAttrFlagsi!�0KeyAttrDataFloatf

1KeyAttrRefCountiq2AnimationCurveLP�[:SAnimCurveSg1	DefaultD����<1KeyVerI��1KeyTimel�~�[�1
KeyValueFloatfM=�&�1KeyAttrFlagsi!72KeyAttrDataFloatf

d2KeyAttrRefCounti�3AnimationCurveL�7\:SAnimCurveS�2	DefaultD��FǼ�2KeyVerI�3KeyTimel�~�[33
KeyValueFloatf6:�]3KeyAttrFlagsi!�3KeyAttrDataFloatf

�3KeyAttrRefCounti15AnimationCurveL�
\:SAnimCurveS'4	DefaultD?4KeyVerI�h4KeyTimel��G��4
KeyValueFloatf�?�4KeyAttrFlagsi!�4KeyAttrDataFloatf

$5KeyAttrRefCounti�6AnimationCurveLp�[:SAnimCurveS�5	DefaultD�5KeyVerI��5KeyTimel��G��5
KeyValueFloatf�?6KeyAttrFlagsi!W6KeyAttrDataFloatf

�6KeyAttrRefCounti�7AnimationCurveL�8\:SAnimCurveS�6	DefaultD�6KeyVerI�(7KeyTimel��G�S7
KeyValueFloatf�?}7KeyAttrFlagsi!�7KeyAttrDataFloatf

�7KeyAttrRefCountiQ9AnimationCurveL�j\:SAnimCurveSG8	DefaultD ܥ�<_8KeyVerI��8KeyTimel�~�[�8
KeyValueFloatf�.e&�8KeyAttrFlagsi!9KeyAttrDataFloatf

D9KeyAttrRefCounti�:AnimationCurveLp\:SAnimCurveS�9	DefaultD����<�9KeyVerI��9KeyTimel�~�[:
KeyValueFloatfM=�&=:KeyAttrFlagsi!w:KeyAttrDataFloatf

�:KeyAttrRefCounti<AnimationCurveL��[:SAnimCurveS;	DefaultD��FǼ;KeyVerI�H;KeyTimel�~�[s;
KeyValueFloatf6:��;KeyAttrFlagsi!�;KeyAttrDataFloatf

<KeyAttrRefCountiq=AnimationCurveL �[:SAnimCurveSg<	DefaultD<KeyVerI��<KeyTimel��G��<
KeyValueFloatf�?�<KeyAttrFlagsi!7=KeyAttrDataFloatf

d=KeyAttrRefCounti�>AnimationCurveL�\:SAnimCurveS�=	DefaultD�=KeyVerI�>KeyTimel��G�3>
KeyValueFloatf�?]>KeyAttrFlagsi!�>KeyAttrDataFloatf

�>KeyAttrRefCounti1@AnimationCurveL@Z\:SAnimCurveS'?	DefaultD??KeyVerI�h?KeyTimel��G��?
KeyValueFloatf�?�?KeyAttrFlagsi!�?KeyAttrDataFloatf

$@KeyAttrRefCounti�AAnimationCurveL�[:SAnimCurveS�@	DefaultD ܥ�<�@KeyVerI��@KeyTimel�~�[�@
KeyValueFloatf�.e&AKeyAttrFlagsi!WAKeyAttrDataFloatf

�AKeyAttrRefCounti�BAnimationCurveL�[:SAnimCurveS�A	DefaultD����<�AKeyVerI�(BKeyTimel�~�[SB
KeyValueFloatfM=�&}BKeyAttrFlagsi!�BKeyAttrDataFloatf

�BKeyAttrRefCountiQDAnimationCurveL�x\:SAnimCurveSGC	DefaultD��FǼ_CKeyVerI��CKeyTimel�~�[�C
KeyValueFloatf6:��CKeyAttrFlagsi!DKeyAttrDataFloatf

DDKeyAttrRefCounti�EAnimationCurveL��[:SAnimCurveS�D	DefaultD�DKeyVerI��DKeyTimel��G�E
KeyValueFloatf�?=EKeyAttrFlagsi!wEKeyAttrDataFloatf

�EKeyAttrRefCountiGAnimationCurveL��[:SAnimCurveSF	DefaultDFKeyVerI�HFKeyTimel��G�sF
KeyValueFloatf�?�FKeyAttrFlagsi!�FKeyAttrDataFloatf

GKeyAttrRefCountiqHAnimationCurveLP�\:SAnimCurveSgG	DefaultDGKeyVerI��GKeyTimel��G��G
KeyValueFloatf�?�GKeyAttrFlagsi!7HKeyAttrDataFloatf

dHKeyAttrRefCounti�IAnimationCurveL0v\:SAnimCurveS�H	DefaultD ܥ�<�HKeyVerI�IKeyTimel�~�[3I
KeyValueFloatf�.e&]IKeyAttrFlagsi!�IKeyAttrDataFloatf

�IKeyAttrRefCounti1KAnimationCurveL��[:SAnimCurveS'J	DefaultD����<?JKeyVerI�hJKeyTimel�~�[�J
KeyValueFloatfM=�&�JKeyAttrFlagsi!�JKeyAttrDataFloatf

$KKeyAttrRefCounti�LAnimationCurveL�A\:SAnimCurveS�K	DefaultD��FǼ�KKeyVerI��KKeyTimel�~�[�K
KeyValueFloatf6:�LKeyAttrFlagsi!WLKeyAttrDataFloatf

�LKeyAttrRefCounti�MAnimationCurveL A\:SAnimCurveS�L	DefaultD�LKeyVerI�(MKeyTimel��G�SM
KeyValueFloatf�?}MKeyAttrFlagsi!�MKeyAttrDataFloatf

�MKeyAttrRefCountiQOAnimationCurveLp0\:SAnimCurveSGN	DefaultD_NKeyVerI��NKeyTimel��G��N
KeyValueFloatf�?�NKeyAttrFlagsi!OKeyAttrDataFloatf

DOKeyAttrRefCounti�PAnimationCurveL�A\:SAnimCurveS�O	DefaultD�OKeyVerI��OKeyTimel��G�P
KeyValueFloatf�?=PKeyAttrFlagsi!wPKeyAttrDataFloatf

�PKeyAttrRefCountiRAnimationCurveL@6\:SAnimCurveSQ	DefaultD ܥ�<QKeyVerI�HQKeyTimel�~�[sQ
KeyValueFloatf�.e&�QKeyAttrFlagsi!�QKeyAttrDataFloatf

RKeyAttrRefCountiqSAnimationCurveL�o\:SAnimCurveSgR	DefaultD����<RKeyVerI��RKeyTimel�~�[�R
KeyValueFloatfM=�&�RKeyAttrFlagsi!7SKeyAttrDataFloatf

dSKeyAttrRefCounti�TAnimationCurveL��M;SAnimCurveS�S	DefaultD��FǼ�SKeyVerI�TKeyTimel�~�[3T
KeyValueFloatf6:�]TKeyAttrFlagsi!�TKeyAttrDataFloatf

�TKeyAttrRefCounti1VAnimationCurveL��M;SAnimCurveS'U	DefaultD?UKeyVerI�hUKeyTimel��G��U
KeyValueFloatf�?�UKeyAttrFlagsi!�UKeyAttrDataFloatf

$VKeyAttrRefCounti�WAnimationCurveL��M;SAnimCurveS�V	DefaultD�VKeyVerI��VKeyTimel��G��V
KeyValueFloatf�?WKeyAttrFlagsi!WWKeyAttrDataFloatf

�WKeyAttrRefCounti�XAnimationCurveL��M;SAnimCurveS�W	DefaultD�WKeyVerI�(XKeyTimel��G�SX
KeyValueFloatf�?}XKeyAttrFlagsi!�XKeyAttrDataFloatf

�XKeyAttrRefCountiQZAnimationCurveLh�M;SAnimCurveSGY	DefaultD ܥ�<_YKeyVerI��YKeyTimel�~�[�Y
KeyValueFloatf�.e&�YKeyAttrFlagsi!ZKeyAttrDataFloatf

DZKeyAttrRefCounti�[AnimationCurveLN;SAnimCurveS�Z	DefaultD����<�ZKeyVerI��ZKeyTimel�~�[[
KeyValueFloatfM=�&=[KeyAttrFlagsi!w[KeyAttrDataFloatf

�[KeyAttrRefCounti]AnimationCurveL��M;SAnimCurveS\	DefaultD��FǼ\KeyVerI�H\KeyTimel�~�[s\
KeyValueFloatf6:��\KeyAttrFlagsi!�\KeyAttrDataFloatf

]KeyAttrRefCountiq^AnimationCurveL�TN;SAnimCurveSg]	DefaultD]KeyVerI��]KeyTimel��G��]
KeyValueFloatf�?�]KeyAttrFlagsi!7^KeyAttrDataFloatf

d^KeyAttrRefCounti�_AnimationCurveLxN;SAnimCurveS�^	DefaultD�^KeyVerI�_KeyTimel��G�3_
KeyValueFloatf�?]_KeyAttrFlagsi!�_KeyAttrDataFloatf

�_KeyAttrRefCounti1aAnimationCurveL��N;SAnimCurveS'`	DefaultD?`KeyVerI�h`KeyTimel��G��`
KeyValueFloatf�?�`KeyAttrFlagsi!�`KeyAttrDataFloatf

$aKeyAttrRefCounti�bAnimationCurveL��N;SAnimCurveS�a	DefaultD ܥ�<�aKeyVerI��aKeyTimel�~�[�a
KeyValueFloatf�.e&bKeyAttrFlagsi!WbKeyAttrDataFloatf

�bKeyAttrRefCounti�cAnimationCurveL�rN;SAnimCurveS�b	DefaultD����<�bKeyVerI�(cKeyTimel�~�[Sc
KeyValueFloatfM=�&}cKeyAttrFlagsi!�cKeyAttrDataFloatf

�cKeyAttrRefCountiQeAnimationCurveL��M;SAnimCurveSGd	DefaultD��FǼ_dKeyVerI��dKeyTimel�~�[�d
KeyValueFloatf6:��dKeyAttrFlagsi!eKeyAttrDataFloatf

DeKeyAttrRefCounti�fAnimationCurveL��M;SAnimCurveS�e	DefaultD�eKeyVerI��eKeyTimel��G�f
KeyValueFloatf�?=fKeyAttrFlagsi!wfKeyAttrDataFloatf

�fKeyAttrRefCountihAnimationCurveLȫM;SAnimCurveSg	DefaultDgKeyVerI�HgKeyTimel��G�sg
KeyValueFloatf�?�gKeyAttrFlagsi!�gKeyAttrDataFloatf

hKeyAttrRefCountiqiAnimationCurveLh�M;SAnimCurveSgh	DefaultDhKeyVerI��hKeyTimel��G��h
KeyValueFloatf�?�hKeyAttrFlagsi!7iKeyAttrDataFloatf

diKeyAttrRefCounti�jAnimationCurveL��N;SAnimCurveS�i	DefaultD��iKeyVerI�jKeyTimel�~�[3j
KeyValueFloatf��]jKeyAttrFlagsi!�jKeyAttrDataFloatf

�jKeyAttrRefCounti1lAnimationCurveL8 N;SAnimCurveS'k	DefaultD����<?kKeyVerI�hkKeyTimel�~�[�k
KeyValueFloatfM=�&�kKeyAttrFlagsi!�kKeyAttrDataFloatf

$lKeyAttrRefCounti�mAnimationCurveLXHN;SAnimCurveS�l	DefaultD��FǼ�lKeyVerI��lKeyTimel�~�[�l
KeyValueFloatf6:�mKeyAttrFlagsi!WmKeyAttrDataFloatf

�mKeyAttrRefCounti�nAnimationCurveLXN;SAnimCurveS�m	DefaultD�mKeyVerI�(nKeyTimel��G�Sn
KeyValueFloatf�?}nKeyAttrFlagsi!�nKeyAttrDataFloatf

�nKeyAttrRefCountiQpAnimationCurveLHN;SAnimCurveSGo	DefaultD_oKeyVerI��oKeyTimel��G��o
KeyValueFloatf�?�oKeyAttrFlagsi!pKeyAttrDataFloatf

DpKeyAttrRefCounti�qAnimationCurveLHdN;SAnimCurveS�p	DefaultD�pKeyVerI��pKeyTimel��G�q
KeyValueFloatf�?=qKeyAttrFlagsi!wqKeyAttrDataFloatf

�qKeyAttrRefCountisAnimationCurveL�N;SAnimCurveSr	DefaultD ܥ�<rKeyVerI�HrKeyTimel�~�[sr
KeyValueFloatf�.e&�rKeyAttrFlagsi!�rKeyAttrDataFloatf

sKeyAttrRefCountiqtAnimationCurveL/N;SAnimCurveSgs	DefaultD����<sKeyVerI��sKeyTimel�~�[�s
KeyValueFloatfM=�&�sKeyAttrFlagsi!7tKeyAttrDataFloatf

dtKeyAttrRefCounti�uAnimationCurveLXN;SAnimCurveS�t	DefaultD��FǼ�tKeyVerI�uKeyTimel�~�[3u
KeyValueFloatf6:�]uKeyAttrFlagsi!�uKeyAttrDataFloatf

�uKeyAttrRefCounti1wAnimationCurveLH�M;SAnimCurveS'v	DefaultD?vKeyVerI�hvKeyTimel��G��v
KeyValueFloatf�?�vKeyAttrFlagsi!�vKeyAttrDataFloatf

$wKeyAttrRefCounti�xAnimationCurveLh\N;SAnimCurveS�w	DefaultD�wKeyVerI��wKeyTimel��G��w
KeyValueFloatf�?xKeyAttrFlagsi!WxKeyAttrDataFloatf

�xKeyAttrRefCounti�yAnimationCurveL�eN;SAnimCurveS�x	DefaultD�xKeyVerI�(yKeyTimel��G�Sy
KeyValueFloatf�?}yKeyAttrFlagsi!�yKeyAttrDataFloatf

�yKeyAttrRefCountiQ{AnimationCurveLx4N;SAnimCurveSGz	DefaultD ܥ�<_zKeyVerI��zKeyTimel�~�[�z
KeyValueFloatf�.e&�zKeyAttrFlagsi!{KeyAttrDataFloatf

D{KeyAttrRefCounti�|AnimationCurveL�M;SAnimCurveS�{	DefaultD����<�{KeyVerI��{KeyTimel�~�[|
KeyValueFloatfM=�&=|KeyAttrFlagsi!w|KeyAttrDataFloatf

�|KeyAttrRefCounti~AnimationCurveL�M;SAnimCurveS}	DefaultD��FǼ}KeyVerI�H}KeyTimel�~�[s}
KeyValueFloatf6:��}KeyAttrFlagsi!�}KeyAttrDataFloatf

~KeyAttrRefCountiqAnimationCurveL�,N;SAnimCurveSg~	DefaultD~KeyVerI��~KeyTimel��G��~
KeyValueFloatf�?�~KeyAttrFlagsi!7KeyAttrDataFloatf

dKeyAttrRefCountiрAnimationCurveL��M;SAnimCurveS�	DefaultD�KeyVerI��KeyTimel��G�3�
KeyValueFloatf�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

ĀKeyAttrRefCounti1�AnimationCurveLXN;SAnimCurveS'�	DefaultD?�KeyVerI�h�KeyTimel��G���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveLX�M;SAnimCurveS��	DefaultD ܥ�<��KeyVerI�ȂKeyTimel�~�[�
KeyValueFloatf�.e&�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS�	DefaultD����<��KeyVerI�(�KeyTimel�~�[S�
KeyValueFloatfM=�&}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveLx�M;SAnimCurveSG�	DefaultD��FǼ_�KeyVerI���KeyTimel�~�[��
KeyValueFloatf6:�݅KeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveLH1N;SAnimCurveS��	DefaultD��KeyVerI��KeyTimel��G��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLHgN;SAnimCurveS�	DefaultD�KeyVerI�H�KeyTimel��G�s�
KeyValueFloatf�?��KeyAttrFlagsi!׈KeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL8�M;SAnimCurveSg�	DefaultD�KeyVerI���KeyTimel��G�Ӊ
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiыAnimationCurveLN;SAnimCurveSNJ	DefaultD ܥ�<ߊKeyVerI��KeyTimel�~�[3�
KeyValueFloatf�.e&]�KeyAttrFlagsi!��KeyAttrDataFloatf

ċKeyAttrRefCounti1�AnimationCurveLh N;SAnimCurveS'�	DefaultD����<?�KeyVerI�h�KeyTimel�~�[��
KeyValueFloatfM=�&��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL8,N;SAnimCurveS��	DefaultD��FǼ��KeyVerI�ȍKeyTimel�~�[�
KeyValueFloatf6:��KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�N;SAnimCurveS�	DefaultD��KeyVerI�(�KeyTimel��G�S�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveLXfN;SAnimCurveSG�	DefaultD_�KeyVerI���KeyTimel��G���
KeyValueFloatf�?ݐKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveLHN;SAnimCurveS��	DefaultD��KeyVerI��KeyTimel��G��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLH(N;SAnimCurveS�	DefaultD ܥ�<�KeyVerI�H�KeyTimel�~�[s�
KeyValueFloatf�.e&��KeyAttrFlagsi!דKeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL8�M;SAnimCurveSg�	DefaultD����<�KeyVerI���KeyTimel�~�[Ӕ
KeyValueFloatfM=�&��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiіAnimationCurveLH�M;SAnimCurveSǕ	DefaultD��FǼߕKeyVerI��KeyTimel�~�[3�
KeyValueFloatf6:�]�KeyAttrFlagsi!��KeyAttrDataFloatf

ĖKeyAttrRefCounti1�AnimationCurveLȖM;SAnimCurveS'�	DefaultD?�KeyVerI�h�KeyTimel��G���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveLH�M;SAnimCurveS��	DefaultD��KeyVerI�ȘKeyTimel��G��
KeyValueFloatf�?�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�VN;SAnimCurveS�	DefaultD��KeyVerI�(�KeyTimel��G�S�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveL�KN;SAnimCurveSG�	DefaultD ܥ�<_�KeyVerI���KeyTimel�~�[��
KeyValueFloatf�.e&ݛKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveL�0N;SAnimCurveS��	DefaultD����<��KeyVerI��KeyTimel�~�[�
KeyValueFloatfM=�&=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLx�M;SAnimCurveS�	DefaultD��FǼ�KeyVerI�H�KeyTimel�~�[s�
KeyValueFloatf6:���KeyAttrFlagsi!מKeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL��M;SAnimCurveSg�	DefaultD�KeyVerI���KeyTimel��G�ӟ
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiѡAnimationCurveL8PN;SAnimCurveSǠ	DefaultDߠKeyVerI��KeyTimel��G�3�
KeyValueFloatf�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

ġKeyAttrRefCounti1�AnimationCurveLXiN;SAnimCurveS'�	DefaultD?�KeyVerI�h�KeyTimel��G���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD���KeyVerI�ȣKeyTimel�~�[�
KeyValueFloatf���KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL N;SAnimCurveS�	DefaultD����<��KeyVerI�(�KeyTimel�~�[S�
KeyValueFloatfM=�&}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveLx�M;SAnimCurveSG�	DefaultD��FǼ_�KeyVerI���KeyTimel�~�[��
KeyValueFloatf6:�ݦKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveL�eN;SAnimCurveS��	DefaultD��KeyVerI��KeyTimel��G��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL8eN;SAnimCurveS�	DefaultD�KeyVerI�H�KeyTimel��G�s�
KeyValueFloatf�?��KeyAttrFlagsi!שKeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL�M;SAnimCurveSg�	DefaultD�KeyVerI���KeyTimel��G�Ӫ
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiѬAnimationCurveL8)N;SAnimCurveSǫ	DefaultD ܥ�<߫KeyVerI��KeyTimel�~�[3�
KeyValueFloatf�.e&]�KeyAttrFlagsi!��KeyAttrDataFloatf

ĬKeyAttrRefCounti1�AnimationCurveL؞M;SAnimCurveS'�	DefaultD����<?�KeyVerI�h�KeyTimel�~�[��
KeyValueFloatfM=�&��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveLxyN;SAnimCurveS��	DefaultD��FǼ��KeyVerI�ȮKeyTimel�~�[�
KeyValueFloatf6:��KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLX{N;SAnimCurveS�	DefaultD��KeyVerI�(�KeyTimel��G�S�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveLh�N;SAnimCurveSG�	DefaultD_�KeyVerI���KeyTimel��G���
KeyValueFloatf�?ݱKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI��KeyTimel��G��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLaN;SAnimCurveS�	DefaultD ܥ�<�KeyVerI�H�KeyTimel�~�[s�
KeyValueFloatf�.e&��KeyAttrFlagsi!״KeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL(�M;SAnimCurveSg�	DefaultD����<�KeyVerI���KeyTimel�~�[ӵ
KeyValueFloatfM=�&��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiѷAnimationCurveLH�M;SAnimCurveSǶ	DefaultD��FǼ߶KeyVerI��KeyTimel�~�[3�
KeyValueFloatf6:�]�KeyAttrFlagsi!��KeyAttrDataFloatf

ķKeyAttrRefCounti1�AnimationCurveLHsN;SAnimCurveS'�	DefaultD?�KeyVerI�h�KeyTimel��G���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveLdN;SAnimCurveS��	DefaultD��KeyVerI�ȹKeyTimel��G��
KeyValueFloatf�?�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL8JN;SAnimCurveS�	DefaultD��KeyVerI�(�KeyTimel��G�S�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveL��M;SAnimCurveSG�	DefaultD ܥ�<_�KeyVerI���KeyTimel�~�[��
KeyValueFloatf�.e&ݼKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveL�'N;SAnimCurveS��	DefaultD����<��KeyVerI��KeyTimel�~�[�
KeyValueFloatfM=�&=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�M;SAnimCurveS�	DefaultD��FǼ�KeyVerI�H�KeyTimel�~�[s�
KeyValueFloatf6:���KeyAttrFlagsi!׿KeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL��M;SAnimCurveSg�	DefaultD�KeyVerI���KeyTimel��G���
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD��KeyVerI��KeyTimel��G�3�
KeyValueFloatf�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti1�AnimationCurveLx"N;SAnimCurveS'�	DefaultD?�KeyVerI�h�KeyTimel��G���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti5�AnimationCurveLh;N;SAnimCurveS��	DefaultD�LE�?��KeyVerI���KeyTimel"�~�[P����{J�vX��n�0��kt`��7�Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ���p�<[��
KeyValueFloatf"�g*�?��?��?��?v�?X:�?f��?ϝ�?���?#��?m�?)��?���?��?Dg�?��?z�?r��?(�?�5�?X~?9�|?XE|?�q{?i�y?��v?)mr?�On?d�k?��k?p�n?3q?�Jr?��o?��KeyAttrFlagsi!�aH���-KeyAttrDataFloatf 



(�KeyAttrRefCounti!��AnimationCurveL�M;SAnimCurveS��	DefaultD��꿣�KeyVerI�,�uKeyTimel-h�~�[P����{J@��Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t��
KeyValueFloatf-�(�W��$Z��7_���]�Ӓ]��o[��e\�
t_���b�:�b�Gsa�9�^�e0Z�d�T�E)O�g�J��2H��6F��gE���D�6kC�MA�D�=�<�:�y�9���:���>�k�A��dD�̪E�|fE�0�D��C���@��M;��:���9�B7���5�“7�	+<��"=�3�>�odA�� B�5�KeyAttrFlagsi!�aH��-KeyAttrDataFloatf 



��KeyAttrRefCounti,��AnimationCurveLH�M;SAnimCurveS�	DefaultD�O��+�KeyVerI���MKeyTimelH@�~�[P����{J@���s�9��8qf���)M�n�0��kt`��7�(i���sa�>��S�h^���Q	�[��	`�a	
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t��	>�͙0����TQ���(�Б�dxb� �%�
�w��-
KeyValueFloatfH J�����M��wQ��ӑ��_���S
��z)���#�����k���\Y����������r2��D��Q�����I%��&V���U��ά��_P������C��*���a����N���7��O<�����۬������2��pA���=������1������1������{��f�������5��<y��I���\������1Q��'�����������D����j������{������������^������b�����������v���7������O{��
M���������KeyAttrFlagsi!�aH�K�-KeyAttrDataFloatf 



|�KeyAttrRefCountiG��AnimationCurveLPN;SAnimCurveS��	DefaultD�?��KeyVerI� �KeyTimelK�
KeyValueFloatf�?u�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiI�AnimationCurveLH�M;SAnimCurveS?�	DefaultD�?W�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

<�KeyAttrRefCounti��AnimationCurveLx�M;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?5�KeyAttrFlagsi!o�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD"�@�KeyVerI�H�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb��@��@��@2��@l�@�̆@df�@�n�@�ݔ@	��@>��@��@M�@��@Ɲ@iF�@۔@@~��@�x@�i@#�d@x3f@�f@+�`@fnR@ICH@"!G@�SF@k�C@�>@z3@D2@L[L@t�n@��@�H�@;��@_S�@�V�@/Κ@�u�@��@�m�@��@A�@��@&�@E{�@�l�@1�@h��@@��@��@�@0�@ԋ@5�}@�v@�wu@�Ӆ@'/�@y��@ﭝ@��@��@F$�@%.�@�l�@�;@_=�@���@'N�@>��@���@�x�@�u�@zм@
q�@e,�@.�@2��@�t�@Bd�@w!�@ݕ�@�y�@�-�@侳@�o�@s�@�T�@�t�@_�@�	�@ѩ�@G��@��@%�KeyAttrFlagsi!�aH�o�-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveL(N;SAnimCurveS�	DefaultD��K�?�KeyVerI�L�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�F\�?WK�?�=�?�6�?3|�?�?o��?"_�?���?���?���?���?o�?��@�)@>@e9@(�@y�@�*@].@��@�`@�
@(��?�d�?S
�?�3�?��?��?U��?g�?Ff@H@5�0@F�:@-�D@�zN@5V@g�c@�y@�Q�@oh�@�æ@�@q��@Lq�@z�@���@��@P�@�ш@5�u@��V@G@���?�#?�L��Q�2�Ck7�J�%>�n?��?M�@�@�$@h�)@j�)@��*@oh/@�/@�6+@��!@nG@	�@��@��@��@��@#4"@7%@y+@2^-@��-@v�-@��+@�#'@�<@�r@��@	@H�@!��?P��?)��?�g�?Ɯ@'@)�KeyAttrFlagsi!�aH�s�-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveL(�M;SAnimCurveS�	DefaultD�/�R@�KeyVerI�P�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�|!�B2G�B©�B|ՔB���B�4�B�w�B	ܕB�V�BKʖB�(�B2j�Ba��B�c�B��BꟖB:�Bh��BR�B ��B�S�Bw�BѓB櫓B���B��BLg�B`%�Bw�B	��B�W�B��B͑BrL�B*��BE:�B���B���Bg͑B�ʑBw��BJ��B$h�B.?�B��B�ߐBByo�BH\�B���BXÐBX�B"G�BM��Bx�B� �B�!�B�U�Bg{�Bѣ�B���B�A�Bˤ�B4D�BN�B�7�B��B0H�B*��B��Bd7�B�Y�B8��B稕B�ȕB'��B��B�*�B�&�B��B��B�ޕBɕBU��B-��Bny�Bas�B�n�B[u�Bz�B���BI��B���B��B��B�#�B�J�B�S�B-�KeyAttrFlagsi!�aH�w�-KeyAttrDataFloatf 



��KeyAttrRefCountia�AnimationCurveL+N;SAnimCurveS�	DefaultD�?#�KeyVerI�L�KeyTimelw�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiu�AnimationCurveL�N;SAnimCurveSk�	DefaultD�?��KeyVerI���KeyTimel��
KeyValueFloatf�?�KeyAttrFlagsi!;�KeyAttrDataFloatf

h�KeyAttrRefCounti��AnimationCurveL8hN;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel7�
KeyValueFloatf�?a�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�MN;SAnimCurveS+�	DefaultD`�%.@C�KeyVerI�t�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"#��
KeyValueFloatfb�3,qA�	qAܸqA�.uA��yA��|A�yAu�xAa�|A�zAGnuA�]vA�xA��tA�qA��tA�>tA�pA	�lA�gA�ggA��dA�gbAAriA��gA�_A�"cAddgASMdA��cA��_A`$YA_�[A��cAh�jAe{mA"sA�zxA�wA�sA>ToAX*lA
jA��fAz�bA@�^AUZA��WAUA��OAyKA� IA�IA��IA��JA��IA7&LA�rPAK�QAU,RAMA�sJAqGAP�AA�AAi�CA�_LAG*MA�7MAyMPA}�SA��TA��XAS�ZA��\AE=^Aj�^Aŭ^A|^A"y]A�]A�I\A�7[Aa\ZAZV\A�]A�]A/TYA�XA��YA,_AlbA��eA�gjA}
kAi�iA
cA�_AQ�KeyAttrFlagsi!�aH���-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveL��M;SAnimCurveS/�	DefaultD�4�@G�KeyVerI�x�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"'��
KeyValueFloatfb��Q�@���@��~@�zr@qsl@v�i@�}l@׬o@K]p@:�u@��}@(>�@��@�v�@I!�@V��@h�@w3�@=��@/:�@}ގ@^��@��@�L�@˔@A��@i֊@ɂ@3��@�Y�@���@M��@-��@�_�@y��@nuq@>�P@��8@��7@@�A@�'P@��`@kAo@���@��@[��@~��@��@,?�@�8�@<��@�~�@\�@0t�@,^�@0��@-̪@�E�@�Ɣ@\�@�.�@�Ұ@���@F3�@���@���@DB�@e��@�n�@���@S��@�Е@d-�@h��@���@��@cÍ@�i�@K��@��@��@iJ�@�f�@5ޏ@O��@&%�@l�@܋�@`�@ѡ�@\�~@>�z@J�v@"%m@��l@�Yr@�@!|�@U�KeyAttrFlagsi!�aH���-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveL��M;SAnimCurveS3�	DefaultD@��@K�KeyVerI�|�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"+��
KeyValueFloatfb��?�@���@|��@���@�3�@�ʣ@U�@���@���@�x�@�֩@4��@��@�ȧ@�@W'�@b�@�v�@�`�@��@5Ǧ@��@H��@B��@>��@�Ъ@���@��@�`�@C��@?M�@R�@�1�@�e�@{	�@� �@G��@��@v��@�B�@ӯ�@�Z�@J�@�Y�@�ݵ@MO�@o�@���@���@n��@�0�@��@�C�@���@���@��@o2�@ٳ�@���@��@T��@��@4h�@|�@R�@�z�@�@�@���@��@M�@R��@���@���@ǒ�@�f�@4%�@u�@2ۼ@Ӽ@�ּ@�O�@f�@A��@�@���@���@nǿ@�\�@V��@0��@xü@�
�@:Q�@G�@���@�@@Y�KeyAttrFlagsi!�aH���-KeyAttrDataFloatf 



��KeyAttrRefCountiaA�AnimationCurveLx�N;SAnimCurveS7�	DefaultD�?O�KeyVerI�x�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

4�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?-�KeyAttrFlagsi!g�KeyAttrDataFloatf

��KeyAttrRefCountiAnimationCurveL8DN;SAnimCurveS��	DefaultD�?�KeyVerI�8�KeyTimelc�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiAnimationCurveL�gN;SAnimCurveSW	DefaultD`nI�oKeyVerI��KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"O�
KeyValueFloatfb�sK:�HL:��k;�jG?�M�A�S@�s@��7C��C�QEE�/�E�:|D��C��B���A��!C��F���F��{D�SD��B���A�u�C��>B���B�3�F���D��D�LH�p3J�<�L�{LL��I�<�D��C�P&H���J��LH�$fH���I���H��H���I�
rI�5�E��C�H�B��9B�[K@�1@�@�6r=�=��Q=�K8��5���;��DD�M�K��P�Y�L��L���K��P�=.Q�s�N���@�m�7�R12��-�g�,��-�&31��2���2�́7���9�u�9��:��;���;�TC>�f>�g�>�l/@��\A��=�8�-�L,���-�}m:�^�A�aAG�VK���I���F��):��D5�}KeyAttrFlagsi!�aH��-KeyAttrDataFloatf 



�KeyAttrRefCountia	AnimationCurveLȨM;SAnimCurveS[	DefaultDh�
�sKeyVerI��	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"S�
KeyValueFloatfb�@+n��n�p�o��gu��x�N�u��u�\�w���v��2x�!x��>t��q�(�p�a)q��?s�z<x�:�y�7Dx��y�-ry���x�N5{�D�x��y��C�����E��&������B�������_���cz���w�р���R�����<τ�kޅ��L��[��������9?x�a�p�T�k��Rh�dzb��g^�<�[�X�X�h�\�z�d�!�k�P�j���u�N���~����܍��o���^��������8�~���x�9)e�ͪY�8T��T��bV��X��_��a�R�b��h��2k�ܨk��Zl�s%m�W�l��=o�%wn��n��q��r��in�	�\�Q=\��x_���q��i|�
�����݄��y���<p�E�g��KeyAttrFlagsi!�aH��-KeyAttrDataFloatf 



�KeyAttrRefCountia
AnimationCurveLxN;SAnimCurveS_	DefaultD��;�wKeyVerI��KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"W�
KeyValueFloatfb�Tߙ�������b���Jߞ�n\��"К�	���&њ�3��s<��N��E����_��]
��2��vܗ����v���Ut���8��O������I��������a��<��n���ə�y�����yF�����3֨�|���М�Y��z��/6������4��ew��#������cM��e��
���E���-ۘ�Bm������N��A'��߇���7������e��o��z��߾��c���|��E����G��i����ޝ�i���Z����� ����-��Dn��a���f׍������������E�������ԑ�T����C������>Ɩ����n��q)���ȓ�-���H��Ȋ��j����~�.�|�V#~�h���V{���KeyAttrFlagsi!�aH��-KeyAttrDataFloatf 



KeyAttrRefCountiamAnimationCurveL=N;SAnimCurveSc	DefaultD�?{KeyVerI��KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!3KeyAttrDataFloatf

`KeyAttrRefCounti�AnimationCurveLx�M;SAnimCurveS�	DefaultD�?�KeyVerI�KeyTimel/
KeyValueFloatf�?YKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti-AnimationCurveLH�M;SAnimCurveS#	DefaultD�?;KeyVerI�dKeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

 KeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS�	DefaultD ��"��KeyVerI��KeyTimel�
KeyValueFloatf1]�KeyAttrFlagsi!SKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLh�M;SAnimCurveS�	DefaultD�S�3@�KeyVerI�$KeyTimelO
KeyValueFloatf���AyKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiMAnimationCurveL�1N;SAnimCurveSC	DefaultD���*@[KeyVerI��KeyTimel�
KeyValueFloatf�WA�KeyAttrFlagsi!KeyAttrDataFloatf

@KeyAttrRefCounti�AnimationCurveL7N;SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimel
KeyValueFloatf�?9KeyAttrFlagsi!sKeyAttrDataFloatf

�KeyAttrRefCounti
AnimationCurveL�/N;SAnimCurveS	DefaultD�?KeyVerI�DKeyTimelo
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountimAnimationCurveL��M;SAnimCurveSc	DefaultD�?{KeyVerI��KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!3KeyAttrDataFloatf

`KeyAttrRefCounti�AnimationCurveL�kN;SAnimCurveS�	DefaultD J����KeyVerI�KeyTimel/
KeyValueFloatfQR̿YKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti-!AnimationCurveLXKN;SAnimCurveS# 	DefaultD'w˿; KeyVerI�d KeyTimel� 
KeyValueFloatf8�[�� KeyAttrFlagsi!� KeyAttrDataFloatf

 !KeyAttrRefCounti�"AnimationCurveLh�M;SAnimCurveS�!	DefaultD@�!2@�!KeyVerI��!KeyTimel�!
KeyValueFloatfZ
�A"KeyAttrFlagsi!S"KeyAttrDataFloatf

�"KeyAttrRefCounti�#AnimationCurveLX	N;SAnimCurveS�"	DefaultD�?�"KeyVerI�$#KeyTimelO#
KeyValueFloatf�?y#KeyAttrFlagsi!�#KeyAttrDataFloatf

�#KeyAttrRefCountiM%AnimationCurveL(�M;SAnimCurveSC$	DefaultD�?[$KeyVerI��$KeyTimel�$
KeyValueFloatf�?�$KeyAttrFlagsi!%KeyAttrDataFloatf

@%KeyAttrRefCounti�&AnimationCurveLx�M;SAnimCurveS�%	DefaultD�?�%KeyVerI��%KeyTimel&
KeyValueFloatf�?9&KeyAttrFlagsi!s&KeyAttrDataFloatf

�&KeyAttrRefCounti
(AnimationCurveL�N;SAnimCurveS'	DefaultD@!��'KeyVerI�D'KeyTimelo'
KeyValueFloatf
I���'KeyAttrFlagsi!�'KeyAttrDataFloatf

(KeyAttrRefCountim)AnimationCurveL�M;SAnimCurveSc(	DefaultD�y��?{(KeyVerI��(KeyTimel�(
KeyValueFloatf�#�?�(KeyAttrFlagsi!3)KeyAttrDataFloatf

`)KeyAttrRefCounti�*AnimationCurveLX�M;SAnimCurveS�)	DefaultD���;@�)KeyVerI�*KeyTimel/*
KeyValueFloatf���AY*KeyAttrFlagsi!�*KeyAttrDataFloatf

�*KeyAttrRefCounti-,AnimationCurveL��M;SAnimCurveS#+	DefaultD�?;+KeyVerI�d+KeyTimel�+
KeyValueFloatf�?�+KeyAttrFlagsi!�+KeyAttrDataFloatf

 ,KeyAttrRefCounti�-AnimationCurveL�lN;SAnimCurveS�,	DefaultD�?�,KeyVerI��,KeyTimel�,
KeyValueFloatf�?-KeyAttrFlagsi!S-KeyAttrDataFloatf

�-KeyAttrRefCounti�.AnimationCurveL�-N;SAnimCurveS�-	DefaultD�?�-KeyVerI�$.KeyTimelO.
KeyValueFloatf�?y.KeyAttrFlagsi!�.KeyAttrDataFloatf

�.KeyAttrRefCountiM0AnimationCurveLXrN;SAnimCurveSC/	DefaultD`!���[/KeyVerI��/KeyTimel�/
KeyValueFloatfi���/KeyAttrFlagsi!0KeyAttrDataFloatf

@0KeyAttrRefCounti�1AnimationCurveLtN;SAnimCurveS�0	DefaultD˵!@�0KeyVerI��0KeyTimel1
KeyValueFloatfX�
A91KeyAttrFlagsi!s1KeyAttrDataFloatf

�1KeyAttrRefCounti
3AnimationCurveL�1N;SAnimCurveS2	DefaultD�!�-@2KeyVerI�D2KeyTimelo2
KeyValueFloatf
�oA�2KeyAttrFlagsi!�2KeyAttrDataFloatf

3KeyAttrRefCountim4AnimationCurveLx�M;SAnimCurveSc3	DefaultD�?{3KeyVerI��3KeyTimel�3
KeyValueFloatf�?�3KeyAttrFlagsi!34KeyAttrDataFloatf

`4KeyAttrRefCounti�5AnimationCurveL8;N;SAnimCurveS�4	DefaultD�?�4KeyVerI�5KeyTimel/5
KeyValueFloatf�?Y5KeyAttrFlagsi!�5KeyAttrDataFloatf

�5KeyAttrRefCounti-7AnimationCurveL�yN;SAnimCurveS#6	DefaultD�?;6KeyVerI�d6KeyTimel�6
KeyValueFloatf�?�6KeyAttrFlagsi!�6KeyAttrDataFloatf

 7KeyAttrRefCounti�8AnimationCurveLh�M;SAnimCurveS�7	DefaultD��߿�7KeyVerI��7KeyTimel�7
KeyValueFloatf���8KeyAttrFlagsi!S8KeyAttrDataFloatf

�8KeyAttrRefCounti�9AnimationCurveL��M;SAnimCurveS�8	DefaultD ��8KeyVerI�$9KeyTimelO9
KeyValueFloatfu��y9KeyAttrFlagsi!�9KeyAttrDataFloatf

�9KeyAttrRefCountiM;AnimationCurveL�xN;SAnimCurveSC:	DefaultD�/I1@[:KeyVerI��:KeyTimel�:
KeyValueFloatf~I�A�:KeyAttrFlagsi!;KeyAttrDataFloatf

@;KeyAttrRefCounti�<AnimationCurveL8N;SAnimCurveS�;	DefaultD�?�;KeyVerI��;KeyTimel<
KeyValueFloatf�?9<KeyAttrFlagsi!s<KeyAttrDataFloatf

�<KeyAttrRefCounti
>AnimationCurveL��M;SAnimCurveS=	DefaultD�?=KeyVerI�D=KeyTimelo=
KeyValueFloatf�?�=KeyAttrFlagsi!�=KeyAttrDataFloatf

>KeyAttrRefCountim?AnimationCurveLXN;SAnimCurveSc>	DefaultD�?{>KeyVerI��>KeyTimel�>
KeyValueFloatf�?�>KeyAttrFlagsi!3?KeyAttrDataFloatf

`?KeyAttrRefCounti�@AnimationCurveLh�M;SAnimCurveS�?	DefaultD@4���?KeyVerI�@KeyTimel/@
KeyValueFloatf���Y@KeyAttrFlagsi!�@KeyAttrDataFloatf

�@KeyAttrRefCounti-BAnimationCurveL��M;SAnimCurveS#A	DefaultD ���?;AKeyVerI�dAKeyTimel�A
KeyValueFloatf)u�>�AKeyAttrFlagsi!�AKeyAttrDataFloatf

 BKeyAttrRefCounti�CAnimationCurveLH�M;SAnimCurveS�B	DefaultD �m<@�BKeyVerI��BKeyTimel�B
KeyValueFloatf!m�ACKeyAttrFlagsi!SCKeyAttrDataFloatf

�CKeyAttrRefCounti�DAnimationCurveL(uN;SAnimCurveS�C	DefaultD�?�CKeyVerI�$DKeyTimelOD
KeyValueFloatf�?yDKeyAttrFlagsi!�DKeyAttrDataFloatf

�DKeyAttrRefCountiMFAnimationCurveLhYN;SAnimCurveSCE	DefaultD�?[EKeyVerI��EKeyTimel�E
KeyValueFloatf�?�EKeyAttrFlagsi!FKeyAttrDataFloatf

@FKeyAttrRefCounti�GAnimationCurveL8�M;SAnimCurveS�F	DefaultD�?�FKeyVerI��FKeyTimelG
KeyValueFloatf�?9GKeyAttrFlagsi!sGKeyAttrDataFloatf

�GKeyAttrRefCounti
IAnimationCurveL�NN;SAnimCurveSH	DefaultD`�B�?HKeyVerI�DHKeyTimeloH
KeyValueFloatf��?�HKeyAttrFlagsi!�HKeyAttrDataFloatf

IKeyAttrRefCountimJAnimationCurveL(�M;SAnimCurveScI	DefaultD�<g��{IKeyVerI��IKeyTimel�I
KeyValueFloatf�9���IKeyAttrFlagsi!3JKeyAttrDataFloatf

`JKeyAttrRefCounti�KAnimationCurveL��M;SAnimCurveS�J	DefaultD�<�-@�JKeyVerI�KKeyTimel/K
KeyValueFloatf�)nAYKKeyAttrFlagsi!�KKeyAttrDataFloatf

�KKeyAttrRefCounti-MAnimationCurveL�N;SAnimCurveS#L	DefaultD�?;LKeyVerI�dLKeyTimel�L
KeyValueFloatf�?�LKeyAttrFlagsi!�LKeyAttrDataFloatf

 MKeyAttrRefCounti�NAnimationCurveLwN;SAnimCurveS�M	DefaultD�?�MKeyVerI��MKeyTimel�M
KeyValueFloatf�?NKeyAttrFlagsi!SNKeyAttrDataFloatf

�NKeyAttrRefCounti�OAnimationCurveLؕM;SAnimCurveS�N	DefaultD�?�NKeyVerI�$OKeyTimelOO
KeyValueFloatf�?yOKeyAttrFlagsi!�OKeyAttrDataFloatf

�OKeyAttrRefCountiMQAnimationCurveL�DN;SAnimCurveSCP	DefaultD �5�?[PKeyVerI��PKeyTimel�P
KeyValueFloatf��A>�PKeyAttrFlagsi!QKeyAttrDataFloatf

@QKeyAttrRefCounti�RAnimationCurveL�M;SAnimCurveS�Q	DefaultD@P�?�QKeyVerI��QKeyTimelR
KeyValueFloatfb�:=9RKeyAttrFlagsi!sRKeyAttrDataFloatf

�RKeyAttrRefCounti
TAnimationCurveL��N;SAnimCurveSS	DefaultD��E4@SKeyVerI�DSKeyTimeloS
KeyValueFloatf�.�A�SKeyAttrFlagsi!�SKeyAttrDataFloatf

TKeyAttrRefCountimUAnimationCurveL�N;SAnimCurveScT	DefaultD�?{TKeyVerI��TKeyTimel�T
KeyValueFloatf�?�TKeyAttrFlagsi!3UKeyAttrDataFloatf

`UKeyAttrRefCounti�VAnimationCurveL�5N;SAnimCurveS�U	DefaultD�?�UKeyVerI�VKeyTimel/V
KeyValueFloatf�?YVKeyAttrFlagsi!�VKeyAttrDataFloatf

�VKeyAttrRefCounti-XAnimationCurveL�N;SAnimCurveS#W	DefaultD�?;WKeyVerI�dWKeyTimel�W
KeyValueFloatf�?�WKeyAttrFlagsi!�WKeyAttrDataFloatf

 XKeyAttrRefCounti�YAnimationCurveL�N;SAnimCurveS�X	DefaultD�P;�?�XKeyVerI��XKeyTimel�X
KeyValueFloatf��Q?YKeyAttrFlagsi!SYKeyAttrDataFloatf

�YKeyAttrRefCounti�ZAnimationCurveL��M;SAnimCurveS�Y	DefaultD@?^ÿ�YKeyVerI�$ZKeyTimelOZ
KeyValueFloatf���yZKeyAttrFlagsi!�ZKeyAttrDataFloatf

�ZKeyAttrRefCountiM\AnimationCurveL(�M;SAnimCurveSC[	DefaultD ��@@[[KeyVerI��[KeyTimel�[
KeyValueFloatf1B�[KeyAttrFlagsi!\KeyAttrDataFloatf

@\KeyAttrRefCounti�]AnimationCurveLx�M;SAnimCurveS�\	DefaultD�?�\KeyVerI��\KeyTimel]
KeyValueFloatf�?9]KeyAttrFlagsi!s]KeyAttrDataFloatf

�]KeyAttrRefCounti
_AnimationCurveL�zN;SAnimCurveS^	DefaultD�?^KeyVerI�D^KeyTimelo^
KeyValueFloatf�?�^KeyAttrFlagsi!�^KeyAttrDataFloatf

_KeyAttrRefCountim`AnimationCurveL�M;SAnimCurveSc_	DefaultD�?{_KeyVerI��_KeyTimel�_
KeyValueFloatf�?�_KeyAttrFlagsi!3`KeyAttrDataFloatf

``KeyAttrRefCounti�aAnimationCurveLH.N;SAnimCurveS�`	DefaultD ��?�`KeyVerI�aKeyTimel/a
KeyValueFloatf�`�?YaKeyAttrFlagsi!�aKeyAttrDataFloatf

�aKeyAttrRefCounti-cAnimationCurveL��M;SAnimCurveS#b	DefaultD���-�;bKeyVerI�dbKeyTimel�b
KeyValueFloatf$�o��bKeyAttrFlagsi!�bKeyAttrDataFloatf

 cKeyAttrRefCounti�dAnimationCurveL�~N;SAnimCurveS�c	DefaultD`�5@�cKeyVerI��cKeyTimel�c
KeyValueFloatfˮ�@dKeyAttrFlagsi!SdKeyAttrDataFloatf

�dKeyAttrRefCounti�eAnimationCurveL|N;SAnimCurveS�d	DefaultD�?�dKeyVerI�$eKeyTimelOe
KeyValueFloatf�?yeKeyAttrFlagsi!�eKeyAttrDataFloatf

�eKeyAttrRefCountiMgAnimationCurveL�N;SAnimCurveSCf	DefaultD�?[fKeyVerI��fKeyTimel�f
KeyValueFloatf�?�fKeyAttrFlagsi!gKeyAttrDataFloatf

@gKeyAttrRefCounti�hAnimationCurveLH�M;SAnimCurveS�g	DefaultD�?�gKeyVerI��gKeyTimelh
KeyValueFloatf�?9hKeyAttrFlagsi!shKeyAttrDataFloatf

�hKeyAttrRefCounti
jAnimationCurveL��M;SAnimCurveSi	DefaultD����?iKeyVerI�DiKeyTimeloi
KeyValueFloatfO<6?�iKeyAttrFlagsi!�iKeyAttrDataFloatf

jKeyAttrRefCountimkAnimationCurveL�N;SAnimCurveScj	DefaultD�zxɿ{jKeyVerI��jKeyTimel�j
KeyValueFloatf��K��jKeyAttrFlagsi!3kKeyAttrDataFloatf

`kKeyAttrRefCounti�lAnimationCurveLșM;SAnimCurveS�k	DefaultD�
5@�kKeyVerI�lKeyTimel/l
KeyValueFloatfh�AYlKeyAttrFlagsi!�lKeyAttrDataFloatf

�lKeyAttrRefCounti-nAnimationCurveL�N;SAnimCurveS#m	DefaultD�?;mKeyVerI�dmKeyTimel�m
KeyValueFloatf�?�mKeyAttrFlagsi!�mKeyAttrDataFloatf

 nKeyAttrRefCounti�oAnimationCurveLX�M;SAnimCurveS�n	DefaultD�?�nKeyVerI��nKeyTimel�n
KeyValueFloatf�?oKeyAttrFlagsi!SoKeyAttrDataFloatf

�oKeyAttrRefCounti�pAnimationCurveL�M;SAnimCurveS�o	DefaultD�?�oKeyVerI�$pKeyTimelOp
KeyValueFloatf�?ypKeyAttrFlagsi!�pKeyAttrDataFloatf

�pKeyAttrRefCountiMrAnimationCurveL�KN;SAnimCurveSCq	DefaultD�!��?[qKeyVerI��qKeyTimel�q
KeyValueFloatf�=?�qKeyAttrFlagsi!rKeyAttrDataFloatf

@rKeyAttrRefCounti�sAnimationCurveL(�M;SAnimCurveS�r	DefaultD�C���rKeyVerI��rKeyTimels
KeyValueFloatfWҿ9sKeyAttrFlagsi!ssKeyAttrDataFloatf

�sKeyAttrRefCounti
uAnimationCurveLXoN;SAnimCurveSt	DefaultD�5@tKeyVerI�DtKeyTimelot
KeyValueFloatf���A�tKeyAttrFlagsi!�tKeyAttrDataFloatf

uKeyAttrRefCountimvAnimationCurveL(oN;SAnimCurveScu	DefaultD�?{uKeyVerI��uKeyTimel�u
KeyValueFloatf�?�uKeyAttrFlagsi!3vKeyAttrDataFloatf

`vKeyAttrRefCounti�wAnimationCurveLX�M;SAnimCurveS�v	DefaultD�?�vKeyVerI�wKeyTimel/w
KeyValueFloatf�?YwKeyAttrFlagsi!�wKeyAttrDataFloatf

�wKeyAttrRefCounti-yAnimationCurveL(QN;SAnimCurveS#x	DefaultD�?;xKeyVerI�dxKeyTimel�x
KeyValueFloatf�?�xKeyAttrFlagsi!�xKeyAttrDataFloatf

 yKeyAttrRefCounti�zAnimationCurveLX�N;SAnimCurveS�y	DefaultD��5@�yKeyVerI��yKeyTimel�y
KeyValueFloatf^��@zKeyAttrFlagsi!SzKeyAttrDataFloatf

�zKeyAttrRefCounti�{AnimationCurveLx�M;SAnimCurveS�z	DefaultD�� ��zKeyVerI�${KeyTimelO{
KeyValueFloatf�t�y{KeyAttrFlagsi!�{KeyAttrDataFloatf

�{KeyAttrRefCountiM}AnimationCurveL(fN;SAnimCurveSC|	DefaultD`U(�?[|KeyVerI��|KeyTimel�|
KeyValueFloatf�BQ>�|KeyAttrFlagsi!}KeyAttrDataFloatf

@}KeyAttrRefCounti�~AnimationCurveL��M;SAnimCurveS�}	DefaultD�?�}KeyVerI��}KeyTimel~
KeyValueFloatf�?9~KeyAttrFlagsi!s~KeyAttrDataFloatf

�~KeyAttrRefCounti
�AnimationCurveL��M;SAnimCurveS	DefaultD�?KeyVerI�DKeyTimelo
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveLX�M;SAnimCurveSc�	DefaultD�?{�KeyVerI���KeyTimelπ
KeyValueFloatf�?��KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti͂AnimationCurveLX�M;SAnimCurveSÁ	DefaultD c��?ہKeyVerI��KeyTimel/�
KeyValueFloatf��?Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti-�AnimationCurveL.N;SAnimCurveS#�	DefaultD b�!�;�KeyVerI�d�KeyTimel��
KeyValueFloatf�
���KeyAttrFlagsi!�KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL�dN;SAnimCurveS��	DefaultD�q�ֿ��KeyVerI�ĄKeyTimel�
KeyValueFloatf�����KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL8�M;SAnimCurveS�	DefaultD�?��KeyVerI�$�KeyTimelO�
KeyValueFloatf�?y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiM�AnimationCurveL�eN;SAnimCurveSC�	DefaultD�?[�KeyVerI���KeyTimel��
KeyValueFloatf�?هKeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel�
KeyValueFloatf�?9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti
�AnimationCurveLȜM;SAnimCurveS�	DefaultD C@�KeyVerI�D�KeyTimelo�
KeyValueFloatf��@��KeyAttrFlagsi!ӊKeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveL�JN;SAnimCurveSc�	DefaultD�99�{�KeyVerI���KeyTimelϋ
KeyValueFloatf\�����KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti͍AnimationCurveLh}N;SAnimCurveSÌ	DefaultD�w�یKeyVerI��KeyTimel/�
KeyValueFloatf/�s�Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti-�AnimationCurveL�{N;SAnimCurveS#�	DefaultD�?;�KeyVerI�d�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD�?��KeyVerI�ďKeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS�	DefaultD�?��KeyVerI�$�KeyTimelO�
KeyValueFloatf�?y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveLh�M;SAnimCurveSC�	DefaultD �4�?[�KeyVerI�ēUKeyTimel)H�~�[P����{JHy�����&�vX�@���s�9Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�C]!0� }�@�����4���h3�n�J��0&`�с��X9X+�����(�LP�f��%*���_H#�����
KeyValueFloatf)�I�q?�p?�l?O�l?d�m?�o?��p?0Pr?�s?O>t?"	t?��q?�o?�q?��t?��u?&sv?��w?6Jy?�}z?�_|?��?��?�7�?�`�?耀?�L~?
^}?��}?�e|?�7z?\�t?��s?�t?exs?�	q?�o?byp??|r?vv?�w?��KeyAttrFlagsi!�aH��-KeyAttrDataFloatf 



8�KeyAttrRefCounti(��AnimationCurveL(*N;SAnimCurveS��	DefaultD(�򿳕KeyVerI��EKeyTimel'8�~�[P����{JHy�����&�vX�@���s�98qf���)M�ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO����ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[���`�с.����X9�(�LP�f�ϗ�
KeyValueFloatf'�@ٗ�)閿����������B����Z�����{}��� ��_S��j��e��ze��(��)؝��螿'	��������娣�����FP���壿^���,蠿Q�������q���z�������Z��J���X��͂��C`�������ɚ�̭����KeyAttrFlagsi!�aH�G�-KeyAttrDataFloatf 



x�KeyAttrRefCounti&9�AnimationCurveLxRN;SAnimCurveSۘ	DefaultD��"��KeyVerI�D�=KeyTimelF0�~�[P����{J��
oHy�����&�vX�@���s�9��8qf�(i���sxf�� �E+�c	�Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*Б�dxb� �%�
�wp���p/�~� `�A� V!��ȱ!X�
"Oi"��%
KeyValueFloatfF�e�1��������,��%��K�j}�+����������c��'�������6l��l�t �W���.�������@��|�t��<���	�Bd�f��������]��O��^{��G�#�������lj��������
��@��;�� f�f�����QO������0��!�l#�^2��4��`�Py�*~����������R�����e�%$���KeyAttrFlagsi!�aH���-KeyAttrDataFloatf 



,�KeyAttrRefCountiE��AnimationCurveL��N;SAnimCurveS��	DefaultD�?��KeyVerI�НKeyTimel��
KeyValueFloatf�?%�KeyAttrFlagsi!_�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLHCN;SAnimCurveS�	DefaultD�?�KeyVerI�0�KeyTimel[�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiY�AnimationCurveL(�M;SAnimCurveSO�	DefaultD�?g�KeyVerI���KeyTimel��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

L�KeyAttrRefCounti]�AnimationCurveLhhN;SAnimCurveS��	DefaultD�g���ǡKeyVerI���KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�=ä�������_�ε!�ћ�hV��ߡ��|���9�=��O>�
�>��>U�?*�>ޅ�>��>��=�9��`������L@��vz������(��_��˜|��'S�Hu<�m����`�*�=��M>���=]RI<�S��~P���m��(�{/�Z (�H`�#.ݾƑ���~B�.sk<ǖ>ˢ
?U�C?��v?n�?�o�?�|�?&�?U�?7��?�U�?�Ʈ?�]�?�
�?u�?;��?)�?�|�?LO@P�@��@$�@�x@6�
@zk	@��@ o@��@�@L @��	@��@E@��@vr@L�@ڰ�?���?8-�?c:�?�i�?���?�h�?��?�m�?N�?���?��?���?0��?G��?{�?D�?զKeyAttrFlagsi!�aH��-KeyAttrDataFloatf 



P�KeyAttrRefCountiaa�AnimationCurveL��M;SAnimCurveS��	DefaultDx� @˧KeyVerI���KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb��A��A�u�@h��@��@��@m?�@�A�@���@���@q��@`��@��@�l�@P3�@_��@���@Vj�@�6�@���@O��@�$�@�,�@�r�@���@���@'��@���@���@CP�@/�@���@��@�n�@1y�@o��@d��@#�@W �@
�@ܜ�@�#�@�:�@���@��@l�@>�@�@�@��@��@��@���@Ӓ�@@��@7��@���@怿@��@!ѫ@3��@�@�S�@П�@:�@ž�@��@V��@�G�@}��@��@��@���@?@�@&8�@<��@�L�@���@|�@5+�@�@�@���@B:�@p��@aY�@X\�@�>�@+��@�-�@�
�@I��@U��@!�@��@���@D��@��@o��@���@٬KeyAttrFlagsi!�aH�#�-KeyAttrDataFloatf 



T�KeyAttrRefCountiae�AnimationCurveLx+N;SAnimCurveS��	DefaultD��8R�ϭKeyVerI��KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�~Ƒ�w��K��呒�.��~e�ד�[/�¾{��ɔ¶���Y�����Y���ǔ����Z
�”���
��u���@a��+��J��œ2�€��ʯ������eՐ›���\��WޑՒ�Sޓ�������|��� h��cC��6-��_.���.��\��q�����‰5��T��¤֑��Y�����
�¹
��!���Fؐ�g�����bm��%��!9��h	�º��rՍ�R��
�¥y���$��k�� ���Z�����ŽI���h��ޚ�����6��5����� ���p�����µڒ�ַ��9���Ӓ�T��LU��)T��51��-ג����h���e���Uv���k���_���\��<e��$|��+��ݲKeyAttrFlagsi!�aH�'�-KeyAttrDataFloatf 



X�KeyAttrRefCountiaŴAnimationCurveL��M;SAnimCurveS��	DefaultD�?ӳKeyVerI���KeyTimel'�
KeyValueFloatf�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti%�AnimationCurveL�&N;SAnimCurveS�	DefaultD�?3�KeyVerI�\�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL8�M;SAnimCurveS{�	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveLX�M;SAnimCurveS۷	DefaultD �_4@�KeyVerI�$�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"Ӽ�
KeyValueFloatfb����A1\�A���A��A�O�AE.�A�m�A�8�A���A s�A(��A��AT�AA.�A7��A ��A�A}��As�Aki�A4�A=ĤA���A
,�A�y�A�ԝA�ܚA{h�A,3�A;��AC�A���A
B�ANZ�AT"�A�O�Ar��A|�AS��AНAG�ABN�AXO�Aǵ�A�Z�A���A���Aڝ�A��Au�A��A�w�Ab۲AZO�A��A��A���A_L�A���A�~�A"�AZ��A,h�AQ�A���A,��A<�A�+�A�Q�AG�A���A�(�A{��AJ��A�6�A�J�APϳAjݴA"̴AJ��A��Aޮ�A�2�A���A���A
�A�L�A���A{ٱA�	�AEݰA�U�A���A;w�A��A�:�AѳA$�A�KeyAttrFlagsi!�aH�K�-KeyAttrDataFloatf 



|�KeyAttrRefCountia��AnimationCurveL��M;SAnimCurveS߽	DefaultD��'���KeyVerI�(�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�>=���:�/�4��2���1�2*0��
0�mD1���2��`4�"5��m5���5�5��-2�sZ.���+��)�[�'�#n'�$'��}(���,�}1�[�3�v�6��nA�YwO�H�W�ǛZ��JV�EOF��4��J(���$���%��+(�M�*�-S-��.���.���/���1�!6��:��+A�q�I���Q���W��[��U\���Z��U�u{M�F>�Zc8�Ԝ4�&<2��2���2�V�4��E3��I1��#0�Z2���4��6��6���6���6��6��5�@s4�e-6�y"7�Ȏ5�t�3��3�}J3���2���2�r1�O�/��'/�$�.��G/�O1��2�"m1�ؠ/���+�2m*�g�(��-'��(��)��.�~�0��KeyAttrFlagsi!�aH�O�-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveL��M;SAnimCurveS��	DefaultD�'����KeyVerI�,�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb�>!���z���>��ݩ�����\Ͱ�����ί��]���5��b��S˰��_��d+���8��?��4M���o��E��������غ������#��zΰ��������	M�����|������ZӚ��h��5����������)d���/�����ִ�oŲ���I]��r����7��c���)Ǧ���������Ԝ�Ց������n��!%��̥�����׷��_��+	����������nf�����������/ż�cK��TN���q��f����C��B���k��q~��4{������EX��pʽ����j����������V��q��O>��w���O��g���ھ��q����������������l]��J������3��i���	�KeyAttrFlagsi!�aH�S�-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveL�N;SAnimCurveS��	DefaultD�?��KeyVerI�(�KeyTimelS�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiQ�AnimationCurveL�?N;SAnimCurveSG�	DefaultD�?_�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveLN;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLȆN;SAnimCurveS�	DefaultD�� ��KeyVerI�P�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"���
KeyValueFloatfb��t�m��w0�\F���	�!	�l	��y�f<�0�������(��O���m��p���r��X:��y-���-���H������&����?�c�������<��_��s��u�����O���i��~��a��b�%s�������/�������
��hK��������������h�������-��'���>���Қ�����&����a��ӝ���G������Y���
���_�������[���o���<��s���U���F������/5��B���a���X(��x��������-���i���5��5����W������������������������7p�������p���L��UI���r��Hs��@������������d��-�KeyAttrFlagsi!�aH�w�-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveLHN;SAnimCurveS�	DefaultD@�J@#�KeyVerI�T�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"��
KeyValueFloatfb��U�@T��@c��@�@]��@���@�v�@'��@t��@ب�@9y�@d8�@�w�@w�@V��@R$�@�j�@�4�@���@b�@�Ӽ@��@���@�k�@t�@�>�@��@F�@߫�@Z�@�@�Ŵ@�G�@v�@�S�@f��@z��@w|�@��@�J�@�	�@j��@R��@+K�@���@�D�@9
�@Q΋@�)�@铋@��@�l�@�t�@�C�@ỗ@ǹ�@��@��@�Z�@�
�@�@I�@�¢@��@O��@�R�@�@��@)ќ@��@��@Z՛@�ɒ@���@�9�@���@(6�@[�@I�@��@�-�@��@�-�@;�@�U�@�i�@���@��@Tԑ@���@��@5g�@���@B�@�@�L�@�Õ@�c�@1�KeyAttrFlagsi!�aH�{�-KeyAttrDataFloatf 



��KeyAttrRefCountia��AnimationCurveLHLN;SAnimCurveS�	DefaultD���?'�KeyVerI�X�KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"��
KeyValueFloatfb����>Sg�>�0�=�N>uP-?5�?�=�?I<�?<v�?	7�?��?�*�?
_�?��j?�:?Q�?���>4/�>L�>9P
?��t?+˝?:��?��?r��?,A�?P]�?*F�?å�?�ʻ?\@�?��?��?i&
@e�@N�@b�:@VS@��X@T�U@��V@x�b@�Nf@�S@��D@DO:@��!@�@�i�?���?���?U�?_-�?o�G?��?)?�?]�?�w6?,�C?��H?=B?%d4?/�>���>��b>�'�>���>��>��>��>/Q(?'ŧ?�I?c>5�̾*|?��d=-�?G$;?�+'?^�x?���?J�@PD@C9@V"@�t�?��?�=�?���?a��?.Q�?(��?�޵?�p�?F~�?�֛?5�KeyAttrFlagsi!�aH��-KeyAttrDataFloatf 



��KeyAttrRefCountia�AnimationCurveL�N;SAnimCurveS�	DefaultD�?+�KeyVerI�T�KeyTimel�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti}�AnimationCurveL�gN;SAnimCurveSs�	DefaultD�?��KeyVerI���KeyTimel��
KeyValueFloatf�?	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel?�
KeyValueFloatf�?i�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS3�	DefaultD�0��K�KeyVerI����KeyTimelx�ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }G�I
KeyValueFloatf<��6�T6��3=�WNY��s�$��
k��4갿\�ɿ]C���wR�_t��6��{�q�KeyAttrFlagsi�aH���KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLH�N;SAnimCurveS;�	DefaultD@�t2�S�KeyVerI���uKeyTimel
h�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!7�A
KeyValueFloatf
4ť��4�������t��*]���9�����]Ӓ�͡��@y��k\��rK��oD��a�KeyAttrFlagsi�aH���KeyAttrDataFloatf

��KeyAttrRefCounti
��AnimationCurveLH"N;SAnimCurveS+�	DefaultD �3�C�KeyVerI����KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@��K�M
KeyValueFloatf@������6��>	���	���������o��4������&���~��}{��bz��4z��4z�u�KeyAttrFlagsi�aH���KeyAttrDataFloatf

��KeyAttrRefCountiI�AnimationCurveLX�M;SAnimCurveS?�	DefaultD�?W�KeyVerI���KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

<�KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel�
KeyValueFloatf�?5�KeyAttrFlagsi!o�KeyAttrDataFloatf

��KeyAttrRefCounti	�AnimationCurveL�M;SAnimCurveS��	DefaultD�?�KeyVerI�@�KeyTimelk�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountii�AnimationCurveLhnN;SAnimCurveS_�	DefaultD �F@w�KeyVerI���KeyTimel��
KeyValueFloatfI6�@��KeyAttrFlagsi!/�KeyAttrDataFloatf

\�KeyAttrRefCounti��AnimationCurveL�mN;SAnimCurveS��	DefaultD`\�?��KeyVerI��KeyTimel+�
KeyValueFloatfグ?U�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS�	DefaultD`o63�7�KeyVerI����KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@��?�M
KeyValueFloatf@{�������wN��x���4���(D�������������&���Ά�������Ӟ��������i�KeyAttrFlagsi�aH���KeyAttrDataFloatf

��KeyAttrRefCounti=�AnimationCurveL�N;SAnimCurveS3�	DefaultD�?K�KeyVerI�t�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��
KeyValueFloatf�?)�KeyAttrFlagsi!c�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD�?�KeyVerI�4�KeyTimel_�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti]�AnimationCurveLx|N;SAnimCurveSS�	DefaultD ,a
@k�KeyVerI���KeyTimel��
KeyValueFloatfa	S@��KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD M��?��KeyVerI���KeyTimel�
KeyValueFloatfi�
?I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL(EN;SAnimCurveS�	DefaultD�V�1�+�KeyVerI�T�KeyTimel�
KeyValueFloatf�
����KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti}�AnimationCurveL�
N;SAnimCurveSs�	DefaultD�?��KeyVerI���KeyTimel��
KeyValueFloatf�?	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCounti��AnimationCurveL�]N;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel?�
KeyValueFloatf�?i�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti=�AnimationCurveL8�M;SAnimCurveS3�	DefaultD�?K�KeyVerI�t�KeyTimel��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCounti-	AnimationCurveLH+N;SAnimCurveS��	DefaultD`���?��KeyVerI�4	uKeyTimel
h�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!�	A
KeyValueFloatf
4��>#��>�Y�>{��>�9�>E��>!l�>��x>��Y>��?>1u/>p�%>y#>�	KeyAttrFlagsi�aH��	KeyAttrDataFloatf

 	KeyAttrRefCounti
	AnimationCurveL�M;SAnimCurveS�		DefaultD`q� ��	KeyVerI�	mKeyTimel`�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę�s	=
KeyValueFloatf0��Ӈ�_X��,����U������O�������כ��	KeyAttrFlagsi�aH��	KeyAttrDataFloatf

	KeyAttrRefCounti%	AnimationCurveLhVN;SAnimCurveSg		DefaultD�<�0�	KeyVerI� 	�KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@���	M
KeyValueFloatf@�م�����k�����=ʁ�?��'�z�1�t��m� �g���b��^��\���[���[���[��	KeyAttrFlagsi�aH��	KeyAttrDataFloatf

	KeyAttrRefCounti�	AnimationCurveLX�M;SAnimCurveS{		DefaultD�?�	KeyVerI��	KeyTimel�	
KeyValueFloatf�?	KeyAttrFlagsi!K	KeyAttrDataFloatf

x	KeyAttrRefCounti�	AnimationCurveL�WN;SAnimCurveS�		DefaultD�?�	KeyVerI�	KeyTimelG	
KeyValueFloatf�?q	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCountiE		AnimationCurveLXTN;SAnimCurveS;		DefaultD�?S	KeyVerI�|	KeyTimel�	
KeyValueFloatf�?�	KeyAttrFlagsi!		KeyAttrDataFloatf

8		KeyAttrRefCounti�
	AnimationCurveL��M;SAnimCurveS�			DefaultDh�?�		KeyVerI��		KeyTimel
	
KeyValueFloatf�@�?1
	KeyAttrFlagsi!k
	KeyAttrDataFloatf

�
	KeyAttrRefCounti5	AnimationCurveL�.N;SAnimCurveS�
		DefaultD�i
�?	KeyVerI�\	5KeyTimel(P��/�P���K��
@ʋV���	!
KeyValueFloatf�48?Ѭ7?=5?F$4?��2?�	KeyAttrFlagsi�aH��	KeyAttrDataFloatf

(	KeyAttrRefCountiI	AnimationCurveL8�M;SAnimCurveS�		DefaultD`D3��	KeyVerI�D
	�KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@���
	M
KeyValueFloatf@#������x������(����4��VԐ�dō�Ï�������%��|]���H���с����������
	KeyAttrFlagsi�aH�	KeyAttrDataFloatf

<	KeyAttrRefCounti�	AnimationCurveLnN;SAnimCurveS�		DefaultD�?�	KeyVerI��	KeyTimel	
KeyValueFloatf�?5	KeyAttrFlagsi!o	KeyAttrDataFloatf

�	KeyAttrRefCounti		AnimationCurveL��M;SAnimCurveS�		DefaultD�?	KeyVerI�@	KeyTimelk	
KeyValueFloatf�?�	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCountii	AnimationCurveL��M;SAnimCurveS_		DefaultD�?w	KeyVerI��	KeyTimel�	
KeyValueFloatf�?�	KeyAttrFlagsi!/	KeyAttrDataFloatf

\	KeyAttrRefCounti�	AnimationCurveL�~N;SAnimCurveS�		DefaultD����?�	KeyVerI�	KeyTimel+	
KeyValueFloatf�?U	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti)	AnimationCurveL�uN;SAnimCurveS		DefaultD�T$�?7	KeyVerI�`	KeyTimel�	
KeyValueFloatf�"�>�	KeyAttrFlagsi!�	KeyAttrDataFloatf

	KeyAttrRefCounti�	AnimationCurveLN;SAnimCurveS		DefaultD��1��	KeyVerI��	KeyTimel�	
KeyValueFloatfgp��	KeyAttrFlagsi!O	KeyAttrDataFloatf

|	KeyAttrRefCounti�	AnimationCurveL�iN;SAnimCurveS�		DefaultD�?�	KeyVerI� 	KeyTimelK	
KeyValueFloatf�?u	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCountiI	AnimationCurveL�N;SAnimCurveS?		DefaultD�?W	KeyVerI��	KeyTimel�	
KeyValueFloatf�?�	KeyAttrFlagsi!	KeyAttrDataFloatf

<	KeyAttrRefCounti�	AnimationCurveL��M;SAnimCurveS�		DefaultD�?�	KeyVerI��	KeyTimel	
KeyValueFloatf�?5	KeyAttrFlagsi!o	KeyAttrDataFloatf

�	KeyAttrRefCounti�	AnimationCurveLHON;SAnimCurveS�		DefaultD��>�	KeyVerI��	�KeyTimelx�ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }	I
KeyValueFloatf<��i�cAj���f��kY�CM�F@��.��)���@�վ����C[���w���������=	KeyAttrFlagsi�aH�w	KeyAttrDataFloatf

�	KeyAttrRefCounti	AnimationCurveL��M;SAnimCurveS		DefaultD?�?	KeyVerI�H	KeyTimels	
KeyValueFloatfx��>�	KeyAttrFlagsi!�	KeyAttrDataFloatf

	KeyAttrRefCounti% 	AnimationCurveL��M;SAnimCurveSg		DefaultD���2�	KeyVerI� 	�KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@���	M
KeyValueFloatf@�ܔ����t������N�� C�������R����σ�%e���F��$}��9|��|��|��	KeyAttrFlagsi�aH��	KeyAttrDataFloatf

 	KeyAttrRefCounti�!	AnimationCurveL��M;SAnimCurveS{ 		DefaultD�?� 	KeyVerI�� 	KeyTimel� 	
KeyValueFloatf�?!	KeyAttrFlagsi!K!	KeyAttrDataFloatf

x!	KeyAttrRefCounti�"	AnimationCurveL��N;SAnimCurveS�!		DefaultD�?�!	KeyVerI�"	KeyTimelG"	
KeyValueFloatf�?q"	KeyAttrFlagsi!�"	KeyAttrDataFloatf

�"	KeyAttrRefCountiE$	AnimationCurveLhN;SAnimCurveS;#		DefaultD�?S#	KeyVerI�|#	KeyTimel�#	
KeyValueFloatf�?�#	KeyAttrFlagsi!$	KeyAttrDataFloatf

8$	KeyAttrRefCounti�%	AnimationCurveLh�M;SAnimCurveS�$		DefaultD��F꿳$	KeyVerI��$	KeyTimel%	
KeyValueFloatf<7R�1%	KeyAttrFlagsi!k%	KeyAttrDataFloatf

�%	KeyAttrRefCounti'	AnimationCurveL��N;SAnimCurveS�%		DefaultD�%lտ&	KeyVerI�<&	KeyTimelg&	
KeyValueFloatf.a���&	KeyAttrFlagsi!�&	KeyAttrDataFloatf

�&	KeyAttrRefCounti)	AnimationCurveLxN;SAnimCurveS['		DefaultD��8�s'	KeyVerI�(	�KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@��{(	M
KeyValueFloatf@�����
�������������H�����ϸ�����B���� ���U���>��Ǭ�>���>����(	KeyAttrFlagsi�aH��(	KeyAttrDataFloatf

)	KeyAttrRefCountiy*	AnimationCurveLH�M;SAnimCurveSo)		DefaultD�?�)	KeyVerI��)	KeyTimel�)	
KeyValueFloatf�?*	KeyAttrFlagsi!?*	KeyAttrDataFloatf

l*	KeyAttrRefCounti�+	AnimationCurveLxsN;SAnimCurveS�*		DefaultD�?�*	KeyVerI�+	KeyTimel;+	
KeyValueFloatf�?e+	KeyAttrFlagsi!�+	KeyAttrDataFloatf

�+	KeyAttrRefCounti9-	AnimationCurveL��M;SAnimCurveS/,		DefaultD�?G,	KeyVerI�p,	KeyTimel�,	
KeyValueFloatf�?�,	KeyAttrFlagsi!�,	KeyAttrDataFloatf

,-	KeyAttrRefCounti�.	AnimationCurveLhSN;SAnimCurveS�-		DefaultD`Cῧ-	KeyVerI��-	KeyTimel�-	
KeyValueFloatf#
�%.	KeyAttrFlagsi!_.	KeyAttrDataFloatf

�.	KeyAttrRefCounti�/	AnimationCurveL�SN;SAnimCurveS�.		DefaultD`�4ƿ/	KeyVerI�0/	KeyTimel[/	
KeyValueFloatfۧ1��/	KeyAttrFlagsi!�/	KeyAttrDataFloatf

�/	KeyAttrRefCountiY1	AnimationCurveLX�N;SAnimCurveSO0		DefaultD@��6�g0	KeyVerI��0	KeyTimel�0	
KeyValueFloatfz����0	KeyAttrFlagsi!1	KeyAttrDataFloatf

L1	KeyAttrRefCounti�2	AnimationCurveLH^N;SAnimCurveS�1		DefaultD�?�1	KeyVerI��1	KeyTimel2	
KeyValueFloatf�?E2	KeyAttrFlagsi!2	KeyAttrDataFloatf

�2	KeyAttrRefCounti4	AnimationCurveL��M;SAnimCurveS3		DefaultD�?'3	KeyVerI�P3	KeyTimel{3	
KeyValueFloatf�?�3	KeyAttrFlagsi!�3	KeyAttrDataFloatf

4	KeyAttrRefCountiy5	AnimationCurveLh�M;SAnimCurveSo4		DefaultD�?�4	KeyVerI��4	KeyTimel�4	
KeyValueFloatf�?5	KeyAttrFlagsi!?5	KeyAttrDataFloatf

l5	KeyAttrRefCounti�7	AnimationCurveL��M;SAnimCurveS�5		DefaultD�[s��5	KeyVerI��6	�KeyTimelx�ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�6	I
KeyValueFloatf<ޚ3� �3��2��"0���-��*�?S'�7�"����������e���	����
7	KeyAttrFlagsi�aH�G7	KeyAttrDataFloatf

t7	KeyAttrRefCountiq9	AnimationCurveL�/N;SAnimCurveS�7		DefaultD@1�(@�7	KeyVerI�x8	uKeyTimel
h�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!�8	A
KeyValueFloatf
4��GAG}GAJ-GA��FA�FA�FA�dEA>�DA�DA�CA�(CA��BA��BA�8	KeyAttrFlagsi�aH�79	KeyAttrDataFloatf

d9	KeyAttrRefCounti
�;	AnimationCurveL��M;SAnimCurveS�9		DefaultD�$��9	KeyVerI��:	�KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@���:	M
KeyValueFloatf@�&��$&�#/%�\m!�t���W��t�+�[���z�����������{5����������;	KeyAttrFlagsi�aH�K;	KeyAttrDataFloatf

x;	KeyAttrRefCounti�<	AnimationCurveLX�M;SAnimCurveS�;		DefaultD�?�;	KeyVerI�<	KeyTimelG<	
KeyValueFloatf�?q<	KeyAttrFlagsi!�<	KeyAttrDataFloatf

�<	KeyAttrRefCountiE>	AnimationCurveLx.N;SAnimCurveS;=		DefaultD�?S=	KeyVerI�|=	KeyTimel�=	
KeyValueFloatf�?�=	KeyAttrFlagsi!>	KeyAttrDataFloatf

8>	KeyAttrRefCounti�?	AnimationCurveL(�N;SAnimCurveS�>		DefaultD�?�>	KeyVerI��>	KeyTimel?	
KeyValueFloatf�?1?	KeyAttrFlagsi!k?	KeyAttrDataFloatf

�?	KeyAttrRefCountiA	AnimationCurveL�N;SAnimCurveS�?		DefaultD��M �@	KeyVerI�L@	%KeyTimelHNAC
���
�HO�@	
KeyValueFloatfQ��;��ȯ��@	KeyAttrFlagsi�aH��@	KeyAttrDataFloatf

A	KeyAttrRefCounti�B	AnimationCurveL�pN;SAnimCurveSsA		DefaultD@����A	KeyVerI��A	MKeyTimel@��}�HNAC
���
�K��
@ʋV�HO���8F�i3B	-
KeyValueFloatf ���
a�
����#�����[��]B	KeyAttrFlagsi�aH��B	KeyAttrDataFloatf

�B	KeyAttrRefCounti�D	AnimationCurveL�FN;SAnimCurveS'C		DefaultD`6&7�?C	KeyVerI��C	�KeyTimel��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@��GD	M
KeyValueFloatf@�1��~?��pǸ�L���A���y����������ê�wƧ�oN�������k�����?��?��qD	KeyAttrFlagsi�aH��D	KeyAttrDataFloatf

�D	KeyAttrRefCountiEF	AnimationCurveLxFN;SAnimCurveS;E		DefaultD�?SE	KeyVerI�|E	KeyTimel�E	
KeyValueFloatf�?�E	KeyAttrFlagsi!F	KeyAttrDataFloatf

8F	KeyAttrRefCounti�G	AnimationCurveL�bN;SAnimCurveS�F		DefaultD�?�F	KeyVerI��F	KeyTimelG	
KeyValueFloatf�?1G	KeyAttrFlagsi!kG	KeyAttrDataFloatf

�G	KeyAttrRefCountiI	AnimationCurveL�M;SAnimCurveS�G		DefaultD�?H	KeyVerI�<H	KeyTimelgH	
KeyValueFloatf�?�H	KeyAttrFlagsi!�H	KeyAttrDataFloatf

�H	KeyAttrRefCountieJ	AnimationCurveL��M;SAnimCurveS[I		DefaultD t�sI	KeyVerI��I	KeyTimel�I	
KeyValueFloatf�x��I	KeyAttrFlagsi!+J	KeyAttrDataFloatf

XJ	KeyAttrRefCounti�K	AnimationCurveLH�M;SAnimCurveS�J		DefaultD���?�J	KeyVerI��J	KeyTimel'K	
KeyValueFloatf�f?QK	KeyAttrFlagsi!�K	KeyAttrDataFloatf

�K	KeyAttrRefCounti%M	AnimationCurveL�N;SAnimCurveSL		DefaultD ��"�3L	KeyVerI�\L	KeyTimel�L	
KeyValueFloatf����L	KeyAttrFlagsi!�L	KeyAttrDataFloatf

M	KeyAttrRefCounti�N	AnimationCurveL�lN;SAnimCurveS{M		DefaultD�?�M	KeyVerI��M	KeyTimel�M	
KeyValueFloatf�?N	KeyAttrFlagsi!KN	KeyAttrDataFloatf

xN	KeyAttrRefCounti�O	AnimationCurveL��M;SAnimCurveS�N		DefaultD�?�N	KeyVerI�O	KeyTimelGO	
KeyValueFloatf�?qO	KeyAttrFlagsi!�O	KeyAttrDataFloatf

�O	KeyAttrRefCountiEQ	AnimationCurveLN;SAnimCurveS;P		DefaultD�?SP	KeyVerI�|P	KeyTimel�P	
KeyValueFloatf�?�P	KeyAttrFlagsi!Q	KeyAttrDataFloatf

8Q	KeyAttrRefCounti�R	AnimationCurveL�EN;SAnimCurveS�Q		DefaultD��@�Q	KeyVerI��Q	KeyTimelR	
KeyValueFloatfUv�@1R	KeyAttrFlagsi!kR	KeyAttrDataFloatf

�R	KeyAttrRefCountiT	AnimationCurveLH�M;SAnimCurveS�R		DefaultD 34@S	KeyVerI�<S	KeyTimelgS	
KeyValueFloatf���@�S	KeyAttrFlagsi!�S	KeyAttrDataFloatf

�S	KeyAttrRefCountieU	AnimationCurveL��N;SAnimCurveS[T		DefaultD����?sT	KeyVerI��T	KeyTimel�T	
KeyValueFloatf�&/?�T	KeyAttrFlagsi!+U	KeyAttrDataFloatf

XU	KeyAttrRefCounti�V	AnimationCurveL�N;SAnimCurveS�U		DefaultD�?�U	KeyVerI��U	KeyTimel'V	
KeyValueFloatf�?QV	KeyAttrFlagsi!�V	KeyAttrDataFloatf

�V	KeyAttrRefCounti%X	AnimationCurveL�N;SAnimCurveSW		DefaultD�?3W	KeyVerI�\W	KeyTimel�W	
KeyValueFloatf�?�W	KeyAttrFlagsi!�W	KeyAttrDataFloatf

X	KeyAttrRefCounti�Y	AnimationCurveL�M;SAnimCurveS{X		DefaultD�?�X	KeyVerI��X	KeyTimel�X	
KeyValueFloatf�?Y	KeyAttrFlagsi!KY	KeyAttrDataFloatf

xY	KeyAttrRefCounti�Z	AnimationCurveL�M;SAnimCurveS�Y		DefaultD��!@�Y	KeyVerI�Z	KeyTimelGZ	
KeyValueFloatf}
1@qZ	KeyAttrFlagsi!�Z	KeyAttrDataFloatf

�Z	KeyAttrRefCountiE\	AnimationCurveL�,N;SAnimCurveS;[		DefaultD`7+@S[	KeyVerI�|[	KeyTimel�[	
KeyValueFloatf�qXA�[	KeyAttrFlagsi!\	KeyAttrDataFloatf

8\	KeyAttrRefCounti�]	AnimationCurveL�NN;SAnimCurveS�\		DefaultD����?�\	KeyVerI��\	KeyTimel]	
KeyValueFloatf��?1]	KeyAttrFlagsi!k]	KeyAttrDataFloatf

�]	KeyAttrRefCounti_	AnimationCurveL��M;SAnimCurveS�]		DefaultD�?^	KeyVerI�<^	KeyTimelg^	
KeyValueFloatf�?�^	KeyAttrFlagsi!�^	KeyAttrDataFloatf

�^	KeyAttrRefCountie`	AnimationCurveL�zN;SAnimCurveS[_		DefaultD�?s_	KeyVerI��_	KeyTimel�_	
KeyValueFloatf�?�_	KeyAttrFlagsi!+`	KeyAttrDataFloatf

X`	KeyAttrRefCounti�a	AnimationCurveL�/N;SAnimCurveS�`		DefaultD�?�`	KeyVerI��`	KeyTimel'a	
KeyValueFloatf�?Qa	KeyAttrFlagsi!�a	KeyAttrDataFloatf

�a	KeyAttrRefCounti%c	AnimationCurveL��M;SAnimCurveSb		DefaultDD@3b	KeyVerI�\b	KeyTimel�b	
KeyValueFloatf ��@�b	KeyAttrFlagsi!�b	KeyAttrDataFloatf

c	KeyAttrRefCounti�d	AnimationCurveL�N;SAnimCurveS{c		DefaultD�99@�c	KeyVerI��c	KeyTimel�c	
KeyValueFloatf\��Ad	KeyAttrFlagsi!Kd	KeyAttrDataFloatf

xd	KeyAttrRefCounti�e	AnimationCurveL��M;SAnimCurveS�d		DefaultD��s@�d	KeyVerI�e	KeyTimelGe	
KeyValueFloatf�s@qe	KeyAttrFlagsi!�e	KeyAttrDataFloatf

�e	KeyAttrRefCountiEg	AnimationCurveLXN;SAnimCurveS;f		DefaultD�?Sf	KeyVerI�|f	KeyTimel�f	
KeyValueFloatf�?�f	KeyAttrFlagsi!g	KeyAttrDataFloatf

8g	KeyAttrRefCounti�h	AnimationCurveLH[N;SAnimCurveS�g		DefaultD�?�g	KeyVerI��g	KeyTimelh	
KeyValueFloatf�?1h	KeyAttrFlagsi!kh	KeyAttrDataFloatf

�h	KeyAttrRefCountij	AnimationCurveL�N;SAnimCurveS�h		DefaultD�?i	KeyVerI�<i	KeyTimelgi	
KeyValueFloatf�?�i	KeyAttrFlagsi!�i	KeyAttrDataFloatf

�i	KeyAttrRefCounti	p	AnimationCurveL�N;SAnimCurveS[j		DefaultD����sj	KeyVerI��m	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"So	�
KeyValueFloatfb�n�g���i�F.n�Q�p�W�w�|#|���}��Y���ǃ�����
���rn��!|��mm��C���
�����3���I�������������d��~
���M��ş�W�������9���N��F���X���6��������ش��c���\���������#��C��jÙ�gE���M[��}"��4���_=Jן?[@��*@.:@ڃ>@��<@l�@i|�?��
`w��;�����P�*i��Fy�i�|��*q��Y`��9�J�%�ia������-���\��86��C4��w����V��P������¿��Ž�����cغ�i��w����2��p�������I����6�����1���sD��bt��´�4*��� ��Z��hA���o	KeyAttrFlagsi!�aH��o	-KeyAttrDataFloatf 



�o	KeyAttrRefCountia
v	AnimationCurveLȀN;SAnimCurveS_p		DefaultD����wp	KeyVerI��s	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"Wu	�
KeyValueFloatfb���g������f%�L������RWT�won�������|������W��V�����Z��邿[����Ɗ�UL��c�-�|��Fk�B���۾.l���j9�E..�����F2�%}������藿���ݗY�K�o>j?6�?-�?�š?�G?N
1>�������mj�I���!ӿ^��r�οPş��g^�ލ��޾��o��C�=�v�>�w�=�M���b���>�+�=��о�d�v�[������>[/?Cd?����s�F�>�g��u���"�yUf��Tq�Ha�w5/��%�� ��9�G���
���
�@"
�p_�?��9�[��[!������⾴��M������x��0?��	��E����u	KeyAttrFlagsi!�aH��u	-KeyAttrDataFloatf 



v	KeyAttrRefCountia|	AnimationCurveL(N;SAnimCurveScv		DefaultDಳ�?{v	KeyVerI��y	KeyTimela�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� V!��ȱ!X�
"Oi"���"O{	�
KeyValueFloatfa����?�t�??|M�?���?d��?ޚ�?eؙ?A�?4��?%_�?���?(��?t6�?ǫ?���?O�?�ʬ?��?댹?���?PU�?���?Q�?o�?
��?���?
��?b�?7��?Q��?k�?(��?a�?D�?z�?���?�;@�m@=@��W@��n@|��@��@ܮ�@l3�@�7�@,f�@�x@��W@��5@e<@��?���? �%?��p>Jb<�;���q��K\�0�&�ѝp�K硿%í������H�>Q�H?պ}?&@�?�_�?G߬?���?�b�?Z}�?_'�?���?���?^��?��?B:�?D�?j�@�5@9@��@�@Q�
@�+
@��	@�5
@�P
@DV
@�G
@u�@
>@�@}{	KeyAttrFlagsi!�aH��{	-KeyAttrDataFloatf 



�{	KeyAttrRefCounti`e}	AnimationCurveL8�N;SAnimCurveS[|		DefaultD�?s|	KeyVerI��|	KeyTimel�|	
KeyValueFloatf�?�|	KeyAttrFlagsi!+}	KeyAttrDataFloatf

X}	KeyAttrRefCounti�~	AnimationCurveLvN;SAnimCurveS�}		DefaultD�?�}	KeyVerI��}	KeyTimel'~	
KeyValueFloatf�?Q~	KeyAttrFlagsi!�~	KeyAttrDataFloatf

�~	KeyAttrRefCounti%�	AnimationCurveL��M;SAnimCurveS		DefaultD�?3	KeyVerI�\	KeyTimel�	
KeyValueFloatf�?�	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti)�	AnimationCurveLkN;SAnimCurveS{�		DefaultD@��@��	KeyVerI�ă	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"s�	�
KeyValueFloatfb�ĥ@��@�ͦ@�Z�@x[�@�/�@<�@Y֦@�/�@$�@Q��@��@I�@�U�@�e�@h��@@�@9�@��@�Ÿ@��@�@xj�@�^�@�8�@9��@2J�@vl�@�T�@�ۯ@�[�@�Z�@H�@�@j��@Z�
A;=A��'A��/A��9AͽCA��KA�8QATA��WA�\A��`A��bAb�bAA@bA&�fA�oAm,zAK̓A���A���A�S�A�cB�YBFBeBh�B�!B{N�A��AZ7�A�UeA�jNA��=A�],A��'A�$A��!A#i"AΛ"AX�"A��"A=#A�n#A��#A��#A��#A�#A+e#A��#A�c#A=#A��"AX�"AG�"A�#AD#AN�#A�#A��#A�
$AWJ$A�I$A��	KeyAttrFlagsi!�aH��	-KeyAttrDataFloatf 



�	KeyAttrRefCountia-�	AnimationCurveL��M;SAnimCurveS�		DefaultD@9U�?��	KeyVerI�ȉ	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"w�	�
KeyValueFloatfb�ʩr?tx?��?dE�?«�?'=�?�ٛ?"^�?T]�?H��?���?T1�?�:�?d��?�{�?��?t�?���?�r�?e�?Xz�?�@y?�A??��/?d�,?�>Y�>�>Т-?'v?��8?��>�١=q�8>�P>,#�>�k�=�
���ƽq��<]#������JU��2�=��?��`?���?�<_?q*?�[D?�R�?��?
 �?I�?��?�
@�@x����s�Dٳ�$P���a!޿Y
q�>l>�:�?*��?>�?��?��?��I?5?O��>��>��v>�"
���{�wͱ���:���Z��dt�rv���E�����C���{^���P���&��ZHȾ��̾��j��`�
_��.=c�L=#I���������	KeyAttrFlagsi!�aH��	-KeyAttrDataFloatf 



 �	KeyAttrRefCountia��	AnimationCurveL��M;SAnimCurveS��		DefaultD�l]�?��	KeyVerI���	�KeyTimelY�P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙ �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"�	q
KeyValueFloatfYdI�<�D�<��a�P��^=�j�<��<֢[=ʧ+=p#�<=�X=}@�=�Ǒ=O�#=(�=R��=�i�=	��=�	�=\[>�y1>�6*>��>�(>��I>�95>�s>��=��=���=&->��>��?~nA?O�G?1O6?F�$?=/?�:?*?�h!?�b6?��=?k�3?'`?��>,��=�\Ž�,���[�����=d��8����>$�<?�8?C�>Hʾ�������X�=5ޫ>��
?�[?ml�>{w*>G���"���H��[�c��f�/��qw����@���H��)������5���Σ���d���1��Č��&&����̉��`W����9�	KeyAttrFlagsi�aH�s�	KeyAttrDataFloatf

��	KeyAttrRefCountiY
�	AnimationCurveL�N;SAnimCurveS�		DefaultD�?�	KeyVerI�D�	KeyTimelo�	
KeyValueFloatf�?��	KeyAttrFlagsi!Ӓ	KeyAttrDataFloatf

�	KeyAttrRefCountim�	AnimationCurveL�EN;SAnimCurveSc�		DefaultD�?{�	KeyVerI���	KeyTimelϓ	
KeyValueFloatf�?��	KeyAttrFlagsi!3�	KeyAttrDataFloatf

`�	KeyAttrRefCounti͕	AnimationCurveL�M;SAnimCurveSÔ		DefaultD�?۔	KeyVerI��	KeyTimel/�	
KeyValueFloatf�?Y�	KeyAttrFlagsi!��	KeyAttrDataFloatf

��	KeyAttrRefCountiћ	AnimationCurveL�N;SAnimCurveS#�		DefaultD�&��;�	KeyVerI�l�	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"�	�
KeyValueFloatfb�6^�T�]���\�`[���Y��V�6�R��:P�"%M��SI��G��sE���@�@�:�:�8���6��H2���.���,��P*�Gr'��Q#�� ���T�!��t%��
*���-�43��o>�V6L�#9[��_l��|�����^����������ƃ��n���2��wP���5�N��n��M�+�_�;���H�zZK�;FB�T75��'�����GG������ƺ��.���%����������t������!U������w���P��`�������k����
���O�����טּ��4������|�����n�������]���������J���%�������ɧ��uY������s��M������\������m��$���F�����I�	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



ě	KeyAttrRefCountiau�	AnimationCurveL�M;SAnimCurveS'�		DefaultD�p�%�?�	KeyVerI�@�	�KeyTimel\�Hy�����&�vX�@���s�9����)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"נ	}
KeyValueFloatf\p�/�E/�-I/��0/�L/���.���.�7/��5/��/���.�~�.��O.�0/���/���/�/F0�1��1�3o2��;3��S3�`�3���4���5�!7���8��S;���=�+�<��;���9�NS9��8�P[4�ј.���)�3U$�h��η�G'�����
��h���
� V
�����A��I���2�����@����A�������������B��n
�����iZ��W�������'m��I"��b�������d������~��N��������F����������
�C�,"�5����N��1�	D������[*�������=���	KeyAttrFlagsi�aH�;�	KeyAttrDataFloatf

h�	KeyAttrRefCounti\I�	AnimationCurveLحM;SAnimCurveSˡ		DefaultD�'��	KeyVerI��	
KeyTimel`P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"��	�
KeyValueFloatf`�ҩ�yP��(��%�����=��#���	��	�a`��_	�u�
��
��	�`����
�1s�I�:���G���!�5�'�#�-�35��=�KhE�L��=Q�xW�-k_���e��j���p��1x��4��.��'}���]��9E��u�ݎm��Gb�ϲO��>�s�/�����0�w�̿���a�w��n��	�b>�Db?��?^�B?�T�>(??_��?���?�r?�=d?3+�?8g�?m�$?��s���|��QV����(����U�1���?��?(�gs.�`�3�mP<�BA���D�7�L�tO��PS��Z�C']���_��Nd�nHg��pi�i"k��l��n�Iq��?s���t���w��\y�զ	KeyAttrFlagsi�aH��	KeyAttrDataFloatf

<�	KeyAttrRefCounti`��	AnimationCurveLX�M;SAnimCurveS��		DefaultD�?��	KeyVerI��	KeyTimel�	
KeyValueFloatf�?5�	KeyAttrFlagsi!o�	KeyAttrDataFloatf

��	KeyAttrRefCounti	�	AnimationCurveLh�M;SAnimCurveS��		DefaultD�?�	KeyVerI�@�	KeyTimelk�	
KeyValueFloatf�?��	KeyAttrFlagsi!ϩ	KeyAttrDataFloatf

��	KeyAttrRefCountii�	AnimationCurveL�N;SAnimCurveS_�		DefaultD�?w�	KeyVerI���	KeyTimel˪	
KeyValueFloatf�?��	KeyAttrFlagsi!/�	KeyAttrDataFloatf

\�	KeyAttrRefCounti��	AnimationCurveL��M;SAnimCurveS��		DefaultD@]�?׫	KeyVerI�H�	]KeyTimeljPP����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ��� ����8y�p�<[6�6����h3�n�J��J��0&`�с.��.����X9X+��������(�LP�f��%*�%*���_H#���t�t� 8s@�����*��*����8F���	>��	>�TQ�TQ���(�Б�dБ�dxb� �%�
�w�
�wp���p/��3���3�h����B �~� �~� `�A� V!��ȱ!X�
"�	�
KeyValueFloatfj���
>��>H/>vj>#W�=n�=׺=-��=���=h�T=/<=��<���<�
;˲ۼ7�����(��{ϼY����4���	���+�<�a=v�=�B0>��h>���>�m�>�)?�&?�@?�EQ?�b?��x?v��?�G�?tF�?qĸ?���?��?s��?O�?��?]�?�a�?���?s�?�f/?�y����*MX����8����vd���H������\�V���ʿ,|����׿��Ŀ�	ÿ�{ѿ��뿠M�����Y���*�v��|ؾXk���� =��=��>�m>��>h>FG>0g:>p9b>�su>�܀>��>�;�>���>��~>i�{>w܀>�
�>cd>��M>�1>��#>�x>�H	>84�=��=ǣ�=Å�=ʰ=)�=W�=1��=��Z=}�8=A�	KeyAttrFlagsi!{�	KeyAttrDataFloatf

��	KeyAttrRefCountij��	AnimationCurveLHFN;SAnimCurveS�		DefaultD���?#�	KeyVerI���	UKeyTimeliH�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M��sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ��� ����8y�p�<[6�6����h3�n�J��J��0&`�с.��.����X9X+��������(�LP�f��%*�%*���_H#���t�t� 8s@�����*��*����8F���	>�͙0����TQ���(�Б�dБ�dxb� �%�
�w�
�wp���p/��3���3�h����B �~� �~� `�A� V!��ȱ!X�
"X�
"Oi"���"W�	�
KeyValueFloatfi��%?bM#?��?�*"?<h ?#� ?cR#?��&?v�%?w�'?�),?�S,?Q�+?[v/?7�3?mn0?2$3?��5?b�3?��8?��7?bF:?x=?�P?�IZ?Ruh?m�m?+Rs?�^t?��k?��Z?#E?�r>?�^E?��L?R�C?�~5?��)?O�?�N?G??���>Z�?�w3?��2?�1@?��r?��}?�m�?F��? �?���?ھ?X��?��?�Y�?/��?bx?�q[?f�C?%
?��>�r�>�y?h�$?%�&?�'?��'?��%?_B?�?�"?a'"?� ?y* ?׫?�?%�?�)?�?i2?�?5�? �?�-?��?J(?nY?��?�=?��?�� ?��?�u?��#?�'?R#?5� ?k&?d*?�%?�#?��(?J,?l2-?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCountii��	AnimationCurveL8GN;SAnimCurveSK�		DefaultD�X˿c�	KeyVerI�Ժ	]KeyTimelJP�{J��)M�n��c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ��� ����8y�p�<[6�6����h3�n�J��J��0&`�с.��.����X9X+��������(�LP�f��%*�%*���_H#���t��*��*8F���	>Б�dБ�dxb� �%�
�wp���p/��3���3�h����B #�	5
KeyValueFloatfJ(ƚX��3S�<�N�b=G���H��rS�__W��_���k��~�,��_����_��v��pоPn޾o�sj��羅��!��j$���@	�Z��~�����/��u������h��|����FQ���}@�N�3��q�m6�=��Q>��>'P$?�h?�*E?D�>a�V�L��u�=bg�=,��=��/>7e�>�L�>¿]>
�=IOl<�d̽ܳ/��'J�&�S�{�V��z[�z_]��Pj��^k��io��n�ޒe��a�9�\�~)Y���X���N�G�T�o8Z�M�	KeyAttrFlagsi!��	KeyAttrDataFloatf

��	KeyAttrRefCountiJ!�	AnimationCurveL�WN;SAnimCurveS�		DefaultD/�	KeyVerI�X�	KeyTimel��G���	
KeyValueFloatf�?��	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveLxON;SAnimCurveSw�		DefaultD��	KeyVerI���	KeyTimel��G��	
KeyValueFloatf�?
�	KeyAttrFlagsi!G�	KeyAttrDataFloatf

t�	KeyAttrRefCounti��	AnimationCurveLȢM;SAnimCurveS׿		DefaultD�	KeyVerI��	KeyTimel��G�C�	
KeyValueFloatf�?m�	KeyAttrFlagsi!��	KeyAttrDataFloatf

��	KeyAttrRefCounti��	AnimationCurveLh�N;SAnimCurveS7�		DefaultD@���O�	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"/�	�
KeyValueFloatfb�����8Ə�t���_X������ǀ���r������&��c���Wc�����=ծ�%����$��Tz��3���������68��g���xU��a��ur��{��f���1�������Ѩ�cA��`��Lp�����Xu�Fͮ�w��o!��J��p�����|&��#Ҍ� ���Yx������у��W���u��ʐ{�RBn�R}a�9�U�*1K��@�Ώ0�,��&��Z�u���`��3�j��.?��A$�|%��#������	����������������i���K�����1ȉ�S!���e~���r��o��?l��Ti��j���k�fm��:p��_r�~)w�`�v��/v�;2u�t�s���q��m���j�}5h���^�Z[�]�	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



��	KeyAttrRefCountia��	AnimationCurveL�2N;SAnimCurveS;�		DefaultD��
�S�	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"3�	�
KeyValueFloatfb��7m�X�l���k�@�i��f�"�e�W�h�%1j�_xh�Ɯd�Ja��\���T�Y0L�*�D�у=���:�~U9��6��4���4��;��H�6L���I��8V�l�d�u�V�@�S��M�_�G��vD���A�=�?�5F�;N�؉V���^�~�d���]�b�T�x�N�+�+�j����%���f�W��p&�������������y���I�����nr�+�%����}�����ƈ��
�����#���uU��Ng��"���;�����惹�ng��Iտ������Ӡ��#��Yu��89���5��������������0����m���5��x������d������S���������>��`���������ie��-P��a�	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



��	KeyAttrRefCountia��	AnimationCurveL8N;SAnimCurveS?�		DefaultD��W�	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"7�	�
KeyValueFloatfb���G�%H�p�H�oI�I�H�H�G���E�R�C�_B�d�@�&�>�I6>�K~<���9���8��A8�D�5�N�2�e�0��.�o4)�$�"�������C��6��;��*�'��D��&����%��,�~Q���|r��ʿ؝��b5�>�,���>9�>
@�>���>�(?Y/Q?^�)?��!>V�>���%�Ͽ���eD��U@��O��X^���p��u�@�v�S]���@��sT���K�����㶄�,�m���m��p�\+r�x�m�(�g���_��\�&�X���Q�%P�I�O��L���J��[I���G��_E��C�B�e@�w�=�x�:���:��;�|�;��h;�h�:�8:�m9��8��^8���8�e�	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



��	KeyAttrRefCountiaM�	AnimationCurveLhzN;SAnimCurveSC�		DefaultD�?[�	KeyVerI���	KeyTimel��	
KeyValueFloatf�?��	KeyAttrFlagsi!�	KeyAttrDataFloatf

@�	KeyAttrRefCounti��	AnimationCurveLx�M;SAnimCurveS��		DefaultD�?��	KeyVerI���	KeyTimel�	
KeyValueFloatf�?9�	KeyAttrFlagsi!s�	KeyAttrDataFloatf

��	KeyAttrRefCounti
�	AnimationCurveL($N;SAnimCurveS�		DefaultD�?�	KeyVerI�D�	KeyTimelo�	
KeyValueFloatf�?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL(ZN;SAnimCurveSc�		DefaultD �� @{�	KeyVerI���	KeyTimela�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"O�	�
KeyValueFloatfa�$HA?RA AVJAK�A��AP,A��A�{AUAK(	A��	A�	A��	Ay
A��	A�A�DA�A
HAHKA�A��A2*�@0��@�y�@�D�@���@�&�@���@�
�@i��@��@�Az�UAb?�AZ�A�RBA��A��Aɂ�A�A���A}�2A�:�@M�A�dAzp A�I'A; *A`{)A�$(A�'A �+A
�1A��6AK�6A�5A�3A��4AҮ6A�:AD;AFS9A�-AH�$AvA1A�&AԸ�@���@?��@s��@I�@
�@�i�@�ɵ@g��@��@���@�@`��@���@wb�@�@ڳ�@r��@TH�@�W�@C
�@���@���@^��@��@���@w#�@-T�@y�	KeyAttrFlagsi�aH���	KeyAttrDataFloatf

��	KeyAttrRefCountia��	AnimationCurveL8N;SAnimCurveSC�		DefaultD�}ۡ?[�	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���";�	�
KeyValueFloatfb���=(�<):̝�<�'�<��c�'�����w<n3y�����1G�㲝���羨��b��_�l�o���d��z}����������:[�4)�vE5���u�Lfq�n�H�
�^�O$\�0�}�Eʔ��$������cn2��(���+��J�ܰ�s���`�6r��}���N.�tJf��s���̉�6\������ǿ,�������̕�W
��(��������,�J��WN��+̿���	�4�##�V��?n?��?��?l�F?����A���?���B��-��-��S�������������r�������z��� �����8�gZ�������I�
���	��`�������z��ڿ|�ٿ��ӿg�׿�ؿi�	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



��	KeyAttrRefCountia��	AnimationCurveLx�M;SAnimCurveSG�		DefaultD@�Xؿ_�	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"?�	�
KeyValueFloatfb�B�¾4<ľ�Ⱦ<�Ⱦ��˾xmѾA�վ`�׾�پ�vܾ!߾���A�뾆@�e���Y�����]��`��U����������Ӆ��h���
�����.��1����6N���������8�M�՜��Q߿��E�5��&I�+X���V��;����<�޿ji˿���o}��~%���N��|D��L`��5|���sN￈|�����*K�?���	��o�w������쿢�ۿĸɿ���x��?_���Ho��]�~�U�M�\��x_���_��n_��]�o�U��QS�R�TM�^�K��4L��xI��-L���M���U�Q�V��V�-�Y�m�Z���]�]h�Mro��Bu�+�z�bU�����m�	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



��	KeyAttrRefCountiaU�	AnimationCurveLhAN;SAnimCurveSK�		DefaultD�?c�	KeyVerI���	KeyTimel��	
KeyValueFloatf�?��	KeyAttrFlagsi!�	KeyAttrDataFloatf

H�	KeyAttrRefCounti��	AnimationCurveL��M;SAnimCurveS��		DefaultD�?��	KeyVerI���	KeyTimel�	
KeyValueFloatf�?A�	KeyAttrFlagsi!{�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL�cN;SAnimCurveS�		DefaultD�?#�	KeyVerI�L�	KeyTimelw�	
KeyValueFloatf�?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCounti�	AnimationCurveLHyN;SAnimCurveSk�		DefaultD �@���	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"c�	�
KeyValueFloatfb�y�������y��钰�, �������o���������T>�����+��k��u������	���"��cn��W~���n��}��f��bu��p���s�����s����K��h���=���ڇ��́���u��
l�?��1������Ob���ˎ�aH����i���0����	�]�A=��_?�/�?��@#=@��@�@���?N�?$?�?�(�����X����D/�g�:��C�+�S��Y�M|c��o���I�������3��n[��Uه��������:x���ۊ��8��/��%0���������J����m�������q��B!��ٙ�`T������U������T��!���Dh�������g�����<B��Ja��j)����	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



�	KeyAttrRefCountia�	AnimationCurveL({N;SAnimCurveSo�		DefaultDç.@��	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"g�	�
KeyValueFloatfb�>uA`~uA��uA��tA�AtA�=tA�ltA��sA�'tANNtA]�sA�tA"OuAwptA�ctA�*vA�IvA��tA(xuAu�uA9�tA�#sAWrAqAg'pA�nAC�mA�,lA�kA�jA��iA�;iA3�hA�qhAոmA&�sA��yA��A��A���A⪂A��A���AEȈA���Ay܌A���A�)�A�6�A�БA0+�A�z�A��A�ʓAA�s�A��AN��A��A��A���A�.�ANÙA��A�]�A(�A�U�A�_�AE�A<��A���A��ACv�A�P�A��A��A���A(��A��AQ��AM#�A�'�A�!�A(ރAL�A
�A�1�A�J�A��AكA灃A��A#�A~�Ap@�AN��A�f�A�A�A��	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



�	KeyAttrRefCountia!�	AnimationCurveL��M;SAnimCurveSs�		DefaultD�Z@��	KeyVerI���	KeyTimelb�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3�P��/�P����}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"k�	�
KeyValueFloatfb�dЊ@�܊@=�@�ߋ@�L�@<�@�+�@?��@��@sL�@�c�@�Ӎ@4(�@o�@G؋@��@�A�@ى@�I�@�@q��@��@G��@�%�@/�@~��@�҂@�2�@ޒx@�)t@�p@nJi@K�f@^�a@?�l@��|@x��@^��@-��@�w�@{P�@)�@���@I�@�:�@K�@��@�S�@{hA	OA��A$AWj�@���@���@�3�@��@��A�WA�A
�AQA`�A���@�0�@S��@���@���@vM�@P�@��@���@��@#��@���@�y�@ޡ�@g�@
��@���@���@��@z��@�b�@w0�@9�@���@u�@w��@a��@�@�o�@ny�@�s�@�9�@<w�@r��@���@��	KeyAttrFlagsi!�aH���	-KeyAttrDataFloatf 



�	KeyAttrRefCountia�
AnimationCurveLH�M;SAnimCurveSw�		DefaultD�?��	KeyVerI���	KeyTimel��	
KeyValueFloatf�?

KeyAttrFlagsi!G
KeyAttrDataFloatf

t
KeyAttrRefCounti�
AnimationCurveL�N;SAnimCurveS�
	DefaultD�?�
KeyVerI�
KeyTimelC

KeyValueFloatf�?m
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCountiA
AnimationCurveLx�N;SAnimCurveS7
	DefaultD�?O
KeyVerI�x
KeyTimel�

KeyValueFloatf�?�
KeyAttrFlagsi!
KeyAttrDataFloatf

4
KeyAttrRefCounti�	
AnimationCurveLH�N;SAnimCurveS�
	DefaultD ����
KeyVerI�(
eKeyTimelkX�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i���sxf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3��K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ��� ����8y�p�<[6�6����h3�n�J��J��0&`�с.��.����X9X+��������(�LP�f��%*�%*���_H#���t�t� 8s@�����*��*����8F���	>��	>�͙0����TQ�TQ���(�Б�dБ�dxb� �%�
�w�
�wp���p/��3���3�h����B �~� �~� `�A� V!��ȱ!X�
"X�
"Oi"���"�
�
KeyValueFloatfk��?��a翴��VU鿳��H��{�JY�8����i��'��pJ��Z��s��ϧ��￰��r��lH���H�������D��Xe��������&��
��k��)��[�d���Y�K�*��j��ߞ���Ȅ��~��Lm��qQ���,����;����*��4���`��#�=|u�>�`�>��>�>&79>G�=,�g��;G�`a���������FU.�+�Q���X��/K�8�:��^'��4�K�N���b��t�[�|��}�cCx��
p��l�.�q���u��h�`WW���K���C�M;�'|1���,��,���)���)�\m(���%�+��j+���-�ۃ4���5��/5�kh5�)9��M<���?��0C�%B��[@�E6A�E��H�a<B�9�B�K�D�Ɏ=��u6�%	
KeyAttrFlagsi!_	
KeyAttrDataFloatf

�	
KeyAttrRefCountik�
AnimationCurveL��N;SAnimCurveS�	
	DefaultD���

KeyVerI�x
]KeyTimeljP�~�[P����{J��
oHy�����&�vX�@���s�9��8qf���)M�n�0��kt`��7�(i�xf�� �E+�c	�p���a�>��S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3��K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ��� ����8y�p�<[6�6����h3�n�J��J��0&`�с.��.����X9X+��������(�LP�f��%*�%*���_H#���t�t� 8s@�����*��*����8F���	>��	>�͙0����TQ�TQ���(�Б�dБ�dxb� �%�
�w�
�wp���p/��3���3�h����B �~� �~� `�A� V!��ȱ!X�
"X�
"Oi"���"G
�
KeyValueFloatfj���G�1Rp���k��0
��'���#�U<"���	���0�v���� ��2���2�ö?�z5�ݐC�^F���M�I>���:�G�G�J�D��O��mR�.�i�q���W�
��!��6��Y����_��F��{F����C����*����0�\
G�M�F�tH��:���&�������)�En��}	��E�S���ݸ��u��w����P>ɾ�⨾{yq��h��燾Ą��In־�;Ͼ���
E�G�;�������C���7%Ƚ?;���͢��`��,�y����<��<mG������X�G�y�@<�QA=��0=�vf<��}<TB<��&;��<�a%=��0=2O= s�<9j;=w�w=�O?=�n=�=$�=k��=��p=�N�=)T	>o_>X��=�/�=?>q
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCountij�
AnimationCurveLhN;SAnimCurveS;
	DefaultD@�\�?S
KeyVerI��
MKeyTimelH@�~�[P����{J��
oHy��@���n�xf�� �E+�c	���S�h^���Q	�[��	`�a	
Y%e
����
XV��ox�S3��K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ��� ����8y�p�<[6�6����h3�n�J��J��0&`�с.��.����X9X+��������(�LP�f��%*�%*���_H#���t�t� 8s@�������8F���	>��	>Б�dxb� �%�
�wp���p/��B �
-
KeyValueFloatfH *�=��=��=�t�=��=���=H�=���=�=`�=c+�=��=��=�S]=�y�<���;�/}�tǠ��� �@����ؾ#̾�ʹ�#���S!���&���o��5��Y�����;��f=��=K�>.�.>B�4>g)2>�3>hf#>J>q]�=��=M�q=�y�<�������q���z��&D����V��RX��A꼁�������'����"���&��#���&���1��;�@�6�vu0�[f%�d�����L�&���.�o�0�:15�݅7�sy?�%
KeyAttrFlagsi!_
KeyAttrDataFloatf

�
KeyAttrRefCountiH�
AnimationCurveL8�M;SAnimCurveS�
	DefaultD
KeyVerI�0
KeyTimel��G�[

KeyValueFloatf�?�
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCountiY
AnimationCurveLx�M;SAnimCurveSO
	DefaultDg
KeyVerI��
KeyTimel��G��

KeyValueFloatf�?�
KeyAttrFlagsi!
KeyAttrDataFloatf

L
KeyAttrRefCounti�
AnimationCurveL�^N;SAnimCurveS�
	DefaultD�
KeyVerI��
KeyTimel��G�

KeyValueFloatf�?E
KeyAttrFlagsi!
KeyAttrDataFloatf

�
KeyAttrRefCounti�
#MotionBuilder_SystemLxO�9SKTimeWarpManagerS�
Properties70S
/PSMoBuTypeNameSKStringSSSBox�
/PSMoBuSubTypeNameSKStringSSS�
BPSMoBuObjectFullNameSKStringSSSKTimeWarpManagerS
.PSMoBuAttrBlindDataSBlobSSIF

BinaryDataRp�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRp_ 
/MotionBuilder_GenericLP|�9SFaceTime HD Camera (Display)SR 
Properties70�
1PSMoBuTypeNameSKStringSSSVideo�
3PSMoBuSubTypeNameSKStringSSSLive1
UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Video�
HPS
RecordPathScharptrSSSC:\Users\bOb\Documents/1003_smallStep-_205_Idle_JumpUpLow_NoHands_Idle-_202_Idle_JumpDownLow_BackFlip_Idle-_93_TO_96_a_U1_M_P_halfSteps2Idle_StrafeFwdFootOverTOIdle__Fb_p135_No_0_1-_89_90B_a_U1_M_P_Walk2Idle_Idle2WalkBackward_Fb_p0_No_0_0-FaceTime HD Camera (Display)-VideoRecording.avi�
#PSOnlineSboolSSI�
)PSResolutionFRSenumSSI&
)PSRecordToFileSboolSSI\
(PSRecordAudioSboolSSI�
'PS
CompressorSenumSSI�
.PSMoBuAttrBlindDataSBlobSSI��
�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineIE 
2PSMoBuRelationBlindDataSBlobSSI8 

BinaryDataRp�%
0MotionBuilder_GenericLR�9SFaceTime HD Camera (Built-in)S�%
Properties70	!
1PSMoBuTypeNameSKStringSSSVideoJ!
3PSMoBuSubTypeNameSKStringSSSLive�!
VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video#
IPS
RecordPathScharptrSSSC:\Users\bOb\Documents/1003_smallStep-_205_Idle_JumpUpLow_NoHands_Idle-_202_Idle_JumpDownLow_BackFlip_Idle-_93_TO_96_a_U1_M_P_halfSteps2Idle_StrafeFwdFootOverTOIdle__Fb_p135_No_0_1-_89_90B_a_U1_M_P_Walk2Idle_Idle2WalkBackward_Fb_p0_No_0_0-FaceTime HD Camera (Built-in)-VideoRecording.avi6#
#PSOnlineSboolSSIm#
)PSResolutionFRSenumSSI�#
)PSRecordToFileSboolSSI�#
(PSRecordAudioSboolSSI$
'PS
CompressorSenumSSIL%
.PSMoBuAttrBlindDataSBlobSSI�?%
�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI�%
2PSMoBuRelationBlindDataSBlobSSI�%

BinaryDataRpb(
!MotionBuilder_GenericL03�9SVideo Output 1SU(
Properties70x&
1PSMoBuTypeNameSKStringSSSVideo�&
5PSMoBuSubTypeNameSKStringSSSOutput'
GPSMoBuObjectFullNameSKStringSSSVideo Output 1VideoC'
%PSDrawModeSenumSSI�'
.PSMoBuAttrBlindDataSBlobSSI)�'
.
BinaryDataR)p	UseMipMapIH(
2PSMoBuRelationBlindDataSBlobSSI;(

BinaryDataRp4-
!MotionBuilder_SystemLо�9SKVideoRendererS'-
Properties70�(
2PSMoBuTypeNameSKStringSSSObjectH)
=PSMoBuSubTypeNameSKStringSSSKVideoRenderer�)
@PSMoBuObjectFullNameSKStringSSSKVideoRenderer�,
.PSMoBuAttrBlindDataSBlobSSI��,
�
BinaryDataR�p�
RendererTools4VersionIgP	StartTimeS0kStopTimeS0�StepTimeS1�OutputFormatSAVI�
OutputPathSc:\temp\Output.avi�FormatSFrom Camera	FieldModeI,QualityIORendererAntialingIk
ModelsOnlyI�ViewingModeI�StereoDisplayModeI
�RenderAudioI�AudioFormatI ShowCameraLabelI$ShowTimeCodeIBShowSafeAreaIeGlobalViewingModeI�GlobalStereoDisplayModeI-
2PSMoBuRelationBlindDataSBlobSSI
-

BinaryDataRp�0
!MotionBuilder_SystemLH�9SKSerialManagerS�0
Properties70�-
:PSMoBuTypeNameSKStringSSSKSerialManager.
/PSMoBuSubTypeNameSKStringSSSb.
@PSMoBuObjectFullNameSKStringSSSKSerialManager'0
.PSMoBuAttrBlindDataSBlobSSI`0
e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI�0
2PSMoBuRelationBlindDataSBlobSSI�0

BinaryDataRp#4
#MotionBuilder_SystemL&�9SKCharacterHelperS4
Properties70S1
0PSMoBuTypeNameSKStringSSSTool�1
8PSMoBuSubTypeNameSKStringSSS	Character�1
BPSMoBuObjectFullNameSKStringSSSKCharacterHelper\2
.PSMoBuAttrBlindDataSBlobSSIO2

BinaryDataRp	4
2PSMoBuRelationBlindDataSBlobSSID�3
I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEI$D
MotionBuilder_SystemL�u�9SKNLEManagerSD
Properties70�4
7PSMoBuTypeNameSKStringSSSKNLEManager�4
/PSMoBuSubTypeNameSKStringSSSH5
=PSMoBuObjectFullNameSKStringSSSKNLEManager�C
.PSMoBuAttrBlindDataSBlobSSI�
�C
�

BinaryDataR�
p�
	GlobalNLE0VersionI�
	EditSEdite	IsCurrentIvL�ModelsIKSLeftToesModelSLeftFootModelSLeftLegModelSLeftUpLegModelSRightToesModelSRightFootModelSRightLegModelSRightUpLegModelSLeftHandThumb3ModelSLeftHandThumb2ModelSLeftHandThumb1ModelSLeftHandIndex3ModelSLeftHandIndex2ModelSLeftHandIndex1ModelSLeftHandMiddle3ModelSLeftHandMiddle2ModelSLeftHandMiddle1ModelSLeftHandRing3ModelSLeftHandRing2ModelSLeftHandRing1ModelSLeftHandPinky3ModelSLeftHandPinky2ModelSLeftHandPinky1ModelSLeftHandModelSLeftForeArmModelSLeftArmModelSLeftShoulderModelSRightHandThumb3ModelSRightHandThumb2ModelSRightHandThumb1ModelSRightHandIndex3ModelSRightHandIndex2ModelSRightHandIndex1ModelSRightHandMiddle3ModelSRightHandMiddle2ModelSRightHandMiddle1ModelSRightHandRing3ModelSRightHandRing2ModelSRightHandRing1ModelSRightHandPinky3ModelSRightHandPinky2ModelSRightHandPinky1ModelSRightHandModelSRightForeArmModelSRightArmModelSRightShoulderModelSRightLipUpperModelSRightNostrilModelSRightCheekModelSRightEyelidLowerModelSRightEyelidUpperModelSRightIOuterBrowModelSRightInnerBrowModelSLeftIOuterBrowModelSLeftInnerBrowModelSLeftEyelidUpperModelSLeftEyelidLowerModelSLeftCheekModelSLeftNostrilModelSLeftLipUpperModelSLeftLipCornerModelSRightLipCornerModelSRightLipLowerModelS
JawENDModelSLeftLipLowerModelSTongueTipModelSTongueBackModelS
JawModelSRightEyeModelSLeftEyeModelSHeadModelSNeckModelSChestModelSSpineModelSHipsModel�	TrackSCut�TakeNameSAvatart_T_Stance�	StartL��sR�����	StopL�WB�GhostI/TDDDXRDD�Ds	StartL�	StopL!>��HasPivotI�	PivotNameSRightFootModel�	
BlendCurve		DefaultD	KeyVerI�8	KeyCountIp	(KeyLD�?CLL����
DCL�	ColorD�?D�?D�?�TrackSCut�	TakeNameSAvatart_T_Stance
	StartLf�6B0
	StopLU�%G
GhostIp
TDDD�
RDD�D�
	StartLO\T�X�
	StopL^�_�t�
HasPivotI	PivotNameS�
BlendCurve7	DefaultDOKeyVerI�iKeyCountI�(KeyLD�?CLL����
DCL�ColorD�?D�?D�?�ResultTrack(TakeNameS1003_smallStepC	StartLS{�����]	StopLB��tGhostI�TDDD�RDD�D�IsLocalI
StartRefTrackIdxI����/
StopRefTrackIdxI����O
	
StartRatioD�?n
		StopRatioD�?�

KeepActiveI�
	StartL��G��
	StopLJZ�)
D
2PSMoBuRelationBlindDataSBlobSSI�C

BinaryDataRpF
MotionBuilder_SystemL��9SConstraintsSrF
Properties70�D
2PSMoBuTypeNameSKStringSSSFolderE
7PSMoBuSubTypeNameSKStringSSSCategoryTE
EPSMoBuObjectFullNameSKStringSSSConstraintsFolder�E
.PSMoBuAttrBlindDataSBlobSSI5�E
:
BinaryDataR5p(
FolderTypeSConstraintseF
2PSMoBuRelationBlindDataSBlobSSIXF

BinaryDataRp�K
 MotionBuilder_SystemL���9S
KAudioManagerS�K
Properties70 G
9PSMoBuTypeNameSKStringSSS
KAudioManager]G
/PSMoBuSubTypeNameSKStringSSS�G
?PSMoBuObjectFullNameSKStringSSS
KAudioManager#K
.PSMoBuAttrBlindDataSBlobSSIK

BinaryDataRp�
AudioInputHNameSMicrophone (Display Audio)`FormatI xOnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD�
AudioInputK.NameS)Microphone (Cirrus Logic CS4206A (AB 29))cFormatI {OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD
AudioInputZ:NameS5Digital Audio (S/PDIF) (Cirrus Logic CS4206A (AB 29))rFormatI �OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD�K
2PSMoBuRelationBlindDataSBlobSSI�K

BinaryDataRpN
(MotionBuilder_SystemL��9SKMotionTriggerManagerS
N
Properties70eL
APSMoBuTypeNameSKStringSSSKMotionTriggerManager�L
/PSMoBuSubTypeNameSKStringSSS�L
GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager�M
.PSMoBuAttrBlindDataSBlobSSI*yM
/
BinaryDataR*p
KEEPACTIVEI�M
2PSMoBuRelationBlindDataSBlobSSI�M

BinaryDataRp�c
MotionBuilder_SystemL@��9S
Story rootS�c
Properties70�N
5PSMoBuTypeNameSKStringSSS	TimelineX�N
/PSMoBuSubTypeNameSKStringSSSBO
FPSMoBuObjectFullNameSKStringSSSStory rootTimelinerO
"PSMutedSboolSSI�O
#PSSoloedSboolSSI�O
.PSRecordClipPathScharptrSSS
P
 PSTracksSobjectSS>P
#PS	TimelinesSobjectSS~P
2PSQuaternionInterpolateSboolSSI�P
JPSRotationOffsetSColorRGBSColorSDDD-Q
IPS
RotationPivotSColorRGBSColorSDDD�Q
IPS
ScalingOffsetSColorRGBSColorSDDD�Q
HPSScalingPivotSColorRGBSColorSDDDR
.PSTranslationActiveSboolSSInR
JPSTranslationMinSColorRGBSColorSDDD�R
JPSTranslationMaxSColorRGBSColorSDDDS
,PSTranslationMinXSboolSSI:S
,PSTranslationMinYSboolSSItS
,PSTranslationMinZSboolSSI�S
,PSTranslationMaxXSboolSSI�S
,PSTranslationMaxYSboolSSI"T
,PSTranslationMaxZSboolSSIZT
*PS
RotationOrderSenumSSI�T
6PSRotationSpaceForLimitOnlySboolSSI�T
;PSRotationStiffnessXSdoubleSNumberSD0U
;PSRotationStiffnessYSdoubleSNumberSDyU
;PSRotationStiffnessZSdoubleSNumberSD�U
0PSAxisLenSdoubleSNumberSD$@V
GPSPreRotationSColorRGBSColorSDDDbV
HPSPostRotationSColorRGBSColorSDDD�V
+PSRotationActiveSboolSSI�V
GPSRotationMinSColorRGBSColorSDDDEW
GPSRotationMaxSColorRGBSColorSDDD|W
)PSRotationMinXSboolSSI�W
)PSRotationMinYSboolSSI�W
)PSRotationMinZSboolSSI!X
)PSRotationMaxXSboolSSIXX
)PSRotationMaxYSboolSSI�X
)PSRotationMaxZSboolSSI�X
(PSInheritTypeSenumSSI�X
*PS
ScalingActiveSboolSSIQY
FPS
ScalingMinSColorRGBSColorSDDD�Y
FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�Y
(PSScalingMinXSboolSSIZ
(PSScalingMinYSboolSSIGZ
(PSScalingMinZSboolSSI}Z
(PSScalingMaxXSboolSSI�Z
(PSScalingMaxYSboolSSI�Z
(PSScalingMaxZSboolSSIG[
PPSGeometricTranslationSColorRGBSColorSDDD�[
MPSGeometricRotationSColorRGBSColorSDDD�[
LPSGeometricScalingSColorRGBSColorSD�?D�?D�?@\
6PS
MinDampRangeXSdoubleSNumberSD�\
6PS
MinDampRangeYSdoubleSNumberSD�\
6PS
MinDampRangeZSdoubleSNumberSD]
6PS
MaxDampRangeXSdoubleSNumberSDP]
6PS
MaxDampRangeYSdoubleSNumberSD�]
6PS
MaxDampRangeZSdoubleSNumberSD�]
9PSMinDampStrengthXSdoubleSNumberSD"^
9PSMinDampStrengthYSdoubleSNumberSDi^
9PSMinDampStrengthZSdoubleSNumberSD�^
9PSMaxDampStrengthXSdoubleSNumberSD�^
9PSMaxDampStrengthYSdoubleSNumberSD>_
9PSMaxDampStrengthZSdoubleSNumberSD�_
7PSPreferedAngleXSdoubleSNumberSD�_
7PSPreferedAngleYSdoubleSNumberSD
`
7PSPreferedAngleZSdoubleSNumberSD<`
!PSShowSboolSSI�`
8PSNegativePercentShapeSupportSboolSSI�`
KPSLcl TranslationSColorRGBSColorSDDD1a
HPSLcl RotationSColorRGBSColorSDDD�a
GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�a
3PS
VisibilitySdoubleSNumberSD�?c
.PSMoBuAttrBlindDataSBlobSSI��b
�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightIyc
2PSMoBuRelationBlindDataSBlobSSIlc

BinaryDataRp
y
MotionBuilder_SystemL0�9S	Edit rootSy
Properties70,d
5PSMoBuTypeNameSKStringSSS	TimelineXid
/PSMoBuSubTypeNameSKStringSSS�d
EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline�d
"PSMutedSboolSSIe
#PSSoloedSboolSSIYe
.PSRecordClipPathScharptrSSS�e
 PSTracksSobjectSS�e
#PS	TimelinesSobjectSS�e
2PSQuaternionInterpolateSboolSSIPf
JPSRotationOffsetSColorRGBSColorSDDD�f
IPS
RotationPivotSColorRGBSColorSDDD�f
IPS
ScalingOffsetSColorRGBSColorSDDDTg
HPSScalingPivotSColorRGBSColorSDDD�g
.PSTranslationActiveSboolSSI�g
JPSTranslationMinSColorRGBSColorSDDD@h
JPSTranslationMaxSColorRGBSColorSDDDzh
,PSTranslationMinXSboolSSI�h
,PSTranslationMinYSboolSSI�h
,PSTranslationMinZSboolSSI(i
,PSTranslationMaxXSboolSSIbi
,PSTranslationMaxYSboolSSI�i
,PSTranslationMaxZSboolSSI�i
*PS
RotationOrderSenumSSIj
6PSRotationSpaceForLimitOnlySboolSSIaj
;PSRotationStiffnessXSdoubleSNumberSD�j
;PSRotationStiffnessYSdoubleSNumberSD�j
;PSRotationStiffnessZSdoubleSNumberSD1k
0PSAxisLenSdoubleSNumberSD$@�k
GPSPreRotationSColorRGBSColorSDDD�k
HPSPostRotationSColorRGBSColorSDDDl
+PSRotationActiveSboolSSIjl
GPSRotationMinSColorRGBSColorSDDD�l
GPSRotationMaxSColorRGBSColorSDDD�l
)PSRotationMinXSboolSSI-m
)PSRotationMinYSboolSSIdm
)PSRotationMinZSboolSSI�m
)PSRotationMaxXSboolSSI�m
)PSRotationMaxYSboolSSI	n
)PSRotationMaxZSboolSSI?n
(PSInheritTypeSenumSSIwn
*PS
ScalingActiveSboolSSI�n
FPS
ScalingMinSColorRGBSColorSDDDo
FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?Uo
(PSScalingMinXSboolSSI�o
(PSScalingMinYSboolSSI�o
(PSScalingMinZSboolSSI�o
(PSScalingMaxXSboolSSI-p
(PSScalingMaxYSboolSSIcp
(PSScalingMaxZSboolSSI�p
PPSGeometricTranslationSColorRGBSColorSDDDq
MPSGeometricRotationSColorRGBSColorSDDDvq
LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�q
6PS
MinDampRangeXSdoubleSNumberSD�q
6PS
MinDampRangeYSdoubleSNumberSDBr
6PS
MinDampRangeZSdoubleSNumberSD�r
6PS
MaxDampRangeXSdoubleSNumberSD�r
6PS
MaxDampRangeYSdoubleSNumberSDs
6PS
MaxDampRangeZSdoubleSNumberSDUs
9PSMinDampStrengthXSdoubleSNumberSD�s
9PSMinDampStrengthYSdoubleSNumberSD�s
9PSMinDampStrengthZSdoubleSNumberSD*t
9PSMaxDampStrengthXSdoubleSNumberSDqt
9PSMaxDampStrengthYSdoubleSNumberSD�t
9PSMaxDampStrengthZSdoubleSNumberSD�t
7PSPreferedAngleXSdoubleSNumberSDBu
7PSPreferedAngleYSdoubleSNumberSD�u
7PSPreferedAngleZSdoubleSNumberSD�u
!PSShowSboolSSI�u
8PSNegativePercentShapeSupportSboolSSIUv
KPSLcl TranslationSColorRGBSColorSDDD�v
HPSLcl RotationSColorRGBSColorSDDDw
GPSLcl ScalingSColorRGBSColorSD�?D�?D�?Aw
3PS
VisibilitySdoubleSNumberSD�?|x
.PSMoBuAttrBlindDataSBlobSSI�ox
�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI�x
2PSMoBuRelationBlindDataSBlobSSI�x

BinaryDataRp%|
$MotionBuilder_SystemL��9SKTimelineXManagerS|
Properties70�y
=PSMoBuTypeNameSKStringSSSKTimelineXManager�y
/PSMoBuSubTypeNameSKStringSSSDz
CPSMoBuObjectFullNameSKStringSSSKTimelineXManager�{
.PSMoBuAttrBlindDataSBlobSSI��{
�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5|
2PSMoBuRelationBlindDataSBlobSSI�{

BinaryDataRpn~
MotionBuilder_SystemL���9SPosesSa~
Properties70�|
2PSMoBuTypeNameSKStringSSSFolder�|
7PSMoBuSubTypeNameSKStringSSSCategoryI}
?PSMoBuObjectFullNameSKStringSSS
PosesFolder�}
.PSMoBuAttrBlindDataSBlobSSI/�}
4
BinaryDataR/p"

FolderTypeSPosesT~
2PSMoBuRelationBlindDataSBlobSSIG~

BinaryDataRp��
MotionBuilder_SystemL�0�9STakesS��
Properties70
2PSMoBuTypeNameSKStringSSSFolderE
7PSMoBuSubTypeNameSKStringSSSCategory�
?PSMoBuObjectFullNameSKStringSSS
TakesFolder&�
.PSMoBuAttrBlindDataSBlobSSI/�
4
BinaryDataR/p"

FolderTypeSTakes��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
MotionBuilder_SystemL ��9SGlobal LightS��
Properties70W�
9PSMoBuTypeNameSKStringSSS
GlobalShading��
4PSMoBuSubTypeNameSKStringSSSLight�
>PSMoBuObjectFullNameSKStringSSSGlobal Light5�
BPS
Ambient ColorSColorSSAD����?D����?D����?��
>PS	Fog ColorSColorSSAD�?D�?D�?��
-PS	Fog BeginSNumberSSAD@33�?��
+PSFog EndSNumberSSAD@�@2�
/PSFog DensitySNumberSSAD@d�
$PSFogModeSenumSSI��
&PS	FogEnableSboolSSI�
.PSMoBuAttrBlindDataSBlobSSI��

BinaryDataRp��
2PSMoBuRelationBlindDataSBlobSSIu�

BinaryDataRp��
MotionBuilder_SystemLx��9SRendererS�
Properties703�
4PSMoBuTypeNameSKStringSSSRendererw�
6PSMoBuSubTypeNameSKStringSSSDefaultɅ
DPSMoBuObjectFullNameSKStringSSSRendererRenderer�
+PSFrustumCullingSboolSSI:�
*PS
DisplayNormalSboolSSIw�
/PSDisplayBoundingBoxSboolSSI��
;PSDisplayHierarchicalBoundingBoxSboolSSI��
,PSIDBufferPickingSboolSSIE�
=PSIDBufferPickingAlphaSdoubleSNumberSD�?�
,PSIDBufferDisplaySboolSSI��
.PSSelectionOverrideSboolSSI�
FPSSelectionOverrideTransparencySdoubleSNumberSD�?o�
RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?��
7PSCurrentCallbackIndexSintSIntegerSI�����
1PSAdvancedMaterialModeSboolSSIf�
.PSMoBuAttrBlindDataSBlobSSIY�

BinaryDataRp݉
2PSMoBuRelationBlindDataSBlobSSIЉ

BinaryDataRp’
&MotionBuilder_SystemL��9SPython Tool ManagerS��
Properties70��
4PSMoBuTypeNameSKStringSSS__FBTool֊
/PSMoBuSubTypeNameSKStringSSS)�
EPSMoBuObjectFullNameSKStringSSSPython Tool Manager^�
'PSCaptionScharptrSSS��
$PSEnabledSboolSSIË
%PSReadOnlySboolSSI��
$PSVisibleSboolSSI*�
'PSLeftSintSIntegerSI^�
&PSTopSintSIntegerSI��
(PSWidthSintSIntegerSIˌ
)PSHeightSintSIntegerSI�
*PSAnchorsSintSIntegerSI9�
(PSSkinContextSenumSSIk�
$PSHintScharptrSSS��
)PS	HintMouseScharptrSSS��
0PS
HintMouseLeftSintSIntegerSI�����
/PSHintMouseTopSintSIntegerSI����\�
1PSHintMouseWidthSintSIntegerSI������
2PSHintMouseHeightSintSIntegerSI����ێ
1PSHintIsTextCompletionSboolSSI�
#PSActiveSboolSSIA�
'PS
ActiveControlSobjectSS{�
,PSBackgroundBrushSenumSSI��
.PSBorderStyleSintSIntegerSI��
+PSPositionSintSIntegerSI+�
-PS
StartWSizeSintSIntegerSI�f�
-PS
StartHSizeSintSIntegerSI���
+PSMaxWSizeSintSIntegerSI����ؐ
+PSMaxHSizeSintSIntegerSI�����
+PSMinWSizeSintSIntegerSI�J�
+PSMinHSizeSintSIntegerSI������
,PS	StartXPosSintSIntegerSI������
,PS	StartYPosSintSIntegerSI����1�
.PSMoBuAttrBlindDataSBlobSSI$�

BinaryDataRp��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
(MotionBuilder_SystemLXI�9SBatch Tool (scripted)S��
Properties70f�
4PSMoBuTypeNameSKStringSSS__FBTool��
/PSMoBuSubTypeNameSKStringSSS��
GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)-�
'PSCaptionScharptrSSS_�
$PSEnabledSboolSSI��
%PSReadOnlySboolSSIĔ
$PSVisibleSboolSSI��
'PSLeftSintSIntegerSI-�
&PSTopSintSIntegerSIc�
(PSWidthSintSIntegerSI��
)PSHeightSintSIntegerSIҕ
*PSAnchorsSintSIntegerSI�
(PSSkinContextSenumSSI:�
$PSHintScharptrSSSq�
)PS	HintMouseScharptrSSS��
0PS
HintMouseLeftSintSIntegerSI�����
/PSHintMouseTopSintSIntegerSI����+�
1PSHintMouseWidthSintSIntegerSI����k�
2PSHintMouseHeightSintSIntegerSI������
1PSHintIsTextCompletionSboolSSIۗ
#PSActiveSboolSSI�
'PS
ActiveControlSobjectSSJ�
,PSBackgroundBrushSenumSSI��
.PSBorderStyleSintSIntegerSI��
+PSPositionSintSIntegerSI��
-PS
StartWSizeSintSIntegerSI5�
-PS
StartHSizeSintSIntegerSImn�
+PSMaxWSizeSintSIntegerSI������
+PSMaxHSizeSintSIntegerSI������
+PSMinWSizeSintSIntegerSI��
+PSMinHSizeSintSIntegerSI����S�
,PS	StartXPosSintSIntegerSI������
,PS	StartYPosSintSIntegerSI�����
.PSMoBuAttrBlindDataSBlobSSI�

BinaryDataRpw�
2PSMoBuRelationBlindDataSBlobSSIj�

BinaryDataRpv�
3MotionBuilder_SystemLP��9S Character Selection/Key ControlsSi�
Properties70@�
4PSMoBuTypeNameSKStringSSS__FBTool}�
/PSMoBuSubTypeNameSKStringSSSݜ
RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls�
'PSCaptionScharptrSSSD�
$PSEnabledSboolSSIw�
%PSReadOnlySboolSSI��
$PSVisibleSboolSSIޝ
'PSLeftSintSIntegerSI�
&PSTopSintSIntegerSIH�
(PSWidthSintSIntegerSI�
)PSHeightSintSIntegerSI��
*PSAnchorsSintSIntegerSI�
(PSSkinContextSenumSSI�
$PSHintScharptrSSSV�
)PS	HintMouseScharptrSSS��
0PS
HintMouseLeftSintSIntegerSI����џ
/PSHintMouseTopSintSIntegerSI�����
1PSHintMouseWidthSintSIntegerSI����P�
2PSHintMouseHeightSintSIntegerSI������
1PSHintIsTextCompletionSboolSSI��
#PSActiveSboolSSI��
'PS
ActiveControlSobjectSS/�
,PSBackgroundBrushSenumSSIk�
.PSBorderStyleSintSIntegerSI��
+PSPositionSintSIntegerSIߡ
-PS
StartWSizeSintSIntegerSI��
-PS
StartHSizeSintSIntegerSIxS�
+PSMaxWSizeSintSIntegerSI������
+PSMaxHSizeSintSIntegerSI����Ţ
+PSMinWSizeSintSIntegerSI���
+PSMinHSizeSintSIntegerSI����8�
,PS	StartXPosSintSIntegerSI����r�
,PS	StartYPosSintSIntegerSI�����
.PSMoBuAttrBlindDataSBlobSSIأ

BinaryDataRp\�
2PSMoBuRelationBlindDataSBlobSSIO�

BinaryDataRp/�
MotionBuilder_SystemL��9S
FBX ExportS"�
Properties70�
4PSMoBuTypeNameSKStringSSS__FBToolL�
/PSMoBuSubTypeNameSKStringSSS��
<PSMoBuObjectFullNameSKStringSSS
FBX Export˥
'PSCaptionScharptrSSS��
$PSEnabledSboolSSI0�
%PSReadOnlySboolSSIb�
$PSVisibleSboolSSI��
'PSLeftSintSIntegerSI˦
&PSTopSintSIntegerSI�
(PSWidthSintSIntegerSI8�
)PSHeightSintSIntegerSIp�
*PSAnchorsSintSIntegerSI��
(PSSkinContextSenumSSIا
$PSHintScharptrSSS�
)PS	HintMouseScharptrSSSM�
0PS
HintMouseLeftSintSIntegerSI������
/PSHintMouseTopSintSIntegerSI����ɨ
1PSHintMouseWidthSintSIntegerSI����	�
2PSHintMouseHeightSintSIntegerSI����H�
1PSHintIsTextCompletionSboolSSIy�
#PSActiveSboolSSI��
'PS
ActiveControlSobjectSS�
,PSBackgroundBrushSenumSSI$�
.PSBorderStyleSintSIntegerSI]�
+PSPositionSintSIntegerSI��
-PS
StartWSizeSintSIntegerSI^Ӫ
-PS
StartHSizeSintSIntegerSI��
+PSMaxWSizeSintSIntegerSI����E�
+PSMaxHSizeSintSIntegerSI����~�
+PSMinWSizeSintSIntegerSI���
+PSMinHSizeSintSIntegerSI�����
,PS	StartXPosSintSIntegerSI����+�
,PS	StartYPosSintSIntegerSI������
.PSMoBuAttrBlindDataSBlobSSI��

BinaryDataRp�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRp"�
 MotionBuilder_SystemLx�9S
HierarchyViewS�
Properties70ҭ
;PSMoBuTypeNameSKStringSSSKtHierarchyView�
/PSMoBuSubTypeNameSKStringSSS\�
?PSMoBuObjectFullNameSKStringSSS
HierarchyView��
.PSMoBuAttrBlindDataSBlobSSI�%��
�%
BinaryDataR�%p�%
HierarchyView5ShowGridI�%ObjectsAttributes�NameSReferenceModel�	XDO@�	YD��@�ExpandedIDNameSHipsModel	XDO@	YD��@7ExpandedI�NameSSpineModel}	XD�u��	YD��@�ExpandedI2NameSChestModel�	XD@x�	YD��@%ExpandedI�NameSNeckModelj	XDd���	YDP�@�ExpandedINameSHeadModel�	XD����	YD�@ExpandedI�NameSLeftEyeModelY	XD��p	YD �@�ExpandedINameSRightEyeModel�	XDl���	YD��@ExpandedI�NameS
JawModelH	XD~��_	YD �@yExpandedINameSTongueBackModel�	XD֧��	YD�@�ExpandedI}NameSTongueTipModel?	XD@��V	YD��@pExpandedI�NameSLeftLipLowerModel�	XD����	YD�@�ExpandedIsNameS
JawENDModel5	XD��L	YD��@fExpandedI�NameSRightLipLowerModel�	XD~���	YD�@�ExpandedIrNameSRightLipCornerModel4	XD��K	YD��@eExpandedI�NameSLeftLipCornerModel�	XDR���	YD�@�ExpandedIoNameSLeftLipUpperModel1	XD���H	YD��@bExpandedI�NameSLeftNostrilModel�	XD����	YD �@�ExpandedIg	NameSLeftCheekModel)		XDd��@		YD��@Z	ExpandedI�	NameSLeftEyelidLowerModel�		XD��		YD �@�	ExpandedIi
NameSLeftEyelidUpperModel+
	XD8��B
	YD��@\
ExpandedI�
NameSLeftInnerBrowModel�
	XDD���
	YD �@�
ExpandedIhNameSLeftIOuterBrowModel*	XD��A	YD��@[ExpandedI�NameSRightInnerBrowModel�	XD���	YD �@�ExpandedIiNameSRightIOuterBrowModel+	XD���B	YD��@\ExpandedI�NameSRightEyelidUpperModel�	XD����	YD �@�ExpandedIm
NameSRightEyelidLowerModel/
	XDh��F
	YD��@`
ExpandedI�
NameSRightCheekModel�
	XD<���
	YD �@�
ExpandedIgNameSRightNostrilModel)	XD��@	YD��@ZExpandedI�NameSRightLipUpperModel�	XD���	YD �@�ExpandedIeNameSRightShoulderModel'	XD�m�>	YD��@XExpandedI�NameSRightArmModel�	XD@q��	YDX�@�ExpandedI]NameSRightForeArmModel	XD�s�6	YD �@PExpandedI�NameSRightHandModel�	XD�u��	YD�@�ExpandedIYNameSRightHandPinky1Model	XD���2	YD��@LExpandedI�NameSRightHandPinky2Model�	XD���	YDx�@�ExpandedI[NameSRightHandPinky3Model	XD���4	YD �@NExpandedI�NameSRightHandRing1Model�	XD����	YDp�@�ExpandedI[NameSRightHandRing2Model	XD���4	YD8�@NExpandedI�NameSRightHandRing3Model�	XD؇��	YD�@�ExpandedI]NameSRightHandMiddle1Model	XD@x�6	YD��@PExpandedI�NameSRightHandMiddle2Model�	XD�z��	YDx�@�ExpandedIaNameSRightHandMiddle3Model#	XD�|�:	YD �@TExpandedI�NameSRightHandIndex1Model�	XDV��	YDp�@�ExpandedIcNameSRightHandIndex2Model%	XD�_�<	YD8�@VExpandedI�NameSRightHandIndex3Model�	XD`d��	YD�@�ExpandedIeNameSRightHandThumb1Model'	XD�j@>	YD��@XExpandedI�NameSRightHandThumb2Model�	XD�e@�	YDx�@�ExpandedIgNameSRightHandThumb3Model)	XD a@@	YD �@ZExpandedI�NameSLeftShoulderModel�	XD��@�	YD��@�ExpandedI^NameSLeftArmModel 	XD��@7	YDX�@QExpandedI�NameSLeftForeArmModel�	XDh�@�	YD �@�ExpandedIUNameSLeftHandModel	XDЗ@.	YD�@HExpandedI�NameSLeftHandPinky1Model�	XD��@�	YD��@�ExpandedIUNameSLeftHandPinky2Model	XD��@.	YDx�@HExpandedI�NameSLeftHandPinky3Model�	XD`�@�	YD �@�ExpandedITNameSLeftHandRing1Model	XD��@-	YDp�@GExpandedI�NameSLeftHandRing2Model�	XD��@�	YD8�@�ExpandedIRNameSLeftHandRing3Model	XD`�@+	YD�@EExpandedI�NameSLeftHandMiddle1Model�	XD<�@�	YD��@�ExpandedITNameSLeftHandMiddle2Model	XD��@-	YDx�@GExpandedI�NameSLeftHandMiddle3Model�	XD�@�	YD �@�ExpandedIUNameSLeftHandIndex1Model	XD�@.	YDp�@HExpandedI�NameSLeftHandIndex2Model�	XDT�@�	YD8�@�ExpandedIU NameSLeftHandIndex3Model 	XD��@. 	YD�@H ExpandedI� NameSLeftHandThumb1Model� 	XDN�@� 	YD��@� ExpandedIU!NameSLeftHandThumb2Model!	XD�@.!	YDx�@H!ExpandedI�!NameSLeftHandThumb3Model�!	XDp�@�!	YD �@�!ExpandedIQ"NameSRightUpLegModel"	XDޥ@*"	YD�@D"ExpandedI�"NameSRightLegModel�"	XD��@�"	YDȚ@�"ExpandedIF#NameSRightFootModel#	XDH�@#	YD��@9#ExpandedI�#NameSRightToesModel�#	XD��@�#	YDX�@�#ExpandedI<$NameSLeftUpLegModel�#	XDb�@$	YD�@/$ExpandedI�$NameSLeftLegModelw$	XD�@�$	YDȚ@�$ExpandedI/%NameSLeftFootModel�$	XD̨@%	YD��@"%ExpandedI�%NameSLeftToesModelk%	XD��@�%	YDX�@�%ExpandedI�
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
MotionBuilder_SystemLH��9S	TransportS��
Properties70��
,PSMoBuTypeNameSKStringSSS��
/PSMoBuSubTypeNameSKStringSSS8�
;PSMoBuObjectFullNameSKStringSSS	Transportm�
'PSCaptionScharptrSSS��
$PSEnabledSboolSSI��
%PSReadOnlySboolSSI�
$PSVisibleSboolSSI9�
'PSLeftSintSIntegerSIm�
&PSTopSintSIntegerSI��
(PSWidthSintSIntegerSI��
)PSHeightSintSIntegerSI�
*PSAnchorsSintSIntegerSIH�
(PSSkinContextSenumSSIz�
$PSHintScharptrSSS��
)PS	HintMouseScharptrSSS��
0PS
HintMouseLeftSintSIntegerSI����,�
/PSHintMouseTopSintSIntegerSI����k�
1PSHintMouseWidthSintSIntegerSI������
2PSHintMouseHeightSintSIntegerSI������
1PSHintIsTextCompletionSboolSSI�
#PSActiveSboolSSIP�
'PS
ActiveControlSobjectSS��
,PSBackgroundBrushSenumSSI��
.PSBorderStyleSintSIntegerSI��
+PSPositionSintSIntegerSI�
.PSMoBuAttrBlindDataSBlobSSI�
�
�
BinaryDataR�p�Transport Tool Settings;ZoomBar Settings�Avatart_T_StanceZoomWindowModeI�ZoomWindowTimeLLp6��5.1003_smallStep�ZoomWindowModeI!ZoomWindowTimeLL���"Audio Display Settings|AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI�SettingsJ
TimeFormatIhSnapOnFramesI�ReferenceTimeIndexI������
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
MotionBuilder_SystemL�$�9SFCurveS��
Properties705�
,PSMoBuTypeNameSKStringSSSr�
/PSMoBuSubTypeNameSKStringSSS��
8PSMoBuObjectFullNameSKStringSSSFCurve��
'PSCaptionScharptrSSS�
$PSEnabledSboolSSIR�
%PSReadOnlySboolSSI��
$PSVisibleSboolSSI��
'PSLeftSintSIntegerSI��
&PSTopSintSIntegerSI#�
(PSWidthSintSIntegerSIZ�
)PSHeightSintSIntegerSI��
*PSAnchorsSintSIntegerSI��
(PSSkinContextSenumSSI��
$PSHintScharptrSSS1�
)PS	HintMouseScharptrSSSo�
0PS
HintMouseLeftSintSIntegerSI������
/PSHintMouseTopSintSIntegerSI������
1PSHintMouseWidthSintSIntegerSI����+�
2PSHintMouseHeightSintSIntegerSI����j�
1PSHintIsTextCompletionSboolSSI��
#PSActiveSboolSSI��
'PS
ActiveControlSobjectSS
�
,PSBackgroundBrushSenumSSIF�
.PSBorderStyleSintSIntegerSI�
+PSPositionSintSIntegerSI.�
.PSMoBuAttrBlindDataSBlobSSIJ!�
O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
MotionBuilder_GenericL���9S
GlobalInfoS��
Properties70Z�
5PSMoBuTypeNameSKStringSSS	SceneInfo��
7PSMoBuSubTypeNameSKStringSSSUserData��
GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfoP�
.PSMoBuAttrBlindDataSBlobSSI�C�
�
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRpC�Connections-�
CSOOL�c�9LT�
CSOOL���;L.v){�
CSOOL�7�;L0Bv)��
CSOOLXp�;L(=v)��
CSOOL���;LHQv)��
CSOOL��;L�v)�
CSOOL T�;L3v)>�
CSOOL�	�;LPVv)e�
CSOOL�4�9L�^�9��
CSOOLP|�:Lx"�9��
CSOOL�O�:Lx"�9��
CSOOL8�:Lx"�9�
CSOOL`��:Lx"�9(�
CSOOLƅ:Lx"�9O�
CSOOL���:Lx"�9v�
CSOOL�Ӆ:Lx"�9��
CSOOLP߅:Lx"�9��
CSOOL���:Lx"�9��
CSOOLh�:Lx"�9�
CSOOLF�:Lx"�99�
CSOOL��:Lx"�9`�
CSOOL�T�:Lx"�9��
CSOOLHυ:Lx"�9��
CSOOLp5�:Lx"�9��
CSOOL��:Lx"�9��
CSOOL�A�:Lx"�9#�
CSOOL�p�:Lx"�9J�
CSOOL0��:Lx"�9q�
CSOOL�q�:Lx"�9��
CSOOL �:Lx"�9��
CSOOL(>�:Lx"�9��
CSOOL��:Lx"�9
�
CSOOL�:Lx"�94�
CSOOL0��:Lx"�9[�
CSOOL`��:Lx"�9��
CSOOL ��:Lx"�9��
CSOOL`��:Lx"�9��
CSOOL �:Lx"�9��
CSOOLhd�:Lx"�9�
CSOOLx̅:Lx"�9E�
CSOOL�M�:Lx"�9l�
CSOOLxE�:Lx"�9��
CSOOL(�:Lx"�9��
CSOOL��:Lx"�9��
CSOOL�U�:Lx"�9�
CSOOL���:Lx"�9/�
CSOOLЀ�:Lx"�9V�
CSOOL���:Lx"�9}�
CSOOL���:Lx"�9��
CSOOL�K�:Lx"�9��
CSOOL�Q�:Lx"�9��
CSOOLx�:Lx"�9�
CSOOL���:Lx"�9@�
CSOOLh7�:Lx"�9g�
CSOOL`��:Lx"�9��
CSOOLhЅ:Lx"�9��
CSOOL]�:Lx"�9��
CSOOL…:Lx"�9�
CSOOLXz�:Lx"�9*�
CSOOLP�:Lx"�9Q�
CSOOLHZ�:Lx"�9x�
CSOOLp�:Lx"�9��
CSOOL�݅:Lx"�9��
CSOOLxi�:Lx"�9��
CSOOLx�:Lx"�9�
CSOOLP+�:Lx"�9;�
CSOOL@S�:Lx"�9b�
CSOOL`�:Lx"�9��
CSOOL���:Lx"�9��
CSOOL�:Lx"�9��
CSOOLؐ�:Lx"�9��
CSOOL�h�:Lx"�9%�
CSOOLp��:Lx"�9L�
CSOOLP7;Lx"�9s�
CSOOLXo;Lx"�9��
CSOOL8n;Lx"�9��
CSOOL`<;Lx"�9��
CSOOLHj;Lx"�9�
CSOOL0g;Lx"�96�
CSOOL�d;Lx"�9]�
CSOOL�b;Lx"�9��
CSOOLHa;Lx"�9��
CSOOL�_;Lx"�9��
CSOOL];Lx"�9��
CSOOL�[;Lx"�9 �
CSOOL�/;Lx"�9G�
CSOOL�3;Lx"�9n�
CSOOL�V;Lx"�9��
CSOOLT;Lx"�9��
CSOOL�Q;Lx"�9��
CSOOL P;Lx"�9
�
CSOOLpN;Lx"�91�
CSOOL�L;Lx"�9X�
CSOOLX�;Lx"�9�
CSOOL`I;Lx"�9��
CSOOL�;Lx"�9��
CSOOL G;Lx"�9��
CSOOLF;Lx"�9�
CSOOL�;Lx"�9B�
CSOOL;Lx"�9i�
CSOOL�@;Lx"�9��
CSOOL�?;Lx"�9��
CSOOL8+;Lx"�9��
CSOOL�(;Lx"�9�
CSOOL�;Lx"�9,�
CSOOL�";Lx"�9S�
CSOOL� ;Lx"�9z�
CSOOL(;Lx"�9��
CSOOLX;Lx"�9��
CSOOL;Lx"�9��
CSOOL�;Lx"�9�
CSOOL�;Lx"�9=�
CSOOL�;Lx"�9d�
CSOOLH;Lx"�9��
CSOOLx	;Lx"�9��
CSOOL8;Lx"�9��
CSOOLX�;Lx"�9�
CSOOL(�;Lx"�9'�
CSOOL��;Lx"�9N�
CSOOL��;Lx"�9u�
CSOOL��;Lx"�9��
CSOOL��;Lx"�9��
CSOOL��;Lx"�9��
CSOOL(�;Lx"�9�
CSOOLX�;Lx"�98�
CSOOL�;Lx"�9_�
CSOOL��;Lx"�9��
CSOOL��;Lx"�9��
CSOOL��;Lx"�9��
CSOOLH�;Lx"�9��
CSOOLx�;Lx"�9"�
CSOOL8�;Lx"�9I�
CSOOL��;Lx"�9p�
CSOOL�;Lx"�9��
CSOOL��;Lx"�9��
CSOOL��;Lx"�9��
CSOOL��;Lx"�9�
CSOOLX�;Lx"�93�
CSOOLȿ;Lx"�9Z�
CSOOL��;Lx"�9��
CSOOL(�;Lx"�9��
CSOOLX�;Lx"�9��
CSOOL��;Lx"�9��
CSOOL��;Lx"�9CSOOL�;Lx"�9DCSOOL�;Lx"�9kCSOOLH�;Lx"�9�CSOOLx�;Lx"�9�CSOOLH�;Lx"�9�CSOOLh�;Lx"�9CSOOL��;Lx"�9.CSOOLX�;Lx"�9UCSOOL�;Lx"�9|CSOOL@�;Lx"�9�CSOOLp�;Lx"�9�CSOOL��;Lx"�9�CSOOLЇ;Lx"�9CSOOL�;Lx"�9?CSOOL0�;Lx"�9fCSOOLȀ;Lx"�9�CSOOL�݋<L�c�9�CSOOL�h�9L�c�9�CSOOL�ۋ<L�h�9CSOOL�m�9L�h�9)CSOOLP:L�h�9PCSOOL�?j;L�h�9�-CSOPLP|�:L�h�9SLcl Translation�-CSOPL;L�h�9SLcl Translation�*CSOPL�O�:L�h�9SLcl Rotation6*CSOPL�|;L�h�9SLcl Rotationm)CSOPL8�:L�h�9SLcl Scaling�)CSOPL�x;L�h�9SLcl Scaling�CSOOL�ڋ<L�m�9�CSOOL�r�9L�m�9**CSOPL`��:L�m�9SLcl Rotationb*CSOPL`v;L�m�9SLcl Rotation�)CSOPLƅ:L�m�9SLcl Scaling�)CSOPL�r;L�m�9SLcl Scaling�CSOOL8ڋ<L�r�9CSOOLx�9L�r�9ECSOOL8�V:L�r�9lCSOOL�`?;L�r�9�*CSOPL���:L�r�9SLcl Rotation�*CSOPL���<L�r�9SLcl Rotation)CSOPL�Ӆ:L�r�9SLcl ScalingJ)CSOPL���<L�r�9SLcl ScalingqCSOOLxً<Lx�9�CSOOL}�9Lx�9�*CSOPLP߅:Lx�9SLcl Rotation*CSOPL��<Lx�9SLcl Rotation?)CSOPL���:Lx�9SLcl Scalingv)CSOPL��<Lx�9SLcl Scaling�CSOOL�؋<L}�9�CSOOL��9L}�9�CSOOL��9L}�9	CSOOL ��9L}�99	CSOOL�:L}�9`	CSOOL �:L}�9�	CSOOL%�:L}�9�	CSOOL*�:L}�9�	CSOOL /�:L}�9�	CSOOL(4�:L}�9#
CSOOL09�:L}�9J
CSOOLiV:L}�9q
CSOOLnV:L}�9�
CSOOLsV:L}�9�
CSOOLxV:L}�9�
CSOOL }V:L}�9
CSOOL(�V:L}�94CSOOL0�V:L}�9l*CSOPLh�:L}�9SLcl Rotation�*CSOPL���<L}�9SLcl Rotation�)CSOPLF�:L}�9SLcl Scaling)CSOPL���<L}�9SLcl Scaling9CSOOL�׋<L��9q*CSOPL��:L��9SLcl Rotation�*CSOPL���<L��9SLcl Rotation�)CSOPL�T�:L��9SLcl Scaling
)CSOPLڊ<L��9SLcl Scaling>
CSOOL8׋<L��9v
*CSOPLHυ:L��9SLcl Rotation�
*CSOPL�݊<L��9SLcl Rotation�
)CSOPLp5�:L��9SLcl Scaling)CSOPL���<L��9SLcl ScalingCCSOOL8֋<L ��9jCSOOL(��9L ��9�CSOOL0��9L ��9�CSOOL��:L ��9�CSOOL��:L ��9CSOOL��:L ��9-CSOOL��:L ��9TCSOOL��:L ��9�*CSOPL��:L ��9SLcl Rotation�*CSOPL0�<L ��9SLcl Rotation�)CSOPL�A�:L ��9SLcl Scaling2)CSOPLx�<L ��9SLcl ScalingYCSOOLxՋ<L(��9�*CSOPL�p�:L(��9SLcl Rotation�*CSOPL�<L(��9SLcl Rotation)CSOPL0��:L(��9SLcl Scaling7)CSOPL��<L(��9SLcl Scaling^CSOOL�ԋ<L0��9�*CSOPL�q�:L0��9SLcl Rotation�*CSOPL0�<L0��9SLcl Rotation)CSOPL �:L0��9SLcl Scaling<)CSOPL�ߊ<L0��9SLcl ScalingcCSOOL�Ӌ<L��:�*CSOPL(>�:L��:SLcl Rotation�*CSOPL`�<L��:SLcl Rotation
)CSOPL��:L��:SLcl ScalingA)CSOPLȷ�<L��:SLcl ScalinghCSOOL8Ӌ<L��:�*CSOPL�:L��:SLcl Rotation�*CSOPLp��<L��:SLcl Rotation)CSOPL0��:L��:SLcl ScalingF)CSOPLXӊ<L��:SLcl ScalingmCSOOL8ҋ<L��:�*CSOPL`��:L��:SLcl Rotation�*CSOPL׊<L��:SLcl Rotation)CSOPL ��:L��:SLcl ScalingK)CSOPL�Њ<L��:SLcl ScalingrCSOOLxы<L��:�*CSOPL`��:L��:SLcl Rotation�*CSOPLʊ<L��:SLcl Rotation)CSOPL �:L��:SLcl ScalingP)CSOPLXʊ<L��:SLcl ScalingwCSOOL�Ћ<L��:�*CSOPLhd�:L��:SLcl Rotation�*CSOPL�Ê<L��:SLcl Rotation)CSOPLx̅:L��:SLcl ScalingU)CSOPL�NJ<L��:SLcl Scaling|CSOOL�ϋ<L�:�*CSOPL�M�:L�:SLcl Rotation�*CSOPL��<L�:SLcl Rotation#)CSOPLxE�:L�:SLcl ScalingZ)CSOPL��<L�:SLcl Scaling�CSOOL8ϋ<L �:�*CSOPL(�:L �:SLcl Rotation�*CSOPL���<L �:SLcl Rotation()CSOPL��:L �:SLcl Scaling_)CSOPLh��<L �:SLcl Scaling�CSOOLx΋<L%�:�*CSOPL�U�:L%�:SLcl Rotation�*CSOPLP��<L%�:SLcl Rotation-)CSOPL���:L%�:SLcl Scalingd)CSOPL8��<L%�:SLcl Scaling�CSOOL�͋<L*�:�*CSOPLЀ�:L*�:SLcl Rotation�*CSOPL ��<L*�:SLcl Rotation2)CSOPL���:L*�:SLcl Scalingi)CSOPL��<L*�:SLcl Scaling�CSOOL�̋<L /�:�*CSOPL���:L /�:SLcl Rotation*CSOPL�<L /�:SLcl Rotation7)CSOPL�K�:L /�:SLcl Scalingn)CSOPLء�<L /�:SLcl Scaling�CSOOL8̋<L(4�:�*CSOPL�Q�:L(4�:SLcl Rotation*CSOPL�<L(4�:SLcl Rotation<)CSOPLx�:L(4�:SLcl Scalings)CSOPLX��<L(4�:SLcl Scaling�CSOOLxˋ<L09�:�*CSOPL���:L09�:SLcl Rotation
*CSOPL@��<L09�:SLcl RotationA)CSOPLh7�:L09�:SLcl Scalingx)CSOPL(��<L09�:SLcl Scaling�CSOOLxʋ<LiV:�*CSOPL`��:LiV:SLcl Rotation*CSOPL`��<LiV:SLcl RotationF)CSOPLhЅ:LiV:SLcl Scaling})CSOPLH��<LiV:SLcl Scaling�CSOOL�ɋ<LnV:�*CSOPL]�:LnV:SLcl Rotation *CSOPL8�<LnV:SLcl RotationK )CSOPL…:LnV:SLcl Scaling� )CSOPLP�<LnV:SLcl Scaling� CSOOL�ȋ<LsV:� *CSOPLXz�:LsV:SLcl Rotation!*CSOPLh�<LsV:SLcl RotationP!)CSOPLP�:LsV:SLcl Scaling�!)CSOPL��<LsV:SLcl Scaling�!CSOOL�Nj<LxV:�!*CSOPLHZ�:LxV:SLcl Rotation"*CSOPL��<LxV:SLcl RotationU")CSOPLp�:LxV:SLcl Scaling�")CSOPL��<LxV:SLcl Scaling�"CSOOL8Nj<L }V:�"*CSOPL�݅:L }V:SLcl Rotation##*CSOPL��<L }V:SLcl RotationZ#)CSOPLxi�:L }V:SLcl Scaling�#)CSOPL��<L }V:SLcl Scaling�#CSOOLxƋ<L(�V:�#*CSOPLx�:L(�V:SLcl Rotation($*CSOPL� �<L(�V:SLcl Rotation_$)CSOPLP+�:L(�V:SLcl Scaling�$)CSOPL$�<L(�V:SLcl Scaling�$CSOOL�ŋ<L0�V:�$*CSOPL@S�:L0�V:SLcl Rotation-%*CSOPL('�<L0�V:SLcl Rotationd%)CSOPL`�:L0�V:SLcl Scaling�%)CSOPL@*�<L0�V:SLcl Scaling�%CSOOL�ċ<L8�V:�%CSOOL@�V:L8�V:!&*CSOPL���:L8�V:SLcl RotationY&*CSOPLX-�<L8�V:SLcl Rotation�&)CSOPL�:L8�V:SLcl Scaling�&)CSOPL1�<L8�V:SLcl Scaling�&CSOOL8ċ<L@�V:'CSOOLH�V:L@�V:M'*CSOPLؐ�:L@�V:SLcl Rotation�'*CSOPL4�<L@�V:SLcl Rotation�')CSOPL�h�:L@�V:SLcl Scaling�')CSOPL07�<L@�V:SLcl Scaling(CSOOLxË<LH�V:A(CSOOLP�V:LH�V:y(*CSOPLp��:LH�V:SLcl Rotation�(*CSOPLH:�<LH�V:SLcl Rotation�()CSOPLP7;LH�V:SLcl Scaling))CSOPL`=�<LH�V:SLcl ScalingF)CSOOL�‹<LP�V:m)CSOOLX�V:LP�V:�)CSOOL�5.;LP�V:�)CSOOL�D.;LP�V:�)CSOOL�S.;LP�V:	*CSOOL�b.;LP�V:A**CSOPLXo;LP�V:SLcl Rotationy**CSOPLx@�<LP�V:SLcl Rotation�*)CSOPL8n;LP�V:SLcl Scaling�*)CSOPL�C�<LP�V:SLcl Scaling+CSOOL���<LX�V:5+CSOOLx+.;LX�V:m+*CSOPL`<;LX�V:SLcl Rotation�+*CSOPL�F�<LX�V:SLcl Rotation�+)CSOPLHj;LX�V:SLcl Scaling,)CSOPL�I�<LX�V:SLcl Scaling:,CSOOL8��<Lx+.;a,CSOOL�0.;Lx+.;�,*CSOPL0g;Lx+.;SLcl Rotation�,*CSOPL�L�<Lx+.;SLcl Rotation-)CSOPL�d;Lx+.;SLcl Scaling?-)CSOPL�O�<Lx+.;SLcl Scalingf-CSOOLx��<L�0.;�-*CSOPL�b;L�0.;SLcl Rotation�-*CSOPLS�<L�0.;SLcl Rotation
.)CSOPLHa;L�0.;SLcl ScalingD.)CSOPL V�<L�0.;SLcl Scalingk.CSOOL���<L�5.;�.CSOOL�:.;L�5.;�.*CSOPL�_;L�5.;SLcl Rotation/*CSOPL8Y�<L�5.;SLcl Rotation9/)CSOPL];L�5.;SLcl Scalingp/)CSOPLP\�<L�5.;SLcl Scaling�/CSOOL���<L�:.;�/CSOOL�?.;L�:.;�/*CSOPL�[;L�:.;SLcl Rotation.0*CSOPLh_�<L�:.;SLcl Rotatione0)CSOPL�/;L�:.;SLcl Scaling�0)CSOPL�b�<L�:.;SLcl Scaling�0CSOOL8��<L�?.;�0*CSOPL�3;L�?.;SLcl Rotation31*CSOPL�e�<L�?.;SLcl Rotationj1)CSOPL�V;L�?.;SLcl Scaling�1)CSOPL�h�<L�?.;SLcl Scaling�1CSOOLx��<L�D.;�1CSOOL�I.;L�D.;'2*CSOPLT;L�D.;SLcl Rotation_2*CSOPL�k�<L�D.;SLcl Rotation�2)CSOPL�Q;L�D.;SLcl Scaling�2)CSOPL�n�<L�D.;SLcl Scaling�2CSOOL���<L�I.;3CSOOL�N.;L�I.;S3*CSOPL P;L�I.;SLcl Rotation�3*CSOPL�q�<L�I.;SLcl Rotation�3)CSOPLpN;L�I.;SLcl Scaling�3)CSOPLu�<L�I.;SLcl Scaling 4CSOOL���<L�N.;X4*CSOPL�L;L�N.;SLcl Rotation�4*CSOPL(x�<L�N.;SLcl Rotation�4)CSOPLX�;L�N.;SLcl Scaling�4)CSOPL@{�<L�N.;SLcl Scaling%5CSOOL8��<L�S.;L5CSOOL�X.;L�S.;�5*CSOPL`I;L�S.;SLcl Rotation�5*CSOPLX~�<L�S.;SLcl Rotation�5)CSOPL�;L�S.;SLcl Scaling*6)CSOPLp��<L�S.;SLcl ScalingQ6CSOOLx��<L�X.;x6CSOOL�].;L�X.;�6*CSOPL G;L�X.;SLcl Rotation�6*CSOPL���<L�X.;SLcl Rotation7)CSOPLF;L�X.;SLcl ScalingV7)CSOPL��>;L�X.;SLcl Scaling}7CSOOL���<L�].;�7*CSOPL�;L�].;SLcl Rotation�7*CSOPL��>;L�].;SLcl Rotation$8)CSOPL;L�].;SLcl Scaling[8)CSOPL��>;L�].;SLcl Scaling�8CSOOL���<L�b.;�8CSOOL�V?;L�b.;�8*CSOPL�@;L�b.;SLcl Rotation9*CSOPL`�>;L�b.;SLcl RotationP9)CSOPL�?;L�b.;SLcl Scaling�9)CSOPLH�>;L�b.;SLcl Scaling�9CSOOL8��<L�V?;�9CSOOL�[?;L�V?;
:*CSOPL8+;L�V?;SLcl RotationE:*CSOPL�>;L�V?;SLcl Rotation|:)CSOPL�(;L�V?;SLcl Scaling�:)CSOPL��>;L�V?;SLcl Scaling�:CSOOLx��<L�[?;;*CSOPL�;L�[?;SLcl RotationJ;*CSOPL��>;L�[?;SLcl Rotation�;)CSOPL�";L�[?;SLcl Scaling�;)CSOPL��>;L�[?;SLcl Scaling�;CSOOL���<L�`?;<CSOOL�e?;L�`?;><*CSOPL� ;L�`?;SLcl Rotationv<*CSOPLP�>;L�`?;SLcl Rotation�<)CSOPL(;L�`?;SLcl Scaling�<)CSOPL8�>;L�`?;SLcl Scaling=CSOOL���<L�e?;2=CSOOL�j?;L�e?;j=*CSOPLX;L�e?;SLcl Rotation�=*CSOPL�>;L�e?;SLcl Rotation�=)CSOPL;L�e?;SLcl Scaling>)CSOPL�>;L�e?;SLcl Scaling7>CSOOL8��<L�j?;^>CSOOL�o?;L�j?;�>*CSOPL�;L�j?;SLcl Rotation�>*CSOPLй>;L�j?;SLcl Rotation?)CSOPL�;L�j?;SLcl Scaling<?)CSOPL��>;L�j?;SLcl Scalingc?CSOOLx��<L�o?;�?CSOOL�t?;L�o?;�?CSOOLЃ?;L�o?;�?CSOOL�:L�o?;�?CSOOL �:L�o?;&@CSOOL8�:L�o?;^@*CSOPL�;L�o?;SLcl Rotation�@*CSOPL`�>;L�o?;SLcl Rotation�@)CSOPLH;L�o?;SLcl ScalingA)CSOPL(�>;L�o?;SLcl Scaling+ACSOOL���<L�t?;RACSOOL�y?;L�t?;�A*CSOPLx	;L�t?;SLcl Rotation�A*CSOPLU?;L�t?;SLcl Rotation�A)CSOPL8;L�t?;SLcl Scaling0B)CSOPLS?;L�t?;SLcl ScalingWBCSOOL���<L�y?;~BCSOOL�~?;L�y?;�B*CSOPLX�;L�y?;SLcl Rotation�B*CSOPLHP?;L�y?;SLcl Rotation%C)CSOPL(�;L�y?;SLcl Scaling\C)CSOPLN?;L�y?;SLcl Scaling�CCSOOL8��<L�~?;�C*CSOPL��;L�~?;SLcl Rotation�C*CSOPL�K?;L�~?;SLcl Rotation*D)CSOPL��;L�~?;SLcl ScalingaD)CSOPL�I?;L�~?;SLcl Scaling�DCSOOLx��<LЃ?;�DCSOOL؈?;LЃ?;�D*CSOPL��;LЃ?;SLcl RotationE*CSOPL��>;LЃ?;SLcl RotationVE)CSOPL��;LЃ?;SLcl Scaling�E)CSOPL0D?;LЃ?;SLcl Scaling�ECSOOL���<L؈?;�ECSOOL��?;L؈?;F*CSOPL��;L؈?;SLcl RotationKF*CSOPL�>;L؈?;SLcl Rotation�F)CSOPL(�;L؈?;SLcl Scaling�F)CSOPL�??;L؈?;SLcl Scaling�FCSOOL���<L��?;G*CSOPLX�;L��?;SLcl RotationPG*CSOPL��>;L��?;SLcl Rotation�G)CSOPL�;L��?;SLcl Scaling�G)CSOPL0;?;L��?;SLcl Scaling�GCSOOL8��<L�:HCSOOL�:L�:DH*CSOPL��;L�:SLcl Rotation|H*CSOPL�8?;L�:SLcl Rotation�H)CSOPL��;L�:SLcl Scaling�H)CSOPL�>;L�:SLcl ScalingICSOOLx��<L�:8ICSOOL�:L�:pI*CSOPL��;L�:SLcl Rotation�I*CSOPL@�>;L�:SLcl Rotation�I)CSOPLH�;L�:SLcl ScalingJ)CSOPLh�>;L�:SLcl Scaling=JCSOOL���<L�:uJ*CSOPLx�;L�:SLcl Rotation�J*CSOPL�/?;L�:SLcl Rotation�J)CSOPL8�;L�:SLcl ScalingK)CSOPLh-?;L�:SLcl ScalingBKCSOOL���<L �:iKCSOOL(�:L �:�K*CSOPL��;L �:SLcl Rotation�K*CSOPL�*?;L �:SLcl RotationL)CSOPL�;L �:SLcl ScalingGL)CSOPLP�>;L �:SLcl ScalingnLCSOOL8��<L(�:�LCSOOL0�:L(�:�L*CSOPL��;L(�:SLcl RotationM*CSOPL`&?;L(�:SLcl Rotation<M)CSOPL��;L(�:SLcl ScalingsM)CSOPL�>;L(�:SLcl Scaling�MCSOOLx��<L0�:�M*CSOPL��;L0�:SLcl Rotation
N*CSOPL�!?;L0�:SLcl RotationAN)CSOPLX�;L0�:SLcl ScalingxN)CSOPLX?;L0�:SLcl Scaling�NCSOOL���<L8�:�NCSOOL@:L8�:�N*CSOPLȿ;L8�:SLcl Rotation6O*CSOPL?;L8�:SLcl RotationmO)CSOPL��;L8�:SLcl Scaling�O)CSOPL�?;L8�:SLcl Scaling�OCSOOL���<L@:�OCSOOLH:L@:*P*CSOPL(�;L@:SLcl RotationbP*CSOPLP?;L@:SLcl Rotation�P)CSOPLX�;L@:SLcl Scaling�P)CSOPL?;L@:SLcl Scaling�PCSOOL8��<LH:/Q*CSOPL��;LH:SLcl RotationgQ*CSOPL�?;LH:SLcl Rotation�Q)CSOPL��;LH:SLcl Scaling�Q)CSOPLp�>;LH:SLcl Scaling�QCSOOLx��<LP:#RCSOOLX:LP:[R*CSOPL�;LP:SLcl Rotation�R*CSOPLP?;LP:SLcl Rotation�R)CSOPL�;LP:SLcl ScalingS)CSOPL�>;LP:SLcl Scaling(SCSOOL���<LX:OSCSOOL`:LX:�S*CSOPLH�;LX:SLcl Rotation�S*CSOPL?;LX:SLcl Rotation�S)CSOPLx�;LX:SLcl Scaling-T)CSOPL�?;LX:SLcl ScalingTTCSOOL���<L`:{TCSOOL�:j;L`:�T*CSOPLH�;L`:SLcl Rotation�T*CSOPL�?;L`:SLcl Rotation"U)CSOPLh�;L`:SLcl ScalingYU)CSOPL�?;L`:SLcl Scaling�UCSOOL8��<L�:j;�U*CSOPL��;L�:j;SLcl Rotation�U*CSOPLЌ>;L�:j;SLcl Rotation'V)CSOPLX�;L�:j;SLcl Scaling^V)CSOPLH�>;L�:j;SLcl Scaling�VCSOOLx��<L�?j;�VCSOOLEj;L�?j;�V*CSOPL�;L�?j;SLcl RotationW*CSOPL �>;L�?j;SLcl RotationSW)CSOPL@�;L�?j;SLcl Scaling�W)CSOPL��>;L�?j;SLcl Scaling�WCSOOL���<LEj;�WCSOOLJj;LEj;X*CSOPLp�;LEj;SLcl RotationHX*CSOPL@�>;LEj;SLcl RotationX)CSOPL��;LEj;SLcl Scaling�X)CSOPL��>;LEj;SLcl Scaling�XCSOOLxJ�<LJj;YCSOOLOj;LJj;<Y*CSOPLЇ;LJj;SLcl RotationtY*CSOPL��>;LJj;SLcl Rotation�Y)CSOPL�;LJj;SLcl Scaling�Y)CSOPLx�>;LJj;SLcl Scaling	ZCSOOLx�<LOj;AZ*CSOPL0�;LOj;SLcl RotationyZ*CSOPLȅ>;LOj;SLcl Rotation�Z)CSOPLȀ;LOj;SLcl Scaling�Z)CSOPLh�>;LOj;SLcl Scaling[CSOOLx"�9L�rZ:5[CSOOL�
�9L�rZ:\[CSOOLH`�9L��Z:�[CSOOL���9L��Z:�[CSOOL;LH`�9�[CSOOL�|;LH`�9�[CSOOL�x;LH`�9\CSOOL`v;LH`�9F\CSOOL�r;LH`�9m\CSOOL���<LH`�9�\CSOOL���<LH`�9�\CSOOL��<LH`�9�\CSOOL��<LH`�9	]CSOOL���<LH`�90]CSOOL���<LH`�9W]CSOOL���<LH`�9~]CSOOLڊ<LH`�9�]CSOOL�݊<LH`�9�]CSOOL���<LH`�9�]CSOOL0�<LH`�9^CSOOLx�<LH`�9A^CSOOL�<LH`�9h^CSOOL��<LH`�9�^CSOOL0�<LH`�9�^CSOOL�ߊ<LH`�9�^CSOOL`�<LH`�9_CSOOLȷ�<LH`�9+_CSOOLp��<LH`�9R_CSOOLXӊ<LH`�9y_CSOOL׊<LH`�9�_CSOOL�Њ<LH`�9�_CSOOLʊ<LH`�9�_CSOOLXʊ<LH`�9`CSOOL�Ê<LH`�9<`CSOOL�NJ<LH`�9c`CSOOL��<LH`�9�`CSOOL��<LH`�9�`CSOOL���<LH`�9�`CSOOLh��<LH`�9�`CSOOLP��<LH`�9&aCSOOL8��<LH`�9MaCSOOL ��<LH`�9taCSOOL��<LH`�9�aCSOOL�<LH`�9�aCSOOLء�<LH`�9�aCSOOL�<LH`�9bCSOOLX��<LH`�97bCSOOL@��<LH`�9^bCSOOL(��<LH`�9�bCSOOL`��<LH`�9�bCSOOLH��<LH`�9�bCSOOL8�<LH`�9�bCSOOLP�<LH`�9!cCSOOLh�<LH`�9HcCSOOL��<LH`�9ocCSOOL��<LH`�9�cCSOOL��<LH`�9�cCSOOL��<LH`�9�cCSOOL��<LH`�9dCSOOL� �<LH`�92dCSOOL$�<LH`�9YdCSOOL('�<LH`�9�dCSOOL@*�<LH`�9�dCSOOLX-�<LH`�9�dCSOOL1�<LH`�9�dCSOOL4�<LH`�9eCSOOL07�<LH`�9CeCSOOLH:�<LH`�9jeCSOOL`=�<LH`�9�eCSOOLx@�<LH`�9�eCSOOL�C�<LH`�9�eCSOOL�F�<LH`�9fCSOOL�I�<LH`�9-fCSOOL�L�<LH`�9TfCSOOL�O�<LH`�9{fCSOOLS�<LH`�9�fCSOOL V�<LH`�9�fCSOOL8Y�<LH`�9�fCSOOLP\�<LH`�9gCSOOLh_�<LH`�9>gCSOOL�b�<LH`�9egCSOOL�e�<LH`�9�gCSOOL�h�<LH`�9�gCSOOL�k�<LH`�9�gCSOOL�n�<LH`�9hCSOOL�q�<LH`�9(hCSOOLu�<LH`�9OhCSOOL(x�<LH`�9vhCSOOL@{�<LH`�9�hCSOOLX~�<LH`�9�hCSOOLp��<LH`�9�hCSOOL���<LH`�9iCSOOL��>;LH`�99iCSOOL��>;LH`�9`iCSOOL��>;LH`�9�iCSOOL`�>;LH`�9�iCSOOLH�>;LH`�9�iCSOOL�>;LH`�9�iCSOOL��>;LH`�9#jCSOOL��>;LH`�9JjCSOOL��>;LH`�9qjCSOOLP�>;LH`�9�jCSOOL8�>;LH`�9�jCSOOL�>;LH`�9�jCSOOL�>;LH`�9
kCSOOLй>;LH`�94kCSOOL��>;LH`�9[kCSOOL`�>;LH`�9�kCSOOL(�>;LH`�9�kCSOOLU?;LH`�9�kCSOOLS?;LH`�9�kCSOOLHP?;LH`�9lCSOOLN?;LH`�9ElCSOOL�K?;LH`�9llCSOOL�I?;LH`�9�lCSOOL��>;LH`�9�lCSOOL0D?;LH`�9�lCSOOL�>;LH`�9mCSOOL�??;LH`�9/mCSOOL��>;LH`�9VmCSOOL0;?;LH`�9}mCSOOL�8?;LH`�9�mCSOOL�>;LH`�9�mCSOOL@�>;LH`�9�mCSOOLh�>;LH`�9nCSOOL�/?;LH`�9@nCSOOLh-?;LH`�9gnCSOOL�*?;LH`�9�nCSOOLP�>;LH`�9�nCSOOL`&?;LH`�9�nCSOOL�>;LH`�9oCSOOL�!?;LH`�9*oCSOOLX?;LH`�9QoCSOOL?;LH`�9xoCSOOL�?;LH`�9�oCSOOLP?;LH`�9�oCSOOL?;LH`�9�oCSOOL�?;LH`�9pCSOOLp�>;LH`�9;pCSOOLP?;LH`�9bpCSOOL�>;LH`�9�pCSOOL?;LH`�9�pCSOOL�?;LH`�9�pCSOOL�?;LH`�9�pCSOOL�?;LH`�9%qCSOOLЌ>;LH`�9LqCSOOLH�>;LH`�9sqCSOOL �>;LH`�9�qCSOOL��>;LH`�9�qCSOOL@�>;LH`�9�qCSOOL��>;LH`�9rCSOOL��>;LH`�96rCSOOLx�>;LH`�9]rCSOOLȅ>;LH`�9�rCSOOLh�>;LH`�9�r!CSOPL�j\:LP|�:Sd|X�r!CSOPL`C\:LP|�:Sd|Ys!CSOPL�4\:LP|�:Sd|Z@s!CSOPL��[:L�O�:Sd|Xos!CSOPL0X\:L�O�:Sd|Y�s!CSOPL�D\:L�O�:Sd|Z�s!CSOPL@�[:L8�:Sd|X�s!CSOPL�s\:L8�:Sd|Y+t!CSOPL0�[:L8�:Sd|ZZt!CSOPL��[:L`��:Sd|X�t!CSOPL0�[:L`��:Sd|Y�t!CSOPL<\:L`��:Sd|Z�t!CSOPL01\:Lƅ:Sd|Xu!CSOPLЎ[:Lƅ:Sd|YEu!CSOPL�i\:Lƅ:Sd|Ztu!CSOPL�R\:L���:Sd|X�u!CSOPL�\:L���:Sd|Y�u!CSOPLC\:L���:Sd|Zv!CSOPLP�[:L�Ӆ:Sd|X0v!CSOPL@�[:L�Ӆ:Sd|Y_v!CSOPL
\:L�Ӆ:Sd|Z�v!CSOPLР[:LP߅:Sd|X�v!CSOPL\:LP߅:Sd|Y�v!CSOPLp�[:LP߅:Sd|Zw!CSOPL0�[:L���:Sd|XJw!CSOPL��[:L���:Sd|Yyw!CSOPL0�[:L���:Sd|Z�w!CSOPL�[:Lh�:Sd|X�w!CSOPL��[:Lh�:Sd|Yx!CSOPL�]\:Lh�:Sd|Z5x!CSOPL��[:LF�:Sd|Xdx!CSOPL�[:LF�:Sd|Y�x!CSOPL 2\:LF�:Sd|Z�x!CSOPL�\:L���:Sd|X�x!CSOPL��[:L���:Sd|Y y!CSOPLK\:L���:Sd|ZOy!CSOPLP�[:L�:Sd|X~y!CSOPL�U\:L�:Sd|Y�y!CSOPL0^\:L�:Sd|Z�y!CSOPL �[:Lؐ�:Sd|Xz!CSOPL�d\:Lؐ�:Sd|Y:z!CSOPL��\:Lؐ�:Sd|Ziz!CSOPL�%\:L�h�:Sd|X�z!CSOPL �[:L�h�:Sd|Y�z!CSOPLp�[:L�h�:Sd|Z�z!CSOPLp\:Lp��:Sd|X%{!CSOPL�
\:Lp��:Sd|YT{!CSOPL�\:Lp��:Sd|Z�{!CSOPL�)\:LP7;Sd|X�{!CSOPL��[:LP7;Sd|Y�{!CSOPL@�[:LP7;Sd|Z|!CSOPL��[:LXo;Sd|X?|!CSOPLp�[:LXo;Sd|Yn|!CSOPL��[:LXo;Sd|Z�|!CSOPLPY\:L8n;Sd|X�|!CSOPLPP\:L8n;Sd|Y�|!CSOPL�e\:L8n;Sd|Z*}!CSOPL�L\:L`<;Sd|XY}!CSOPL�f\:L`<;Sd|Y�}!CSOPL��[:L`<;Sd|Z�}!CSOPLP�[:LHj;Sd|X�}!CSOPL��[:LHj;Sd|Y~!CSOPL`O\:LHj;Sd|ZD~!CSOPL��[:L0g;Sd|Xs~!CSOPL��[:L0g;Sd|Y�~!CSOPL�n\:L0g;Sd|Z�~!CSOPL@�[:L�d;Sd|X!CSOPLp�[:L�d;Sd|Y/!CSOPL�g\:L�d;Sd|Z^!CSOPL��[:L�b;Sd|X�!CSOPL��[:L�b;Sd|Y�!CSOPLB\:L�b;Sd|Z�!CSOPL >\:LHa;Sd|X�!CSOPL��[:LHa;Sd|YI�!CSOPL��[:LHa;Sd|Zx�!CSOPL \:L�_;Sd|X��!CSOPL �[:L�_;Sd|Yր!CSOPL�K\:L�_;Sd|Z�!CSOPL@{\:L];Sd|X4�!CSOPL��[:L];Sd|Yc�!CSOPLp�[:L];Sd|Z��!CSOPLi\:L�[;Sd|X��!CSOPL�H\:L�[;Sd|Y��!CSOPLPJ\:L�[;Sd|Z�!CSOPL�T\:L�/;Sd|XN�!CSOPL��[:L�/;Sd|Y}�!CSOPLPz\:L�/;Sd|Z��!CSOPL`�[:L�3;Sd|Xۂ!CSOPL��[:L�3;Sd|Y
�!CSOPL�\:L�3;Sd|Z9�!CSOPL��[:L�V;Sd|Xh�!CSOPL��[:L�V;Sd|Y��!CSOPL`�[:L�V;Sd|Zƃ!CSOPL�f\:LT;Sd|X��!CSOPL�W\:LT;Sd|Y$�!CSOPL��[:LT;Sd|ZS�!CSOPL�y\:L�Q;Sd|X��!CSOPLP\:L�Q;Sd|Y��!CSOPL��[:L�Q;Sd|Z��!CSOPL|\:L P;Sd|X�!CSOPL-\:L P;Sd|Y>�!CSOPL�g\:L P;Sd|Zm�!CSOPL�/\:LpN;Sd|X��!CSOPL`�[:LpN;Sd|Y˅!CSOPL0�[:LpN;Sd|Z��!CSOPL �[:L�L;Sd|X)�!CSOPL�N\:L�L;Sd|YX�!CSOPL��[:L�L;Sd|Z��!CSOPL�4\:LX�;Sd|X��!CSOPL�m\:LX�;Sd|Y�!CSOPL��[:LX�;Sd|Z�!CSOPLs\:L`I;Sd|XC�!CSOPL"\:L`I;Sd|Yr�!CSOPL0�[:L`I;Sd|Z��!CSOPL��[:L�;Sd|XЇ!CSOPL��[:L�;Sd|Y��!CSOPL��[:L�;Sd|Z.�!CSOPL�^\:L G;Sd|X]�!CSOPL��[:L G;Sd|Y��!CSOPLg\:L G;Sd|Z��!CSOPL�[:LF;Sd|X�!CSOPL��[:LF;Sd|Y�!CSOPL`\:LF;Sd|ZH�!CSOPL�\:L�;Sd|Xw�!CSOPL�G\:L�;Sd|Y��!CSOPL�[:L�;Sd|ZՉ!CSOPL��[:L;Sd|X�!CSOPL0�[:L;Sd|Y3�!CSOPL�\\:L;Sd|Zb�!CSOPL\:L�@;Sd|X��!CSOPL��[:L�@;Sd|Y��!CSOPL0|\:L�@;Sd|Z�!CSOPLP�[:L�?;Sd|X�!CSOPL��[:L�?;Sd|YM�!CSOPL0�[:L�?;Sd|Z|�!CSOPL��[:L8+;Sd|X��!CSOPL=\:L8+;Sd|Yڋ!CSOPL��[:L8+;Sd|Z	�!CSOPL\:L�(;Sd|X8�!CSOPL�\:L�(;Sd|Yg�!CSOPLp�[:L�(;Sd|Z��!CSOPL��[:L�;Sd|XŌ!CSOPL�[:L�;Sd|Y�!CSOPL��[:L�;Sd|Z#�!CSOPLp�[:L�";Sd|XR�!CSOPL0\:L�";Sd|Y��!CSOPL��[:L�";Sd|Z��!CSOPL04\:L� ;Sd|Xߍ!CSOPLpo\:L� ;Sd|Y�!CSOPL�\:L� ;Sd|Z=�!CSOPL`�[:L(;Sd|Xl�!CSOPL`[\:L(;Sd|Y��!CSOPL��[:L(;Sd|Zʎ!CSOPL��[:LX;Sd|X��!CSOPL�[:LX;Sd|Y(�!CSOPL`(\:LX;Sd|ZW�!CSOPL�[:L;Sd|X��!CSOPL�\:L;Sd|Y��!CSOPL�
\:L;Sd|Z�!CSOPL�\:L�;Sd|X�!CSOPLP\:L�;Sd|YB�!CSOPL`�[:L�;Sd|Zq�!CSOPL��[:L�;Sd|X��!CSOPL��[:L�;Sd|Yϐ!CSOPLp�[:L�;Sd|Z��!CSOPL�<\:L�;Sd|X-�!CSOPL@�[:L�;Sd|Y\�!CSOPL�Q\:L�;Sd|Z��!CSOPL@\:LH;Sd|X��!CSOPLF\:LH;Sd|Y�!CSOPL`7\:LH;Sd|Z�!CSOPL��[:Lx	;Sd|XG�!CSOPL\:Lx	;Sd|Yv�!CSOPLPw\:Lx	;Sd|Z��!CSOPL�F\:L8;Sd|XԒ!CSOPL��[:L8;Sd|Y�!CSOPL@�[:L8;Sd|Z2�!CSOPLp�[:LX�;Sd|Xa�!CSOPL��[:LX�;Sd|Y��!CSOPL�[:LX�;Sd|Z��!CSOPL0\:L(�;Sd|X�!CSOPL�\:L(�;Sd|Y�!CSOPL��[:L(�;Sd|ZL�!CSOPL�[:L��;Sd|X{�!CSOPL��[:L��;Sd|Y��!CSOPL �[:L��;Sd|Zٔ!CSOPL0�[:L��;Sd|X�!CSOPL��[:L��;Sd|Y7�!CSOPL��[:L��;Sd|Zf�!CSOPL��[:L��;Sd|X��!CSOPL�[:L��;Sd|Yĕ!CSOPL0"\:L��;Sd|Z�!CSOPL�-\:L��;Sd|X"�!CSOPL��[:L��;Sd|YQ�!CSOPL�[:L��;Sd|Z��!CSOPLpc\:L��;Sd|X��!CSOPL��[:L��;Sd|Yޖ!CSOPL�\:L��;Sd|Z
�!CSOPL�&\:L(�;Sd|X<�!CSOPL��[:L(�;Sd|Yk�!CSOPL�\:L(�;Sd|Z��!CSOPL�y\:LX�;Sd|Xɗ!CSOPL �[:LX�;Sd|Y��!CSOPLP�[:LX�;Sd|Z'�!CSOPL �[:L�;Sd|XV�!CSOPL��[:L�;Sd|Y��!CSOPLp\:L�;Sd|Z��!CSOPL�%\:L��;Sd|X�!CSOPL\:L��;Sd|Y�!CSOPL \:L��;Sd|ZA�!CSOPL�[:L��;Sd|Xp�!CSOPLP�[:L��;Sd|Y��!CSOPLP�[:L��;Sd|ZΙ!CSOPLК[:L��;Sd|X��!CSOPL@�[:L��;Sd|Y,�!CSOPL�Y\:L��;Sd|Z[�!CSOPL0�[:LH�;Sd|X��!CSOPL�e\:LH�;Sd|Y��!CSOPL�V\:LH�;Sd|Z�!CSOPLp�[:Lx�;Sd|X�!CSOPL@u\:Lx�;Sd|YF�!CSOPL@�[:Lx�;Sd|Zu�!CSOPL\:L8�;Sd|X��!CSOPL h\:L8�;Sd|Yӛ!CSOPL�\:L8�;Sd|Z�!CSOPL`�[:L��;Sd|X1�!CSOPLP�[:L��;Sd|Y`�!CSOPL0�[:L��;Sd|Z��!CSOPL$\:L�;Sd|X��!CSOPLP�[:L�;Sd|Y�!CSOPL�[:L�;Sd|Z�!CSOPL�G\:L��;Sd|XK�!CSOPL�q\:L��;Sd|Yz�!CSOPLP&\:L��;Sd|Z��!CSOPL��[:L��;Sd|X؝!CSOPL`:\:L��;Sd|Y�!CSOPL��[:L��;Sd|Z6�!CSOPLPh\:L��;Sd|Xe�!CSOPL��[:L��;Sd|Y��!CSOPL`�[:L��;Sd|ZÞ!CSOPL�;\:LX�;Sd|X�!CSOPL`L\:LX�;Sd|Y!�!CSOPL`m\:LX�;Sd|ZP�!CSOPL�[:Lȿ;Sd|X�!CSOPL��[:Lȿ;Sd|Y��!CSOPLp]\:Lȿ;Sd|Zݟ!CSOPL��[:L��;Sd|X�!CSOPL0�[:L��;Sd|Y;�!CSOPL�P\:L��;Sd|Zj�!CSOPL��[:L(�;Sd|X��!CSOPL�|\:L(�;Sd|YȠ!CSOPL��[:L(�;Sd|Z��!CSOPL��[:LX�;Sd|X&�!CSOPL0�[:LX�;Sd|YU�!CSOPL0�[:LX�;Sd|Z��!CSOPL��[:L��;Sd|X��!CSOPL�G\:L��;Sd|Y�!CSOPL[\:L��;Sd|Z�!CSOPL\:L��;Sd|X@�!CSOPL��[:L��;Sd|Yo�!CSOPL�L\:L��;Sd|Z��!CSOPL�n\:L�;Sd|X͢!CSOPL��[:L�;Sd|Y��!CSOPL��[:L�;Sd|Z+�!CSOPL �[:L�;Sd|XZ�!CSOPL0�[:L�;Sd|Y��!CSOPL��[:L�;Sd|Z��!CSOPL�\:LH�;Sd|X�!CSOPL�k\:LH�;Sd|Y�!CSOPLpZ\:LH�;Sd|ZE�!CSOPL@�[:Lx�;Sd|Xt�!CSOPL �[:Lx�;Sd|Y��!CSOPLP�[:Lx�;Sd|ZҤ!CSOPL�[:LH�;Sd|X�!CSOPL0.\:LH�;Sd|Y0�!CSOPL�-\:LH�;Sd|Z_�!CSOPL��[:Lh�;Sd|X��!CSOPL�\:Lh�;Sd|Y��!CSOPL�0\:Lh�;Sd|Z�!CSOPL  \:L�;Sd|X�!CSOPL�@\:L�;Sd|YJ�!CSOPLP�[:L�;Sd|Zy�!CSOPL�[:L@�;Sd|X��!CSOPL3\:L@�;Sd|Yצ!CSOPL@�[:L@�;Sd|Z�!CSOPL�:\:Lp�;Sd|X5�!CSOPL��[:Lp�;Sd|Yd�!CSOPL�\:Lp�;Sd|Z��!CSOPLP�[:L��;Sd|X§!CSOPL \:L��;Sd|Y�!CSOPL�\:L��;Sd|Z �!CSOPL�\:LЇ;Sd|XO�!CSOPL0�[:LЇ;Sd|Y~�!CSOPL0�[:LЇ;Sd|Z��!CSOPL�h\:L�;Sd|Xܨ!CSOPL��[:L�;Sd|Y�!CSOPL�\:L�;Sd|Z:�!CSOPLУ[:L;Sd|Xi�!CSOPL@x\:L;Sd|Y��!CSOPLp�[:L;Sd|Zǩ!CSOPL��[:L�|;Sd|X��!CSOPL\:L�|;Sd|Y%�!CSOPL�/\:L�|;Sd|ZT�!CSOPL��[:L�x;Sd|X��!CSOPL��[:L�x;Sd|Y��!CSOPL@�[:L�x;Sd|Z�!CSOPL��[:L`v;Sd|X�!CSOPL0�[:L`v;Sd|Y?�!CSOPL�q\:L`v;Sd|Zn�!CSOPL`@\:L�r;Sd|X��!CSOPL��[:L�r;Sd|Y̫!CSOPL@\:L�r;Sd|Z��!CSOPL�[:L���<Sd|X*�!CSOPL�o\:L���<Sd|YY�!CSOPL`\:L���<Sd|Z��!CSOPL�[:L���<Sd|X��!CSOPL�\:L���<Sd|Y�!CSOPL@0\:L���<Sd|Z�!CSOPL��[:L��<Sd|XD�!CSOPL1\:L��<Sd|Ys�!CSOPL��[:L��<Sd|Z��!CSOPL �[:L��<Sd|Xѭ!CSOPL�[:L��<Sd|Y�!CSOPL��[:L��<Sd|Z/�!CSOPLQ\:L���<Sd|X^�!CSOPL��[:L���<Sd|Y��!CSOPL@�[:L���<Sd|Z��!CSOPL�h\:L���<Sd|X�!CSOPLj\:L���<Sd|Y�!CSOPL �[:L���<Sd|ZI�!CSOPLp�[:L���<Sd|Xx�!CSOPL�[:L���<Sd|Y��!CSOPL��[:L���<Sd|Z֯!CSOPL��[:Lڊ<Sd|X�!CSOPL�\:Lڊ<Sd|Y4�!CSOPLp�[:Lڊ<Sd|Zc�!CSOPL@�[:L�݊<Sd|X��!CSOPL��[:L�݊<Sd|Y��!CSOPL@B\:L�݊<Sd|Z�!CSOPL@o\:L���<Sd|X�!CSOPL �[:L���<Sd|YN�!CSOPL�	\:L���<Sd|Z}�!CSOPL�[:L0�<Sd|X��!CSOPLp\:L0�<Sd|Y۱!CSOPL �[:L0�<Sd|Z
�!CSOPLP8\:Lx�<Sd|X9�!CSOPL�\:Lx�<Sd|Yh�!CSOPLP�[:Lx�<Sd|Z��!CSOPLpT\:L�<Sd|XƲ!CSOPL��[:L�<Sd|Y��!CSOPL@�[:L�<Sd|Z$�!CSOPL�9\:L��<Sd|XS�!CSOPL4\:L��<Sd|Y��!CSOPL@\:L��<Sd|Z��!CSOPLpx\:L0�<Sd|X�!CSOPLP�[:L0�<Sd|Y�!CSOPL@9\:L0�<Sd|Z>�!CSOPL \\:L�ߊ<Sd|Xm�!CSOPL�[:L�ߊ<Sd|Y��!CSOPL �[:L�ߊ<Sd|Z˴!CSOPL�U\:L`�<Sd|X��!CSOPL�\:L`�<Sd|Y)�!CSOPL�u\:L`�<Sd|ZX�!CSOPL��[:Lȷ�<Sd|X��!CSOPL0=\:Lȷ�<Sd|Y��!CSOPL�[:Lȷ�<Sd|Z�!CSOPL�[:Lp��<Sd|X�!CSOPLP�[:Lp��<Sd|YC�!CSOPL�7\:Lp��<Sd|Zr�!CSOPL�
\:LXӊ<Sd|X��!CSOPLp�[:LXӊ<Sd|Yж!CSOPL�8\:LXӊ<Sd|Z��!CSOPL�j\:L׊<Sd|X.�!CSOPLp\:L׊<Sd|Y]�!CSOPL��[:L׊<Sd|Z��!CSOPL �[:L�Њ<Sd|X��!CSOPL�\:L�Њ<Sd|Y�!CSOPL@Z\:L�Њ<Sd|Z�!CSOPL�[:Lʊ<Sd|XH�!CSOPL�[:Lʊ<Sd|Yw�!CSOPL�x\:Lʊ<Sd|Z��!CSOPL��[:LXʊ<Sd|Xո!CSOPL��[:LXʊ<Sd|Y�!CSOPLP�\:LXʊ<Sd|Z3�!CSOPL0v\:L�Ê<Sd|Xb�!CSOPL��[:L�Ê<Sd|Y��!CSOPL�A\:L�Ê<Sd|Z��!CSOPL A\:L�NJ<Sd|X�!CSOPLp0\:L�NJ<Sd|Y�!CSOPL�A\:L�NJ<Sd|ZM�!CSOPL@6\:L��<Sd|X|�!CSOPL�o\:L��<Sd|Y��!CSOPL��M;L��<Sd|Zں!CSOPL��M;L��<Sd|X	�!CSOPL��M;L��<Sd|Y8�!CSOPL��M;L��<Sd|Zg�!CSOPLh�M;L���<Sd|X��!CSOPLN;L���<Sd|YŻ!CSOPL��M;L���<Sd|Z��!CSOPL�TN;Lh��<Sd|X#�!CSOPLxN;Lh��<Sd|YR�!CSOPL��N;Lh��<Sd|Z��!CSOPL��N;LP��<Sd|X��!CSOPL�rN;LP��<Sd|Y߼!CSOPL��M;LP��<Sd|Z�!CSOPL��M;L8��<Sd|X=�!CSOPLȫM;L8��<Sd|Yl�!CSOPLh�M;L8��<Sd|Z��!CSOPL��N;L ��<Sd|Xʽ!CSOPL8 N;L ��<Sd|Y��!CSOPLXHN;L ��<Sd|Z(�!CSOPLXN;L��<Sd|XW�!CSOPLHN;L��<Sd|Y��!CSOPLHdN;L��<Sd|Z��!CSOPL�N;L�<Sd|X�!CSOPL/N;L�<Sd|Y�!CSOPLXN;L�<Sd|ZB�!CSOPLH�M;Lء�<Sd|Xq�!CSOPLh\N;Lء�<Sd|Y��!CSOPL�eN;Lء�<Sd|ZϿ!CSOPLx4N;L�<Sd|X��!CSOPL�M;L�<Sd|Y-�!CSOPL�M;L�<Sd|Z\�!CSOPL�,N;LX��<Sd|X��!CSOPL��M;LX��<Sd|Y��!CSOPLXN;LX��<Sd|Z��!CSOPLX�M;L@��<Sd|X�!CSOPL��M;L@��<Sd|YG�!CSOPLx�M;L@��<Sd|Zv�!CSOPLH1N;L(��<Sd|X��!CSOPLHgN;L(��<Sd|Y��!CSOPL8�M;L(��<Sd|Z�!CSOPLN;L`��<Sd|X2�!CSOPLh N;L`��<Sd|Ya�!CSOPL8,N;L`��<Sd|Z��!CSOPL�N;LH��<Sd|X��!CSOPLXfN;LH��<Sd|Y��!CSOPLHN;LH��<Sd|Z�!CSOPLH(N;L8�<Sd|XL�!CSOPL8�M;L8�<Sd|Y{�!CSOPLH�M;L8�<Sd|Z��!CSOPLȖM;LP�<Sd|X��!CSOPLH�M;LP�<Sd|Y�!CSOPL�VN;LP�<Sd|Z7�!CSOPL�KN;Lh�<Sd|Xf�!CSOPL�0N;Lh�<Sd|Y��!CSOPLx�M;Lh�<Sd|Z��!CSOPL��M;L��<Sd|X��!CSOPL8PN;L��<Sd|Y"�!CSOPLXiN;L��<Sd|ZQ�!CSOPL�N;L��<Sd|X��!CSOPL N;L��<Sd|Y��!CSOPLx�M;L��<Sd|Z��!CSOPL�eN;L��<Sd|X
�!CSOPL8eN;L��<Sd|Y<�!CSOPL�M;L��<Sd|Zk�!CSOPL8)N;L��<Sd|X��!CSOPL؞M;L��<Sd|Y��!CSOPLxyN;L��<Sd|Z��!CSOPLX{N;L��<Sd|X'�!CSOPLh�N;L��<Sd|YV�!CSOPL��M;L��<Sd|Z��!CSOPLaN;L� �<Sd|X��!CSOPL(�M;L� �<Sd|Y��!CSOPLH�M;L� �<Sd|Z�!CSOPLHsN;L$�<Sd|XA�!CSOPLdN;L$�<Sd|Yp�!CSOPL8JN;L$�<Sd|Z��!CSOPL��M;L('�<Sd|X��!CSOPL�'N;L('�<Sd|Y��!CSOPL�M;L('�<Sd|Z,�!CSOPL��M;L@*�<Sd|X[�!CSOPL�N;L@*�<Sd|Y��!CSOPLx"N;L@*�<Sd|Z��!CSOPLh;N;LX-�<Sd|X��!CSOPL�M;LX-�<Sd|Y�!CSOPLH�M;LX-�<Sd|ZF�!CSOPLPN;L1�<Sd|Xu�!CSOPLH�M;L1�<Sd|Y��!CSOPLx�M;L1�<Sd|Z��!CSOPL�N;L4�<Sd|X�!CSOPL(N;L4�<Sd|Y1�!CSOPL(�M;L4�<Sd|Z`�!CSOPL+N;L07�<Sd|X��!CSOPL�N;L07�<Sd|Y��!CSOPL8hN;L07�<Sd|Z��!CSOPL�MN;LH:�<Sd|X�!CSOPL��M;LH:�<Sd|YK�!CSOPL��M;LH:�<Sd|Zz�!CSOPLx�N;L`=�<Sd|X��!CSOPL��M;L`=�<Sd|Y��!CSOPL8DN;L`=�<Sd|Z�!CSOPL�gN;Lx@�<Sd|X6�!CSOPLȨM;Lx@�<Sd|Ye�!CSOPLxN;Lx@�<Sd|Z��!CSOPL=N;L�C�<Sd|X��!CSOPLx�M;L�C�<Sd|Y��!CSOPLH�M;L�C�<Sd|Z!�!CSOPL��M;L�F�<Sd|XP�!CSOPLh�M;L�F�<Sd|Y�!CSOPL�1N;L�F�<Sd|Z��!CSOPL7N;L�I�<Sd|X��!CSOPL�/N;L�I�<Sd|Y�!CSOPL��M;L�I�<Sd|Z;�!CSOPL�kN;L�L�<Sd|Xj�!CSOPLXKN;L�L�<Sd|Y��!CSOPLh�M;L�L�<Sd|Z��!CSOPLX	N;L�O�<Sd|X��!CSOPL(�M;L�O�<Sd|Y&�!CSOPLx�M;L�O�<Sd|ZU�!CSOPL�N;LS�<Sd|X��!CSOPL�M;LS�<Sd|Y��!CSOPLX�M;LS�<Sd|Z��!CSOPL��M;L V�<Sd|X�!CSOPL�lN;L V�<Sd|Y@�!CSOPL�-N;L V�<Sd|Zo�!CSOPLXrN;L8Y�<Sd|X��!CSOPLtN;L8Y�<Sd|Y��!CSOPL�1N;L8Y�<Sd|Z��!CSOPLx�M;LP\�<Sd|X+�!CSOPL8;N;LP\�<Sd|YZ�!CSOPL�yN;LP\�<Sd|Z��!CSOPLh�M;Lh_�<Sd|X��!CSOPL��M;Lh_�<Sd|Y��!CSOPL�xN;Lh_�<Sd|Z�!CSOPL8N;L�b�<Sd|XE�!CSOPL��M;L�b�<Sd|Yt�!CSOPLXN;L�b�<Sd|Z��!CSOPLh�M;L�e�<Sd|X��!CSOPL��M;L�e�<Sd|Y�!CSOPLH�M;L�e�<Sd|Z0�!CSOPL(uN;L�h�<Sd|X_�!CSOPLhYN;L�h�<Sd|Y��!CSOPL8�M;L�h�<Sd|Z��!CSOPL�NN;L�k�<Sd|X��!CSOPL(�M;L�k�<Sd|Y�!CSOPL��M;L�k�<Sd|ZJ�!CSOPL�N;L�n�<Sd|Xy�!CSOPLwN;L�n�<Sd|Y��!CSOPLؕM;L�n�<Sd|Z��!CSOPL�DN;L�q�<Sd|X�!CSOPL�M;L�q�<Sd|Y5�!CSOPL��N;L�q�<Sd|Zd�!CSOPL�N;Lu�<Sd|X��!CSOPL�5N;Lu�<Sd|Y��!CSOPL�N;Lu�<Sd|Z��!CSOPL�N;L(x�<Sd|X �!CSOPL��M;L(x�<Sd|YO�!CSOPL(�M;L(x�<Sd|Z~�!CSOPLx�M;L@{�<Sd|X��!CSOPL�zN;L@{�<Sd|Y��!CSOPL�M;L@{�<Sd|Z�!CSOPLH.N;LX~�<Sd|X:�!CSOPL��M;LX~�<Sd|Yi�!CSOPL�~N;LX~�<Sd|Z��!CSOPL|N;Lp��<Sd|X��!CSOPL�N;Lp��<Sd|Y��!CSOPLH�M;Lp��<Sd|Z%�!CSOPL��M;L���<Sd|XT�!CSOPL�N;L���<Sd|Y��!CSOPLșM;L���<Sd|Z��!CSOPL�N;L��>;Sd|X��!CSOPLX�M;L��>;Sd|Y�!CSOPL�M;L��>;Sd|Z?�!CSOPL�KN;L��>;Sd|Xn�!CSOPL(�M;L��>;Sd|Y��!CSOPLXoN;L��>;Sd|Z��!CSOPL(oN;L��>;Sd|X��!CSOPLX�M;L��>;Sd|Y*�!CSOPL(QN;L��>;Sd|ZY�!CSOPLX�N;L`�>;Sd|X��!CSOPLx�M;L`�>;Sd|Y��!CSOPL(fN;L`�>;Sd|Z��!CSOPL��M;LH�>;Sd|X�!CSOPL��M;LH�>;Sd|YD�!CSOPLX�M;LH�>;Sd|Zs�!CSOPLX�M;L�>;Sd|X��!CSOPL.N;L�>;Sd|Y��!CSOPL�dN;L�>;Sd|Z�!CSOPL8�M;L��>;Sd|X/�!CSOPL�eN;L��>;Sd|Y^�!CSOPL�M;L��>;Sd|Z��!CSOPLȜM;L��>;Sd|X��!CSOPL�JN;L��>;Sd|Y��!CSOPLh}N;L��>;Sd|Z�!CSOPL�{N;L��>;Sd|XI�!CSOPL�M;L��>;Sd|Yx�!CSOPL��M;L��>;Sd|Z��!CSOPLh�M;LP�>;Sd|X��!CSOPL(*N;LP�>;Sd|Y�!CSOPLxRN;LP�>;Sd|Z4�!CSOPL��N;L8�>;Sd|Xc�!CSOPLHCN;L8�>;Sd|Y��!CSOPL(�M;L8�>;Sd|Z��!CSOPLhhN;L�>;Sd|X��!CSOPL��M;L�>;Sd|Y�!CSOPLx+N;L�>;Sd|ZN�!CSOPL��M;L�>;Sd|X}�!CSOPL�&N;L�>;Sd|Y��!CSOPL8�M;L�>;Sd|Z��!CSOPLX�M;Lй>;Sd|X
�!CSOPL��M;Lй>;Sd|Y9�!CSOPL��M;Lй>;Sd|Zh�!CSOPL�N;L��>;Sd|X��!CSOPL�?N;L��>;Sd|Y��!CSOPLN;L��>;Sd|Z��!CSOPLȆN;L`�>;Sd|X$�!CSOPLHN;L`�>;Sd|YS�!CSOPLHLN;L`�>;Sd|Z��!CSOPL�N;L(�>;Sd|X��!CSOPL�gN;L(�>;Sd|Y��!CSOPL�N;L(�>;Sd|Z�!CSOPL��M;LU?;Sd|X>�!CSOPLH�N;LU?;Sd|Ym�!CSOPLH"N;LU?;Sd|Z��!CSOPLX�M;LS?;Sd|X��!CSOPL�M;LS?;Sd|Y��!CSOPL�M;LS?;Sd|Z)�!CSOPLhnN;LHP?;Sd|XX�!CSOPL�mN;LHP?;Sd|Y��!CSOPL��M;LHP?;Sd|Z��!CSOPL�N;LN?;Sd|X��!CSOPL��M;LN?;Sd|Y�!CSOPL�N;LN?;Sd|ZC�!CSOPLx|N;L�K?;Sd|Xr�!CSOPL�N;L�K?;Sd|Y��!CSOPL(EN;L�K?;Sd|Z��!CSOPL�
N;L�I?;Sd|X��!CSOPL�]N;L�I?;Sd|Y.�!CSOPL8�M;L�I?;Sd|Z]�!CSOPLH+N;L��>;Sd|X��!CSOPL�M;L��>;Sd|Y��!CSOPLhVN;L��>;Sd|Z��!CSOPLX�M;L0D?;Sd|X�!CSOPL�WN;L0D?;Sd|YH�!CSOPLXTN;L0D?;Sd|Zw�!CSOPL��M;L�>;Sd|X��!CSOPL�.N;L�>;Sd|Y��!CSOPL8�M;L�>;Sd|Z�!CSOPLnN;L�??;Sd|X3�!CSOPL��M;L�??;Sd|Yb�!CSOPL��M;L�??;Sd|Z��!CSOPL�~N;L��>;Sd|X��!CSOPL�uN;L��>;Sd|Y��!CSOPLN;L��>;Sd|Z�!CSOPL�iN;L0;?;Sd|XM�!CSOPL�N;L0;?;Sd|Y|�!CSOPL��M;L0;?;Sd|Z��!CSOPLHON;L�8?;Sd|X��!CSOPL��M;L�8?;Sd|Y	�!CSOPL��M;L�8?;Sd|Z8�!CSOPL��M;L�>;Sd|Xg�!CSOPL��N;L�>;Sd|Y��!CSOPLhN;L�>;Sd|Z��!CSOPLh�M;L@�>;Sd|X��!CSOPL��N;L@�>;Sd|Y#�!CSOPLxN;L@�>;Sd|ZR�!CSOPLH�M;Lh�>;Sd|X��!CSOPLxsN;Lh�>;Sd|Y��!CSOPL��M;Lh�>;Sd|Z��!CSOPLhSN;L�/?;Sd|X�!CSOPL�SN;L�/?;Sd|Y=�!CSOPLX�N;L�/?;Sd|Zl�!CSOPLH^N;Lh-?;Sd|X��!CSOPL��M;Lh-?;Sd|Y��!CSOPLh�M;Lh-?;Sd|Z��!CSOPL��M;L�*?;Sd|X(�!CSOPL�/N;L�*?;Sd|YW�!CSOPL��M;L�*?;Sd|Z��!CSOPLX�M;LP�>;Sd|X��!CSOPLx.N;LP�>;Sd|Y��!CSOPL(�N;LP�>;Sd|Z�!CSOPL�N;L`&?;Sd|XB�!CSOPL�pN;L`&?;Sd|Yq�!CSOPL�FN;L`&?;Sd|Z��!CSOPLxFN;L�>;Sd|X��!CSOPL�bN;L�>;Sd|Y��!CSOPL�M;L�>;Sd|Z-�!CSOPL��M;L�!?;Sd|X\�!CSOPLH�M;L�!?;Sd|Y��!CSOPL�N;L�!?;Sd|Z��!CSOPL�lN;LX?;Sd|X��!CSOPL��M;LX?;Sd|Y�!CSOPLN;LX?;Sd|ZG�!CSOPL�EN;L?;Sd|Xv�!CSOPLH�M;L?;Sd|Y��!CSOPL��N;L?;Sd|Z��!CSOPL�N;L�?;Sd|X�!CSOPL�N;L�?;Sd|Y2�!CSOPL�M;L�?;Sd|Za�!CSOPL�M;LP?;Sd|X��!CSOPL�,N;LP?;Sd|Y��!CSOPL�NN;LP?;Sd|Z��!CSOPL��M;L?;Sd|X�!CSOPL�zN;L?;Sd|YL�!CSOPL�/N;L?;Sd|Z{�!CSOPL��M;L�?;Sd|X��!CSOPL�N;L�?;Sd|Y��!CSOPL��M;L�?;Sd|Z�!CSOPLXN;Lp�>;Sd|X7�!CSOPLH[N;Lp�>;Sd|Yf�!CSOPL�N;Lp�>;Sd|Z��!CSOPL�N;LP?;Sd|X��!CSOPLȀN;LP?;Sd|Y��!CSOPL(N;LP?;Sd|Z"�!CSOPL8�N;L�>;Sd|XQ�!CSOPLvN;L�>;Sd|Y��!CSOPL��M;L�>;Sd|Z��!CSOPLkN;L?;Sd|X��!CSOPL��M;L?;Sd|Y
�!CSOPL��M;L?;Sd|Z<�!CSOPL�N;L�?;Sd|Xk�!CSOPL�EN;L�?;Sd|Y��!CSOPL�M;L�?;Sd|Z��!CSOPL�N;L�?;Sd|X��!CSOPL�M;L�?;Sd|Y'�!CSOPLحM;L�?;Sd|ZV�!CSOPLX�M;L�?;Sd|X��!CSOPLh�M;L�?;Sd|Y��!CSOPL�N;L�?;Sd|Z��!CSOPL��M;LЌ>;Sd|X�!CSOPLHFN;LЌ>;Sd|YA�!CSOPL8GN;LЌ>;Sd|Zp�!CSOPL�WN;LH�>;Sd|X��!CSOPLxON;LH�>;Sd|Y��!CSOPLȢM;LH�>;Sd|Z��!CSOPLh�N;L �>;Sd|X,�!CSOPL�2N;L �>;Sd|Y[�!CSOPL8N;L �>;Sd|Z��!CSOPLhzN;L��>;Sd|X��!CSOPLx�M;L��>;Sd|Y��!CSOPL($N;L��>;Sd|Z�!CSOPL(ZN;L@�>;Sd|XF�!CSOPL8N;L@�>;Sd|Yu�!CSOPLx�M;L@�>;Sd|Z��!CSOPLhAN;L��>;Sd|X��!CSOPL��M;L��>;Sd|Y�!CSOPL�cN;L��>;Sd|Z1�!CSOPLHyN;L��>;Sd|X`�!CSOPL({N;L��>;Sd|Y��!CSOPL��M;L��>;Sd|Z��!CSOPLH�M;Lx�>;Sd|X��!CSOPL�N;Lx�>;Sd|Y�!CSOPLx�N;Lx�>;Sd|ZK�!CSOPLH�N;Lȅ>;Sd|Xz�!CSOPL��N;Lȅ>;Sd|Y��!CSOPLhN;Lȅ>;Sd|Z��!CSOPL8�M;Lh�>;Sd|X�!CSOPLx�M;Lh�>;Sd|Y6�!CSOPL�^N;Lh�>;Sd|Z��Takes|�CurrentS1003_smallStep1�TakeSAvatart_T_Stance��FileNameSAvatart_T_Stance.tak��	LocalTimeL��G�L3�\$$�
ReferenceTimeL��G�L3�\$��TakeS1003_smallStep��FileNameS1003_smallStep.tak��	LocalTimeLL���"��
ReferenceTimeLL���"���
���c�~���"{��Z�j���~���u�)

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/Raw Mocap Data/Animations/Idle/SmallStep_IdleToIdle.fbx

Diff revisions: vs.
Revision Author Commited Message
83 FMMortaroli picture FMMortaroli Tue 13 May, 2014 11:32:51 +0000