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
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteIWSecondItMillisecondI��'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSSgC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_211_Run_JumpUpMedium_2Hands_Run.fbxb�PSSrcDocumentUrlSKStringSUrlSSgC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_211_Run_JumpUpMedium_2Hands_Run.fbx�$PSOriginalSCompoundSS�BPSOriginal|ApplicationVendorSKStringSSSAutodesk7EPSOriginal|ApplicationNameSKStringSSS
MotionBuilder�?PSOriginal|ApplicationVersionSKStringSSS2013�MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 21:08:30.1521PSOriginal|FileNameSKStringSSSQ%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk�FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilderD@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 21:08:30.152�FileIdR+�(� �ϳ��)�,��$CreationTimeS2012-11-08 16:08:30:157n6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105�GlobalSettings�VersionI��Properties70�)PSUpAxisSintSIntegerSI-	-PS
UpAxisSignSintSIntegerSIg	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI
0PS
CoordAxisSignSintSIntegerSI\
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI�
8PSUnitScaleFactorSdoubleSNumberSD�?3@PSOriginalUnitScaleFactorSdoubleSNumberSD�?�HPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective%PSTimeModeSenumSSIL3PS
TimeSpanStartSKTimeSTimeSLH�%;�2PSTimeSpanStopSKTimeSTimeSLf�h�d�8PSCustomFrameRateSdoubleSNumberSD�B	Documents
CountI5!DocumentL~�S	KFbxSceneSScene
Properties70�
&PSSourceObjectSobjectSS�
SPSActiveAnimStackNameSKStringSSS _211_Run_JumpUpMedium_2Hands_Run(	RootNodeLf
References�CDefinitions�VersionId�CountI>�
ObjectTypeSGlobalSettings�CountIP
ObjectTypeSMotionBuilder_SystemCCountI�"

ObjectTypeSModel�CountIT�"PropertyTemplateSFbxNode�"Properties70
2PSQuaternionInterpolateSenumSSIcKPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDDJPS
ScalingOffsetSVector3DSVectorSDDDjIPSScalingPivotSVector3DSVectorSDDD�.PSTranslationActiveSboolSSI�KPSTranslationMinSVector3DSVectorSDDDXKPSTranslationMaxSVector3DSVectorSDDD�,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI,PSTranslationMinZSboolSSI@,PSTranslationMaxXSboolSSIz,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSI06PSRotationSpaceForLimitOnlySboolSSIy;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD;PSRotationStiffnessZSdoubleSNumberSDI0PSAxisLenSdoubleSNumberSD$@�HPSPreRotationSVector3DSVectorSDDD�IPSPostRotationSVector3DSVectorSDDD/+PSRotationActiveSboolSSI�HPSRotationMinSVector3DSVectorSDDD�HPSRotationMaxSVector3DSVectorSDDD)PSRotationMinXSboolSSII)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI%)PSRotationMaxZSboolSSI[(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSI�GPS
ScalingMinSVector3DSVectorSDDD=GPS
ScalingMaxSVector3DSVectorSD�?D�?D�?s(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI(PSScalingMaxXSboolSSIK(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSI�QPSGeometricTranslationSVector3DSVectorSDDD<NPSGeometricRotationSVector3DSVectorSDDD�MPSGeometricScalingSVector3DSVectorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD6PS
MinDampRangeYSdoubleSNumberSDc6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD/6PS
MaxDampRangeZSdoubleSNumberSDv9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD9PSMinDampStrengthZSdoubleSNumberSDK9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD7PSPreferedAngleXSdoubleSNumberSDc7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD�(PSLookAtPropertySobjectSS *PSUpVectorPropertySobjectSSE !PSShowSboolSSI� 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����!#PSFreezeSboolSSI3!#PSLODBoxSboolSSI�!NPSLcl TranslationSLcl TranslationSSADDD�!HPSLcl RotationSLcl RotationSSADDD9"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?y"2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI>
ObjectTypeS
NodeAttribute3#CountIT�=PropertyTemplateS	FbxCamera�=Properties70�#>PSPositionSVectorSSADDDI�$>PSUpVectorSVectorSSADD�?Dc$FPSInterestPositionSVectorSSADDD�$&PSRollSRollSSAD�$:PSOpticalCenterXSOpticalCenterXSSAD'%:PSOpticalCenterYSOpticalCenterYSSADy%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD�%1PSDisplayTurnTableIconSboolSSI+&*PS
UseMotionBlurSboolSSIk&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?�&,PSAspectRatioModeSenumSSI.'4PSAspectWidthSdoubleSNumberSDt@q'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?�'/PSFilmOffsetXSNumberSSAD2(/PSFilmOffsetYSNumberSSADr(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?�(8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?@)9PSFilmSqueezeRatioSdoubleSNumberSD�?z),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?�)2PSFilmTranslateXSNumberSSAD4*2PSFilmTranslateYSNumberSSADt*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD�*1PS
FilmRollValueSNumberSSAD++*PS
FilmRollOrderSenumSSIb+)PSApertureModeSenumSSI�+$PSGateFitSenumSSI�+4PSFieldOfViewSFieldOfViewSSAD�p9@,6PSFieldOfViewXSFieldOfViewXSSADD@^,6PSFieldOfViewYSFieldOfViewYSSADD@�,/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI
-*PS
UseFrameColorSboolSSI^-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?�-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI�-%PSShowGridSboolSSI;..PSShowOpticalCenterSboolSSIp.'PS
ShowAzimutSboolSSI�.)PSShowTimeCodeSboolSSI�.&PS	ShowAudioSboolSSI0/GPS
AudioColorSVector3DSVectorSDD�?Dp/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@�/1PSAutoComputeClipPanesSboolSSI+0/PSViewCameraToLookAtSboolSSIm04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI�05PSBackPlaneDistanceSNumberSSAD@�@312PSBackPlaneDistanceModeSenumSSIw16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@�13PSFrontPlaneDistanceModeSenumSSI/2%PSLockModeSboolSSIp23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI�2*PS
BackPlateCropSboolSSI3,PSBackPlateCenterSboolSSI[3/PSBackPlateKeepRatioSboolSSI�3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?�3*PS
ShowBackplateSboolSSI#44PSBackPlaneOffsetXSNumberSSADe44PSBackPlaneOffsetYSNumberSSAD�45PSBackPlaneRotationSNumberSSAD�43PSBackPlaneScaleXSNumberSSAD�?*53PSBackPlaneScaleYSNumberSSAD�?d5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI�5+PSFrontPlateCropSboolSSI6-PSFrontPlateCenterSboolSSIS60PSFrontPlateKeepRatioSboolSSI�6;PSForeground OpacitySdoubleSNumberSD�?�6+PSShowFrontplateSboolSSI75PSFrontPlaneOffsetXSNumberSSAD[75PSFrontPlaneOffsetYSNumberSSAD�76PSFrontPlaneRotationSNumberSSAD�74PSFrontPlaneScaleXSNumberSSAD�?#84PSFrontPlaneScaleYSNumberSSAD�?]8,PSForeground TextureSobjectSS�8,PSDisplaySafeAreaSboolSSI�84PSDisplaySafeAreaOnRenderSboolSSI91PSSafeAreaDisplayStyleSenumSSIb9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?�9/PSUse2DMagnifierZoomSboolSSI�95PS2D Magnifier ZoomSNumberSSADY@":2PS2D Magnifier XSNumberSSADI@b:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI�:2PS	OrthoZoomSdoubleSNumberSD�?;0PSUseRealTimeDOFAndAASboolSSIY;,PSUseDepthOfFieldSboolSSI�;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@<6PS
FocusDistanceSdoubleSNumberSDi@N<,PSUseAntialiasingSboolSSI�<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?�</PSAntialiasingMethodSenumSSI=2PSUseAccumulationBufferSboolSSIZ=5PSFrameSamplingCountSintSIntegerSI�=.PSFrameSamplingTypeSenumSSI�=APSColorSColorRGBSColorSD�������?D�������?D�������?a>
ObjectTypeSMotionBuilder_GenericT>CountIA
ObjectTypeSAnimationLayer�>CountIAPropertyTemplateSFbxAnimLayerAProperties70!?*PSWeightSNumberSSADY@P?!PSMuteSboolSSI?!PSSoloSboolSSI�?!PSLockSboolSSI�?APSColorSColorRGBSColorSD�������?D�������?D�������?1@&PS	BlendModeSenumSSIt@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI�@5PSBlendModeBypassS	ULongLongSSLC
ObjectTypeSAnimationStack_ACountI�BPropertyTemplateSFbxAnimStack�BProperties70�A+PSDescriptionSKStringSSSB0PS
LocalStartSKTimeSTimeSLZB/PS	LocalStopSKTimeSTimeSL�B4PSReferenceStartSKTimeSTimeSL�B3PS
ReferenceStopSKTimeSTimeSLVC
ObjectTypeSAnimationCurveNodeICCountI^�C
ObjectTypeSAnimationCurve�CCountI��	Objects�H<
NodeAttributeL��;S#Producer PerspectiveNodeAttributeSCamera8GProperties70�D>PSPositionSVectorSSADD b@D�r@�DFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@D&EDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?eE1PSDisplayTurnTableIconSboolSSI�E,PSFilmFormatIndexSenumSSI�E4PSFieldOfViewSFieldOfViewSSADD@F/PSFocalLengthSNumberSSAD �Z5@hF<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�F5PS2D Magnifier ZoomSNumberSSAD�F2PS2D Magnifier XSNumberSSAD+G2PS2D Magnifier YSNumberSSADYG	TypeFlagsSCamerazGGeometryVersionI|�GPositionDD b@D�r@�GUpDD�?DHLookAtD1�ʧ�U�<D�����V@D$HShowInfoOnMovingI?H	ShowAudioIqH
AudioColorDD�?D�H	CameraOrthoZoomD�?9N6
NodeAttributeL���;SProducer FrontNodeAttributeSCamera�LProperties70XI>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D�IDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?=J1PSDisplayTurnTableIconSboolSSIwJ,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@�J/PSFocalLengthSNumberSSAD �Z5@6K2PS	NearPlaneSdoubleSNumberSD�?uK1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?L5PS2D Magnifier ZoomSNumberSSADBL2PS2D Magnifier XSNumberSSAD�L2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSI�L	TypeFlagsSCameraMGeometryVersionI|@MPositionDD�V@DL�@jMUpDD�?D�MLookAtDD�V@D�MShowInfoOnMovingI�M	ShowAudioIN
AudioColorDD�?D,N	CameraOrthoZoomD�?�S5
NodeAttributeL��;SProducer BackNodeAttributeSCameracRProperties70�N>PSPositionSVectorSSADD�V@DL��AOFPSInterestPositionSVectorSSADD�V@D�ODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSIP,PSFilmFormatIndexSenumSSINP4PSFieldOfViewSFieldOfViewSSADD@�P/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?
Q1PSFarPlaneSdoubleSNumberSDL�@TQ<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�Q5PS2D Magnifier ZoomSNumberSSAD�Q2PS2D Magnifier XSNumberSSADR2PS2D Magnifier YSNumberSSADVR1PSCameraProjectionTypeSenumSSI�R	TypeFlagsSCamera�RGeometryVersionI|�RPositionDD�V@DL���RUpDD�?D-SLookAtDD�V@DOSShowInfoOnMovingIjS	ShowAudioI�S
AudioColorDD�?D�S	CameraOrthoZoomD�?dY6
NodeAttributeL0\�;SProducer RightNodeAttributeSCamera�WProperties70�T>PSPositionSVectorSSADL�@D�V@D�TFPSInterestPositionSVectorSSADD�V@D)UDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?hU1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSI�U4PSFieldOfViewSFieldOfViewSSADD@!V/PSFocalLengthSNumberSSAD �Z5@aV2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@�V<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?-W5PS2D Magnifier ZoomSNumberSSADmW2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSAD�W1PSCameraProjectionTypeSenumSSIX	TypeFlagsSCamera;XGeometryVersionI|kXPositionDL�@D�V@D�XUpDD�?D�XLookAtDD�V@D�XShowInfoOnMovingIY	ShowAudioI2Y
AudioColorDD�?DWY	CameraOrthoZoomD�?�^5
NodeAttributeL��;SProducer LeftNodeAttributeSCamera�]Properties70Z>PSPositionSVectorSSADL��D�V@DlZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�Z1PSDisplayTurnTableIconSboolSSI7[,PSFilmFormatIndexSenumSSIy[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@�[2PS	NearPlaneSdoubleSNumberSD�?5\1PSFarPlaneSdoubleSNumberSDL�@\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD]2PS2D Magnifier XSNumberSSADB]2PS2D Magnifier YSNumberSSAD�]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|^PositionDL��D�V@D*^UpDD�?DX^LookAtDD�V@Dz^ShowInfoOnMovingI�^	ShowAudioI�^
AudioColorDD�?D�^	CameraOrthoZoomD�?�d4
NodeAttributeL͘;SProducer TopNodeAttributeSCamerancProperties70�_>PSPositionSVectorSSADDy�@D�_>PSUpVectorSVectorSSADDD�L`FPSInterestPositionSVectorSSADD�V@D�`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�`1PSDisplayTurnTableIconSboolSSIa,PSFilmFormatIndexSenumSSIYa4PSFieldOfViewSFieldOfViewSSADD@�a/PSFocalLengthSNumberSSAD �Z5@�a2PS	NearPlaneSdoubleSNumberSD�?b1PSFarPlaneSdoubleSNumberSDL�@_b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSAD�b2PS2D Magnifier XSNumberSSAD"c2PS2D Magnifier YSNumberSSADac1PSCameraProjectionTypeSenumSSI�c	TypeFlagsSCamera�cGeometryVersionI|�cPositionDDy�@D
dUpDDD�8dLookAtDD�V@DZdShowInfoOnMovingIud	ShowAudioI�d
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeLP�;SProducer BottomNodeAttributeSCameraQiProperties70�e>PSPositionSVectorSSADD��D�e>PSUpVectorSVectorSSAD�D�D�?/fFPSInterestPositionSVectorSSADD�V@D�fDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI�f,PSFilmFormatIndexSenumSSI<g4PSFieldOfViewSFieldOfViewSSADD@yg/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?�g1PSFarPlaneSdoubleSNumberSDL�@Bh<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�h5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSADi2PS2D Magnifier YSNumberSSADDi1PSCameraProjectionTypeSenumSSIri	TypeFlagsSCamera�iGeometryVersionI|�iPositionDD��D�iUpD�D�D�?jLookAtDD�V@D=jShowInfoOnMovingIXj	ShowAudioI�j
AudioColorDD�?D�j	CameraOrthoZoomD�?l?
NodeAttributeL��9SCamera SwitcherNodeAttributeSCameraSwitchervkProperties70ik-PSCamera IndexSIntegerSSAI�kVersionIe�kNameSCamera SwitcherModel�kCameraIdI�k
CameraNameId
lCameraIndexName�l*
NodeAttributeLx�:SNodeAttributeSLimbNode�l
	TypeFlagsSSkeletonm*
NodeAttributeLx�:SNodeAttributeSLimbNode�l
	TypeFlagsSSkeletonvm*
NodeAttributeLx$:SNodeAttributeSLimbNodeim
	TypeFlagsSSkeleton�m*
NodeAttributeL8�:SNodeAttributeSLimbNode�m
	TypeFlagsSSkeleton^n*
NodeAttributeL8L:SNodeAttributeSLimbNodeQn
	TypeFlagsSSkeleton�n*
NodeAttributeL�<:SNodeAttributeSLimbNode�n
	TypeFlagsSSkeletonFo*
NodeAttributeLx�:SNodeAttributeSLimbNode9o
	TypeFlagsSSkeleton�o*
NodeAttributeL�:SNodeAttributeSLimbNode�o
	TypeFlagsSSkeleton.p*
NodeAttributeL8�:SNodeAttributeSLimbNode!p
	TypeFlagsSSkeleton�p*
NodeAttributeL��:SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonq*
NodeAttributeL�.:SNodeAttributeSLimbNode	q
	TypeFlagsSSkeleton�q*
NodeAttributeLx�:SNodeAttributeSLimbNode}q
	TypeFlagsSSkeleton�q*
NodeAttributeLx�:SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletonrr*
NodeAttributeL�]:SNodeAttributeSLimbNodeer
	TypeFlagsSSkeleton�r*
NodeAttributeL�N:SNodeAttributeSLimbNode�r
	TypeFlagsSSkeletonZs*
NodeAttributeL�?:SNodeAttributeSLimbNodeMs
	TypeFlagsSSkeleton�s*
NodeAttributeL8:SNodeAttributeSLimbNode�s
	TypeFlagsSSkeletonBt*
NodeAttributeLx�:SNodeAttributeSLimbNode5t
	TypeFlagsSSkeleton�t*
NodeAttributeL��:SNodeAttributeSLimbNode�t
	TypeFlagsSSkeleton*u*
NodeAttributeL��:SNodeAttributeSLimbNodeu
	TypeFlagsSSkeleton�u*
NodeAttributeL8-:SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletonv*
NodeAttributeL8�:SNodeAttributeSLimbNodev
	TypeFlagsSSkeleton�v*
NodeAttributeL8B:SNodeAttributeSLimbNodeyv
	TypeFlagsSSkeleton�v*
NodeAttributeL8*:SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonnw*
NodeAttributeLx�:SNodeAttributeSLimbNodeaw
	TypeFlagsSSkeleton�w*
NodeAttributeL�b:SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonVx*
NodeAttributeLx�:SNodeAttributeSLimbNodeIx
	TypeFlagsSSkeleton�x*
NodeAttributeL8_:SNodeAttributeSLimbNode�x
	TypeFlagsSSkeleton>y*
NodeAttributeL�>:SNodeAttributeSLimbNode1y
	TypeFlagsSSkeleton�y*
NodeAttributeL8~:SNodeAttributeSLimbNode�y
	TypeFlagsSSkeleton&z*
NodeAttributeLx�:SNodeAttributeSLimbNodez
	TypeFlagsSSkeleton�z*
NodeAttributeL��:SNodeAttributeSLimbNode�z
	TypeFlagsSSkeleton{*
NodeAttributeLx:SNodeAttributeSLimbNode{
	TypeFlagsSSkeleton�{*
NodeAttributeL�L:SNodeAttributeSLimbNodeu{
	TypeFlagsSSkeleton�{*
NodeAttributeLx:SNodeAttributeSLimbNode�{
	TypeFlagsSSkeletonj|*
NodeAttributeLxh:SNodeAttributeSLimbNode]|
	TypeFlagsSSkeleton�|*
NodeAttributeL��:SNodeAttributeSLimbNode�|
	TypeFlagsSSkeletonR}*
NodeAttributeL�:SNodeAttributeSLimbNodeE}
	TypeFlagsSSkeleton�}*
NodeAttributeL�:SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton:~*
NodeAttributeL8�:SNodeAttributeSLimbNode-~
	TypeFlagsSSkeleton�~*
NodeAttributeL�c:SNodeAttributeSLimbNode�~
	TypeFlagsSSkeleton"*
NodeAttributeL��:SNodeAttributeSLimbNode
	TypeFlagsSSkeleton�*
NodeAttributeL�N:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton
�*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton~�*
NodeAttributeL��:SNodeAttributeSLimbNodeq�
	TypeFlagsSSkeleton�*
NodeAttributeL�o:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonf�*
NodeAttributeL�j:SNodeAttributeSLimbNodeY�
	TypeFlagsSSkeletonځ*
NodeAttributeL�j:SNodeAttributeSLimbNodé
	TypeFlagsSSkeletonN�*
NodeAttributeL8:SNodeAttributeSLimbNodeA�
	TypeFlagsSSkeleton‚*
NodeAttributeLx�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton6�*
NodeAttributeL��:SNodeAttributeSLimbNode)�
	TypeFlagsSSkeleton��*
NodeAttributeL�U:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�o:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL8<:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL84:SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonz�*
NodeAttributeL�_:SNodeAttributeSLimbNodem�
	TypeFlagsSSkeleton�*
NodeAttributeLx�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonb�*
NodeAttributeL�Z:SNodeAttributeSLimbNodeU�
	TypeFlagsSSkeletonֆ*
NodeAttributeL8�:SNodeAttributeSLimbNodeɆ
	TypeFlagsSSkeletonJ�*
NodeAttributeL8�:SNodeAttributeSLimbNode=�
	TypeFlagsSSkeleton��*
NodeAttributeL�$:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton2�*
NodeAttributeL�t:SNodeAttributeSLimbNode%�
	TypeFlagsSSkeleton��*
NodeAttributeL8x:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLx�:SNodeAttributeSLimbNode
�
	TypeFlagsSSkeleton��*
NodeAttributeL�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL8U:SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonv�*
NodeAttributeL�n:SNodeAttributeSLimbNodei�
	TypeFlagsSSkeleton�*
NodeAttributeL��:SNodeAttributeSLimbNode݊
	TypeFlagsSSkeleton^�*
NodeAttributeL8�:SNodeAttributeSLimbNodeQ�
	TypeFlagsSSkeletonҋ*
NodeAttributeL8^:SNodeAttributeSLimbNodeŋ
	TypeFlagsSSkeletonF�*
NodeAttributeL�!:SNodeAttributeSLimbNode9�
	TypeFlagsSSkeleton��*
NodeAttributeL�Q:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton.�*
NodeAttributeLxv:SNodeAttributeSLimbNode!�
	TypeFlagsSSkeleton��*
NodeAttributeL��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�]:SNodeAttributeSLimbNode	�
	TypeFlagsSSkeleton��*
NodeAttributeL8�:SNodeAttributeSLimbNode}�
	TypeFlagsSSkeletonӗ4ModelL 8v)SProducer PerspectiveModelSCamera�VersionI���Properties70W�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSȈ8PSDefaultAttributeIndexSintSIntegerSI(�NPSLcl TranslationSLcl TranslationSSADD b@D�r@~�HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V���,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIV�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIΑ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIY�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIڒ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI`�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@-�5PSDefaultKeyingGroupSintSIntegerSIn�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIٔ*PS
TransformableSboolSSI�(PSCullingModeSenumSSIJ�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?2�%PSFitImageSboolSSIa�!PSCropSboolSSI��#PSCenterSboolSSIƖ&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIH�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCWƗCullingS
CullingOff�.ModelLPVv)SProducer FrontModelSCamera,�VersionI�РProperties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?ɘ!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIk�NPSLcl TranslationSLcl TranslationSSADD�V@DL�@��HPSLcl RotationSLcl RotationSSADD�V@D��,PS	MultiTakeSintSIntegerSI6�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD֚/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIT�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIܛ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI\�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI-�8PSReferentialSizeSdoubleSNumberSD(@p�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSIR�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIƞ+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?B�0PSAspectHSdoubleSNumberSD�?u�%PSFitImageSboolSSI��!PSCropSboolSSI՟#PSCenterSboolSSI	�&PS	KeepRatioSboolSSII�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSIà*PSResetCameraSActionSSI�ShadingCW	�CullingS
CullingOffX�-ModelLHQv)SProducer BackModelSCameran�VersionI��Properties70ܡGPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSIQ�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL���HPSLcl RotationSLcl RotationSSAD�D�V�D=�,PS	MultiTakeSintSIntegerSIx�-PSManipulationModeSenumSSIۣUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIS�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIޤ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI_�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI)�6PSGeometricCenterVisibilitySboolSSIo�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI&�%PSPickableSboolSSI^�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIϧ-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSIF�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI�!PSCropSboolSSI�#PSCenterSboolSSIK�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSIͩ4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI(�ShadingCWK�CullingS
CullingOff��.ModelL(=v)SProducer RightModelSCamera��VersionI�U�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?N�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL�@D�V@DF�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD[�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI٭5PSRotationLimitsVisibilitySboolSSI!�:PSLocalTranslationRefVisibilitySboolSSIa�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI(�9PSHierarchicalCenterVisibilitySboolSSIl�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI6�3PSDefaultKeyingGroupEnumSenumSSIi�%PSPickableSboolSSI��*PS
TransformableSboolSSIװ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIK�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?DZ0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI)�!PSCropSboolSSIZ�#PSCenterSboolSSI��&PS	KeepRatioSboolSSIβ2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSIH�*PSResetCameraSActionSSIk�ShadingCW��CullingS
CullingOff��-ModelL0Bv)SProducer LeftModelSCamera�VersionI�A�Properties70a�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSIִ8PSDefaultAttributeIndexSintSIntegerSI2�NPSLcl TranslationSLcl TranslationSSADL��D�V@Dl�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDG�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIŶ5PSRotationLimitsVisibilitySboolSSI
�:PSLocalTranslationRefVisibilitySboolSSIM�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIͷ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIX�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI"�3PSDefaultKeyingGroupEnumSenumSSIU�%PSPickableSboolSSI��*PS
TransformableSboolSSIù(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI7�+PSResolutionModeSenumSSIu�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI�!PSCropSboolSSIF�#PSCenterSboolSSIz�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI4�*PSResetCameraSActionSSIW�ShadingCWz�CullingS
CullingOff��,ModelL8Gv)SProducer TopModelSCamera޼VersionI���Properties70L�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?{�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADDy�@Ds�HPSLcl RotationSLcl RotationSSAD�V�D�D�V���,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIK�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIÿ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIN�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIU�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@"�5PSDefaultKeyingGroupSintSIntegerSIc�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI?�-PSShowTrajectoriesSboolSSIx�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?'�%PSFitImageSboolSSIV�!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI=�4PSDisplay2DMagnifierFrameSboolSSIu�*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff�/ModelL.v)SProducer BottomModelSCamera"�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIa�NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@��,PS	MultiTakeSintSIntegerSI,�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIJ�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIR�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI#�8PSReferentialSizeSdoubleSNumberSD(@f�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIH�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?8�0PSAspectHSdoubleSNumberSD�?k�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI?�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOffp�7ModelL@O;SCamera SwitcherModelSCameraSwitchern�VersionI�*�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSIQ�8PSDefaultAttributeIndexSintSIntegerSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI)�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI,�:PSLocalTranslationRefVisibilitySboolSSIl�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI3�9PSHierarchicalCenterVisibilitySboolSSIw�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIA�3PSDefaultKeyingGroupEnumSenumSSIt�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI@�ShadingCWc�CullingS
CullingOff��+ModelLHT;SReferenceModelSLimbNode��VersionI�V�Properties70�+PSRotationActiveSboolSSIN�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI<�EPSVisibility InheritanceSVisibility InheritanceSSIv�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDQ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIW�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIb�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI,�3PSDefaultKeyingGroupEnumSenumSSI_�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSII�3PSlockInfluenceWeightsSBoolSSAUIl�ShadingCY��CullingS
CullingOff��&ModelLPY;SHipsModelSLimbNode��VersionI�q�Properties70?�+PSRotationActiveSboolSSIu�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIm�OPSLcl TranslationSLcl TranslationSSA+D��x�D��V@D`�2E���IPSLcl RotationSLcl RotationSSA+D@�ld@D`�U@D@cZ`@�EPSVisibility InheritanceSVisibility InheritanceSSIQ�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD,�/PSSetPreferedAngleSActionSSIg�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI2�2PSRotationRefVisibilitySboolSSIs�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI=�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI:�%PSPickableSboolSSIr�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUId�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��'ModelLX^;SSpineModelSLimbNode	�VersionI���Properties70[�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD,�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D,�D�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D��9)@D`)��D��k�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
CullingOff��'ModelL`c;SChestModelSLimbNode%�VersionI���Properties70w�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDH�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADDA0@D�2ſ��HPSLcl RotationSLcl RotationSSAD@Q�,�D`~��DM�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI%�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDb�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI(�:PSLocalTranslationRefVisibilitySboolSSIh�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI/�9PSHierarchicalCenterVisibilitySboolSSIs�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI=�3PSDefaultKeyingGroupEnumSenumSSIp�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSII�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�&ModelLhh;SNeckModelSLimbNode>�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDa�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+DD=D@��9@D <�	��IPSLcl RotationSLcl RotationSSA+D@��,�D�'	�D \���h�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI@�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD}�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIC�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIJ�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIX�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI4�-PSShowTrajectoriesSboolSSId�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff#&ModelLpm;SHeadModelSLimbNodeY�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI6�GPS
ScalingMaxSVector3DSVectorSDDD|�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D0=D 4� @D s�?0�IPSLcl RotationSLcl RotationSSA+D�ŭ-�D��
�D���!@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI[UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI^:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIe9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@25PSDefaultKeyingGroupSintSIntegerSIs3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIO-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�)ModelLxr;SLeftEyeModelSLimbNodewVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSITGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@IEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI!UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD^/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI$	:PSLocalTranslationRefVisibilitySboolSSId	2PSRotationRefVisibilitySboolSSI�	3PSRotationAxisVisibilitySboolSSI�	1PSScalingRefVisibilitySboolSSI+
9PSHierarchicalCenterVisibilitySboolSSIo
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI93PSDefaultKeyingGroupEnumSenumSSIl%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIE"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�*ModelL�w;SRightEyeModelSLimbNode>
VersionI��Properties70�
*PS
RotationOrderSenumSSI�
+PSRotationActiveSboolSSI�
(PSInheritTypeSenumSSISGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@HEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD]/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI#:PSLocalTranslationRefVisibilitySboolSSIc2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI*9PSHierarchicalCenterVisibilitySboolSSIn6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI83PSDefaultKeyingGroupEnumSenumSSIk%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSID"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOffE%ModelL�|;S
JawModelSLimbNode8VersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDZ7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?RHPSLcl RotationSLcl RotationSSADD�Y	�<D����<�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSI}UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI85PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3PSRotationAxisVisibilitySboolSSI@1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@T5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSI6(PSCullingModeSenumSSIq-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY8CullingS
CullingOff%,ModelL��;STongueBackModelSLimbNode�VersionI��$Properties70�+PSRotationActiveSboolSSI$(PSInheritTypeSenumSSIyGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?nEPSVisibility 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�,+ModelL��;STongueTipModelSLimbNoded%VersionI��,Properties70�%+PSRotationActiveSboolSSI�%(PSInheritTypeSenumSSIA&GPS
ScalingMaxSVector3DSVectorSDDD�&8PSDefaultAttributeIndexSintSIntegerSI�&NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@6'EPSVisibility InheritanceSVisibility InheritanceSSIp',PS	MultiTakeSintSIntegerSI�'-PSManipulationModeSenumSSI(UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDK(/PSSetPreferedAngleSActionSSI�(-PSPivotsVisibilitySenumSSI�(5PSRotationLimitsVisibilitySboolSSI):PSLocalTranslationRefVisibilitySboolSSIQ)2PSRotationRefVisibilitySboolSSI�)3PSRotationAxisVisibilitySboolSSI�)1PSScalingRefVisibilitySboolSSI*9PSHierarchicalCenterVisibilitySboolSSI\*6PSGeometricCenterVisibilitySboolSSI�*8PSReferentialSizeSdoubleSNumberSD(@�*5PSDefaultKeyingGroupSintSIntegerSI&+3PSDefaultKeyingGroupEnumSenumSSIY+%PSPickableSboolSSI�+*PS
TransformableSboolSSI�+(PSCullingModeSenumSSI,-PSShowTrajectoriesSboolSSI2,"PSliwSBoolSSAUI�,CPSLimbLength 1SNumberSSAUD�?DDY@�,ShadingCY�,CullingS
CullingOff�4.ModelL�:SLeftLipLowerModelSLimbNode/-VersionI�[4Properties70�-+PSRotationActiveSboolSSI�-(PSInheritTypeSenumSSI.GPS
ScalingMaxSVector3DSVectorSDDDR.8PSDefaultAttributeIndexSintSIntegerSI�.NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @/EPSVisibility InheritanceSVisibility InheritanceSSI;/,PS	MultiTakeSintSIntegerSIv/-PSManipulationModeSenumSSI�/UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD0/PSSetPreferedAngleSActionSSIQ0-PSPivotsVisibilitySenumSSI�05PSRotationLimitsVisibilitySboolSSI�0:PSLocalTranslationRefVisibilitySboolSSI12PSRotationRefVisibilitySboolSSI]13PSRotationAxisVisibilitySboolSSI�11PSScalingRefVisibilitySboolSSI�19PSHierarchicalCenterVisibilitySboolSSI'26PSGeometricCenterVisibilitySboolSSIm28PSReferentialSizeSdoubleSNumberSD(@�25PSDefaultKeyingGroupSintSIntegerSI�23PSDefaultKeyingGroupEnumSenumSSI$3%PSPickableSboolSSI\3*PS
TransformableSboolSSI�3(PSCullingModeSenumSSI�3-PSShowTrajectoriesSboolSSI�3"PSliwSBoolSSAUIN4CPSLimbLength 1SNumberSSAUD�?DDY@q4ShadingCY�4CullingS
CullingOff�<(ModelL �:S
JawENDModelSLimbNode�4VersionI�X<Properties70E5*PS
RotationOrderSenumSSI~5+PSRotationActiveSboolSSI�5(PSInheritTypeSenumSSI	6GPS
ScalingMaxSVector3DSVectorSDDDO68PSDefaultAttributeIndexSintSIntegerSI�6NPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�6EPSVisibility InheritanceSVisibility InheritanceSSI87,PS	MultiTakeSintSIntegerSIs7-PSManipulationModeSenumSSI�7UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD8/PSSetPreferedAngleSActionSSIN8-PSPivotsVisibilitySenumSSI�85PSRotationLimitsVisibilitySboolSSI�8:PSLocalTranslationRefVisibilitySboolSSI92PSRotationRefVisibilitySboolSSIZ93PSRotationAxisVisibilitySboolSSI�91PSScalingRefVisibilitySboolSSI�99PSHierarchicalCenterVisibilitySboolSSI$:6PSGeometricCenterVisibilitySboolSSIj:8PSReferentialSizeSdoubleSNumberSD(@�:5PSDefaultKeyingGroupSintSIntegerSI�:3PSDefaultKeyingGroupEnumSenumSSI!;%PSPickableSboolSSIY;*PS
TransformableSboolSSI�;(PSCullingModeSenumSSI�;-PSShowTrajectoriesSboolSSI�;"PSliwSBoolSSAUIK<CPSLimbLength 1SNumberSSAUD�?DDY@n<ShadingCY�<CullingS
CullingOffjD/ModelL(�:SRightLipLowerModelSLimbNode�<VersionI�$DProperties70J=+PSRotationActiveSboolSSI�=(PSInheritTypeSenumSSI�=GPS
ScalingMaxSVector3DSVectorSDDD>8PSDefaultAttributeIndexSintSIntegerSIw>NPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @�>EPSVisibility InheritanceSVisibility InheritanceSSI?,PS	MultiTakeSintSIntegerSI??-PSManipulationModeSenumSSI�?UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�?/PSSetPreferedAngleSActionSSI@-PSPivotsVisibilitySenumSSI]@5PSRotationLimitsVisibilitySboolSSI�@:PSLocalTranslationRefVisibilitySboolSSI�@2PSRotationRefVisibilitySboolSSI&A3PSRotationAxisVisibilitySboolSSIeA1PSScalingRefVisibilitySboolSSI�A9PSHierarchicalCenterVisibilitySboolSSI�A6PSGeometricCenterVisibilitySboolSSI6B8PSReferentialSizeSdoubleSNumberSD(@yB5PSDefaultKeyingGroupSintSIntegerSI�B3PSDefaultKeyingGroupEnumSenumSSI�B%PSPickableSboolSSI%C*PS
TransformableSboolSSI[C(PSCullingModeSenumSSI�C-PSShowTrajectoriesSboolSSI�C"PSliwSBoolSSAUIDCPSLimbLength 1SNumberSSAUD�?DDY@:DShadingCY]DCullingS
CullingOff7L0ModelL0�:SRightLipCornerModelSLimbNode�DVersionI��KProperties70E+PSRotationActiveSboolSSIME(PSInheritTypeSenumSSI�EGPS
ScalingMaxSVector3DSVectorSDDD�E8PSDefaultAttributeIndexSintSIntegerSIDFNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@�FEPSVisibility InheritanceSVisibility InheritanceSSI�F,PS	MultiTakeSintSIntegerSIG-PSManipulationModeSenumSSIoGUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�G/PSSetPreferedAngleSActionSSI�G-PSPivotsVisibilitySenumSSI*H5PSRotationLimitsVisibilitySboolSSIrH:PSLocalTranslationRefVisibilitySboolSSI�H2PSRotationRefVisibilitySboolSSI�H3PSRotationAxisVisibilitySboolSSI2I1PSScalingRefVisibilitySboolSSIyI9PSHierarchicalCenterVisibilitySboolSSI�I6PSGeometricCenterVisibilitySboolSSIJ8PSReferentialSizeSdoubleSNumberSD(@FJ5PSDefaultKeyingGroupSintSIntegerSI�J3PSDefaultKeyingGroupEnumSenumSSI�J%PSPickableSboolSSI�J*PS
TransformableSboolSSI(K(PSCullingModeSenumSSIcK-PSShowTrajectoriesSboolSSI�K"PSliwSBoolSSAUI�KCPSLimbLength 1SNumberSSAUD�?DDY@LShadingCY*LCullingS
CullingOffT/ModelL8�:SLeftLipCornerModelSLimbNode�LVersionI��SProperties70�L+PSRotationActiveSboolSSIM(PSInheritTypeSenumSSInMGPS
ScalingMaxSVector3DSVectorSDDD�M8PSDefaultAttributeIndexSintSIntegerSINNPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@cNEPSVisibility InheritanceSVisibility InheritanceSSI�N,PS	MultiTakeSintSIntegerSI�N-PSManipulationModeSenumSSI;OUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDxO/PSSetPreferedAngleSActionSSI�O-PSPivotsVisibilitySenumSSI�O5PSRotationLimitsVisibilitySboolSSI>P:PSLocalTranslationRefVisibilitySboolSSI~P2PSRotationRefVisibilitySboolSSI�P3PSRotationAxisVisibilitySboolSSI�P1PSScalingRefVisibilitySboolSSIEQ9PSHierarchicalCenterVisibilitySboolSSI�Q6PSGeometricCenterVisibilitySboolSSI�Q8PSReferentialSizeSdoubleSNumberSD(@R5PSDefaultKeyingGroupSintSIntegerSISR3PSDefaultKeyingGroupEnumSenumSSI�R%PSPickableSboolSSI�R*PS
TransformableSboolSSI�R(PSCullingModeSenumSSI/S-PSShowTrajectoriesSboolSSI_S"PSliwSBoolSSAUI�SCPSLimbLength 1SNumberSSAUD�?DDY@�SShadingCY�SCullingS
CullingOff�[.ModelL@�:SLeftLipUpperModelSLimbNode\TVersionI��[Properties70�T+PSRotationActiveSboolSSI�T(PSInheritTypeSenumSSI9UGPS
ScalingMaxSVector3DSVectorSDDDU8PSDefaultAttributeIndexSintSIntegerSI�UNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@.VEPSVisibility InheritanceSVisibility InheritanceSSIhV,PS	MultiTakeSintSIntegerSI�V-PSManipulationModeSenumSSIWUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDCW/PSSetPreferedAngleSActionSSI~W-PSPivotsVisibilitySenumSSI�W5PSRotationLimitsVisibilitySboolSSI	X:PSLocalTranslationRefVisibilitySboolSSIIX2PSRotationRefVisibilitySboolSSI�X3PSRotationAxisVisibilitySboolSSI�X1PSScalingRefVisibilitySboolSSIY9PSHierarchicalCenterVisibilitySboolSSITY6PSGeometricCenterVisibilitySboolSSI�Y8PSReferentialSizeSdoubleSNumberSD(@�Y5PSDefaultKeyingGroupSintSIntegerSIZ3PSDefaultKeyingGroupEnumSenumSSIQZ%PSPickableSboolSSI�Z*PS
TransformableSboolSSI�Z(PSCullingModeSenumSSI�Z-PSShowTrajectoriesSboolSSI*["PSliwSBoolSSAUI{[CPSLimbLength 1SNumberSSAUD�?DDY@�[ShadingCY�[CullingS
CullingOff�c-ModelLH�:SLeftNostrilModelSLimbNode&\VersionI�RcProperties70x\+PSRotationActiveSboolSSI�\(PSInheritTypeSenumSSI]GPS
ScalingMaxSVector3DSVectorSDDDI]8PSDefaultAttributeIndexSintSIntegerSI�]NPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�]EPSVisibility InheritanceSVisibility InheritanceSSI2^,PS	MultiTakeSintSIntegerSIm^-PSManipulationModeSenumSSI�^UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD
_/PSSetPreferedAngleSActionSSIH_-PSPivotsVisibilitySenumSSI�_5PSRotationLimitsVisibilitySboolSSI�_:PSLocalTranslationRefVisibilitySboolSSI`2PSRotationRefVisibilitySboolSSIT`3PSRotationAxisVisibilitySboolSSI�`1PSScalingRefVisibilitySboolSSI�`9PSHierarchicalCenterVisibilitySboolSSIa6PSGeometricCenterVisibilitySboolSSIda8PSReferentialSizeSdoubleSNumberSD(@�a5PSDefaultKeyingGroupSintSIntegerSI�a3PSDefaultKeyingGroupEnumSenumSSIb%PSPickableSboolSSISb*PS
TransformableSboolSSI�b(PSCullingModeSenumSSI�b-PSShowTrajectoriesSboolSSI�b"PSliwSBoolSSAUIEcCPSLimbLength 1SNumberSSAUD�?DDY@hcShadingCY�cCullingS
CullingOff`k+ModelLP�:SLeftCheekModelSLimbNode�cVersionI�kProperties70@d+PSRotationActiveSboolSSIvd(PSInheritTypeSenumSSI�dGPS
ScalingMaxSVector3DSVectorSDDDe8PSDefaultAttributeIndexSintSIntegerSImeNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@�eEPSVisibility InheritanceSVisibility InheritanceSSI�e,PS	MultiTakeSintSIntegerSI5f-PSManipulationModeSenumSSI�fUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�f/PSSetPreferedAngleSActionSSIg-PSPivotsVisibilitySenumSSISg5PSRotationLimitsVisibilitySboolSSI�g:PSLocalTranslationRefVisibilitySboolSSI�g2PSRotationRefVisibilitySboolSSIh3PSRotationAxisVisibilitySboolSSI[h1PSScalingRefVisibilitySboolSSI�h9PSHierarchicalCenterVisibilitySboolSSI�h6PSGeometricCenterVisibilitySboolSSI,i8PSReferentialSizeSdoubleSNumberSD(@oi5PSDefaultKeyingGroupSintSIntegerSI�i3PSDefaultKeyingGroupEnumSenumSSI�i%PSPickableSboolSSIj*PS
TransformableSboolSSIQj(PSCullingModeSenumSSI�j-PSShowTrajectoriesSboolSSI�j"PSliwSBoolSSAUI
kCPSLimbLength 1SNumberSSAUD�?DDY@0kShadingCYSkCullingS
CullingOff�s1ModelLX�:SLeftEyelidLowerModelSLimbNode�kVersionI�>sProperties70l+PSRotationActiveSboolSSIDl(PSInheritTypeSenumSSI�lGPS
ScalingMaxSVector3DSVectorSDDD�l8PSDefaultAttributeIndexSintSIntegerSI;mNPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@�mHPSLcl RotationSLcl RotationSSAD�D�D�mEPSVisibility InheritanceSVisibility InheritanceSSIn,PS	MultiTakeSintSIntegerSIYn-PSManipulationModeSenumSSI�nUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�n/PSSetPreferedAngleSActionSSI4o-PSPivotsVisibilitySenumSSIwo5PSRotationLimitsVisibilitySboolSSI�o:PSLocalTranslationRefVisibilitySboolSSI�o2PSRotationRefVisibilitySboolSSI@p3PSRotationAxisVisibilitySboolSSIp1PSScalingRefVisibilitySboolSSI�p9PSHierarchicalCenterVisibilitySboolSSI
q6PSGeometricCenterVisibilitySboolSSIPq8PSReferentialSizeSdoubleSNumberSD(@�q5PSDefaultKeyingGroupSintSIntegerSI�q3PSDefaultKeyingGroupEnumSenumSSIr%PSPickableSboolSSI?r*PS
TransformableSboolSSIur(PSCullingModeSenumSSI�r-PSShowTrajectoriesSboolSSI�r"PSliwSBoolSSAUI1sCPSLimbLength 1SNumberSSAUD�?DDY@TsShadingCYwsCullingS
CullingOffR{1ModelL`�:SLeftEyelidUpperModelSLimbNode�sVersionI�{Properties702t+PSRotationActiveSboolSSIht(PSInheritTypeSenumSSI�tGPS
ScalingMaxSVector3DSVectorSDDDu8PSDefaultAttributeIndexSintSIntegerSI_uNPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @�uEPSVisibility InheritanceSVisibility InheritanceSSI�u,PS	MultiTakeSintSIntegerSI'v-PSManipulationModeSenumSSI�vUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�v/PSSetPreferedAngleSActionSSIw-PSPivotsVisibilitySenumSSIEw5PSRotationLimitsVisibilitySboolSSI�w:PSLocalTranslationRefVisibilitySboolSSI�w2PSRotationRefVisibilitySboolSSIx3PSRotationAxisVisibilitySboolSSIMx1PSScalingRefVisibilitySboolSSI�x9PSHierarchicalCenterVisibilitySboolSSI�x6PSGeometricCenterVisibilitySboolSSIy8PSReferentialSizeSdoubleSNumberSD(@ay5PSDefaultKeyingGroupSintSIntegerSI�y3PSDefaultKeyingGroupEnumSenumSSI�y%PSPickableSboolSSI
z*PS
TransformableSboolSSICz(PSCullingModeSenumSSI~z-PSShowTrajectoriesSboolSSI�z"PSliwSBoolSSAUI�zCPSLimbLength 1SNumberSSAUD�?DDY@"{ShadingCYE{CullingS
CullingOff�/ModelLh�:SLeftInnerBrowModelSLimbNode�{VersionI�؂Properties70�{+PSRotationActiveSboolSSI4|(PSInheritTypeSenumSSI�|GPS
ScalingMaxSVector3DSVectorSDDD�|8PSDefaultAttributeIndexSintSIntegerSI+}NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@~}EPSVisibility InheritanceSVisibility InheritanceSSI�},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSIV~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIY:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI`�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@-�5PSDefaultKeyingGroupSintSIntegerSIn�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIف*PS
TransformableSboolSSI�(PSCullingModeSenumSSIJ�-PSShowTrajectoriesSboolSSIz�"PSliwSBoolSSAUI˂CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff#�0ModelLp�:SLeftIOuterBrowModelSLimbNodey�VersionI�݊Properties70ʃ*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI9�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDԄ8PSDefaultAttributeIndexSintSIntegerSI0�NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI[�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIӆ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI^�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI߇3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIe�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@2�5PSDefaultKeyingGroupSintSIntegerSIs�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIމ*PS
TransformableSboolSSI�(PSCullingModeSenumSSIO�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIЊCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelL�s�:SRightInnerBrowModelSLimbNode~�VersionI���Properties70Ћ+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI[�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@P�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIō-PSManipulationModeSenumSSI(�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDe�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI+�:PSLocalTranslationRefVisibilitySboolSSIk�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI2�9PSHierarchicalCenterVisibilitySboolSSIv�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI@�3PSDefaultKeyingGroupEnumSenumSSIs�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIL�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��1ModelL�x�:SRightIOuterBrowModelSLimbNodeL�VersionI���Properties70��*PS
RotationOrderSenumSSI֓+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIa�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@V�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI˕-PSManipulationModeSenumSSI.�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDk�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI1�:PSLocalTranslationRefVisibilitySboolSSIq�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI8�9PSHierarchicalCenterVisibilitySboolSSI|�6PSGeometricCenterVisibilitySboolSSI˜8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIF�3PSDefaultKeyingGroupEnumSenumSSIy�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI"�-PSShowTrajectoriesSboolSSIR�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ƚShadingCY�CullingS
CullingOffŢ2ModelL�}�:SRightEyelidUpperModelSLimbNodeS�VersionI��Properties70��+PSRotationActiveSboolSSIۛ(PSInheritTypeSenumSSI0�GPS
ScalingMaxSVector3DSVectorSDDDv�8PSDefaultAttributeIndexSintSIntegerSIҜNPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @%�EPSVisibility InheritanceSVisibility InheritanceSSI_�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD:�/PSSetPreferedAngleSActionSSIu�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI@�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIK�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@Ԡ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIH�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI!�"PSliwSBoolSSAUIr�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�2ModelL���:SRightEyelidLowerModelSLimbNode"�VersionI���Properties70t�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDE�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@��HPSLcl RotationSLcl RotationSSAD�D�DJ�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI"�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD_�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIݦ5PSRotationLimitsVisibilitySboolSSI%�:PSLocalTranslationRefVisibilitySboolSSIe�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI,�9PSHierarchicalCenterVisibilitySboolSSIp�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI:�3PSDefaultKeyingGroupEnumSenumSSIm�%PSPickableSboolSSI��*PS
TransformableSboolSSI۩(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIF�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYݪCullingS
CullingOff��,ModelL���:SRightCheekModelSLimbNodeA�VersionI�m�Properties70��+PSRotationActiveSboolSSIɫ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDd�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@�EPSVisibility InheritanceSVisibility InheritanceSSIM�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD(�/PSSetPreferedAngleSActionSSIc�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI.�2PSRotationRefVisibilitySboolSSIo�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI9�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@°5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI6�%PSPickableSboolSSIn�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI߱-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI`�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff~�.ModelL��:SRightNostrilModelSLimbNode�VersionI�8�Properties70^�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD/�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@޴EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIS�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI.�-PSPivotsVisibilitySenumSSIq�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI:�3PSRotationAxisVisibilitySboolSSIy�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIJ�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIθ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI9�*PS
TransformableSboolSSIo�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIڹ"PSliwSBoolSSAUI+�CPSLimbLength 1SNumberSSAUD�?DDY@N�ShadingCYq�CullingS
CullingOffJ�/ModelL��:SRightLipUpperModelSLimbNodeغVersionI��Properties70*�+PSRotationActiveSboolSSI`�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIW�NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI=�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIž2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIE�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIп6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@Y�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI;�(PSCullingModeSenumSSIv�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY=�CullingS
CullingOff��/ModelL��:SRightShoulderModelSLimbNode��VersionI�~�Properties70�HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc�L�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIz�OPSLcl TranslationSLcl TranslationSSA+D����D��)6@D@
M����IPSLcl RotationSLcl RotationSSA+D`	4!�D`.+@D�����$�EPSVisibility InheritanceSVisibility InheritanceSSI^�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD9�/PSSetPreferedAngleSActionSSIt�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI?�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIJ�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIG�%PSPickableSboolSSI�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI �"PSliwSBoolSSAUIq�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff9�*ModelL��:SRightArmModelSLimbNode�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIL�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��$@D �\0�D@��վF�IPSLcl RotationSLcl RotationSSA+D��:@D�=D�D��PR@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIq�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI,�5PSRotationLimitsVisibilitySboolSSIt�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI4�1PSScalingRefVisibilitySboolSSI{�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@H�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI*�(PSCullingModeSenumSSIe�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@	�ShadingCY,�CullingS
CullingOff��.ModelL ��:SRightForeArmModelSLimbNode��VersionI�l�Properties70�HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?:�+PSRotationActiveSboolSSIp�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIh�OPSLcl TranslationSLcl TranslationSSA+D`�W9�D �<�?D`,�����IPSLcl RotationSLcl RotationSSA+Dp�
@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(��:SRightHandModelSLimbNode�VersionI���Properties70Z�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD+�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D@qk�D��!�D�!�2�EPSVisibility InheritanceSVisibility InheritanceSSIl�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDG�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI
�:PSLocalTranslationRefVisibilitySboolSSIM�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIX�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI"�3PSDefaultKeyingGroupEnumSenumSSIU�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI.�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffN�1ModelL0��:SRightHandPinky1ModelSLimbNode.�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q����+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIa�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D����D�K�ɿD�ۚ�[�IPSLcl RotationSLcl RotationSSA+D�l&!�D���1@D`l�2@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI#�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIA�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI
�3PSRotationAxisVisibilitySboolSSII�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@]�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI	�*PS
TransformableSboolSSI?�(PSCullingModeSenumSSIz�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYA�CullingS
CullingOff��1ModelL��c:SRightHandPinky2ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?R�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD#�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D���D�(���D`����IPSLcl RotationSLcl RotationSSA+D r�	�D����?D�!a6@*�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��1ModelL�d:SRightHandPinky3ModelSLimbNode&�VersionI���Properties70x�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDI�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�8$�D��V��D �@���IPSLcl RotationSLcl RotationSSA+D@!��D@{��?D���;@P�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI(�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDe�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI+�:PSLocalTranslationRefVisibilitySboolSSIk�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI2�9PSHierarchicalCenterVisibilitySboolSSIv�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI@�3PSDefaultKeyingGroupEnumSenumSSIs�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIL�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffk0ModelL�	d:SRightHandRing1ModelSLimbNodeK�VersionI�%Properties70��HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c���+PSRotationActiveSboolSSI)�(PSInheritTypeSenumSSI~�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI!�OPSLcl TranslationSLcl TranslationSSA+D�H=�D�is�?D �m�x�IPSLcl RotationSLcl RotationSSA+D �#�D��6@D���3@��EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSI@-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSI^5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI'3PSRotationAxisVisibilitySboolSSIf1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI78PSReferentialSizeSdoubleSNumberSD(@z5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI&*PS
TransformableSboolSSI\(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@;ShadingCY^CullingS
CullingOff�
0ModelL�d:SRightHandRing2ModelSLimbNode�VersionI��
Properties705HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{�n+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD?8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D�'�D ښ��D`K�߿�IPSLcl RotationSLcl RotationSSA+D�
�Dm�?D��5@FEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD[	/PSSetPreferedAngleSActionSSI�	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI!
:PSLocalTranslationRefVisibilitySboolSSIa
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI(9PSHierarchicalCenterVisibilitySboolSSIl6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI63PSDefaultKeyingGroupEnumSenumSSIi%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI
-PSShowTrajectoriesSboolSSIB
"PSliwSBoolSSAUI�
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOff0ModelL�d:SRightHandRing3ModelSLimbNodeAVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDd8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@���D�
��D��ݿIPSLcl RotationSLcl RotationSSA+D@4��D ���?D �m<@kEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSICUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIF:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIM9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSI[3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI7-PSShowTrajectoriesSboolSSIg"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�2ModelL�d:SRightHandMiddle1ModelSLimbNodehVersionI�BProperties70�HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�+PSRotationActiveSboolSSIF(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI>OPSLcl TranslationSLcl TranslationSSA+D�QB�D<��?D@��?�IPSLcl RotationSLcl RotationSSA+D�u*�?D�X��D���3@�EPSVisibility InheritanceSVisibility InheritanceSSI",PS	MultiTakeSintSIntegerSI]-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI8-PSPivotsVisibilitySenumSSI{5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSID3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSIT8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIC*PS
TransformableSboolSSIy(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI5CPSLimbLength 1SNumberSSAUD�?DDY@XShadingCY{CullingS
CullingOff'2ModelLd:SRightHandMiddle2ModelSLimbNode�VersionI��&Properties70THPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI GPS
ScalingMaxSVector3DSVectorSDDD^ 8PSDefaultAttributeIndexSintSIntegerSI� OPSLcl TranslationSLcl TranslationSSA+D`��D���?D@��?!IPSLcl RotationSLcl RotationSSA+D�c��?D�r�}�D���8@e!EPSVisibility InheritanceSVisibility InheritanceSSI�!,PS	MultiTakeSintSIntegerSI�!-PSManipulationModeSenumSSI="UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDz"/PSSetPreferedAngleSActionSSI�"-PSPivotsVisibilitySenumSSI�"5PSRotationLimitsVisibilitySboolSSI@#:PSLocalTranslationRefVisibilitySboolSSI�#2PSRotationRefVisibilitySboolSSI�#3PSRotationAxisVisibilitySboolSSI$1PSScalingRefVisibilitySboolSSIG$9PSHierarchicalCenterVisibilitySboolSSI�$6PSGeometricCenterVisibilitySboolSSI�$8PSReferentialSizeSdoubleSNumberSD(@%5PSDefaultKeyingGroupSintSIntegerSIU%3PSDefaultKeyingGroupEnumSenumSSI�%%PSPickableSboolSSI�%*PS
TransformableSboolSSI�%(PSCullingModeSenumSSI1&-PSShowTrajectoriesSboolSSIa&"PSliwSBoolSSAUI�&CPSLimbLength 1SNumberSSAUD�?DDY@�&ShadingCY�&CullingS
CullingOff,/2ModelL#d:SRightHandMiddle3ModelSLimbNodeb'VersionI��.Properties70�'+PSRotationActiveSboolSSI�'(PSInheritTypeSenumSSI?(GPS
ScalingMaxSVector3DSVectorSDDD�(8PSDefaultAttributeIndexSintSIntegerSI�(OPSLcl TranslationSLcl TranslationSSA+D >u
�D@�&�D�I��?9)IPSLcl RotationSLcl RotationSSA+D�Q;�?D@>^ÿD ��@@�)EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI*-PSManipulationModeSenumSSId*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI+5PSRotationLimitsVisibilitySboolSSIg+:PSLocalTranslationRefVisibilitySboolSSI�+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI',1PSScalingRefVisibilitySboolSSIn,9PSHierarchicalCenterVisibilitySboolSSI�,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@;-5PSDefaultKeyingGroupSintSIntegerSI|-3PSDefaultKeyingGroupEnumSenumSSI�-%PSPickableSboolSSI�-*PS
TransformableSboolSSI.(PSCullingModeSenumSSIX.-PSShowTrajectoriesSboolSSI�."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY/CullingS
CullingOff�71ModelL(d:SRightHandIndex1ModelSLimbNode�/VersionI�b7Properties70�/HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��00+PSRotationActiveSboolSSIf0(PSInheritTypeSenumSSI�0GPS
ScalingMaxSVector3DSVectorSDDD18PSDefaultAttributeIndexSintSIntegerSI^1OPSLcl TranslationSLcl TranslationSSA+D�e��D�yҿ�D��y@�1IPSLcl RotationSLcl RotationSSA+D V�?D@^/,�D@�1&@2EPSVisibility InheritanceSVisibility InheritanceSSIB2,PS	MultiTakeSintSIntegerSI}2-PSManipulationModeSenumSSI�2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD3/PSSetPreferedAngleSActionSSIX3-PSPivotsVisibilitySenumSSI�35PSRotationLimitsVisibilitySboolSSI�3:PSLocalTranslationRefVisibilitySboolSSI#42PSRotationRefVisibilitySboolSSId43PSRotationAxisVisibilitySboolSSI�41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI.56PSGeometricCenterVisibilitySboolSSIt58PSReferentialSizeSdoubleSNumberSD(@�55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI+6%PSPickableSboolSSIc6*PS
TransformableSboolSSI�6(PSCullingModeSenumSSI�6-PSShowTrajectoriesSboolSSI7"PSliwSBoolSSAUIU7CPSLimbLength 1SNumberSSAUD�?DDY@x7ShadingCY�7CullingS
CullingOff$@1ModelL-d:SRightHandIndex2ModelSLimbNode8VersionI��?Properties70s8HPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\��8+PSRotationActiveSboolSSI�8(PSInheritTypeSenumSSI79GPS
ScalingMaxSVector3DSVectorSDDD}98PSDefaultAttributeIndexSintSIntegerSI�9OPSLcl TranslationSLcl TranslationSSA+D���
�D���?D�!C�?1:IPSLcl RotationSLcl RotationSSA+Dࠇ@D �8�D �69@�:EPSVisibility InheritanceSVisibility InheritanceSSI�:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSI\;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�;/PSSetPreferedAngleSActionSSI�;-PSPivotsVisibilitySenumSSI<5PSRotationLimitsVisibilitySboolSSI_<:PSLocalTranslationRefVisibilitySboolSSI�<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI=1PSScalingRefVisibilitySboolSSIf=9PSHierarchicalCenterVisibilitySboolSSI�=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@3>5PSDefaultKeyingGroupSintSIntegerSIt>3PSDefaultKeyingGroupEnumSenumSSI�>%PSPickableSboolSSI�>*PS
TransformableSboolSSI?(PSCullingModeSenumSSIP?-PSShowTrajectoriesSboolSSI�?"PSliwSBoolSSAUI�?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY@CullingS
CullingOffJH1ModelL 2d:SRightHandIndex3ModelSLimbNode�@VersionI�HProperties70�@+PSRotationActiveSboolSSIA(PSInheritTypeSenumSSI]AGPS
ScalingMaxSVector3DSVectorSDDD�A8PSDefaultAttributeIndexSintSIntegerSIBOPSLcl TranslationSLcl TranslationSSA+D�.�D��߿D@���?WBIPSLcl RotationSLcl RotationSSA+D !��?D��C��D�5@�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSIC-PSManipulationModeSenumSSI�CUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSI=D5PSRotationLimitsVisibilitySboolSSI�D:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSIE3PSRotationAxisVisibilitySboolSSIEE1PSScalingRefVisibilitySboolSSI�E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSIF8PSReferentialSizeSdoubleSNumberSD(@YF5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSIG*PS
TransformableSboolSSI;G(PSCullingModeSenumSSIvG-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@HShadingCY=HCullingS
CullingOff�P1ModelL(7d:SRightHandThumb1ModelSLimbNode�HVersionI��PProperties70IHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D��*�NI+PSRotationActiveSboolSSI�I(PSInheritTypeSenumSSI�IGPS
ScalingMaxSVector3DSVectorSDDDJ8PSDefaultAttributeIndexSintSIntegerSI|JOPSLcl TranslationSLcl TranslationSSA+D�~��D����D༯@�JIPSLcl RotationSLcl RotationSSA+D@�B)@D � �D �@&KEPSVisibility InheritanceSVisibility InheritanceSSI`K,PS	MultiTakeSintSIntegerSI�K-PSManipulationModeSenumSSI�KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD;L/PSSetPreferedAngleSActionSSIvL-PSPivotsVisibilitySenumSSI�L5PSRotationLimitsVisibilitySboolSSIM:PSLocalTranslationRefVisibilitySboolSSIAM2PSRotationRefVisibilitySboolSSI�M3PSRotationAxisVisibilitySboolSSI�M1PSScalingRefVisibilitySboolSSIN9PSHierarchicalCenterVisibilitySboolSSILN6PSGeometricCenterVisibilitySboolSSI�N8PSReferentialSizeSdoubleSNumberSD(@�N5PSDefaultKeyingGroupSintSIntegerSIO3PSDefaultKeyingGroupEnumSenumSSIIO%PSPickableSboolSSI�O*PS
TransformableSboolSSI�O(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSI"P"PSliwSBoolSSAUIsPCPSLimbLength 1SNumberSSAUD�?DDY@�PShadingCY�PCullingS
CullingOff�X1ModelL(U:SRightHandThumb2ModelSLimbNode"QVersionI��XProperties70tQ+PSRotationActiveSboolSSI�Q(PSInheritTypeSenumSSI�QGPS
ScalingMaxSVector3DSVectorSDDDER8PSDefaultAttributeIndexSintSIntegerSI�ROPSLcl TranslationSLcl TranslationSSA+D`�2��D`���D��@�RIPSLcl RotationSLcl RotationSSA+D����?D �� �D�_hϿLSEPSVisibility InheritanceSVisibility InheritanceSSI�S,PS	MultiTakeSintSIntegerSI�S-PSManipulationModeSenumSSI$TUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDaT/PSSetPreferedAngleSActionSSI�T-PSPivotsVisibilitySenumSSI�T5PSRotationLimitsVisibilitySboolSSI'U:PSLocalTranslationRefVisibilitySboolSSIgU2PSRotationRefVisibilitySboolSSI�U3PSRotationAxisVisibilitySboolSSI�U1PSScalingRefVisibilitySboolSSI.V9PSHierarchicalCenterVisibilitySboolSSIrV6PSGeometricCenterVisibilitySboolSSI�V8PSReferentialSizeSdoubleSNumberSD(@�V5PSDefaultKeyingGroupSintSIntegerSI<W3PSDefaultKeyingGroupEnumSenumSSIoW%PSPickableSboolSSI�W*PS
TransformableSboolSSI�W(PSCullingModeSenumSSIX-PSShowTrajectoriesSboolSSIHX"PSliwSBoolSSAUI�XCPSLimbLength 1SNumberSSAUD�?DDY@�XShadingCY�XCullingS
CullingOffga1ModelL-U:SRightHandThumb3ModelSLimbNodeHYVersionI�!aProperties70�YHPSPreRotationSVector3DSVectorSD$�rOϸ>DD�Y+PSRotationActiveSboolSSI&Z(PSInheritTypeSenumSSI{ZGPS
ScalingMaxSVector3DSVectorSDDD�Z8PSDefaultAttributeIndexSintSIntegerSI[OPSLcl TranslationSLcl TranslationSSA+D@5^�D �r�D@��@t[HPSLcl RotationSLcl RotationSSAD@C@D`99�Dw��[EPSVisibility InheritanceSVisibility InheritanceSSI\,PS	MultiTakeSintSIntegerSI<\-PSManipulationModeSenumSSI�\UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�\/PSSetPreferedAngleSActionSSI]-PSPivotsVisibilitySenumSSIZ]5PSRotationLimitsVisibilitySboolSSI�]:PSLocalTranslationRefVisibilitySboolSSI�]2PSRotationRefVisibilitySboolSSI#^3PSRotationAxisVisibilitySboolSSIb^1PSScalingRefVisibilitySboolSSI�^9PSHierarchicalCenterVisibilitySboolSSI�^6PSGeometricCenterVisibilitySboolSSI3_8PSReferentialSizeSdoubleSNumberSD(@v_5PSDefaultKeyingGroupSintSIntegerSI�_3PSDefaultKeyingGroupEnumSenumSSI�_%PSPickableSboolSSI"`*PS
TransformableSboolSSIX`(PSCullingModeSenumSSI�`-PSShowTrajectoriesSboolSSI�`"PSliwSBoolSSAUIaCPSLimbLength 1SNumberSSAUD�?DDY@7aShadingCYZaCullingS
CullingOff�i.ModelL 2U:SLeftShoulderModelSLimbNode�aVersionI��iProperties70/bHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9�hb+PSRotationActiveSboolSSI�b(PSInheritTypeSenumSSI�bGPS
ScalingMaxSVector3DSVectorSDDD9c8PSDefaultAttributeIndexSintSIntegerSI�cOPSLcl TranslationSLcl TranslationSSA+D��@D@�)6@D@
M���cIPSLcl RotationSLcl RotationSSA+D�L�@D�o(�D�{�@dEPSVisibility InheritanceSVisibility InheritanceSSIzd,PS	MultiTakeSintSIntegerSI�d-PSManipulationModeSenumSSIeUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDUe/PSSetPreferedAngleSActionSSI�e-PSPivotsVisibilitySenumSSI�e5PSRotationLimitsVisibilitySboolSSIf:PSLocalTranslationRefVisibilitySboolSSI[f2PSRotationRefVisibilitySboolSSI�f3PSRotationAxisVisibilitySboolSSI�f1PSScalingRefVisibilitySboolSSI"g9PSHierarchicalCenterVisibilitySboolSSIfg6PSGeometricCenterVisibilitySboolSSI�g8PSReferentialSizeSdoubleSNumberSD(@�g5PSDefaultKeyingGroupSintSIntegerSI0h3PSDefaultKeyingGroupEnumSenumSSIch%PSPickableSboolSSI�h*PS
TransformableSboolSSI�h(PSCullingModeSenumSSIi-PSShowTrajectoriesSboolSSI<i"PSliwSBoolSSAUI�iCPSLimbLength 1SNumberSSAUD�?DDY@�iShadingCY�iCullingS
CullingOffTr)ModelL(7U:SLeftArmModelSLimbNode4jVersionI�rProperties70�jHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@�j+PSRotationActiveSboolSSIk(PSInheritTypeSenumSSIgkGPS
ScalingMaxSVector3DSVectorSDDD�k8PSDefaultAttributeIndexSintSIntegerSI
lOPSLcl TranslationSLcl TranslationSSA+D��$@D��3~>D\qT�alIPSLcl RotationSLcl RotationSSA+DLN@D�G1�D�8YL��lEPSVisibility InheritanceSVisibility InheritanceSSI�l,PS	MultiTakeSintSIntegerSI)m-PSManipulationModeSenumSSI�mUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�m/PSSetPreferedAngleSActionSSIn-PSPivotsVisibilitySenumSSIGn5PSRotationLimitsVisibilitySboolSSI�n:PSLocalTranslationRefVisibilitySboolSSI�n2PSRotationRefVisibilitySboolSSIo3PSRotationAxisVisibilitySboolSSIOo1PSScalingRefVisibilitySboolSSI�o9PSHierarchicalCenterVisibilitySboolSSI�o6PSGeometricCenterVisibilitySboolSSI p8PSReferentialSizeSdoubleSNumberSD(@cp5PSDefaultKeyingGroupSintSIntegerSI�p3PSDefaultKeyingGroupEnumSenumSSI�p%PSPickableSboolSSIq*PS
TransformableSboolSSIEq(PSCullingModeSenumSSI�q-PSShowTrajectoriesSboolSSI�q"PSliwSBoolSSAUIrCPSLimbLength 1SNumberSSAUD�?DDY@$rShadingCYGrCullingS
CullingOff�z-ModelL0<U:SLeftForeArmModelSLimbNode�rVersionI��zProperties70sHPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?Ts+PSRotationActiveSboolSSI�s(PSInheritTypeSenumSSI�sGPS
ScalingMaxSVector3DSVectorSDDD%t8PSDefaultAttributeIndexSintSIntegerSI�tOPSLcl TranslationSLcl TranslationSSA+D��g9@D��F�D�rG>�tIPSLcl RotationSLcl RotationSSA+D@ͱE�D�!�.�D�?d!@,uEPSVisibility InheritanceSVisibility InheritanceSSIfu,PS	MultiTakeSintSIntegerSI�u-PSManipulationModeSenumSSIvUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDAv/PSSetPreferedAngleSActionSSI|v-PSPivotsVisibilitySenumSSI�v5PSRotationLimitsVisibilitySboolSSIw:PSLocalTranslationRefVisibilitySboolSSIGw2PSRotationRefVisibilitySboolSSI�w3PSRotationAxisVisibilitySboolSSI�w1PSScalingRefVisibilitySboolSSIx9PSHierarchicalCenterVisibilitySboolSSIRx6PSGeometricCenterVisibilitySboolSSI�x8PSReferentialSizeSdoubleSNumberSD(@�x5PSDefaultKeyingGroupSintSIntegerSIy3PSDefaultKeyingGroupEnumSenumSSIOy%PSPickableSboolSSI�y*PS
TransformableSboolSSI�y(PSCullingModeSenumSSI�y-PSShowTrajectoriesSboolSSI(z"PSliwSBoolSSAUIyzCPSLimbLength 1SNumberSSAUD�?DDY@�zShadingCY�zCullingS
CullingOff�*ModelL8AU:SLeftHandModelSLimbNode!{VersionI���Properties70s{+PSRotationActiveSboolSSI�{(PSInheritTypeSenumSSI�{GPS
ScalingMaxSVector3DSVectorSDDDD|8PSDefaultAttributeIndexSintSIntegerSI�|OPSLcl TranslationSLcl TranslationSSA+D���8@D�"G�D�� >�|IPSLcl RotationSLcl RotationSSA+D@o�D��Y@D`��@K}EPSVisibility InheritanceSVisibility InheritanceSSI�},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI#~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD`~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI&:PSLocalTranslationRefVisibilitySboolSSIf2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI-�9PSHierarchicalCenterVisibilitySboolSSIq�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI;�3PSDefaultKeyingGroupEnumSenumSSIn�%PSPickableSboolSSI��*PS
TransformableSboolSSI܁(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIG�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYނCullingS
CullingOfff�0ModelL@FU:SLeftHandPinky1ModelSLimbNodeF�VersionI� �Properties70��HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@DU�Z~Q���+PSRotationActiveSboolSSI$�(PSInheritTypeSenumSSIy�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D �C@D�S
�D@�	�s�IPSLcl RotationSLcl RotationSSA+D��@D�b�(�D�aB�ƅ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�0ModelLHKU:SLeftHandPinky2ModelSLimbNode��VersionI���Properties700�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?i�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD:�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D���@D`�Ji�D@�¿�IPSLcl RotationSLcl RotationSSA+D@�E@D`��?D���A�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
CullingOff�0ModelLPPU:SLeftHandPinky3ModelSLimbNode<�VersionI���Properties70��+PSRotationActiveSboolSSIĔ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD_�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D@�s@D���D�D�㊾>�IPSLcl RotationSLcl RotationSSA+D�+a
@D L��?D�V�1�f�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIۖ-PSManipulationModeSenumSSI>�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD{�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIA�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI˜3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIH�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIҙ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIV�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI2�-PSShowTrajectoriesSboolSSIb�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@֛ShadingCY��CullingS
CullingOff��/ModelLXUU:SLeftHandRing1ModelSLimbNode`�VersionI�:�Properties70ϜHPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c��+PSRotationActiveSboolSSI>�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDٝ8PSDefaultAttributeIndexSintSIntegerSI6�OPSLcl TranslationSLcl TranslationSSA+D��@D�P�׿D EB򿍞IPSLcl RotationSLcl RotationSSA+D��@D����D`N�@���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIU�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI0�-PSPivotsVisibilitySenumSSIs�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI<�3PSRotationAxisVisibilitySboolSSI{�1PSScalingRefVisibilitySboolSSI¡9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIL�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIТ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI;�*PS
TransformableSboolSSIq�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIܣ"PSliwSBoolSSAUI-�CPSLimbLength 1SNumberSSAUD�?DDY@P�ShadingCYs�CullingS
CullingOff��/ModelL`ZU:SLeftHandRing2ModelSLimbNodeڤVersionI���Properties70I�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI
�GPS
ScalingMaxSVector3DSVectorSDDDS�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D A@D�Ua�D`;�̿�IPSLcl RotationSLcl RotationSSA+D�P7�?D ��?D``�A�Z�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIϧ-PSManipulationModeSenumSSI2�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDo�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI5�:PSLocalTranslationRefVisibilitySboolSSIu�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI<�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIƪ8PSReferentialSizeSdoubleSNumberSD(@	�5PSDefaultKeyingGroupSintSIntegerSIJ�3PSDefaultKeyingGroupEnumSenumSSI}�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI&�-PSShowTrajectoriesSboolSSIV�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ʬShadingCY�CullingS
CullingOff�/ModelLh_U:SLeftHandRing3ModelSLimbNodeT�VersionI�شProperties70��+PSRotationActiveSboolSSIܭ(PSInheritTypeSenumSSI1�GPS
ScalingMaxSVector3DSVectorSDDDw�8PSDefaultAttributeIndexSintSIntegerSIԮOPSLcl TranslationSLcl TranslationSSA+D��@D@ŤP>D�N���+�IPSLcl RotationSLcl RotationSSA+D����?D�U$�?D��1�~�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIV�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIΰ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIY�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIڱ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI`�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@-�5PSDefaultKeyingGroupSintSIntegerSIn�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIٳ*PS
TransformableSboolSSI�(PSCullingModeSenumSSIJ�-PSShowTrajectoriesSboolSSIz�"PSliwSBoolSSAUI˴CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff��1ModelL��B:SLeftHandMiddle1ModelSLimbNodez�VersionI�T�Properties70�HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--�"�+PSRotationActiveSboolSSIX�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIP�OPSLcl TranslationSLcl TranslationSSA+D�h@D`5!ȿD�9�?��IPSLcl RotationSLcl RotationSSA+D`���D���?D�׵A���EPSVisibility InheritanceSVisibility InheritanceSSI4�,PS	MultiTakeSintSIntegerSIo�-PSManipulationModeSenumSSIҸUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIJ�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIչ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIV�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIܺ9PSHierarchicalCenterVisibilitySboolSSI �6PSGeometricCenterVisibilitySboolSSIf�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIU�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIƼ-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIG�CPSLimbLength 1SNumberSSAUD�?DDY@j�ShadingCY��CullingS
CullingOff�1ModelL��B:SLeftHandMiddle2ModelSLimbNode��VersionI���Properties70e�HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9���+PSRotationActiveSboolSSIԾ(PSInheritTypeSenumSSI)�GPS
ScalingMaxSVector3DSVectorSDDDo�8PSDefaultAttributeIndexSintSIntegerSI̿OPSLcl TranslationSLcl TranslationSSA+D Q�@D�+s??D��ǥ�#�IPSLcl RotationSLcl RotationSSA+D��u�D��׿D@�D�v�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIN�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI	�5PSRotationLimitsVisibilitySboolSSIQ�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIX�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@%�5PSDefaultKeyingGroupSintSIntegerSIf�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIB�-PSShowTrajectoriesSboolSSIr�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY	�CullingS
CullingOff<�1ModelL��B:SLeftHandMiddle3ModelSLimbNoder�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIO�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D �+@D��q��D@�*�>I�IPSLcl RotationSLcl RotationSSA+D@C�D �4ƿD@��6���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIt�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI/�5PSRotationLimitsVisibilitySboolSSIw�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI7�1PSScalingRefVisibilitySboolSSI~�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@K�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI-�(PSCullingModeSenumSSIh�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY/�CullingS
CullingOff��0ModelL��B:SLeftHandIndex1ModelSLimbNode��VersionI�q�Properties70�HPSPreRotationSVector3DSVectorSD4�t�c�D���PNk"�Dʴ	A��?�+PSRotationActiveSboolSSIu�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIm�OPSLcl TranslationSLcl TranslationSSA+D��@D���D�B
@��IPSLcl RotationSLcl RotationSSA+D`l�"�D���@D�̃:��EPSVisibility InheritanceSVisibility InheritanceSSIQ�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD,�/PSSetPreferedAngleSActionSSIg�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI2�2PSRotationRefVisibilitySboolSSIs�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI=�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI:�%PSPickableSboolSSIr�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUId�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff2�0ModelL��B:SLeftHandIndex2ModelSLimbNode�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIE�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�{�@D��ft?D`�Z�??�IPSLcl RotationSLcl RotationSSA+D`���D���D�B�C���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
CullingOffW�0ModelL��B:SLeftHandIndex3ModelSLimbNode��VersionI��Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIj�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI
�OPSLcl TranslationSLcl TranslationSSA+D��_@D�����D Вվd�IPSLcl RotationSLcl RotationSSA+D`t�D@��?D ��"���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI,�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIJ�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIR�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI#�8PSReferentialSizeSdoubleSNumberSD(@f�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIH�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@'�ShadingCYJ�CullingS
CullingOff��0ModelL��B:SLeftHandThumb1ModelSLimbNode��VersionI���Properties70!�HPSPreRotationSVector3DSVectorSDD��t[��?D2��*�Z�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD+�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D���?D���D��l@��IPSLcl RotationSLcl RotationSSA+D���+@D�
@D}f�2�EPSVisibility InheritanceSVisibility InheritanceSSIl�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDG�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI
�:PSLocalTranslationRefVisibilitySboolSSIM�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIX�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI"�3PSDefaultKeyingGroupEnumSenumSSIU�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI.�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelL��B:SLeftHandThumb2ModelSLimbNode-�VersionI���Properties70�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI
�GPS
ScalingMaxSVector3DSVectorSDDDP�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D`�2�?D`���D`
�@�IPSLcl RotationSLcl RotationSSA+D���?D T� @D���?W�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI/�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDl�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI2�:PSLocalTranslationRefVisibilitySboolSSIr�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI9�9PSHierarchicalCenterVisibilitySboolSSI}�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIG�3PSDefaultKeyingGroupEnumSenumSSIz�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI#�-PSShowTrajectoriesSboolSSIS�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffq0ModelL�C:SLeftHandThumb3ModelSLimbNodeR�VersionI�+Properties70��HPSPreRotationSVector3DSVectorSD��cܥ�>DD��+PSRotationActiveSboolSSI0�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI(�OPSLcl TranslationSLcl TranslationSSA+D@5^@D �r�D@��@~�HPSLcl RotationSLcl RotationSSAD�C@D�99@D��s@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIF�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI!�-PSPivotsVisibilitySenumSSId�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI-�3PSRotationAxisVisibilitySboolSSIl�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI=�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI,�*PS
TransformableSboolSSIb�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@AShadingCYdCullingS
CullingOff�,ModelL�C:SRightUpLegModelSLimbNode�VersionI�LProperties70+PSRotationActiveSboolSSIP(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIHOPSLcl TranslationSLcl TranslationSSA+D@.�D �C�DH=�IPSLcl RotationSLcl RotationSSA+D@��D�D�8��D^���EPSVisibility InheritanceSVisibility InheritanceSSI,,PS	MultiTakeSintSIntegerSIg-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSIB-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI
2PSRotationRefVisibilitySboolSSIN3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSI^8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIM*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI?CPSLimbLength 1SNumberSSAUD�?DDY@bShadingCY�CullingS
CullingOff�*ModelL
C:SRightLegModelSLimbNode�VersionI�kProperties709	+PSRotationActiveSboolSSIo	(PSInheritTypeSenumSSI�	GPS
ScalingMaxSVector3DSVectorSDDD

8PSDefaultAttributeIndexSintSIntegerSIg
OPSLcl TranslationSLcl TranslationSSA+D`�p�D@�tD�D@�e���
IPSLcl RotationSLcl RotationSSA+DC+P@DO��D@�G"�EPSVisibility InheritanceSVisibility InheritanceSSIK,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD&/PSSetPreferedAngleSActionSSIa-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI,
2PSRotationRefVisibilitySboolSSIm
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSI76PSGeometricCenterVisibilitySboolSSI}8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI4%PSPickableSboolSSIl*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI
"PSliwSBoolSSAUI^CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�+ModelLC:SRightFootModelSLimbNodeVersionI��Properties70Y+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD*8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D`V}�D@e(E�D |��IPSLcl RotationSLcl RotationSSA+D�Pu!�D 
�ĿD`VE�?1EPSVisibility InheritanceSVisibility InheritanceSSIk,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDF/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIL2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIW6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI!3PSDefaultKeyingGroupEnumSenumSSIT%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI-"PSliwSBoolSSAUI~CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff� +ModelL�:SRightToesModelSLimbNode'VersionI�S Properties70y+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDJ8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@�EPSVisibility InheritanceSVisibility InheritanceSSI3,PS	MultiTakeSintSIntegerSIn-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSII-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSIU3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSIe8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIT*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIF CPSLimbLength 1SNumberSSAUD�?DDY@i ShadingCY� CullingS
CullingOff�(+ModelL:SLeftUpLegModelSLimbNode� VersionI�s(Properties70A!+PSRotationActiveSboolSSIw!(PSInheritTypeSenumSSI�!GPS
ScalingMaxSVector3DSVectorSDDD"8PSDefaultAttributeIndexSintSIntegerSIo"OPSLcl TranslationSLcl TranslationSSA+D`.@D��C�DP=�"IPSLcl RotationSLcl RotationSSA+D��I�D@C��D����#EPSVisibility InheritanceSVisibility InheritanceSSIS#,PS	MultiTakeSintSIntegerSI�#-PSManipulationModeSenumSSI�#UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD.$/PSSetPreferedAngleSActionSSIi$-PSPivotsVisibilitySenumSSI�$5PSRotationLimitsVisibilitySboolSSI�$:PSLocalTranslationRefVisibilitySboolSSI4%2PSRotationRefVisibilitySboolSSIu%3PSRotationAxisVisibilitySboolSSI�%1PSScalingRefVisibilitySboolSSI�%9PSHierarchicalCenterVisibilitySboolSSI?&6PSGeometricCenterVisibilitySboolSSI�&8PSReferentialSizeSdoubleSNumberSD(@�&5PSDefaultKeyingGroupSintSIntegerSI	'3PSDefaultKeyingGroupEnumSenumSSI<'%PSPickableSboolSSIt'*PS
TransformableSboolSSI�'(PSCullingModeSenumSSI�'-PSShowTrajectoriesSboolSSI("PSliwSBoolSSAUIf(CPSLimbLength 1SNumberSSAUD�?DDY@�(ShadingCY�(CullingS
CullingOff�0)ModelL:SLeftLegModelSLimbNode
)VersionI��0Properties70_)+PSRotationActiveSboolSSI�)(PSInheritTypeSenumSSI�)GPS
ScalingMaxSVector3DSVectorSDDD0*8PSDefaultAttributeIndexSintSIntegerSI�*OPSLcl TranslationSLcl TranslationSSA+D�p@D �tD�D@�e���*IPSLcl RotationSLcl RotationSSA+Do�D@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�/(PSCullingModeSenumSSI0-PSShowTrajectoriesSboolSSI30"PSliwSBoolSSAUI�0CPSLimbLength 1SNumberSSAUD�?DDY@�0ShadingCY�0CullingS
CullingOff�8*ModelL:SLeftFootModelSLimbNode,1VersionI��8Properties70~1+PSRotationActiveSboolSSI�1(PSInheritTypeSenumSSI	2GPS
ScalingMaxSVector3DSVectorSDDDO28PSDefaultAttributeIndexSintSIntegerSI�2OPSLcl TranslationSLcl TranslationSSA+D`V}�?D@e(E�D |�3IPSLcl RotationSLcl RotationSSA+D i�6�D`[��?D�u-!@V3EPSVisibility InheritanceSVisibility InheritanceSSI�3,PS	MultiTakeSintSIntegerSI�3-PSManipulationModeSenumSSI.4UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDk4/PSSetPreferedAngleSActionSSI�4-PSPivotsVisibilitySenumSSI�45PSRotationLimitsVisibilitySboolSSI15:PSLocalTranslationRefVisibilitySboolSSIq52PSRotationRefVisibilitySboolSSI�53PSRotationAxisVisibilitySboolSSI�51PSScalingRefVisibilitySboolSSI869PSHierarchicalCenterVisibilitySboolSSI|66PSGeometricCenterVisibilitySboolSSI�68PSReferentialSizeSdoubleSNumberSD(@75PSDefaultKeyingGroupSintSIntegerSIF73PSDefaultKeyingGroupEnumSenumSSIy7%PSPickableSboolSSI�7*PS
TransformableSboolSSI�7(PSCullingModeSenumSSI"8-PSShowTrajectoriesSboolSSIR8"PSliwSBoolSSAUI�8CPSLimbLength 1SNumberSSAUD�?DDY@�8ShadingCY�8CullingS
CullingOff�@*ModelL:SLeftToesModelSLimbNodeK9VersionI�w@Properties70�9+PSRotationActiveSboolSSI�9(PSInheritTypeSenumSSI(:GPS
ScalingMaxSVector3DSVectorSDDDn:8PSDefaultAttributeIndexSintSIntegerSI�:NPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@;EPSVisibility InheritanceSVisibility InheritanceSSIW;,PS	MultiTakeSintSIntegerSI�;-PSManipulationModeSenumSSI�;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD2</PSSetPreferedAngleSActionSSIm<-PSPivotsVisibilitySenumSSI�<5PSRotationLimitsVisibilitySboolSSI�<:PSLocalTranslationRefVisibilitySboolSSI8=2PSRotationRefVisibilitySboolSSIy=3PSRotationAxisVisibilitySboolSSI�=1PSScalingRefVisibilitySboolSSI�=9PSHierarchicalCenterVisibilitySboolSSIC>6PSGeometricCenterVisibilitySboolSSI�>8PSReferentialSizeSdoubleSNumberSD(@�>5PSDefaultKeyingGroupSintSIntegerSI
?3PSDefaultKeyingGroupEnumSenumSSI@?%PSPickableSboolSSIx?*PS
TransformableSboolSSI�?(PSCullingModeSenumSSI�?-PSShowTrajectoriesSboolSSI@"PSliwSBoolSSAUIj@CPSLimbLength 1SNumberSSAUD�?DDY@�@ShadingCY�@CullingS
CullingOffGB>AnimationStackL��Z:S+_211_Run_JumpUpMedium_2Hands_RunAnimStackS:BProperties70mA0PS
LocalStartSKTimeSTimeSLH�%;�A/PS	LocalStopSKTimeSTimeSLf�h�d�A4PSReferenceStartSKTimeSTimeSLH�%;-B3PS
ReferenceStopSKTimeSTimeSLf�h�dELAnimationLayerL���9S9_211_Run_JumpUpMedium_2Hands_Run:BaseAnimationAnimLayerS�DProperties70CAPSColorSColorRGBSColorSD�������?DD�������?YC5PSBlendModeBypassS	ULongLongSSL�C,PS	MultiTakeSintSIntegerSI�C+PSmLayerIDSintSIntegerSID)PSMutedForSoloSboolSSI;D*PS
MutedByParentSboolSSItD+PSLockedByParentSboolSSI�D5PSParentCollapseVisibilitySboolSSI�D"PSEmptySboolSSI�GIAnimationLayerLx��9S6_211_Run_JumpUpMedium_2Hands_Run:AnimLayer1AnimLayerS�GProperties70�EAPSColorSColorRGBSColorSD�������?DD�������?F5PSBlendModeBypassS	ULongLongSSLJF,PS	MultiTakeSintSIntegerSI�F+PSmLayerIDSintSIntegerSI�F)PSMutedForSoloSboolSSI�F*PS
MutedByParentSboolSSI+G+PSLockedByParentSboolSSInG5PSParentCollapseVisibilitySboolSSI�G"PSEmptySboolSSI�H#AnimationCurveNodeLث�:STAnimCurveNodeS�HProperties70>HPSdSCompoundSSsH'PSd|XSNumberSSAD�H'PSd|YSNumberSSAD�H'PSd|ZSNumberSSAD6J#AnimationCurveNodeL�?�:SRAnimCurveNodeS)JProperties70}IPSdSCompoundSS�I'PSd|XSNumberSSAD@�ld@�I'PSd|YSNumberSSAD`�U@J'PSd|ZSNumberSSAD@cZ`@uK#AnimationCurveNodeL��:STAnimCurveNodeShKProperties70�JPSdSCompoundSS�J'PSd|XSNumberSSAD&K'PSd|YSNumberSSAD[K'PSd|ZSNumberSSAD�L#AnimationCurveNodeL�ą:SRAnimCurveNodeS�LProperties70�KPSdSCompoundSS0L'PSd|XSNumberSSAD��9)@eL'PSd|YSNumberSSAD`)�⿚L'PSd|ZSNumberSSAD��k��M#AnimationCurveNodeL�G�:STAnimCurveNodeS�MProperties70:MPSdSCompoundSSoM'PSd|XSNumberSSAD�M'PSd|YSNumberSSAD�M'PSd|ZSNumberSSAD2O#AnimationCurveNodeL��:SRAnimCurveNodeS%OProperties70yNPSdSCompoundSS�N'PSd|XSNumberSSAD@��,��N'PSd|YSNumberSSAD�'	�O'PSd|ZSNumberSSAD \���qP#AnimationCurveNodeL=�:STAnimCurveNodeSdPProperties70�OPSdSCompoundSS�O'PSd|XSNumberSSAD"P'PSd|YSNumberSSADWP'PSd|ZSNumberSSAD�Q#AnimationCurveNodeL�i�:SRAnimCurveNodeS�QProperties70�PPSdSCompoundSS,Q'PSd|XSNumberSSAD�ŭ-�aQ'PSd|YSNumberSSAD��
��Q'PSd|ZSNumberSSAD���!@�R#AnimationCurveNodeL��:STAnimCurveNodeS�RProperties706RPSdSCompoundSSkR'PSd|XSNumberSSAD�R'PSd|YSNumberSSAD�R'PSd|ZSNumberSSAD.T#AnimationCurveNodeL8��:SRAnimCurveNodeS!TProperties70uSPSdSCompoundSS�S'PSd|XSNumberSSAD`	4!��S'PSd|YSNumberSSAD`.+@T'PSd|ZSNumberSSAD�����mU#AnimationCurveNodeL���:STAnimCurveNodeS`UProperties70�TPSdSCompoundSS�T'PSd|XSNumberSSADU'PSd|YSNumberSSADSU'PSd|ZSNumberSSAD�V#AnimationCurveNodeL���:SRAnimCurveNodeS�VProperties70�UPSdSCompoundSS(V'PSd|XSNumberSSAD��:@]V'PSd|YSNumberSSAD�=D��V'PSd|ZSNumberSSAD��PR@�W#AnimationCurveNodeL ��:STAnimCurveNodeS�WProperties702WPSdSCompoundSSgW'PSd|XSNumberSSAD�W'PSd|YSNumberSSAD�W'PSd|ZSNumberSSAD*Y#AnimationCurveNodeL�ʅ:SRAnimCurveNodeSYProperties70qXPSdSCompoundSS�X'PSd|XSNumberSSADp�
@�X'PSd|YSNumberSSAD��=@Y'PSd|ZSNumberSSAD�ĉ�iZ#AnimationCurveNodeLh�:STAnimCurveNodeS\ZProperties70�YPSdSCompoundSS�Y'PSd|XSNumberSSADZ'PSd|YSNumberSSADOZ'PSd|ZSNumberSSAD�[#AnimationCurveNodeLЭ�:SRAnimCurveNodeS�[Properties70�ZPSdSCompoundSS$['PSd|XSNumberSSAD@qk�Y['PSd|YSNumberSSAD��!��['PSd|ZSNumberSSAD�!��\#AnimationCurveNodeL0r�:STAnimCurveNodeS�\Properties70.\PSdSCompoundSSc\'PSd|XSNumberSSAD�\'PSd|YSNumberSSAD�\'PSd|ZSNumberSSAD&^#AnimationCurveNodeL�;�:SRAnimCurveNodeS^Properties70m]PSdSCompoundSS�]'PSd|XSNumberSSAD�l&!��]'PSd|YSNumberSSAD���1@^'PSd|ZSNumberSSAD`l�2@e_#AnimationCurveNodeL0��:STAnimCurveNodeSX_Properties70�^PSdSCompoundSS�^'PSd|XSNumberSSAD_'PSd|YSNumberSSADK_'PSd|ZSNumberSSAD�`#AnimationCurveNodeL�+�:SRAnimCurveNodeS�`Properties70�_PSdSCompoundSS `'PSd|XSNumberSSAD r�	�U`'PSd|YSNumberSSAD����?�`'PSd|ZSNumberSSAD�!a6@�a#AnimationCurveNodeL@��:STAnimCurveNodeS�aProperties70*aPSdSCompoundSS_a'PSd|XSNumberSSAD�a'PSd|YSNumberSSAD�a'PSd|ZSNumberSSAD"c#AnimationCurveNodeL`҅:SRAnimCurveNodeScProperties70ibPSdSCompoundSS�b'PSd|XSNumberSSAD@!���b'PSd|YSNumberSSAD@{��?c'PSd|ZSNumberSSAD���;@ad#AnimationCurveNodeL�|�:STAnimCurveNodeSTdProperties70�cPSdSCompoundSS�c'PSd|XSNumberSSADd'PSd|YSNumberSSADGd'PSd|ZSNumberSSAD�e#AnimationCurveNodeL�c�:SRAnimCurveNodeS�eProperties70�dPSdSCompoundSSe'PSd|XSNumberSSAD �#�Qe'PSd|YSNumberSSAD��6@�e'PSd|ZSNumberSSAD���3@�f#AnimationCurveNodeL�A�:STAnimCurveNodeS�fProperties70&fPSdSCompoundSS[f'PSd|XSNumberSSAD�f'PSd|YSNumberSSAD�f'PSd|ZSNumberSSADh#AnimationCurveNodeL�m�:SRAnimCurveNodeShProperties70egPSdSCompoundSS�g'PSd|XSNumberSSAD�
��g'PSd|YSNumberSSADm�?h'PSd|ZSNumberSSAD��5@]i#AnimationCurveNodeL��:STAnimCurveNodeSPiProperties70�hPSdSCompoundSS�h'PSd|XSNumberSSADi'PSd|YSNumberSSADCi'PSd|ZSNumberSSAD�j#AnimationCurveNodeL�:SRAnimCurveNodeS�jProperties70�iPSdSCompoundSSj'PSd|XSNumberSSAD@4��Mj'PSd|YSNumberSSAD ���?�j'PSd|ZSNumberSSAD �m<@�k#AnimationCurveNodeL0<�:STAnimCurveNodeS�kProperties70"kPSdSCompoundSSWk'PSd|XSNumberSSAD�k'PSd|YSNumberSSAD�k'PSd|ZSNumberSSADm#AnimationCurveNodeLࠅ:SRAnimCurveNodeS
mProperties70alPSdSCompoundSS�l'PSd|XSNumberSSAD�u*�?�l'PSd|YSNumberSSAD�X��m'PSd|ZSNumberSSAD���3@Yn#AnimationCurveNodeL`�q;STAnimCurveNodeSLnProperties70�mPSdSCompoundSS�m'PSd|XSNumberSSAD
n'PSd|YSNumberSSAD?n'PSd|ZSNumberSSAD�o#AnimationCurveNodeL�r;SRAnimCurveNodeS�oProperties70�nPSdSCompoundSSo'PSd|XSNumberSSAD�c��?Io'PSd|YSNumberSSAD�r�}�~o'PSd|ZSNumberSSAD���8@�p#AnimationCurveNodeL �r;STAnimCurveNodeS�pProperties70pPSdSCompoundSSSp'PSd|XSNumberSSAD�p'PSd|YSNumberSSAD�p'PSd|ZSNumberSSADr#AnimationCurveNodeL�q;SRAnimCurveNodeS	rProperties70]qPSdSCompoundSS�q'PSd|XSNumberSSAD�Q;�?�q'PSd|YSNumberSSAD@>^ÿ�q'PSd|ZSNumberSSAD ��@@Us#AnimationCurveNodeL��q;STAnimCurveNodeSHsProperties70�rPSdSCompoundSS�r'PSd|XSNumberSSADs'PSd|YSNumberSSAD;s'PSd|ZSNumberSSAD�t#AnimationCurveNodeL(�q;SRAnimCurveNodeS�tProperties70�sPSdSCompoundSSt'PSd|XSNumberSSAD V�?Et'PSd|YSNumberSSAD@^/,�zt'PSd|ZSNumberSSAD@�1&@�u#AnimationCurveNodeL��q;STAnimCurveNodeS�uProperties70uPSdSCompoundSSOu'PSd|XSNumberSSAD�u'PSd|YSNumberSSAD�u'PSd|ZSNumberSSADw#AnimationCurveNodeL��r;SRAnimCurveNodeSwProperties70YvPSdSCompoundSS�v'PSd|XSNumberSSADࠇ@�v'PSd|YSNumberSSAD �8��v'PSd|ZSNumberSSAD �69@Qx#AnimationCurveNodeLx�r;STAnimCurveNodeSDxProperties70�wPSdSCompoundSS�w'PSd|XSNumberSSADx'PSd|YSNumberSSAD7x'PSd|ZSNumberSSAD�y#AnimationCurveNodeLH}r;SRAnimCurveNodeS�yProperties70�xPSdSCompoundSSy'PSd|XSNumberSSAD !��?Ay'PSd|YSNumberSSAD��C��vy'PSd|ZSNumberSSAD�5@�z#AnimationCurveNodeL�r;STAnimCurveNodeS�zProperties70zPSdSCompoundSSKz'PSd|XSNumberSSAD�z'PSd|YSNumberSSAD�z'PSd|ZSNumberSSAD|#AnimationCurveNodeL�{r;SRAnimCurveNodeS|Properties70U{PSdSCompoundSS�{'PSd|XSNumberSSAD@�B)@�{'PSd|YSNumberSSAD � ��{'PSd|ZSNumberSSAD �@M}#AnimationCurveNodeL��q;STAnimCurveNodeS@}Properties70�|PSdSCompoundSS�|'PSd|XSNumberSSAD�|'PSd|YSNumberSSAD3}'PSd|ZSNumberSSAD�~#AnimationCurveNodeL Hr;SRAnimCurveNodeS~Properties70�}PSdSCompoundSS~'PSd|XSNumberSSAD`���?=~'PSd|YSNumberSSAD �� �r~'PSd|ZSNumberSSAD�jϿ�#AnimationCurveNodeL�Nr;STAnimCurveNodeS�Properties70PSdSCompoundSSG'PSd|XSNumberSSAD|'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD
�#AnimationCurveNodeL�qr;STAnimCurveNodeS��Properties70Q�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADI�#AnimationCurveNodeL�xr;SRAnimCurveNodeS<�Properties70��PSdSCompoundSSŁ'PSd|XSNumberSSAD�L�@��'PSd|YSNumberSSAD�o(�/�'PSd|ZSNumberSSAD�{���#AnimationCurveNodeL�rr;STAnimCurveNodeS{�Properties70ςPSdSCompoundSS�'PSd|XSNumberSSAD9�'PSd|YSNumberSSADn�'PSd|ZSNumberSSADDŽ#AnimationCurveNodeL@mr;SRAnimCurveNodeS��Properties70�PSdSCompoundSSC�'PSd|XSNumberSSADLN@x�'PSd|YSNumberSSAD�G1���'PSd|ZSNumberSSAD�8YL��#AnimationCurveNodeL0qr;STAnimCurveNodeS��Properties70M�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADE�#AnimationCurveNodeL(jr;SRAnimCurveNodeS8�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD@ͱE���'PSd|YSNumberSSAD�!�.�+�'PSd|ZSNumberSSAD�?d!@��#AnimationCurveNodeL�dr;STAnimCurveNodeSw�Properties70ˇPSdSCompoundSS�'PSd|XSNumberSSAD5�'PSd|YSNumberSSADj�'PSd|ZSNumberSSADÉ#AnimationCurveNodeL�hr;SRAnimCurveNodeS��Properties70
�PSdSCompoundSS?�'PSd|XSNumberSSAD@o�t�'PSd|YSNumberSSAD��Y@��'PSd|ZSNumberSSAD`��@�#AnimationCurveNodeL�ar;STAnimCurveNodeS��Properties70I�PSdSCompoundSS~�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADA�#AnimationCurveNodeL`\r;SRAnimCurveNodeS4�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��@�'PSd|YSNumberSSAD�b�(�'�'PSd|ZSNumberSSAD�aB���#AnimationCurveNodeLP`r;STAnimCurveNodeSs�Properties70njPSdSCompoundSS��'PSd|XSNumberSSAD1�'PSd|YSNumberSSADf�'PSd|ZSNumberSSAD��#AnimationCurveNodeLHYr;SRAnimCurveNodeS��Properties70�PSdSCompoundSS;�'PSd|XSNumberSSAD�;@p�'PSd|YSNumberSSAD`��?��'PSd|ZSNumberSSAD���A���#AnimationCurveNodeL�Sr;STAnimCurveNodeS�Properties70E�PSdSCompoundSSz�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD=�#AnimationCurveNodeL�Wr;SRAnimCurveNodeS0�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�+a
@�'PSd|YSNumberSSAD L��?#�'PSd|ZSNumberSSAD�V�1�|�#AnimationCurveNodeL�Pr;STAnimCurveNodeSo�Properties70ÑPSdSCompoundSS��'PSd|XSNumberSSAD-�'PSd|YSNumberSSADb�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�Ir;SRAnimCurveNodeS��Properties70�PSdSCompoundSS7�'PSd|XSNumberSSAD��@l�'PSd|YSNumberSSAD������'PSd|ZSNumberSSAD`N�@���#AnimationCurveNodeLHr;STAnimCurveNodeS�Properties70A�PSdSCompoundSSv�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD9�#AnimationCurveNodeLxr;SRAnimCurveNodeS,�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�P7�?�'PSd|YSNumberSSAD ��?�'PSd|ZSNumberSSAD``�A�x�#AnimationCurveNodeL�r;STAnimCurveNodeSk�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD)�'PSd|YSNumberSSAD^�'PSd|ZSNumberSSAD��#AnimationCurveNodeLAr;SRAnimCurveNodeS��Properties70��PSdSCompoundSS3�'PSd|XSNumberSSAD����?h�'PSd|YSNumberSSAD�U$�?��'PSd|ZSNumberSSAD��1���#AnimationCurveNodeL�Br;STAnimCurveNodeS�Properties70=�PSdSCompoundSSr�'PSd|XSNumberSSAD��'PSd|YSNumberSSADܙ'PSd|ZSNumberSSAD5�#AnimationCurveNodeL 6r;SRAnimCurveNodeS(�Properties70|�PSdSCompoundSS��'PSd|XSNumberSSAD`����'PSd|YSNumberSSAD���?�'PSd|ZSNumberSSAD�׵A�t�#AnimationCurveNodeL�7r;STAnimCurveNodeSg�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD%�'PSd|YSNumberSSADZ�'PSd|ZSNumberSSAD��#AnimationCurveNodeL:r;SRAnimCurveNodeS��Properties70��PSdSCompoundSS/�'PSd|XSNumberSSAD��u�d�'PSd|YSNumberSSAD��׿��'PSd|ZSNumberSSAD@�D��#AnimationCurveNodeL�-r;STAnimCurveNodeS�Properties709�PSdSCompoundSSn�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD؞'PSd|ZSNumberSSAD1�#AnimationCurveNodeL/r;SRAnimCurveNodeS$�Properties70x�PSdSCompoundSS��'PSd|XSNumberSSAD@C��'PSd|YSNumberSSAD �4ƿ�'PSd|ZSNumberSSAD@��6�p�#AnimationCurveNodeL�1r;STAnimCurveNodeSc�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD!�'PSd|YSNumberSSADV�'PSd|ZSNumberSSAD��#AnimationCurveNodeL@%r;SRAnimCurveNodeS��Properties70��PSdSCompoundSS+�'PSd|XSNumberSSAD`l�"�`�'PSd|YSNumberSSAD���@��'PSd|ZSNumberSSAD�̃:��#AnimationCurveNodeL�&r;STAnimCurveNodeS�Properties705�PSdSCompoundSSj�'PSd|XSNumberSSAD��'PSd|YSNumberSSADԣ'PSd|ZSNumberSSAD-�#AnimationCurveNodeL0)r;SRAnimCurveNodeS �Properties70t�PSdSCompoundSS��'PSd|XSNumberSSAD`���ޤ'PSd|YSNumberSSAD����'PSd|ZSNumberSSAD�B�C�l�#AnimationCurveNodeL�r;STAnimCurveNodeS_�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSADR�'PSd|ZSNumberSSAD��#AnimationCurveNodeL8r;SRAnimCurveNodeS��Properties70�PSdSCompoundSS'�'PSd|XSNumberSSAD`t�\�'PSd|YSNumberSSAD@��?��'PSd|ZSNumberSSAD ��"��#AnimationCurveNodeL� r;STAnimCurveNodeSݨProperties701�PSdSCompoundSSf�'PSd|XSNumberSSAD��'PSd|YSNumberSSADШ'PSd|ZSNumberSSAD)�#AnimationCurveNodeL�r;SRAnimCurveNodeS�Properties70p�PSdSCompoundSS��'PSd|XSNumberSSAD���+@ک'PSd|YSNumberSSAD�
@�'PSd|ZSNumberSSAD}f�h�#AnimationCurveNodeL�r;STAnimCurveNodeS[�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSADN�'PSd|ZSNumberSSAD��#AnimationCurveNodeLp�q;SRAnimCurveNodeS��Properties70�PSdSCompoundSS#�'PSd|XSNumberSSAD@���?X�'PSd|YSNumberSSAD T� @��'PSd|ZSNumberSSAD���?�#AnimationCurveNodeL�r;STAnimCurveNodeS٭Properties70-�PSdSCompoundSSb�'PSd|XSNumberSSAD��'PSd|YSNumberSSAḒ'PSd|ZSNumberSSAD%�#AnimationCurveNodeL�r;STAnimCurveNodeS�Properties70l�PSdSCompoundSS��'PSd|XSNumberSSAD֮'PSd|YSNumberSSAD�'PSd|ZSNumberSSADd�#AnimationCurveNodeL 	r;SRAnimCurveNodeSW�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD@��D��'PSd|YSNumberSSAD�8��J�'PSd|ZSNumberSSAD^����#AnimationCurveNodeLPr;STAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADT�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�r;SRAnimCurveNodeSղProperties70)�PSdSCompoundSS^�'PSd|XSNumberSSADC+P@��'PSd|YSNumberSSADO��Ȳ'PSd|ZSNumberSSAD@�G"�!�#AnimationCurveNodeL�r;STAnimCurveNodeS�Properties70h�PSdSCompoundSS��'PSd|XSNumberSSADҳ'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD`�#AnimationCurveNodeL��q;SRAnimCurveNodeSS�Properties70��PSdSCompoundSSܴ'PSd|XSNumberSSAD�Pu!��'PSd|YSNumberSSAD 
�ĿF�'PSd|ZSNumberSSAD`VE�?��#AnimationCurveNodeL�q;STAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADP�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD޷#AnimationCurveNodeL��q;SRAnimCurveNodeSѷProperties70%�PSdSCompoundSSZ�'PSd|XSNumberSSAD��I���'PSd|YSNumberSSAD@C��ķ'PSd|ZSNumberSSAD�����#AnimationCurveNodeL��q;STAnimCurveNodeS�Properties70d�PSdSCompoundSS��'PSd|XSNumberSSADθ'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD\�#AnimationCurveNodeL�q;SRAnimCurveNodeSO�Properties70��PSdSCompoundSSع'PSd|XSNumberSSADo�D@
�'PSd|YSNumberSSAD�d�@B�'PSd|ZSNumberSSAD̮@��#AnimationCurveNodeL8�q;STAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADL�'PSd|YSNumberSSAD��'PSd|ZSNumberSSADڼ#AnimationCurveNodeLh�q;SRAnimCurveNodeSͼProperties70!�PSdSCompoundSSV�'PSd|XSNumberSSAD i�6���'PSd|YSNumberSSAD`[��?��'PSd|ZSNumberSSAD�u-!@��AnimationCurveL���-SAnimCurveS0�	DefaultDH�KeyVerI���KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfv�w���:��åe��cX��0��z�Ó�� ���ﭠ�Ō���I��UX�Þu��k��Q���t�\�g�8O[�0O��1C�B�7ç,Ç���C����V��³������/���C,��K�a��9�V���r��䎔�T����>���@Q
gAqߨA���A�i�A��By,BU�B�!B�`'Bw�-Bc6BOg=B>�BBc�IB��SBy?aBy�mB;dwB���B,�BG6�B���B�ϚBģBѧ�B�s�B%��B�K�B���Br�Bޡ�B��C��C�C�S!CN�(C�Y0C�B8C��?CvGC-�NC|�VCӎ_Cn5iC“sCz,~C�2�C���C&ՌC�F�C��C���C�U�C��CA��C�T�C@m�C��C�C�عCl��C���C�s�CA��Cwg�C4$�Cs�C��C���C<s�C>��C�8�CȻ�C�\�C�DR�DrD|%	D_�D��DB�KeyAttrFlagsi!|�KeyAttrDataFloatf

��KeyAttrRefCountiv��AnimationCurveL���-SAnimCurveS�	DefaultD$�KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv�%�B�@�B�ݬB'�B���BVB�B�S�B�@�B�ֹB�E�B�R�B-'�BC��B�ުB8�B?ĮB���B�e�B��B��BD��B.E�B蒧B똥BL��B�P�B��B�ѧB���B닥B�p�B���B���B�v�B���B0(�Bc��B��BLJCe�CM:
CYTCp�C�8#C5�*C��1C/98CF�>C��EC�rKCR=PC;4TC�<WCiYC��YC|ZCti[Cq\Cw�\C�d]C�]C�a^C�"_C��_CD:`CF�`C�*aC��aC{�bCf�cC�dC--eC;leC��dCdCJvcC��bC��aC�VaC�#aC��aC�bC>cC�cC#EcC�0bC!&aCy�_CF/^C9�]CL^C1_^C��]C�\C�\ZCCMZC)\C2�^C `C( bC
cC�cC0�aC=�_C?[\ChAXC��SC��NC=�HC�4AC��8CM/C�R$Cn�C��C��B���B���B�KeyAttrFlagsi!X�KeyAttrDataFloatf

��KeyAttrRefCountivn�AnimationCurveLȺ�-SAnimCurveS��	DefaultD�KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv��)��)–�)���*�O$-�n.°�/ž�1�P34���6‘�7¸�7���8��I:�A;�JP;��X;�:¦$:�Y�:�\<�UZ=��>ž�?¡A�/�C��C“�C�m�CŽmA�~@�}v@�+�>�M:�z#4�KH/�D�,�(�*n'”$�ŗ"š�!�x"�g#%�Xf&��J(�b�*�)�+��+��+�>D)�ج'�:�%�&�"����D���w³k�\��Vs��$����Ȳ����5�_)���3Y��B½�	‚��
�*!��„���EF���$��%���{���u��Q���D§€Hs�f���R
��v�]�M��r������%�z�+��02��9�9�?�@�E�@�J�*P�wCU���Y��~]�
�a£�f��bl�ذq�k�v�F�|�U��$V�¥	��iˈ��Nj�\���x�����KeyAttrFlagsi!4�KeyAttrDataFloatf

a�KeyAttrRefCountiv~�AnimationCurveL�o�-SAnimCurveS��	DefaultD@�ld@��KeyVerI����KeyTimel��x�y<�	���G��!6F9+E�)Lj�N�0�v�TH��,j$D�V!�Dʑ��ij�r$7C�J���u��}���z}>v7HZ;H$�/
Q���ɸ�p밂,�dI��cP�Qτ9�j6Tq]S��X�*6R�tʖ��kF���5��P)��5��jq�����ҋ�p�:'&ϕ̀W�K�|KP+LS혂�9���<e�-��V� �L������ɰ'��ƅg�CR��2ɖ��B��p"'�>Rw�!�_�@�+�apA�0v��a����4�4ӑ˞�K��U�0t���>��3��1H�R����%4B�>w2��\����B�-����������a��8���Ԑ=u~��L����s��U�
���_�`1��)����5lL6�!��ͬ���e��L���^Vw�����^n�SxH:���ok�*Q�}P|���e~�\��o��f9��y����}靄~�.(����p�����G
ᰧ�bٺ�Ƕ���2�;�&�UҚ�W<�ʼ��lJzp	]8_M���Rqn�����f�^=<鍓���?p�V.fCح �Iʪ�O��$�[Ú���3�?�~\h��.˜O}T��2f
���8��J/785���Ug|a����T�t���������J�q�uN+	���`�>�EM��
z�<�ܶV�%�ݱ�=�<a���Yhw:����wV��l����P�}�?0�k��nB�T#�>�i��r�Q�;�Cϭ�#LX��mF��zn4=!Q�
����Fu{�jo���0��3\�m�:d�����g��S��EXQӦ�O��{�aB���a�a�-p��w_��
us>�h�heG�6��-\Wl#(7����#Xp�l?�x7��꺔��,M`���(I,�;Z
�m�w&�~
�A4B���u.���Gv@��o(��:k��LȠ�!e�����:��C��٣�{�<�M`y�*�ts��K�͖��_�i�����)�K*����'!�G�	J��B�ގ�0�C%�X��f���¥�r�?���1������e.�K�E�����MX@�dE�����P�B���
NAʹ*6�oU���e�j�M�Bh��[��0wy�54��,��VHk����0�����~N�i
<hjs�̍�Wg���V�&Z��i���p3���[{,�Kaܚ�:(v|p2��J�vF�n��f2�0z�c����j[��b}�f���
t�U�C��P,��{:�A�������8�k�$��Q$��Y�B�:��;ܾ(!�C��pw��<�/X�ޓ]��q›*k����r)�:�I-t�B��zy8�d=FR�WCF��|�/ӂ�}5�0{x�1�=b%?L8@Žy�P��-6�w�@��w���m�0�,=
���¶G+�<	C��7B���k&�o׎3��uT6λ��̇���
r+|d�mE'|,�<��'r!_������C�鸗0"��-dӟ��5e"Ȑ���!�[�����A�����@s
��`\�>���%3˽=��
�$��S� ��3,nP
���gaQ�{�mzG��@�6�<i.�Ti�@=>G{�a���˼	�\��n��*�d�*m�#��+HX@������k�A5��NC;�k*�)~�ٱK�|�:T(Ҕ���t�;�}�ݜ?�^�`�zU�]�)��>0-�B?D8Fg��k�q;�64U�߇����� _f�r{�!�͑�%��d�������i(�0s	���.�ʩ��375¾p�a���_�-@�n��a��p-,�?�	���T��j��;|���W�]��*�;�M-�G����R�X�x%����1��I3z��N����g �ʃXx�9�<|kљ�J/C�0vܑ+�
��m�����}8�d}�]Hץ߇)�Sh�z��}�u����v���p/����	���
[ZG�P#��3l\���O��x*K�\@�euxàe�y���W�F�+������
KeyValueFloatf��x
�y<�qfk(���^��u����I����yv5E�6k�V�v�:V�R�է6rw��I��3�-g^QR�#*G2��~|���}�
�l���sQ���pE�ql��t>�#^h��A��/�.����U�*叨��i��p�z+Z�m�_J��w!0e7������8����p|�'nM�Q�^���B���H�;
�����!<�?����Y�q�>��3Hϊ��D�IF�:��j|	g���^g7����L�(�kY"^*�۝�����x]�u1��K�ɮ����]����V�atA#dN���5b��&t'6#ȣ~��A��>6�jG�'p�{���'���V��X�����]����A�%VJF`{k�����qh�M���	h��C�
�^#_����P�� 6��!_�Ѵ��@��e��v��%�h���*�����M�]�)��I#
�uX~�7TC7�>���]��[P���؎B��cg���p��Blh&�J��b�l��q4G����)F��3�nc��r
VB�R�y�n��hήú���!����7A{�
�f8v5�cW#n���IT���XWa��
�+�0��6&��὾A>��0���b�Q.��0[����9��d������P�Dk�U$��#��
�\�n^*�����:?�%�M�����2��Ӑ�;	Q�q��9
[��8�x�Mc��3���eMa�n����(����"��.�9���'�{
�<�[cq�J�w[��{�l;=Ӌ�ɾ�X�4q��h�LDܽ�
����N���|h��ᅴ�,���R�N��L�]Sk�Կ7�`�-�Q������=ՈȨ�Xo%�0R�!�X��UH���{��<���7��ЪW�F��߇���s~׉����fj(Gz�m݇9���)�N\���H����(�
^�Ӑ���נ*L���7x�J���7�;�;F���U��:�,��j*g�;��/��U�O�V��4�^��:k��q�܈j���c>�1a���{�Rj��hPlʾQ3ƿc��M�!K�q��~+�[��ؚ�-����5�gU��ESF}+c�����Z�K�フ������{m�W+��Yr������z+�g�aXѯڂ7z�fj�a_3n!��j)�U�2�p�Ԙ�O�*4�*OĊ!�
�w�!���c�s���gf@_�!B��Z�.ŤU,��c�1a�<	g��2p���&�O�������S+E��!��ZB�p^��&�".�k�Gw�\�aL�2��I�g'c��)�5c�攸[�I[�_V4ʹ��9�iϠ���g�3�hhÐ'6LK���o�R�m��r;��{���س$j6׍9�w���4�o��c����ȷ�X��L������ۅ_��2�͍6jw{���'�gz2�Ń�d\��F���y���θ�ܨqDž��ȸ��KeyAttrFlagsi!���@�-KeyAttrDataFloatf 



q�KeyAttrRefCounti�<�AnimationCurveLx>�-SAnimCurveS��	DefaultD`�U@��KeyVerI����KeyTimel��x�y<�	���G��!6F9+E�)Lj�N�0�v�TH��,j$D�V!�Dʑ��ij�r$7C�J���u��}���z}>v7HZ;H$�/
Q���ɸ�p밂,�dI��cP�Qτ9�j6Tq]S��X�*6R�tʖ��kF���5��P)��5��jq�����ҋ�p�:'&ϕ̀W�K�|KP+LS혂�9���<e�-��V� �L������ɰ'��ƅg�CR��2ɖ��B��p"'�>Rw�!�_�@�+�apA�0v��a����4�4ӑ˞�K��U�0t���>��3��1H�R����%4B�>w2��\����B�-����������a��8���Ԑ=u~��L����s��U�
���_�`1��)����5lL6�!��ͬ���e��L���^Vw�����^n�SxH:���ok�*Q�}P|���e~�\��o��f9��y����}靄~�.(����p�����G
ᰧ�bٺ�Ƕ���2�;�&�UҚ�W<�ʼ��lJzp	]8_M���Rqn�����f�^=<鍓���?p�V.fCح �Iʪ�O��$�[Ú���3�?�~\h��.˜O}T��2f
���8��J/785���Ug|a����T�t���������J�q�uN+	���`�>�EM��
z�<�ܶV�%�ݱ�=�<a���Yhw:����wV��l����P�}�?0�k��nB�T#�>�i��r�Q�;�Cϭ�#LX��mF��zn4=!Q�
����Fu{�jo���0��3\�m�:d�����g��S��EXQӦ�O��{�aB���a�a�-p��w_��
us>�h�heG�6��-\Wl#(7����#Xp�l?�x7��꺔��,M`���(I,�;Z
�m�w&�~
�A4B���u.���Gv@��o(��:k��LȠ�!e�����:��C��٣�{�<�M`y�*�ts��K�͖��_�i�����)�K*����'!�G�	J��B�ގ�0�C%�X��f���¥�r�?���1������e.�K�E�����MX@�dE�����P�B���
NAʹ*6�oU���e�j�M�Bh��[��0wy�54��,��VHk����0�����~N�i
<hjs�̍�Wg���V�&Z��i���p3���[{,�Kaܚ�:(v|p2��J�vF�n��f2�0z�c����j[��b}�f���
t�U�C��P,��{:�A�������8�k�$��Q$��Y�B�:��;ܾ(!�C��pw��<�/X�ޓ]��q›*k����r)�:�I-t�B��zy8�d=FR�WCF��|�/ӂ�}5�0{x�1�=b%?L8@Žy�P��-6�w�@��w���m�0�,=
���¶G+�<	C��7B���k&�o׎3��uT6λ��̇���
r+|d�mE'|,�<��'r!_������C�鸗0"��-dӟ��5e"Ȑ���!�[�����A�����@s
��`\�>���%3˽=��
�$��S� ��3,nP
���gaQ�{�mzG��@�6�<i.�Ti�@=>G{�a���˼	�\��n��*�d�*m�#��+HX@������k�A5��NC;�k*�)~�ٱK�|�:T(Ҕ���t�;�}�ݜ?�^�`�zU�]�)��>0-�B?D8Fg��k�q;�64U�߇����� _f�r{�!�͑�%��d�������i(�0s	���.�ʩ��375¾p�a���_�-@�n��a��p-,�?�	���T��j��;|���W�]��*�;�M-�G����R�X�x%����1��I3z��N����g �ʃXx�9�<|kљ�J/C�0vܑ+�
��m�����}8�d}�]Hץ߇)�Sh�z��}�u����v���p/����	���
[ZG�P#��3l\���O��x*K�\@�euxàe�y���W�F�+����v
KeyValueFloatf�ix
�kTUe�g�.+fВ�L4⥒�e�t0/?Sl�2+�\-D��j��0@�h*�2���s�9�v����w,t��f���%M���#�Rmx?�����/��ݲ��Y/�d�{�I��a�	aZ�
��BԎ��Щ(��ٮ�W��u�μy:�u�}��m�ƔV���T��p�,�{$����z�G�n��|�����*ӗ�T(��U��̥N��n�٧d�n���
W�+�ǫ|3U�/sT���܎U����?I#!WchH#xHcO����:�!�:bG����on3��mp����5�s��h��[��B��n}{�� ���&gZ��o�y�bX�ű��G���]sM��	Ŷ�����Y�38]"e���4������ϪF���*3~�S4�`��0w1�o6�'[H���Uc"(�"x+#��b�ɻכM
���Mи�2�ӣ�\.{DŽI*��揮gk���4i�dr�Y��D�m�Œ��E&�u?��@�@/��{Ȫ��׫�_M��&/��d����=�*���<���a�s5�����Μo�)�H�|�{�Ok�Ě���H���x�L������%�͗�#a��&�,\��n#E�
�R�ճ
|��1�DZo��#A��-HF�޵�?6��^ϳ�j�{�K^���͵���ٳ}\��'am��
;�T^yQ��JebT%ǖ9Z �G�w$&]��"��U�L���*>כ]�T^}�ݥ�F�m���t���-:y�:�.�9�3��H��E�r���d���i�5��U�(��ݝ���"��&��
�(�co�.2Swq�d
��eL���8?��V3]l���J?"������73��TN,�h���"�s��6��
�ۂa?&$;��:\�qH9మ�a��{�r#>�[�G99*���QZ�lH�21.JF�ô.�	���C�F��g8��)8\.�9D���9a�����&�Zcu�\T��З��q��d�Kdn����+�R�z�J�O*ogj�[�C��eM�M*D�xڦ�[���ٜ9c��1�o�m�km]���f�W'�U��9
��Aڎ�aH��W�҃_��ȷ��*�g��M��A�H�//���/�鵹϶��&�a�-Bˊ��yϻ�_q����&���`t����A��UM��$�������?̴��B���i��:�������̽�F�)ʒ=��9d^,,��x��9�'��mJ��h�}.B���,��eզ랍3OгA���M���
�݂�����w7n	�{5�v����f� �/�s�����jPt�&�����l�Dx���Xg��0�&��,��%2�󃔌�y����>b����62(�ǯ����KeyAttrFlagsi!�����-KeyAttrDataFloatf 



/�KeyAttrRefCounti�X�AnimationCurveL8x�-SAnimCurveS��	DefaultD@cZ`@��KeyVerI����KeyTimel��x�y<�	���G��!6F9+E�)Lj�N�0�v�TH��,j$D�V!�Dʑ��ij�r$7C�J���u��}���z}>v7HZ;H$�/
Q���ɸ�p밂,�dI��cP�Qτ9�j6Tq]S��X�*6R�tʖ��kF���5��P)��5��jq�����ҋ�p�:'&ϕ̀W�K�|KP+LS혂�9���<e�-��V� �L������ɰ'��ƅg�CR��2ɖ��B��p"'�>Rw�!�_�@�+�apA�0v��a����4�4ӑ˞�K��U�0t���>��3��1H�R����%4B�>w2��\����B�-����������a��8���Ԑ=u~��L����s��U�
���_�`1��)����5lL6�!��ͬ���e��L���^Vw�����^n�SxH:���ok�*Q�}P|���e~�\��o��f9��y����}靄~�.(����p�����G
ᰧ�bٺ�Ƕ���2�;�&�UҚ�W<�ʼ��lJzp	]8_M���Rqn�����f�^=<鍓���?p�V.fCح �Iʪ�O��$�[Ú���3�?�~\h��.˜O}T��2f
���8��J/785���Ug|a����T�t���������J�q�uN+	���`�>�EM��
z�<�ܶV�%�ݱ�=�<a���Yhw:����wV��l����P�}�?0�k��nB�T#�>�i��r�Q�;�Cϭ�#LX��mF��zn4=!Q�
����Fu{�jo���0��3\�m�:d�����g��S��EXQӦ�O��{�aB���a�a�-p��w_��
us>�h�heG�6��-\Wl#(7����#Xp�l?�x7��꺔��,M`���(I,�;Z
�m�w&�~
�A4B���u.���Gv@��o(��:k��LȠ�!e�����:��C��٣�{�<�M`y�*�ts��K�͖��_�i�����)�K*����'!�G�	J��B�ގ�0�C%�X��f���¥�r�?���1������e.�K�E�����MX@�dE�����P�B���
NAʹ*6�oU���e�j�M�Bh��[��0wy�54��,��VHk����0�����~N�i
<hjs�̍�Wg���V�&Z��i���p3���[{,�Kaܚ�:(v|p2��J�vF�n��f2�0z�c����j[��b}�f���
t�U�C��P,��{:�A�������8�k�$��Q$��Y�B�:��;ܾ(!�C��pw��<�/X�ޓ]��q›*k����r)�:�I-t�B��zy8�d=FR�WCF��|�/ӂ�}5�0{x�1�=b%?L8@Žy�P��-6�w�@��w���m�0�,=
���¶G+�<	C��7B���k&�o׎3��uT6λ��̇���
r+|d�mE'|,�<��'r!_������C�鸗0"��-dӟ��5e"Ȑ���!�[�����A�����@s
��`\�>���%3˽=��
�$��S� ��3,nP
���gaQ�{�mzG��@�6�<i.�Ti�@=>G{�a���˼	�\��n��*�d�*m�#��+HX@������k�A5��NC;�k*�)~�ٱK�|�:T(Ҕ���t�;�}�ݜ?�^�`�zU�]�)��>0-�B?D8Fg��k�q;�64U�߇����� _f�r{�!�͑�%��d�������i(�0s	���.�ʩ��375¾p�a���_�-@�n��a��p-,�?�	���T��j��;|���W�]��*�;�M-�G����R�X�x%����1��I3z��N����g �ʃXx�9�<|kљ�J/C�0vܑ+�
��m�����}8�d}�]Hץ߇)�Sh�z��}�u����v���p/����	���
[ZG�P#��3l\���O��x*K�\@�euxàe�y���W�F�+�����
KeyValueFloatf��x
�{4��{a�x
�JWm{[׳�t��Ֆ��b;ݔR��bS������X�*;K]I�EB$�u;{-R��<f�T�����O���	M4o�Az���"<-4A|�9�,a�v!bdK����"�;G�����5j�هܑ}�콑��۱ypv� ۋ#wa��v�(�hT������P<	�@��a��ȱ{�1,>sy'���)46�a�㡊JĦ�s�LK��g�pHž��H�V�6,!�L�ӯaӦ\��	��q10�PG߆����#���#JqT����}\	�_0���l�G�D6����i#����ڞ�B]ֆ���/T�ߧK&�`=ڃ���p�؇�����>�
/��aǭF�ۯFY�(�W�A���a���=k_a]�(��ԐF�d
<�Һ?u��t�����ݘ|܉ ��a��
��:�yƯ�_�B�v�(�H
nŲ����&�e7�NP�D���{�{5.��G��=�;J�[g	<��b����q+�!n��_�u�Z5=��s���4!E��ޭ��қ��܂��F��k��V��N\��?Z� ���M���O�a���P���]*P0�^w�x}�.@�'�pQ^ǚ��g^C��,�Te��f? /�FR��t���Cq�,rG�����O�����O#��	l�B�s��r�D��<{o�#7`?ތ|�/�؋��P&���2�!�������C������o�ت������Ob��ixYţ���H^{˦�#���F� .������
���@�_&֦����\�̃<�^��D��[�:��zwq��g�8�#�����â���j����˘{0�T���8>*Fȶ�Z��Yv��O(ꩄ˝j��A��O�A2Ԁƣ�(Hj��*%�t�qy��_� ���;Y�B{�9����)�f���x5��1>�i�B����EP��T�q*�
L�����vTO!��JCg�H�l|����9���I�{Z\ҫ͙Ysy�=T�i����V0��	��ـ'�7�_gE�u���F|5n�?S��1c����=n�aN�vη`�m	�f��NS�-4�k�1�m�h0S�6w��b�sw������„i���4�_k�IO	�L7e��2�w�&�{nLKc��3+\D�0Cf+�I}�"��doN�q�H���:L.���(m�֢�~mz�̥S��|�h?(`�X�

}><i@��!,q�L��"np0䈎�6N�}B�h�c�R�����.��M�h�y&�O�ۢ
`ȸW"ޗ1[mDwk�3�p3N�I��ߜ�R)��?�]�%��Ou�F�Yq@k!���>��J��]���%�$�a�|_)?���'�������X��呣�྽vTT��J��-w�a���9���J6�8�����J^�YI��3]:���ԉ«���әj/g�]�^��KeyAttrFlagsi!����-KeyAttrDataFloatf 



K�KeyAttrRefCounti�4AnimationCurveL��-SAnimCurveS��	DefaultD��KeyVerI���KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfv�`��@)������)�)���)`��@)@�`)�������))( )Щ(�@)� ��(`)*��`)�@)`��(��)��*�))����� � ����)p�� �`���)((�����@�@)�)�(�(�(�(�����@)�( ��(�)`����)��(����)�(�)�(� �@)�)`*� �)(@))�(������* *@�*�KeyAttrFlagsi!�KeyAttrDataFloatf

'KeyAttrRefCountiv�AnimationCurveLx�-SAnimCurveS�	DefaultD�KeyVerI��%KeyTimelH�%;h��d�Ye
KeyValueFloatf�A�A�A8KeyAttrFlagsi!rKeyAttrDataFloatf

�KeyAttrRefCounti$AnimationCurveLx��-SAnimCurveS	DefaultDKeyVerI�S%KeyTimelH�%;h��d�Ye�
KeyValueFloatf���?���?���?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti0AnimationCurveL���-SAnimCurveSz	DefaultD��9)@�KeyVerI�s�KeyTimelx�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yez�
KeyValueFloatfx�d�IA�\:A�%A�	A�$�@�x�@���@מ�@�@E3:A[�mA�/ZA��2AA�
A7
AK�@-q�@b-AO/A��?A;�OA�:JABG)A~(A���@���@ҥA�1A�qNAP�mA�B�A�l�A���A�֧A�AzbAN�#A}�2AcnAaՆA�!�A�ՏA�R�A?��A�ܗA�a�A?�Aǭ�A#�A���A-�B�E!B�(B!�(BY�&B��#B�BwBW�BX��A���A��A/��A��AΟ�A��A!UWAu�bA0jA�|CA��!AiA�AɕȂ'A�+1A۔:A�u4AՂA��A1�A�%A��1A��4A�
@A��PA�v{A�0�A���A�m�A�H�AX��A�3�Am|�A�=�A���A�цA��UA�EA�f0A�V A-A�� A�*3A��BA��YAF	�A=�A�A�ȿA�&�AɨA�Q�A�~�A�)�Ac@cA�jvA�'�Ad��A�KeyAttrFlagsi!����-KeyAttrDataFloatf 



#KeyAttrRefCountiw<AnimationCurveL��-SAnimCurveS�	DefaultD`)�⿞KeyVerI��KeyTimelx�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfx�KI���I��շ������
����4�f!K��eP��#G��>4��8
�����	pE?��@��At)A��=A	u9A��A�qc@��(���� m���o��F�LCy��w��D��j�5�����*��m�>�s�@��<At�iAS��A���A,ޒA�9FA���@�Ɇ@_?�@���@��@��@���@tWs@���?)��?�?K@kƅ@�3@���=p�������,��mw�������Э��e!�M:�?o|�@^�A9�*AIA�lAHJ�A���A+�A��A��A¦�A{ӾA�q�AP�AǛ�AA�hA�21Au	Av�@�8@�4� {ӿG�
�º��3��t���"���	�
���C���1G>H���fԾ�\;?'m�?u�?�޿�v,��!2��h?GC?Q�?'��?���?z'�?$�?h�?��@�l@zC�?�!>r$8��a�K��=I*�>��������A��KeyAttrFlagsi!����-KeyAttrDataFloatf 



/KeyAttrRefCountiwHAnimationCurveLء�-SAnimCurveS�	DefaultD��k��KeyVerI���KeyTimelx�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfx�_��`���dJ���?>�^�@p A�OAp(iA�AoA>�[At6_A���A��sA�Ae��@��ؽi���|$���D��x�&0��l&�h������	׿�c�?�a:@�h+@�D�@�-A{>A�:A �9A�CAh��@@ɽ3����h�ʗ������e������r��Ɔ��`mJ�5	��m�>o�X@���@��A�n0A�6A;A�2A�&A�SA��A���A�A��A��AQ��A3]�A��gAE�PA�GAc��@o-@$X|�ԃ����Q�"��� ���'��5@���d���������>Kb��+�X
X�;!�?�i_@�d�@'�@���@{�c@��@��Ab�^AD�eAUMAQ�AXM�@���@��A��	A[�A_�#A)�BA0�HA��:A;r$Au@A�!A؂#A��5Aƫ<A=`A�o�@�8@:��>y�Ͼ�Ay��	����`>P�n@�z@>�|@�KeyAttrFlagsi!���
-KeyAttrDataFloatf 



;KeyAttrRefCountiw$$AnimationCurveL�e�-SAnimCurveS�	DefaultD�KeyVerI��!�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�#�
KeyValueFloatfv� *�+b+ *��� ��
�X*��d��@)+\�����H+X*x�F+��*Ԫ��@*�)�*`�+��x�X*8*2�(�0��+���*� �+,��*`�X+.�j+��()���+ȫ0*p��D+t+����+�+����+f+(^++P��*D+���`*�)@*��|�`*�+�)���8�P*����\��) *�*�*T��(��@�)p�����)�)(�����#KeyAttrFlagsi!�#KeyAttrDataFloatf

$KeyAttrRefCountiv+AnimationCurveL���-SAnimCurveSz$	DefaultD�$KeyVerI�c(�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yeb*�
KeyValueFloatfv�5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A�*KeyAttrFlagsi!�*KeyAttrDataFloatf

�*KeyAttrRefCountivx,AnimationCurveL���-SAnimCurveSV+	DefaultDn+KeyVerI��+%KeyTimelH�%;h��d�Ye�+
KeyValueFloatf�qO��qO��qO�,KeyAttrFlagsi!>,KeyAttrDataFloatf

k,KeyAttrRefCountil3AnimationCurveL��-SAnimCurveS�,	DefaultD@��,��,KeyVerI��0�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�2�
KeyValueFloatfv���e�y\b��5E���l���|���_����B������u�
���;�-�J�3�8�J����	�?��(���
���B����sg�����\3���"@��AsuA���@�*�@)��@vX�@%�@Z�A8AA��.A��@5]�@��@_	�@��A^1AL�APǏ@�z��J����S<�쮅�߹��^ƾ�����m��{�K����%��Lŋ�X�d��"��d�$�F2V�Ϸ������հ��i��c<��9r���Ļ�9���E���,l��@D���E�J�d�Pp�1�}�+���E��:z���n���L��/�)'�� �?��@Ձ/A,z:A�w�@�M�?��������w������s �R ����Z;0�Z I@^��@]�,AK�VA`KAK2A6	)A��@�V?�Tc�k���s���J1����?c�S@��
@�9�ѐ@'��@!j�@B|�@�2KeyAttrFlagsi!���.3-KeyAttrDataFloatf 



_3KeyAttrRefCountiu`:AnimationCurveL���-SAnimCurveS�3	DefaultD�'	��3KeyVerI��7�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�9�
KeyValueFloatfv�|8I��5K�R���u��?JS�??�$@7:8@S0@]*!@\�@�@vd@a��?�3��8D��
�������U��d�������Ɣ�h�y��	�'ˊ?�t�@���@��@D��@��b@|�K@�}3@���>+q/����{�������s��V]c�A�.�i5�5���
�6ɿ����W?��?�q�>d�0?́�?�y�?t%@�a�? "?1`?�2��8�:�ь��Kn=4��b���Y�O�x��Rؑ���ܿ�n�t?=�=3���������k��x��J��i³�����[�Z��hF�<Q�uy8��H����.?ޗ,@�7�@	v�@���@���@6�@4y?A�?�\q>u�l=.ީ>`�?�=�>��I�a�8��(��ùۿd��ۖ��kÿ]��9���]��T���G�o�+��d��ؿ '���?�q?��?�
@K|@�V|@�n@�9KeyAttrFlagsi!���":-KeyAttrDataFloatf 



S:KeyAttrRefCountiuTAAnimationCurveL���-SAnimCurveS�:	DefaultD \����:KeyVerI��>�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�@�
KeyValueFloatfv��zǿ��&�,��Y?����#+������g��E���f7��?���Q���I��0Wx�]�?�a�{o���q�?9�,@��j@!Fj@��?����:D�]��^N���D��U0�3�P��_N��K��w^���F�J,+�7�(�����4�6����>�M�?��@'�c@
Ȍ@y��@�hg@d�s?Ik���(��as�	�T�z����cֿ�#������%���S�p9��4����@�������2������o�������
���������@���5q��u�HD-?B��>3�+?'1?G5y=7���}�@�x���ʿ�*���a��T��`2���\�?%#��]
�bv	�}�	����M�d��\k�("Y���`������>����y+��:���V7�_�ο��A�V�h�R�Y��u�ܴ]�oy-�T��0ֿs����b�,�6���[q�>ַ�?�ŕ��������c1���@KeyAttrFlagsi!���A-KeyAttrDataFloatf 



GAKeyAttrRefCountiu0HAnimationCurveL�3�-SAnimCurveS�A	DefaultD�AKeyVerI��E�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�G�
KeyValueFloatfv��)L+�*�`�D����(x���' )���(8*(�\�@�+((*>�$+��)ª`�(�)��*"��*��Щx��)8*X�@)��+0��*���+����>+��*��8�����`�+|�@*�Ȫd+<+@��� +B+~����*�*�j+�*��*+���@)�*�)���)�+�)�)��`���)@���(���**�*�*��) ���@) �P�`��*�`����*���GKeyAttrFlagsi!�GKeyAttrDataFloatf

#HKeyAttrRefCountiv�IAnimationCurveLh��-SAnimCurveS�H	DefaultD�HKeyVerI��H%KeyTimelH�%;h��d�Ye
I
KeyValueFloatf��A��A��A4IKeyAttrFlagsi!nIKeyAttrDataFloatf

�IKeyAttrRefCounti KAnimationCurveLH��-SAnimCurveS�I	DefaultDJKeyVerI�OJ%KeyTimelH�%;h��d�Ye�J
KeyValueFloatf���?���?���?�JKeyAttrFlagsi!�JKeyAttrDataFloatf

KKeyAttrRefCountiRAnimationCurveL>�-SAnimCurveSvK	DefaultD�ŭ-��KKeyVerI�_O�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye^Q�
KeyValueFloatfv�/nm��b�TeW�?�O�a�@�[0�O�2�68�i�7���@� :>��+�׈*�͡-��<���������������v��n��ɼ����������r���K��e��q���������1�j+���
��$��/���g�s������m������C���g��|���h~�XGz�����_���{�Ixk�ph��a�����*���ֺ���Y��ƻ�������mb�L�:�Z�����,(ֿ�/��������>z��?�?B�=���c��`���οbن�̪"��c��,>�����)���i�=)G�>3�/?���
;��*��;���9�p"����ȟ�}����;�صQ�4�)�R ��HY��	���"g��^��@� ���F�LWe�ѣ^��(^���w��^��&�6��@��u���Y���7���4������������C��w���au��QKeyAttrFlagsi!����Q-KeyAttrDataFloatf 



RKeyAttrRefCountiuYAnimationCurveL�l�-SAnimCurveSjR	DefaultD��
��RKeyVerI�SV�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeRX�
KeyValueFloatfv� 4m���u��A�֌�E��4�h?U��?�H�?��?�%�?yk�?�p�?D@��@ձ?�HE'�[Y��9@���8���L��������ܛ�P�L���{���9@H��@1�v@=@%��?��?��&?�δ�cR�����A	�����n�y��7����"�i��b���c�J3���]���4�������4����D4g�}���H>ݬ=�o��O[�8x��uȿ��.�-*������H������ӡ�Ƒ�J��*�������R%q�8��/��H.������[9��E��%y���������L[���k������>(�������"�%D#?\�?y�j?H@��{���k��B��I}��@�i�|]7�	�0�<v��:׿#��x'��B����
�x�����.i�����.
�����Ib���vm�{�g�MxH�X��>V���X�����4s��4��D^���XKeyAttrFlagsi!����X-KeyAttrDataFloatf 



�XKeyAttrRefCountiu�_AnimationCurveL(��-SAnimCurveS^Y	DefaultD���!@vYKeyVerI�G]�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeF_�
KeyValueFloatfv��7A��A4�Aq�A���@��@���@���@��@#Y�@��]@��+@2�?�!�9����>�*�?nü?zH�?މ@�yb@=e�@�b�@I��@(}�@�C@�D�?���?r��?z�>�)���ƾ�T� �?fF�@:
9@�y��t�i��?J�?�.7?+վ�;Ϳļ�=F�>QR�?&�?�!@�R@'ٚ?.�?e�
@N%~@���@�{A�V�@��@��@��R����ohӿ��7��d���Ӷ�a������Qh��Xӓ�rrk�	75�H:�n����>-@��@_��@��AR}AD�A-�A��A5pA�`AL�
A�l�@��@7�X@�4@��������|?JS8?�.�=R�?�����⢴?��@4��>�8\��Ն=�&�>:
?��@�	@���?k �?�
�?_��?	i$@��Y@���?l�|��tI�/���_��>���d�>t_KeyAttrFlagsi!����_-KeyAttrDataFloatf 



�_KeyAttrRefCountiutaAnimationCurveL�>�-SAnimCurveSR`	DefaultDj`KeyVerI��`%KeyTimelH�%;h��d�Ye�`
KeyValueFloatf�u��u��u�aKeyAttrFlagsi!:aKeyAttrDataFloatf

gaKeyAttrRefCountiPhAnimationCurveL�o�-SAnimCurveS�a	DefaultD�aKeyVerI��e�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�g�
KeyValueFloatfv�L�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�A�gKeyAttrFlagsi!hKeyAttrDataFloatf

ChKeyAttrRefCountiv�iAnimationCurveLX��-SAnimCurveS�h	DefaultD�hKeyVerI��h%KeyTimelH�%;h��d�Ye*i
KeyValueFloatfRhڿRhڿRhڿTiKeyAttrFlagsi!�iKeyAttrDataFloatf

�iKeyAttrRefCountipAnimationCurveLh2�-SAnimCurveSj	DefaultD`	4!�6jKeyVerI�+m�KeyTimel��x�yl������*��l�.C������6��:�Q+��6iE��8�d����i4��l�fHJUa
�|H���&%��(b+#*F���G6��]�0LL�5a[��
g�EEt�,��H�b��G^L�����r&cb	-L�q�Ԡ�xڴtNW�^������z��p��`�*z�
��E��:lÞ��?��,U���IS�bW�/y���Y�S�)���᧯����`�߹v��_C+��m���.?�)��
��t�����րe
�8�s�ol��K�����8��i���ItXԐ������p�+;���譍X���5��-^G����p����#�R9m������bv�CUF»oa~M��r������f17thN�R��&ȼ�)[��*i�Ks7�R�G1�#WP���KX��IXO�+Tj���pcYYx�:�tp��j}X���n��ґf���z�V�/R��"�H�ǰ�3\�����M��ɛ霢)u���=����Y[h�Ky�K�l�ZPE�������[8O����Og�+�Zk��[��K��9�+u]�{O�G�#��j�aǼ����"��Xq1�_������'����Фj���˲m8����m��רiq��<�����{���͌���3������X�S�� o,{m�}�L?����e���3�NzG0�jYWGg<�eĆV�%�-]��'OK���l�{́j�K:}s[T3v��͉$Vo
KeyValueFloatf�K�	�j+��
����U	����|�������%�%��������@�����^�����)����U��=	���	�ե��������B���[�>�!�R����z��E�h8.�=��Pb���)��K���5�W�������[��W�U,�G~�-������ik��	����B���������f$��;,��Y0��NL�U�i�3�h�5Hl�������x��b^��q���x��-e���_��`��:i�̵t���v�Xr�'3a�iK��_>�Ŀ/��%�@I��*�Є���7$%���-�Z)'�G�'�R&���
��=��t
���M��᝟�+��_4���׿����^��Y������[���i���s�sVh��Y���:�#�����ni�������k�� +�&��tl�wÛ�@/��n4������:q��!�
����O`��V!��� �O���v��a�[�"�L���?=�@�!]@`�L@-9@C_�@�oKeyAttrFlagsi!����o-KeyAttrDataFloatf 



�oKeyAttrRefCounti�PvAnimationCurveLH
�-SAnimCurveSbp	DefaultD`.+@zpKeyVerI�os�KeyTimel��x�yl������*��l�.C������6��:�Q+��6iE��8�d����i4��l�fHJUa
�|H���&%��(b+#*F���G6��]�0LL�5a[��
g�EEt�,��H�b��G^L�����r&cb	-L�q�Ԡ�xڴtNW�^������z��p��`�*z�
��E��:lÞ��?��,U���IS�bW�/y���Y�S�)���᧯����`�߹v��_C+��m���.?�)��
��t�����րe
�8�s�ol��K�����8��i���ItXԐ������p�+;���譍X���5��-^G����p����#�R9m������bv�CUF»oa~M��r������f17thN�R��&ȼ�)[��*i�Ks7�R�G1�#WP���KX��IXO�+Tj���pcYYx�:�tp��j}X���n��ґf���z�V�/R��"�H�ǰ�3\�����M��ɛ霢)u���=����Y[h�Ky�K�l�ZPE�������[8O����Og�+�Zk��[��K��9�+u]�{O�G�#��j�aǼ����"��Xq1�_������'����Фj���˲m8����m��רiq��<�����{���͌���3������X�S�� o,{m�}�L?����e���3�NzG0�jYWGg<�eĆV�%�-]��'OK���l�{́j�K:}s[T3v��͉$�u
KeyValueFloatf��pYAq�GA�TA�oA;"�A"�A��A�x�AbgiAH/SA��9A�A��A�3A��=A��DA�DA�TKA�]A�ZA�'HA�26A! A��@��@��@;��@���@w�N@�Zw@FA�hA���A�N�A�[�A���A�J�A\!�AC!�A���A�	�A,��A/�A��A{oAA�e�Ae�|A�A��AK�A?�gA�drAX!�AQ�A��A��A��A���A.w�AM"�A8*�A��A��A�'�A�p�Aj'�A�BJBrB��A�^�A?��A���A�g�Au�A���Ar�AQ��AE��A��A�s�A�CtAr[AL OA��UA��dA|�[A
�2A���@���@���@���@���@YCA{�A9
�Ae��A�Af��A�i�A`��A���A/��A���A�B���AAT�Am��Ac�B�,�A���At7�AE��A��A;v�A"X�AH��A�M�A_�eA�A�}�@�m
@Ỳ��3H���>�<}@��@?k*:�uKeyAttrFlagsi!���v-KeyAttrDataFloatf 



CvKeyAttrRefCounti��|AnimationCurveLح�-SAnimCurveS�v	DefaultD������vKeyVerI��y�KeyTimel��x�yl������*��l�.C������6��:�Q+��6iE��8�d����i4��l�fHJUa
�|H���&%��(b+#*F���G6��]�0LL�5a[��
g�EEt�,��H�b��G^L�����r&cb	-L�q�Ԡ�xڴtNW�^������z��p��`�*z�
��E��:lÞ��?��,U���IS�bW�/y���Y�S�)���᧯����`�߹v��_C+��m���.?�)��
��t�����րe
�8�s�ol��K�����8��i���ItXԐ������p�+;���譍X���5��-^G����p����#�R9m������bv�CUF»oa~M��r������f17thN�R��&ȼ�)[��*i�Ks7�R�G1�#WP���KX��IXO�+Tj���pcYYx�:�tp��j}X���n��ґf���z�V�/R��"�H�ǰ�3\�����M��ɛ霢)u���=����Y[h�Ky�K�l�ZPE�������[8O����Og�+�Zk��[��K��9�+u]�{O�G�#��j�aǼ����"��Xq1�_������'����Фj���˲m8����m��רiq��<�����{���͌���3������X�S�� o,{m�}�L?����e���3�NzG0�jYWGg<�eĆV�%�-]��'OK���l�{́j�K:}s[T3v��͉$�{
KeyValueFloatf��׿G�M�mW���e?���?�#
@�	@܇�?呁�H�k�ʏe�*��V��՚�吗�c"
@��0@���?���> ο�N��,����E���<!�&@<��@EE�@O�V@��A��k9��LN=(�?�<@�t�@��A��bASОA���A���A�S�A�v�A�!�A�ŠA���A�ɗA��{A�^;A�"A��A��
A�1A! A�%AV)A��WA1sA��YAOnA�_�A�TmA�jjAd͂A��A�܁AהvA��bA��VAѹNA1fWA��gA�LcA4�QA��7A�A�:�@��@1�/@"1?�R�}ݢ���ؿ���̌e>�[!@'߃@n-�@��AA�9A�CA�3A�Ax��@�%~?/���X��^���$�r�=��V@���@�DA|�AΚ�Ag+�A��A~��A0�B�WB���A�0�A���A�	�A���A�F�AkvA?A�A��@qa�?,v�D����D?z�Y@A5�A�g�A���A���A�u�A|KeyAttrFlagsi!���V|-KeyAttrDataFloatf 



�|KeyAttrRefCounti�~AnimationCurveLX�-SAnimCurveS�|	DefaultD}KeyVerI�;}%KeyTimelH�%;h��d�Yen}
KeyValueFloatff� Af� Af� A�}KeyAttrFlagsi!�}KeyAttrDataFloatf

�}KeyAttrRefCounti�AnimationCurveL���-SAnimCurveSb~	DefaultDz~KeyVerI��~%KeyTimelH�%;h��d�Ye�~
KeyValueFloatfi傹i傹i傹KeyAttrFlagsi!JKeyAttrDataFloatf

wKeyAttrRefCounti`�AnimationCurveLx��-SAnimCurveS�	DefaultD�KeyVerI�Ã�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye…�
KeyValueFloatfv�Ro��So��So��So��So��Ro��Ro��So��So��So��So��So��So��So��So��So��So��Ro��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��Ro��So��So��So��So��So��So��So��So��Ro��So��Ro��So��So��Ro��Ro��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��Ro��So��So��So��Ro��Ro��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��Ro��So��So��So��Ro��So��Ro��Ro��So��Ro��So��So��So��Ro��So��So��Ro��So��So��So���KeyAttrFlagsi!&�KeyAttrDataFloatf

S�KeyAttrRefCountiv��AnimationCurveL8��-SAnimCurveS��	DefaultD��:@ΆKeyVerI�x��KeyTimel��x�}8x���%�5'��N��Rf�:4%Ƽ�vlyi�t�,�H�5���<%z�ney���T�V�<���gwr�*���*r��_�?>�f��o(���O
u�ºF�(�HL_�K�8��P�@��rG�[Ȯ���ut�%Xr�a�O���%����ep��\7��C�m��6�c-7��\�5���Sq͝Ct�:�e쿠�j�7�H/�U{-���4Y;�f�D	S�y;��w�[}�شr/l��U	-
�`|k�(t�@��`�0T������g�P�#��$*�%o���vB�/Jb�j!F��V���M�������И�j6���`Ң�� "e��Z�9z�	��0t�ZJ��P��T�G$�a+�4���vح
&�e�@�L�
��[s����[���_���Bv��>�w��0L:�g�&�+B��+��aIFY�����D>�C�ޡD��i9tK�
5�	A<�۲aN�K3�w5�@籗�0���GQ��A�K�Jt�w����1H߳�&���b:��_WC�H�b��O
�C�Qh۷%���UA���RSy|�"J{�55&QDc�(�`tCn��.�hxx��I��:�]�j�u,�MC_3M�߻��/���";�/,3��uw�u�Y�p����Qʟ.��zoE�₦��ѯ��s�s(�	2�!>>���|�셚��h�����!��o��B�N�ax��<T��ZȘ��%#�Ļ�=q��l�	��%�ôMkD��LHS�j�)����
W��z�|�n���D�3���'S۬V����_A���Vq�ݥ��p�毘�s�D8���
M,���JW���HQ�߅�e��0}��7�����x���+`��7�\M
��V��u����ų������}�����&��I�˕�@<�\��K�/�\~944ھ�uN�v&9�뛠�1q��]D{�����PwJA�cK�a�}F��^5հH`3�lg\���3c[��	Pz�ztϺT�i]�����ðoFq�,K&j*�����
�x��PU��S���&��~��K�<v�����*	��G�9PRʻ�B�?�t˥&)�;�:�Q�\���-P�|��,��H��/���2m\��3L3��_�sB�>�iH;.����?����y
KeyValueFloatf�l�h�A��A<��Ar��A���A܃�A���An�A�]�A�'�A���A���AI��A�x�A�D�A���Ah�A�A>�A�jA�AAEJA(jjA��A"��Adi�Af\�A�B�
B�
B�Bj�B��AD�Add�A��A���A��qA�OqA�tqA�V~A��A�͋A���A�J�A^9wA�5UA��/A�f�@?�@El�޵���-'�h
w�ᘚ����r���4�#�0��G2���2��"�7�I��X;������T��������^{�G>�����3Ky�V�>@�D�@�SAL�AA�A�*sA�^AؠFA��A�!�@�7O@H���\�̿��~��]��DQ\��k��E���"���4������N���7�
���� "�!@��d™�	�:���
�6���9������j���6ʤ����I����V���)�����n����ݿf}?�r@ו�@}@A�o�A���A���A�`�A>��A|��A���A��A��A��kA�.Ai�v@�ݾ=��{�'Ͱ��L6�q�x?��@NA�	LA��:AVV5AA�_
AAH��@���@ ��@���@�Ժ@~¥@��@��@g�u@�
0@?�F?��u�� ���8��B�5��d�˷��)e��长����ۇ�P^�$�)‡�7��L�s�^�J�k�'Lx�Ν��Ys��ti���ۙ�o��&��X������H�����$x Eb�Q6M��!?‡�*��D›�i����B��l����C��*���H3�(�@'
�@`%A�fAh��A���A<�A�9�A�0
B! 
B�B:�A��A�'�A�ӌA7�>AcA>2�@awӿ�����YM�OG*@9�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCounti�"�AnimationCurveL���-SAnimCurveS�	DefaultD�=D�/�KeyVerI�ٔ�KeyTimel��x�}8x���%�5'��N��Rf�:4%Ƽ�vlyi�t�,�H�5���<%z�ney���T�V�<���gwr�*���*r��_�?>�f��o(���O
u�ºF�(�HL_�K�8��P�@��rG�[Ȯ���ut�%Xr�a�O���%����ep��\7��C�m��6�c-7��\�5���Sq͝Ct�:�e쿠�j�7�H/�U{-���4Y;�f�D	S�y;��w�[}�شr/l��U	-
�`|k�(t�@��`�0T������g�P�#��$*�%o���vB�/Jb�j!F��V���M�������И�j6���`Ң�� "e��Z�9z�	��0t�ZJ��P��T�G$�a+�4���vح
&�e�@�L�
��[s����[���_���Bv��>�w��0L:�g�&�+B��+��aIFY�����D>�C�ޡD��i9tK�
5�	A<�۲aN�K3�w5�@籗�0���GQ��A�K�Jt�w����1H߳�&���b:��_WC�H�b��O
�C�Qh۷%���UA���RSy|�"J{�55&QDc�(�`tCn��.�hxx��I��:�]�j�u,�MC_3M�߻��/���";�/,3��uw�u�Y�p����Qʟ.��zoE�₦��ѯ��s�s(�	2�!>>���|�셚��h�����!��o��B�N�ax��<T��ZȘ��%#�Ļ�=q��l�	��%�ôMkD��LHS�j�)����
W��z�|�n���D�3���'S۬V����_A���Vq�ݥ��p�毘�s�D8���
M,���JW���HQ�߅�e��0}��7�����x���+`��7�\M
��V��u����ų������}�����&��I�˕�@<�\��K�/�\~944ھ�uN�v&9�뛠�1q��]D{�����PwJA�cK�a�}F��^5հH`3�lg\���3c[��	Pz�ztϺT�i]�����ðoFq�,K&j*�����
�x��PU��S���&��~��K�<v�����*	��G�9PRʻ�B�?�t˥&)�;�:�Q�\���-P�|��,��H��/���2m\��3L3��_�sB�>�iH;.����?���l�y
KeyValueFloatf�l�!2��O(�|z�iW������N���#�6�!¸-�Q���,�����˗����X�/{��-R�QZ�?玹@M@AAp�zA���AUE~A��cA�^8AA��@�Ȁ@pwp=f���;����.�������ŸQ0���C…aG�X�7�8(��	��o��sڨ�r����&����#q�?���@��IA�I�A�6�A���A3��A�B%�B�5BiJB�BK� B��B0$B2�B~��Axp�A�H�AWC�A�(�A��Ae�AЄ�A��A���A�;�A���A�.�A���Ad��A�]�An:�A�B�B-yB$�*Bj@8B�XCB�AMBy�SB��YB��_B�meB��iB��cB+cB�&`BjaSB�GQB��[BY�cB��fB��fB
EeBq�aB�]BU�ZB�SUBC.MB�GBG�DB�tAB��8BJ}/B�8#B�rBEDBB>B�s�A���Agw�A��A���A6��AĎ�A$�pAs�PA��.A˴K@,�uM���B��T��P�������-��<���%��%8�cX¾o†�t���y��Uyˆy�^�k„�^��7@�β!��%�C���m����P���
��Z����@1�Ah^A���A2��A���A`�B�ZB�;$B�/+B�/Bo05BcS7B69BX�9B_W9B��7B�/4BN�.B`�%Bm�B��B	�B���A}��A�?�A���Aw~�A�W�A�fBx�
BN�BYB��B��B�B�B��A_��A���A9?�A�s�A�*�A��kAʦ'A	e�@��&@K���߳��*��`|�%������a�
�(�$��<�~�T�$�e�v�q�ζz�z��Մ�Ն�ް���Z�›���\J��Q2~£Xsš�KeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCounti���AnimationCurveL��-SAnimCurveSx�	DefaultD��PR@��KeyVerI�:��KeyTimel��x�}8x���%�5'��N��Rf�:4%Ƽ�vlyi�t�,�H�5���<%z�ney���T�V�<���gwr�*���*r��_�?>�f��o(���O
u�ºF�(�HL_�K�8��P�@��rG�[Ȯ���ut�%Xr�a�O���%����ep��\7��C�m��6�c-7��\�5���Sq͝Ct�:�e쿠�j�7�H/�U{-���4Y;�f�D	S�y;��w�[}�شr/l��U	-
�`|k�(t�@��`�0T������g�P�#��$*�%o���vB�/Jb�j!F��V���M�������И�j6���`Ң�� "e��Z�9z�	��0t�ZJ��P��T�G$�a+�4���vح
&�e�@�L�
��[s����[���_���Bv��>�w��0L:�g�&�+B��+��aIFY�����D>�C�ޡD��i9tK�
5�	A<�۲aN�K3�w5�@籗�0���GQ��A�K�Jt�w����1H߳�&���b:��_WC�H�b��O
�C�Qh۷%���UA���RSy|�"J{�55&QDc�(�`tCn��.�hxx��I��:�]�j�u,�MC_3M�߻��/���";�/,3��uw�u�Y�p����Qʟ.��zoE�₦��ѯ��s�s(�	2�!>>���|�셚��h�����!��o��B�N�ax��<T��ZȘ��%#�Ļ�=q��l�	��%�ôMkD��LHS�j�)����
W��z�|�n���D�3���'S۬V����_A���Vq�ݥ��p�毘�s�D8���
M,���JW���HQ�߅�e��0}��7�����x���+`��7�\M
��V��u����ų������}�����&��I�˕�@<�\��K�/�\~944ھ�uN�v&9�뛠�1q��]D{�����PwJA�cK�a�}F��^5հH`3�lg\���3c[��	Pz�ztϺT�i]�����ðoFq�,K&j*�����
�x��PU��S���&��~��K�<v�����*	��G�9PRʻ�B�?�t˥&)�;�:�Q�\���-P�|��,��H��/���2m\��3L3��_�sB�>�iH;.����?���͡y
KeyValueFloatf�l
��B4�B���B���B=K�B뫋B��BJ��B-_�BnD�BRe�Bb�uB��uBt�uBs�xB�{B]!zB�xB�uB��B�C�B�Bu�BD׋BjF�B�
�B�ȍB��B�ۉB�s�B]�yB�XnBS�cB��bB'�bB<�_B�u\Bd�XB�rYBRZB��[B�m]BD`B�cB�v`B�^BB�YB�TB�pIB�6@B�:0B[8'B��B��BwB¢�AE��A���A2۰Ay�A��A�~_A'��A�ХA��A�BAGB~�*B?�AB��YB+VkB[p|Bj[{BֶyB3�fB��TB��FB�(3B��&B��B>]	Bj��A�<�A��A�b"AW�T@�='����%���yN���4�����L4���K��Ol�[���j��������V��Y����ss���Y�b�2��w���{���@7C6Ag��Az�ARV�ANBlB'i'B��8B�HB�JWB'eB��tB׳�B�ƇB�B�F�B܈�B��B_ɏB��B�+�B�ҍBXy�B�ljB∇B�A�B�ƅB��B̀�B�|tB�+oB��hB�$uB]��B
�B�їB�O�B7=�B
�B[w�B���B�B��B]��B^H�B�wB9qB׵fB�][BQ�LBϷ@B�4-B�\BC;B±�A8�A��A�`A�uA��@
[翖����H4�r��`<���������Z����������	���z��.���#p�ۭ�����bH?��@46A���A�J�A7��A��A�A�A� B�B��B.F%B�
-B�12B�g8B�<Bx�?B��BB+�DBLCB�?B�O@BP3?B�MBN�\B;�lB�n|B.�B�0�B{��Bѳ�BYA�B�G�B��B@3�B���B�}�B��KeyAttrFlagsi!���E�-KeyAttrDataFloatf 



v�KeyAttrRefCounti���AnimationCurveLX��-SAnimCurveS٢	DefaultD�KeyVerI�*�%KeyTimelH�%;h��d�Ye]�
KeyValueFloatf�����������KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountis�AnimationCurveL�-SAnimCurveSQ�	DefaultDi�KeyVerI���%KeyTimelH�%;h��d�Yeդ
KeyValueFloatf�?�?�?��KeyAttrFlagsi!9�KeyAttrDataFloatf

f�KeyAttrRefCounti�AnimationCurveL��-SAnimCurveSɥ	DefaultD�KeyVerI��%KeyTimelH�%;h��d�YeM�
KeyValueFloatfc�տc�տc�տw�KeyAttrFlagsi!��KeyAttrDataFloatf

ަKeyAttrRefCountiX�AnimationCurveL��-SAnimCurveSA�	DefaultDp�
@Y�KeyVerI���KeyTimel�yx�}P`�K�z��������K��ݰA3�(��TV);�yIef�3:�3���L�/nˉ�<s2Gw̍G��3w�&���bg����� #�}���8p�+l�7=�b�\(�C���%��{{�Et����͗2b6���j�pu����|�b�}>�n)K�a/k��W{]���Fr��/%��)�xs�GN�FO�ט3�u
�;�`}�k��vM��av�����1�%��|��o\:������a�I���hZ�5j;�Y�	���~�13z�>��1]����.ߦ��;���l�nŒ������&�X�l��csAl�ޒHi�Q}��S�/�6�Rn���a����L�і�D�g����a�w�?}��ݫ������ \���'n�
���8[��{�UR9ݬ�
bo�{�]���൛�>��]�޻v�N�9�W=��uc����%���Ȁ�~�_��Ҏ�LݸR)��re/���
o��2:Z���6O�8���|DG����mZ�ssv�!��b�����H���J��Ƙ���GD�#��&�Vl��^��y�>�G��y��9Q����c��S_�6N�$^v`f��ƕӹ}����8[�P�[����|��LJ�q�{]�Vм��ux@ޅ�c�&|���kؽ������y�4{C��]ĺuY�m$��s�����)<�?�I�Y���!�ǯ�����)�c��wӕ9�h1�~�G�Ԫ_b{��U{� 'V\_q_�<��(����6ر�����8ҟ�[9��T���J�~�-�<�^Z�����,5mN���=k�؟���GΏ���ǧ��\���nf.��ܳ��N4o����������5���º؋�0�*�S�G�p6���
KeyValueFloatf���3U@5j@'��@�7An-�A�eA4&GA�(A-lAw��@ �@/]�@��P@�Q�@C�@
�At�RA��A^��A8;�A�G�Al��A�vB֑B�8)B��4B�d"B��B�W
BJM�A�}�A�V�AY{�Ae�A
��A���AL��A-�A��AN��AH��A��Ar!�A���A=ȪA���A/)�A���Až�Al-�A�a�A|��AүA,��A�P�A�ůAA��A|�A�1�A40�AFi�A�x�A��A���A�f�A�Y�A��A{��A�q�AP�As�A-�7A]��@���@���@�A�`A]'�A�W�A'�AAݵ�@X�@iIA��@X�@<=�@�~�@�k�@��O@�@o��@�'HA��A�AQ��AE��A.�B�h
B���A{��A��A�x�AΘA��A%�fAe�HA�L#A��@��d@��@c@�<n\�@1-)A�kAꢦA�[�A\n�A��BW+Bi�CB��HB�*B��B|��A&�AL�dA�yA`i@k��@�o3A2�Aݨ�A�.�Ap��AU�gA5�A�b@���?Rֿfr��?Q���/@��y@�^)@��)@gs�@J
A��OA�P�A�4�AhĠA��A0�gA#\TAҵ�A[Q�A���AfǏA�*�A.��AL1�A�2�AЭKeyAttrFlagsi!����-KeyAttrDataFloatf 



K�KeyAttrRefCounti�ŵAnimationCurveLX��-SAnimCurveS��	DefaultD��=@ƮKeyVerI�`��KeyTimel�yx�}P`�K�z��������K��ݰA3�(��TV);�yIef�3:�3���L�/nˉ�<s2Gw̍G��3w�&���bg����� #�}���8p�+l�7=�b�\(�C���%��{{�Et����͗2b6���j�pu����|�b�}>�n)K�a/k��W{]���Fr��/%��)�xs�GN�FO�ט3�u
�;�`}�k��vM��av�����1�%��|��o\:������a�I���hZ�5j;�Y�	���~�13z�>��1]����.ߦ��;���l�nŒ������&�X�l��csAl�ޒHi�Q}��S�/�6�Rn���a����L�і�D�g����a�w�?}��ݫ������ \���'n�
���8[��{�UR9ݬ�
bo�{�]���൛�>��]�޻v�N�9�W=��uc����%���Ȁ�~�_��Ҏ�LݸR)��re/���
o��2:Z���6O�8���|DG����mZ�ssv�!��b�����H���J��Ƙ���GD�#��&�Vl��^��y�>�G��y��9Q����c��S_�6N�$^v`f��ƕӹ}����8[�P�[����|��LJ�q�{]�Vм��ux@ޅ�c�&|���kؽ������y�4{C��]ĺuY�m$��s�����)<�?�I�Y���!�ǯ�����)�c��wӕ9�h1�~�G�Ԫ_b{��U{� 'V\_q_�<��(����6ر�����8ҟ�[9��T���J�~�-�<�^Z�����,5mN���=k�؟���GΏ���ǧ��\���nf.��ܳ��N4o����������5���º؋�0�*�S�G�p6��
KeyValueFloatf��}��A@}�A2��A�I�A?�AÚ�A��A�`�AGn�A�L�Al�A�T�Ah��A��B�"BH?BE\Bg�uB/ӇBL��B>R�B`�B�`�B�BU��B�d�B��B�
�B��Bi'�B�V�B͂B��kBeRBo�>B�?"B��B���A���AK�A�A�xBؾ+B-�?B��NB�}ZB�`B��hB�vBM�B�yBB�XB
�DBA�0B�jB��B�m-B�>?B�jRB-�eB$�pBmPhB��ZB�hIB�W6B�N&BaB�<B$7�A��A�Q�A_��A���Am�A?��A�yA�]UA��2A��A�_A
_A��JA�m�A�3�A��AghBH�<B2rYBx�tB�w�B꒏B,��B�*�B��B��BGA�BۦBߧ�Bn��Bo�B`5�B@ɓB�<�Bk��BI�mB�^VBe$FB��-B]�B��A�n�A���A kwAMT[AW1A%A�@�T@Ċ6���x��b��=8��K������� �LGZ�ݓ@&�@�	m@��?���=�18�>R>���@�r�@�VA��A�ǶA���A/�A1Be
 B�-B�_:B@�KB�`B�YnB��sB�uBd+oB
�^B��KB��BB��AB�rCB%4GB@qOB��VB�Y]B\�gBLGxB�ÃB=�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCounti�2�AnimationCurveLx��-SAnimCurveS�	DefaultD�ĉ�3�KeyVerI�͹�KeyTimel�yx�}P`�K�z��������K��ݰA3�(��TV);�yIef�3:�3���L�/nˉ�<s2Gw̍G��3w�&���bg����� #�}���8p�+l�7=�b�\(�C���%��{{�Et����͗2b6���j�pu����|�b�}>�n)K�a/k��W{]���Fr��/%��)�xs�GN�FO�ט3�u
�;�`}�k��vM��av�����1�%��|��o\:������a�I���hZ�5j;�Y�	���~�13z�>��1]����.ߦ��;���l�nŒ������&�X�l��csAl�ޒHi�Q}��S�/�6�Rn���a����L�і�D�g����a�w�?}��ݫ������ \���'n�
���8[��{�UR9ݬ�
bo�{�]���൛�>��]�޻v�N�9�W=��uc����%���Ȁ�~�_��Ҏ�LݸR)��re/���
o��2:Z���6O�8���|DG����mZ�ssv�!��b�����H���J��Ƙ���GD�#��&�Vl��^��y�>�G��y��9Q����c��S_�6N�$^v`f��ƕӹ}����8[�P�[����|��LJ�q�{]�Vм��ux@ޅ�c�&|���kؽ������y�4{C��]ĺuY�m$��s�����)<�?�I�Y���!�ǯ�����)�c��wӕ9�h1�~�G�Ԫ_b{��U{� 'V\_q_�<��(����6ر�����8ҟ�[9��T���J�~�-�<�^Z�����,5mN���=k�؟���GΏ���ǧ��\���nf.��ܳ��N4o����������5���º؋�0�*�S�G�p6|��
KeyValueFloatf��&N<�
����>�ّ?��?�>@��u@�'s@��a@�f]@��L@�@MZ��ļ��]1��\���t������������}��?
��B�>$�G@ឨ@��A\4ATS�@"�?��ÿqX���s�������c��f��I��������\�����Y�X���׿�|T�Y�o=\#ǾUؿs���,��p����E�}j���)���:�mKC�I�7���+�v����p5�JQ��Xc�l�r�cQg���V��{-�����Q������j��Sc�$$?l��?�:b@�v�@
/�@�@b�l@2;k@?��@�o@��J@h&E@��@�?�����Ϳ�D�Sے������'
�T�3�&A�_�!��p��JG7�A�
<<s@I�@�GVA��#A���@ϔ@�dK�����{��/�λE�5kR�\sF�m'/���؜���g�>�Z@���@��@���@`9�@�.�@xn@/D?�%2�f�������o�!�-�w��?�?�7@	XP@��[@��c@3�o@�r@J�B@	�:@�6;@w�+@���?3��>�*��~K��X������6��I��_��4o�� f�kKL��$��4�H���'�s������&?�WQ?v��=�*\�Kb>���=ϯ�F��D��>�ɿ��KeyAttrFlagsi!�����-KeyAttrDataFloatf 



%�KeyAttrRefCounti���AnimationCurveLh��-SAnimCurveS��	DefaultD��KeyVerI�ٽ%KeyTimelH�%;h��d�Ye�
KeyValueFloatf�L���L���L��6�KeyAttrFlagsi!p�KeyAttrDataFloatf

��KeyAttrRefCounti"�AnimationCurveL�6�-SAnimCurveS�	DefaultD�KeyVerI�Q�%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�
@�
@�
@��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL(��-SAnimCurveSx�	DefaultD��KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�?�?�?&�KeyAttrFlagsi!`�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD@qk��KeyVerI����KeyTimelz�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I�+n�I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M���M�y$Nd�[RN�Y=�N�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfz��[������C�r�;��*Y����!��ei>��>���>h0�>��>����>]�{?��?���?�~�?<
�?I�V>�����Ϳ�5�Q��>�w�?��?��?#h?�r?\b�>v?�?���>���=}"���1�0@��x��O�V�7;�>u��>#�(?A�K?�z?��?�lh?b�L?�I?��S?�hB?� '?2RH>�f��������Pž�*A��^��m��'�o�C�;.Q>Lu&?t��?���?�@�+)@;xA@0L@Dm[@��j@�lp@fq@(�k@�nW@�k4@?@�R�?��G?]Y����H�R�r��>le	>e�6>�@?#ސ?�/?N�����u�R�\X���f�:�ψ<ݳ�^w��(/��b=[�#?5�c?�U:?H�M?�Xr?�Ā?���?��?6�?�[�?�\�?�!�?�C�?�?.=?1��>:wo?���?�P�?��?�@���?�a?6�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountiy��AnimationCurveL8��-SAnimCurveS�	DefaultD��!�,�KeyVerI���KeyTimelz�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I�+n�I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M���M�y$Nd�[RN�Y=�N�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye,��
KeyValueFloatfz�^���׫��2�j��O}��5���v���L4\�`�'�#�
?\/K?���	g�	~ؽ-�>�K½���ڲ �����Ǚ���������.=��u!�O�?R��?Y�
@ϭ@��@��?�1	� �Y�̒{��?���i��j	F��Sb������w���0��"��_����'��U��'���@C���`��������������e-�z�;�gm���JW��^���M���<���*�0׿&�h�bGO?6!@?�^@d��@N�@6.�@�̩@��@���@�^�@���@��@A8�@�)g@�;@���?@\�^���
���܍�t#��μ��~��m}�3=(�u?�*C��*�XGU������1��!�y�f?5�?�c@�'�>��տn��>(�=@��@��?֧�?W|�?B��?/@C@�@�V�@��t@u`Z@�z@�v@���?X
�>�U�?c�$@0xb@�
'@��@|S�@
*��Z�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountiy�AnimationCurveL�u�-SAnimCurveS8�	DefaultD�!�P�KeyVerI�A��KeyTimelz�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I�+n�I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M���M�y$Nd�[RN�Y=�N�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeP��
KeyValueFloatfz�5��$�T��?\�@M@q9�@3�@i�@���?�8&�C���,�$��j2���*���/�+�K�%� :�q\\���k���O���R=��n)���<W���/��yi��n��u�.�:h�8(��h��\����%���h���:���o<��Z��b�����(b��ї�������]F��;[�P��S����������ª������,����^c�u���`�����/�@��"AGRWA�c�@�}�@��@��@��^@+8:@�>?@(�C@3+4@��-@�@+��?���?��>Z�wf��GF�C��ZY�E>�R@���ޞ?1@:͓?p�@�`�@@u�@�@�o@���?_t�?jl_?�w��k��Y�������V(���P��_���~�א���Z��o���&���8����������XE��{������Rt����k�;�<	��k��u��d��q.��x;��OG��C�~�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountiy~�AnimationCurveL�7�-SAnimCurveS\�	DefaultDt�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatfM���M���M���
�KeyAttrFlagsi!D�KeyAttrDataFloatf

q�KeyAttrRefCountiZ�AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv�]2L�]2L�]2L�^2L�^2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�^2L�_2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�^2L�]2L�]2L�^2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�^2L�]2L�]2L�]2L�]2L�]2L�\2L�]2L�]2L�]2L�^2L�]2L�]2L�_2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�[2L�`2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�^2L�]2L�]2L�^2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L���KeyAttrFlagsi! �KeyAttrDataFloatf

M�KeyAttrRefCountiv��AnimationCurveL�H�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelH�%;h��d�Ye4�
KeyValueFloatf��D���D���D�^�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti6�AnimationCurveL��-SAnimCurveS(�	DefaultD�l&!�@�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj�g3	�a������k��KV���h���S�������b������Q�]W��m�9?�H��_��.	�G	�o+���Z��)��&�^����w���h���t��N�������^������������������ON��Gw���(��4Y��������������������YՏ�Qј��,���#�����C������������q�T��"�w��1����lR	�C�	���	�jc	�7<	�
��I<�������e��HB��
���5��~�����WP��Y����[���L��v���@,��+������ke���6���������^������"��E����.>���������4���I�������������9���D���f'��?���[Z���N���N����KeyAttrFlagsi!�����-KeyAttrDataFloatf 



)�KeyAttrRefCountii��AnimationCurveL�A�-SAnimCurveS��	DefaultD���1@��KeyVerI��]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj����Aߗ�A9�A���A�|Ak{A�{A}@}ACjA�(�A��As�A��A$!�A�A	N�A0��A���A^��A�ljA{��A.C�A/��A��A{:~Ak{A��|A��A�>�A<�A^уA��{AlA�ZA��FA��3Ai"A�A��AjT�@��@��@��@��@"5�@.�A�A�.AIABcAC6yA^уA5هA|ъA�ތA�)�A>ڎA��A���A*��A�-�AG��Ag�A���A>��A�9�A���A���A�-�AV\�AꏁA��A�>|A0pxA�lsA4nA�1iA3)eA�>bA�`Abh`A��aA��dA��iA�<pA��wA��Ayj�AB��AU��A�/�A(�A���AM�A�:~A*2zAQvA"$rAbnA7�jAr�gA�/eA�bA�aA	M`A	M`A�KeyAttrFlagsi!���\�-KeyAttrDataFloatf 



��KeyAttrRefCountii��AnimationCurveL���-SAnimCurveS��	DefaultD`l�2@�KeyVerI�y�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dH��
KeyValueFloatfj�c��A�A=��AL�A�V�AXB�Bk��Amc�AyG�AT��A���A�۸AA��A.̘A�$�Aʋ�A���A���AOI�A�2�A�P�A���A��AXB!nB�jB��A���A�
�A���AKӫA>�Aa�A��kA�JA�,A:DA�zA���@���@���@���@�1A��A@IDAvLwA�'�As/�A}��A�
�A�	�A�L�A��A8׾A_��AW��Afm�A�֝A:��A鑔A�k�A�ޗA�A(��A$�A� �Al^�Avh�A��AYH�AA�B>	B�0B9tB��)B�4B�<BlD@B>�?B�9By.B�% BO�B��B���A'U�A!��AN��A���ADG�A'k�Af��A��Au\�A]�B�t
Bk�B��BL)&B�5.BR�5B�<B�H@B�H@Bv�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountiiv�AnimationCurveLK�-SAnimCurveST�	DefaultDl�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�6��6��6��KeyAttrFlagsi!<�KeyAttrDataFloatf

i�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI����KeyTimel<�H�%;�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatf<�D�D�D�C�D�C�D�E�B�D�D�D�D�D�D�D�D�D�D�C�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�&�KeyAttrFlagsi!`�KeyAttrDataFloatf

��KeyAttrRefCounti<�AnimationCurveL��-SAnimCurveS��	DefaultD�KeyVerI�A�%KeyTimelH�%;h��d�Yet�
KeyValueFloatf�Ȕ��Ȕ��Ȕ���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountivAnimationCurveL���-SAnimCurveSh�	DefaultD r�	���KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfj���L�e~��Hc��	����p���E���<��q���#$��
&�����峩�㠖���M�l�~XW��UM�a.Q�Z�b��Z��������恼��
������E�����2�������
S������(���jx���C�HO
�ێ��z�kk�=�=,?���?�P�?�P�?�P�?�P�?yS�?�?��۾"�Ϳ�}5�y�|�������������r��=0��؝�mn������Z)y���d�˜T��fK�O@K�U��!f��2}�\����T��u_������������[F�����;�
��'��&��s0��8��'<�c�;�E5���*�x�����W���<��J���Yլ�[L��b*���y��w�������Y��o���������
���"���*��^2�c$9��4<��4<��KeyAttrFlagsi!���8-KeyAttrDataFloatf 



iKeyAttrRefCountii�AnimationCurveL��-SAnimCurveS�	DefaultD����?�KeyVerI�U]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d$�
KeyValueFloatfj��>�
H?��?��?5�@ǯ(@#�$@��@L
@~%�?}$�?ɵ�?
�v?<�8?��?`��>�>��>��>��&?��e?Bə?�2�?F��?��@ǯ(@�^/@;U @҈@�!�?1�?�9t?J?۪�>�2��:ؒ�1�m�+��I�a�Z�
g`��c`�Nj`�mn`�|�\��A��^
�R�Z�K�N>G5&?�!�?�=�?b�?���?<�?���?3bq?�YG?�S?��>1��>��>�n�>-�>ߦ�>�"?gdQ?��?��?�)�?��?��
@�S#@�;@�"]@RW�@7�@:Ǫ@�F�@���@Q��@+�@ן@�>�@QNW@s&@'��?c��?�y�?O�?�R�?P˴?`I�?�q�?��@ˢ@��1@"�K@�Lg@�&�@�
�@R��@���@-i�@��@��@RKeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCountii>AnimationCurveLx��-SAnimCurveS0	DefaultD�!a6@HKeyVerI��]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�
�
KeyValueFloatfj�	�AQ��A���A�M�A�	Bh�B&�BpB��B&��A���A�A�A���Aw��AǼ�Aѐ�A�/�A�{�Ar�A�)�A���A�#�A���Ae��A
IBh�B�zBc�	Bi�B�}�A�u�A7�A��A��A	ƝA��AQ�vA'�YAVCA�!4A��.A��.A��.A��.AT�1A�IA��pAp�A�,�AAW�AV5�A�u�A�?�A�n�A���A5��A��A.��A\	�At�A��A��A |�A˵Aْ�A�m�A���A-��A���A/j�A9C�A(B�2B��B��B�E$B'.Bl�6B�a=B��@B�k@B�;B�1B�!&B:B��B6+B��A���A�o�A~'�A5P�A��A���A�BJ�B�<B�BmB.$B�.+B��1Bu_8BhH>B�AB�AB�
KeyAttrFlagsi!���-KeyAttrDataFloatf 



1KeyAttrRefCountii�AnimationCurveL���-SAnimCurveS�	DefaultD�KeyVerI��%KeyTimelH�%;h��d�Ye
KeyValueFloatf�!	��!	��!	�BKeyAttrFlagsi!|KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL�c�-SAnimCurveS	DefaultD$KeyVerI���KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfv���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b�KeyAttrFlagsi!XKeyAttrDataFloatf

�KeyAttrRefCountiv
AnimationCurveL�g�-SAnimCurveS�	DefaultDKeyVerI�9%KeyTimelH�%;h��d�Yel
KeyValueFloatfqZ�qZ�qZ��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLع�-SAnimCurveS`	DefaultD@!��xKeyVerI�uKeyTimel-hH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��
KeyValueFloatf-�
I���>���Ɉ��xs�[�\��rS��EV�1^��|i�ۓw�|��������$�����v���Gd��{4�������K����������ؾ��Y����u��Mc��rS��ZW�s)u����rz��
I��
I��
I��
I���f���Ƞ����_��EȊ�Nԁ�+�r�x�c���X���S��rS�
KeyAttrFlagsi!���T-KeyAttrDataFloatf 



�KeyAttrRefCounti,AnimationCurveL�k�-SAnimCurveS�	DefaultD@{��?KeyVerI��uKeyTimel-hH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��Xd�
KeyValueFloatf-��#�?X�{?�GB?�U?E�>��>G��>���>l�?sz?��1?tkK?�:g?w��?:�?lb�?��?�-�?0E�?P��?wn?�O?��2?�K?�*?��>ĥ�>�l?w[T?$��?�#�?�#�?�#�?�#�?��?��?���?$h?r�H?��,?�)?N�?�[�>�]�>���>�KeyAttrFlagsi!����-KeyAttrDataFloatf 




KeyAttrRefCounti,�"AnimationCurveL�Z�-SAnimCurveSp	DefaultD���;@�KeyVerI�!}KeyTimel.pH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�X�!�
KeyValueFloatf.����AkV�A�>�A�}�A��A��Ao��A��A���AxH�A��A��Ar��A���A/�A��AK��A[��A���AR��AK��AOѻA_9�A���A(��A��A���A���A���A���A���A���A���A���A;h�Au��A-?�A@F�A��A�A$נA�ߖA��Aj:�A��A��A&"KeyAttrFlagsi!���p"-KeyAttrDataFloatf 



�"KeyAttrRefCounti-&$AnimationCurveL��-SAnimCurveS#	DefaultD#KeyVerI�U#%KeyTimelH�%;h��d�Ye�#
KeyValueFloatfE���E���E����#KeyAttrFlagsi!�#KeyAttrDataFloatf

$KeyAttrRefCounti+AnimationCurveL���-SAnimCurveS|$	DefaultD�$KeyVerI�e(�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yed*�
KeyValueFloatfv�O�{>O�{>P�{>O�{>O�{>P�{>O�{>O�{>P�{>O�{>O�{>P�{>P�{>O�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>O�{>P�{>O�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>P�{>O�{>P�{>P�{>O�{>P�{>P�{>O�{>O�{>P�{>P�{>O�{>P�{>O�{>P�{>P�{>O�{>O�{>P�{>O�{>P�{>P�{>P�{>O�{>P�{>P�{>Q�{>N�{>O�{>O�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>O�{>P�{>O�{>P�{>�*KeyAttrFlagsi!�*KeyAttrDataFloatf

�*KeyAttrRefCountivz,AnimationCurveL��-SAnimCurveSX+	DefaultDp+KeyVerI��+%KeyTimelH�%;h��d�Ye�+
KeyValueFloatf�m{��m{��m{�,KeyAttrFlagsi!@,KeyAttrDataFloatf

m,KeyAttrRefCounti�2AnimationCurveL���-SAnimCurveS�,	DefaultD �#��,KeyVerI�Y0]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d(2�
KeyValueFloatfj��q���@����Id��������Eý֙���s��Ʈ����A���	.�N*G��[�j���p��<n�Qb�]�N���4��h��)�W��I�D����,󤽟�r��׾8����¾�m��)�>�tx?C�?��
@��/@l�P@�*k@B�|@<��@<��@<��@<��@a�@�hi@kYB@hH@2O�?�'+?��<��¾��v�I���i���~��S���V���n�������e�>�w��r�m�/[b�F}R�D>�	�&���"�߾�\���rV��hͽ�y�<�+>�B�>�"?��2?�U?�3g?��b?iOC?�N?Ad�>Z%�=��&�����t�����&��~��
��:���оGu��<K\�p�Ͻ	�<(�>n��>@O�>Q?�-5?:�V?Df?Df?V2KeyAttrFlagsi!����2-KeyAttrDataFloatf 



�2KeyAttrRefCountiiB9AnimationCurveLx��-SAnimCurveS43	DefaultD��6@L3KeyVerI��6]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�8�
KeyValueFloatfj����@���@';�@���@��@D �@߻@.�@y �@2�@O��@��@3-�@�	�@�1�@�5�@:��@b�@B��@߈�@w�@���@(�@?t�@Of�@D �@zN�@���@���@��@���@��@@�@��@��@c��@}�u@�]@�nI@2<@��7@��7@��7@��7@��9@a^I@��d@���@�ޘ@��@�m�@���@���@�^�@A��@��@P3�@^��@в�@��@^�@��@���@���@c��@}��@/�@8�@˫�@���@z"�@�;�@XW�@[��@���@)D�@��@��@hY�@h(�@M�@�3�@&H�@ס@��@���@^P�@���@���@�u�@�
�@�g�@��@� �@��@�&�@��@��@Z��@a��@��@p�@�m�@��@�@�@�8KeyAttrFlagsi!���9-KeyAttrDataFloatf 



59KeyAttrRefCountii�?AnimationCurveL���-SAnimCurveS�9	DefaultD���3@�9KeyVerI�!=]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�>�
KeyValueFloatfj�&�A���A�x�Adz�A��B��B��B�TB���A]	�A��Ao�Ax5�AD�A酩A��A�N�A���A��A]�A���A�*�A���A�I�A��A��B��B�OB�Y�A��A���A�N�A��A.~�A!ψAkA�1GA
�'Al>A��@XV�@WV�@WV�@WV�@�E�@~�A�q@A��uA��A=.�A8��A���A�~�A��A�c�A��A$
�A
g�A�ۮAW4�A�=�A�ĝA��A��A��A�`�Aw��A�*�A���Ai�A@E�A��ALB	�B�<B� Bw+B��4BY<BQf@B��?B��9B�]/B�#"B�B��B���A3��Ai$�A���A��A;��A¡�AϷ�A���A'hBd�B�1B&	B��B%�'BNr/BN�6B]=B�r@B�r@B?KeyAttrFlagsi!���h?-KeyAttrDataFloatf 



�?KeyAttrRefCountiiAAnimationCurveL�`�-SAnimCurveS�?	DefaultD@KeyVerI�M@%KeyTimelH�%;h��d�Ye�@
KeyValueFloatf/=��/=��/=���@KeyAttrFlagsi!�@KeyAttrDataFloatf

AKeyAttrRefCounti�GAnimationCurveL�?�-SAnimCurveStA	DefaultD�AKeyVerI�]E�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye\G�
KeyValueFloatfv��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������GKeyAttrFlagsi!�GKeyAttrDataFloatf

�GKeyAttrRefCountiv�NAnimationCurveLHw�-SAnimCurveSPH	DefaultDhHKeyVerI�9L�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye8N�
KeyValueFloatfv�[:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��Z:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��bNKeyAttrFlagsi!�NKeyAttrDataFloatf

�NKeyAttrRefCountiv:UAnimationCurveL��-SAnimCurveS,O	DefaultD�
�DOKeyVerI��R]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�T�
KeyValueFloatfj��m����ֿ�(�7B.���E��N���K��D��8�$�)��~��'���$�ο������eV��ɪ���	���ſ��/n�����,��>�ۤN���R��vG��2����+;��y����K)���]D��*о�i��ؕb>4v�>�~?k(?�j(?�[(?Y(?� ?�>�0>�����섿��¿z��E�ֿ	�����P����濌�ҿ����>���&��4-���������`����Aÿ'fܿ����p�����0,��;�f�J���Z��Mo������Ӎ��Z��2t��Z3��D���X��u������&�k���L���/�/<��)�Q�
��7�ͫ�����)�GM6���D�3�T��d��1u�ɿ�����(������e��E?��E?���TKeyAttrFlagsi!����T-KeyAttrDataFloatf 



-UKeyAttrRefCountiib[AnimationCurveLX��-SAnimCurveS�U	DefaultDm�?�UKeyVerI��X5KeyTimele(H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�Z�
KeyValueFloatfe�hs�<K�=†>���>��?��#?��?�Y?0�>
��>Qߢ>�r>y�'>���=O�d=���<��J<舏<w,=�.�=��>�e>�֡>,�>�F?�"?**?-r?Y��>�4�>0�{>z�'>FL�=9��; \��Ƚ��@`��$����B��N�������1T�U�=�|;>�Zx>���>[��>^�l>�FI>��>�[�=pÝ=8�:=�1�<�y&<"m<Ğ�<>?=Vݥ=��>N�8>I{>�>�S�>h?�a?��;?�}f?�6�?TT�?�=�?���?���?p�?�J�?��?[�?�^?n� ?(p�>~D�>�As>#jl>9�}>ُ>���>F�>)��>��?j�/?Z�O?��s?��?%�?eE�?L{�?$��?��?��?�ZKeyAttrFlagsi!���$[-KeyAttrDataFloatf 



U[KeyAttrRefCountid�aAnimationCurveLH��-SAnimCurveS�[	DefaultD��5@�[KeyVerI�A_]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	da�
KeyValueFloatfj�h�Ag;�A���A�B[TB4UB�Bد
B��Bm}�A=J�A5��A��AP��A���A�8�A萯AJ��A�k�A���A���A�3�A��AabBXVBbUB�JBMXB�QB�A®�A@F�A)��Ak�A�ӘA���A��gA�IA��0Av� AmAjA6A.A�A�47A	�aA�=�AtF�A�F�A���A֮�AD��A_��A ��Ajj�A#��A?�A˙�A�
�A�4�A{ۮA[ϮAe�A>��A�*�AՊ�Aqf�AgZ�A�AB��B��
B��BbvB�)BU�3BY=B��DB��HB=HB`!BB�8B�+BV�B��BY�Bp��A�/�AJ�AD��A֋�AAv�A�e�A-�B3
BBÌB�:!B��(Be�0B�8B�%?B�EB�HB�HB>aKeyAttrFlagsi!����a-KeyAttrDataFloatf 



�aKeyAttrRefCountii>cAnimationCurveL���-SAnimCurveSb	DefaultD4bKeyVerI�mb%KeyTimelH�%;h��d�Ye�b
KeyValueFloatf��<���<���<��bKeyAttrFlagsi!cKeyAttrDataFloatf

1cKeyAttrRefCounti�dAnimationCurveL�d�-SAnimCurveS�c	DefaultD�cKeyVerI��c%KeyTimelH�%;h��d�Yed
KeyValueFloatfl�D�l�D�l�D�BdKeyAttrFlagsi!|dKeyAttrDataFloatf

�dKeyAttrRefCounti.fAnimationCurveL�F�-SAnimCurveSe	DefaultD$eKeyVerI�]e%KeyTimelH�%;h��d�Ye�e
KeyValueFloatf֨�֨�֨쾺eKeyAttrFlagsi!�eKeyAttrDataFloatf

!fKeyAttrRefCounti�iAnimationCurveL;�-SAnimCurveS�f	DefaultD@4���fKeyVerI�%huKeyTimel-hH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��Xi�
KeyValueFloatf-�����]���O߿cSƿU���[!���l��v���/��+�ɿ�ֿ4��'��>E��%���7����t.�Nj�L��������忱�ֿ �ǿr
��\!��@N����ǿy-����������*�����}������������жӿ��ſSb������Q��^!��.iKeyAttrFlagsi!���xi-KeyAttrDataFloatf 



�iKeyAttrRefCounti,&mAnimationCurveL��-SAnimCurveSj	DefaultD ���?$jKeyVerI��keKeyTimel+XH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-Xpl�
KeyValueFloatf+�!u�>U�=>l��=�+�=Uo=?�Z=�s`=�9s=��=۱�=oL�=��>�D%>x�F>�De>�|>O2�>��>��o>�\Q>N�->:
>)t�=}ģ=�h�=V�Z=h�b=~�=0�>�S_>%u�>#u�>u�>���>��l>��K>�M&>�>5��=��=
�=�Ff=2[=�lKeyAttrFlagsi!����l-KeyAttrDataFloatf 



mKeyAttrRefCounti*�pAnimationCurveL���-SAnimCurveS|m	DefaultD �m<@�mKeyVerI�%o}KeyTimel.pH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xp�
KeyValueFloatf.�!m�Ah��A�I�A�7�A���A-x�A]�AǑ�A�^�AB
�A��Ae0�A�6�A�@�AI��AN��AcM�AC;�A>O�A�G�A���A��A�(�A�O�A6)�A-x�A<�A�a�AZ��A�	�A!m�A!m�A0m�A!m�Az�A��A���A���Av!�Av�Aw��A�o�A��AE��A-x�A-x�A2pKeyAttrFlagsi!���|p-KeyAttrDataFloatf 



�pKeyAttrRefCounti-2rAnimationCurveL��-SAnimCurveSq	DefaultD(qKeyVerI�aq%KeyTimelH�%;h��d�Ye�q
KeyValueFloatf����������qKeyAttrFlagsi!�qKeyAttrDataFloatf

%rKeyAttrRefCounti�sAnimationCurveLh��-SAnimCurveS�r	DefaultD�rKeyVerI��r%KeyTimelH�%;h��d�Yes
KeyValueFloatf�Q�>�Q�>�Q�>6sKeyAttrFlagsi!psKeyAttrDataFloatf

�sKeyAttrRefCounti"uAnimationCurveL�
�-SAnimCurveSt	DefaultDtKeyVerI�Qt%KeyTimelH�%;h��d�Ye�t
KeyValueFloatf���?���?���?�tKeyAttrFlagsi!�tKeyAttrDataFloatf

uKeyAttrRefCounti�{AnimationCurveLH��-SAnimCurveSxu	DefaultD�u*�?�uKeyVerI�y]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�z�
KeyValueFloatfj��S�?�1@�@~�@/N@�@*'@�@�]@��@��
@��
@N�@�D@"@���?m�?GH�?�)�?i%@�@��	@2�
@k@%S@�@�k@ю@N
�?�z�?�j@d%@gM@	E{@{�@��@f�@���@`p�@
��@6��@6��@6��@7��@���@w=�@��@ZB�@@Ґ@8�_@?])@�j@���?��?���?���?�n�?u��?�b�?�N�?��?��?���?s/�?3��?�W@C�@Qo@dH	@K?@gK@�l@٬@*�@ɑ@C�%@��+@
�0@Xy4@�n6@�6@��4@2�0@��*@ע"@%@d�@vk@U�@V@Y@g�@%	@�	
@��@bs@�p@�_ @�%@s)@AZ-@��0@��3@��5@L�6@L�6@�zKeyAttrFlagsi!���H{-KeyAttrDataFloatf 



y{KeyAttrRefCountiiҁAnimationCurveL��-SAnimCurveS�{	DefaultD�X���{KeyVerI�UMKeyTimelh@H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfh��j&����x�˺�����v<�/�㿮o�T�￘���L����	�}b���
*���#��O&��i%�$Z!���JK�2�!� ������v<�̯������:��V�Z{!���#��M%�lw&�<�'�h�(��K*���+�[-�=.��Y.��Y.�`�-���*��u&�ψ"��4 �չ�� �[{!��V"�U^#�l~$���%���&�f#(�80)���)���)��)��'�L�#�^��I����4�8�����J򿮳�+l�9�߿_�޿-g��y�D�쿇��L���������>w��q�&�ݿ�ܿ2j޿�����9
�wA�w���*��l߿��ݿ�ݿ��ܿ8�ݿ!C߿�����$�鿖��_��3���2���J�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



ŁKeyAttrRefCountig6�AnimationCurveL���-SAnimCurveS(�	DefaultD���3@@�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj�~��A�͹AL'�Ao��A0�B�}
B�BN1B�_B�O�A�'�A�X�A��Ac	�A��A�ޠA���AR�AO��A/��A���A[��A���A	��AT�B�}
BngB�	BG��A���A��A���A�=�A확A���AYvXAO�2Aq<A�.�@ٛ�@Z��@Z��@Z��@Z��@���@���@�-AT�eAO֐Aǽ�AJ��A��A�A2.�A��Ai�A�2�A&A�A�q�A���Al��Ar�A�̛A�$�A8��A��A���A
5�AX�Ao��A�B�Ac]B��B�xB�CB�(B�2B��<B��CBW�GBI!GB"AB,�6Bװ)B�$B��BfA�A��A���Aim�A�g�Aw�A7�A�%�AzBE	BBBl�B��B�'B�T/B��6B�>B)�DB��GB��GB��KeyAttrFlagsi!�����-KeyAttrDataFloatf 



)�KeyAttrRefCountii��AnimationCurveL��-SAnimCurveS��	DefaultD��KeyVerI�݈%KeyTimelH�%;h��d�Ye�
KeyValueFloatfc0��c0��c0��:�KeyAttrFlagsi!t�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL5�-SAnimCurveS�	DefaultD�KeyVerI���KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfv�4�<6�<6�<2�<1�<8�<3�<4�<6�<2�<3�<5�<5�<5�<6�<6�<3�<6�<5�<5�<6�<4�<5�<1�<6�<5�<5�<5�<5�<5�<5�<4�<5�<5�<5�<4�<4�<4�<6�<6�<1�<4�<4�<7�<4�<4�<5�<5�<5�<5�<4�<5�<6�<5�<7�<6�<7�<5�<1�<2�<6�<5�<3�<4�<1�<6�<7�<2�<5�<5�<6�<5�<4�<4�<1�<5�<7�<8�<1�<5�<4�<5�<4�<4�<7�<4�<5�<4�<6�<7�<5�<5�<5�<5�<5�<5�<6�<5�<4�<4�<6�<6�<5�<5�<4�<4�<4�<5�<5�<4�<6�<5�<4�<4�<4�<5�<5�<4�<�KeyAttrFlagsi!P�KeyAttrDataFloatf

}�KeyAttrRefCountivf�AnimationCurveLH��-SAnimCurveS��	DefaultD��KeyVerI�ɔ�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeȖ�
KeyValueFloatfv�?%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%?�KeyAttrFlagsi!,�KeyAttrDataFloatf

Y�KeyAttrRefCountivʝAnimationCurveL8�-SAnimCurveS��	DefaultD�c��?ԗKeyVerI�E�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfj���>��?�(E?k-p?灇?�}�?:��?o��?&�}?h�j?mT?�=?X�%?�.?+��>Y��>��>0��>6�>m�	? ?�Y9?��S?��m?��?tg�?y�?�X�?5t?L�R?<6?�c?=?��>Xg�>7b>70#=`@`�X�NG6��/H��6H�B�H�dI�< >�żܽ&{�<U�C>䃺>`�?�%?6�5?*:?߂8?2?(?�?�9?��?q�>��>xB�>|��>��>���>�	?J�??�-?UB?LJW?	m?�!�??}�?�?z��?�ư?-��?�<�?Y��?s��?��?Lm�?w��?ܚ�?��?�ӌ?��u?�Y?I{H?��F?UK?�ES?y�^?;m?��}?���?õ�?�ě?��?��?���?q��?t��?�u�?���?���?B�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountii��AnimationCurveLXm�-SAnimCurveS �	DefaultD�r�}�8�KeyVerI���=KeyTimelf0H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dH��
KeyValueFloatff����j_o��)�#�Y�n.��8v��������~z�55N��"�[��g���G��������VS�J�4���G� ������㽺� �/U�����ힾg[��>Ր�_����<�н�^����W<�;�=Z�e=��=0r�=��=��=0�=�r�=���=~�E=iJ"<���y�����н��޽�oٽ�Žr��I����f;�
��loz��>��䫐��H��e�9����`/�cⅽ�8��k����(�;5X�ګ��2㜾7���m�ھ�G�q+�-�,���<���E��3D�:�6�@ �2���Ҿc&����m��U3�ii�R�9&�pR(��>���[�3��y��T��]�ƾ�u㾄��ʓ��e ���/�R�>���E���E�v�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



�KeyAttrRefCountieb�AnimationCurveL���-SAnimCurveST�	DefaultD���8@l�KeyVerI�ݧ]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj����A�,�AxXB}�Bc� BJ%B��#B��B��B<`B1
B�WB��AF�A�p�AT�A9	�A��A�A�A
��A[��AE��Ad�	B
�B?B!J%B�'B� Bk3B�*Bq��A��A�{�A���A��Aյ�A��A��uAW�]A��MAK>HAM>HAt>HA|>HA��KAC�dA	�AeТAO�A��A�p�A���A?��A��A�M�AK��A�k�A
��A���Ar8�Aw�A�s�Aw	�A��Al�A5��A�b�Ad��A��BS�BB��BȀ#B�R+B�"5BL�?B��JB[8TBbx[B�U_B�^Bj�XB{NB*kABU�2B�{$B�B�n
B$�B*BݚB�mB[nB�tB;XB�� Bc(Bl�/B�f7B'A?B]GB'�NBK�UB�N\BMY_BMY_BکKeyAttrFlagsi!���$�-KeyAttrDataFloatf 



U�KeyAttrRefCountiiګAnimationCurveL���-SAnimCurveS��	DefaultDЪKeyVerI�	�%KeyTimelH�%;h��d�Ye<�
KeyValueFloatf�S��S��S�f�KeyAttrFlagsi!��KeyAttrDataFloatf

ͫKeyAttrRefCountiR�AnimationCurveL��-SAnimCurveS0�	DefaultDH�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�7A��7A��7A�ެKeyAttrFlagsi!�KeyAttrDataFloatf

E�KeyAttrRefCounti�AnimationCurveL�X�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimelt�H�%;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yex��
KeyValueFloatft�N
->N
->N
->M
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->��KeyAttrFlagsi!ܳKeyAttrDataFloatf

	�KeyAttrRefCountit��AnimationCurveL���-SAnimCurveSl�	DefaultD�Q;�?��KeyVerI��mKeyTimel,`H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��Xܶ�
KeyValueFloatf,���Q?7�C?��2?p�"?�0?�G?��?�?/?�$?�9-?��5?� >?Q�E?^�K?��O?$�Q?�Q?��M?��G?�@?m.7?�m-?)q#?o�?�G?]c?m#?I�8?;rJ?��Q?��Q?��Q?A�P?��L?ʑF?�_>?,
5?�X+?y"?v?�6?�g?o??
�KeyAttrFlagsi!���T�-KeyAttrDataFloatf 



��KeyAttrRefCounti+��AnimationCurveLx"�-SAnimCurveS�	DefaultD@>^ÿ�KeyVerI�q�]KeyTimel*PH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�W@��
KeyValueFloatf*�������s��򻇽��[��K�
XP�v�^��(w��'��(����H��[ݽH���sw�v��p��N����F���5���ýK����̉���i��K��AR�@��Ƚ������������u}����\��P޽Y����������,fj�KU�n�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



�KeyAttrRefCounti)��AnimationCurveL�R�-SAnimCurveSL�	DefaultD ��@@d�KeyVerI���}KeyTimel.pH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�XԽ�
KeyValueFloatf.�1Bg��A���A��Aj��A~��A���A���A{��A���At �A-��A$�A�n�A�BP�B��B�pB:�B���A���AȎ�A�e�A,�A��A~��AQ[�A�>�A���AV�B1B1B5B1B�ZB��BW��A�p�AI��A���A�]�A���Axj�A�ѶA���A���A�KeyAttrFlagsi!���L�-KeyAttrDataFloatf 



}�KeyAttrRefCounti-�AnimationCurveL���-SAnimCurveS�	DefaultD��KeyVerI�1�%KeyTimelH�%;h��d�Yed�
KeyValueFloatf-C��-C��-C����KeyAttrFlagsi!ȿKeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�t�-SAnimCurveSX�	DefaultDp�KeyVerI�A��KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye@��
KeyValueFloatfv�ϓ��Γ��ϓ��ӓ��ӓ��Γ��ғ��ғ��ϓ��ӓ��ӓ��ϓ��ϓ��ϓ��Γ��Γ��ӓ��Γ��ϓ��Γ��Γ��ϓ��ϓ��ӓ��ϓ��ϓ��ϓ��Γ��ϓ��ϓ��Γ��ϓ��Γ��ϓ��Γ��ӓ��ϓ��ӓ��Γ��ϓ��ӓ��ғ��ӓ��Γ��ғ��ϓ��ғ��ӓ��ϓ��ӓ��ӓ��ғ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ғ��ӓ��ϓ��ғ��ғ��ғ��ӓ��ϓ��Γ��ӓ��ϓ��ӓ��ϓ��ϓ��ғ��ӓ��ӓ��ғ��ϓ��ϓ��ӓ��ϓ��ϓ��ϓ��ӓ��ӓ��ϓ��ϓ��ϓ��ӓ��Γ��Γ��ϓ��ϓ��ϓ��ϓ��ӓ��ӓ��Γ��ϓ��ғ��ӓ��Γ��ϓ��Γ��ғ��ӓ��ғ��ғ��Γ��Γ��ӓ��ϓ��Γ��ӓ��ӓ��ϓ��ϓ��ϓ��ӓ��j�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountivV�AnimationCurveL8��-SAnimCurveS4�	DefaultDL�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�[@�[@�[@��KeyAttrFlagsi!�KeyAttrDataFloatf

I�KeyAttrRefCounti��AnimationCurveLH�-SAnimCurveS��	DefaultD V�?��KeyVerI�5�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfj����?wQ$?2m>���U�ݟ�z�k�ھ�q���ӽ0��=��>�!?;0?��W?�s?O_�?C�{?�Xd?y>?��
?�z�>���=�i
�����ݟ�ޕ0���3�Z��9��\��<Z5?4I�?���?��-@��^@\�@��@ѫ�@�@Eɷ@Fɷ@Fɷ@Fɷ@jɵ@W�@XY�@�}]@��@�)�?��?\��<|�;�iх��Ep�����*=�{>?~�>mF+?�X?w?3!�?��w?o�_?}<? b?E��>I7>��Z���ži��P�%��4B��]��/x�DՇ�ާ��B�������U����Lf�K<�9�Շݾm��Ɨm�R>�͐9�F�k�]��-���3��������Ͼ�P�v�a�!�5*8�~P���h�
���G��7��7��2�KeyAttrFlagsi!���|�-KeyAttrDataFloatf 



��KeyAttrRefCountii�AnimationCurveL�X�-SAnimCurveS�	DefaultD@^/,�(�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dh��
KeyValueFloatfj��za��H���-����X<�D�������C����Q��<%�'K2��m?���K�,V���]��Qa���_�.�Y��}O���B�\4�s�%��)�,
�D�����������x�/��7�`P6�Ko2��,��n&�����/��m��������
��
��
��
�d�
����1��I�'��3(���0��7�8C=��C���H�S�N��TT��gY���]��&a��:c�m�c��0b��W^�]�W�^lO�0VE��):��`.��j"����ω�%J�g���j��������ء�㾌���z�RUj��l�0`��x)��t���%���H����l�}���('�D	(���%�_�!�E��Z������=��+����������6����3���ڈ�`Qv�R�i�L�i���KeyAttrFlagsi!�����-KeyAttrDataFloatf 



�KeyAttrRefCountii��AnimationCurveL8r�-SAnimCurveSt�	DefaultD@�1&@��KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj��1AdOkA3�A�Z�AA��A�-�A45�A7�Ae��Ad��A�h�A�O�A�ˀA��cA�MKA8:A4�1A5Ai[CA�ZAe�yA���A �A���A�x�A�-�Az^�A?^�A��A��Aү�A�wAa�OAt�%A`��@1�@��'@��?M_������+��+��+��+�����&:�*(
@�U�@�jAj�TAZ��Aү�A���A��A���ACуAn�vA�dA)�RA>�BA�6A��/A�$0A��8APGA��ZA�sAca�A�w�A�V�A�~�A�j�A���Aa�AFN�AݺB��B�B�Q$B�X(B�'B�5!B�XBA�B�S�A���AY�AG�A�˜A~��AV��Am�AQ��A��AG��A���A_K�A���A.��A�qB&�BzzB
Bg%B�O(B�O(B��KeyAttrFlagsi!���D�-KeyAttrDataFloatf 



u�KeyAttrRefCountii��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI�)�%KeyTimelH�%;h��d�Ye\�
KeyValueFloatf},m�},m�},m���KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLȐ�-SAnimCurveSP�	DefaultDh�KeyVerI�9��KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye8��
KeyValueFloatfv����=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=b�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountivN�AnimationCurveL��-SAnimCurveS,�	DefaultDD�KeyVerI�}�%KeyTimelH�%;h��d�Ye��
KeyValueFloatf
�?
�?
�?��KeyAttrFlagsi!�KeyAttrDataFloatf

A�KeyAttrRefCounti��AnimationCurveLh��-SAnimCurveS��	DefaultDࠇ@��KeyVerI�-�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj�=@=�f@�r�@<��@���@l��@m��@t��@V��@�ؼ@=��@Ic�@�6�@�"]@9�=@�V'@(�@�� @��3@�Q@zx@�2�@<;�@��@���@l��@b�@b��@Hm�@�@��@Ԝ{@��E@P�@V�?��>
��:ꞿ�.�K����ͪ����R��7J��Jӿ�-��(?*��?�!N@�@�@s��@��@��@ϖ�@U5�@�'{@��a@�H@ps2@��!@P�@g�@6&@x�8@��P@�zm@�@��@p9�@��@���@q<�@o�@J�A�=A�@"A�|-A�5A�):A)w9A��2A�&A�8A�"A���@<�@>q�@��@Sڔ@b�@��@���@���@`��@j�@�C�@E�AS�
A�A�A��&AM/A�6A�0:A�0:A*�KeyAttrFlagsi!���t�-KeyAttrDataFloatf 



��KeyAttrRefCountii
�AnimationCurveL��-SAnimCurveS�	DefaultD �8� �KeyVerI���UKeyTimeliHH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dT��
KeyValueFloatfi���)�����qȿ��	��*)�ME6�*2�1'�$��_�}�cɻ��(��e�|��kR���6�SQ*��/�wE���l�<n��d8��ܒ࿟��d��ME6���<��x,���������"N��O2_�����g��Fw�G=�d+>��z>\��>š>��>�a�>9��>�d>�w�=��@��F��k��桿&��_�ÿ�2���D���������S���c���E��n0��G%�L�&���5�fhL�
ek��ʉ�}̢����_���M��v���0�h�I��k�7���bd��k����	���c������X��!C��]���>}d���3������ݿ�C��*/���ÿӿ�����'��~(�H�?���X��\t�曈��v��Oe���������>q��>q����KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountihn�AnimationCurveL�^�-SAnimCurveS`�	DefaultD �69@x�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj�)��A���AۿB)$Bq�B{�B��BB�B/5Bi�B�(�Av�A�J�A���A��A���A�Y�A��A#�A�^�A���Ag�B*eB*�B{�B�� B�>B��B��B���A+��AEN�Ae��A��APK�A�;�AT�AO�pABzbA]Y]AWY]AY]AY]Ae�`A]8wA�A�e�A��A���AЁ�A���ASc�A���AN��A���A���A���AT@�Aju�A�P�A,��A�A%�A]��Ab=�A|�A�4�A�xB��B�B��BReB99$B��,B]U6Bq�?B/HB:yNB7�QB[QQB>!LB�2CB�7B+BBFB@�Bw�	B��B5B:�B�Bh�BTB�KB�#B�t!B�(B��.B[�5B��<BbACB�}IB�<OB��QB��QB��KeyAttrFlagsi!���0�-KeyAttrDataFloatf 



a�KeyAttrRefCountii��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelH�%;h��d�YeH�
KeyValueFloatf�p!��p!��p!�r�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti^�AnimationCurveL�L�-SAnimCurveS<�	DefaultDT�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatfuH��uH��uH����KeyAttrFlagsi!$�KeyAttrDataFloatf

Q�KeyAttrRefCounti��AnimationCurveL�2�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelH�%;h��d�Ye8�
KeyValueFloatf��?��?��?b�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiRAnimationCurveL�<�-SAnimCurveS,�	DefaultD !��?D�KeyVerI���mKeyTimel,`H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X���
KeyValueFloatf,�	�=?�C*?Ha?�p�>T��>���>d��>a��>E��>#��>9.
?�?�x"?�,?6"5?��:?�k=?zl<?�7?��/?K%?��?ly
?��>�>���>[��>��>�?f�3?	�=?	�=?�=?�D<?�7?sK.?3�"?t?�s?���>���>'��>���>���>��KeyAttrFlagsi!���-KeyAttrDataFloatf 



EKeyAttrRefCounti+�AnimationCurveL�@�-SAnimCurveS�	DefaultD��C���KeyVerI�AmKeyTimel,`H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X�
KeyValueFloatf,�]ҿ��ƿ���T��Ovſȿ�7ǿ�ſ\�¿ֱ�����T9���Ŀ�ȿl̿�пҿBHѿ4ο>�ɿ2�Ŀ�����������ÿȿ��ƿC������'�˿]ҿ]ҿ]ҿ�*ѿ��Ϳ@�ȿ"Ŀ7�����;��=�ÿ,uƿ4ȿȿFKeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCounti+bAnimationCurveLh��-SAnimCurveS$	DefaultD�5@<KeyVerI��}KeyTimel.pH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AF8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�X��
KeyValueFloatf.����AQ�A�GzA5�NA›.Az"A;�%A�0A
�@A�TA*kAo+�A3��Ag�A���A���Aڔ�Ay�A�`�A;�A�W�A���A�kAuQA:8Az"A5j'A6QAR��A9��A���A���A���A���A�L�AӒ�A�k�A$�A��A��eA[rMAR�8AA�)A�W"Az"Az"A�KeyAttrFlagsi!���$-KeyAttrDataFloatf 



UKeyAttrRefCounti-�AnimationCurveL�H�-SAnimCurveS�	DefaultD�KeyVerI�	%KeyTimelH�%;h��d�Ye<
KeyValueFloatf������������fKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiR
AnimationCurveL��-SAnimCurveS0		DefaultDH	KeyVerI��	%KeyTimelH�%;h��d�Ye�	
KeyValueFloatf�$���$���$���	KeyAttrFlagsi!
KeyAttrDataFloatf

E
KeyAttrRefCounti.AnimationCurveL�-SAnimCurveS�
	DefaultD�
KeyVerI���KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfv��}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�KeyAttrFlagsi!�KeyAttrDataFloatf

!KeyAttrRefCountiv2AnimationCurveL���-SAnimCurveS�	DefaultD@�B)@�KeyVerI��KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d|�
KeyValueFloatfb�rJAm�MAq�RA��WA��[Ae�]A
]A`�[AɚYAF-WA��TA�QA=�OA(sMAc�KA�JAbJA�PJAAKA$�LA��NA��QA��TAN�WA<�ZAe�]A�I^A��[ArWA��QArJAw1@A��3A!k%A��A39A��@G��@Eμ@��@b��@c��@c��@c��@�ӫ@x��@|��@�4A@a"A��6AĹDArJArJArJArJA��JA�vMA͋QAFYVA�8[A�_A�bA�dA�#cA�_A`cUA��BA�A)A^eA+��@�$�@��@5`�@G4�@�i�@
K�@��A�)Au�@A�URAA-\A�4]A��ZAb>VA(�OAsGAy�=AH�2AdH&A�/A�yA���@e��@���@�@!)�@n��@n��@�KeyAttrFlagsi!����-KeyAttrDataFloatf 



%KeyAttrRefCountia6AnimationCurveL���-SAnimCurveS�	DefaultD � ��KeyVerI��KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfb��g�޾������Aΐ�p�j��0U��[�^n�����k̕���:���m��#@���������K�������������K4������d��o���϶z��0U�_�EǓ�����@���g�����	�����3���a���������gi�P�S�։K�։K�ՉK�։K�NO���h��Š��v��u����G��H����g��g��g��g��4������P�������t����(��������p�UZ�\�S��tf����8F���$�����w
�]��`�1������������'��l���lw��ZY�=(V�/�]��k��D��ԋ����#a���ɹ�ͯ������S��QU��ð�ʙ����<��<���KeyAttrFlagsi!����-KeyAttrDataFloatf 



)KeyAttrRefCountia.#AnimationCurveL8o�-SAnimCurveS�	DefaultD �@�KeyVerI�� KeyTimelaH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dx"�
KeyValueFloatfa��.�@:��@���@4�@��@�3�@�1�@Ϋ�@,b�@Z�@%��@�l�@���@�Ţ@Ù@XX�@QQ�@�z�@_і@���@��@���@7:�@��@z��@�3�@&Z�@k��@���@�\�@�.�@~w@t,I@��@���?L�Q?���=�O���_z�`���������������jP��W�I���>X��?�@$L^@�	�@�.�@�.�@�.�@9�@�ߏ@�^�@�J�@�]�@iN�@^Ч@��@zY�@T��@#�A��#At8JA;�sA_�AEҞA"��Au8�AV�A�L�A�J�A�LjA�CA�}!A��AIY�@�)�@���@�A��
A7lAh@&A��6A�IA$f\AZfpA\\�A�z�A?X�A��Atw�A���A���A�"KeyAttrFlagsi!����"-KeyAttrDataFloatf 



!#KeyAttrRefCounti`�$AnimationCurveL��-SAnimCurveS�#	DefaultD�#KeyVerI��#%KeyTimelH�%;h��d�Ye$
KeyValueFloatfS�ѿS�ѿS�ѿ2$KeyAttrFlagsi!l$KeyAttrDataFloatf

�$KeyAttrRefCounti&AnimationCurveL��-SAnimCurveS�$	DefaultD%KeyVerI�M%%KeyTimelH�%;h��d�Ye�%
KeyValueFloatf�l��l��l��%KeyAttrFlagsi!�%KeyAttrDataFloatf

&KeyAttrRefCounti�'AnimationCurveL��-SAnimCurveSt&	DefaultD�&KeyVerI��&%KeyTimelH�%;h��d�Ye�&
KeyValueFloatf?X@?X@?X@"'KeyAttrFlagsi!\'KeyAttrDataFloatf

�'KeyAttrRefCounti�+AnimationCurveL(��-SAnimCurveS�'	DefaultD`���?(KeyVerI�-*KeyTimelA�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ0��OU�>��U(<
cV �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�cX+
KeyValueFloatfA�l�?�T�?;)�?$��?U�?F|�?��?k��?��?���?-ޭ?	d�?.�?Cْ?��?�?�?�?�?�?�?�C�?F��?�?瘰?���?b��?�\�?F|�?F|�?,�?t��?��?an�?g�?m�?�
�?��?��?��?��?��?��?���?�7�?U�?s�?��?��?G��?}t�?8��?{�?���?���?��?h�?�$�?��?K5�?�q�?���?��?_h�?Ѩ�?,��?8��?��?�+KeyAttrFlagsi����+KeyAttrDataFloatf

�+KeyAttrRefCountiA�0AnimationCurveL���-SAnimCurveSL,	DefaultD �� �d,KeyVerI��.UKeyTimelIH�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d01
KeyValueFloatfI$q
�0�I��X��i�����������W����R��b�������ն�[̩��Y��Mi��������������
Z��#ʡ�.���Q[��{����%���P����� �������� 3������$��;�������$��z�w
�C�
�u���g�2�Xu�������1&
�31
�+��-i�L6���a����
���������.	���
���Ý
��*�Z��70�6��e������B0KeyAttrFlagsi���|0KeyAttrDataFloatf

�0KeyAttrRefCountiI5AnimationCurveLX'�-SAnimCurveS1	DefaultD�jϿ$1KeyVerI�M3KeyTimelA�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�A��T0��OU(<
cV �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�cx4
KeyValueFloatfA�B{����݇�w��[f��¸{���G��R�YvZ�d��<���=)�<>ʋ�>���>���>1�>1�>1�>�n�>Fh�>[N>i�=�9���
�e�\�¸{�¸{�	{���x��en��]l��p�u�x�K���YŐ����c���Sž�Ծ�ݾ��߾clھ��Ͼ0��㘰�����zU9���}���{�L�~�ɔ��S���s������.O���8��%����:��������ľ�;վ2�ܾ��߾�4KeyAttrFlagsi����4KeyAttrDataFloatf

	5KeyAttrRefCountiA�6AnimationCurveL��-SAnimCurveSl5	DefaultD�5KeyVerI��5%KeyTimelH�%;h��d�Ye�5
KeyValueFloatf��"���"���"�6KeyAttrFlagsi!T6KeyAttrDataFloatf

�6KeyAttrRefCounti�;AnimationCurveLxD�-SAnimCurveS�6	DefaultD�6KeyVerI��9�KeyTimelQ�H�%;8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye;Q
KeyValueFloatfQD��C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C�:;KeyAttrFlagsi!t;KeyAttrDataFloatf

�;KeyAttrRefCountiQ&=AnimationCurveLx��-SAnimCurveS<	DefaultD<KeyVerI�U<%KeyTimelH�%;h��d�Ye�<
KeyValueFloatf�T@�T@�T@�<KeyAttrFlagsi!�<KeyAttrDataFloatf

=KeyAttrRefCounti�>AnimationCurveLؤ�-SAnimCurveS|=	DefaultD�=KeyVerI��=%KeyTimelH�%;h��d�Ye>
KeyValueFloatf�u@�u@�u@*>KeyAttrFlagsi!d>KeyAttrDataFloatf

�>KeyAttrRefCounti@AnimationCurveLX$�-SAnimCurveS�>	DefaultD?KeyVerI�E?%KeyTimelH�%;h��d�Yex?
KeyValueFloatfJL�AJL�AJL�A�?KeyAttrFlagsi!�?KeyAttrDataFloatf

	@KeyAttrRefCounti�AAnimationCurveL���-SAnimCurveSl@	DefaultD�@KeyVerI��@%KeyTimelH�%;h��d�Ye�@
KeyValueFloatfRhڿRhڿRhڿAKeyAttrFlagsi!TAKeyAttrDataFloatf

�AKeyAttrRefCounti�HAnimationCurveL���-SAnimCurveS�A	DefaultD�L�@�AKeyVerI�
F�KeyTimel~�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\K�]���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���bsL�c��Jc�ixcp�K�c�I-�c	dl��/d���]dG��dh��d��d�5��d�Ye,H
KeyValueFloatf~�g��@�[�@߻@��@g�3@Y�<@��}@~'�@�-�@��@���@߸�@;�@�W@@��G@oچ@R��@�[�@u�@s�@��@���@݌�@�׶@yo@�+�?���?-�?�).@Qq�@��@j
?d��?D�8@���@��>@��?�9�?C@�;@M�G@���?+�?x�C@�R@��@
��@NIA�+Ai<A�s_A/��A_�A˖Aa�A��A8��AQ�A��SA�?A۠$A�A��@[�@�ܨ@���@%��@EP�@�@na�@�@�@�.�@�+�@+)n@��\@�@�m�?�@@��k@�lE@�g?5�(�a�ο�R�T��\!r��f��7�>���?bBD?S?@�G�@Й�@#��@p.�@��@���@�֖@1��@Նn@B�5@ɺ7@�2@1�6@ԁk@���@���@f�@���@���@{A�@a"�@L�@	w1@i�G?I~�᭑�
�������/�k�W���1�˽	��D��F0�^��?ZHKeyAttrFlagsi!����H-KeyAttrDataFloatf 



�HKeyAttrRefCounti}6PAnimationCurveLH��-SAnimCurveS8I	DefaultD�o(�PIKeyVerI�aM�KeyTimel~�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\K�]���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���bsL�c��Jc�ixcp�K�c�I-�c	dl��/d���]dG��dh��d��d�5��d�Ye�O
KeyValueFloatf~�C�������� �������do���=������k	����d���j���L��%/�Z]l�j�����"��;��M���������g-�L2��8��rM�����p�=�*>�!�a$������.�����F7��>���I����z�bvz���b�#S�'|.���p����H$���m������ԯ�����S���}q��FD���>��7��q[�ʄ�q�x�pO=�_�Uz��9����v�����VԿ��X�G�P���8��צ�e���v��@��%���ɞ�d1�b{ҿ�\G>D��?-�K��H��KF������?��	@Do�@R��@RH�@wy@���?�Ɨ?�2@��V?4�w���
�ɮJ��(}��3���n�����u|��AU���H�����e&����� ��Zۺ�<��#�������o���S�'����*�����?�#�@K0A�=?A��lA[��A��A?�A��qAA9A���@"��?�OKeyAttrFlagsi!����O-KeyAttrDataFloatf 



)PKeyAttrRefCounti}�WAnimationCurveLX��-SAnimCurveS�P	DefaultD�{��PKeyVerI��T�KeyTimel~�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\K�]���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���bsL�c��Jc�ixcp�K�c�I-�c	dl��/d���]dG��dh��d��d�5��d�Ye�V
KeyValueFloatf~�����c�����8��]�J�?���?���>ZS���b�d�{3��+Y��%��4+��vo=�Gx>�1@��<?o��w~��������b���K���J��%>��������t*�PS$�7Ջ�x=d? ��@
�EA�ehA�}�Ai��Ag��A�+�A�;iA5R,A+)AH�3A�A&O�@�{k@�2
@N<�?��I?�tA?"ƃ?χ�?���S.W��х�����'���7聿��<?�����&�0����gO���b�;������&�v��^߽��@f�d@ə�?�,���5�$b%�S=���?�]�������|��^����@n=�@�'=@nc�?���?�BF>˰��$��<�(�4cA�����6@���?��@��3A�PvA&�A1Q�Aw�Ap��A�0�Au��A8$�A.��Ao�A��A�ݏA;#[A�A��@ާ�?�Ww�����0�>H�������Wm��^��P�>=��?>.~�рe�������>�WKeyAttrFlagsi!���LW-KeyAttrDataFloatf 



}WKeyAttrRefCounti}YAnimationCurveL���-SAnimCurveS�W	DefaultD�WKeyVerI�1X%KeyTimelH�%;h��d�YedX
KeyValueFloatf�� A�� A�� A�XKeyAttrFlagsi!�XKeyAttrDataFloatf

�XKeyAttrRefCounti�_AnimationCurveL���-SAnimCurveSXY	DefaultDpYKeyVerI�A]�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye@_�
KeyValueFloatfv�&��3��3$��3��3��3��3��3��3��3"��3��3��3��3��3��3��3��3��3��3��3��3 ��3
��3��3 ��3&��3��3��3��3 ��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3��3$��3$��3��3��3��3(��3 ��3(��30��3��3 ��3(��3��3���3��3(��3��3(��3��3��3��3 ��3��3(��3��3��3��3 ��3H��3 ��30��3��3��38��3��3��3 ��3��3��38��3���3��3@��3 ��3 ��3��3���3��3@��3��3��3��30��38��3 ��3��3(��3��3H��3��3j_KeyAttrFlagsi!�_KeyAttrDataFloatf

�_KeyAttrRefCountiv�fAnimationCurveL(��-SAnimCurveS4`	DefaultDL`KeyVerI�d�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yef�
KeyValueFloatfv�����`���@������������� ���@�������������`������`�������@����������`���P����������`�������P�������P���p���@���p���x���X���l���p�������X���ȋ������X���\���x���p���p������`���P����������Њ������@���p���0���@���P��� �������0������p���������������`�������`���H���@���`���\�����������\�������\����������@���9���b���J���@���x���h���@���8���X��� ������Y�������v�������b���0���X������� ���p��� �������P��� ���p���0���Њ����������Ћ�����������������`���@�����������`���FfKeyAttrFlagsi!�fKeyAttrDataFloatf

�fKeyAttrRefCountiv�pAnimationCurveL��-SAnimCurveSg	DefaultDLN@(gKeyVerI�l�KeyTimel��x�}8x�I�x�Jz�%,Ց���jݡ��Ƣ���D�gt�,��괇9r�{�8F�B�:u���]�4�"��5�&]�C�~��?Ne�7
e�d���������
F���ltV�pIE�f9r�>dC�m!�]�{���E\_��&�ř��~d�"}����ƽ���؝�n�2;Ѣ��:��J��Bm*��:։�kLai�%7�#� ;�Lǚl�s,����'Ӳn�`q��.n�J{�jb�m"�e�pK�k
�Z�k��wF�p���r3ن}�+m��7�N��V���8����Ж�ɳ�&9Xp��n�k=�)3��p�Ӝa��9i���<��o�رwշ�0ojE>�lلM��C�J�d��mv
 �yR�45���r�+��c�QE�����]1��@ͽG����$f_���[rI�G>��KŬ�f6H��s��qx��i�L����^�Ʊ���)���|]0�g����a�ȶ�X^�fN�7����N��ڦ�**}��C�\�4�^�;\̵����'�Tu�}+Y�bzV������/0m����d�������;1���������!�&���,v���{)�*L�~YՓQ�|�[�`織G�<��b~�Q����<Mm��<mѬP�ٜ�l
Fa�W�ALO��Wv:4���3�0g��~;�x��fg�W��@Q'�
��,�*����0l�c�e�{��l�d&����f��L��	<@yF�If��܆��?�^��z�1ۇe���ȫ��;b�h%���ۋ�M��bms�
�r��(�n��<��aJ�`�&�!�YG�a���aɕ~O�=�5��V���	�_���!�0�m'$ǭY�[��	��.ñ	���&��&}^����(ޞ��<֪p���3���hN���o�]�zCY�(S�1_=��+79E�C-��a��2����Ǽ?�œ�y���{5>Q�@�Y�~l�&��a�y�S?6�)���HReU���}��h̡�N���kZ����5.q|�%��*/U`Ò�O8��.�Mf.j��b%5����3��x�'�3�Vk�$��@}�,��k7�S'^|��6GbY����-��4Vޢ^î���.�w8�սpY��''x�`Ӎb	�ښ�ec���7�;�T�៶�8�%k�3����x)�dqk�:г��~6+�ܖ����D�Ix��G1VF�(q���kx��_������Xa]=����ɍ/�15]h���=
�o�
KeyValueFloatf��`�pB�`B��BB!�,B˰B-B��A���A8��A��A*}�A��A�H�AZT�Ag��AqaB|JBeZ*B��=BH/FB5<NBr*KB�)HB�=B��3B7�(B��B|wBK�A��AS�B�
B�B�B���A1��A���A��A.�;A��@
��>6���']���5�tw����C��cS@7A��nAua�AG`�AdBR�Bğ0B�7$B	B�+B�A��A�B�A��NA��
A��@���� �
ol�sE������w����p��ì�/F�u�����?��@'�A��-AR�)A��#A��sA��A'�AM�A�R
B�-B^�B��%B��B4�BƳ�A	��A�9�A���A���A��AB��A�w�A�AQ2�A�Aߢ�A0LAUA��	@���?���=*��������=�	����9�!�@Dx�@�E%A��pA1��A���ALl�A���A�n�A-+B��B��B7�)B��:B��BB�JB�_=BB=.BkB��&B!#&B�?%B�{)B�-B��'By�!B�B�Z	BJ�A�l�AX��Au�AZ�A��lAAQ̀@��D�Һ����`j>���!����5o�b�d?
/�@��A&gLA~l�A�c�A�,�A�t�ATZ�A�
�A� �A�d�A(��A3��A���Aڋ�A��A*�GA�A���@�A3?��k�U���U7E��I��錻����5^���ic5��uK�fwX�z�d��stª�{�`Z�¯r��9���lsv†%b�lN‘�1�J��
���
��Ap��x�h��-��YC����@Å&A}�A���A,?�AUvB�B�
-B��EB��SBhhB�}B��B�ÒB4��BV�BS��B�>�Bb��BU1�B|�B��B�%�B���B���B�xvB�x[B��LB��=BpKeyAttrFlagsi!���Up-KeyAttrDataFloatf 



�pKeyAttrRefCounti�lzAnimationCurveL�-SAnimCurveS�p	DefaultD�G1�qKeyVerI��u�KeyTimel��x�}8x�I�x�Jz�%,Ց���jݡ��Ƣ���D�gt�,��괇9r�{�8F�B�:u���]�4�"��5�&]�C�~��?Ne�7
e�d���������
F���ltV�pIE�f9r�>dC�m!�]�{���E\_��&�ř��~d�"}����ƽ���؝�n�2;Ѣ��:��J��Bm*��:։�kLai�%7�#� ;�Lǚl�s,����'Ӳn�`q��.n�J{�jb�m"�e�pK�k
�Z�k��wF�p���r3ن}�+m��7�N��V���8����Ж�ɳ�&9Xp��n�k=�)3��p�Ӝa��9i���<��o�رwշ�0ojE>�lلM��C�J�d��mv
 �yR�45���r�+��c�QE�����]1��@ͽG����$f_���[rI�G>��KŬ�f6H��s��qx��i�L����^�Ʊ���)���|]0�g����a�ȶ�X^�fN�7����N��ڦ�**}��C�\�4�^�;\̵����'�Tu�}+Y�bzV������/0m����d�������;1���������!�&���,v���{)�*L�~YՓQ�|�[�`織G�<��b~�Q����<Mm��<mѬP�ٜ�l
Fa�W�ALO��Wv:4���3�0g��~;�x��fg�W��@Q'�
��,�*����0l�c�e�{��l�d&����f��L��	<@yF�If��܆��?�^��z�1ۇe���ȫ��;b�h%���ۋ�M��bms�
�r��(�n��<��aJ�`�&�!�YG�a���aɕ~O�=�5��V���	�_���!�0�m'$ǭY�[��	��.ñ	���&��&}^����(ޞ��<֪p���3���hN���o�]�zCY�(S�1_=��+79E�C-��a��2����Ǽ?�œ�y���{5>Q�@�Y�~l�&��a�y�S?6�)���HReU���}��h̡�N���kZ����5.q|�%��*/U`Ò�O8��.�Mf.j��b%5����3��x�'�3�Vk�$��@}�,��k7�S'^|��6GbY����-��4Vޢ^î���.�w8�սpY��''x�`Ӎb	�ښ�ec���7�;�T�៶�8�%k�3����x)�dqk�:г��~6+�ܖ����D�Ix��G1VF�(q���kx��_������Xa]=����ɍ/�15]h���=
�y�
KeyValueFloatf��>
���6��� �����������;�������{Š�
��
�j��������������V��]j���;?�v0���tF=���@07AA��A�w�A��A�f�ALBm��A샶A��AM6A�D�@u�=���Ϛ�l!�dB��<���6������}���?�+�@�DHAe9�A��AS �A���A�%VA0Aɉ�@�t�?S���O�v�u��M��2J���u���O����������,�x`�#1!��H)���1��::���B��rK�*�O�'�9�)�����B�����������:Dp��:U�:Y�e�[�Z�����1����N����ž@�|�+��@�)�1�4��>��1C�w@G±�?��8��.�+�4��t3�"^.�6)�qX2˜�A´�;�m�3��+ƒ}!�t!�7�©��~:��pG����}���/��*��_����
F@�_AW�fAT�A���A��AL�B��+Bx�<BaNB�WBwg_B$T[B�;EBe,3B3!B�H
B���Ald�AadAp�&A
b�@uu���]����&�K�R��<����������}շ�����7/���;����J��U@.�A:wA��A��Afp�A���A:Q�A�qAx�
A�?�����W�b����k����!�*�I7�kH�m�P�Y=X¸f]�mj`›(b���c‡�d�ca��i^�Y���R���C�=�4†�*Š� ��	�&���¶��s�|+¾¡'���›������������]���;���i��������=ή��	��|�|���=�J����x����?;:�@��A��eAd�A���A�o�AW%B|_B��+B��2B�=B�KBNSBZB�eB��lBܐrB�dzBN�}Bp��B�yKeyAttrFlagsi!���.z-KeyAttrDataFloatf 



_zKeyAttrRefCounti�E�AnimationCurveL��-SAnimCurveS�z	DefaultD�8YL��zKeyVerI���KeyTimel��x�}8x�I�x�Jz�%,Ց���jݡ��Ƣ���D�gt�,��괇9r�{�8F�B�:u���]�4�"��5�&]�C�~��?Ne�7
e�d���������
F���ltV�pIE�f9r�>dC�m!�]�{���E\_��&�ř��~d�"}����ƽ���؝�n�2;Ѣ��:��J��Bm*��:։�kLai�%7�#� ;�Lǚl�s,����'Ӳn�`q��.n�J{�jb�m"�e�pK�k
�Z�k��wF�p���r3ن}�+m��7�N��V���8����Ж�ɳ�&9Xp��n�k=�)3��p�Ӝa��9i���<��o�رwշ�0ojE>�lلM��C�J�d��mv
 �yR�45���r�+��c�QE�����]1��@ͽG����$f_���[rI�G>��KŬ�f6H��s��qx��i�L����^�Ʊ���)���|]0�g����a�ȶ�X^�fN�7����N��ڦ�**}��C�\�4�^�;\̵����'�Tu�}+Y�bzV������/0m����d�������;1���������!�&���,v���{)�*L�~YՓQ�|�[�`織G�<��b~�Q����<Mm��<mѬP�ٜ�l
Fa�W�ALO��Wv:4���3�0g��~;�x��fg�W��@Q'�
��,�*����0l�c�e�{��l�d&����f��L��	<@yF�If��܆��?�^��z�1ۇe���ȫ��;b�h%���ۋ�M��bms�
�r��(�n��<��aJ�`�&�!�YG�a���aɕ~O�=�5��V���	�_���!�0�m'$ǭY�[��	��.ñ	���&��&}^����(ޞ��<֪p���3���hN���o�]�zCY�(S�1_=��+79E�C-��a��2����Ǽ?�œ�y���{5>Q�@�Y�~l�&��a�y�S?6�)���HReU���}��h̡�N���kZ����5.q|�%��*/U`Ò�O8��.�Mf.j��b%5����3��x�'�3�Vk�$��@}�,��k7�S'^|��6GbY����-��4Vޢ^î���.�w8�սpY��''x�`Ӎb	�ښ�ec���7�;�T�៶�8�%k�3����x)�dqk�:г��~6+�ܖ����D�Ix��G1VF�(q���kx��_������Xa]=����ɍ/�15]h���=
���
KeyValueFloatf����b†�eš�j��Nm���n >p�Z�p�F�t…Jz���q}�]�v��ax��}��%��Z��⟄�>��Ž��°������w������'������0��˜ƌ°��©*��a������Ԯ��3�»>}�y�z¾w�?8y��z�3}��\����k������]��~���͛«]�‘��¡���3�R�¹+��+����6�¶����›@���݄—����3����²Q~�/^x�T�p�
6l��<d��Z�vL��u<Ž�5��8/���/ªl-§�4�l�9��A���H���N���T�CU[–5a�5e��Hi�=a�6V�ĺK�7ŽU&‰T��iœ��*b������  ���L~��/&�e���n{@��&?/�?O��?�A#@�S@R�b@��?A	<��5������\?���}�~M���9����������’3	“�
�	��3���9�Y<#���(�V�2��;��#F�r_O���Y�_tdˆ�s�ZE�š��º9��o�
��ȋ��Y�~›�y�<�tŸet�ȳr�"�o�<\o��n…8o�w�n�cTm�+�j���^�[RW���P�ڜG�:�?”3�
�%�f�)'
�3�JH�F��(�49�FIB�zHK NS£�\�6�_�_�c��e�v�f�
a�AVX�xL��6º#*��m¾��~���C������d&l���'�����M$N��� ?��A@�Е@���@s{	A�WA�OaAu�<A
	AR��@0�>�P0�����p���8��N���p�v;������I��Ѳ�I�����������%�����2��)
�=��Aw�`B¯l���`�º+����������&8�2���a���N�>N	�%�£��<�t�&”�.‰�<�C�D‘~M½�KeyAttrFlagsi!����-KeyAttrDataFloatf 



8�KeyAttrRefCounti���AnimationCurveL+�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelH�%;h��d�Ye�
KeyValueFloatfM=�AM=�AM=�AI�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�-SAnimCurveS�	DefaultD+�KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv��4�`f5�@"6���5� U5��5� ?5���5�`�5�@E5���5�`A6�`�4�S5�@w5�`�5� 65�8>5���4�h�5���5��
5���5��5�p�4� �5���5���4���4�(i5�@�5�`�4��S6�� 5�`�5��-5��5�`>5���4��5�@I5��j5�P�4� 6���5�Bo5�4h5�]/5�8]5�t�5��95�0�4��o6��6��5�46�E5�0�6���3� �4���5���5�@�4�`�5�@5� ]4�@�5�` 5���5���4��$5�V5��5��[5��4��;6���4�@�4�@h5� 5�`�4�@p5��<5��L5��{5��5�@Z5��
6���4���5��T6��V5��y5���6���3�@{4���6�@�4���4�`i5�@�5���4��(6�b5��4���5��4��5��5�y4���4���5�@"5�@T5���5���5�`�5���5�%�KeyAttrFlagsi!_�KeyAttrDataFloatf

��KeyAttrRefCountivu�AnimationCurveL���-SAnimCurveS�	DefaultD�KeyVerI�ؐ�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yeג�
KeyValueFloatfv���;2��<2"<2�};2��:2�<2@ <2@1<2�;2@<2�8;2�>;2@`<2��;2��;2�K;2�v;2��:2@�;2 �:2 �;2��;2��:2�;2;2`4;2 �;2�p;2 �;2@�<2�:2p�:2�t;2P�;2t<2 Y;28<2@�;2(&;2P;2л:2�S;2@�;2��:2��:2�d<2�6;2�x<2��;2�|;2M;2��;2`�;2 <2 �;2�<2�;2�<2�:2��;2�H;2�;2�;2@�:2�;2 .=2@�:2@T<2��;2�;2@<2@U;2�h;2��;2�N<2`�:2P�<2t�:2��:2�g<2@�;2�u;2�;2G;2 �;2hj;2`�;2`?;2`9<2�R;28L:2,�;2@R;2�;2��;2��;2�A;2�<2`�;2`�;2`7;2�;2�:2e;2@�;2��;2@�;2�+;2��;2�<2@�;2c;2�;2�<2@1;2@�;2�:2�z;2�KeyAttrFlagsi!;�KeyAttrDataFloatf

h�KeyAttrRefCountivX�AnimationCurveL8�-SAnimCurveS˓	DefaultD@ͱE��KeyVerI�Ә�KeyTimel��x�}Xx�I�e�膩�q��T��+4&e�2i��Ե�N孅�En钊ή�����<�0]�s{��&��Q{�Ⱥ��P��}?�|�*)�(�h�������/Oێ�����U`����*W>��$����g�Q���y0��D��l`�.�̩ܳkȞN	�=s�+�INkɝA|�)^���F�X~�[�E=p��p�Ä?���kV��c�T������4k�Z�h�|��L0bM��f=9>�3~umW�oƱS�va���C�Ċ�2l{T،��6��4�Co0O���~�7�'q�=�>�]�%���?|���^^���mo�?+
Ұ�5����u�,<�u�9����3�)�y������uޮx�ܵKp���E��\|k�$�$��pӞ�x��w[�|tߵ�R�c-�5�Sq�S������]�vLz7������^�U_�Ϥ��Z+�g�����8G��O��|�������^���~���{���op��!��1}_I*x��lK>��_f�aِ�8��s��G�Xn 3���8>��3�>�'��b�ea6gq��Cz ��\��o���g�~�A���hT\N�j�����>���Zˍ��f�
������B����Q0֨�g��^���L� r��'��+-�w3�
�u.�dﺚP�+�?�=�ß����V�Ƚ�t/��)���ҷ��( �ؕ��?0�uqբ2���ĩ��ױ�<�3vz�%�<�W���:L���6���V��^�3l�M�*�,v�J��n�ilY�|Gp-}��2��*��b�WGvT���H�9L$�zf#���?�88��B�7��7E����+�o�|��B݁Mm�0?�x9V'�q�n���`�H.l�j�\�!�p��¹��1�����ܻ�؟Xq;�&���߅�|.���;8��N76-2cM��nY�[4��]�/H��`�Fx�K���|8�z߲h2û�n��7b�rW���d�I�4�PNHy؆5�uf�8Rຝ[�*ĶK��X]3��W�Tg��ծ�\��KV��y��\Q��"�Ď(��r�[�r~�AB8WzΓL��R�h'�;�؀
g�i��\'�{�x�p/}lAyigW$V����:̙q���Z�*�� �%˩SN�G��-�uR;���T1w�u��0�a���	��6xYf�M�H �t&ܢ���66���ֿ�´�ى�������
KeyValueFloatf��j�-�7�
�?Y���_��^k���=7���>���H��	h�Z*��g�h�͵l���g�Jw�ԇ|�u�]���p�_xw�;<�����L��������������;�=��5�����u\��/.���������>�������?w��h���i���������&����¸�”�3��u@��>N�o]��l��X}������ח�\ٟ�&p��/���Uл‰m�¨��»7������&��³���m��[����d�ׁ�)��X�����Õ���
�Bf����(:������¡���t���܃��kf�©n����6��V�ƒG���ݦ�0���א¬��§H�’Js³p]���L�7�4� �%�Nišf�0D������E�����´��k�
�m,�_�%���3�H�"����6��������˦��!x�:�;��<�Z�����Hl���y��P~����@���7���L(������U�?��g@�8�@��@�kQ@��P@�g?~^��$a�����S��K3��b����������>���?A��@�@���@Ѹ9?�o�?��Q6��M��h�ro��cq��`��Y$��x���޿�ĩ?ER�@��A�`AX]�A�;�A�e�APw�A��A`��@�A�@@A�@`�@ ��@��?�W��UC@2�b�p�&�S^Y�C���3���W��1�������ȃ��6������[#�`�����X�
���QB���d��؃�T�	�\�(	°���ľ��~��@T��x�������lX„"ˆ"��6¬];°01��� ����������{����`��(1�Rw�7%�?:@@��0k/�$a������/����I�>t�*ŽH=¸Qˆm\�\�h�vnYˆJ���U�МKeyAttrFlagsi!����-KeyAttrDataFloatf 



K�KeyAttrRefCounti�;�AnimationCurveL���-SAnimCurveS��	DefaultD�!�.�ƝKeyVerI����KeyTimel��x�}Xx�I�e�膩�q��T��+4&e�2i��Ե�N孅�En钊ή�����<�0]�s{��&��Q{�Ⱥ��P��}?�|�*)�(�h�������/Oێ�����U`����*W>��$����g�Q���y0��D��l`�.�̩ܳkȞN	�=s�+�INkɝA|�)^���F�X~�[�E=p��p�Ä?���kV��c�T������4k�Z�h�|��L0bM��f=9>�3~umW�oƱS�va���C�Ċ�2l{T،��6��4�Co0O���~�7�'q�=�>�]�%���?|���^^���mo�?+
Ұ�5����u�,<�u�9����3�)�y������uޮx�ܵKp���E��\|k�$�$��pӞ�x��w[�|tߵ�R�c-�5�Sq�S������]�vLz7������^�U_�Ϥ��Z+�g�����8G��O��|�������^���~���{���op��!��1}_I*x��lK>��_f�aِ�8��s��G�Xn 3���8>��3�>�'��b�ea6gq��Cz ��\��o���g�~�A���hT\N�j�����>���Zˍ��f�
������B����Q0֨�g��^���L� r��'��+-�w3�
�u.�dﺚP�+�?�=�ß����V�Ƚ�t/��)���ҷ��( �ؕ��?0�uqբ2���ĩ��ױ�<�3vz�%�<�W���:L���6���V��^�3l�M�*�,v�J��n�ilY�|Gp-}��2��*��b�WGvT���H�9L$�zf#���?�88��B�7��7E����+�o�|��B݁Mm�0?�x9V'�q�n���`�H.l�j�\�!�p��¹��1�����ܻ�؟Xq;�&���߅�|.���;8��N76-2cM��nY�[4��]�/H��`�Fx�K���|8�z߲h2û�n��7b�rW���d�I�4�PNHy؆5�uf�8Rຝ[�*ĶK��X]3��W�Tg��ծ�\��KV��y��\Q��"�Ď(��r�[�r~�AB8WzΓL��R�h'�;�؀
g�i��\'�{�x�p/}lAyigW$V����:̙q���Z�*�� �%˩SN�G��-�uR;���T1w�u��0�a���	��6xYf�M�H �t&ܢ���66���ֿ�´�ى�������
KeyValueFloatf��w�(;s�o��-k�Rd�XE\��)��}����O��N����$��@������K�������C��O���wÆ�>�m���K��|6��A�M��\��"Z��,T��\B�|B[�t/��d��q���A��„�0�dL�#DZ�Ih��_{��6��꺚���w���ƨŠ��¦��¢ث�V���<&��y������1T�–���î�Y�‘���7��E���L��7F��d��>���r8��~ڭ�����n�ž,��(1�¹$�’֨�§��V���[���ŭ�������:��S�£c� l��Fn���h���\�´J���2�����}���H��²I����Oz��h���#��7;��Tk�‹���{������HT�‡Ŏ�=��u���@��y��HA��5N�ƒG��7l����€���EW��!�������������$�g�7{T��A���-�h�6��]H�tOZ“�i���y�Oo�j�`¢{R�d�<¨�'�ȫ°h��u�����̬��@�[��$������*���|������@�@��@՜�&ϭ��m��������`´�7´J��y\�yr��Nv��c�2�Y��J�О:�f*4���'����C1������(���7���<��J���$�`������� ����!���������O��`�R�.#���\��=���pQ����œ��L1�|�C�V���n„9v´
e��&J�78��&��l	� ����۰�8ψ�0L�� ��`������@`<��,���F�����0����F��I������.��U+�89��A€�>��X0�@�™�	�����e����f��xm��@���P���
!��Hr��fM�����Ȳ��88�����9���x��
��6�@���e(³�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



.�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD�?d!@��KeyVerI����KeyTimel��x�}Xx�I�e�膩�q��T��+4&e�2i��Ե�N孅�En钊ή�����<�0]�s{��&��Q{�Ⱥ��P��}?�|�*)�(�h�������/Oێ�����U`����*W>��$����g�Q���y0��D��l`�.�̩ܳkȞN	�=s�+�INkɝA|�)^���F�X~�[�E=p��p�Ä?���kV��c�T������4k�Z�h�|��L0bM��f=9>�3~umW�oƱS�va���C�Ċ�2l{T،��6��4�Co0O���~�7�'q�=�>�]�%���?|���^^���mo�?+
Ұ�5����u�,<�u�9����3�)�y������uޮx�ܵKp���E��\|k�$�$��pӞ�x��w[�|tߵ�R�c-�5�Sq�S������]�vLz7������^�U_�Ϥ��Z+�g�����8G��O��|�������^���~���{���op��!��1}_I*x��lK>��_f�aِ�8��s��G�Xn 3���8>��3�>�'��b�ea6gq��Cz ��\��o���g�~�A���hT\N�j�����>���Zˍ��f�
������B����Q0֨�g��^���L� r��'��+-�w3�
�u.�dﺚP�+�?�=�ß����V�Ƚ�t/��)���ҷ��( �ؕ��?0�uqբ2���ĩ��ױ�<�3vz�%�<�W���:L���6���V��^�3l�M�*�,v�J��n�ilY�|Gp-}��2��*��b�WGvT���H�9L$�zf#���?�88��B�7��7E����+�o�|��B݁Mm�0?�x9V'�q�n���`�H.l�j�\�!�p��¹��1�����ܻ�؟Xq;�&���߅�|.���;8��N76-2cM��nY�[4��]�/H��`�Fx�K���|8�z߲h2û�n��7b�rW���d�I�4�PNHy؆5�uf�8Rຝ[�*ĶK��X]3��W�Tg��ծ�\��KV��y��\Q��"�Ď(��r�[�r~�AB8WzΓL��R�h'�;�؀
g�i��\'�{�x�p/}lAyigW$V����:̙q���Z�*�� �%˩SN�G��-�uR;���T1w�u��0�a���	��6xYf�M�H �t&ܢ���66���ֿ�´�ى����h��
KeyValueFloatf���!Ai��@05�@���@t��@���@tVA�-A�OZA��A�̆A�݈A���A���A�S�A�ObAi�!A�g�@��{@P:�?|Ŀ��������Կ2����t�H��=P�2@�7�@�!A`�<A��AiQ�A�úA���A!��A��B�i	B�B�RB�r-B��@BN�XB�eB��sB���BR��B~�B�j�BN�B�T�Bnh�Bv�B�/�BN��BB�B@��B-�B���B�C�	C?
C�C�C>�Cu�C�P$C�(C<6%C_e"C��C%�C�|C��C�GCqC9{C�nC˪�B�s�BDN�BtN�B̆�B��B���BR�BI��B�İBmt�Bc��BʕB��B��B�OwB�_BbfOB!�;B��(B��B�YBn�B׶B/�(B�s<BPnXB�EjB��B�xB�}nBGmgBlbZB�JBe;B�E2B9:$B�2B`�B�B�w�A`�A�B4�
B?1BIB�aB��
Bx�BH�A`J�AP؟A8,�Ap�[A�� Aq?�@`��@�D@	?S���ο,��@�5@ϱ@�
A(qKA���A1p�A0U�A\��A9V�AMz�AH�Bp�B��B��A��A�A�A芃A�6YAYlA�o�@ӟ�?yſ���@��������ӈ�4h�(Z�@�M���T���_�&E��X��3���r���K@H��@�0�@V�A`#5A��RA1��A�(�A���A��A�%B��A�=�A!�A��A�x�A6�mA�HA�4A���@�?��$�గ��;��@?`��@`�%A���A(��A��A(��AB�oB4�B �B/��A���A���A�U�A��A0j�A}~�A�
rA@5A�S*APTA�pA�0!A~�!A�0#AȞ9A�,VA�t�A D�A�v�A"�A:3�A��A�u�A��KeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCounti���AnimationCurveLx��-SAnimCurveSt�	DefaultD��KeyVerI�ű%KeyTimelH�%;h��d�Ye��
KeyValueFloatf��A��A��A"�KeyAttrFlagsi!\�KeyAttrDataFloatf

��KeyAttrRefCountir�AnimationCurveL��-SAnimCurveS�	DefaultD�KeyVerI�ն�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeԸ�
KeyValueFloatfv��9�@V�PY[���F�`�1��L��_M�`+V���U�"N��
F��qX� �;�`�D���G��!I��@��;>���6��K��M�`,F� �:���>���:��9��
H�X�R��
I���Q�@u8�x5�GK�aD�zL��CA�@�L���C� �5� 9�`W0���=�@cG���A�ЌC���E�h�D���D�hE��~F�~�C��A�h{S���Q�@�I�0�\�K7���a�Z&��I8��G�@i���<��'?���=��^4��X� �7�X�N�x9��:A��D�~L��F��N$���Y�81�К/���3���H�@�D��?� 4�@�0���G��pE�@F���J��G���K�`�J�@�I��%F�@�Z��F"�@�8���P���G���D� NC��_C���G��:�G7�`�K���D�@#G�Y:��0E�jD��<��M�@�=��N��;?��J��=���F���KeyAttrFlagsi!8�KeyAttrDataFloatf

e�KeyAttrRefCountivN�AnimationCurveL(��-SAnimCurveSȹ	DefaultD�KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv��1B1Z�0(�0��0%�0_�0��0��0��0��0�'0	1׵0��0�0��0|E0�1��/˽0��0��0 +1��0��0@��0���0�'0r�/�%B1@Q�0@�&11�0�$�0��0�P�0ܸ0.�0���0��0�q�0`0�k%11��0���0Е.ڰ0E15�0�AC1��1y�0�q1���0
12�/f�0@�1-"1�{�0��0!�0��!1!�0��0�1X�0��00v0m�0��0��0��/�mD1�3ە0В0ڕ0��0`�0,1)�0�0N�0�0@�1��003o���0�0ث�F)1��0��0@E�0�0��0��0K�0��1��0�U0���0<�0��0
�0G10�01X0@#�0@h�0�0r�01@�0ڿKeyAttrFlagsi!�KeyAttrDataFloatf

A�KeyAttrRefCountiv��AnimationCurveL���-SAnimCurveS��	DefaultD@o���KeyVerI����KeyTimel}�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I�+n�I0�O�I��1J�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M���M�y$Nd�[RN�Y=�N�N`��NW�7O\�eO�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d��w�d�Ye��
KeyValueFloatf}�
x+��1��/L��H�7�׽E�#�a�ȾG����2���>Ⱦ�骾�?=��Ϳ�s�qK��gS���=�}$4�Y���j���%�VM���t���X?~>�?p�?a��?{�?��?H�>IK>zJ%>L�%=����S��5/���l���ܼ�7>÷�>�j�����!l��T��	�����g"��4N�!sz����R
��"q��"�~��5)�����ۿ?���|=�U�>bo�?:%@�"F@��'@L}@/�$@OFr@�%�@�ұ@�$�@���@'��@�ʰ@��@��k@B�@2
�?�w�?�Dl?��n?/�[?T-?O�>��<l~����v?"�?�?@��@q�#@�C#@�� @��@8��?���>u�"�GE7�^R���I�=F��B�{�Zڲ�,㰾ǖ��fҕ�(p%�-\\=�*�>o�v?�G�?PP�?���?���?}?�S,?�`?�`�?E�=?�g�<F�>���ӿywӿ�2�sS#�a�ӿ�=G��KeyAttrFlagsi!���X�-KeyAttrDataFloatf 



��KeyAttrRefCounti|��AnimationCurveL���-SAnimCurveS��	DefaultD��Y@�KeyVerI�
��KeyTimel}�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I�+n�I0�O�I��1J�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M���M�y$Nd�[RN�Y=�N�N`��NW�7O\�eO�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d��w�d�Ye(�
KeyValueFloatf}�,��@�1@m�?s��?/"�>2vn?z�!@�;@?�Z@h�p@�|@�38@�"�@�A�3YAvalA
�aA*fOAwH.A�}�@|
�@�~�@>�M@�7{>��j�>�h��‘1���濖xp=;�3�FჿG��mv�2A��
�Hhѿ��ݿ�뿢��39��қR��ɾE5�=Mf#?��?}�>��M�>��&d�6���5z���YA�%�>ۙ�?���?��@ڃ?����{��bb�X��R�����������"���>�U�W��I]���P���2�
��2S�� @^���
@��@-F�@�}M@�|@��?�8�>��>���>�!��g�f�#�J��r��
n��tD�{G�,N���6��Aۿ�D�L�?�܂@{$c@�A@H�m���H���}�y�u�+���d���k=���?��� ��*��:���������8n������31�F"ֿ���Q̻�oS>}]�?4�@ �
A$�-AhnMA�A��@V�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCounti|&�AnimationCurveLȟ�-SAnimCurveS4�	DefaultD`��@L�KeyVerI�U��KeyTimel}�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I�+n�I0�O�I��1J�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M���M�y$Nd�[RN�Y=�N�N`��NW�7O\�eO�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d��w�d�Yep�
KeyValueFloatf}��F@j~<@j��@���@��@xe@nA@��?�>�?l�*@�%?@���?B�!��x���A)�\* �Ƨ��\(���%�����MU�?��@0Ai>�@l��@���@ϔ�@�c�@ȝ
A�YA�7�A`�A���A�вAe�A�G�AN��AӁA��gACUA}�A���A��A;�A�}B�#BE�)Br,8B�wBB�EB��EB�<B��'BbB2��Ak
�A�BrAu��@����I���6~W�*CL�"��2HS�p�6���1��x������YD�Nl�Pp��{�����Y�������������ؓ��]w��@��j�Wj��cF=�#�=q	P�T-�=F!`�+8տd���=�J�4�ÿ����n�ԁ���\O��>�PZ@ʎ�@�A�E=Al�7AwV/AN,A.N!A؎A���@���@ю�@��@��A���@d^�?h��_,���>�����������ǿ�l�?�_g?DF�@���@�ݼ@��KeyAttrFlagsi!�����-KeyAttrDataFloatf 



�KeyAttrRefCounti|��AnimationCurveL�D�-SAnimCurveS|�	DefaultD��KeyVerI���%KeyTimelH�%;h��d�Ye�
KeyValueFloatf��@��@��@*�KeyAttrFlagsi!d�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLhl�-SAnimCurveS��	DefaultD�KeyVerI�E�%KeyTimelH�%;h��d�Yex�
KeyValueFloatf�RH��RH��RH���KeyAttrFlagsi!��KeyAttrDataFloatf

	�KeyAttrRefCounti��AnimationCurveL�U�-SAnimCurveSl�	DefaultD��KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatfrhN�rhN�rhN��KeyAttrFlagsi!T�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD��@��KeyVerI�m�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d<��
KeyValueFloatfj�m_�@Uth@�a@��?A��>ۈ���<kN�>��A?���?I��?��$@�L@�q@�(�@H�@"%�@�-�@o%�@a�|@M�V@�+@��?��?<�?ۈ��o�Y��—>ć�?�)�?	%	@�"@W��?'s�?S��?R5�?D�1?�$�>�U>�m�ۈ��ۈ��ۈ��ۈ��T���1�=�1�>�L0?�ԉ?�|�?���?	%	@*@Q}/@�-E@cJ[@��p@p�@X�@���@3��@�ܙ@��@'B�@��@��c@Zo5@d�@e��?�%?�>������:�>ܟ�?��>@m�@k*�@hoA	WA7A��A�rAU��@��@CQ�@y�x@�B@@��@�d@��#@�2@�1F@�|_@Y)}@�7�@8D�@�U�@��@+��@m��@~uAΒ
A'A��A��Aj�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountiiV�AnimationCurveL���-SAnimCurveSH�	DefaultD�b�(�`�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj�E��T�g�A7x�����p
���B������}���u��m���c���Z�p�R��L�~YG��E�n�E��I��aP���X��ob���l�Rw����p
���������b�z���p���l��em�v�o���r���v��G{����uց�V�����p
��p
��p
��p
��������f;�����>�z��u�n�p���l�G�h�p�c�l�^�@�Y���T�e�O���K��KH�s�E�ɑD���D�:G��bM�QJV��`�iIl��Sw����������������o���Bp���V��s:�ߦ�)��V���������M�t[�LI'�V�;���N���]�<bf�#Og��Je��va�H\�CU��SM�mvD�'�:��0��v&�8
����4�������~������������KeyAttrFlagsi!����-KeyAttrDataFloatf 



I�KeyAttrRefCountii��AnimationCurveL�[�-SAnimCurveS��	DefaultD�aB���KeyVerI�5�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfj�
�‡��<����q���:��fS���ŵ����1������2(��c������-��E�
����f���µ��ʈ����>��l��7����$��fS��vd�������G@��_������iC���������H���z�����Wk��j���fS��fS��fS��fS���ij�����ż��F������or��^���_�����W��������³��F��B��0kG��0µ����³
������������y��F���H������3��4���������,f'�?(9‡^E�lmI¨�E�2=��`0��!¾����X���������������������~B�a��aa��S�ϩ�p<"’�)��z1��8�m�?�]HF��BI��BI�2�KeyAttrFlagsi!���|�-KeyAttrDataFloatf 



��KeyAttrRefCountii2�AnimationCurveLؘ�-SAnimCurveS�	DefaultD(�KeyVerI�a�%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�'E@�'E@�'E@��KeyAttrFlagsi!��KeyAttrDataFloatf

%�KeyAttrRefCounti�AnimationCurveLxS�-SAnimCurveS��	DefaultD��KeyVerI�q��KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yep��
KeyValueFloatfv��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ�WJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiv��AnimationCurveL��-SAnimCurveSd�	DefaultD|�KeyVerI�M��KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeL��
KeyValueFloatfv�zH�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�zH�{H�zH�{H�{H�{H�{H�{H�{H�zH�zH�zH�{H�zH�{H�{H�zH�zH�zH�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�zH�zH�{H�{H�{H�{H�zH�zH�zH�{H�zH�{H�zH�{H�{H�{H�{H�{H�zH�{H�{H�{H�zH�{H�{H�zH�{H�{H�{H�zH�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�zH�{H�{H�zH�zH�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�zH�zH�{H�{H�{H�{H�{H�{H�{H�v�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiv:�AnimationCurveL�^�-SAnimCurveS@�	DefaultD�;@X�KeyVerI�!��KeyTimel����C�|b.E(<
cV4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�ZX)�g[�~�[�&B\P�{\�#��\���2]�ll`0�/�`(z�aЏ=7b ���b��a
KeyValueFloatfT�/�@�E�@^-�@�P�@�3�@{�@�ˡ@��@�K�@P�@�@�;�@!h�@���@�ơ@��@�С@���@It�@Z�@&�@��KeyAttrFlagsi����KeyAttrDataFloatf

-�KeyAttrRefCounti�AnimationCurveL�U�-SAnimCurveS��	DefaultD`��?��KeyVerI���KeyTimel\�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�ʣqR��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c@}
KeyValueFloatf\p��?mDZ?�	�?G~�?Oا?
Φ?� �?�?�U�?���?c̬?%��?&��?3�?,��?��?�?rִ?��?x��?���?N��?�׬?���?��?Φ?��?c�?���?���?�?p��?�̱?�m�?wî?��?�!�?<v�?��?I&�?�	�?���?��?��?�'�?���?�?/S�?�?�O�?]�?8�?X��?w��?V5�?�G�?X%�?"��?��?�Q�?�0�?qƦ?{u�?G��?Î�?|��?@�?j��?oȷ?I@�?Q��?#�?٧�?
�?�S�?	ѫ?]ө?N��?9��?��?��?��?�Q�?���?���?
\�?P��?��?�i�?>��?���?��?nKeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCounti[ZAnimationCurveLh&�-SAnimCurveSL	DefaultD���A�dKeyVerI��]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�
�
KeyValueFloatfj��F�h�W�����]����������,��,��}���������������¯�	Œ_
��1��~�H�
�ć�������7���p��ْ�������Ƭ�RY��dj��r��^��G������|g��[���O���Dz��%������^���������������������Wx���{��M��y������t��^�����������������“a£�
�`!
�F�����y���r
��µw‘*���P��t�������b������<��Y���L���%���d�„�&��8�Z�D���H�sWE�0<��=/²4 ����k���2���{��5�����i�����������s��+f
�ٌ�4��� ��(«�0�
8¼5?�}�E���H���H��
KeyAttrFlagsi!���-KeyAttrDataFloatf 



MKeyAttrRefCountii�AnimationCurveL��-SAnimCurveS�	DefaultD�KeyVerI�%KeyTimelH�%;h��d�Ye4
KeyValueFloatf�@�@�@^KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL(��-SAnimCurveS(
	DefaultD@
KeyVerI��KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�
KeyValueFloatfv��'�;�'���'��'�
�'���'��'�.�'��'�/�'�-�'��'��'��'��'�1�'��'�#�'���'��'�0�'��'�0�'���'�S�'�0�'���'��'��'��'��'���'��'���'�0�'�.�'��'��'��'��'��'�.�'��'���'��'��'���'��'��'�.�'�.�'�.�'���'��'���'���'���'��'�r�'�q�'���'���'�0�'���'���'�6�'�
�'�	�'��'�1�'��'�O�'���'��'�W�'�	�'��'��'��'�
�'���'�/�'��'���'�N�'��'���'���'�5�'�S�'��'��'���'�	�'���'���'�,�'��'��'�/�'��'��'��'���'�M�'��'��'��'���'�m�'���'�.�'�0�'��'��'���'�2�'���'�:KeyAttrFlagsi!tKeyAttrDataFloatf

�KeyAttrRefCountiv�AnimationCurveL�-�-SAnimCurveS	DefaultDKeyVerI���KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfv�W�5j��5bL�5�>�5�;�5�U�5nS�5GK�5YQ�5YV�5�7�5A�5�U�5G�5V�5�S�5d�52k�5�9�5yR�5HP�5Q�5�H�5N�5�Y�5BN�5�@�5�Y�5lL�5� �5�q�5,b�5�U�5�I�5�J�5QI�5�R�5�J�5E�5yF�5�F�5II�5�C�5$W�5�U�5J�5�L�5G<�5J�5�X�5�L�5�Q�5{H�5P�5%L�5�T�52B�5�O�5�A�5$G�5�H�5N�5M�5G�5�O�58h�5	N�5$'�5�]�5�1�5�=�5�H�5s��5�T�5�5tC�5�a�5m=�5�C�5�H�5N�5<K�5qG�5tJ�5F�5pI�5�L�5-J�5\F�5S8�5H��5�W�5G�5�7�5Lr�5�\�5�/�5�N�5O�5�N�5|Q�5H�5�N�5�I�5EW�5fG�5�P�5�D�5<M�5�W�5�R�5qO�5�I�5�K�5�N�5MN�5�J�5(J�5KeyAttrFlagsi!PKeyAttrDataFloatf

}KeyAttrRefCountiv� AnimationCurveL���-SAnimCurveS�	DefaultD�+a
@�KeyVerI�)KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfb�]	S@nSn@>��@�?�@�
�@�G�@o��@�_�@\��@<J�@�ʋ@X��@�x@��j@�E_@CW@Q5S@��T@ہ[@��f@�t@yĂ@$��@?~�@/�@�G�@�w�@�q�@&q�@-la@d	S@�TV@�E_@�ql@oo|@k�@\��@)��@�,�@Ţ�@�G�@G�@�G�@�G�@��@�,�@��@dى@oo|@��g@��X@c	S@d	S@^	S@^	S@8�T@��\@��h@)@x@¶�@�y�@˴�@~��@���@�+�@Ţ�@�.�@�b�@j�@
�v@Cc@�TV@�QS@��Y@_f@I�w@&��@\��@���@��@빣@�&�@*�@BJ�@��@,L�@&c�@��@|B�@2@�@��@y�}@ds@n]i@�_@�W@`	S@]	S@ KeyAttrFlagsi!���P -KeyAttrDataFloatf 



� KeyAttrRefCountia�&AnimationCurveL���-SAnimCurveS� 	DefaultD L��?� KeyVerI�-$KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�%�
KeyValueFloatfb�a�
?%�<?0|r?ec�?��?6T�?��?�ܣ?��?��?��?2+i?��N?;�6?��"?��?<?m�?�p?�/?TiH?�d?+��?J�?��?7T�?�3�?���?�f`?�&?h�
?΁?��"?ӫ9?OEU?�Ks?���?Mq�?�ʡ?~�?5T�?4T�?4T�?3T�?�	�?�ʡ?��?Tl}?QEU?�n1?!�?h�
?j�
?f�
?b�
?�?�L?�o3?TN?'�k?���?T-�?�?�?���?h$�?~�?�Z�?�r�?�Ks?A�K?��)?��?3O?�?�0/?�M?g�n?���?�=�?	k�?�_�?��?|g�?�+�?���?�Ӝ?�?x��?�R�?s[{?��i?��W?�E?6[4?��#?��?U�
?V�
?
&KeyAttrFlagsi!���T&-KeyAttrDataFloatf 



�&KeyAttrRefCountia�,AnimationCurveLȱ�-SAnimCurveS�&	DefaultD�V�1�'KeyVerI�1*KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�+�
KeyValueFloatfb��
���s��艵��I��������������������
��Ѽ�F���0צ�O���%���3���)���7���������}0������Ď���5��
-����������#������E���
��gb��%�������}���ߵ�oA��K������\�������������������������������}������s���
���
���
���
��b���Ԓ����f������7��:�������O��#����\��~*���5���ߵ�����”��gb��*>������ʙ�
�����oA��r�� ,������҅������q����������XU������T���2���ױ�Ui��(����;)������
���
��,KeyAttrFlagsi!���X,-KeyAttrDataFloatf 



�,KeyAttrRefCountia.AnimationCurveL���-SAnimCurveS�,	DefaultD-KeyVerI�=-%KeyTimelH�%;h��d�Yep-
KeyValueFloatf}��@}��@}��@�-KeyAttrFlagsi!�-KeyAttrDataFloatf

.KeyAttrRefCounti�/AnimationCurveL���-SAnimCurveSd.	DefaultD|.KeyVerI��.%KeyTimelH�%;h��d�Ye�.
KeyValueFloatf�¿��¿��¿�/KeyAttrFlagsi!L/KeyAttrDataFloatf

y/KeyAttrRefCounti�0AnimationCurveL��-SAnimCurveS�/	DefaultD�/KeyVerI�-0%KeyTimelH�%;h��d�Ye`0
KeyValueFloatf)��)��)���0KeyAttrFlagsi!�0KeyAttrDataFloatf

�0KeyAttrRefCountiV7AnimationCurveL���-SAnimCurveST1	DefaultD��@l1KeyVerI��4UKeyTimeliHH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�6�
KeyValueFloatfi�P]@d��?��?)j?�� ?��?u�?K.%?��I?w}w?Gq�?�Y�?"��?(��?N2�?��@�6@��@/��?�O�?w@�?
��?;�?KDo?�	6?��?��>l?5�\?��?{��?�<�?쫎?��?��r?t<Y?��??a�(?�?̯?��?��?��?o?l�?%B$?�>?؆[?�y?
`�?{��?Y��?f'�?.�?~�?
�?5*�?1��?8�@�3@�@��@�@��?{S�?�Ȼ?j�?�x?��@?%�?{w�>?��>)�%?�À?zO�?e@��+@�_M@>e@r�m@w�g@jtX@[aB@��(@z8@J��?���?>�?��?Z��?ٮ�?�i�?�v�?�a�?�@@O�@?�(@n�5@�C@��O@�:\@f�g@xm@xm@�6KeyAttrFlagsi!���7-KeyAttrDataFloatf 



I7KeyAttrRefCountih�=AnimationCurveL(��-SAnimCurveS�7	DefaultD�����7KeyVerI�-;UKeyTimeliHH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�<�
KeyValueFloatfi��ަ�����!*��q>��$��������`�������w�����Qƽ�r�������\����������	y���<���s��⳼�_�������:��������S���.[�����g����D��f������dn���G��3&������A��A���������������������ҽ�������������g�������������A���旴�D����)��2;������Ҧ�7����i��[��O���+����i������a{�����������]	����������=�����#h��P�3'H�F�N�\j`���y��Nj��v������ٵ���*g���λ�Uɸ�����6�����+��vϚ����pH��@r���w��h���Z��MN��H��H�&=KeyAttrFlagsi!���p=-KeyAttrDataFloatf 



�=KeyAttrRefCountihDAnimationCurveLh �-SAnimCurveS>	DefaultD`N�@�>KeyVerI��A]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d\C�
KeyValueFloatfj�sz�,���/�������ol��A�������3�������-��A"�����������������w���e�0�­��7����W��P����x������N��A�����������	������p���n��������{�����ʽ���������������A���A���(���A��������0��ܨ��?��K���W-���4��p���VS��Ӗ���b��k^���1�����g~Ÿ!�Z��9�������L���K���;%���}���W��bE���ף�;����-��]����h���v��r�	�t��2l0�/�<�v�@�N$=�4µ7'µK°��e	��r��m}���#����������������1����–�	�&0�~�·� ��i(���/��7�;�=¨�@¨�@ŠCKeyAttrFlagsi!����C-KeyAttrDataFloatf 



DKeyAttrRefCountii�EAnimationCurveL��-SAnimCurveShD	DefaultD�DKeyVerI��D%KeyTimelH�%;h��d�Ye�D
KeyValueFloatf��@��@��@EKeyAttrFlagsi!PEKeyAttrDataFloatf

}EKeyAttrRefCountifLAnimationCurveL���-SAnimCurveS�E	DefaultD�EKeyVerI��I�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�K�
KeyValueFloatfv��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������KKeyAttrFlagsi!,LKeyAttrDataFloatf

YLKeyAttrRefCountivSAnimationCurveLH��-SAnimCurveS�L	DefaultD�LKeyVerI��P�KeyTimels�H�%;��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�R�
KeyValueFloatfs���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d��RKeyAttrFlagsi!�RKeyAttrDataFloatf

SKeyAttrRefCountis
YAnimationCurveL�K�-SAnimCurveStS	DefaultD�P7�?�SKeyVerI��V
KeyTimel`H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R�F�S��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�cTX�
KeyValueFloatf`����?0�?���?&!�?�a�?���?*��?���?�!�?	��?R
�?pC�?Et�?���?��?���?`��?@C�?�:�?��?���?��?���?h��?:�?�:�?�O�?h|�?���?;��?��?��?���?���?F�?=Q�?t�?�`�?���?G"�?^v�?L�?L��?D9�?���?�s�?���?�i�?���?E7�?ݑ�?���?R�?�X�?<�?Zo�?\�?��?P$�?g@�?�>�?��?~K�?\�?5�?�z�?S(�?
��?���?3��?
��?���?��? ��?V�?��?��?���?��?���?���?���?�"�?�o�?���?�y�?!=�?N��?��?V��?���?x��?�i�?���?�<�?���?�XKeyAttrFlagsi!����X-KeyAttrDataFloatf 



�XKeyAttrRefCounti_&_AnimationCurveL8{�-SAnimCurveS`Y	DefaultD ��?xYKeyVerI��\-KeyTimeld H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�cp^�
KeyValueFloatfd��]?�|T?�J?m�@?�:?e8?�A9?�T;?h>?*B?�$G?�rL?�-Q?|�T?
�W?N�Y?��Z?yZ?��X?	V?�^R?�M?;CG?\A?�;?�	7?�6?�e;?�/C?+J?N!L?�qK?��I?��G?�WE?�B?ʬ>?ur;?��9?�x8?A�7?��8?"�;?8m??s�C?p.F?�H?ӕJ?iL?oN?<�P?��R?��T?m�V?�CX?ݑY?wZ?��Z?,�Y?�W?�ZS?��N?)�H?��B?^O=?è9?��7?1z7?߬:?.GB?O�M?/=Z?��e?�8o?�{t?rv?�t?�|p?�i?�^a?HvX?w�O?�J?\�F?LUF?(=G?��H?w0K?�N?EQ?��T?�Y?}]?c�a?kGf?�i?m?M"p?�r?e
t?�^KeyAttrFlagsi!����^-KeyAttrDataFloatf 



_KeyAttrRefCountic�eAnimationCurveLP�-SAnimCurveS|_	DefaultD``�A��_KeyVerI�c]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�d�
KeyValueFloatfj��������z����ݶ�K���QD��_+��p���zY��i���?����P��PP†�	š�
���J����>R�����������
�����f������Ƚ��p.���)�������)���8���i��Q\��s������
���&��5��]���]���a���`����:������ܸ�����P������`�������(��^����f���5«¹��1�
�"�
¢`��;’��7�
��������W���;��&���L#���\��a���^��@���3��+���~G�ya'ª�9�4�E�l�I��GF�f=�=�/�õ �H����>��la�����=���������I�����_�
„�†�©a!�/U)�\41�p�8§@�F�F���I���I�eKeyAttrFlagsi!���Le-KeyAttrDataFloatf 



}eKeyAttrRefCountiigAnimationCurveLh�-SAnimCurveS�e	DefaultD�eKeyVerI�1f%KeyTimelH�%;h��d�Yedf
KeyValueFloatf�XE@�XE@�XE@�fKeyAttrFlagsi!�fKeyAttrDataFloatf

�fKeyAttrRefCounti�mAnimationCurveL8i�-SAnimCurveSXg	DefaultDpgKeyVerI�Ak�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye@m�
KeyValueFloatfv�*&�2�Ά2�<�2@��2 ׄ2ƈ2��2͊2�Պ2\�2`^�2>�2hc�2���2`s�2�5�2���2q�2�w�2̆2D҇2Dr�2���2�؅2�2�2���2(��2�ω2�Ĉ2tt�2X�2���2�J�2�҇2 (�2��2�w�2 χ2`��2�܆2h��2h܇2���2�o�2lK�2$��2(�2�"�2fχ2O��2�"�24`�2 ��2�Ј2��20g�20�2�6�2�2�F�2\݇2
>�2�s�2 	�2��2u�2���2��2�̇2؜�2�a�2�ˇ2��2�l�2�}2��2P�2�ń2([�2�<�2pׇ2���2���2 V�2���2��2h��2P;�2�S�2��Y2@��2�,�23�28m�2�Ԁ2���2���2�Y�2�χ2 ��2 ��2�t�2��2`؄2R�2@��2���2�&�2@G�2�LJ2���2�'�2�(�2���2Ɉ2��2@��2 ��2jmKeyAttrFlagsi!�mKeyAttrDataFloatf

�mKeyAttrRefCountiv�tAnimationCurveL�l�-SAnimCurveS4n	DefaultDLnKeyVerI�r�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Yet�
KeyValueFloatfv�t�ܵ�ܵ,�ܵ��ܵ^�ܵ��ܵ(�ܵ��ܵ��ܵ��ܵ��ܵ�ܵ��ܵD�ܵ��ܵ��ܵ��ܵ��ܵ=�ܵx�ܵ0�ܵ��ܵ�ܵ��ܵ��ܵ��ܵl�ܵA�ܵm�ܵ��ܵ��ܵP�ܵ��ܵ
�ܵ��ܵC�ܵ��ܵ��ܵ#�ܵ,�ܵ��ܵ2�ܵl�ܵ��ܵ��ܵ��ܵ��ܵ�ܵ��ܵ�ܵ��ܵs�ܵ}�ܵ`�ܵ(�ܵ��ܵ��ܵ��ܵ��ܵ��ܵ��ܵ!�ܵ	�ܵ��ܵ��ܵ��ܵ��ܵ�ݵ��ܵ�ܵ0�ܵ��ܵw�ܵi�ܵݵ^�ܵ��ܵ��ܵ�ܵ�ܵ<�ܵ�ܵ8�ܵ��ܵ�ܵ��ܵU�ܵ"�ܵ�ܵSNݵ�ܵ'�ܵ��ܵ��ܵ��ܵ��ܵW�ܵ!�ܵ6�ܵ��ܵ��ܵ�ܵ(�ܵ<�ܵ�ܵJ�ܵY�ܵr�ܵ��ܵ�ܵ
�ܵ��ܵ��ܵ2�ܵT�ܵ�ܵ��ܵW�ܵFtKeyAttrFlagsi!�tKeyAttrDataFloatf

�tKeyAttrRefCountiv�zAnimationCurveL�I�-SAnimCurveSu	DefaultD����?(uKeyVerI�YxKeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dz�
KeyValueFloatfb��?U)�?Y��?�V�?�n�?��?���?6l�?�e�?�i�?�1�?�y�?��?q��?pƯ?��?g��?���?8�?W�?�/�?F��?���?�5�?��?��?��?�"�?��?yg�?�?9��?zƯ?���?n��?���?���?���?���?oE�?��?��?���?��?��?���?�
�?`H�?k��?�!�?�ժ?�?�?�?�?��?5��?��?C��?/��?x��?G�?lr�?J��?���?kE�?ʬ�?�?���?���?�˲?/��?�?q�?7&�?�4�?���?}��?�e�?���?���?c��?F�?�E�?kR�?l[�?i��?@��?���?�b�?��?���?��?�i�?|8�?���?	�?�?6zKeyAttrFlagsi!����z-KeyAttrDataFloatf 



�zKeyAttrRefCountia��AnimationCurveLh��-SAnimCurveS{	DefaultD�U$�?,{KeyVerI�M~
KeyTimel`H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatf`��"�>ւ�>�N?3-?��@?�oH?m
F?T??��5?�l)?�?xY
?\��> 
�>��>���>�s�>�1�>���>�N�>���>?�Z?�+?T�:?�oH?.#E?�+?6�?���>�"�>e9�>��>�
�>Ŀ?*�?�"?�M1?�O=?`qE?�oH?�oH?�oH?�G?�O=?��,?�?Ŀ?=�>^��>�"�>�"�>�"�>:��>���>xa�>���>ٱ?]�?/�-?�:?��C?=H?eqE?0�9?J�'?$�?�D�>��>;9�>C��>�-�>m��>���>>m?�"?@53?�@?�mG?�3H?�gF?��B?�%>?�8?��0?��(?"6 ?~?��
?I�?0��>]�>���>ԝ�>�"�>�"�>"�KeyAttrFlagsi!���l�-KeyAttrDataFloatf 



��KeyAttrRefCounti_��AnimationCurveLJ�-SAnimCurveS�	DefaultD��1��KeyVerI�I�KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfb�gp���#������ٝ���=��[��Sv��,B���u���������@�������ʚ��*E���Y��!��� ����������������c����������[��H����s�������Ҙ�gp��ѐ�*E���Ǡ�CT������v��i��3���d���[��[��[��[��F��3����V���"��CT��nU������gp��fp��gp��gp���̏��T��,���N��
����`��G���d������3��d�������Fz������P���&��ѐ������$��Pe���������v��D�������@����+��������0���\��P����_�����{E��δ�bC��̥�����ڱ��Z\��gp��gp��&�KeyAttrFlagsi!���p�-KeyAttrDataFloatf 



��KeyAttrRefCountia&�AnimationCurveLH��-SAnimCurveS�	DefaultD�KeyVerI�U�%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�F�@�F�@�F�@��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLx��-SAnimCurveS|�	DefaultD��KeyVerI�U��KeyTimelt�H�%;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeL��
KeyValueFloatft��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A�v�KeyAttrFlagsi!��KeyAttrDataFloatf

ݎKeyAttrRefCountitb�AnimationCurveL�<�-SAnimCurveS@�	DefaultDX�KeyVerI���%KeyTimelH�%;h��d�Yeď
KeyValueFloatf�΁?�΁?�΁?�KeyAttrFlagsi!(�KeyAttrDataFloatf

U�KeyAttrRefCountiƖAnimationCurveLW�-SAnimCurveS��	DefaultD`���АKeyVerI�A�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfj�k$5�P���$��J���l��������������?���^pɿ�j濶F�����S�gi)��F1�K�4���3��-��Z"�+����H��Ŀ�F������Qe��"���;�Կ�p��S���
�)������QῈ�̿�`������`��������������������������!��nͤ�6c���<Կ��쿹�S���=�����b�d�"���(�`.�P^2���5��b7���7�,�5�	1��'��.���������̿���������.��D�)0���)ÿ����#���F��d�Iy�+��i�z��Jl���W���?��'�/O�o���6��������R�Ti�f���x�*�'���3��f@�7�L�3DY��7e��p���z�������>�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountii*�AnimationCurveL�E�-SAnimCurveS�	DefaultD���?4�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dt��
KeyValueFloatfj��6�=[p?ﺋ?N��?���?��@]@���?y�?1��?f��?�.�?�??�[?�o�>��9>w"�=��>��>��>�/?��u?�̠?���?in�?��@�@@
�?�@�?CIn?��A?[ZK?�e?P��?"��?Ʌ�?P��?
n�?YK�?�@��@��@��@��@@�{�?��?<��?G�?��?rtf?��A?�&?�0?F��>0
�>I�>U=1>���=���=�V=�Bx=\E�=��A>���>��?(�e?ph�?�̾?l��?���?L�@��@�c�?���?@��?&�>���^�I�V���X{��J?����Q��,ɾt��=D�?
j�?�m�?)"�?���?���?=�?���?�ԗ?��~?-H?h�?6ٛ>��O=�S�!�0h5���q�����a~��a~����KeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCountii��AnimationCurveLhr�-SAnimCurveS��	DefaultD�׵A���KeyVerI�	�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dآ�
KeyValueFloatfj���
¢N���<��H*�����+�����\��� ��YX���V��d����>����z+����Y�
�I��~,	�XAµ6�����׹��>ǿ��ۭ�+���������G���������}���U�����������Cg���ִ�\��Ϥ����+��+��+��+��ų��}4���!��[��N���^1��%�����������{���3���0&����,�•�	��G„�
�b������&�‰"��9v������H��\7����������������4���������zI#‚m6���C��G�k�C�.�9��+�ڑ–�
��t�����L����c�����u����^��<������q˜��e��Rg���$‚L-��r5�/,=�CMD��G��G��KeyAttrFlagsi!���P�-KeyAttrDataFloatf 



��KeyAttrRefCountii�AnimationCurveL�!�-SAnimCurveS�	DefaultD��KeyVerI�5�%KeyTimelH�%;h��d�Yeh�
KeyValueFloatf���@���@���@��KeyAttrFlagsi!̤KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��-SAnimCurveS\�	DefaultDt�KeyVerI�E��KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeD��
KeyValueFloatfv�_��9��9���9י�9��9���9s��9-��9��9���9���9.��9\��9���9Y��9���9[��9{��9���9W��9���9Y��9A��9���9��9C��9v��9��9U��9L��9g��9���9���9��9s��9���9S��9Z��9���9���9
��9^��9X��99��9X��9Z��99��9\��9Y��9W��9y��9y��9O��9N��9��9t��9[��9���9)��9���9Y��9���9��9ۙ�9��9��9;��9���9���9Q��9��9v��9���9z��9ՙ�9���9��9#��9ę�9V��9���9=��9D��9e��98��9Y��99��9Y��9<��9���93��9���9ؙ�9M��9���9���90��9W��9Y��9[��9z��96��9���9!��9���9Y��9ؙ�9{��9Y��96��97��9;��9��9[��9X��9���9���9y��9n�KeyAttrFlagsi!��KeyAttrDataFloatf

իKeyAttrRefCountiv��AnimationCurveLH��-SAnimCurveS8�	DefaultDP�KeyVerI�!��KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye ��
KeyValueFloatfv�u>.�u>.�u>.�v>.�v>.�u>.�u>.�u>.�u>.�u>.�v>.�v>.�u>.�v>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�v>.�v>.�u>.�u>.�u>.�v>.�v>.�u>.�u>.�u>.�v>.�v>.�u>.�u>.�v>.�u>.�u>.�v>.�u>.�v>.�v>.�u>.�u>.�u>.�v>.�u>.�u>.�u>.�v>.�u>.�v>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�v>.�u>.�v>.�u>.�u>.�v>.�v>.�u>.�v>.�v>.�v>.�v>.�u>.�u>.�u>.�v>.�v>.�u>.�v>.�u>.�v>.�v>.�u>.�v>.�v>.�u>.�u>.�v>.�u>.�u>.�u>.�u>.�v>.�u>.�u>.�v>.�u>.�u>.�v>.�u>.�u>.�u>.�v>.�u>.�v>.�u>.�v>.�u>.�u>.�J�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiv��AnimationCurveLh��-SAnimCurveS�	DefaultD��u�,�KeyVerI�E�KeyTimel�H�%;� Ā;����;@K8<8��K=
�B���C�T�C�DX�vD���D�|b.EP�%�E�y��EHwp�F��3�F�t�TG@�G�q~H��AhH8o�H�y$N�Y=�N`��NW�7O�Շ�OHL�R�ʣqRк;Vx9�W�6�W��
KeyValueFloatf|��K��OJ�q�H�B�F��G�O�H�x�G�2�E�ػD�D;E���G�oK�F�M�z�N��M���L��zK�q�I�OqH��G�7�E���D���E�7�G���I���K��zK�[K��XH��6G�=�E��KeyAttrFlagsi!���`�-KeyAttrDataFloatf 



��KeyAttrRefCountiʺAnimationCurveL���-SAnimCurveS��	DefaultD��׿�KeyVerI����KeyTimelP�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQHL�R0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�ZX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]@���^�^�^���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b�M
KeyValueFloatfP@����`��-ƭ����������U��rz����������.����������&���43��}C��Lٷ��V���8��	�����������š�{뚾����T���_��:ﶾ�յ�M���B> ������Ȥ�v젾Cn������Sv������9��������갾�IJ��1���e���$���M��Mڷ��Ʋ�$,������?M������蛾�>��)����~��(���Rn��u���b9ǾYlʾH-ʾ�~Ǿߪ�������2��q���:ߪ��������D��K������糾����B^�������¾�ľ�OƾB�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountiO.�AnimationCurveL��-SAnimCurveS �	DefaultD@�D�8�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dx��
KeyValueFloatfj��P%�*"�@���@���+��
���5���t���c��������S����‡Z�@ ��s#ˆ8%�]e$½� �hk�km��6	�r���1���8������u��W���>�������¾��D����T'��g���zi���������O����������������k���[��	��4��S����������d�
���u�…���k����!«5$���%�9U&�\�%�F	#¤3�Q��F«�³����
��^�����Uc��w�� ���	9��X#¬;:�0�M�M[š�_��j[�q*Q�n�B���1�.� �-,���&���u���j��x��MR����s~���¡�!;*·�2�_�;—VD�y�L�"�T­\€x_€x_¦�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



!�KeyAttrRefCountii��AnimationCurveL8�-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimelH�%;h��d�Ye�
KeyValueFloatf�_Y@�_Y@�_Y@2�KeyAttrFlagsi!l�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLxw�-SAnimCurveS��	DefaultD�KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv�
���Dv��vv����������|��삣��{��nt��܁��և���w��̐�������΅��4�����ϋ��ׅ���|��v���3�������s���*���܆���}��I������W�����������i��������������=�������=���$�������|�����������ȉ�������������6���K���J���Ɗ��R���X���t��ؖ��pp��v�������
����e������񏣵R���!���q|��ʑ���������M���Έ��������������u��Z�����������򅣵k������7���z���������ᇣ������������ڐ�����_����y��Ң��b���\�������戣�����a�����������ڕ��{�����������N������Ј��e����Ɔ��ޒ��t��燣���������KeyAttrFlagsi!H�KeyAttrDataFloatf

u�KeyAttrRefCountiv^�AnimationCurveL�R�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv�rW�4j��4"~�4�_�4�k�43��4���4?j�4{�4B��4�X�4Rq�4��4�r�41��4���4�S�4��4n�4I��4���4.��4rt�4�~�4���4щ�4tc�4qy�4|�4NR�4���4���4�|�4w�4ft�4�v�4;��4z�4�s�4�t�4y�4�w�4�a�4���4E��4xx�4�}�4�G�4�u�4��4|��4~��4�P�4��4�u�4-��40%�4SU�4,n�4s�4�p�4|o�4���4�l�4��4��4o��4�=�4:��4�L�4"i�4x�47��4�~�4�
�4��4u�4�f�4Ym�4�n�4���4�}�4�y�4u��4�f�4�s�4���4�n�4�s�4���4F{�4��4|�4���4�q�4���4V�4U|�4}�4�{�4`~�4�w�4t�4m�4K��4�m�4���4�R�4@��4λ�4���4���4nc�4t��4��4�<�4R��4�V�4��KeyAttrFlagsi!$�KeyAttrDataFloatf

Q�KeyAttrRefCountiv2�AnimationCurveL���-SAnimCurveS��	DefaultD@C���KeyVerI����KeyTimel^�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c|��
KeyValueFloatf^x:
�ڤ�E�&�nJ5���?���C�ŵB��2?��9��^3�;,�GP$�`�����s-�"�$.
��
��N��������#�s�+���4���<���C�A8B�;�4���!��>�
����X-�#�����y4'��/���7��>�&bB���C���C��AC��>�[5��*����\X�*��
�
�9
���������*��	%��-��5��<���A���C�+bB�I<��{2��4'�����(�̻�,<
�V
�}���C���%��/���8�F�?��rC���C��B��A��y>��6;��b7�c3�Dn.�*�)�j$�"C��&�u/�)x���*
���KeyAttrFlagsi!�����-KeyAttrDataFloatf 



%�KeyAttrRefCounti]��AnimationCurveL�m�-SAnimCurveS��	DefaultD �4ƿ��KeyVerI����KeyTimel]�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦP��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�cD��
KeyValueFloatf]t٧1�\W���������S$���ڨ�����8��`욾�ؑ����<
z��9e�;R�JmB�Z07�8�1���3��D=��~L��"`�{�v��h���z��(ݞ��ڨ�:h���i���s��_E�ۧ1�s,6�MmB��uT��Oj����}ٌ�U���ș��I����ڨ��ڨ�ا�ʙ��*?��N���Oj�s�M��~9��1�ܧ1�>4���>�&�O�ژd�	|�q�B ��4���8r��1���9����睾Ӟ�������b���G��,6�b2�җ:�m&L��c�Y�~��ٌ�������n��T���Y���Ф��8������h��hv��Z���2���Qz��l�3�]�?P��;C�P57�+�1�r�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCounti\��AnimationCurveLؕ�-SAnimCurveSP�	DefaultD@��6�h�KeyVerI���KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dH��
KeyValueFloatfb�z���'���5�������
�p‡e�K���B���������L����T������1���'ȶ�T��N��7�������4��V]��ߖ��P��
¦������;��Y��z���L�����������o���`���Q���6���¡��
�
�
�
�n~���!n��m����o��>���M��z���{���{���z���]��I���I����R�����]$��Je��
h�,�h�¡��1��s���`���M��)���L��Bݶ�����������-����Q��������‘�•��^8���h��v\�"���A`��O��k���*���e��o����@���/������z���z���v�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountiav�AnimationCurveLh?�-SAnimCurveST�	DefaultDl�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatfg�@g�@g�@�KeyAttrFlagsi!<�KeyAttrDataFloatf

i�KeyAttrRefCounti��AnimationCurveLh��-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelH�%;h��d�YeP�
KeyValueFloatfn�H�n�H�n�H�z�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountif�AnimationCurveLȍ�-SAnimCurveSD�	DefaultD\�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�P@�P@�P@��KeyAttrFlagsi!,�KeyAttrDataFloatf

Y�KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS��	DefaultD`l�"���KeyVerI�E�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfj�c��D����;��_)��	M��.��'8�(�Q�%yx��*��@���������������	�7�/���1�X
��2�o���L6������~ݏ���c��.�H@)��za�BU��f���p���
�������N��r٥������c���G��5���.��.��.��.�)-1�#�B��"a�)#�������-���'���p���,������Wm������"9����Z�n(�e���P�Z��q���_������3R��~���2�t��H��V.��H+��-M��������?I��*�WNG�`�[���b��k]���O��"<�9%�)�
�$��H�������o�����׃���������u���qe��=�q��7{%��f1�04=�I�H��S�#�]�#b�#b�B�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCountii.�AnimationCurveLH��-SAnimCurveS �	DefaultD���@8�KeyVerI���]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dx��
KeyValueFloatfj�n>�@1��@s�A��;A�uRA�t[Af�XA�QA��EAaX7AQs'A �A%�A�N�@���@к�@ߚ�@C��@;�@�x�@��A�ZA�'A��9A��KA�t[Aj�]AJ�MA\6A�!A�A��A��A�R&Ab�/Aڋ9A.�CA�LAjeTA �YA�t[A�t[A�t[A�t[As�ZA��UAˏMA�BA��6A��*A_�A�A��A	A79A$��@���@�_�@���@��@R�@�;�@�Ҽ@���@�@7�@��AS"$A�<7A'HA�-UA��\A,�\A;.QA�R5AʛA��@�Q^@���?�N־��m��V澨=?��@K�@�6�@c�A�A(A��)A>b&AWs AtAh�
A(A��@3��@
L�@�ۈ@�DP@�@ ǡ?�m�>���-i�-i���KeyAttrFlagsi!�����-KeyAttrDataFloatf 



!�KeyAttrRefCountii��AnimationCurveL���-SAnimCurveS��	DefaultD�̃:���KeyVerI�
�]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���
KeyValueFloatfj�f�������[��.x�v�L�4�;�g�@�;oO��e�������Bʞ��%�� %������������!s��~����^��Q��<���p��R'{�ggY�4�;�S37��VS�@~�P���b��T������Lύ��{����x���f�QV��oH��'?�4�;�4�;�4�;�4�;�f�<��kE��kT�R�g�s\}�v���dT��b��Zɡ�d/��;��o���o$������������������m��������������*������l��wB���i`���G��9��I9�QO��؁�����Jn������.��$�$»x“Q�ce˜����(���(���1�������B���4��K͖�����L���e��������������3��?���#�‘7��[����L�L�
�KeyAttrFlagsi!���T�-KeyAttrDataFloatf 



��KeyAttrRefCountii~�AnimationCurveLX�-SAnimCurveS��	DefaultD�KeyVerI�1�KeyTimelbH�%;
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfb�ݳ~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@
�KeyAttrFlagsi!D�KeyAttrDataFloatf

q�KeyAttrRefCountibZAnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI���KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfv�T6�;S6�;R6�;[6�;\6�;K6�;S6�;R6�;J6�;c6�;[6�;R6�;T6�;K6�;S6�;K6�;T6�;T6�;T6�;S6�;K6�;S6�;T6�;W6�;T6�;T6�;S6�;K6�;S6�;R6�;T6�;T6�;[6�;K6�;[6�;\6�;S6�;S6�;T6�;\6�;L6�;T6�;S6�;K6�;S6�;S6�;S6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;C6�;S6�;T6�;Z6�;U6�;d6�;S6�;b6�;S6�;\6�;K6�;S6�;S6�;S6�;T6�;N6�;S6�;[6�;T6�;S6�;d6�;Z6�;M6�;H6�;\6�;S6�;[6�;T6�;T6�;T6�;S6�;S6�;K6�;S6�;S6�;K6�;R6�;[6�;[6�;R6�;U6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;\6�;L6�;[6�;S6�;[6�;T6�;S6�;R6�;[6�;S6�;S6�;S6�;S6�;[6�;K6�;S6�;�KeyAttrFlagsi! KeyAttrDataFloatf

MKeyAttrRefCountivFAnimationCurveL�0�-SAnimCurveS�	DefaultD�KeyVerI��	KeyTimelbH�%;
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��
KeyValueFloatfb�{��={��={��=u��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��=u��={��={��={��={��={��={��={��=u��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��=�KeyAttrFlagsi!KeyAttrDataFloatf

9KeyAttrRefCountib�AnimationCurveLh��-SAnimCurveS�	DefaultD`����KeyVerI�UKeyTimeliHH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfi�ӕ�����������/����e��t����+������w��r������Z������������������P��4��|_�����/���%��;������e���?������6&������� ���������^��lG��B�������Bc����������e���e���e���e��)�������Á�����:����������� �!���������x��L�#�U���L�������U����c���F��[^����������+������tu�������|��	���ҍ��G1���������������Y+��BT��6��������2�����+���������������Z���Hj��=e�����������Nl��������Qh��ՠ��H��������>���>��KeyAttrFlagsi!���`-KeyAttrDataFloatf 



�KeyAttrRefCountih�AnimationCurveL��-SAnimCurveS�	DefaultD���KeyVerI�uUKeyTimeliHH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�Ih\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d@�
KeyValueFloatfi�wW-�'("�^;�����]��)��Z��2D����1�
�.���~������#�MY(���+��E-�$�,���)��T%��f����t�o�	��d�)���|��۾�B���� ��%��$�*�!����J�t��
��(�Ap��v��*��*��+������7��x�N6�VT����/L#��%���&��'�=�(�x�)���*���+�+�,��-�Qy-���-��k-�BM,���(��o#����&[�E�
�:���,�P�������������"��(���(�=|1�9�7�P79�
�6�;1�"�)�/ ���5@��<�|-����������~3��x��F�̀�:	������!��a&�+���/���3�"�7�F9�F9�nKeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCountihZAnimationCurveL�;�-SAnimCurveSL	DefaultD�B�C�dKeyVerI��]KeyTimeljPH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d��
KeyValueFloatfj�b�����.���e��{�������/c��_���pd������Fb��Aq�B
�6��!��A��J‹�¹�±��v�¦��������=������YE��S/�����wV��z�����������[��]���6���'f������Y��yn�������������������<���������������f��S����7��z�§4������*��y������[��oG���r=�״������գ��r�����������O���H�����w4��W6��w‹}3��eF�[OS�4rW�mS�ގI��;��+��¬��/�r���O2��dc���r����®;
�AP���$��l,�~�4’4=��LE�^�L¢T�SW�SW��KeyAttrFlagsi!���-KeyAttrDataFloatf 



MKeyAttrRefCountii� AnimationCurveL�_�-SAnimCurveS�	DefaultD�KeyVerI� %KeyTimelH�%;h��d�Ye4 
KeyValueFloatf��2@��2@��2@^ KeyAttrFlagsi!� KeyAttrDataFloatf

� KeyAttrRefCounti�'AnimationCurveLh�-SAnimCurveS(!	DefaultD@!KeyVerI�%�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye'�
KeyValueFloatfv�U5,�.�+�v,�FB,��[,�b1,�1,��',�=&,�6$��F,��+,��=,�jA,��,�,���+���+�|�,��,�g,�Y#,��L,��9,��7,��@,�:A,�p,�T=,��J,�P(,��>,��,,��=,�b=,��<,��<,�X=,��>,��=,��:,�L9,��<,��<,�p=,�	?,�=,��;,�(=,�@,�,:,��:,�wD,�r;,��8,��&,��L,�e,��b,��U$�28,��$��J,��E,�&E,��),�=,��,���+��t,��=,��=,�@S,��:,�f�$��,�f0,�q�,�`i,�V>,��<,�$@,�M,��R,�;,��=,��7,�;B,�;',��',�G�+��,�SG,��D,�P;,��:,�)F,��5,��:,�E;,�Q;,�>=,��C,��L,��A$�f<,�N<,�K,��?,�2,��A$�M-,�HF,�;1,�,/,��=,��=,�?B,�:'KeyAttrFlagsi!t'KeyAttrDataFloatf

�'KeyAttrRefCountiv�.AnimationCurveL���-SAnimCurveS(	DefaultD(KeyVerI��+�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�-�
KeyValueFloatfv�������������u������,���~���R���^������������������񕬶v�������I���p���0������
���Д�����󔬶��������������:�������_�������ۘ��
���-������������������ٔ������s���r�������>���X���ڕ�����[���d�������Ώ��䜬�'�������ӌ��[�������E���S���'������E���ȕ������X����������������K���"�������}���	|������Y���Д������4�������;���C���*���K���u���Õ��Q���+����������̚�����|������j�������-�������F�������?���/���͓��\��������������.���|���/���=���f�������뒬�f�������ӗ��.KeyAttrFlagsi!P.KeyAttrDataFloatf

}.KeyAttrRefCountiv�4AnimationCurveLe�-SAnimCurveS�.	DefaultD`t��.KeyVerI�)2KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�3�
KeyValueFloatfb��x����׷�G���ؼ��<^�����rY��?U��q���wN���O�������l��)���'���]x�(j{�����n��q۞��ү�(���l��\G��<^���������6���Ȋ��x���~�(������#��PR��z���u��q���1��<^��<^��<^��<^��`���r���D��HT��#��x2��s���x��x��x��x���{��Ѕ��c���4���ϳ��������������7���%��1������i���RR���̠������~�[�x�ܳ��!ݏ����-���z��Y������+=��3��V���C��c������v�����[�����Q����ҧ��8������-���*���x��x�4KeyAttrFlagsi!���P4-KeyAttrDataFloatf 



�4KeyAttrRefCountia�:AnimationCurveLH��-SAnimCurveS�4	DefaultD@��?�4KeyVerI�-8KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�9�
KeyValueFloatfb��f?/O?��k><�ֽ­��S澮�־k���7�Z���t��s�=��>�l�>]� ?��B?��Z?o>f?�a?��M?%-?I�?��>��=J�������R�/
Ѿ7˰�~�>�V<?�f?�	]?��B?��?�z�>ff>���<̘"�˚���ӾS�S�S�S澴�ݾʚ���ͽ�� >�z�>R�)?�U?�f?�f?�f?�f?g0a?�J?3�&?O"�>��>")�=�/�6J��@�Ⱦ�
�|Ӿ�1�����Qf>�6�>��6?z	]?��e?�S?}�-?'��>�؁>q��<�;��z��5�߾m���9پ�6þ����W�y�����UZ���d=�
/>�^�>a��>ob?��$?�@?��Z?��f?��f?
:KeyAttrFlagsi!���T:-KeyAttrDataFloatf 



�:KeyAttrRefCountia�@AnimationCurveL��-SAnimCurveS�:	DefaultD ��"�;KeyVerI�1>KeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d�?�
KeyValueFloatfb������=��i�j܈�B���֝����d���w��� ���Uw��a��JL���8�+�(�l��
�y�Ι#�J3�EG�+^�$�v�X·������֝�[O�������xZ�<�+����d�*�(�z2;��{Q�e�i�����~#���P��K����֝��֝��֝��֝�h˜��P�������q��{Q���4�����������������m��%��)6��K���c��|�����B��FQ�����K���H����݄�f�i�!�I�Sg.�d�G2�0� �F�2�6�J��9f�����ӗ���p����٨��H��Z�������M��"؋�j���e8~��?p���a�IS���D��6��)��p�������@KeyAttrFlagsi!���X@-KeyAttrDataFloatf 



�@KeyAttrRefCountiaBAnimationCurveL؀�-SAnimCurveS�@	DefaultDAKeyVerI�=A%KeyTimelH�%;h��d�YepA
KeyValueFloatf�(�?�(�?�(�?�AKeyAttrFlagsi!�AKeyAttrDataFloatf

BKeyAttrRefCounti�CAnimationCurveLD�-SAnimCurveSdB	DefaultD|BKeyVerI��B%KeyTimelH�%;h��d�Ye�B
KeyValueFloatf�o���o���o��CKeyAttrFlagsi!LCKeyAttrDataFloatf

yCKeyAttrRefCounti�DAnimationCurveL�w�-SAnimCurveS�C	DefaultD�CKeyVerI�-D%KeyTimelH�%;h��d�Ye`D
KeyValueFloatfg#@g#@g#@�DKeyAttrFlagsi!�DKeyAttrDataFloatf

�DKeyAttrRefCounti�JAnimationCurveLx��-SAnimCurveSTE	DefaultD���+@lEKeyVerI��HKeyTimelaH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d@J�
KeyValueFloatfa�e�]A>cXAASA�dNAAKArJA�rJA�qKA �LA�NA�VQA�SAj�VA�YA�+[AN�\A�{]A2]A��[AM�YA/1WAQTA|eQAM�NA�%LArJAӕJA"�NA��TAc�ZAe�]A��\A�+[A��XAv�UAU�RA� PAʰMAc�KA
�JArJArJArJArJAjKJAc�KA�sNA�QAv�UAʚYA|i\Ae�]Ae�]Ae�]A��]A%�]A'�]A�^A��]A�]AkW[A�RXAixSALLA�s@A,�,A�tAf�@���@�6�@Ut�@).�@ё@"�@���@?�A�9A��-A�>AܺHA��IA�XGA��BA�B<A�)4Aƽ*AXF AA
A9N	AC��@}��@9J�@1ʹ@-��@�g�@o��@o��@nJKeyAttrFlagsi!����J-KeyAttrDataFloatf 



�JKeyAttrRefCounti`�PAnimationCurveL؏�-SAnimCurveSLK	DefaultD�
@dKKeyVerI��NKeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dDP�
KeyValueFloatfb��0U@67�@1ʴ@��@���@�gA�o�@g*�@�I�@�@n��@v�@/o�@���@1t@�g_@�U@aY@p�j@Um�@f��@wʪ@7g�@�.�@K��@�gA
$�@r�@"h�@�y@�0U@�]@1t@�Ҋ@e.�@d�@���@�(�@��@���@�gA�gA�gA�gA���@��@��@9�@f.�@���@�c@�0U@�0U@�0U@�0U@z�X@lg@�~@�َ@��@ƴ@�
�@f��@���@q��@4�A	A
A��A��A��Aw�A�zAq�Av�A:A��A�\
A��	A�A��Ak�A|xA��A�A�,Ab�ACvA�OA�4
A�A
�
A�A�6A �A.�A�A<�A<�ArPKeyAttrFlagsi!����P-KeyAttrDataFloatf 



�PKeyAttrRefCountia�VAnimationCurveL�5�-SAnimCurveSPQ	DefaultD}f�hQKeyVerI��TKeyTimelbH�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dHV�
KeyValueFloatfb��3���D���T��д��]і��.��Q=��!��R��2ª�ui��~����F������C�����B����������/��H%���a������t��Hś��.��E�����n���-���3��>���C���2����g������f{���
��Ù��Ò��.���.���.���.���[��Ù�0���l���g��-b��6����3���3���3���3��is��p���$���5t��8m���1���a���Os��lw�SE�����z��E*)�}^\����������@,��U������́���U���'�����m���F��)]��t��.���R;���	��͙�
��}�-�)E�y.]��yu��Ɔ� v��f����ǧ���������vVKeyAttrFlagsi!����V-KeyAttrDataFloatf 



�VKeyAttrRefCountiavXAnimationCurveL8�-SAnimCurveSTW	DefaultDlWKeyVerI��W%KeyTimelH�%;h��d�Ye�W
KeyValueFloatfS��?S��?S��?XKeyAttrFlagsi!<XKeyAttrDataFloatf

iXKeyAttrRefCounti�YAnimationCurveL���-SAnimCurveS�X	DefaultD�XKeyVerI�Y%KeyTimelH�%;h��d�YePY
KeyValueFloatf�l��l��l�zYKeyAttrFlagsi!�YKeyAttrDataFloatf

�YKeyAttrRefCountif[AnimationCurveL��-SAnimCurveSDZ	DefaultD\ZKeyVerI��Z%KeyTimelH�%;h��d�Ye�Z
KeyValueFloatfSX@SX@SX@�ZKeyAttrFlagsi!,[KeyAttrDataFloatf

Y[KeyAttrRefCounti�^AnimationCurveL(��-SAnimCurveS�[	DefaultD@���?�[KeyVerI�%]=KeyTimel&00��OU�>��U(<
cV �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c�]�
KeyValueFloatf&����?��?�,�?���?̊�?ۜ�?��?��?���?i�?��?r�?o��?��?���?���?���?_��? !�?^�?0��?�5�?��?ru�?�I�?�v�?���?���?���?��?��?D�? ��?O��?�(�?�J�?�C�?-�?^KeyAttrFlagsi���H^KeyAttrDataFloatf

u^KeyAttrRefCounti&�aAnimationCurveL(j�-SAnimCurveS�^	DefaultD T� @�^KeyVerI�q`mKeyTimel,`��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	dHa�
KeyValueFloatf,��
AA�AE�A��AU/AN�AѭAI�A�A�"A��A~/A�A�
Aջ
A��AjA<AvA��A\�AA�+
A�8
Ac�A�sA�AAC!A:lA��A\�A��A��A7	AP�
AZAB�
A/A��A�2A�At�AŀAŀAraKeyAttrFlagsi����aKeyAttrDataFloatf

�aKeyAttrRefCounti,eAnimationCurveL�-SAnimCurveS<b	DefaultD���?TbKeyVerI��c=KeyTimel&0�A��T0��OU(<
cV �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�cdd�
KeyValueFloatf&��~>��{>�q>�"p>��t>�|>?��>���>�h�>���>$�>���>�E�>�m�>�,�>�c�>V��>�q�>kڡ>�ڒ>S+�>���>E�>vo�>W��>T�>9s�>��>�4�>�>cr�>�>�̽>�u�>���>`��>A�>ժ�>�dKeyAttrFlagsi����dKeyAttrDataFloatf

�dKeyAttrRefCounti&zfAnimationCurveL8��-SAnimCurveSXe	DefaultDpeKeyVerI��e%KeyTimelH�%;h��d�Ye�e
KeyValueFloatf��"@��"@��"@fKeyAttrFlagsi!@fKeyAttrDataFloatf

mfKeyAttrRefCounti�jAnimationCurveL8��-SAnimCurveS�f	DefaultD�fKeyVerI�!i%KeyTimelCH�%;h\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�YeTj
KeyValueFloatfC��C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C�~jKeyAttrFlagsi!�jKeyAttrDataFloatf

�jKeyAttrRefCountiCjlAnimationCurveLh��-SAnimCurveSHk	DefaultD`kKeyVerI��k%KeyTimelH�%;h��d�Ye�k
KeyValueFloatf�T@�T@�T@�kKeyAttrFlagsi!0lKeyAttrDataFloatf

]lKeyAttrRefCounti�mAnimationCurveLHk�-SAnimCurveS�l	DefaultD�lKeyVerI�m%KeyTimelH�%;h��d�YeDm
KeyValueFloatfBp��Bp��Bp��nmKeyAttrFlagsi!�mKeyAttrDataFloatf

�mKeyAttrRefCountiZoAnimationCurveL(@�-SAnimCurveS8n	DefaultDPnKeyVerI��n%KeyTimelH�%;h��d�Ye�n
KeyValueFloatf����������nKeyAttrFlagsi! oKeyAttrDataFloatf

MoKeyAttrRefCounti6vAnimationCurveLX��-SAnimCurveS�o	DefaultD�oKeyVerI��s�KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�u�
KeyValueFloatfv�@*�)�)@*�)�)����*�@�@**��*�@*)���) ���(��@��(��@���@��(�� ��'���@��������)*�)����**����) ���@�))�`���)d)�(�@�P)0�)�)����@���*)��)����)*@*�)**@*��***����)�)�)@�*�)�)@*���`�@+�uKeyAttrFlagsi!�uKeyAttrDataFloatf

)vKeyAttrRefCountiv�}AnimationCurveLس�-SAnimCurveS�v	DefaultD@��D��vKeyVerI�-zuKeyTimel�hx�P��or�n�C�;�i()�?�5`���C�+���6u�.�F;�)�;Bx�4���bW�[ɮ�,�7����]��z?�?�b�Y��0����q��bYl�k�t٦�d�R$������?���^e1�j��S���0+V�#=gǰ5�)���\�[��p�3Ĺ������|	=Uѭ�|��v���MiO�R�k�pbc��$���>�+�����\�����I]~����޶�7�t���X�r��>UO`�͖�5�у�yv&�ݖ���i��;N�;���r��]{��c�iܿ��N<*��F3_y�v6?Vc�˜����+hGBj���K�8�O`u�a�<��*o�Ȟ��tA�#��ot���yDZ�����Y�J:4[+ǹå�جᩜ��ߙy���&וӁz��v6�>�~��;��{Ê�����ذ�Js��r+h��؊uf�4�����[7�Q+`�:[���U��
�.����:<�aEy,��N�zv���]�Y���Ye�XX��6�cK��|�
�SC�����i�f�i���~9q����f��C�&*q[��'8Rr�+\�L[�/{��nn�B��FlY�s��X�G�s��}l~��Kz*�_��^�A��
c�h�������]n�ņ�yR-��������Xw��~�fl�`ϗ��ާk�oŒ��g��۶z�^z's~���:_��U�"�q'\��s���u��t� �g�=��h�ݴ�O��3��8�
�L�ƱSn��.��KpG�ш{7p$c!�����Ҋ�+Gq�x����~�����G�#�F:�ֱ��1c�]9��Ͽ�DO�l�ZlH��;�i�f~@���dZ�|�
KeyValueFloatf�xr�'�m.>���T�%�e��wv��k�¯���ry��EɈ�
���5{�{�h�_M�#:³e'¸��<�™X��,���>Y�x����^�����=V��Dm��yQ�)[��Η���m�0�(�fqFº�c�Զs•���ב��BBa€C���6�<��><�	�)�C���°��������a�������L�H�N��&��Ŵ������k������������O����9��:%��=;�%T�E�l��9���
���J�¼v�˜ں���� '�§����*��v,��ٹ��4���Ȥ��Q��«P��J���ٵ��(���V���R>��.	��_���݊�;���2h�@GQ��9�+��L���������v�|��d���$����@��@H��?�1������{-�A�~��ϧ������¢��_l;–�V¨r�+����7��J������Z��[d�‰8�‚��f�®�ƒ^��(��X�����†���2��p�u��9h�hH��
7Š�%�����"��-;�:{M”�_�v��:��Oi���³©���_���w�²o��&��c��w��.���Sc���r�B�`���O²�8���#�/���|KeyAttrFlagsi!���D}-KeyAttrDataFloatf 



u}KeyAttrRefCounti�΄AnimationCurveLhf�-SAnimCurveS�}	DefaultD�8���}KeyVerI�y�uKeyTimel�hx�P��or�n�C�;�i()�?�5`���C�+���6u�.�F;�)�;Bx�4���bW�[ɮ�,�7����]��z?�?�b�Y��0����q��bYl�k�t٦�d�R$������?���^e1�j��S���0+V�#=gǰ5�)���\�[��p�3Ĺ������|	=Uѭ�|��v���MiO�R�k�pbc��$���>�+�����\�����I]~����޶�7�t���X�r��>UO`�͖�5�у�yv&�ݖ���i��;N�;���r��]{��c�iܿ��N<*��F3_y�v6?Vc�˜����+hGBj���K�8�O`u�a�<��*o�Ȟ��tA�#��ot���yDZ�����Y�J:4[+ǹå�جᩜ��ߙy���&וӁz��v6�>�~��;��{Ê�����ذ�Js��r+h��؊uf�4�����[7�Q+`�:[���U��
�.����:<�aEy,��N�zv���]�Y���Ye�XX��6�cK��|�
�SC�����i�f�i���~9q����f��C�&*q[��'8Rr�+\�L[�/{��nn�B��FlY�s��X�G�s��}l~��Kz*�_��^�A��
c�h�������]n�ņ�yR-��������Xw��~�fl�`ϗ��ާk�oŒ��g��۶z�^z's~���:_��U�"�q'\��s���u��t� �g�=��h�ݴ�O��3��8�
�L�ƱSn��.��KpG�ш{7p$c!�����Ҋ�+Gq�x����~�����G�#�F:�ֱ��1c�]9��Ͽ�DO�l�ZlH��;�i�f~@���dZ��
KeyValueFloatf�x����3x��Wӻ�O���������&"?6�B@�PX@#BU?��"����4��|���V��8<�ۢi��<��E���E"�W4�k?�o���E��r�#�0�������B�&�;=��\Q��D�7���E�������T���������t �����n����A��t��N����9��	e�m΅����O#���B��h��TW�����E���,\������ֆ���J�Z���g��ad������+���h���y�������)��2�>LzW@��@�wA��@A��uAE�AZRmAE�VATXAI{SA��=A�-A��A���@h�@�<�?�j?�Q�����%�>hK���m�J������E��X[��M���1U�������|��٠��䌗�2����_���m��{�Cy��v�-e���R��DF���7�o�.�;�"�g���I����6@�&{ٿlmu�xՏ�� ���׿�B��&��?�7@X�Z@
{H@UZ@@�@@}��?�!
?b�����!�]�tު�MRP�&5�^��3���Vr������us�����8�(�#�;����w���ȿ6�Z t�����b���T�������Y��#�AD���j�H)g�F�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCounti��AnimationCurveLx��-SAnimCurveS$�	DefaultD^��<�KeyVerI�ňuKeyTimel�hx�P��or�n�C�;�i()�?�5`���C�+���6u�.�F;�)�;Bx�4���bW�[ɮ�,�7����]��z?�?�b�Y��0����q��bYl�k�t٦�d�R$������?���^e1�j��S���0+V�#=gǰ5�)���\�[��p�3Ĺ������|	=Uѭ�|��v���MiO�R�k�pbc��$���>�+�����\�����I]~����޶�7�t���X�r��>UO`�͖�5�у�yv&�ݖ���i��;N�;���r��]{��c�iܿ��N<*��F3_y�v6?Vc�˜����+hGBj���K�8�O`u�a�<��*o�Ȟ��tA�#��ot���yDZ�����Y�J:4[+ǹå�جᩜ��ߙy���&וӁz��v6�>�~��;��{Ê�����ذ�Js��r+h��؊uf�4�����[7�Q+`�:[���U��
�.����:<�aEy,��N�zv���]�Y���Ye�XX��6�cK��|�
�SC�����i�f�i���~9q����f��C�&*q[��'8Rr�+\�L[�/{��nn�B��FlY�s��X�G�s��}l~��Kz*�_��^�A��
c�h�������]n�ņ�yR-��������Xw��~�fl�`ϗ��ާk�oŒ��g��۶z�^z's~���:_��U�"�q'\��s���u��t� �g�=��h�ݴ�O��3��8�
�L�ƱSn��.��KpG�ш{7p$c!�����Ҋ�+Gq�x����~�����G�#�F:�ֱ��1c�]9��Ͽ�DO�l�ZlH��;�i�f~@���dZd��
KeyValueFloatf�x�vT�?��T@
�@���@���@7A�)A��-A�)>A`A�
vA*��A ��AG�A��^A�48A�$AÔ�@�l�@M2�?8��Җ7?�[g@2�@O��@���@	��@��AF�A�A �)A��A�`A&��@�A���@n��@��@��?A��1A9,�@_/z@���?oڄ>�������u>�kH�rS@��@���@Xf�@�{�@J8A��AAxA���@h�@���@��@��@a�A��A4G0AuaeA.֊AA��AV�A*��A���A�}B܌BB��A�ɰA/K�A�p�A��A��A��A�A�ܧAh��Ax�uA��2A�
A��@���@ݻy@c�@ň&�T��փ�ѵ�Ap��vK��ě���|b��$!�s�'�ƿ�a������a�g��7#���?i@�?aa@ۡ�@а�@��AQ-A�	A��5A%��AQA&DAR("Ah-A{�A�˅A��A�B0AkT�@:>�@��@�un@���?`�@q�@��@���@���@��@~L�@w˱@zJ�@���@���@s�A/�A(GA ohAK�JAȒA'��@�V�@�S�@|�@�A`A'g�@�P�@�J�@��@q�A��KeyAttrFlagsi!���܋-KeyAttrDataFloatf 




�KeyAttrRefCounti���AnimationCurveLض�-SAnimCurveSp�	DefaultD��KeyVerI���%KeyTimelH�%;h��d�Ye�
KeyValueFloatf�������KeyAttrFlagsi!X�KeyAttrDataFloatf

��KeyAttrRefCounti
�AnimationCurveL���-SAnimCurveS�	DefaultD�KeyVerI�9�%KeyTimelH�%;h��d�Yel�
KeyValueFloatf�#��#��#–�KeyAttrFlagsi!ЎKeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLȊ�-SAnimCurveS`�	DefaultDx�KeyVerI���%KeyTimelH�%;h��d�Ye�
KeyValueFloatf�-���-���-���KeyAttrFlagsi!H�KeyAttrDataFloatf

u�KeyAttrRefCountiԘAnimationCurveL���-SAnimCurveSؐ	DefaultDC+P@�KeyVerI��KeyTimel��x�{Pt�%'���	7�`�0D��C��a�&�+F���N�D��8B�]�1Hh"�H�����(D1o	\ 
+4ׁ^���Ole�>
�Қ�4[�cJ�nS=��>6����ڄ9�Q��e^�s�~x7��ni�:qi9�0�7p�o���PK�n�6����(2�Ҷbl�-q���.��M�HhL�L���P��{�o��%˝�9�s��a��ޔ̨Q��Bm���4c=��%�l�{�Y����U�i�N7����#��'K�.�b����^���Xz��SψFp_v�.r��sU�/������0��5?)�S3%���3
+)1d�"g^����µ���������q��&�O�-�_ŭ����j�������d���"�:��M}�O�BQ�K,��S�7X�R<�����8�-/�q�Y�I���O�w$��`��T=��n�
Z�aE��! ��3�8�3�8.�����ٹ7ؐ�Ǔ���1�h��!���-
���G�?��‹.���4c������b�Ly@9�%=�đJ,��<��Ա=�d��F�&�`ʤ�@H�$����Լ!�lKg�v�� ����'���^+��#~N�[�цmA��M*�T��_>�9��>��K��y'8"��g��p�Wq���OȽ��8T?���i?����xz��8�m�C��;��'�p��8�bӠ�'\���-�d�NT���F\dž�{8.��������سy���s�����<�7���w�z1���q��˙Ǜ�yt1Y�3��i��V���m�.���GȒn�ߒ%�����Z����k�{�NN�S�)�ʻXx�7�,��x���M�����Lr���[��ϰ��AL9�j˷�)Cq/xe�������Z��xNl��l��[�rEC��k<d2�b���U�l����)<����,���0�;�M"�`�D�|\��N#�0>�c�Wc��X|�w.��\s{��ay��37m�#�U�L,��|Ӫ�����AC���
KeyValueFloatf��Z�B�>�B��B���B�ڞB�A�BG��B��B��fB��KB��0BT_BHF�A�^B`(BQ�8B��@B�7B{�)B�Ba	Bj��AGU�As�B^�!B��5B	�SB�:qB�?�B�9�B�5�Bz�Bؔ�B';�B��B�)�Bc��B�X�BHD�B�(�B�~BcB�GDB�-B��B�lBc��A,�AnlqA��AW2A���Ab�AɩBR'B�I?B�=WB�fB�PB�"1B��B��A<Z�A��A.��AI��AyPB��?B_�NB�N^B��hB�]fB��gB��BI_�B�ɛB:b�B���B��B��B#2�B�I�Bƒ�B�1C5�B�{�B��Bس�B��B�<�B�`�B�ƟB�L�B�g�B#��BWS�B�I�B7�Bs��B�~�B�T�B|a�BT��B•�B��B�ցB��iBKJWBոDBh/B�B"�BB��A3v�A�f[AFk�At�A�x�A#bB�#B�n?B��[Bk0{B�'�B�ҘB[��B�B�z�B5s�B��BjܗB���By�B"hnB��YB�:B��B�B���AY��A��A3�XA7�A��A�A��A;��AB��.B
@B��QB�+jBѵ�B9��B/��BjǠB�B��B'ХBU��Bx��B!?�B��Bd��B��B,��B�J�B�C�kC�|
C'4C:�B���B84�B��B���Bq=�B㔷B�l�B�?�B���B4jtB��ZB�ABt�0B?�*BxJ%B�q$BL�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



ǘKeyAttrRefCounti�&�AnimationCurveL�-SAnimCurveS*�	DefaultDO��B�KeyVerI�Y�KeyTimel��x�{Pt�%'���	7�`�0D��C��a�&�+F���N�D��8B�]�1Hh"�H�����(D1o	\ 
+4ׁ^���Ole�>
�Қ�4[�cJ�nS=��>6����ڄ9�Q��e^�s�~x7��ni�:qi9�0�7p�o���PK�n�6����(2�Ҷbl�-q���.��M�HhL�L���P��{�o��%˝�9�s��a��ޔ̨Q��Bm���4c=��%�l�{�Y����U�i�N7����#��'K�.�b����^���Xz��SψFp_v�.r��sU�/������0��5?)�S3%���3
+)1d�"g^����µ���������q��&�O�-�_ŭ����j�������d���"�:��M}�O�BQ�K,��S�7X�R<�����8�-/�q�Y�I���O�w$��`��T=��n�
Z�aE��! ��3�8�3�8.�����ٹ7ؐ�Ǔ���1�h��!���-
���G�?��‹.���4c������b�Ly@9�%=�đJ,��<��Ա=�d��F�&�`ʤ�@H�$����Լ!�lKg�v�� ����'���^+��#~N�[�цmA��M*�T��_>�9��>��K��y'8"��g��p�Wq���OȽ��8T?���i?����xz��8�m�C��;��'�p��8�bӠ�'\���-�d�NT���F\dž�{8.��������سy���s�����<�7���w�z1���q��˙Ǜ�yt1Y�3��i��V���m�.���GȒn�ߒ%�����Z����k�{�NN�S�)�ʻXx�7�,��x���M�����Lr���[��ϰ��AL9�j˷�)Cq/xe�������Z��xNl��l��[�rEC��k<d2�b���U�l����)<����,���0�;�M"�`�D�|\��N#�0>�c�Wc��X|�w.��\s{��ay��37m�#�U�L,��|Ӫ�����AC�p��
KeyValueFloatf��x�-���y��^?��i@,�@`=@��?��j?Q
s��-2�T~��?����n���㤻�d[���A�,h:@B�@"A�oA'A�6GA��]AW5rA�X_A18@AJA��A��@��@ΐ�@Ѻ@�r�@�A��A.)�@�q@fy�?�ۨ>�_޿�Yi�~���2��?�����8Tg�J��%"?5	[@��@.�@c�@���@�?�@1��@"��@�4A�[OA�{qA:��A&�}A/fA-MUA���A%=�A�3�A�ȘApn^A�A���@l��@��Au0$A�	A@��@���@�5�@���@}��@tW�@���@w�AHaA,A4�@?�@�k�@�A�@���@U�d@�<<@���?c�?$:+>�CȾ/���bw��'�=�}��Fſƕ���
?�f�?py@7M@0�@��A��/AX�aA"�A�i�A��A�ͤA���A�SiA}VA�Z:A�A?�*A�\;A��IA�;A��*ADuAj��@Q�@�H�@��@L)�@�.@.9#?�m��p���B���9�����Z���̈�����,'?$/�@�
A��2A�7A�A�N�@���@?�@fFA�.A��CAzA���@�Au

A�F�@�e�@���@���@A)�@�h�@#AG�AװA|�A�e�@�ݝ@{[�@��@�Ae�	AKA�g�@���@��@��@#ϸ@P��@�@:�
Ac� A�	3A<�EA��mA�U�A�T�Ac��A��KeyAttrFlagsi!����-KeyAttrDataFloatf 



�KeyAttrRefCounti�x�AnimationCurveLX��-SAnimCurveS|�	DefaultD@�G"���KeyVerI���KeyTimel��x�{Pt�%'���	7�`�0D��C��a�&�+F���N�D��8B�]�1Hh"�H�����(D1o	\ 
+4ׁ^���Ole�>
�Қ�4[�cJ�nS=��>6����ڄ9�Q��e^�s�~x7��ni�:qi9�0�7p�o���PK�n�6����(2�Ҷbl�-q���.��M�HhL�L���P��{�o��%˝�9�s��a��ޔ̨Q��Bm���4c=��%�l�{�Y����U�i�N7����#��'K�.�b����^���Xz��SψFp_v�.r��sU�/������0��5?)�S3%���3
+)1d�"g^����µ���������q��&�O�-�_ŭ����j�������d���"�:��M}�O�BQ�K,��S�7X�R<�����8�-/�q�Y�I���O�w$��`��T=��n�
Z�aE��! ��3�8�3�8.�����ٹ7ؐ�Ǔ���1�h��!���-
���G�?��‹.���4c������b�Ly@9�%=�đJ,��<��Ա=�d��F�&�`ʤ�@H�$����Լ!�lKg�v�� ����'���^+��#~N�[�цmA��M*�T��_>�9��>��K��y'8"��g��p�Wq���OȽ��8T?���i?����xz��8�m�C��;��'�p��8�bӠ�'\���-�d�NT���F\dž�{8.��������سy���s�����<�7���w�z1���q��˙Ǜ�yt1Y�3��i��V���m�.���GȒn�ߒ%�����Z����k�{�NN�S�)�ʻXx�7�,��x���M�����Lr���[��ϰ��AL9�j˷�)Cq/xe�������Z��xNl��l��[�rEC��k<d2�b���U�l����)<����,���0�;�M"�`�D�|\��N#�0>�c�Wc��X|�w.��\s{��ay��37m�#�U�L,��|Ӫ�����AC�¨�
KeyValueFloatf��
>�R)�f�=��@%�
�����Q��_]��6D���+�����ښA�^���NE=?|8�?���>(�žj2%@��P@��o@�@3��?�_��g�>vW�?�13@�-�@�DZ@嶞@3@|@�c2@���>JW��d��u,�ճw�7��p���/����N�r���[�;�:��'!���
�ה��[K���K�����x�Ė���F���Zr?>��?~<�?[М?j�I?�@e@�ݱ@"�m@q+�?�5��q/��*�6������@5�w@��@xG�?���ԇ���}����������&���Q��S���Z��!J�L4���.���@���G��2��aǾ��[?L�@��?�o�>�.#�ᜓ����g�L�Ȉ�]y��_���E�������aU��w"�v����g�p3��{6@eα@8�@yi�@?��@E��@l��@Ĩ�@
j|@ԓ�?������L���G9�5g��$���j�� �>��w?�D-��+������
�FGD�z�e������������N�l�H�H�e"�{���/2��e"��u��X,(�#�>(�B����S >.�?
��?&��?�@*�"@��	@o#�?"�4?r����*z�����jh������g���5�������������Uj�j��{X'�g��?ᔱ?�
�>+RK�������f,�����E
����镢�^��#9^���a�7��<�P��1�(�	<6�c?��?�?�KeyAttrFlagsi!���:�-KeyAttrDataFloatf 



k�KeyAttrRefCounti��AnimationCurveLX��-SAnimCurveSΩ	DefaultD�KeyVerI��%KeyTimelH�%;h��d�YeR�
KeyValueFloatf���������|�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountih�AnimationCurveL��-SAnimCurveSF�	DefaultD^�KeyVerI���%KeyTimelH�%;h��d�Yeʫ
KeyValueFloatf*C)�*C)�*C)���KeyAttrFlagsi!.�KeyAttrDataFloatf

[�KeyAttrRefCounti�AnimationCurveLh��-SAnimCurveS��	DefaultD֬KeyVerI��%KeyTimelH�%;h��d�YeB�
KeyValueFloatf��0���0���0�l�KeyAttrFlagsi!��KeyAttrDataFloatf

ӭKeyAttrRefCounti��AnimationCurveL��-SAnimCurveS6�	DefaultD�Pu!�N�KeyVerI���.KeyTimel�!x�}P���P�˺�n�X�[^#Ǩ��,��Q�U\C�82�;�6�TR�D�w�p3Ԑ3��n.��2Gw�KF�:q~��?�����0��ߦ���,+&Ӿ��j\����u5���c/a}혠�tB�7���7`O�y��(�amDa�ZP5ivq��XSq-^D��f�s-���U��~�X��R��`�A��9�b�W�j���#�X�����a#�`k�3x�:^�C+Z���E��C��R�u��3�κq�ۊ.?����6�ϟ��R�����2|�lŁ=]��1pE,����gp��ϰ�Wb?>��]B�����qg�M|}�zl��~0TJW��*,�6�
{�9ƥ��"�>��%��l�H\Jk}/˱���3vu�Hd�fC�	�?~��yf6�V{��ļ��×���?��*��ߍ6��܎=��i+���J��d��ɠ-�8K!���a29e^ᾈ定�+��r67:�ذ4����?=��
�X����օfb���WŽ?�Ë�-���5/��d�÷{9��0uW26en��B#֋zp��5c5��2�ޓ���#
���l����Gg�|��;f��X}�cj͛�pۯ�wbՌ81Ks-]��:�j�v�ǭ��W�
2e����[��8���;��1|��q�e���p`“���d��C��mUbi���`�MX-o~��
��q�Ź��L�9����+�b���pT�
�5s��>��'�Lw`ODτ<Z[u��������9��&l�	�?�֍��Z]&��y�G�@�u��v�6斲�����HX��U
KeyValueFloatf�H���$�:��U�f�l��Im��C0�l�� ���Y������o��#S�	+��7��������>	�����r���Do��}G�|�ll@�*5A"�OA��@�a@��������9�B�_��=7�W���n����,��gY3���=墌@�AN��@�'�@�h侰�����Y�4�����7�z����dM���_@�WA�W�A�4�A��AJ�A��A`Ar7+A��@%(@�I�~&��,k�z�������9������L5���O��Mu������܈������W���da�������N���6���
Œx
�@��I���?Œ�$�t�&�'D$��"³{š������������<�]q��ѐ��Ϥ@nA��eA��rAO$Av�>@�Zh�S$!�_�t��^���ߣ������gF��U�n��>p�ͪ|�AS��£�����<�?�矿��x��v,�
��k��������F�‰:��ֈ��wՄ�^:$�P�z���=?,<,��×��Ǻ�ơ������!b��d�뿟q�<��>M
�>��@�<�@�sA<AsAn�A�N�AÑ�A���A麰A-�KeyAttrFlagsi!���w�-KeyAttrDataFloatf 



��KeyAttrRefCounti���AnimationCurveL8��-SAnimCurveS�	DefaultD 
�Ŀ#�KeyVerI�e�.KeyTimel�!x�}P���P�˺�n�X�[^#Ǩ��,��Q�U\C�82�;�6�TR�D�w�p3Ԑ3��n.��2Gw�KF�:q~��?�����0��ߦ���,+&Ӿ��j\����u5���c/a}혠�tB�7���7`O�y��(�amDa�ZP5ivq��XSq-^D��f�s-���U��~�X��R��`�A��9�b�W�j���#�X�����a#�`k�3x�:^�C+Z���E��C��R�u��3�κq�ۊ.?����6�ϟ��R�����2|�lŁ=]��1pE,����gp��ϰ�Wb?>��]B�����qg�M|}�zl��~0TJW��*,�6�
{�9ƥ��"�>��%��l�H\Jk}/˱���3vu�Hd�fC�	�?~��yf6�V{��ļ��×���?��*��ߍ6��܎=��i+���J��d��ɠ-�8K!���a29e^ᾈ定�+��r67:�ذ4����?=��
�X����օfb���WŽ?�Ë�-���5/��d�÷{9��0uW26en��B#֋zp��5c5��2�ޓ���#
���l����Gg�|��;f��X}�cj͛�pۯ�wbՌ81Ks-]��:�j�v�ǭ��W�
2e����[��8���;��1|��q�e���p`“���d��C��mUbi���`�MX-o~��
��q�Ź��L�9����+�b���pT�
�5s��>��'�Lw`ODτ<Z[u��������9��&l�	�?�֍��Z]&��y�G�@�u��v�6斲�����HXԺU
KeyValueFloatf�HQ$�Y���;���白���;q٫=�)Žre�Џ���/��E�>��=Q]��u��NT����>��?L3�?4�r?d��>י�= ���䛿��s��X2���+������<�R��x�#��F־[�7�������<>z;�w�[�O���'�?��4>�h?��	?<�>f$[��ɾ�=����>*�>6�>�>�o>��҂j�w��H�뿀�߿�,���gu���/�����T[�>�F�>=�>�%�>|EB>�+�=�ۤ>�?u`�?E��>(9޾ʯ��O�)�ӿ/���Ȫ�]Ǒ�/Dž�b�����\�1��vճ�����>!�2?j=�?�?�S�?[H�?7�?��S?�>)�>�;����
�/����Q��𸮾B>M�>/S>��5�Ƹ�����9��2���>�~?q�?�V?8\�=��%�<��������>>Yr�>Պ�>�%?8n?5��?c��?8~�?o�%?�t�>�S�=lo�<���=�ђ9�#==��=�o>�"�>3m�>��|><-_>w�>/A��a�t����l���G���U0���7��e2���4��8��KeyAttrFlagsi!���L�-KeyAttrDataFloatf 



}�KeyAttrRefCounti�_�AnimationCurveLX��-SAnimCurveS�	DefaultD`VE�?��KeyVerI�:�.KeyTimel�!x�}P���P�˺�n�X�[^#Ǩ��,��Q�U\C�82�;�6�TR�D�w�p3Ԑ3��n.��2Gw�KF�:q~��?�����0��ߦ���,+&Ӿ��j\����u5���c/a}혠�tB�7���7`O�y��(�amDa�ZP5ivq��XSq-^D��f�s-���U��~�X��R��`�A��9�b�W�j���#�X�����a#�`k�3x�:^�C+Z���E��C��R�u��3�κq�ۊ.?����6�ϟ��R�����2|�lŁ=]��1pE,����gp��ϰ�Wb?>��]B�����qg�M|}�zl��~0TJW��*,�6�
{�9ƥ��"�>��%��l�H\Jk}/˱���3vu�Hd�fC�	�?~��yf6�V{��ļ��×���?��*��ߍ6��܎=��i+���J��d��ɠ-�8K!���a29e^ᾈ定�+��r67:�ذ4����?=��
�X����օfb���WŽ?�Ë�-���5/��d�÷{9��0uW26en��B#֋zp��5c5��2�ޓ���#
���l����Gg�|��;f��X}�cj͛�pۯ�wbՌ81Ks-]��:�j�v�ǭ��W�
2e����[��8���;��1|��q�e���p`“���d��C��mUbi���`�MX-o~��
��q�Ź��L�9����+�b���pT�
�5s��>��'�Lw`ODτ<Z[u��������9��&l�	�?�֍��Z]&��y�G�@�u��v�6斲�����HX��U
KeyValueFloatf�H�*�?:����,�?���?��k@�P�@;A��A+)]A��@@|�?�x�F�A��2ξd�	?��k@�_�@;��@��A<�A�A�KA���@�tAE�IA�?A6�?�c
�U�����u��W)@��A�[wAf�A$�A��CAT��@T��q���������B���ʡ�����|���ׅ����U��5��gp�4�?RV@=A�@L�'AN�+A��A�A�X@A��<AՐ�@��@+�J@���?#��>�7>�ɬ?h�@H"�@}2J@�s��A��n_C�x1��2������vk��bj���m��Y���8����賴��73���>�@���@��@�SAbCA��vAY��A�]�AϛAq�A�hA��%A�;A���@���@f�@�q?�.����ǿ�g�7�8�?	A@�jA��6A��_A�AI}�A�ÆAn�CAC�A\�@I�?�'�?��@hI-@��[@Mџ@�Ę@MS�@��U@�x�?�X{�nͫ�>��>L.p>�G�:3�=�6�?���?�G>w��&=?�f@�"�@N��@F�A�\=A��GA�JA"LA�xNAͶOA��KeyAttrFlagsi!���!�-KeyAttrDataFloatf 



R�KeyAttrRefCounti���AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelH�%;h��d�Ye9�
KeyValueFloatf;p�@;p�@;p�@c�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiO�AnimationCurveL���-SAnimCurveS-�	DefaultDE�KeyVerI�~�%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�����������KeyAttrFlagsi!�KeyAttrDataFloatf

B�KeyAttrRefCounti+�AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI����KeyTimelv�H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye���
KeyValueFloatfv��*�)�*@*@*��*�� �����)@��)�*��)���)�)�����(�)@)(��@(�((`����'���(���(���)*�����)�)�)������� �����@��))))@�(�)�)�� ��)��(�(���������*)����)���)`*����*)�@*��@*�*����@*��@*@*����@� ��*��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountivr�AnimationCurveLx��-SAnimCurveS��	DefaultD��I���KeyVerI�!�tKeyTimel�gx�}P��G񅀣y-�d�����h�1�S�bO�/�q�b�/3=ܩ�&���b�L��!I,����Z�����������������f��0LP4h�2��W��i�hk"�i���=X�!tD��x�3,v�+sh^�~�m'�r�8^��m���������ޥ�&���sy����i���¨.��{��ȥT	-��Q��F��9�-��
v�?0�
V�*�̉��{z殦�d_��ua�U��ƶV�_=�K�YO�����Y�)��ى�?�au��ɧ�{+���M������X�������S��~�e����v?����i�tnu���
]���o�k�b��$��*���Sؾ��z
-��s��ֺ(����v� �r�ki��q�xRp�kb2�і��f��w<�ޱ2��6W'uc��_b��ɮ�M��+XX�>o�~�J�rX0�{�F��ͱ`����Ń�
h��1�Q+�a��h��r��b��}f!��jq�'�+��Etp��Vl_��`	�������.�X,ۑ���b;�I�'p�{��=ڟ{�<����O�dGTao��;l~�u~1-�U�����sYBN�k�?l�2�TC���_��+;a���1lX�,ei��Q��½�.�p�xs���I�#�*��C�CM8|�J.y�v}�"��֤~�nj��&v&�%�Ҫ3�����[wqWw�2z��#V$������8���ʟ������c�I�)�׾�-�$��~ȆY��������7̟p
ttfqC.���x���hO�?fbam9zuN�����YUI��g�q�E��U�	�5fljP���W^�YM�`:v[}e��5=��a��kXP��n��Yhd���
KeyValueFloatf�t/�L��]:›l(~�`������·���Ko��2�$��@L�.�����&�
��M��?���§�/±+K���g�F:���A��糓�z_�¹̓¬�o¹�`��YY�5vKc-¦>����V,��P�o����b��>Y�@�OAb�@��/���*��ց�[���H!�`€�,�B�F�l�`�s®)�¯����
��R���|��h}�¦��\���&ϳ�2��¦���]3���Λ�Yؑ�땄–�s��q��'��g�J��[
�ž�Š���p��{������̾�����H��U����n��hҧŠ��²g��H��¸�›�����…����A��e���b^�����„'���o��ϙ�¥��3���SI��)`r�U�Y�]:��<%�Fn�˻������[���Al���
����!l��E��N����3�+)ˆ�:�+�T�J1o�f%��Ͱ�����†G����Ž|��4���{g���Wr�u�Y�	�:���E(�x�������B_��_«��U�3¸�M¶�g����������Ű���ѷ�dJ��Xڦ��J��z͎
�³8q L`�_WG¦}6¦�%�GT�L���0����KeyAttrFlagsi!���4�-KeyAttrDataFloatf 



e�KeyAttrRefCounti���AnimationCurveL؛�-SAnimCurveS��	DefaultD@C����KeyVerI�h�tKeyTimel�gx�}P��G񅀣y-�d�����h�1�S�bO�/�q�b�/3=ܩ�&���b�L��!I,����Z�����������������f��0LP4h�2��W��i�hk"�i���=X�!tD��x�3,v�+sh^�~�m'�r�8^��m���������ޥ�&���sy����i���¨.��{��ȥT	-��Q��F��9�-��
v�?0�
V�*�̉��{z殦�d_��ua�U��ƶV�_=�K�YO�����Y�)��ى�?�au��ɧ�{+���M������X�������S��~�e����v?����i�tnu���
]���o�k�b��$��*���Sؾ��z
-��s��ֺ(����v� �r�ki��q�xRp�kb2�і��f��w<�ޱ2��6W'uc��_b��ɮ�M��+XX�>o�~�J�rX0�{�F��ͱ`����Ń�
h��1�Q+�a��h��r��b��}f!��jq�'�+��Etp��Vl_��`	�������.�X,ۑ���b;�I�'p�{��=ڟ{�<����O�dGTao��;l~�u~1-�U�����sYBN�k�?l�2�TC���_��+;a���1lX�,ei��Q��½�.�p�xs���I�#�*��C�CM8|�J.y�v}�"��֤~�nj��&v&�%�Ҫ3�����[wqWw�2z��#V$������8���ʟ������c�I�)�׾�-�$��~ȆY��������7̟p
ttfqC.���x���hO�?fbam9zuN�����YUI��g�q�E��U�	�5fljP���W^�YM�`:v[}e��5=��a��kXP��n��Yhd��
KeyValueFloatf�tJ���������h�G�����^?��@O�@P�AjSLAT)?A�G�@僘@�ܢ@���@c��@H�@��@�.�@4��@;^�@О@H}�?\���?8��?�ɼwI�>,�\>�T'?�0_@���@��AT�*At�)A��&A��5A�EA�o�A6�{A�kqA�fvA�p}Aw�A��zAesA�8gA��YA��AA^gAp��@�f@�T�<'�8�F����
��������Z��x��������J�'��R��:��l���lϧ��WH�ķ=�$�@�CA=�A�6A@
A���@71�@C��@���@��
A�;A^aaA�qoA��fA��OAH6:A5A���@r�@l��@�-�@��@5-_?|nG���b�!у�-!��!4������ }��d���M#���������Ϲ��-Ҁ�s�F��/���W�?GO@�V@-�a@a\E@�d;@IH@2#d@��@���@���@-��@��?��g������E7p�fN0���o�d;m?5]6@G�@x��@Jڿ@�@�@�z�@��@���@��@�Nz@)�K@��@6R�?�>�?��?|0�?�G@.�[@��@*��@��@�
A��AxvAp�
A�D�@�>�@U�@1�KeyAttrFlagsi!���{�-KeyAttrDataFloatf 



��KeyAttrRefCounti��AnimationCurveL�B�-SAnimCurveS�	DefaultD����'�KeyVerI���tKeyTimel�gx�}P��G񅀣y-�d�����h�1�S�bO�/�q�b�/3=ܩ�&���b�L��!I,����Z�����������������f��0LP4h�2��W��i�hk"�i���=X�!tD��x�3,v�+sh^�~�m'�r�8^��m���������ޥ�&���sy����i���¨.��{��ȥT	-��Q��F��9�-��
v�?0�
V�*�̉��{z殦�d_��ua�U��ƶV�_=�K�YO�����Y�)��ى�?�au��ɧ�{+���M������X�������S��~�e����v?����i�tnu���
]���o�k�b��$��*���Sؾ��z
-��s��ֺ(����v� �r�ki��q�xRp�kb2�і��f��w<�ޱ2��6W'uc��_b��ɮ�M��+XX�>o�~�J�rX0�{�F��ͱ`����Ń�
h��1�Q+�a��h��r��b��}f!��jq�'�+��Etp��Vl_��`	�������.�X,ۑ���b;�I�'p�{��=ڟ{�<����O�dGTao��;l~�u~1-�U�����sYBN�k�?l�2�TC���_��+;a���1lX�,ei��Q��½�.�p�xs���I�#�*��C�CM8|�J.y�v}�"��֤~�nj��&v&�%�Ҫ3�����[wqWw�2z��#V$������8���ʟ������c�I�)�׾�-�$��~ȆY��������7̟p
ttfqC.���x���hO�?fbam9zuN�����YUI��g�q�E��U�	�5fljP���W^�YM�`:v[}e��5=��a��kXP��n��YhdJ��
KeyValueFloatf�t����Wk��O����������^��y6N�'|�{G@
��@i4�@T�@�J����Y���}���^���X���[����4n�������H���y�M�U	��&����	���������2���x�4_��8п�G�D5V�.Q��҃�H)������,[��F���6�����ۮ������֝$�JI)�1p)����V���2[��n�?��@b��@h�?�̶>a�7@��?5��=OJ@<��@�w�@X!A�q3A~��@G��@�@!��@L
A��"AV4A�ABA2sKA߰YAn�pA}hA�y+A�B�@d�?<�<����Z�����/���r��������zA}�ؒ��VE���Vl�Y)��������]��0g���G�`5���n�������ζ�%����6���\������������������A�3��)P�0�={�?�3@�	k@�3�@\�@���@q�@��@�F@'�;����m�;�jY��#g��3�^)�����g���l�R���O`���K��k���#���3������c�K���Ăx�����g��Y���F��;�Y�ta�@sc�q�%�����\����>WOr?�|�?x�KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCounti�x�AnimationCurveLx��-SAnimCurveSV�	DefaultDn�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatf��@��@��@�KeyAttrFlagsi!>�KeyAttrDataFloatf

k�KeyAttrRefCounti��AnimationCurveL�b�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelH�%;h��d�YeR�
KeyValueFloatf�#��#��#�|�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountih�AnimationCurveL(��-SAnimCurveSF�	DefaultD^�KeyVerI���%KeyTimelH�%;h��d�Ye��
KeyValueFloatf�-���-���-����KeyAttrFlagsi!.�KeyAttrDataFloatf

[�KeyAttrRefCounti��AnimationCurveL�C�-SAnimCurveS��	DefaultDo�D@��KeyVerI���KeyTimel��x�{Pvp�3Q��a��#������K	��%,%��4�$�f�3�zc>R�t>*�Lﰳ�9K��c�7�,:sc�7mel��2����>�^J�>
�b�3ȱ�K��K\b�l/t���&/��jo�ő��5m�;��/y;ē#O�
k�+bq��U����ʱ0y�[Z/���e�0Ű����"�򴙛��w�bmi
�~[ŕ�C!l���^6�㚏��������|��}3�%�`���'.���q���9�l��e�b�ab�$f(��XO�y�=�����>�0�1m����N9 �84�c�y��R^Id��
<�
���`��s��XRgx��_�x$�5g�v�#YG���E����WF�t�~fq��L�9�n�@"N�t
���,�����=-�����C�m�0�}�ض��~&�v��5�!���	0{yD�[ot��NUo⒛l�ŘU�h���F�r�TU���N�k�#S�	=
�
Y���G
��5�(f��Ħ�l�x5�W����&����.�ߙF6�jD��_��2�7����s�8�~�,�qO�����8��f�&�Dqr�c�<��LÞt�vFт��L�v��I�s��6d��Eb��O����G�[��_��f�r���z��M\>���u]X�R4�_QSV1۸#�(y��T���
Y1+�<V@��e�q}�e�K��l�����9N���X�|l���+c��e��t�
l��aƲ���B2#����ț��It�8"8�ڜJ0M�؁J&'�n��oZj���3(`�h-���s=N���,��S4�?cM�~�,2��c���w��"��\~�u�_b���d1���ރ��k8v6a�	rS���9(0k��0VYƟa�%
-�������R)o3b}9 �,�x���Pb��W����s������J��Z���gz���a	���O6�֧b�II%�)y}ؐ�3�7o( K��0�W������op���~Ĵ:іB��l@����
KeyValueFloatf��x�$B	�-B^a"B��B��BV��A|a�A�R�A�A���Axp
B�B=�=B>�\B�UrBU�B4~�B�Y�Bl,�B���B�L�B؜�B�+�B5�B���B�e�B ��B��B�|�BZ�B�BtirB��ZBtOIB)�.B�"B�a�A���A&��A��B9uB�-4B�JBmWbBta`Bm�OB4�8B�"=B�\B��zBo��B��B�Bd��B�V�B"f�B��B���B��BmG�B���BU�Bs�BƊ�B��Bn�B��Br~B�^_B�BMBA�1BwB&B%j,B�{>Bz�[B;�kBc�sB��mBg8MB��-B+�Bz$�A��A{�rA2W7A0={A�^�A���A��AHoB"&1B��IB��aB��yB+�B�\�B|ϜB�0�B���B]ٿB���B��B���B���B�|�BP��B�)�B�^�B���B~�B>A�B�ԚB�i�B���B5�qB��ZBu�CB��0B�B?�AdU�A�f�A��Aa�A*NB8�(B�;B]wKB-�VBF[B�5ZB4VLB:�6BG�'B�2,B_n=B
�NB
3hBb��B��B�9�BI<�B*:�B)f�BV֯B:ڥBCޛB�}�B��Bf�B�x�BU�B�ЙB�I�B�.�Bj2�BU��B	��BxU�BW�B���B�b�B�:�B��BQ��BD��B	�C���B�3�B���B]?�Bq��BL��B�?�Be.�B
�Bs͙BT��B��}B�bB|�LB�=7B-3#B�*B2N�A�V�An�A0�KeyAttrFlagsi!���z�-KeyAttrDataFloatf 



��KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS�	DefaultD�d�@&�KeyVerI�;�KeyTimel��x�{Pvp�3Q��a��#������K	��%,%��4�$�f�3�zc>R�t>*�Lﰳ�9K��c�7�,:sc�7mel��2����>�^J�>
�b�3ȱ�K��K\b�l/t���&/��jo�ő��5m�;��/y;ē#O�
k�+bq��U����ʱ0y�[Z/���e�0Ű����"�򴙛��w�bmi
�~[ŕ�C!l���^6�㚏��������|��}3�%�`���'.���q���9�l��e�b�ab�$f(��XO�y�=�����>�0�1m����N9 �84�c�y��R^Id��
<�
���`��s��XRgx��_�x$�5g�v�#YG���E����WF�t�~fq��L�9�n�@"N�t
���,�����=-�����C�m�0�}�ض��~&�v��5�!���	0{yD�[ot��NUo⒛l�ŘU�h���F�r�TU���N�k�#S�	=
�
Y���G
��5�(f��Ħ�l�x5�W����&����.�ߙF6�jD��_��2�7����s�8�~�,�qO�����8��f�&�Dqr�c�<��LÞt�vFт��L�v��I�s��6d��Eb��O����G�[��_��f�r���z��M\>���u]X�R4�_QSV1۸#�(y��T���
Y1+�<V@��e�q}�e�K��l�����9N���X�|l���+c��e��t�
l��aƲ���B2#����ț��It�8"8�ڜJ0M�؁J&'�n��oZj���3(`�h-���s=N���,��S4�?cM�~�,2��c���w��"��\~�u�_b���d1���ރ��k8v6a�	rS���9(0k��0VYƟa�%
-�������R)o3b}9 �,�x���Pb��W����s������J��Z���gz���a	���O6�֧b�II%�)y}ؐ�3�7o( K��0�W������op���~Ĵ:іB��l@��R��
KeyValueFloatf��'K�@���?*�����>�m������d���
#��i>��g2���%�xv����8�����ģ�������C��
��?���������@u������T���Y����F��{J��'2;������߾���?��?$O@Oo#@��:@�t@v$�?Ոv=3���	k�}+��"����������G�����ͳ:��^?�U]�*,v��`��e���w���������v;��&�������oa���W��&����l��[�]��	�7����A >Vj�?	�@�?@��i@?��@�]/@�BW>�
?^Ա@�k�@��'@e�g@Fk@J?O��cM��UJ�O+�?�	�@��
@�
>����bqD����S��ߋ�����h���C�����dU��Ã����+�;⡿�	7����Y�g�$���@2��E������};���_�(g(����w�ȿ/H��t�z�p�_>���?%
d@�B�@�3�@�7�@7��@c�L@�~C@��j@�Q@_@^�.\��ʿYQV�~ġ�&���z]��7Ύ�m���H9����S�	������H���ے��p��]t��=������W��k�������.��'1����F�������8�������]��0@���=`�z�2�z`+���!���B�P;q����F#���������@[F�4M�.YR�`c:�ta"��6��*��u��/3v��d��b�g��Ͳ������Q����6������i�����KeyAttrFlagsi!�����-KeyAttrDataFloatf 



��KeyAttrRefCounti�X�AnimationCurveL���-SAnimCurveS^�	DefaultD̮@v�KeyVerI���KeyTimel��x�{Pvp�3Q��a��#������K	��%,%��4�$�f�3�zc>R�t>*�Lﰳ�9K��c�7�,:sc�7mel��2����>�^J�>
�b�3ȱ�K��K\b�l/t���&/��jo�ő��5m�;��/y;ē#O�
k�+bq��U����ʱ0y�[Z/���e�0Ű����"�򴙛��w�bmi
�~[ŕ�C!l���^6�㚏��������|��}3�%�`���'.���q���9�l��e�b�ab�$f(��XO�y�=�����>�0�1m����N9 �84�c�y��R^Id��
<�
���`��s��XRgx��_�x$�5g�v�#YG���E����WF�t�~fq��L�9�n�@"N�t
���,�����=-�����C�m�0�}�ض��~&�v��5�!���	0{yD�[ot��NUo⒛l�ŘU�h���F�r�TU���N�k�#S�	=
�
Y���G
��5�(f��Ħ�l�x5�W����&����.�ߙF6�jD��_��2�7����s�8�~�,�qO�����8��f�&�Dqr�c�<��LÞt�vFт��L�v��I�s��6d��Eb��O����G�[��_��f�r���z��M\>���u]X�R4�_QSV1۸#�(y��T���
Y1+�<V@��e�q}�e�K��l�����9N���X�|l���+c��e��t�
l��aƲ���B2#����ț��It�8"8�ڜJ0M�؁J&'�n��oZj���3(`�h-���s=N���,��S4�?cM�~�,2��c���w��"��\~�u�_b���d1���ރ��k8v6a�	rS���9(0k��0VYƟa�%
-�������R)o3b}9 �,�x���Pb��W����s������J��Z���gz���a	���O6�֧b�II%�)y}ؐ�3�7o( K��0�W������op���~Ĵ:іB��l@�ߢ��
KeyValueFloatf��`v
@zt�?�t���ƾb�྅�ܿ�zZ�ir��.b��t���ū��Ξ�F��$k'�n�S�?�+�?!9�?<
@�3@�>-@��$@y�}@�ͭ@���@���@�|AA��A��A
�A�0 AHKA	A�g�@�6�@c;�@B7%@9�ƽ�6����������S�K�������-|�S�X�K�3@y\�@��
A�#'A��;A,�YAG<vA�`nA�i^AV�IAX�AH��@0f�@��@�d�@��@�E�@=vA���@���@KD�@�/�@��@~1;@Z,�?s����x?��@<׏@	'�@-��@�_�@P��@##@���?Q�.?)��>���>��>'����>h
D?��?`��?�
@RT@�R�?A�>�`��c�*��C>��V�����8�)�-��g�� �1�mJ�ۅ>.O�?Z%b@�˚@3מ@C��@�Ԥ@�\�@β@PF�@B��@�(�@�*�@9�\@�ۡ>t���,����Ԇ�s���꿐�.�*f�����m���Ppi�$~�>&�?5h��Z�>r��Ô�������P�����3��=�?а�@P�@�͇@hf@|�<@���@�?�@���@���@��@6�@L�̾��$��"����QӁ��,������l���L�������q���?�b�?�eP@��A.� A�\@A��AAώAAB�1A52A��@#޼@Ϙi@˯�?�щ�����X��S��\Q������I��2:���]H���KeyAttrFlagsi!����-KeyAttrDataFloatf 



K�KeyAttrRefCounti��	AnimationCurveLH��-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimelH�%;h��d�Ye2	
KeyValueFloatf��?��?��?\	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCountiH	AnimationCurveL�*�-SAnimCurveS&		DefaultD>	KeyVerI�w	%KeyTimelH�%;h��d�Ye�	
KeyValueFloatf*C)�*C)�*C)��	KeyAttrFlagsi!	KeyAttrDataFloatf

;	KeyAttrRefCounti�	AnimationCurveL�"�-SAnimCurveS�		DefaultD�	KeyVerI��	%KeyTimelH�%;h��d�Ye"	
KeyValueFloatf��0���0���0�L	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCountiS
	AnimationCurveL��-SAnimCurveS		DefaultD i�6�.	KeyVerI�N	KeyTimel��x�}P�����\WFѺ薋Js[j�Jè�j�h��y��)�tQ����m�����Eθ��
5���Nvҵ������1�3���갱��̕����}�v�i6`��ۃ�?��7�м�	v�嗱�1�o����.��.�)[IsO.؃�!;.��М�G����k���4��ۈ����J$M�e�59�V=��[*�SV�J��"pD֍;��pb�u63��4z�uL�s��af���.J���Wc߁����wM(����g�w$iKFe�i�p�:�?`��ib��+Tc�.�^��a�\C�55�p���~\y%�-�����bG�X��;�_]�����o�1�+�Х��6��������ֽ�f���Ȥ��i�ZqۆY正-�V��w8 �wim~]u
��$?1�2X"�L띗���0q=�['�í��.,�p�n�������5�v,�-��H{DC���I�����e��ψ�¿�8�ڝ��v������Uo��h�f��,Ž.�C\��~v6ͱ��a��ko
,̡�<؊��-ǰfXw[;�:1F(�Y��ز�݇��Z�: .ٌ�WF���9���1c*{�M1��
Zz�����b¾�g}���fq.-����ޖ�o8-dfm�۟�Sǟ*pOfb9�i:�
��/�'<��k���ӼY�7����R��0�'4�۰+d8��֝�]��3`Gm��B�4x�)�9�;�mA��E��Zr	��N����U�\��|�.f��n���;��		5
KeyValueFloatf�(IS��4����'������Wf��t���$&��\ �^��@�=CA�lA�?A r�@��5@A翈����f�0��xN�zPX�X�i�yDp�RV7�LO���_��ُ�����-��O�M'…h��^���v����{$��d.��o�������_!�x�Y�+�{�k���������?5�:������9���?��Cn��X��F�Z�,�l�,��9@��`@�'�@����Q�i��%��4��: �����ˡ"�ǿ�
������/����fN��I���Z��PΜ���%��4���W����K���E�������:j�KM��O�tX4��i������9��@:0�6_Y�ݠ�߹�����"��a������jc��7T���
�^������)�m�f�ӓ��*ę��u�� ��^�W�b�'���p���g���N›��;�������|��/��	t�]�V@���@UgBA���@���@��
@�=��1!�g�?�)@P�]>��T�_z�?�h^@<�h@꫏@*˯@�?�@��@�p�@�		KeyAttrFlagsi!���
	-KeyAttrDataFloatf 



F
	KeyAttrRefCounti��	AnimationCurveLh#�-SAnimCurveS�
		DefaultD`[��?�
	KeyVerI��
	KeyTimel��x�}P�����\WFѺ薋Js[j�Jè�j�h��y��)�tQ����m�����Eθ��
5���Nvҵ������1�3���갱��̕����}�v�i6`��ۃ�?��7�м�	v�嗱�1�o����.��.�)[IsO.؃�!;.��М�G����k���4��ۈ����J$M�e�59�V=��[*�SV�J��"pD֍;��pb�u63��4z�uL�s��af���.J���Wc߁����wM(����g�w$iKFe�i�p�:�?`��ib��+Tc�.�^��a�\C�55�p���~\y%�-�����bG�X��;�_]�����o�1�+�Х��6��������ֽ�f���Ȥ��i�ZqۆY正-�V��w8 �wim~]u
��$?1�2X"�L띗���0q=�['�í��.,�p�n�������5�v,�-��H{DC���I�����e��ψ�¿�8�ڝ��v������Uo��h�f��,Ž.�C\��~v6ͱ��a��ko
,̡�<؊��-ǰfXw[;�:1F(�Y��ز�݇��Z�: .ٌ�WF���9���1c*{�M1��
Zz�����b¾�g}���fq.-����ޖ�o8-dfm�۟�Sǟ*pOfb9�i:�
��/�'<��k���ӼY�7����R��0�'4�۰+d8��֝�]��3`Gm��B�4x�)�9�;�mA��E��Zr	��N����U�\��|�.f��n���;�0	5
KeyValueFloatf�(ۚ�?��?�@���?\i?X�	?��l=�A�ax�=��M?�E1?O��=&J�=jw���~��˽��<Qm>��R>�1>�m=����*X��2���,��}F�X�ؼ�e�>�.q>�EZ�.[^�:�N�Ԥ$��rν
�W�j�ϱ>D�z>�J�>Uj>�U�>A��>�Ϻ=�d�=��?���?S�@\�4@�V@@J�6@��@9*�?Wg�>i��vˉ��B���Ⱦ~� >���=]��<�o�t�,�7Di�v�i��^��e��c��@;��^|ھV�����=AZ>[�>́%?��$?�?z�?/��>��>Y�~>��ü�!��uԾ�85��g�<�>�">%�>�)B?��?�@ٛA@ŸI@`^+@�#�?�|?���>n�<W᜽Dp�����%�оo��=[�>�A�>�K�>�y?�r�>>ð.=%��)��pɕ=��g>C�X>���=%�`�<��^�N��=��7?GEn?���>q�>&�����.�S������d�+2���f���F�ý?�i<�<�Po<<�/>�+N>^	KeyAttrFlagsi!����	-KeyAttrDataFloatf 



�	KeyAttrRefCounti�y	AnimationCurveL���-SAnimCurveS<		DefaultD�u-!@T	KeyVerI�t	KeyTimel��x�}P�����\WFѺ薋Js[j�Jè�j�h��y��)�tQ����m�����Eθ��
5���Nvҵ������1�3���갱��̕����}�v�i6`��ۃ�?��7�м�	v�嗱�1�o����.��.�)[IsO.؃�!;.��М�G����k���4��ۈ����J$M�e�59�V=��[*�SV�J��"pD֍;��pb�u63��4z�uL�s��af���.J���Wc߁����wM(����g�w$iKFe�i�p�:�?`��ib��+Tc�.�^��a�\C�55�p���~\y%�-�����bG�X��;�_]�����o�1�+�Х��6��������ֽ�f���Ȥ��i�ZqۆY正-�V��w8 �wim~]u
��$?1�2X"�L띗���0q=�['�í��.,�p�n�������5�v,�-��H{DC���I�����e��ψ�¿�8�ڝ��v������Uo��h�f��,Ž.�C\��~v6ͱ��a��ko
,̡�<؊��-ǰfXw[;�:1F(�Y��ز�݇��Z�: .ٌ�WF���9���1c*{�M1��
Zz�����b¾�g}���fq.-����ޖ�o8-dfm�۟�Sǟ*pOfb9�i:�
��/�'<��k���ӼY�7����R��0�'4�۰+d8��֝�]��3`Gm��B�4x�)�9�;�mA��E��Zr	��N����U�\��|�.f��n���;��	5
KeyValueFloatf�(�k	A��A3
AF'�@���@��@F��@�@�oy��-��l�v��]����Sܗ���?��L@�mf@܂<@xE�?�#B�URT�&����%������^�
rE>h�?3,@��@��?H�>,}>�ߓ�$�<.[�=8�/@pǺ@W(�@��@�d@{ee@��V@�þ�/�@�A�ZKA�x`A*�|Ai��Aۿ�AEϗA�.�A�ٟA�~�A�eA�A\ �@!�ܾ�P�W:ڿ0���q�^7��gx�ʆ��kp���;��Ϗh�t����@�Zl@,Sv@��@��@�Ö@�h�@��y@H@��!@�h?D 8��;���Y�R��Ztd�����N8@V`�@>AM�QA�_UA3�cA�KVA
�;AV�#A��A�7�@�@9@�q��~�~��8��@�?�p@�j@�w@;��@��Aʺ*@�D'��]=��`迟�\?�R@)35@i�b@�	>@��@\�?��
ˬ�{%��J�����?�h��=xnD@���@�>�@�߳@��@�)@���>;�ҿ��5�8�+��".��	KeyAttrFlagsi!���;	-KeyAttrDataFloatf 



l	KeyAttrRefCounti��	#MotionBuilder_SystemL���9SKTimeWarpManagerS�	Properties70	/PSMoBuTypeNameSKStringSSSBoxP	/PSMoBuSubTypeNameSKStringSSS�	BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager	.PSMoBuAttrBlindDataSBlobSSI	
BinaryDataRp�	2PSMoBuRelationBlindDataSBlobSSI}	
BinaryDataRp1	/MotionBuilder_GenericL I�9SFaceTime HD Camera (Display)S$	Properties70M	1PSMoBuTypeNameSKStringSSSVideo�	3PSMoBuSubTypeNameSKStringSSSLive�	UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)VideoY	ZPS
RecordPathScharptrSSS0C:\Users\bOb\Documents/_211_Run_JumpUpMedium_2Hands_Run-_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.	(PSRecordAudioSboolSSIc	'PS
CompressorSenumSSI�	.PSMoBuAttrBlindDataSBlobSSI��	�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI	2PSMoBuRelationBlindDataSBlobSSI
	
BinaryDataRp�$	0MotionBuilder_GenericL ��9SFaceTime HD Camera (Built-in)S�$	Properties70�	1PSMoBuTypeNameSKStringSSSVideo 	3PSMoBuSubTypeNameSKStringSSSLive� 	VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video�!	[PS
RecordPathScharptrSSS1C:\Users\bOb\Documents/_211_Run_JumpUpMedium_2Hands_Run-_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.avi"	#PSOnlineSboolSSIQ"	)PSResolutionFRSenumSSI�"	)PSRecordToFileSboolSSI�"	(PSRecordAudioSboolSSI�"	'PS
CompressorSenumSSI0$	.PSMoBuAttrBlindDataSBlobSSI�#$	�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI�$	2PSMoBuRelationBlindDataSBlobSSI�$	
BinaryDataRpF'	!MotionBuilder_GenericL��9SVideo Output 1S9'	Properties70\%	1PSMoBuTypeNameSKStringSSSVideo�%	5PSMoBuSubTypeNameSKStringSSSOutput�%	GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video'&	%PSDrawModeSenumSSI�&	.PSMoBuAttrBlindDataSBlobSSI)�&	.
BinaryDataR)p	UseMipMapI,'	2PSMoBuRelationBlindDataSBlobSSI'	
BinaryDataRp,	!MotionBuilder_SystemL�<�9SKVideoRendererS,	Properties70�'	2PSMoBuTypeNameSKStringSSSObject,(	=PSMoBuSubTypeNameSKStringSSSKVideoRendererz(	@PSMoBuObjectFullNameSKStringSSSKVideoRenderer�+	.PSMoBuAttrBlindDataSBlobSSI�z+	�
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�/	!MotionBuilder_SystemL���9SKSerialManagerS�/	Properties70�,	:PSMoBuTypeNameSKStringSSSKSerialManager�,	/PSMoBuSubTypeNameSKStringSSSF-	@PSMoBuObjectFullNameSKStringSSSKSerialManager/	.PSMoBuAttrBlindDataSBlobSSI`�.	e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI�/	2PSMoBuRelationBlindDataSBlobSSIu/	
BinaryDataRp3	#MotionBuilder_SystemL��9SKCharacterHelperS�2	Properties7070	0PSMoBuTypeNameSKStringSSSTool}0	8PSMoBuSubTypeNameSKStringSSS	Character�0	BPSMoBuObjectFullNameSKStringSSSKCharacterHelper@1	.PSMoBuAttrBlindDataSBlobSSI31	
BinaryDataRp�2	2PSMoBuRelationBlindDataSBlobSSID�2	I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEI�7	MotionBuilder_SystemLH�9SKNLEManagerS�7	Properties70�3	7PSMoBuTypeNameSKStringSSSKNLEManager�3	/PSMoBuSubTypeNameSKStringSSS,4	=PSMoBuObjectFullNameSKStringSSSKNLEManager7	.PSMoBuAttrBlindDataSBlobSSIs�6	x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5{7	2PSMoBuRelationBlindDataSBlobSSIn7	
BinaryDataRp�9	MotionBuilder_SystemL ��9SConstraintsS�9	Properties70-8	2PSMoBuTypeNameSKStringSSSFolderr8	7PSMoBuSubTypeNameSKStringSSSCategory�8	EPSMoBuObjectFullNameSKStringSSSConstraintsFolder_9	.PSMoBuAttrBlindDataSBlobSSI5R9	:
BinaryDataR5p(
FolderTypeSConstraints�9	2PSMoBuRelationBlindDataSBlobSSI�9	
BinaryDataRp%?	 MotionBuilder_SystemL���9S
KAudioManagerS?	Properties70�:	9PSMoBuTypeNameSKStringSSS
KAudioManager�:	/PSMoBuSubTypeNameSKStringSSS;	?PSMoBuObjectFullNameSKStringSSS
KAudioManager�>	.PSMoBuAttrBlindDataSBlobSSI�>	
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?	2PSMoBuRelationBlindDataSBlobSSI�>	
BinaryDataRp�A	(MotionBuilder_SystemL�Q�9SKMotionTriggerManagerS{A	Properties70�?	APSMoBuTypeNameSKStringSSSKMotionTriggerManager@	/PSMoBuSubTypeNameSKStringSSSh@	GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager�@	.PSMoBuAttrBlindDataSBlobSSI*�@	/
BinaryDataR*p
KEEPACTIVEInA	2PSMoBuRelationBlindDataSBlobSSIaA	
BinaryDataRpW	MotionBuilder_SystemL��9S
Story rootS�V	Properties70"B	5PSMoBuTypeNameSKStringSSS	TimelineX_B	/PSMoBuSubTypeNameSKStringSSS�B	FPSMoBuObjectFullNameSKStringSSSStory rootTimeline�B	"PSMutedSboolSSIC	#PSSoloedSboolSSIPC	.PSRecordClipPathScharptrSSS~C	 PSTracksSobjectSS�C	#PS	TimelinesSobjectSS�C	2PSQuaternionInterpolateSboolSSIGD	JPSRotationOffsetSColorRGBSColorSDDD�D	IPS
RotationPivotSColorRGBSColorSDDD�D	IPS
ScalingOffsetSColorRGBSColorSDDDKE	HPSScalingPivotSColorRGBSColorSDDD�E	.PSTranslationActiveSboolSSI�E	JPSTranslationMinSColorRGBSColorSDDD7F	JPSTranslationMaxSColorRGBSColorSDDDqF	,PSTranslationMinXSboolSSI�F	,PSTranslationMinYSboolSSI�F	,PSTranslationMinZSboolSSIG	,PSTranslationMaxXSboolSSIYG	,PSTranslationMaxYSboolSSI�G	,PSTranslationMaxZSboolSSI�G	*PS
RotationOrderSenumSSIH	6PSRotationSpaceForLimitOnlySboolSSIXH	;PSRotationStiffnessXSdoubleSNumberSD�H	;PSRotationStiffnessYSdoubleSNumberSD�H	;PSRotationStiffnessZSdoubleSNumberSD(I	0PSAxisLenSdoubleSNumberSD$@}I	GPSPreRotationSColorRGBSColorSDDD�I	HPSPostRotationSColorRGBSColorSDDDJ	+PSRotationActiveSboolSSIaJ	GPSRotationMinSColorRGBSColorSDDD�J	GPSRotationMaxSColorRGBSColorSDDD�J	)PSRotationMinXSboolSSI$K	)PSRotationMinYSboolSSI[K	)PSRotationMinZSboolSSI�K	)PSRotationMaxXSboolSSI�K	)PSRotationMaxYSboolSSIL	)PSRotationMaxZSboolSSI6L	(PSInheritTypeSenumSSInL	*PS
ScalingActiveSboolSSI�L	FPS
ScalingMinSColorRGBSColorSDDDM	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?LM	(PSScalingMinXSboolSSI�M	(PSScalingMinYSboolSSI�M	(PSScalingMinZSboolSSI�M	(PSScalingMaxXSboolSSI$N	(PSScalingMaxYSboolSSIZN	(PSScalingMaxZSboolSSI�N	PPSGeometricTranslationSColorRGBSColorSDDDO	MPSGeometricRotationSColorRGBSColorSDDDmO	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�O	6PS
MinDampRangeXSdoubleSNumberSD�O	6PS
MinDampRangeYSdoubleSNumberSD9P	6PS
MinDampRangeZSdoubleSNumberSD}P	6PS
MaxDampRangeXSdoubleSNumberSD�P	6PS
MaxDampRangeYSdoubleSNumberSDQ	6PS
MaxDampRangeZSdoubleSNumberSDLQ	9PSMinDampStrengthXSdoubleSNumberSD�Q	9PSMinDampStrengthYSdoubleSNumberSD�Q	9PSMinDampStrengthZSdoubleSNumberSD!R	9PSMaxDampStrengthXSdoubleSNumberSDhR	9PSMaxDampStrengthYSdoubleSNumberSD�R	9PSMaxDampStrengthZSdoubleSNumberSD�R	7PSPreferedAngleXSdoubleSNumberSD9S	7PSPreferedAngleYSdoubleSNumberSD~S	7PSPreferedAngleZSdoubleSNumberSD�S	!PSShowSboolSSI�S	8PSNegativePercentShapeSupportSboolSSILT	KPSLcl TranslationSColorRGBSColorSDDD�T	HPSLcl RotationSColorRGBSColorSDDD�T	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?8U	3PS
VisibilitySdoubleSNumberSD�?sV	.PSMoBuAttrBlindDataSBlobSSI�fV	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI�V	2PSMoBuRelationBlindDataSBlobSSI�V	
BinaryDataRp~l	MotionBuilder_SystemL��9S	Edit rootSql	Properties70�W	5PSMoBuTypeNameSKStringSSS	TimelineX�W	/PSMoBuSubTypeNameSKStringSSS-X	EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline]X	"PSMutedSboolSSI�X	#PSSoloedSboolSSI�X	.PSRecordClipPathScharptrSSS�X	 PSTracksSobjectSS)Y	#PS	TimelinesSobjectSSiY	2PSQuaternionInterpolateSboolSSI�Y	JPSRotationOffsetSColorRGBSColorSDDDZ	IPS
RotationPivotSColorRGBSColorSDDDoZ	IPS
ScalingOffsetSColorRGBSColorSDDD�Z	HPSScalingPivotSColorRGBSColorSDDD[	.PSTranslationActiveSboolSSIY[	JPSTranslationMinSColorRGBSColorSDDD�[	JPSTranslationMaxSColorRGBSColorSDDD�[	,PSTranslationMinXSboolSSI%\	,PSTranslationMinYSboolSSI_\	,PSTranslationMinZSboolSSI�\	,PSTranslationMaxXSboolSSI�\	,PSTranslationMaxYSboolSSI
]	,PSTranslationMaxZSboolSSIE]	*PS
RotationOrderSenumSSI�]	6PSRotationSpaceForLimitOnlySboolSSI�]	;PSRotationStiffnessXSdoubleSNumberSD^	;PSRotationStiffnessYSdoubleSNumberSDd^	;PSRotationStiffnessZSdoubleSNumberSD�^	0PSAxisLenSdoubleSNumberSD$@�^	GPSPreRotationSColorRGBSColorSDDDM_	HPSPostRotationSColorRGBSColorSDDD�_	+PSRotationActiveSboolSSI�_	GPSRotationMinSColorRGBSColorSDDD0`	GPSRotationMaxSColorRGBSColorSDDDg`	)PSRotationMinXSboolSSI�`	)PSRotationMinYSboolSSI�`	)PSRotationMinZSboolSSIa	)PSRotationMaxXSboolSSICa	)PSRotationMaxYSboolSSIza	)PSRotationMaxZSboolSSI�a	(PSInheritTypeSenumSSI�a	*PS
ScalingActiveSboolSSI<b	FPS
ScalingMinSColorRGBSColorSDDD�b	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�b	(PSScalingMinXSboolSSI�b	(PSScalingMinYSboolSSI2c	(PSScalingMinZSboolSSIhc	(PSScalingMaxXSboolSSI�c	(PSScalingMaxYSboolSSI�c	(PSScalingMaxZSboolSSI2d	PPSGeometricTranslationSColorRGBSColorSDDD�d	MPSGeometricRotationSColorRGBSColorSDDD�d	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?+e	6PS
MinDampRangeXSdoubleSNumberSDoe	6PS
MinDampRangeYSdoubleSNumberSD�e	6PS
MinDampRangeZSdoubleSNumberSD�e	6PS
MaxDampRangeXSdoubleSNumberSD;f	6PS
MaxDampRangeYSdoubleSNumberSDf	6PS
MaxDampRangeZSdoubleSNumberSD�f	9PSMinDampStrengthXSdoubleSNumberSD
g	9PSMinDampStrengthYSdoubleSNumberSDTg	9PSMinDampStrengthZSdoubleSNumberSD�g	9PSMaxDampStrengthXSdoubleSNumberSD�g	9PSMaxDampStrengthYSdoubleSNumberSD)h	9PSMaxDampStrengthZSdoubleSNumberSDnh	7PSPreferedAngleXSdoubleSNumberSD�h	7PSPreferedAngleYSdoubleSNumberSD�h	7PSPreferedAngleZSdoubleSNumberSD'i	!PSShowSboolSSImi	8PSNegativePercentShapeSupportSboolSSI�i	KPSLcl TranslationSColorRGBSColorSDDDj	HPSLcl RotationSColorRGBSColorSDDDqj	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�j	3PS
VisibilitySdoubleSNumberSD�?�k	.PSMoBuAttrBlindDataSBlobSSI��k	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightIdl	2PSMoBuRelationBlindDataSBlobSSIWl	
BinaryDataRp�o	$MotionBuilder_SystemL�;�9SKTimelineXManagerS�o	Properties70'm	=PSMoBuTypeNameSKStringSSSKTimelineXManagerdm	/PSMoBuSubTypeNameSKStringSSS�m	CPSMoBuObjectFullNameSKStringSSSKTimelineXManagero	.PSMoBuAttrBlindDataSBlobSSI��n	�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5|o	2PSMoBuRelationBlindDataSBlobSSIoo	
BinaryDataRp�q	MotionBuilder_SystemL���9SPosesS�q	Properties70(p	2PSMoBuTypeNameSKStringSSSFoldermp	7PSMoBuSubTypeNameSKStringSSSCategory�p	?PSMoBuObjectFullNameSKStringSSS
PosesFolderNq	.PSMoBuAttrBlindDataSBlobSSI/Aq	4
BinaryDataR/p"

FolderTypeSPoses�q	2PSMoBuRelationBlindDataSBlobSSI�q	
BinaryDataRp(t	MotionBuilder_SystemL���9STakesSt	Properties70qr	2PSMoBuTypeNameSKStringSSSFolder�r	7PSMoBuSubTypeNameSKStringSSSCategorys	?PSMoBuObjectFullNameSKStringSSS
TakesFolder�s	.PSMoBuAttrBlindDataSBlobSSI/�s	4
BinaryDataR/p"

FolderTypeSTakest	2PSMoBuRelationBlindDataSBlobSSIt	
BinaryDataRp
x	MotionBuilder_SystemL���9SGlobal LightSx	Properties70�t	9PSMoBuTypeNameSKStringSSS
GlobalShading
u	4PSMoBuSubTypeNameSKStringSSSLightVu	>PSMoBuObjectFullNameSKStringSSSGlobal Light�u	BPS
Ambient ColorSColorSSAD����?D����?D����?�u	>PS	Fog ColorSColorSSAD�?D�?D�?-v	-PS	Fog BeginSNumberSSAD@33�?fv	+PSFog EndSNumberSSAD@�@�v	/PSFog DensitySNumberSSAD@�v	$PSFogModeSenumSSI	w	&PS	FogEnableSboolSSI|w	.PSMoBuAttrBlindDataSBlobSSIow	
BinaryDataRp�w	2PSMoBuRelationBlindDataSBlobSSI�w	
BinaryDataRph}	MotionBuilder_SystemLP��9SRendererS[}	Properties70�x	4PSMoBuTypeNameSKStringSSSRenderer�x	6PSMoBuSubTypeNameSKStringSSSDefault:y	DPSMoBuObjectFullNameSKStringSSSRendererRenderersy	+PSFrustumCullingSboolSSI�y	*PS
DisplayNormalSboolSSI�y	/PSDisplayBoundingBoxSboolSSI1z	;PSDisplayHierarchicalBoundingBoxSboolSSIkz	,PSIDBufferPickingSboolSSI�z	=PSIDBufferPickingAlphaSdoubleSNumberSD�?�z	,PSIDBufferDisplaySboolSSI,{	.PSSelectionOverrideSboolSSI�{	FPSSelectionOverrideTransparencySdoubleSNumberSD�?�{	RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?%|	7PSCurrentCallbackIndexSintSIntegerSI����d|	1PSAdvancedMaterialModeSboolSSI�|	.PSMoBuAttrBlindDataSBlobSSI�|	
BinaryDataRpN}	2PSMoBuRelationBlindDataSBlobSSIA}	
BinaryDataRp3�	&MotionBuilder_SystemL�&�9SPython Tool ManagerS&�	Properties70
~	4PSMoBuTypeNameSKStringSSS__FBToolG~	/PSMoBuSubTypeNameSKStringSSS�~	EPSMoBuObjectFullNameSKStringSSSPython Tool Manager�~	'PSCaptionScharptrSSS	$PSEnabledSboolSSI4	%PSReadOnlySboolSSIf	$PSVisibleSboolSSI�	'PSLeftSintSIntegerSI�	&PSTopSintSIntegerSI�	(PSWidthSintSIntegerSI<�	)PSHeightSintSIntegerSIt�	*PSAnchorsSintSIntegerSI��	(PSSkinContextSenumSSI܀	$PSHintScharptrSSS�	)PS	HintMouseScharptrSSSQ�	0PS
HintMouseLeftSintSIntegerSI������	/PSHintMouseTopSintSIntegerSI����́	1PSHintMouseWidthSintSIntegerSI����
�	2PSHintMouseHeightSintSIntegerSI����L�	1PSHintIsTextCompletionSboolSSI}�	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS�	,PSBackgroundBrushSenumSSI(�	.PSBorderStyleSintSIntegerSIa�	+PSPositionSintSIntegerSI��	-PS
StartWSizeSintSIntegerSI�׃	-PS
StartHSizeSintSIntegerSI��	+PSMaxWSizeSintSIntegerSI����I�	+PSMaxHSizeSintSIntegerSI������	+PSMinWSizeSintSIntegerSI���	+PSMinHSizeSintSIntegerSI������	,PS	StartXPosSintSIntegerSI����/�	,PS	StartYPosSintSIntegerSI������	.PSMoBuAttrBlindDataSBlobSSI��	
BinaryDataRp�	2PSMoBuRelationBlindDataSBlobSSI�	
BinaryDataRp�	(MotionBuilder_SystemLp��9SBatch Tool (scripted)S��	Properties70׆	4PSMoBuTypeNameSKStringSSS__FBTool�	/PSMoBuSubTypeNameSKStringSSSi�	GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)��	'PSCaptionScharptrSSSЇ	$PSEnabledSboolSSI�	%PSReadOnlySboolSSI5�	$PSVisibleSboolSSIj�	'PSLeftSintSIntegerSI��	&PSTopSintSIntegerSIԈ	(PSWidthSintSIntegerSI�	)PSHeightSintSIntegerSIC�	*PSAnchorsSintSIntegerSIy�	(PSSkinContextSenumSSI��	$PSHintScharptrSSS�	)PS	HintMouseScharptrSSS �	0PS
HintMouseLeftSintSIntegerSI����]�	/PSHintMouseTopSintSIntegerSI������	1PSHintMouseWidthSintSIntegerSI����܊	2PSHintMouseHeightSintSIntegerSI�����	1PSHintIsTextCompletionSboolSSIL�	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS��	,PSBackgroundBrushSenumSSI��	.PSBorderStyleSintSIntegerSI0�	+PSPositionSintSIntegerSIk�	-PS
StartWSizeSintSIntegerSI��	-PS
StartHSizeSintSIntegerSImߌ	+PSMaxWSizeSintSIntegerSI�����	+PSMaxHSizeSintSIntegerSI����Q�	+PSMinWSizeSintSIntegerSI���	+PSMinHSizeSintSIntegerSI����č	,PS	StartXPosSintSIntegerSI������	,PS	StartYPosSintSIntegerSI����q�	.PSMoBuAttrBlindDataSBlobSSId�	
BinaryDataRp�	2PSMoBuRelationBlindDataSBlobSSIێ	
BinaryDataRp�	3MotionBuilder_SystemL`��9S Character Selection/Key ControlsSڗ	Properties70��	4PSMoBuTypeNameSKStringSSS__FBTool�	/PSMoBuSubTypeNameSKStringSSSN�	RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls��	'PSCaptionScharptrSSS��	$PSEnabledSboolSSI�	%PSReadOnlySboolSSI�	$PSVisibleSboolSSIO�	'PSLeftSintSIntegerSI��	&PSTopSintSIntegerSI��	(PSWidthSintSIntegerSI�	)PSHeightSintSIntegerSI(�	*PSAnchorsSintSIntegerSI^�	(PSSkinContextSenumSSI��	$PSHintScharptrSSSǒ	)PS	HintMouseScharptrSSS�	0PS
HintMouseLeftSintSIntegerSI����B�	/PSHintMouseTopSintSIntegerSI������	1PSHintMouseWidthSintSIntegerSI������	2PSHintMouseHeightSintSIntegerSI�����	1PSHintIsTextCompletionSboolSSI1�	#PSActiveSboolSSIf�	'PS
ActiveControlSobjectSS��	,PSBackgroundBrushSenumSSIܔ	.PSBorderStyleSintSIntegerSI�	+PSPositionSintSIntegerSIP�	-PS
StartWSizeSintSIntegerSI���	-PS
StartHSizeSintSIntegerSIxĕ	+PSMaxWSizeSintSIntegerSI������	+PSMaxHSizeSintSIntegerSI����6�	+PSMinWSizeSintSIntegerSI�o�	+PSMinHSizeSintSIntegerSI������	,PS	StartXPosSintSIntegerSI�����	,PS	StartYPosSintSIntegerSI����V�	.PSMoBuAttrBlindDataSBlobSSII�	
BinaryDataRp͗	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	MotionBuilder_SystemL���9S
FBX ExportS��	Properties70��	4PSMoBuTypeNameSKStringSSS__FBTool��	/PSMoBuSubTypeNameSKStringSSS�	<PSMoBuObjectFullNameSKStringSSS
FBX Export<�	'PSCaptionScharptrSSSn�	$PSEnabledSboolSSI��	%PSReadOnlySboolSSIә	$PSVisibleSboolSSI�	'PSLeftSintSIntegerSI<�	&PSTopSintSIntegerSIr�	(PSWidthSintSIntegerSI��	)PSHeightSintSIntegerSI�	*PSAnchorsSintSIntegerSI�	(PSSkinContextSenumSSII�	$PSHintScharptrSSS��	)PS	HintMouseScharptrSSS��	0PS
HintMouseLeftSintSIntegerSI������	/PSHintMouseTopSintSIntegerSI����:�	1PSHintMouseWidthSintSIntegerSI����z�	2PSHintMouseHeightSintSIntegerSI������	1PSHintIsTextCompletionSboolSSI�	#PSActiveSboolSSI�	'PS
ActiveControlSobjectSSY�	,PSBackgroundBrushSenumSSI��	.PSBorderStyleSintSIntegerSIΝ	+PSPositionSintSIntegerSI	�	-PS
StartWSizeSintSIntegerSI^D�	-PS
StartHSizeSintSIntegerSI�}�	+PSMaxWSizeSintSIntegerSI������	+PSMaxHSizeSintSIntegerSI�����	+PSMinWSizeSintSIntegerSI�(�	+PSMinHSizeSintSIntegerSI����b�	,PS	StartXPosSintSIntegerSI������	,PS	StartYPosSintSIntegerSI�����	.PSMoBuAttrBlindDataSBlobSSI�	
BinaryDataRp��	2PSMoBuRelationBlindDataSBlobSSIy�	
BinaryDataRp��	 MotionBuilder_SystemL�,�9S
HierarchyViewS��	Properties70C�	;PSMoBuTypeNameSKStringSSSKtHierarchyView��	/PSMoBuSubTypeNameSKStringSSS͡	?PSMoBuObjectFullNameSKStringSSS
HierarchyView�	.PSMoBuAttrBlindDataSBlobSSI�%��	�%
BinaryDataR�%p�%
HierarchyView5ShowGridI�%ObjectsAttributes�NameSReferenceModel�	XDؖ��	YDI@�ExpandedIDNameSHipsModel	XDؖ�	YDY@7ExpandedI�NameSSpineModel}	XDL���	YD�b@�ExpandedI2NameSChestModel�	XD���	YDi@%ExpandedI�NameSNeckModelj	XDL���	YD@o@�ExpandedINameSHeadModel�	XD����	YD�r@ExpandedI�NameSLeftEyeModelY	XDu��p	YD�v@�ExpandedINameSRightEyeModel�	XD*���	YD�u@ExpandedI�NameS
JawModelH	XD���_	YD�v@yExpandedINameSTongueBackModel�	XD߱��	YDz@�ExpandedI}NameSTongueTipModel?	XD���V	YDy@pExpandedI�NameSLeftLipLowerModel�	XDI���	YDz@�ExpandedIsNameS
JawENDModel5	XD���L	YDy@fExpandedI�NameSRightLipLowerModel�	XD����	YDz@�ExpandedIrNameSRightLipCornerModel4	XDh��K	YDy@eExpandedI�NameSLeftLipCornerModel�	XD���	YDz@�ExpandedIoNameSLeftLipUpperModel1	XDx��H	YD�u@bExpandedI�NameSLeftNostrilModel�	XD���	YD�v@�ExpandedIg	NameSLeftCheekModel)		XDL��@		YD�u@Z	ExpandedI�	NameSLeftEyelidLowerModel�		XD����		YD�v@�	ExpandedIi
NameSLeftEyelidUpperModel+
	XD ��B
	YD�u@\
ExpandedI�
NameSLeftInnerBrowModel�
	XD����
	YD�v@�
ExpandedIhNameSLeftIOuterBrowModel*	XD���A	YD�u@[ExpandedI�NameSRightInnerBrowModel�	XD^���	YD�v@�ExpandedIiNameSRightIOuterBrowModel+	XDȩ�B	YD�u@\ExpandedI�NameSRightEyelidUpperModel�	XD2���	YD�v@�ExpandedIm
NameSRightEyelidLowerModel/
	XD���F
	YD�u@`
ExpandedI�
NameSRightCheekModel�
	XD���
	YD�v@�
ExpandedIgNameSRightNostrilModel)	XDp��@	YD�u@ZExpandedI�NameSRightLipUpperModel�	XDڦ��	YD�v@�ExpandedIeNameSRightShoulderModel'	XD���>	YD�p@XExpandedI�NameSRightArmModel�	XD ���	YD�s@�ExpandedI]NameSRightForeArmModel	XD���6	YD�v@PExpandedI�NameSRightHandModel�	XDL���	YDz@�ExpandedIYNameSRightHandPinky1Model	XD���2	YD }@LExpandedI�NameSRightHandPinky2Model�	XD���	YD �@�ExpandedI[NameSRightHandPinky3Model	XD6��4	YD��@NExpandedI�NameSRightHandRing1Model�	XDH���	YD |@�ExpandedI[NameSRightHandRing2Model	XD���4	YD@@NExpandedI�NameSRightHandRing3Model�	XDޡ��	YD0�@�ExpandedI]NameSRightHandMiddle1Model	XD���6	YD }@PExpandedI�NameSRightHandMiddle2Model�	XDx���	YD �@�ExpandedIaNameSRightHandMiddle3Model#	XD��:	YD��@TExpandedI�NameSRightHandIndex1Model�	XD0���	YD |@�ExpandedIcNameSRightHandIndex2Model%	XDș�<	YD@@VExpandedI�NameSRightHandIndex3Model�	XD\���	YD0�@�ExpandedIeNameSRightHandThumb1Model'	XD���>	YD }@XExpandedI�NameSRightHandThumb2Model�	XD���	YD �@�ExpandedIgNameSRightHandThumb3Model)	XD���@	YD��@ZExpandedI�NameSLeftShoulderModel�	XD@\@�	YD�p@�ExpandedI^NameSLeftArmModel 	XD�R@7	YD�s@QExpandedI�NameSLeftForeArmModel�	XDC@�	YD�v@�ExpandedIUNameSLeftHandModel	XD.	YDz@HExpandedI�NameSLeftHandPinky1Model�	XD���	YD }@�ExpandedIUNameSLeftHandPinky2Model	XD��.	YD �@HExpandedI�NameSLeftHandPinky3Model�	XD@���	YD��@�ExpandedITNameSLeftHandRing1Model	XDu�-	YD |@GExpandedI�NameSLeftHandRing2Model�	XDpw��	YD@@�ExpandedIRNameSLeftHandRing3Model	XD�y�+	YD0�@EExpandedI�NameSLeftHandMiddle1Model�	XD�B��	YD }@�ExpandedITNameSLeftHandMiddle2Model	XD�R�-	YD �@GExpandedI�NameSLeftHandMiddle3Model�	XD\��	YD��@�ExpandedIUNameSLeftHandIndex1Model	XDpp@.	YD |@HExpandedI�NameSLeftHandIndex2Model�	XD l@�	YD@@�ExpandedIU NameSLeftHandIndex3Model 	XD�g@. 	YD0�@H ExpandedI� NameSLeftHandThumb1Model� 	XD��@� 	YD }@� ExpandedIU!NameSLeftHandThumb2Model!	XDh�@.!	YD �@H!ExpandedI�!NameSLeftHandThumb3Model�!	XD�~@�!	YD��@�!ExpandedIQ"NameSRightUpLegModel"	XD�@*"	YD�d@D"ExpandedI�"NameSRightLegModel�"	XDX�@�"	YDk@�"ExpandedIF#NameSRightFootModel#	XD��@#	YD�p@9#ExpandedI�#NameSRightToesModel�#	XD,�@�#	YD�s@�#ExpandedI<$NameSLeftUpLegModel�#	XD��@$	YD�d@/$ExpandedI�$NameSLeftLegModelw$	XD`�@�$	YDk@�$ExpandedI/%NameSLeftFootModel�$	XDș@%	YD�p@"%ExpandedI�%NameSLeftToesModelk%	XD4�@�%	YD�s@�%ExpandedIy�	2PSMoBuRelationBlindDataSBlobSSIl�	
BinaryDataRp��	MotionBuilder_SystemL���9S	TransportS��	Properties70#�	,PSMoBuTypeNameSKStringSSS`�	/PSMoBuSubTypeNameSKStringSSS��	;PSMoBuObjectFullNameSKStringSSS	Transport��	'PSCaptionScharptrSSS�	$PSEnabledSboolSSIC�	%PSReadOnlySboolSSIu�	$PSVisibleSboolSSI��	'PSLeftSintSIntegerSI��	&PSTopSintSIntegerSI�	(PSWidthSintSIntegerSIK�	)PSHeightSintSIntegerSI��	*PSAnchorsSintSIntegerSI��	(PSSkinContextSenumSSI��	$PSHintScharptrSSS"�	)PS	HintMouseScharptrSSS`�	0PS
HintMouseLeftSintSIntegerSI������	/PSHintMouseTopSintSIntegerSI������	1PSHintMouseWidthSintSIntegerSI�����	2PSHintMouseHeightSintSIntegerSI����[�	1PSHintIsTextCompletionSboolSSI��	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS��	,PSBackgroundBrushSenumSSI7�	.PSBorderStyleSintSIntegerSIp�	+PSPositionSintSIntegerSI#�	.PSMoBuAttrBlindDataSBlobSSIN�	S
BinaryDataRNpATransport Tool Settings�ZoomBar Settings� _211_Run_JumpUpMedium_2Hands_Run�ZoomWindowModeI�ZoomWindowTimeLLp6��5�Audio Display SettingsAudioDisplayI6
AudioClipNameSVAudioTrackNameS~AudioLeftChannelActiveI�AudioRightChannelActiveI4Settings�
TimeFormatISnapOnFramesI'ReferenceTimeIndexI������	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	MotionBuilder_SystemLȲ�9SFCurveS��	Properties70A�	,PSMoBuTypeNameSKStringSSS~�	/PSMoBuSubTypeNameSKStringSSS��	8PSMoBuObjectFullNameSKStringSSSFCurve��	'PSCaptionScharptrSSS+�	$PSEnabledSboolSSI^�	%PSReadOnlySboolSSI��	$PSVisibleSboolSSI��	'PSLeftSintSIntegerSI��	&PSTopSintSIntegerSI/�	(PSWidthSintSIntegerSIf�	)PSHeightSintSIntegerSI��	*PSAnchorsSintSIntegerSI��	(PSSkinContextSenumSSI�	$PSHintScharptrSSS=�	)PS	HintMouseScharptrSSS{�	0PS
HintMouseLeftSintSIntegerSI������	/PSHintMouseTopSintSIntegerSI������	1PSHintMouseWidthSintSIntegerSI����7�	2PSHintMouseHeightSintSIntegerSI����v�	1PSHintIsTextCompletionSboolSSI��	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS�	,PSBackgroundBrushSenumSSIR�	.PSBorderStyleSintSIntegerSI��	+PSPositionSintSIntegerSI:�	.PSMoBuAttrBlindDataSBlobSSIJ-�	O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	MotionBuilder_GenericL���9S
GlobalInfoS��	Properties70f�	5PSMoBuTypeNameSKStringSSS	SceneInfo��	7PSMoBuSubTypeNameSKStringSSSUserData�	GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo\�	.PSMoBuAttrBlindDataSBlobSSI�O�	�
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRpM
Connections9�	CSOOLHT;L`�	CSOOL��;L 8v)��	CSOOL���;LPVv)��	CSOOL��;LHQv)��	CSOOL0\�;L(=v)��	CSOOL��;L0Bv)#�	CSOOL͘;L8Gv)J�	CSOOLP�;L.v)q�	CSOOL��9L@O;��	CSOOLث�:L���9��	CSOOL�?�:L���9��	CSOOL��:L���9
�	CSOOL�ą:L���94�	CSOOL�G�:L���9[�	CSOOL��:L���9��	CSOOL=�:L���9��	CSOOL�i�:L���9��	CSOOL��:L���9��	CSOOL8��:L���9�	CSOOL���:L���9E�	CSOOL���:L���9l�	CSOOL ��:L���9��	CSOOL�ʅ:L���9��	CSOOLh�:L���9��	CSOOLЭ�:L���9�	CSOOL0r�:L���9/�	CSOOL�;�:L���9V�	CSOOL0��:L���9}�	CSOOL�+�:L���9��	CSOOL@��:L���9��	CSOOL`҅:L���9��	CSOOL�|�:L���9�	CSOOL�c�:L���9@�	CSOOL�A�:L���9g�	CSOOL�m�:L���9��	CSOOL��:L���9��	CSOOL�:L���9��	CSOOL0<�:L���9�	CSOOLࠅ:L���9*�	CSOOL`�q;L���9Q�	CSOOL�r;L���9x�	CSOOL �r;L���9��	CSOOL�q;L���9��	CSOOL��q;L���9��	CSOOL(�q;L���9�	CSOOL��q;L���9;�	CSOOL��r;L���9b�	CSOOLx�r;L���9��	CSOOLH}r;L���9��	CSOOL�r;L���9��	CSOOL�{r;L���9��	CSOOL��q;L���9%�	CSOOL Hr;L���9L�	CSOOL�Nr;L���9s�	CSOOL�qr;L���9��	CSOOL�xr;L���9��	CSOOL�rr;L���9��	CSOOL@mr;L���9�	CSOOL0qr;L���96�	CSOOL(jr;L���9]�	CSOOL�dr;L���9��	CSOOL�hr;L���9��	CSOOL�ar;L���9��	CSOOL`\r;L���9��	CSOOLP`r;L���9 �	CSOOLHYr;L���9G�	CSOOL�Sr;L���9n�	CSOOL�Wr;L���9��	CSOOL�Pr;L���9��	CSOOL�Ir;L���9��	CSOOLHr;L���9
�	CSOOLxr;L���91�	CSOOL�r;L���9X�	CSOOLAr;L���9�	CSOOL�Br;L���9��	CSOOL 6r;L���9��	CSOOL�7r;L���9��	CSOOL:r;L���9�	CSOOL�-r;L���9B�	CSOOL/r;L���9i�	CSOOL�1r;L���9��	CSOOL@%r;L���9��	CSOOL�&r;L���9��	CSOOL0)r;L���9�	CSOOL�r;L���9,�	CSOOL8r;L���9S�	CSOOL� r;L���9z�	CSOOL�r;L���9��	CSOOL�r;L���9��	CSOOLp�q;L���9��	CSOOL�r;L���9�	CSOOL�r;L���9=�	CSOOL 	r;L���9d�	CSOOLPr;L���9��	CSOOL�r;L���9��	CSOOL�r;L���9��	CSOOL��q;L���9�	CSOOL�q;L���9'�	CSOOL��q;L���9N�	CSOOL��q;L���9u�	CSOOL�q;L���9��	CSOOL8�q;L���9��	CSOOLh�q;L���9��	CSOOLx�:LHT;�	CSOOLPY;LHT;8�	CSOOLx�:LPY;_�	CSOOLX^;LPY;��	CSOOL�C:LPY;��	CSOOL:LPY;��	-CSOPLث�:LPY;SLcl Translation �	*CSOPL�?�:LPY;SLcl RotationG�	CSOOLx$:LX^;n�	CSOOL`c;LX^;��	-CSOPL��:LX^;SLcl Translation��	*CSOPL�ą:LX^;SLcl Rotation�	CSOOL8�:L`c;/�	CSOOLhh;L`c;V�	CSOOL��:L`c;}�	CSOOL 2U:L`c;��	CSOOL8L:Lhh;��	CSOOLpm;Lhh;�	-CSOPL�G�:Lhh;SLcl Translation>�	*CSOPL��:Lhh;SLcl Rotatione�	CSOOL�<:Lpm;��	CSOOLxr;Lpm;��	CSOOL�w;Lpm;��	CSOOL�|;Lpm;�	CSOOL@�:Lpm;(�	CSOOLH�:Lpm;O�	CSOOLP�:Lpm;v�	CSOOLX�:Lpm;��	CSOOL`�:Lpm;��	CSOOLh�:Lpm;��	CSOOLp�:Lpm;�	CSOOL�s�:Lpm;9�	CSOOL�x�:Lpm;`�	CSOOL�}�:Lpm;��	CSOOL���:Lpm;��	CSOOL���:Lpm;��	CSOOL��:Lpm;��	CSOOL��:Lpm;7�	-CSOPL=�:Lpm;SLcl Translationo�	*CSOPL�i�:Lpm;SLcl Rotation��	CSOOLx�:Lxr;��	CSOOL�:L�w;��	CSOOL8�:L�|;�	CSOOL��;L�|;2�	CSOOL��;L�|;Y�	CSOOL�:L�|;��	CSOOL �:L�|;��	CSOOL(�:L�|;��	CSOOL0�:L�|;��	CSOOL8�:L�|;�	CSOOL��:L��;C�	CSOOL�.:L��;j�	CSOOLx�:L�:��	CSOOLx�:L �:��	CSOOL�]:L(�:��	CSOOL�N:L0�:�	CSOOL�?:L8�:-�	CSOOL8:L@�:T�	CSOOLx�:LH�:{�	CSOOL��:LP�:��	CSOOL��:LX�:��	CSOOL8-:L`�:��	CSOOL8�:Lh�:�	CSOOL8B:Lp�:>�	CSOOL8*:L�s�:e�	CSOOLx�:L�x�:��	CSOOL�b:L�}�:��	CSOOLx�:L���:��	CSOOL8_:L���:�	CSOOL�>:L��:(�	CSOOL8~:L��:O�	CSOOLx�:L��:v�	CSOOL��:L��:��	-CSOPL��:L��:SLcl Translation��	*CSOPL8��:L��:SLcl Rotation�	CSOOL��:L��:7�	CSOOL ��:L��:r�	-CSOPL���:L��:SLcl Translation��	*CSOPL���:L��:SLcl Rotation��	CSOOLx:L ��:��	CSOOL(��:L ��:3�	-CSOPL ��:L ��:SLcl Translationk�	*CSOPL�ʅ:L ��:SLcl Rotation��	CSOOL�L:L(��:��	CSOOL0��:L(��:��	CSOOL�	d:L(��:�	CSOOL�d:L(��:.�	CSOOL(d:L(��:U�	CSOOL(7d:L(��:��	-CSOPLh�:L(��:SLcl Translation��	*CSOPLЭ�:L(��:SLcl Rotation��	CSOOLx:L0��:�	CSOOL��c:L0��:Q�	-CSOPL0r�:L0��:SLcl Translation��	*CSOPL�;�:L0��:SLcl Rotation��	CSOOLxh:L��c:��	CSOOL�d:L��c:�	-CSOPL0��:L��c:SLcl TranslationJ�	*CSOPL�+�:L��c:SLcl Rotationq�	CSOOL��:L�d:��	-CSOPL@��:L�d:SLcl Translation��	*CSOPL`҅:L�d:SLcl Rotation�	CSOOL�:L�	d:2�	CSOOL�d:L�	d:m�	-CSOPL�|�:L�	d:SLcl Translation��	*CSOPL�c�:L�	d:SLcl Rotation��	CSOOL�:L�d:��	CSOOL�d:L�d:.�	-CSOPL�A�:L�d:SLcl Translationf�	*CSOPL�m�:L�d:SLcl Rotation��	CSOOL8�:L�d:��	-CSOPL��:L�d:SLcl Translation
*CSOPL�:L�d:SLcl Rotation'
CSOOL�c:L�d:N
CSOOLd:L�d:�
-CSOPL0<�:L�d:SLcl Translation�
*CSOPLࠅ:L�d:SLcl Rotation�
CSOOL��:Ld:
CSOOL#d:Ld:J
-CSOPL`�q;Ld:SLcl Translation�
*CSOPL�r;Ld:SLcl Rotation�
CSOOL�N:L#d:�
-CSOPL �r;L#d:SLcl Translation
*CSOPL�q;L#d:SLcl RotationC
CSOOL��:L(d:j
CSOOL-d:L(d:�
-CSOPL��q;L(d:SLcl Translation�
*CSOPL(�q;L(d:SLcl Rotation
CSOOL��:L-d:+
CSOOL 2d:L-d:f
-CSOPL��q;L-d:SLcl Translation�
*CSOPL��r;L-d:SLcl Rotation�
CSOOL�o:L 2d:
-CSOPLx�r;L 2d:SLcl Translation8
*CSOPLH}r;L 2d:SLcl Rotation_
CSOOL�j:L(7d:�
CSOOL(U:L(7d:�
-CSOPL�r;L(7d:SLcl Translation�
*CSOPL�{r;L(7d:SLcl Rotation 
CSOOL�j:L(U:G
CSOOL-U:L(U:�
-CSOPL��q;L(U:SLcl Translation�
*CSOPL Hr;L(U:SLcl Rotation�
CSOOL8:L-U:
-CSOPL�Nr;L-U:SLcl TranslationC
CSOOLx�:L 2U:j
CSOOL(7U:L 2U:�
-CSOPL�qr;L 2U:SLcl Translation�
*CSOPL�xr;L 2U:SLcl Rotation
CSOOL��:L(7U:+
CSOOL0<U:L(7U:f
-CSOPL�rr;L(7U:SLcl Translation�
*CSOPL@mr;L(7U:SLcl Rotation�
CSOOL�U:L0<U:�
CSOOL8AU:L0<U:'
-CSOPL0qr;L0<U:SLcl Translation_
*CSOPL(jr;L0<U:SLcl Rotation�
CSOOL�o:L8AU:�
CSOOL@FU:L8AU:�
CSOOLXUU:L8AU:�
CSOOL��B:L8AU:"	
CSOOL��B:L8AU:I	
CSOOL��B:L8AU:�	
-CSOPL�dr;L8AU:SLcl Translation�	
*CSOPL�hr;L8AU:SLcl Rotation�	
CSOOL8<:L@FU:


CSOOLHKU:L@FU:E

-CSOPL�ar;L@FU:SLcl Translation}

*CSOPL`\r;L@FU:SLcl Rotation�

CSOOL84:LHKU:�

CSOOLPPU:LHKU:
-CSOPLP`r;LHKU:SLcl Translation>
*CSOPLHYr;LHKU:SLcl Rotatione
CSOOL�_:LPPU:�
-CSOPL�Sr;LPPU:SLcl Translation�
*CSOPL�Wr;LPPU:SLcl Rotation�
CSOOLx�:LXUU:&
CSOOL`ZU:LXUU:a
-CSOPL�Pr;LXUU:SLcl Translation�
*CSOPL�Ir;LXUU:SLcl Rotation�
CSOOL�Z:L`ZU:�
CSOOLh_U:L`ZU:"
-CSOPLHr;L`ZU:SLcl TranslationZ
*CSOPLxr;L`ZU:SLcl Rotation�
CSOOL8�:Lh_U:�
-CSOPL�r;Lh_U:SLcl Translation�
*CSOPLAr;Lh_U:SLcl Rotation
CSOOL8�:L��B:B
CSOOL��B:L��B:}
-CSOPL�Br;L��B:SLcl Translation�
*CSOPL 6r;L��B:SLcl Rotation�
CSOOL�$:L��B:
CSOOL��B:L��B:>
-CSOPL�7r;L��B:SLcl Translationv
*CSOPL:r;L��B:SLcl Rotation�
CSOOL�t:L��B:�
-CSOPL�-r;L��B:SLcl Translation
*CSOPL/r;L��B:SLcl Rotation7
CSOOL8x:L��B:^
CSOOL��B:L��B:�
-CSOPL�1r;L��B:SLcl Translation�
*CSOPL@%r;L��B:SLcl Rotation�
CSOOLx�:L��B:
CSOOL��B:L��B:Z
-CSOPL�&r;L��B:SLcl Translation�
*CSOPL0)r;L��B:SLcl Rotation�
CSOOL�:L��B:�
-CSOPL�r;L��B:SLcl Translation,
*CSOPL8r;L��B:SLcl RotationS
CSOOL8U:L��B:z
CSOOL��B:L��B:�
-CSOPL� r;L��B:SLcl Translation�
*CSOPL�r;L��B:SLcl Rotation
CSOOL�n:L��B:;
CSOOL�C:L��B:v
-CSOPL�r;L��B:SLcl Translation�
*CSOPLp�q;L��B:SLcl Rotation�
CSOOL��:L�C:
-CSOPL�r;L�C:SLcl Translation7
CSOOL8�:L�C:^
CSOOL
C:L�C:�
-CSOPL�r;L�C:SLcl Translation�
*CSOPL 	r;L�C:SLcl Rotation�
CSOOL8^:L
C:
CSOOLC:L
C:Z
-CSOPLPr;L
C:SLcl Translation�
*CSOPL�r;L
C:SLcl Rotation�
CSOOL�!:LC:�
CSOOL�:LC:
-CSOPL�r;LC:SLcl TranslationS
*CSOPL��q;LC:SLcl Rotationz
CSOOL�Q:L�:�
CSOOLxv:L:�
CSOOL:L:
-CSOPL�q;L:SLcl Translation;
*CSOPL��q;L:SLcl Rotationb
CSOOL��:L:�
CSOOL:L:�
-CSOPL��q;L:SLcl Translation�
*CSOPL�q;L:SLcl Rotation#
CSOOL�]:L:J
CSOOL:L:�
-CSOPL8�q;L:SLcl Translation�
*CSOPLh�q;L:SLcl Rotation�
CSOOL8�:L:
CSOOL���9L��Z:2
CSOOLx��9L��Z:a
!CSOPL���-Lث�:Sd|X�
!CSOPL���-Lث�:Sd|Y�
!CSOPLȺ�-Lث�:Sd|Z�
!CSOPL�o�-L�?�:Sd|X
!CSOPLx>�-L�?�:Sd|YL
!CSOPL8x�-L�?�:Sd|Z{
!CSOPL��-L��:Sd|X�
!CSOPLx�-L��:Sd|Y�
!CSOPLx��-L��:Sd|Z
!CSOPL���-L�ą:Sd|X7
!CSOPL��-L�ą:Sd|Yf
!CSOPLء�-L�ą:Sd|Z�
!CSOPL�e�-L�G�:Sd|X�
!CSOPL���-L�G�:Sd|Y�
!CSOPL���-L�G�:Sd|Z"
!CSOPL��-L��:Sd|XQ
!CSOPL���-L��:Sd|Y�
!CSOPL���-L��:Sd|Z�
!CSOPL�3�-L=�:Sd|X�
!CSOPLh��-L=�:Sd|Y

!CSOPLH��-L=�:Sd|Z<
!CSOPL>�-L�i�:Sd|Xk
!CSOPL�l�-L�i�:Sd|Y�
!CSOPL(��-L�i�:Sd|Z�
!CSOPL�>�-L��:Sd|X�
!CSOPL�o�-L��:Sd|Y'
!CSOPLX��-L��:Sd|ZV
!CSOPLh2�-L8��:Sd|X�
!CSOPLH
�-L8��:Sd|Y�
!CSOPLح�-L8��:Sd|Z�
!CSOPLX�-L���:Sd|X
!CSOPL���-L���:Sd|YA
!CSOPLx��-L���:Sd|Zp
!CSOPL8��-L���:Sd|X�
!CSOPL���-L���:Sd|Y�
!CSOPL��-L���:Sd|Z�
!CSOPLX��-L ��:Sd|X, 
!CSOPL�-L ��:Sd|Y[ 
!CSOPL��-L ��:Sd|Z� 
!CSOPL��-L�ʅ:Sd|X� 
!CSOPLX��-L�ʅ:Sd|Y� 
!CSOPLx��-L�ʅ:Sd|Z!
!CSOPLh��-Lh�:Sd|XF!
!CSOPL�6�-Lh�:Sd|Yu!
!CSOPL(��-Lh�:Sd|Z�!
!CSOPL���-L�:Sd|X�!
!CSOPL8��-L�:Sd|Y"
!CSOPL�u�-L�:Sd|Z1"
!CSOPL�7�-L0r�:Sd|X`"
!CSOPL���-L0r�:Sd|Y�"
!CSOPL�H�-L0r�:Sd|Z�"
!CSOPL��-L�;�:Sd|X�"
!CSOPL�A�-L�;�:Sd|Y#
!CSOPL���-L�;�:Sd|ZK#
!CSOPLK�-L0��:Sd|Xz#
!CSOPL���-L0��:Sd|Y�#
!CSOPL��-L0��:Sd|Z�#
!CSOPL���-L�+�:Sd|X$
!CSOPL��-L�+�:Sd|Y6$
!CSOPLx��-L�+�:Sd|Ze$
!CSOPL���-L@��:Sd|X�$
!CSOPL�c�-L@��:Sd|Y�$
!CSOPL�g�-L@��:Sd|Z�$
!CSOPLع�-L`҅:Sd|X!%
!CSOPL�k�-L`҅:Sd|YP%
!CSOPL�Z�-L`҅:Sd|Z%
!CSOPL��-L�|�:Sd|X�%
!CSOPL���-L�|�:Sd|Y�%
!CSOPL��-L�|�:Sd|Z&
!CSOPL���-L�c�:Sd|X;&
!CSOPLx��-L�c�:Sd|Yj&
!CSOPL���-L�c�:Sd|Z�&
!CSOPL�`�-L�A�:Sd|X�&
!CSOPL�?�-L�A�:Sd|Y�&
!CSOPLHw�-L�A�:Sd|Z&'
!CSOPL��-L�m�:Sd|XU'
!CSOPLX��-L�m�:Sd|Y�'
!CSOPLH��-L�m�:Sd|Z�'
!CSOPL���-L��:Sd|X�'
!CSOPL�d�-L��:Sd|Y(
!CSOPL�F�-L��:Sd|Z@(
!CSOPL;�-L�:Sd|Xo(
!CSOPL��-L�:Sd|Y�(
!CSOPL���-L�:Sd|Z�(
!CSOPL��-L0<�:Sd|X�(
!CSOPLh��-L0<�:Sd|Y+)
!CSOPL�
�-L0<�:Sd|ZZ)
!CSOPLH��-Lࠅ:Sd|X�)
!CSOPL��-Lࠅ:Sd|Y�)
!CSOPL���-Lࠅ:Sd|Z�)
!CSOPL��-L`�q;Sd|X*
!CSOPL5�-L`�q;Sd|YE*
!CSOPLH��-L`�q;Sd|Zt*
!CSOPL8�-L�r;Sd|X�*
!CSOPLXm�-L�r;Sd|Y�*
!CSOPL���-L�r;Sd|Z+
!CSOPL���-L �r;Sd|X0+
!CSOPL��-L �r;Sd|Y_+
!CSOPL�X�-L �r;Sd|Z�+
!CSOPL���-L�q;Sd|X�+
!CSOPLx"�-L�q;Sd|Y�+
!CSOPL�R�-L�q;Sd|Z,
!CSOPL���-L��q;Sd|XJ,
!CSOPL�t�-L��q;Sd|Yy,
!CSOPL8��-L��q;Sd|Z�,
!CSOPLH�-L(�q;Sd|X�,
!CSOPL�X�-L(�q;Sd|Y-
!CSOPL8r�-L(�q;Sd|Z5-
!CSOPL���-L��q;Sd|Xd-
!CSOPLȐ�-L��q;Sd|Y�-
!CSOPL��-L��q;Sd|Z�-
!CSOPLh��-L��r;Sd|X�-
!CSOPL��-L��r;Sd|Y .
!CSOPL�^�-L��r;Sd|ZO.
!CSOPL���-Lx�r;Sd|X~.
!CSOPL�L�-Lx�r;Sd|Y�.
!CSOPL�2�-Lx�r;Sd|Z�.
!CSOPL�<�-LH}r;Sd|X/
!CSOPL�@�-LH}r;Sd|Y:/
!CSOPLh��-LH}r;Sd|Zi/
!CSOPL�H�-L�r;Sd|X�/
!CSOPL��-L�r;Sd|Y�/
!CSOPL�-L�r;Sd|Z�/
!CSOPL���-L�{r;Sd|X%0
!CSOPL���-L�{r;Sd|YT0
!CSOPL8o�-L�{r;Sd|Z�0
!CSOPL��-L��q;Sd|X�0
!CSOPL��-L��q;Sd|Y�0
!CSOPL��-L��q;Sd|Z1
!CSOPL(��-L Hr;Sd|X?1
!CSOPL���-L Hr;Sd|Yn1
!CSOPLX'�-L Hr;Sd|Z�1
!CSOPL��-L�Nr;Sd|X�1
!CSOPLxD�-L�Nr;Sd|Y�1
!CSOPLx��-L�Nr;Sd|Z*2
!CSOPLؤ�-L�qr;Sd|XY2
!CSOPLX$�-L�qr;Sd|Y�2
!CSOPL���-L�qr;Sd|Z�2
!CSOPL���-L�xr;Sd|X�2
!CSOPLH��-L�xr;Sd|Y3
!CSOPLX��-L�xr;Sd|ZD3
!CSOPL���-L�rr;Sd|Xs3
!CSOPL���-L�rr;Sd|Y�3
!CSOPL(��-L�rr;Sd|Z�3
!CSOPL��-L@mr;Sd|X4
!CSOPL�-L@mr;Sd|Y/4
!CSOPL��-L@mr;Sd|Z^4
!CSOPL+�-L0qr;Sd|X�4
!CSOPL�-L0qr;Sd|Y�4
!CSOPL���-L0qr;Sd|Z�4
!CSOPL8�-L(jr;Sd|X5
!CSOPL���-L(jr;Sd|YI5
!CSOPL���-L(jr;Sd|Zx5
!CSOPLx��-L�dr;Sd|X�5
!CSOPL��-L�dr;Sd|Y�5
!CSOPL(��-L�dr;Sd|Z6
!CSOPL���-L�hr;Sd|X46
!CSOPL���-L�hr;Sd|Yc6
!CSOPLȟ�-L�hr;Sd|Z�6
!CSOPL�D�-L�ar;Sd|X�6
!CSOPLhl�-L�ar;Sd|Y�6
!CSOPL�U�-L�ar;Sd|Z7
!CSOPL���-L`\r;Sd|XN7
!CSOPL���-L`\r;Sd|Y}7
!CSOPL�[�-L`\r;Sd|Z�7
!CSOPLؘ�-LP`r;Sd|X�7
!CSOPLxS�-LP`r;Sd|Y
8
!CSOPL��-LP`r;Sd|Z98
!CSOPL�^�-LHYr;Sd|Xh8
!CSOPL�U�-LHYr;Sd|Y�8
!CSOPLh&�-LHYr;Sd|Z�8
!CSOPL��-L�Sr;Sd|X�8
!CSOPL(��-L�Sr;Sd|Y$9
!CSOPL�-�-L�Sr;Sd|ZS9
!CSOPL���-L�Wr;Sd|X�9
!CSOPL���-L�Wr;Sd|Y�9
!CSOPLȱ�-L�Wr;Sd|Z�9
!CSOPL���-L�Pr;Sd|X:
!CSOPL���-L�Pr;Sd|Y>:
!CSOPL��-L�Pr;Sd|Zm:
!CSOPL���-L�Ir;Sd|X�:
!CSOPL(��-L�Ir;Sd|Y�:
!CSOPLh �-L�Ir;Sd|Z�:
!CSOPL��-LHr;Sd|X);
!CSOPL���-LHr;Sd|YX;
!CSOPLH��-LHr;Sd|Z�;
!CSOPL�K�-Lxr;Sd|X�;
!CSOPL8{�-Lxr;Sd|Y�;
!CSOPLP�-Lxr;Sd|Z<
!CSOPLh�-L�r;Sd|XC<
!CSOPL8i�-L�r;Sd|Yr<
!CSOPL�l�-L�r;Sd|Z�<
!CSOPL�I�-LAr;Sd|X�<
!CSOPLh��-LAr;Sd|Y�<
!CSOPLJ�-LAr;Sd|Z.=
!CSOPLH��-L�Br;Sd|X]=
!CSOPLx��-L�Br;Sd|Y�=
!CSOPL�<�-L�Br;Sd|Z�=
!CSOPLW�-L 6r;Sd|X�=
!CSOPL�E�-L 6r;Sd|Y>
!CSOPLhr�-L 6r;Sd|ZH>
!CSOPL�!�-L�7r;Sd|Xw>
!CSOPL��-L�7r;Sd|Y�>
!CSOPLH��-L�7r;Sd|Z�>
!CSOPLh��-L:r;Sd|X?
!CSOPL���-L:r;Sd|Y3?
!CSOPL��-L:r;Sd|Zb?
!CSOPL8�-L�-r;Sd|X�?
!CSOPLxw�-L�-r;Sd|Y�?
!CSOPL�R�-L�-r;Sd|Z�?
!CSOPL���-L/r;Sd|X@
!CSOPL�m�-L/r;Sd|YM@
!CSOPLؕ�-L/r;Sd|Z|@
!CSOPLh?�-L�1r;Sd|X�@
!CSOPLh��-L�1r;Sd|Y�@
!CSOPLȍ�-L�1r;Sd|Z	A
!CSOPL��-L@%r;Sd|X8A
!CSOPLH��-L@%r;Sd|YgA
!CSOPL���-L@%r;Sd|Z�A
!CSOPLX�-L�&r;Sd|X�A
!CSOPL���-L�&r;Sd|Y�A
!CSOPL�0�-L�&r;Sd|Z#B
!CSOPLh��-L0)r;Sd|XRB
!CSOPL��-L0)r;Sd|Y�B
!CSOPL�;�-L0)r;Sd|Z�B
!CSOPL�_�-L�r;Sd|X�B
!CSOPLh�-L�r;Sd|YC
!CSOPL���-L�r;Sd|Z=C
!CSOPLe�-L8r;Sd|XlC
!CSOPLH��-L8r;Sd|Y�C
!CSOPL��-L8r;Sd|Z�C
!CSOPL؀�-L� r;Sd|X�C
!CSOPLD�-L� r;Sd|Y(D
!CSOPL�w�-L� r;Sd|ZWD
!CSOPLx��-L�r;Sd|X�D
!CSOPL؏�-L�r;Sd|Y�D
!CSOPL�5�-L�r;Sd|Z�D
!CSOPL8�-L�r;Sd|XE
!CSOPL���-L�r;Sd|YBE
!CSOPL��-L�r;Sd|ZqE
!CSOPL(��-Lp�q;Sd|X�E
!CSOPL(j�-Lp�q;Sd|Y�E
!CSOPL�-Lp�q;Sd|Z�E
!CSOPL8��-L�r;Sd|X-F
!CSOPL8��-L�r;Sd|Y\F
!CSOPLh��-L�r;Sd|Z�F
!CSOPLHk�-L�r;Sd|X�F
!CSOPL(@�-L�r;Sd|Y�F
!CSOPLX��-L�r;Sd|ZG
!CSOPLس�-L 	r;Sd|XGG
!CSOPLhf�-L 	r;Sd|YvG
!CSOPLx��-L 	r;Sd|Z�G
!CSOPLض�-LPr;Sd|X�G
!CSOPL���-LPr;Sd|YH
!CSOPLȊ�-LPr;Sd|Z2H
!CSOPL���-L�r;Sd|XaH
!CSOPL�-L�r;Sd|Y�H
!CSOPLX��-L�r;Sd|Z�H
!CSOPLX��-L�r;Sd|X�H
!CSOPL��-L�r;Sd|YI
!CSOPLh��-L�r;Sd|ZLI
!CSOPL��-L��q;Sd|X{I
!CSOPL8��-L��q;Sd|Y�I
!CSOPLX��-L��q;Sd|Z�I
!CSOPL���-L�q;Sd|XJ
!CSOPL���-L�q;Sd|Y7J
!CSOPL���-L�q;Sd|ZfJ
!CSOPLx��-L��q;Sd|X�J
!CSOPL؛�-L��q;Sd|Y�J
!CSOPL�B�-L��q;Sd|Z�J
!CSOPLx��-L��q;Sd|X"K
!CSOPL�b�-L��q;Sd|YQK
!CSOPL(��-L��q;Sd|Z�K
!CSOPL�C�-L�q;Sd|X�K
!CSOPL��-L�q;Sd|Y�K
!CSOPL���-L�q;Sd|Z
L
!CSOPLH��-L8�q;Sd|X<L
!CSOPL�*�-L8�q;Sd|YkL
!CSOPL�"�-L8�q;Sd|Z�L
!CSOPL��-Lh�q;Sd|X�L
!CSOPLh#�-Lh�q;Sd|Y�L
!CSOPL���-Lh�q;Sd|Z2N
TakesPM
%CurrentS _211_Run_JumpUpMedium_2Hands_Run%N
%TakeS _211_Run_JumpUpMedium_2Hands_Run�M
)FileNameS$_211_Run_JumpUpMedium_2Hands_Run.tak�M
	LocalTimeLH�%;Lf�h�dN

ReferenceTimeLH�%;Lf�h�d���
���c�~���"{��Z�j���~���u�)

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/Raw Mocap Data/Animations/Running/Jumping/Run_JumpUpMedium_2Hands_Run.fbx

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