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
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteI1WSecondI!tMillisecondI��'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSSzC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1.fbx��PSSrcDocumentUrlSKStringSUrlSSzC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1.fbx�$PSOriginalSCompoundSS
BPSOriginal|ApplicationVendorSKStringSSSAutodesk]EPSOriginal|ApplicationNameSKStringSSS
MotionBuilder�?PSOriginal|ApplicationVersionSKStringSSS2013MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 20:49:33.487D1PSOriginal|FileNameSKStringSSSw%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodeskFPSLastSaved|ApplicationNameSKStringSSS
MotionBuilderj@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 20:49:33.487FileIdR+�+� �϶ȳ �%��JCreationTimeS2012-11-08 15:49:33:493�6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105
GlobalSettings�VersionI�
Properties70	)PSUpAxisSintSIntegerSIS	-PS
UpAxisSignSintSIntegerSI�	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI
,PS	CoordAxisSintSIntegerSIC
0PS
CoordAxisSignSintSIntegerSI�
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI8PSUnitScaleFactorSdoubleSNumberSD�?Y@PSOriginalUnitScaleFactorSdoubleSNumberSD�?�HPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective1%PSTimeModeSenumSSIr3PS
TimeSpanStartSKTimeSTimeSL(e9���2PSTimeSpanStopSKTimeSTimeSL��G���8PSCustomFrameRateSdoubleSNumberSD�{	Documents?
CountIn!DocumentL�{�S	KFbxSceneSSceneCProperties70�
&PSSourceObjectSobjectSS6fPSActiveAnimStackNameSKStringSSS3_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1a	RootNodeL�
References�CDefinitions�VersionId�CountIb5
ObjectTypeSGlobalSettings(CountI�
ObjectTypeSMotionBuilder_System|CountI,#

ObjectTypeSModel�CountIV#PropertyTemplateSFbxNode#Properties70C2PSQuaternionInterpolateSenumSSI�KPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDDLJPS
ScalingOffsetSVector3DSVectorSDDD�IPSScalingPivotSVector3DSVectorSDDD�.PSTranslationActiveSboolSSI8KPSTranslationMinSVector3DSVectorSDDD�KPSTranslationMaxSVector3DSVectorSDDD�,PSTranslationMinXSboolSSI,PSTranslationMinYSboolSSI?,PSTranslationMinZSboolSSIy,PSTranslationMaxXSboolSSI�,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI%*PS
RotationOrderSenumSSIi6PSRotationSpaceForLimitOnlySboolSSI�;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSDD;PSRotationStiffnessZSdoubleSNumberSD�0PSAxisLenSdoubleSNumberSD$@�HPSPreRotationSVector3DSVectorSDDD/IPSPostRotationSVector3DSVectorSDDDh+PSRotationActiveSboolSSI�HPSRotationMinSVector3DSVectorSDDDHPSRotationMaxSVector3DSVectorSDDDK)PSRotationMinXSboolSSI�)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI')PSRotationMaxYSboolSSI^)PSRotationMaxZSboolSSI�(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSI!GPS
ScalingMinSVector3DSVectorSDDDvGPS
ScalingMaxSVector3DSVectorSD�?D�?D�?�(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI(PSScalingMinZSboolSSIN(PSScalingMaxXSboolSSI�(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSIQPSGeometricTranslationSVector3DSVectorSDDDuNPSGeometricRotationSVector3DSVectorSDDD�MPSGeometricScalingSVector3DSVectorSD�?D�?D�?6PS
MinDampRangeXSdoubleSNumberSDX6PS
MinDampRangeYSdoubleSNumberSD�6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD$6PS
MaxDampRangeYSdoubleSNumberSDh6PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD=9PSMinDampStrengthZSdoubleSNumberSD�9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD9PSMaxDampStrengthZSdoubleSNumberSDW7PSPreferedAngleXSdoubleSNumberSD�7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD (PSLookAtPropertySobjectSSO *PSUpVectorPropertySobjectSS~ !PSShowSboolSSI� 8PSNegativePercentShapeSupportSboolSSI
!8PSDefaultAttributeIndexSintSIntegerSI����;!#PSFreezeSboolSSIl!#PSLODBoxSboolSSI�!NPSLcl TranslationSLcl TranslationSSADDD"HPSLcl RotationSLcl RotationSSADDDr"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?�"2PS
VisibilityS
VisibilitySSAD�?#EPSVisibility InheritanceSVisibility InheritanceSSIE>
ObjectTypeS
NodeAttributel#CountIV8>PropertyTemplateS	FbxCamera+>Properties70�#>PSPositionSVectorSSADDDI�H$>PSUpVectorSVectorSSADD�?D�$FPSInterestPositionSVectorSSADDD�$&PSRollSRollSSAD%:PSOpticalCenterXSOpticalCenterXSSAD`%:PSOpticalCenterYSOpticalCenterYSSAD�%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD,&1PSDisplayTurnTableIconSboolSSId&*PS
UseMotionBlurSboolSSI�&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?%',PSAspectRatioModeSenumSSIg'4PSAspectWidthSdoubleSNumberSDt@�'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?.(/PSFilmOffsetXSNumberSSADk(/PSFilmOffsetYSNumberSSAD�(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?2)8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?y)9PSFilmSqueezeRatioSdoubleSNumberSD�?�),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?-*2PSFilmTranslateXSNumberSSADm*2PSFilmTranslateYSNumberSSAD�*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD,+1PS
FilmRollValueSNumberSSADd+*PS
FilmRollOrderSenumSSI�+)PSApertureModeSenumSSI�+$PSGateFitSenumSSI,4PSFieldOfViewSFieldOfViewSSAD�p9@S,6PSFieldOfViewXSFieldOfViewXSSADD@�,6PSFieldOfViewYSFieldOfViewYSSADD@�,/PSFocalLengthSNumberSSAD&��VrA@-)PSCameraFormatSenumSSIC-*PS
UseFrameColorSboolSSI�-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?�-%PSShowNameSboolSSI.-PSShowInfoOnMovingSboolSSI8.%PSShowGridSboolSSIt..PSShowOpticalCenterSboolSSI�.'PS
ShowAzimutSboolSSI�.)PSShowTimeCodeSboolSSI/&PS	ShowAudioSboolSSIi/GPS
AudioColorSVector3DSVectorSDD�?D�/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@'01PSAutoComputeClipPanesSboolSSId0/PSViewCameraToLookAtSboolSSI�04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI,15PSBackPlaneDistanceSNumberSSAD@�@l12PSBackPlaneDistanceModeSenumSSI�16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@523PSFrontPlaneDistanceModeSenumSSIh2%PSLockModeSboolSSI�23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI3*PS
BackPlateCropSboolSSIW3,PSBackPlateCenterSboolSSI�3/PSBackPlateKeepRatioSboolSSI�3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?4*PS
ShowBackplateSboolSSI\44PSBackPlaneOffsetXSNumberSSAD�44PSBackPlaneOffsetYSNumberSSAD�45PSBackPlaneRotationSNumberSSAD"53PSBackPlaneScaleXSNumberSSAD�?c53PSBackPlaneScaleYSNumberSSAD�?�5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI6+PSFrontPlateCropSboolSSIN6-PSFrontPlateCenterSboolSSI�60PSFrontPlateKeepRatioSboolSSI�6;PSForeground OpacitySdoubleSNumberSD�?7+PSShowFrontplateSboolSSIQ75PSFrontPlaneOffsetXSNumberSSAD�75PSFrontPlaneOffsetYSNumberSSAD�76PSFrontPlaneRotationSNumberSSAD84PSFrontPlaneScaleXSNumberSSAD�?\84PSFrontPlaneScaleYSNumberSSAD�?�8,PSForeground TextureSobjectSS�8,PSDisplaySafeAreaSboolSSI94PSDisplaySafeAreaOnRenderSboolSSIQ91PSSafeAreaDisplayStyleSenumSSI�9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?�9/PSUse2DMagnifierZoomSboolSSI:5PS2D Magnifier ZoomSNumberSSADY@[:2PS2D Magnifier XSNumberSSADI@�:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI;2PS	OrthoZoomSdoubleSNumberSD�?X;0PSUseRealTimeDOFAndAASboolSSI�;,PSUseDepthOfFieldSboolSSI�;(PSFocusSourceSenumSSI	<3PS
FocusAngleSdoubleSNumberSD@M<6PS
FocusDistanceSdoubleSNumberSDi@�<,PSUseAntialiasingSboolSSI�<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?=/PSAntialiasingMethodSenumSSIP=2PSUseAccumulationBufferSboolSSI�=5PSFrameSamplingCountSintSIntegerSI�=.PSFrameSamplingTypeSenumSSI>APSColorSColorRGBSColorSD�������?D�������?D�������?�>
ObjectTypeSMotionBuilder_Generic�>CountIWA
ObjectTypeSAnimationLayer�>CountIJAPropertyTemplateSFbxAnimLayer=AProperties70Z?*PSWeightSNumberSSADY@�?!PSMuteSboolSSI�?!PSSoloSboolSSI�?!PSLockSboolSSI6@APSColorSColorRGBSColorSD�������?D�������?D�������?j@&PS	BlendModeSenumSSI�@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI0A5PSBlendModeBypassS	ULongLongSSL=C
ObjectTypeSAnimationStack�ACountI0CPropertyTemplateSFbxAnimStack#CProperties70B+PSDescriptionSKStringSSSVB0PS
LocalStartSKTimeSTimeSL�B/PS	LocalStopSKTimeSTimeSL�B4PSReferenceStartSKTimeSTimeSLC3PS
ReferenceStopSKTimeSTimeSL�C
ObjectTypeSAnimationCurveNode�CCountIf�C
ObjectTypeSAnimationCurve�CCountI2�Q
Objects�H<
NodeAttributeL`di:S#Producer PerspectiveNodeAttributeSCameraqGProperties70�D>PSPositionSVectorSSADD b@D�r@
EFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@D_EDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�E1PSDisplayTurnTableIconSboolSSI�E,PSFilmFormatIndexSenumSSIF4PSFieldOfViewSFieldOfViewSSADD@WF/PSFocalLengthSNumberSSAD �Z5@�F<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�F5PS2D Magnifier ZoomSNumberSSAD$G2PS2D Magnifier XSNumberSSADdG2PS2D Magnifier YSNumberSSAD�G	TypeFlagsSCamera�GGeometryVersionI|�GPositionDD b@D�r@
HUpDD�?D;HLookAtD1�ʧ�U�<D�����V@D]HShowInfoOnMovingIxH	ShowAudioI�H
AudioColorDD�?D�H	CameraOrthoZoomD�?rN6
NodeAttributeLX`i:SProducer FrontNodeAttributeSCameraMProperties70�I>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D7JDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?vJ1PSDisplayTurnTableIconSboolSSI�J,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@/K/PSFocalLengthSNumberSSAD �Z5@oK2PS	NearPlaneSdoubleSNumberSD�?�K1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?;L5PS2D Magnifier ZoomSNumberSSAD{L2PS2D Magnifier XSNumberSSAD�L2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSI(M	TypeFlagsSCameraIMGeometryVersionI|yMPositionDD�V@DL�@�MUpDD�?D�MLookAtDD�V@D�MShowInfoOnMovingIN	ShowAudioI@N
AudioColorDD�?DeN	CameraOrthoZoomD�?T5
NodeAttributeLHXi:SProducer BackNodeAttributeSCamera�RProperties70&O>PSPositionSVectorSSADD�V@DL��zOFPSInterestPositionSVectorSSADD�V@D�ODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?P1PSDisplayTurnTableIconSboolSSIEP,PSFilmFormatIndexSenumSSI�P4PSFieldOfViewSFieldOfViewSSADD@�P/PSFocalLengthSNumberSSAD �Z5@Q2PS	NearPlaneSdoubleSNumberSD�?CQ1PSFarPlaneSdoubleSNumberSDL�@�Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�Q5PS2D Magnifier ZoomSNumberSSADR2PS2D Magnifier XSNumberSSADPR2PS2D Magnifier YSNumberSSAD�R1PSCameraProjectionTypeSenumSSI�R	TypeFlagsSCamera�RGeometryVersionI|SPositionDD�V@DL��8SUpDD�?DfSLookAtDD�V@D�SShowInfoOnMovingI�S	ShowAudioI�S
AudioColorDD�?D�S	CameraOrthoZoomD�?�Y6
NodeAttributeLP\i:SProducer RightNodeAttributeSCamera2XProperties70�T>PSPositionSVectorSSADL�@D�V@DUFPSInterestPositionSVectorSSADD�V@DbUDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�U1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSIV4PSFieldOfViewSFieldOfViewSSADD@ZV/PSFocalLengthSNumberSSAD �Z5@�V2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@#W<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?fW5PS2D Magnifier ZoomSNumberSSAD�W2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSAD%X1PSCameraProjectionTypeSenumSSISX	TypeFlagsSCameratXGeometryVersionI|�XPositionDL�@D�V@D�XUpDD�?D�XLookAtDD�V@DYShowInfoOnMovingI9Y	ShowAudioIkY
AudioColorDD�?D�Y	CameraOrthoZoomD�?2_5
NodeAttributeL8Pi:SProducer LeftNodeAttributeSCamera�]Properties70QZ>PSPositionSVectorSSADL��D�V@D�ZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?6[1PSDisplayTurnTableIconSboolSSIp[,PSFilmFormatIndexSenumSSI�[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@/\2PS	NearPlaneSdoubleSNumberSD�?n\1PSFarPlaneSdoubleSNumberSDL�@�\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD;]2PS2D Magnifier XSNumberSSAD{]2PS2D Magnifier YSNumberSSAD�]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera	^GeometryVersionI|9^PositionDL��D�V@Dc^UpDD�?D�^LookAtDD�V@D�^ShowInfoOnMovingI�^	ShowAudioI_
AudioColorDD�?D%_	CameraOrthoZoomD�?e4
NodeAttributeL@Ti:SProducer TopNodeAttributeSCamera�cProperties70�_>PSPositionSVectorSSADDy�@D1`>PSUpVectorSVectorSSADDD�`FPSInterestPositionSVectorSSADD�V@D�`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?a1PSDisplayTurnTableIconSboolSSIPa,PSFilmFormatIndexSenumSSI�a4PSFieldOfViewSFieldOfViewSSADD@�a/PSFocalLengthSNumberSSAD �Z5@b2PS	NearPlaneSdoubleSNumberSD�?Nb1PSFarPlaneSdoubleSNumberSDL�@�b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSADc2PS2D Magnifier XSNumberSSAD[c2PS2D Magnifier YSNumberSSAD�c1PSCameraProjectionTypeSenumSSI�c	TypeFlagsSCamera�cGeometryVersionI|dPositionDDy�@DCdUpDDD�qdLookAtDD�V@D�dShowInfoOnMovingI�d	ShowAudioI�d
AudioColorDD�?De	CameraOrthoZoomD�?�j7
NodeAttributeL(Hi:SProducer BottomNodeAttributeSCamera�iProperties70�e>PSPositionSVectorSSADD��Df>PSUpVectorSVectorSSAD�D�D�?hfFPSInterestPositionSVectorSSADD�V@D�fDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI3g,PSFilmFormatIndexSenumSSIug4PSFieldOfViewSFieldOfViewSSADD@�g/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?1h1PSFarPlaneSdoubleSNumberSDL�@{h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�h5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD>i2PS2D Magnifier YSNumberSSAD}i1PSCameraProjectionTypeSenumSSI�i	TypeFlagsSCamera�iGeometryVersionI|�iPositionDD��D&jUpD�D�D�?TjLookAtDD�V@DvjShowInfoOnMovingI�j	ShowAudioI�j
AudioColorDD�?D�j	CameraOrthoZoomD�?Sl?
NodeAttributeL�PX;SCamera SwitcherNodeAttributeSCameraSwitcher�kProperties70�k-PSCamera IndexSIntegerSSAI�kVersionIe�kNameSCamera SwitcherModellCameraIdI*l
CameraNameIdFlCameraIndexName�l*
NodeAttributeL��:SNodeAttributeSLimbNode�l
	TypeFlagsSSkeleton;m*
NodeAttributeL8:SNodeAttributeSLimbNode.m
	TypeFlagsSSkeleton�m*
NodeAttributeLx�:SNodeAttributeSLimbNode�m
	TypeFlagsSSkeleton#n*
NodeAttributeL8h:SNodeAttributeSLimbNoden
	TypeFlagsSSkeleton�n*
NodeAttributeL�j:SNodeAttributeSLimbNode�n
	TypeFlagsSSkeletono*
NodeAttributeL8�:SNodeAttributeSLimbNode�n
	TypeFlagsSSkeletono*
NodeAttributeLxs:SNodeAttributeSLimbNodero
	TypeFlagsSSkeleton�o*
NodeAttributeL�:SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletongp*
NodeAttributeL8�:SNodeAttributeSLimbNodeZp
	TypeFlagsSSkeleton�p*
NodeAttributeL��:SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonOq*
NodeAttributeL��:SNodeAttributeSLimbNodeBq
	TypeFlagsSSkeleton�q*
NodeAttributeL��:SNodeAttributeSLimbNode�q
	TypeFlagsSSkeleton7r*
NodeAttributeL��:SNodeAttributeSLimbNode*r
	TypeFlagsSSkeleton�r*
NodeAttributeLx�:SNodeAttributeSLimbNode�r
	TypeFlagsSSkeletons*
NodeAttributeL��:SNodeAttributeSLimbNodes
	TypeFlagsSSkeleton�s*
NodeAttributeLx�:SNodeAttributeSLimbNode�s
	TypeFlagsSSkeletont*
NodeAttributeL8K:SNodeAttributeSLimbNode�s
	TypeFlagsSSkeleton{t*
NodeAttributeLx�:SNodeAttributeSLimbNodent
	TypeFlagsSSkeleton�t*
NodeAttributeL��:SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletoncu*
NodeAttributeL��:SNodeAttributeSLimbNodeVu
	TypeFlagsSSkeleton�u*
NodeAttributeLxx:SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletonKv*
NodeAttributeL8:SNodeAttributeSLimbNode>v
	TypeFlagsSSkeleton�v*
NodeAttributeL�~:SNodeAttributeSLimbNode�v
	TypeFlagsSSkeleton3w*
NodeAttributeL��:SNodeAttributeSLimbNode&w
	TypeFlagsSSkeleton�w*
NodeAttributeL��:SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonx*
NodeAttributeLx�:SNodeAttributeSLimbNodex
	TypeFlagsSSkeleton�x*
NodeAttributeL�@:SNodeAttributeSLimbNode�x
	TypeFlagsSSkeletony*
NodeAttributeL� :SNodeAttributeSLimbNode�x
	TypeFlagsSSkeletonwy*
NodeAttributeL8�:SNodeAttributeSLimbNodejy
	TypeFlagsSSkeleton�y*
NodeAttributeL�:SNodeAttributeSLimbNode�y
	TypeFlagsSSkeleton_z*
NodeAttributeL�1:SNodeAttributeSLimbNodeRz
	TypeFlagsSSkeleton�z*
NodeAttributeLx|:SNodeAttributeSLimbNode�z
	TypeFlagsSSkeletonG{*
NodeAttributeL�\:SNodeAttributeSLimbNode:{
	TypeFlagsSSkeleton�{*
NodeAttributeL��:SNodeAttributeSLimbNode�{
	TypeFlagsSSkeleton/|*
NodeAttributeL8�:SNodeAttributeSLimbNode"|
	TypeFlagsSSkeleton�|*
NodeAttributeL�q:SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton}*
NodeAttributeL8�:SNodeAttributeSLimbNode
}
	TypeFlagsSSkeleton�}*
NodeAttributeLx:SNodeAttributeSLimbNode~}
	TypeFlagsSSkeleton�}*
NodeAttributeL�O:SNodeAttributeSLimbNode�}
	TypeFlagsSSkeletons~*
NodeAttributeL�p:SNodeAttributeSLimbNodef~
	TypeFlagsSSkeleton�~*
NodeAttributeL8�:SNodeAttributeSLimbNode�~
	TypeFlagsSSkeleton[*
NodeAttributeLx�:SNodeAttributeSLimbNodeN
	TypeFlagsSSkeleton�*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonC�*
NodeAttributeL�U:SNodeAttributeSLimbNode6�
	TypeFlagsSSkeleton��*
NodeAttributeL8a:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton+�*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL8�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��:SNodeAttributeSLimbNodez�
	TypeFlagsSSkeleton��*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletono�*
NodeAttributeL�o:SNodeAttributeSLimbNodeb�
	TypeFlagsSSkeleton�*
NodeAttributeL�&:SNodeAttributeSLimbNodeփ
	TypeFlagsSSkeletonW�*
NodeAttributeL8b:SNodeAttributeSLimbNodeJ�
	TypeFlagsSSkeleton˄*
NodeAttributeL8�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton?�*
NodeAttributeL�?:SNodeAttributeSLimbNode2�
	TypeFlagsSSkeleton��*
NodeAttributeL�u:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton'�*
NodeAttributeLx�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL8):SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLx�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL8W:SNodeAttributeSLimbNodev�
	TypeFlagsSSkeleton��*
NodeAttributeLx:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonk�*
NodeAttributeLxf:SNodeAttributeSLimbNode^�
	TypeFlagsSSkeleton߈*
NodeAttributeL8E:SNodeAttributeSLimbNode҈
	TypeFlagsSSkeletonS�*
NodeAttributeLx�:SNodeAttributeSLimbNodeF�
	TypeFlagsSSkeletonlj*
NodeAttributeL�k:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton;�*
NodeAttributeL8q:SNodeAttributeSLimbNode.�
	TypeFlagsSSkeleton��*
NodeAttributeL�M:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton#�*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeLx�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLxC:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLx�:SNodeAttributeSLimbNoder�
	TypeFlagsSSkeleton�*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletong�*
NodeAttributeL�
:SNodeAttributeSLimbNodeZ�
	TypeFlagsSSkeletonۍ*
NodeAttributeL��:SNodeAttributeSLimbNode΍
	TypeFlagsSSkeletonO�*
NodeAttributeL8k:SNodeAttributeSLimbNodeB�
	TypeFlagsSSkeletonÎ*
NodeAttributeL8�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton7�*
NodeAttributeL�@:SNodeAttributeSLimbNode*�
	TypeFlagsSSkeleton��*
NodeAttributeLx:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton��4ModelL3v)SProducer PerspectiveModelSCamera
�VersionI���Properties70x�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSII�NPSLcl TranslationSLcl TranslationSSADD b@D�r@��HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V�ّ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIw�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI2�5PSRotationLimitsVisibilitySboolSSIz�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI:�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIŔ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@N�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI•%PSPickableSboolSSI��*PS
TransformableSboolSSI0�(PSCullingModeSenumSSIk�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�? �0PSAspectHSdoubleSNumberSD�?S�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSI'�2PSForegroundTransparentSboolSSIi�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSIĘShadingCW�CullingS
CullingOff7�.ModelL 8v)SProducer FrontModelSCameraM�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI0�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL�@�HPSLcl RotationSLcl RotationSSADD�V@D�,PS	MultiTakeSintSIntegerSIW�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI2�-PSPivotsVisibilitySenumSSIu�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI>�3PSRotationAxisVisibilitySboolSSI}�1PSScalingRefVisibilitySboolSSIĝ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIN�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIҞ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI=�*PS
TransformableSboolSSIs�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI%�0PSAspectWSdoubleSNumberSD�?c�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSIŠ!PSCropSboolSSI��#PSCenterSboolSSI*�&PS	KeepRatioSboolSSIj�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI�ShadingCW*�CullingS
CullingOffy�-ModelL(=v)SProducer BackModelSCamera��VersionI�3�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?,�!PSShowSboolSSIr�8PSDefaultAttributeIndexSintSIntegerSIΣNPSLcl TranslationSLcl TranslationSSADD�V@DL��$�HPSLcl RotationSLcl RotationSSAD�D�V�D^�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD9�/PSSetPreferedAngleSActionSSIt�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI?�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIJ�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ӧ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIG�%PSPickableSboolSSI�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI)�+PSResolutionModeSenumSSIg�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ة%PSFitImageSboolSSI�!PSCropSboolSSI8�#PSCenterSboolSSIl�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI&�*PSResetCameraSActionSSII�ShadingCWl�CullingS
CullingOff��.ModelL0Bv)SProducer RightModelSCameraҫVersionI�v�Properties70@�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?o�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL�@D�V@Dg�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@��,PS	MultiTakeSintSIntegerSIܭ-PSManipulationModeSenumSSI?�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD|�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIB�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIï3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSII�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIӰ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIW�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI±*PS
TransformableSboolSSI��(PSCullingModeSenumSSI3�-PSShowTrajectoriesSboolSSIl�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSIJ�!PSCropSboolSSI{�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI1�4PSDisplay2DMagnifierFrameSboolSSIi�*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff��-ModelL8Gv)SProducer LeftModelSCamera�VersionI�b�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSIS�NPSLcl TranslationSLcl TranslationSSADL��D�V@D��,PS	MultiTakeSintSIntegerSIȶ-PSManipulationModeSenumSSI+�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDh�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI.�:PSLocalTranslationRefVisibilitySboolSSIn�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI5�9PSHierarchicalCenterVisibilitySboolSSIy�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIC�3PSDefaultKeyingGroupEnumSenumSSIv�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIX�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?Ի0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI6�!PSCropSboolSSIg�#PSCenterSboolSSI��&PS	KeepRatioSboolSSIۼ2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSIU�*PSResetCameraSActionSSIx�ShadingCW��CullingS
CullingOff��,ModelL@Lv)SProducer TopModelSCamera��VersionI���Properties70m�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSI>�NPSLcl TranslationSLcl TranslationSSADDy�@D��HPSLcl RotationSLcl RotationSSAD�V�D�D�V�ο,PS	MultiTakeSintSIntegerSI	�-PSManipulationModeSenumSSIl�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI'�5PSRotationLimitsVisibilitySboolSSIo�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI/�1PSScalingRefVisibilitySboolSSIv�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@C�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI%�(PSCullingModeSenumSSI`�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?H�%PSFitImageSboolSSIw�!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI^�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff-�/ModelLHQv)SProducer BottomModelSCameraC�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI&�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@�,PS	MultiTakeSintSIntegerSIM�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI(�-PSPivotsVisibilitySenumSSIk�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI4�3PSRotationAxisVisibilitySboolSSIs�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSID�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI3�*PS
TransformableSboolSSIi�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?Y�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI �&PS	KeepRatioSboolSSI`�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW �CullingS
CullingOff��7ModelL��z:SCamera SwitcherModelSCameraSwitcher��VersionI�K�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?,�!PSShowSboolSSIr�8PSDefaultAttributeIndexSintSIntegerSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIJ�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIM�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI
�1PSScalingRefVisibilitySboolSSIT�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@!�5PSDefaultKeyingGroupSintSIntegerSIb�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI>�-PSShowTrajectoriesSboolSSIa�ShadingCW��CullingS
CullingOff��+ModelL��z:SReferenceModelSLimbNode��VersionI�w�Properties709�+PSRotationActiveSboolSSIo�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD
�8PSDefaultAttributeIndexSintSIntegerSI]�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI5�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDr�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI8�:PSLocalTranslationRefVisibilitySboolSSIx�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI?�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIM�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI)�-PSShowTrajectoriesSboolSSIj�3PSlockInfluenceWeightsSBoolSSAUI��ShadingCY��CullingS
CullingOff%�'ModelL��z:SPivotModelSLimbNode�VersionI���Properties70a�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD2�8PSDefaultAttributeIndexSintSIntegerSI��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI]�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI`�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI �1PSScalingRefVisibilitySboolSSIg�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@4�5PSDefaultKeyingGroupSintSIntegerSIu�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIQ�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��&ModelL��z:SRootModelSLimbNodev�VersionI�F�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIS�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��EPSVisibility InheritanceSVisibility InheritanceSSI&�,PS	MultiTakeSintSIntegerSIa�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI<�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIH�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIX�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIG�*PS
TransformableSboolSSI}�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI9�CPSLimbLength 1SNumberSSAUD�?DDY@\�ShadingCY�CullingS
CullingOff��&ModelL��z:SHipsModelSLimbNode��VersionI�a�Properties70/�+PSRotationActiveSboolSSIe�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI]�OPSLcl TranslationSLcl TranslationSSA+D�
0@D���U@D������IPSLcl RotationSLcl RotationSSA+D@D�N�D�����EPSVisibility InheritanceSVisibility InheritanceSSIA�,PS	MultiTakeSintSIntegerSI|�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIW�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI"�2PSRotationRefVisibilitySboolSSIc�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI-�6PSGeometricCenterVisibilitySboolSSIs�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI*�%PSPickableSboolSSIb�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIT�CPSLimbLength 1SNumberSSAUD�?DDY@w�ShadingCY��CullingS
CullingOff��'ModelL��z:SSpineModelSLimbNode��VersionI�}�Properties70K�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIy�OPSLcl TranslationSLcl TranslationSSA+DD�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D�(J:@D���?D��C@#�EPSVisibility InheritanceSVisibility InheritanceSSI]�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD8�/PSSetPreferedAngleSActionSSIs�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI>�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSII�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIF�%PSPickableSboolSSI~�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIp�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�'ModelL��z:SChestModelSLimbNode�VersionI��Properties70g�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD8�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D0=DA0@D�2ſ��IPSLcl RotationSLcl RotationSSA+D@����D�'^�?D����?�EPSVisibility InheritanceSVisibility InheritanceSSIy�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDT/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIZ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI!9PSHierarchicalCenterVisibilitySboolSSIe6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI/3PSDefaultKeyingGroupEnumSenumSSIb%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSI;"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�&ModelL��z:SNeckModelSLimbNode0VersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI
GPS
ScalingMaxSVector3DSVectorSDDDS8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+DD`��9@D <�	�IPSLcl RotationSLcl RotationSSA+D@���D@n*@D�y��ZEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDo/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI5	:PSLocalTranslationRefVisibilitySboolSSIu	2PSRotationRefVisibilitySboolSSI�	3PSRotationAxisVisibilitySboolSSI�	1PSScalingRefVisibilitySboolSSI<
9PSHierarchicalCenterVisibilitySboolSSI�
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@	5PSDefaultKeyingGroupSintSIntegerSIJ3PSDefaultKeyingGroupEnumSenumSSI}%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI&-PSShowTrajectoriesSboolSSIV"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff&ModelL��z:SHeadModelSLimbNodeK
VersionI��Properties70�
+PSRotationActiveSboolSSI�
(PSInheritTypeSenumSSI(GPS
ScalingMaxSVector3DSVectorSDDDn8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@�D 4� @D s�?"IPSLcl RotationSLcl RotationSSA+D ��D@�|(@D�y��uEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIMUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIP:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIW9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@$5PSDefaultKeyingGroupSintSIntegerSIe3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIA-PSShowTrajectoriesSboolSSIq"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�)ModelL��z:SLeftEyeModelSLimbNodeiVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIFGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@;EPSVisibility InheritanceSVisibility InheritanceSSIu,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDP/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIV2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIa6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI+3PSDefaultKeyingGroupEnumSenumSSI^%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSI7"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�$*ModelL��z:SRightEyeModelSLimbNode0VersionI��$Properties70�*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIEGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@:EPSVisibility InheritanceSVisibility InheritanceSSIt,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDO /PSSetPreferedAngleSActionSSI� -PSPivotsVisibilitySenumSSI� 5PSRotationLimitsVisibilitySboolSSI!:PSLocalTranslationRefVisibilitySboolSSIU!2PSRotationRefVisibilitySboolSSI�!3PSRotationAxisVisibilitySboolSSI�!1PSScalingRefVisibilitySboolSSI"9PSHierarchicalCenterVisibilitySboolSSI`"6PSGeometricCenterVisibilitySboolSSI�"8PSReferentialSizeSdoubleSNumberSD(@�"5PSDefaultKeyingGroupSintSIntegerSI*#3PSDefaultKeyingGroupEnumSenumSSI]#%PSPickableSboolSSI�#*PS
TransformableSboolSSI�#(PSCullingModeSenumSSI$-PSShowTrajectoriesSboolSSI6$"PSliwSBoolSSAUI�$CPSLimbLength 1SNumberSSAUD�?DDY@�$ShadingCY�$CullingS
CullingOff�,%ModelL{:S
JawModelSLimbNode*%VersionI��,Properties70|%+PSRotationActiveSboolSSI�%(PSInheritTypeSenumSSI&GPS
ScalingMaxSVector3DSVectorSDDDL&7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@�&8PSDefaultAttributeIndexSintSIntegerSI�&NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?A'EPSVisibility InheritanceSVisibility InheritanceSSI{',PS	MultiTakeSintSIntegerSI�'-PSManipulationModeSenumSSI(UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDV(/PSSetPreferedAngleSActionSSI�(-PSPivotsVisibilitySenumSSI�(5PSRotationLimitsVisibilitySboolSSI):PSLocalTranslationRefVisibilitySboolSSI\)2PSRotationRefVisibilitySboolSSI�)3PSRotationAxisVisibilitySboolSSI�)1PSScalingRefVisibilitySboolSSI#*9PSHierarchicalCenterVisibilitySboolSSIg*6PSGeometricCenterVisibilitySboolSSI�*8PSReferentialSizeSdoubleSNumberSD(@�*5PSDefaultKeyingGroupSintSIntegerSI1+3PSDefaultKeyingGroupEnumSenumSSId+%PSPickableSboolSSI�+*PS
TransformableSboolSSI�+(PSCullingModeSenumSSI
,-PSShowTrajectoriesSboolSSI=,"PSliwSBoolSSAUI�,CPSLimbLength 1SNumberSSAUD�?DDY@�,ShadingCY�,CullingS
CullingOff�4,ModelL@�[;STongueBackModelSLimbNode8-VersionI�d4Properties70�-+PSRotationActiveSboolSSI�-(PSInheritTypeSenumSSI.GPS
ScalingMaxSVector3DSVectorSDDD[.8PSDefaultAttributeIndexSintSIntegerSI�.NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?
/EPSVisibility InheritanceSVisibility InheritanceSSID/,PS	MultiTakeSintSIntegerSI/-PSManipulationModeSenumSSI�/UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD0/PSSetPreferedAngleSActionSSIZ0-PSPivotsVisibilitySenumSSI�05PSRotationLimitsVisibilitySboolSSI�0:PSLocalTranslationRefVisibilitySboolSSI%12PSRotationRefVisibilitySboolSSIf13PSRotationAxisVisibilitySboolSSI�11PSScalingRefVisibilitySboolSSI�19PSHierarchicalCenterVisibilitySboolSSI026PSGeometricCenterVisibilitySboolSSIv28PSReferentialSizeSdoubleSNumberSD(@�25PSDefaultKeyingGroupSintSIntegerSI�23PSDefaultKeyingGroupEnumSenumSSI-3%PSPickableSboolSSIe3*PS
TransformableSboolSSI�3(PSCullingModeSenumSSI�3-PSShowTrajectoriesSboolSSI4"PSliwSBoolSSAUIW4CPSLimbLength 1SNumberSSAUD�?DDY@z4ShadingCY�4CullingS
CullingOffr<+ModelLH�[;STongueTipModelSLimbNode5VersionI�,<Properties70R5+PSRotationActiveSboolSSI�5(PSInheritTypeSenumSSI�5GPS
ScalingMaxSVector3DSVectorSDDD#68PSDefaultAttributeIndexSintSIntegerSI6NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@�6EPSVisibility InheritanceSVisibility InheritanceSSI7,PS	MultiTakeSintSIntegerSIG7-PSManipulationModeSenumSSI�7UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�7/PSSetPreferedAngleSActionSSI"8-PSPivotsVisibilitySenumSSIe85PSRotationLimitsVisibilitySboolSSI�8:PSLocalTranslationRefVisibilitySboolSSI�82PSRotationRefVisibilitySboolSSI.93PSRotationAxisVisibilitySboolSSIm91PSScalingRefVisibilitySboolSSI�99PSHierarchicalCenterVisibilitySboolSSI�96PSGeometricCenterVisibilitySboolSSI>:8PSReferentialSizeSdoubleSNumberSD(@�:5PSDefaultKeyingGroupSintSIntegerSI�:3PSDefaultKeyingGroupEnumSenumSSI�:%PSPickableSboolSSI-;*PS
TransformableSboolSSIc;(PSCullingModeSenumSSI�;-PSShowTrajectoriesSboolSSI�;"PSliwSBoolSSAUI<CPSLimbLength 1SNumberSSAUD�?DDY@B<ShadingCYe<CullingS
CullingOff=D.ModelLP�[;SLeftLipLowerModelSLimbNode�<VersionI��CProperties70=+PSRotationActiveSboolSSIS=(PSInheritTypeSenumSSI�=GPS
ScalingMaxSVector3DSVectorSDDD�=8PSDefaultAttributeIndexSintSIntegerSIJ>NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @�>EPSVisibility InheritanceSVisibility InheritanceSSI�>,PS	MultiTakeSintSIntegerSI?-PSManipulationModeSenumSSIu?UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�?/PSSetPreferedAngleSActionSSI�?-PSPivotsVisibilitySenumSSI0@5PSRotationLimitsVisibilitySboolSSIx@:PSLocalTranslationRefVisibilitySboolSSI�@2PSRotationRefVisibilitySboolSSI�@3PSRotationAxisVisibilitySboolSSI8A1PSScalingRefVisibilitySboolSSIA9PSHierarchicalCenterVisibilitySboolSSI�A6PSGeometricCenterVisibilitySboolSSI	B8PSReferentialSizeSdoubleSNumberSD(@LB5PSDefaultKeyingGroupSintSIntegerSI�B3PSDefaultKeyingGroupEnumSenumSSI�B%PSPickableSboolSSI�B*PS
TransformableSboolSSI.C(PSCullingModeSenumSSIiC-PSShowTrajectoriesSboolSSI�C"PSliwSBoolSSAUI�CCPSLimbLength 1SNumberSSAUD�?DDY@
DShadingCY0DCullingS
CullingOff:L(ModelLX�[;S
JawENDModelSLimbNode�DVersionI��KProperties70�D*PS
RotationOrderSenumSSIE+PSRotationActiveSboolSSIPE(PSInheritTypeSenumSSI�EGPS
ScalingMaxSVector3DSVectorSDDD�E8PSDefaultAttributeIndexSintSIntegerSIGFNPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�FEPSVisibility InheritanceSVisibility InheritanceSSI�F,PS	MultiTakeSintSIntegerSIG-PSManipulationModeSenumSSIrGUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�G/PSSetPreferedAngleSActionSSI�G-PSPivotsVisibilitySenumSSI-H5PSRotationLimitsVisibilitySboolSSIuH:PSLocalTranslationRefVisibilitySboolSSI�H2PSRotationRefVisibilitySboolSSI�H3PSRotationAxisVisibilitySboolSSI5I1PSScalingRefVisibilitySboolSSI|I9PSHierarchicalCenterVisibilitySboolSSI�I6PSGeometricCenterVisibilitySboolSSIJ8PSReferentialSizeSdoubleSNumberSD(@IJ5PSDefaultKeyingGroupSintSIntegerSI�J3PSDefaultKeyingGroupEnumSenumSSI�J%PSPickableSboolSSI�J*PS
TransformableSboolSSI+K(PSCullingModeSenumSSIfK-PSShowTrajectoriesSboolSSI�K"PSliwSBoolSSAUI�KCPSLimbLength 1SNumberSSAUD�?DDY@
LShadingCY-LCullingS
CullingOffT/ModelL`\;SRightLipLowerModelSLimbNode�LVersionI��SProperties70�L+PSRotationActiveSboolSSIM(PSInheritTypeSenumSSIqMGPS
ScalingMaxSVector3DSVectorSDDD�M8PSDefaultAttributeIndexSintSIntegerSINNPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @fNEPSVisibility InheritanceSVisibility InheritanceSSI�N,PS	MultiTakeSintSIntegerSI�N-PSManipulationModeSenumSSI>OUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD{O/PSSetPreferedAngleSActionSSI�O-PSPivotsVisibilitySenumSSI�O5PSRotationLimitsVisibilitySboolSSIAP:PSLocalTranslationRefVisibilitySboolSSI�P2PSRotationRefVisibilitySboolSSI�P3PSRotationAxisVisibilitySboolSSIQ1PSScalingRefVisibilitySboolSSIHQ9PSHierarchicalCenterVisibilitySboolSSI�Q6PSGeometricCenterVisibilitySboolSSI�Q8PSReferentialSizeSdoubleSNumberSD(@R5PSDefaultKeyingGroupSintSIntegerSIVR3PSDefaultKeyingGroupEnumSenumSSI�R%PSPickableSboolSSI�R*PS
TransformableSboolSSI�R(PSCullingModeSenumSSI2S-PSShowTrajectoriesSboolSSIbS"PSliwSBoolSSAUI�SCPSLimbLength 1SNumberSSAUD�?DDY@�SShadingCY�SCullingS
CullingOff�[0ModelLh	\;SRightLipCornerModelSLimbNodeaTVersionI��[Properties70�T+PSRotationActiveSboolSSI�T(PSInheritTypeSenumSSI>UGPS
ScalingMaxSVector3DSVectorSDDD�U8PSDefaultAttributeIndexSintSIntegerSI�UNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@3VEPSVisibility InheritanceSVisibility InheritanceSSImV,PS	MultiTakeSintSIntegerSI�V-PSManipulationModeSenumSSIWUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDHW/PSSetPreferedAngleSActionSSI�W-PSPivotsVisibilitySenumSSI�W5PSRotationLimitsVisibilitySboolSSIX:PSLocalTranslationRefVisibilitySboolSSINX2PSRotationRefVisibilitySboolSSI�X3PSRotationAxisVisibilitySboolSSI�X1PSScalingRefVisibilitySboolSSIY9PSHierarchicalCenterVisibilitySboolSSIYY6PSGeometricCenterVisibilitySboolSSI�Y8PSReferentialSizeSdoubleSNumberSD(@�Y5PSDefaultKeyingGroupSintSIntegerSI#Z3PSDefaultKeyingGroupEnumSenumSSIVZ%PSPickableSboolSSI�Z*PS
TransformableSboolSSI�Z(PSCullingModeSenumSSI�Z-PSShowTrajectoriesSboolSSI/["PSliwSBoolSSAUI�[CPSLimbLength 1SNumberSSAUD�?DDY@�[ShadingCY�[CullingS
CullingOff�c/ModelLp\;SLeftLipCornerModelSLimbNode-\VersionI�YcProperties70\+PSRotationActiveSboolSSI�\(PSInheritTypeSenumSSI
]GPS
ScalingMaxSVector3DSVectorSDDDP]8PSDefaultAttributeIndexSintSIntegerSI�]NPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@�]EPSVisibility InheritanceSVisibility InheritanceSSI9^,PS	MultiTakeSintSIntegerSIt^-PSManipulationModeSenumSSI�^UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD_/PSSetPreferedAngleSActionSSIO_-PSPivotsVisibilitySenumSSI�_5PSRotationLimitsVisibilitySboolSSI�_:PSLocalTranslationRefVisibilitySboolSSI`2PSRotationRefVisibilitySboolSSI[`3PSRotationAxisVisibilitySboolSSI�`1PSScalingRefVisibilitySboolSSI�`9PSHierarchicalCenterVisibilitySboolSSI%a6PSGeometricCenterVisibilitySboolSSIka8PSReferentialSizeSdoubleSNumberSD(@�a5PSDefaultKeyingGroupSintSIntegerSI�a3PSDefaultKeyingGroupEnumSenumSSI"b%PSPickableSboolSSIZb*PS
TransformableSboolSSI�b(PSCullingModeSenumSSI�b-PSShowTrajectoriesSboolSSI�b"PSliwSBoolSSAUILcCPSLimbLength 1SNumberSSAUD�?DDY@ocShadingCY�cCullingS
CullingOffjk.ModelLx\;SLeftLipUpperModelSLimbNode�cVersionI�$kProperties70Jd+PSRotationActiveSboolSSI�d(PSInheritTypeSenumSSI�dGPS
ScalingMaxSVector3DSVectorSDDDe8PSDefaultAttributeIndexSintSIntegerSIweNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@�eEPSVisibility InheritanceSVisibility InheritanceSSIf,PS	MultiTakeSintSIntegerSI?f-PSManipulationModeSenumSSI�fUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�f/PSSetPreferedAngleSActionSSIg-PSPivotsVisibilitySenumSSI]g5PSRotationLimitsVisibilitySboolSSI�g:PSLocalTranslationRefVisibilitySboolSSI�g2PSRotationRefVisibilitySboolSSI&h3PSRotationAxisVisibilitySboolSSIeh1PSScalingRefVisibilitySboolSSI�h9PSHierarchicalCenterVisibilitySboolSSI�h6PSGeometricCenterVisibilitySboolSSI6i8PSReferentialSizeSdoubleSNumberSD(@yi5PSDefaultKeyingGroupSintSIntegerSI�i3PSDefaultKeyingGroupEnumSenumSSI�i%PSPickableSboolSSI%j*PS
TransformableSboolSSI[j(PSCullingModeSenumSSI�j-PSShowTrajectoriesSboolSSI�j"PSliwSBoolSSAUIkCPSLimbLength 1SNumberSSAUD�?DDY@:kShadingCY]kCullingS
CullingOff4s-ModelL�\;SLeftNostrilModelSLimbNode�kVersionI��rProperties70l+PSRotationActiveSboolSSIJl(PSInheritTypeSenumSSI�lGPS
ScalingMaxSVector3DSVectorSDDD�l8PSDefaultAttributeIndexSintSIntegerSIAmNPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�mEPSVisibility InheritanceSVisibility InheritanceSSI�m,PS	MultiTakeSintSIntegerSI	n-PSManipulationModeSenumSSIlnUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�n/PSSetPreferedAngleSActionSSI�n-PSPivotsVisibilitySenumSSI'o5PSRotationLimitsVisibilitySboolSSIoo:PSLocalTranslationRefVisibilitySboolSSI�o2PSRotationRefVisibilitySboolSSI�o3PSRotationAxisVisibilitySboolSSI/p1PSScalingRefVisibilitySboolSSIvp9PSHierarchicalCenterVisibilitySboolSSI�p6PSGeometricCenterVisibilitySboolSSIq8PSReferentialSizeSdoubleSNumberSD(@Cq5PSDefaultKeyingGroupSintSIntegerSI�q3PSDefaultKeyingGroupEnumSenumSSI�q%PSPickableSboolSSI�q*PS
TransformableSboolSSI%r(PSCullingModeSenumSSI`r-PSShowTrajectoriesSboolSSI�r"PSliwSBoolSSAUI�rCPSLimbLength 1SNumberSSAUD�?DDY@sShadingCY'sCullingS
CullingOff�z+ModelL�\;SLeftCheekModelSLimbNode�sVersionI��zProperties70�s+PSRotationActiveSboolSSIt(PSInheritTypeSenumSSIgtGPS
ScalingMaxSVector3DSVectorSDDD�t8PSDefaultAttributeIndexSintSIntegerSI	uNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@\uEPSVisibility InheritanceSVisibility InheritanceSSI�u,PS	MultiTakeSintSIntegerSI�u-PSManipulationModeSenumSSI4vUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDqv/PSSetPreferedAngleSActionSSI�v-PSPivotsVisibilitySenumSSI�v5PSRotationLimitsVisibilitySboolSSI7w:PSLocalTranslationRefVisibilitySboolSSIww2PSRotationRefVisibilitySboolSSI�w3PSRotationAxisVisibilitySboolSSI�w1PSScalingRefVisibilitySboolSSI>x9PSHierarchicalCenterVisibilitySboolSSI�x6PSGeometricCenterVisibilitySboolSSI�x8PSReferentialSizeSdoubleSNumberSD(@y5PSDefaultKeyingGroupSintSIntegerSILy3PSDefaultKeyingGroupEnumSenumSSIy%PSPickableSboolSSI�y*PS
TransformableSboolSSI�y(PSCullingModeSenumSSI(z-PSShowTrajectoriesSboolSSIXz"PSliwSBoolSSAUI�zCPSLimbLength 1SNumberSSAUD�?DDY@�zShadingCY�zCullingS
CullingOff �1ModelL�"\;SLeftEyelidLowerModelSLimbNodeX{VersionI�ڂProperties70�{+PSRotationActiveSboolSSI�{(PSInheritTypeSenumSSI5|GPS
ScalingMaxSVector3DSVectorSDDD{|8PSDefaultAttributeIndexSintSIntegerSI�|NPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@-}HPSLcl RotationSLcl RotationSSAD�D�D�}EPSVisibility InheritanceSVisibility InheritanceSSI�},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSIX~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI[:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIb�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@/�5PSDefaultKeyingGroupSintSIntegerSIp�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIہ*PS
TransformableSboolSSI�(PSCullingModeSenumSSIL�-PSShowTrajectoriesSboolSSI|�"PSliwSBoolSSAUI͂CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff�1ModelL�'\;SLeftEyelidUpperModelSLimbNode|�VersionI���Properties70΃+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIY�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @N�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIÅ-PSManipulationModeSenumSSI&�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDc�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI)�:PSLocalTranslationRefVisibilitySboolSSIi�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI0�9PSHierarchicalCenterVisibilitySboolSSIt�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI>�3PSDefaultKeyingGroupEnumSenumSSIq�%PSPickableSboolSSI��*PS
TransformableSboolSSI߉(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIJ�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��/ModelLX
�:SLeftInnerBrowModelSLimbNodeH�VersionI�t�Properties70��+PSRotationActiveSboolSSIЋ(PSInheritTypeSenumSSI%�GPS
ScalingMaxSVector3DSVectorSDDDk�8PSDefaultAttributeIndexSintSIntegerSInjNPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@�EPSVisibility InheritanceSVisibility InheritanceSSIT�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/�/PSSetPreferedAngleSActionSSIj�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI5�2PSRotationRefVisibilitySboolSSIv�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI@�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ɐ5PSDefaultKeyingGroupSintSIntegerSI
�3PSDefaultKeyingGroupEnumSenumSSI=�%PSPickableSboolSSIu�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIg�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelL`�:SLeftIOuterBrowModelSLimbNode�VersionI�y�Properties70f�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSIՓ(PSInheritTypeSenumSSI*�GPS
ScalingMaxSVector3DSVectorSDDDp�8PSDefaultAttributeIndexSintSIntegerSI̔NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@�EPSVisibility InheritanceSVisibility InheritanceSSIY�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD4�/PSSetPreferedAngleSActionSSIo�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI:�2PSRotationRefVisibilitySboolSSI{�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIE�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@Θ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIB�%PSPickableSboolSSIz�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIl�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelLh�:SRightInnerBrowModelSLimbNode�VersionI�F�Properties70l�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD=�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@�EPSVisibility InheritanceSVisibility InheritanceSSI&�,PS	MultiTakeSintSIntegerSIa�-PSManipulationModeSenumSSIĝUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI<�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIǞ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIH�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIΟ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIX�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIܠ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIG�*PS
TransformableSboolSSI}�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI9�CPSLimbLength 1SNumberSSAUD�?DDY@\�ShadingCY�CullingS
CullingOff��1ModelLp�:SRightIOuterBrowModelSLimbNode�VersionI�L�Properties709�*PS
RotationOrderSenumSSIr�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDC�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@�EPSVisibility InheritanceSVisibility InheritanceSSI,�,PS	MultiTakeSintSIntegerSIg�-PSManipulationModeSenumSSIʥUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIB�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIͦ:PSLocalTranslationRefVisibilitySboolSSI
�2PSRotationRefVisibilitySboolSSIN�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIԧ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI^�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIM�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI?�CPSLimbLength 1SNumberSSAUD�?DDY@b�ShadingCY��CullingS
CullingOffa�2ModelLx!�:SRightEyelidUpperModelSLimbNode�VersionI��Properties70A�+PSRotationActiveSboolSSIw�(PSInheritTypeSenumSSI̫GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIn�NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI6�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD֭/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIT�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIܮ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI\�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI-�8PSReferentialSizeSdoubleSNumberSD(@p�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSIR�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@1�ShadingCYT�CullingS
CullingOff��2ModelL�&�:SRightEyelidLowerModelSLimbNode��VersionI�@�Properties70�+PSRotationActiveSboolSSIF�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI=�NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@��HPSLcl RotationSLcl RotationSSAD�D�D�EPSVisibility InheritanceSVisibility InheritanceSSI �,PS	MultiTakeSintSIntegerSI[�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI6�-PSPivotsVisibilitySenumSSIy�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIB�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIȷ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIR�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIָ3PSDefaultKeyingGroupEnumSenumSSI	�%PSPickableSboolSSIA�*PS
TransformableSboolSSIw�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI3�CPSLimbLength 1SNumberSSAUD�?DDY@V�ShadingCYy�CullingS
CullingOffO�,ModelL�+�:SRightCheekModelSLimbNodeݺVersionI�	�Properties70/�+PSRotationActiveSboolSSIe�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI\�NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI$�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDĽ/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIB�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIʾ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIJ�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIտ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@^�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI
�*PS
TransformableSboolSSI@�(PSCullingModeSenumSSI{�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYB�CullingS
CullingOff�.ModelL�0�:SRightNostrilModelSLimbNode��VersionI���Properties70��+PSRotationActiveSboolSSI0�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI'�NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@z�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIR�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI
�5PSRotationLimitsVisibilitySboolSSIU�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI\�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@)�5PSDefaultKeyingGroupSintSIntegerSIj�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIF�-PSShowTrajectoriesSboolSSIv�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY
�CullingS
CullingOff��/ModelL�5�:SRightLipUpperModelSLimbNodet�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIQ�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@F�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD[�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI!�:PSLocalTranslationRefVisibilitySboolSSIa�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI(�9PSHierarchicalCenterVisibilitySboolSSIl�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI6�3PSDefaultKeyingGroupEnumSenumSSIi�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIB�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff`�/ModelL�:�:SRightShoulderModelSLimbNode@�VersionI��Properties70��HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIs�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D����D`�)6@D@
M��m�IPSLcl RotationSLcl RotationSSA+D ����D�]�?D������EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI5�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIS�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI[�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI,�8PSReferentialSizeSdoubleSNumberSD(@o�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIQ�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI
�CPSLimbLength 1SNumberSSAUD�?DDY@0�ShadingCYS�CullingS
CullingOff��*ModelL�?�:SRightArmModelSLimbNode��VersionI���Properties70$�HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc�]�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD.�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��$@D �\0�D`��վ��IPSLcl RotationSLcl RotationSSA+D@�)@D�PP!@D�ϤI@5�EPSVisibility InheritanceSVisibility InheritanceSSIo�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDJ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIP�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI[�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI%�3PSDefaultKeyingGroupEnumSenumSSIX�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI1�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffN�.ModelL�D�:SRightForeArmModelSLimbNode.�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIa�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D`�W9�D �<�?D`,���[�IPSLcl RotationSLcl RotationSSA+D�i2@D��@@D`_w@��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
CullingOffn�+ModelL��:SRightHandModelSLimbNode��VersionI�(�Properties70��+PSRotationActiveSboolSSI,�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI$�OPSLcl TranslationSLcl TranslationSSA+D ��8�D <P@D����?{�IPSLcl RotationSLcl RotationSSA+D�: �D�_��D@����EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIC�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIa�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI*�3PSRotationAxisVisibilitySboolSSIi�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI:�8PSReferentialSizeSdoubleSNumberSD(@}�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI)�*PS
TransformableSboolSSI_�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@>�ShadingCYa�CullingS
CullingOff��1ModelL�:SRightHandPinky1ModelSLimbNode��VersionI���Properties709�HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q��r�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDC�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D����D�K�ɿD�ۚ���IPSLcl RotationSLcl RotationSSA+D 
�@�D����D`Z�K@J�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
CullingOfff1ModelL�:SRightHandPinky2ModelSLimbNodeF�VersionI� Properties70��HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?��+PSRotationActiveSboolSSI$�(PSInheritTypeSenumSSIy�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D���D�(���D`��s�IPSLcl RotationSLcl RotationSSA+D��%$�D�@D`dEP@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI;�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIY5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI"3PSRotationAxisVisibilitySboolSSIa1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI28PSReferentialSizeSdoubleSNumberSD(@u5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI!*PS
TransformableSboolSSIW(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@6ShadingCYYCullingS
CullingOff�1ModelL�:SRightHandPinky3ModelSLimbNode�VersionI�FProperties70+PSRotationActiveSboolSSIJ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIBOPSLcl TranslationSLcl TranslationSSA+D�8$�D��V��D �@뿙IPSLcl RotationSLcl RotationSSA+D���"�D���@D^OM@�EPSVisibility InheritanceSVisibility InheritanceSSI&,PS	MultiTakeSintSIntegerSIa-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSI<-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI	2PSRotationRefVisibilitySboolSSIH	3PSRotationAxisVisibilitySboolSSI�	1PSScalingRefVisibilitySboolSSI�	9PSHierarchicalCenterVisibilitySboolSSI
6PSGeometricCenterVisibilitySboolSSIX
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI�
3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIG*PS
TransformableSboolSSI}(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI9CPSLimbLength 1SNumberSSAUD�?DDY@\ShadingCYCullingS
CullingOff0ModelL�:SRightHandRing1ModelSLimbNode�VersionI��Properties70V
HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c��
+PSRotationActiveSboolSSI�
(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDD`8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D�H=�Djs�?D �m�IPSLcl RotationSLcl RotationSSA+D�@��D y6�D@��N@gEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI?UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD|/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIB:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSII9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIW3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI3-PSShowTrajectoriesSboolSSIc"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelL �:SRightHandRing2ModelSLimbNodebVersionI�<Properties70�HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{�
+PSRotationActiveSboolSSI@(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI8OPSLcl TranslationSLcl TranslationSSA+D�'�D ښ��D`K�߿�IPSLcl RotationSLcl RotationSSA+D@�'�D`
�@D�g�P@�EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSIW-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI2-PSPivotsVisibilitySenumSSIu5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI>3PSRotationAxisVisibilitySboolSSI}1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSIN8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSI=*PS
TransformableSboolSSIs(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI/CPSLimbLength 1SNumberSSAUD�?DDY@RShadingCYuCullingS
CullingOff�%0ModelL(�:SRightHandRing3ModelSLimbNode�VersionI�a%Properties70/+PSRotationActiveSboolSSIe(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSI]OPSLcl TranslationSLcl TranslationSSA+D@���D�
��D��ݿ�IPSLcl RotationSLcl RotationSSA+D�7���D�Ug�?D�#�D@ EPSVisibility InheritanceSVisibility InheritanceSSIA ,PS	MultiTakeSintSIntegerSI| -PSManipulationModeSenumSSI� UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD!/PSSetPreferedAngleSActionSSIW!-PSPivotsVisibilitySenumSSI�!5PSRotationLimitsVisibilitySboolSSI�!:PSLocalTranslationRefVisibilitySboolSSI""2PSRotationRefVisibilitySboolSSIc"3PSRotationAxisVisibilitySboolSSI�"1PSScalingRefVisibilitySboolSSI�"9PSHierarchicalCenterVisibilitySboolSSI-#6PSGeometricCenterVisibilitySboolSSIs#8PSReferentialSizeSdoubleSNumberSD(@�#5PSDefaultKeyingGroupSintSIntegerSI�#3PSDefaultKeyingGroupEnumSenumSSI*$%PSPickableSboolSSIb$*PS
TransformableSboolSSI�$(PSCullingModeSenumSSI�$-PSShowTrajectoriesSboolSSI%"PSliwSBoolSSAUIT%CPSLimbLength 1SNumberSSAUD�?DDY@w%ShadingCY�%CullingS
CullingOff$.2ModelL0�:SRightHandMiddle1ModelSLimbNode&VersionI��-Properties70s&HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--��&+PSRotationActiveSboolSSI�&(PSInheritTypeSenumSSI7'GPS
ScalingMaxSVector3DSVectorSDDD}'8PSDefaultAttributeIndexSintSIntegerSI�'OPSLcl TranslationSLcl TranslationSSA+D�QB�D<��?D@��?1(IPSLcl RotationSLcl RotationSSA+D�e. @D�:�/�D���N@�(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
CullingOff�62ModelL8�:SRightHandMiddle2ModelSLimbNode�.VersionI�[6Properties70�.HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9�)/+PSRotationActiveSboolSSI_/(PSInheritTypeSenumSSI�/GPS
ScalingMaxSVector3DSVectorSDDD�/8PSDefaultAttributeIndexSintSIntegerSIW0OPSLcl TranslationSLcl TranslationSSA+D`��D���?D@��?�0IPSLcl RotationSLcl RotationSSA+Dd
�?D��ӿD@D�F@1EPSVisibility InheritanceSVisibility InheritanceSSI;1,PS	MultiTakeSintSIntegerSIv1-PSManipulationModeSenumSSI�1UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD2/PSSetPreferedAngleSActionSSIQ2-PSPivotsVisibilitySenumSSI�25PSRotationLimitsVisibilitySboolSSI�2:PSLocalTranslationRefVisibilitySboolSSI32PSRotationRefVisibilitySboolSSI]33PSRotationAxisVisibilitySboolSSI�31PSScalingRefVisibilitySboolSSI�39PSHierarchicalCenterVisibilitySboolSSI'46PSGeometricCenterVisibilitySboolSSIm48PSReferentialSizeSdoubleSNumberSD(@�45PSDefaultKeyingGroupSintSIntegerSI�43PSDefaultKeyingGroupEnumSenumSSI$5%PSPickableSboolSSI\5*PS
TransformableSboolSSI�5(PSCullingModeSenumSSI�5-PSShowTrajectoriesSboolSSI�5"PSliwSBoolSSAUIN6CPSLimbLength 1SNumberSSAUD�?DDY@q6ShadingCY�6CullingS
CullingOff�>2ModelL@:SRightHandMiddle3ModelSLimbNode�6VersionI��>Properties70P7+PSRotationActiveSboolSSI�7(PSInheritTypeSenumSSI�7GPS
ScalingMaxSVector3DSVectorSDDD!88PSDefaultAttributeIndexSintSIntegerSI~8OPSLcl TranslationSLcl TranslationSSA+D >u
�D@�&�D�I��?�8IPSLcl RotationSLcl RotationSSA+Dh��?D ��пD`�E@(9EPSVisibility InheritanceSVisibility InheritanceSSIb9,PS	MultiTakeSintSIntegerSI�9-PSManipulationModeSenumSSI:UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD=:/PSSetPreferedAngleSActionSSIx:-PSPivotsVisibilitySenumSSI�:5PSRotationLimitsVisibilitySboolSSI;:PSLocalTranslationRefVisibilitySboolSSIC;2PSRotationRefVisibilitySboolSSI�;3PSRotationAxisVisibilitySboolSSI�;1PSScalingRefVisibilitySboolSSI
<9PSHierarchicalCenterVisibilitySboolSSIN<6PSGeometricCenterVisibilitySboolSSI�<8PSReferentialSizeSdoubleSNumberSD(@�<5PSDefaultKeyingGroupSintSIntegerSI=3PSDefaultKeyingGroupEnumSenumSSIK=%PSPickableSboolSSI�=*PS
TransformableSboolSSI�=(PSCullingModeSenumSSI�=-PSShowTrajectoriesSboolSSI$>"PSliwSBoolSSAUIu>CPSLimbLength 1SNumberSSAUD�?DDY@�>ShadingCY�>CullingS
CullingOffDG1ModelLH:SRightHandIndex1ModelSLimbNode$?VersionI��FProperties70�?HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A���?+PSRotationActiveSboolSSI@(PSInheritTypeSenumSSIW@GPS
ScalingMaxSVector3DSVectorSDDD�@8PSDefaultAttributeIndexSintSIntegerSI�@OPSLcl TranslationSLcl TranslationSSA+D�e��D�yҿ�D��y@QAIPSLcl RotationSLcl RotationSSA+D�a�3@D���6�D�ݪC@�AEPSVisibility InheritanceSVisibility InheritanceSSI�A,PS	MultiTakeSintSIntegerSIB-PSManipulationModeSenumSSI|BUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�B/PSSetPreferedAngleSActionSSI�B-PSPivotsVisibilitySenumSSI7C5PSRotationLimitsVisibilitySboolSSIC:PSLocalTranslationRefVisibilitySboolSSI�C2PSRotationRefVisibilitySboolSSID3PSRotationAxisVisibilitySboolSSI?D1PSScalingRefVisibilitySboolSSI�D9PSHierarchicalCenterVisibilitySboolSSI�D6PSGeometricCenterVisibilitySboolSSIE8PSReferentialSizeSdoubleSNumberSD(@SE5PSDefaultKeyingGroupSintSIntegerSI�E3PSDefaultKeyingGroupEnumSenumSSI�E%PSPickableSboolSSI�E*PS
TransformableSboolSSI5F(PSCullingModeSenumSSIpF-PSShowTrajectoriesSboolSSI�F"PSliwSBoolSSAUI�FCPSLimbLength 1SNumberSSAUD�?DDY@GShadingCY7GCullingS
CullingOff�O1ModelLP
:SRightHandIndex2ModelSLimbNode�GVersionI�zOProperties70HHPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\�HH+PSRotationActiveSboolSSI~H(PSInheritTypeSenumSSI�HGPS
ScalingMaxSVector3DSVectorSDDDI8PSDefaultAttributeIndexSintSIntegerSIvIOPSLcl TranslationSLcl TranslationSSA+D���
�D���?D�!C�?�IIPSLcl RotationSLcl RotationSSA+D�ַ!@D�|L�D���@@ JEPSVisibility InheritanceSVisibility InheritanceSSIZJ,PS	MultiTakeSintSIntegerSI�J-PSManipulationModeSenumSSI�JUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD5K/PSSetPreferedAngleSActionSSIpK-PSPivotsVisibilitySenumSSI�K5PSRotationLimitsVisibilitySboolSSI�K:PSLocalTranslationRefVisibilitySboolSSI;L2PSRotationRefVisibilitySboolSSI|L3PSRotationAxisVisibilitySboolSSI�L1PSScalingRefVisibilitySboolSSIM9PSHierarchicalCenterVisibilitySboolSSIFM6PSGeometricCenterVisibilitySboolSSI�M8PSReferentialSizeSdoubleSNumberSD(@�M5PSDefaultKeyingGroupSintSIntegerSIN3PSDefaultKeyingGroupEnumSenumSSICN%PSPickableSboolSSI{N*PS
TransformableSboolSSI�N(PSCullingModeSenumSSI�N-PSShowTrajectoriesSboolSSIO"PSliwSBoolSSAUImOCPSLimbLength 1SNumberSSAUD�?DDY@�OShadingCY�OCullingS
CullingOff�W1ModelLX�:SRightHandIndex3ModelSLimbNodePVersionI��WProperties70nP+PSRotationActiveSboolSSI�P(PSInheritTypeSenumSSI�PGPS
ScalingMaxSVector3DSVectorSDDD?Q8PSDefaultAttributeIndexSintSIntegerSI�QOPSLcl TranslationSLcl TranslationSSA+D�.�D��߿D@���?�QIPSLcl RotationSLcl RotationSSA+D@?$@D����D��aB@FREPSVisibility InheritanceSVisibility InheritanceSSI�R,PS	MultiTakeSintSIntegerSI�R-PSManipulationModeSenumSSISUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD[S/PSSetPreferedAngleSActionSSI�S-PSPivotsVisibilitySenumSSI�S5PSRotationLimitsVisibilitySboolSSI!T:PSLocalTranslationRefVisibilitySboolSSIaT2PSRotationRefVisibilitySboolSSI�T3PSRotationAxisVisibilitySboolSSI�T1PSScalingRefVisibilitySboolSSI(U9PSHierarchicalCenterVisibilitySboolSSIlU6PSGeometricCenterVisibilitySboolSSI�U8PSReferentialSizeSdoubleSNumberSD(@�U5PSDefaultKeyingGroupSintSIntegerSI6V3PSDefaultKeyingGroupEnumSenumSSIiV%PSPickableSboolSSI�V*PS
TransformableSboolSSI�V(PSCullingModeSenumSSIW-PSShowTrajectoriesSboolSSIBW"PSliwSBoolSSAUI�WCPSLimbLength 1SNumberSSAUD�?DDY@�WShadingCY�WCullingS
CullingOffb`1ModelL`#�:SRightHandThumb1ModelSLimbNodeBXVersionI�`Properties70�XHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D	��*��X+PSRotationActiveSboolSSI Y(PSInheritTypeSenumSSIuYGPS
ScalingMaxSVector3DSVectorSDDD�Y8PSDefaultAttributeIndexSintSIntegerSIZOPSLcl TranslationSLcl TranslationSSA+D�~��D����D༯@oZIPSLcl RotationSLcl RotationSSA+D
�ϿDe�$�D�9I5@�ZEPSVisibility InheritanceSVisibility InheritanceSSI�Z,PS	MultiTakeSintSIntegerSI7[-PSManipulationModeSenumSSI�[UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�[/PSSetPreferedAngleSActionSSI\-PSPivotsVisibilitySenumSSIU\5PSRotationLimitsVisibilitySboolSSI�\:PSLocalTranslationRefVisibilitySboolSSI�\2PSRotationRefVisibilitySboolSSI]3PSRotationAxisVisibilitySboolSSI]]1PSScalingRefVisibilitySboolSSI�]9PSHierarchicalCenterVisibilitySboolSSI�]6PSGeometricCenterVisibilitySboolSSI.^8PSReferentialSizeSdoubleSNumberSD(@q^5PSDefaultKeyingGroupSintSIntegerSI�^3PSDefaultKeyingGroupEnumSenumSSI�^%PSPickableSboolSSI_*PS
TransformableSboolSSIS_(PSCullingModeSenumSSI�_-PSShowTrajectoriesSboolSSI�_"PSliwSBoolSSAUI`CPSLimbLength 1SNumberSSAUD�?DDY@2`ShadingCYU`CullingS
CullingOff�h1ModelLh(�:SRightHandThumb2ModelSLimbNode�`VersionI�BhProperties70a+PSRotationActiveSboolSSIFa(PSInheritTypeSenumSSI�aGPS
ScalingMaxSVector3DSVectorSDDD�a8PSDefaultAttributeIndexSintSIntegerSI>bOPSLcl TranslationSLcl TranslationSSA+D`�2��D`���D��@�bIPSLcl RotationSLcl RotationSSA+D�8��?D��U,�D`��տ�bEPSVisibility InheritanceSVisibility InheritanceSSI"c,PS	MultiTakeSintSIntegerSI]c-PSManipulationModeSenumSSI�cUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�c/PSSetPreferedAngleSActionSSI8d-PSPivotsVisibilitySenumSSI{d5PSRotationLimitsVisibilitySboolSSI�d:PSLocalTranslationRefVisibilitySboolSSIe2PSRotationRefVisibilitySboolSSIDe3PSRotationAxisVisibilitySboolSSI�e1PSScalingRefVisibilitySboolSSI�e9PSHierarchicalCenterVisibilitySboolSSIf6PSGeometricCenterVisibilitySboolSSITf8PSReferentialSizeSdoubleSNumberSD(@�f5PSDefaultKeyingGroupSintSIntegerSI�f3PSDefaultKeyingGroupEnumSenumSSIg%PSPickableSboolSSICg*PS
TransformableSboolSSIyg(PSCullingModeSenumSSI�g-PSShowTrajectoriesSboolSSI�g"PSliwSBoolSSAUI5hCPSLimbLength 1SNumberSSAUD�?DDY@XhShadingCY{hCullingS
CullingOffq1ModelLp-�:SRightHandThumb3ModelSLimbNode�hVersionI��pProperties70SiHPSPreRotationSVector3DSVectorSD$�rOϸ>DD�i+PSRotationActiveSboolSSI�i(PSInheritTypeSenumSSIjGPS
ScalingMaxSVector3DSVectorSDDD]j8PSDefaultAttributeIndexSintSIntegerSI�jOPSLcl TranslationSLcl TranslationSSA+D@5^�D �r�D@��@kIPSLcl RotationSLcl RotationSSA+DQ+@D@�h0�D����dkEPSVisibility InheritanceSVisibility InheritanceSSI�k,PS	MultiTakeSintSIntegerSI�k-PSManipulationModeSenumSSI<lUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDyl/PSSetPreferedAngleSActionSSI�l-PSPivotsVisibilitySenumSSI�l5PSRotationLimitsVisibilitySboolSSI?m:PSLocalTranslationRefVisibilitySboolSSIm2PSRotationRefVisibilitySboolSSI�m3PSRotationAxisVisibilitySboolSSI�m1PSScalingRefVisibilitySboolSSIFn9PSHierarchicalCenterVisibilitySboolSSI�n6PSGeometricCenterVisibilitySboolSSI�n8PSReferentialSizeSdoubleSNumberSD(@o5PSDefaultKeyingGroupSintSIntegerSITo3PSDefaultKeyingGroupEnumSenumSSI�o%PSPickableSboolSSI�o*PS
TransformableSboolSSI�o(PSCullingModeSenumSSI0p-PSShowTrajectoriesSboolSSI`p"PSliwSBoolSSAUI�pCPSLimbLength 1SNumberSSAUD�?DDY@�pShadingCY�pCullingS
CullingOff}y.ModelLx2�:SLeftShoulderModelSLimbNode]qVersionI�7yProperties70�qHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9�r+PSRotationActiveSboolSSI;r(PSInheritTypeSenumSSI�rGPS
ScalingMaxSVector3DSVectorSDDD�r8PSDefaultAttributeIndexSintSIntegerSI3sOPSLcl TranslationSLcl TranslationSSA+D��@D@�)6@D@
M���sIPSLcl RotationSLcl RotationSSA+D`j�@D�B�D@����sEPSVisibility InheritanceSVisibility InheritanceSSIt,PS	MultiTakeSintSIntegerSIRt-PSManipulationModeSenumSSI�tUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�t/PSSetPreferedAngleSActionSSI-u-PSPivotsVisibilitySenumSSIpu5PSRotationLimitsVisibilitySboolSSI�u:PSLocalTranslationRefVisibilitySboolSSI�u2PSRotationRefVisibilitySboolSSI9v3PSRotationAxisVisibilitySboolSSIxv1PSScalingRefVisibilitySboolSSI�v9PSHierarchicalCenterVisibilitySboolSSIw6PSGeometricCenterVisibilitySboolSSIIw8PSReferentialSizeSdoubleSNumberSD(@�w5PSDefaultKeyingGroupSintSIntegerSI�w3PSDefaultKeyingGroupEnumSenumSSIx%PSPickableSboolSSI8x*PS
TransformableSboolSSInx(PSCullingModeSenumSSI�x-PSShowTrajectoriesSboolSSI�x"PSliwSBoolSSAUI*yCPSLimbLength 1SNumberSSAUD�?DDY@MyShadingCYpyCullingS
CullingOff�)ModelL�7�:SLeftArmModelSLimbNode�yVersionI���Properties70@zHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@yz+PSRotationActiveSboolSSI�z(PSInheritTypeSenumSSI{GPS
ScalingMaxSVector3DSVectorSDDDJ{8PSDefaultAttributeIndexSintSIntegerSI�{OPSLcl TranslationSLcl TranslationSSA+D��$@D��3~>DhqT��{IPSLcl RotationSLcl RotationSSA+D�<@D �#�D`ԾF�Q|EPSVisibility InheritanceSVisibility InheritanceSSI�|,PS	MultiTakeSintSIntegerSI�|-PSManipulationModeSenumSSI)}UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf}/PSSetPreferedAngleSActionSSI�}-PSPivotsVisibilitySenumSSI�}5PSRotationLimitsVisibilitySboolSSI,~:PSLocalTranslationRefVisibilitySboolSSIl~2PSRotationRefVisibilitySboolSSI�~3PSRotationAxisVisibilitySboolSSI�~1PSScalingRefVisibilitySboolSSI39PSHierarchicalCenterVisibilitySboolSSIw6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIA�3PSDefaultKeyingGroupEnumSenumSSIt�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIM�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOffi�-ModelL�<�:SLeftForeArmModelSLimbNodeI�VersionI�#�Properties70��HPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?�+PSRotationActiveSboolSSI'�(PSInheritTypeSenumSSI|�GPS
ScalingMaxSVector3DSVectorSDDDƒ8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D��g9@D`�F�D�{G>v�IPSLcl RotationSLcl RotationSSA+D�Ճ>@D�=�<�D���)�ɄEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI>�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDޅ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI\�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI%�3PSRotationAxisVisibilitySboolSSId�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI5�8PSReferentialSizeSdoubleSNumberSD(@x�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI$�*PS
TransformableSboolSSIZ�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIʼn"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@9�ShadingCY\�CullingS
CullingOff��*ModelL�A�:SLeftHandModelSLimbNode��VersionI�B�Properties70�+PSRotationActiveSboolSSIF�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI>�OPSLcl TranslationSLcl TranslationSSA+D���8@D �G�D�>��IPSLcl RotationSLcl RotationSSA+D�+�Du($@D �����EPSVisibility InheritanceSVisibility InheritanceSSI"�,PS	MultiTakeSintSIntegerSI]�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI8�-PSPivotsVisibilitySenumSSI{�5PSRotationLimitsVisibilitySboolSSIÎ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSID�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIʏ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIT�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIؐ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIC�*PS
TransformableSboolSSIy�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI5�CPSLimbLength 1SNumberSSAUD�?DDY@X�ShadingCY{�CullingS
CullingOff�0ModelL�F�:SLeftHandPinky1ModelSLimbNode�VersionI���Properties70R�HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@Dd�Z~Q����+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD\�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D �C@D�S
�D@�	��IPSLcl RotationSLcl RotationSSA+D`Y�1�D`:�&@D��N�c�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIؕ-PSManipulationModeSenumSSI;�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDx�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI>�:PSLocalTranslationRefVisibilitySboolSSI~�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIE�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIϘ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIS�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI/�-PSShowTrajectoriesSboolSSI_�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ӚShadingCY��CullingS
CullingOff~�0ModelL�K�:SLeftHandPinky2ModelSLimbNode^�VersionI�8�Properties70͛HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?�+PSRotationActiveSboolSSI<�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDל8PSDefaultAttributeIndexSintSIntegerSI4�OPSLcl TranslationSLcl TranslationSSA+D���@D@�Ji�D`�¿��IPSLcl RotationSLcl RotationSSA+D���#@D�	@D�DP�ޝ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
CullingOff��0ModelL�P�:SLeftHandPinky3ModelSLimbNode٣VersionI�]�Properties70+�+PSRotationActiveSboolSSIa�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIY�OPSLcl TranslationSLcl TranslationSSA+D@�s@D���D�D�3��>��IPSLcl RotationSLcl RotationSSA+D���"@D�t�@D�MM��EPSVisibility InheritanceSVisibility InheritanceSSI=�,PS	MultiTakeSintSIntegerSIx�-PSManipulationModeSenumSSIۦUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIS�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIާ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI_�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI)�6PSGeometricCenterVisibilitySboolSSIo�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI&�%PSPickableSboolSSI^�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIϪ-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIP�CPSLimbLength 1SNumberSSAUD�?DDY@s�ShadingCY��CullingS
CullingOff�/ModelL�U�:SLeftHandRing1ModelSLimbNode��VersionI�׳Properties70l�HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c���+PSRotationActiveSboolSSI۬(PSInheritTypeSenumSSI0�GPS
ScalingMaxSVector3DSVectorSDDDv�8PSDefaultAttributeIndexSintSIntegerSIӭOPSLcl TranslationSLcl TranslationSSA+D��@D�P�׿D EB�*�IPSLcl RotationSLcl RotationSSA+D ��D�h� @D`K�N�}�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIU�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIͯ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIX�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIٰ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI_�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@,�5PSDefaultKeyingGroupSintSIntegerSIm�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIز*PS
TransformableSboolSSI�(PSCullingModeSenumSSII�-PSShowTrajectoriesSboolSSIy�"PSliwSBoolSSAUIʳCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff��/ModelL��$;SLeftHandRing2ModelSLimbNodew�VersionI�Q�Properties70�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{��+PSRotationActiveSboolSSIU�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIM�OPSLcl TranslationSLcl TranslationSSA+D A@D�Ua�D`;�̿��IPSLcl RotationSLcl RotationSSA+D`�	
@D`�@D` �P���EPSVisibility InheritanceSVisibility InheritanceSSI1�,PS	MultiTakeSintSIntegerSIl�-PSManipulationModeSenumSSIϷUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIG�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIҸ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIS�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIٹ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIc�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIR�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIû-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUID�CPSLimbLength 1SNumberSSAUD�?DDY@g�ShadingCY��CullingS
CullingOff��/ModelL��$;SLeftHandRing3ModelSLimbNode�VersionI�u�Properties70C�+PSRotationActiveSboolSSIy�(PSInheritTypeSenumSSIνGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIq�OPSLcl TranslationSLcl TranslationSSA+D��@D�Q>D�電�ȾIPSLcl RotationSLcl RotationSSA+D��R@D��?D`!�D��EPSVisibility InheritanceSVisibility InheritanceSSIU�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD0�/PSSetPreferedAngleSActionSSIk�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI6�2PSRotationRefVisibilitySboolSSIw�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIA�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI>�%PSPickableSboolSSIv�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIh�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff7�1ModelL��$;SLeftHandMiddle1ModelSLimbNode�VersionI���Properties70��HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIJ�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�h@D`5!ȿD�9�?D�IPSLcl RotationSLcl RotationSSA+D�gƿD@`&@D�j�O���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIo�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI*�5PSRotationLimitsVisibilitySboolSSIr�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI2�1PSScalingRefVisibilitySboolSSIy�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@F�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI(�(PSCullingModeSenumSSIc�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY*�CullingS
CullingOff��1ModelL��$;SLeftHandMiddle2ModelSLimbNode��VersionI�m�Properties70�HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9�;�+PSRotationActiveSboolSSIq�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIi�OPSLcl TranslationSLcl TranslationSSA+D Q�@D�*s??D��ǥ���IPSLcl RotationSLcl RotationSSA+D@n�D��N�D@
�F��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��1ModelL��$;SLeftHandMiddle3ModelSLimbNode�VersionI���Properties70a�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD2�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D �+@D�3q��DR,�>��IPSLcl RotationSLcl RotationSSA+DM�D���޿D@qE�9�EPSVisibility InheritanceSVisibility InheritanceSSIs�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDN�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIT�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI_�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI)�3PSDefaultKeyingGroupEnumSenumSSI\�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI5�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffT�0ModelL��$;SLeftHandIndex1ModelSLimbNode4�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD(�t�c�D���PNk"�Dʴ	A����+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIg�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI
�OPSLcl TranslationSLcl TranslationSSA+D��@D���D�B
@a�IPSLcl RotationSLcl RotationSSA+D��@D�ba1@D�^H���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI)�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIG�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIO�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI �8PSReferentialSizeSdoubleSNumberSD(@c�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIE�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@$�ShadingCYG�CullingS
CullingOff��0ModelL��$;SLeftHandIndex2ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\�W�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD(�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�{�@D`�ft?D`�Z�?��IPSLcl RotationSLcl RotationSSA+D��<�D�m��D�`5A�/�EPSVisibility InheritanceSVisibility InheritanceSSIi�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI
�:PSLocalTranslationRefVisibilitySboolSSIJ�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIU�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIR�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI+�"PSliwSBoolSSAUI|�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelL��$;SLeftHandIndex3ModelSLimbNode*�VersionI���Properties70|�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDM�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��_@D����D͒վ�IPSLcl RotationSLcl RotationSSA+D{��D��n�D@��B�T�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI,�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDi�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI/�:PSLocalTranslationRefVisibilitySboolSSIo�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI6�9PSHierarchicalCenterVisibilitySboolSSIz�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSID�3PSDefaultKeyingGroupEnumSenumSSIw�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI �-PSShowTrajectoriesSboolSSIP�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffo�0ModelL��$;SLeftHandThumb1ModelSLimbNodeO�VersionI�)�Properties70��HPSPreRotationSVector3DSVectorSDD��t[��?D2��*���+PSRotationActiveSboolSSI-�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI%�OPSLcl TranslationSLcl TranslationSSA+D���?D���D��l@|�IPSLcl RotationSLcl RotationSSA+D�	�ϿDe�$@D�9I5���EPSVisibility InheritanceSVisibility InheritanceSSI	�,PS	MultiTakeSintSIntegerSID�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIb�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI+�3PSRotationAxisVisibilitySboolSSIj�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI;�8PSReferentialSizeSdoubleSNumberSD(@~�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI*�*PS
TransformableSboolSSI`�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@?�ShadingCYb�CullingS
CullingOff�0ModelL�%;SLeftHandThumb2ModelSLimbNode��VersionI�NProperties70+PSRotationActiveSboolSSIR(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIJOPSLcl TranslationSLcl TranslationSSA+D`�2�?D`���D`
�@�IPSLcl RotationSLcl RotationSSA+D`8��?D�U,@D���?�EPSVisibility InheritanceSVisibility InheritanceSSI.,PS	MultiTakeSintSIntegerSIi-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD	/PSSetPreferedAngleSActionSSID-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSIP3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSI`8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIO*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIACPSLimbLength 1SNumberSSAUD�?DDY@dShadingCY�CullingS
CullingOff0ModelL�%;SLeftHandThumb3ModelSLimbNode�VersionI��Properties70^HPSPreRotationSVector3DSVectorSD��cܥ�>DD�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI"	GPS
ScalingMaxSVector3DSVectorSDDDh	8PSDefaultAttributeIndexSintSIntegerSI�	OPSLcl TranslationSLcl TranslationSSA+D@5^@D �r�D@��@
IPSLcl RotationSLcl RotationSSA+D Q+@D��h0@D��@o
EPSVisibility InheritanceSVisibility InheritanceSSI�
,PS	MultiTakeSintSIntegerSI�
-PSManipulationModeSenumSSIGUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIJ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI

1PSScalingRefVisibilitySboolSSIQ
9PSHierarchicalCenterVisibilitySboolSSI�
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSI_3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSI;-PSShowTrajectoriesSboolSSIk"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff0,ModelL�
%;SRightUpLegModelSLimbNodefVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSICGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@.�D �C�D=IPSLcl RotationSLcl RotationSSA+D`f�;�DY@#�D��5@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIhUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI#5PSRotationLimitsVisibilitySboolSSIk:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI+1PSScalingRefVisibilitySboolSSIr9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@?5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI!(PSCullingModeSenumSSI\-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY#CullingS
CullingOffO *ModelL`�:SRightLegModelSLimbNode�VersionI�	 Properties70�+PSRotationActiveSboolSSI
(PSInheritTypeSenumSSIbGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIOPSLcl TranslationSLcl TranslationSSA+D`�p�D@�tD�D@�e��\IPSLcl RotationSLcl RotationSSA+DV�I@D����?D 8'�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI$-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIB5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3PSRotationAxisVisibilitySboolSSIJ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@^5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI
*PS
TransformableSboolSSI@(PSCullingModeSenumSSI{-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ ShadingCYB CullingS
CullingOffo(+ModelLh�:SRightFootModelSLimbNode� VersionI�)(Properties70� +PSRotationActiveSboolSSI-!(PSInheritTypeSenumSSI�!GPS
ScalingMaxSVector3DSVectorSDDD�!8PSDefaultAttributeIndexSintSIntegerSI%"OPSLcl TranslationSLcl TranslationSSA+D`V}�D@e(E�D |�|"IPSLcl RotationSLcl RotationSSA+D C6:�D�%�@D����"EPSVisibility InheritanceSVisibility InheritanceSSI	#,PS	MultiTakeSintSIntegerSID#-PSManipulationModeSenumSSI�#UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�#/PSSetPreferedAngleSActionSSI$-PSPivotsVisibilitySenumSSIb$5PSRotationLimitsVisibilitySboolSSI�$:PSLocalTranslationRefVisibilitySboolSSI�$2PSRotationRefVisibilitySboolSSI+%3PSRotationAxisVisibilitySboolSSIj%1PSScalingRefVisibilitySboolSSI�%9PSHierarchicalCenterVisibilitySboolSSI�%6PSGeometricCenterVisibilitySboolSSI;&8PSReferentialSizeSdoubleSNumberSD(@~&5PSDefaultKeyingGroupSintSIntegerSI�&3PSDefaultKeyingGroupEnumSenumSSI�&%PSPickableSboolSSI*'*PS
TransformableSboolSSI`'(PSCullingModeSenumSSI�'-PSShowTrajectoriesSboolSSI�'"PSliwSBoolSSAUI(CPSLimbLength 1SNumberSSAUD�?DDY@?(ShadingCYb(CullingS
CullingOff�0+ModelLp�:SRightToesModelSLimbNode�(VersionI�I0Properties70)+PSRotationActiveSboolSSIM)(PSInheritTypeSenumSSI�)GPS
ScalingMaxSVector3DSVectorSDDD�)8PSDefaultAttributeIndexSintSIntegerSIE*OPSLcl TranslationSLcl TranslationSSA+D�Y��D�TD�D`�-@�*IPSLcl RotationSLcl RotationSSA+D�.��?D�T��D@�p�?�*EPSVisibility InheritanceSVisibility InheritanceSSI)+,PS	MultiTakeSintSIntegerSId+-PSManipulationModeSenumSSI�+UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD,/PSSetPreferedAngleSActionSSI?,-PSPivotsVisibilitySenumSSI�,5PSRotationLimitsVisibilitySboolSSI�,:PSLocalTranslationRefVisibilitySboolSSI
-2PSRotationRefVisibilitySboolSSIK-3PSRotationAxisVisibilitySboolSSI�-1PSScalingRefVisibilitySboolSSI�-9PSHierarchicalCenterVisibilitySboolSSI.6PSGeometricCenterVisibilitySboolSSI[.8PSReferentialSizeSdoubleSNumberSD(@�.5PSDefaultKeyingGroupSintSIntegerSI�.3PSDefaultKeyingGroupEnumSenumSSI/%PSPickableSboolSSIJ/*PS
TransformableSboolSSI�/(PSCullingModeSenumSSI�/-PSShowTrajectoriesSboolSSI�/"PSliwSBoolSSAUI<0CPSLimbLength 1SNumberSSAUD�?DDY@_0ShadingCY�0CullingS
CullingOff�8+ModelLx�:SLeftUpLegModelSLimbNode�0VersionI�i8Properties7071+PSRotationActiveSboolSSIm1(PSInheritTypeSenumSSI�1GPS
ScalingMaxSVector3DSVectorSDDD28PSDefaultAttributeIndexSintSIntegerSIe2OPSLcl TranslationSLcl TranslationSSA+D`.@D��C�D�2IPSLcl RotationSLcl RotationSSA+D`��=�DH�?D�v@3EPSVisibility InheritanceSVisibility InheritanceSSII3,PS	MultiTakeSintSIntegerSI�3-PSManipulationModeSenumSSI�3UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD$4/PSSetPreferedAngleSActionSSI_4-PSPivotsVisibilitySenumSSI�45PSRotationLimitsVisibilitySboolSSI�4:PSLocalTranslationRefVisibilitySboolSSI*52PSRotationRefVisibilitySboolSSIk53PSRotationAxisVisibilitySboolSSI�51PSScalingRefVisibilitySboolSSI�59PSHierarchicalCenterVisibilitySboolSSI566PSGeometricCenterVisibilitySboolSSI{68PSReferentialSizeSdoubleSNumberSD(@�65PSDefaultKeyingGroupSintSIntegerSI�63PSDefaultKeyingGroupEnumSenumSSI27%PSPickableSboolSSIj7*PS
TransformableSboolSSI�7(PSCullingModeSenumSSI�7-PSShowTrajectoriesSboolSSI8"PSliwSBoolSSAUI\8CPSLimbLength 1SNumberSSAUD�?DDY@8ShadingCY�8CullingS
CullingOff�@)ModelL��:SLeftLegModelSLimbNode9VersionI��@Properties70U9+PSRotationActiveSboolSSI�9(PSInheritTypeSenumSSI�9GPS
ScalingMaxSVector3DSVectorSDDD&:8PSDefaultAttributeIndexSintSIntegerSI�:OPSLcl TranslationSLcl TranslationSSA+D�p@D �tD�D@�e���:IPSLcl RotationSLcl RotationSSA+D��rT@D@��@D���@-;EPSVisibility InheritanceSVisibility InheritanceSSIg;,PS	MultiTakeSintSIntegerSI�;-PSManipulationModeSenumSSI<UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDB</PSSetPreferedAngleSActionSSI}<-PSPivotsVisibilitySenumSSI�<5PSRotationLimitsVisibilitySboolSSI=:PSLocalTranslationRefVisibilitySboolSSIH=2PSRotationRefVisibilitySboolSSI�=3PSRotationAxisVisibilitySboolSSI�=1PSScalingRefVisibilitySboolSSI>9PSHierarchicalCenterVisibilitySboolSSIS>6PSGeometricCenterVisibilitySboolSSI�>8PSReferentialSizeSdoubleSNumberSD(@�>5PSDefaultKeyingGroupSintSIntegerSI?3PSDefaultKeyingGroupEnumSenumSSIP?%PSPickableSboolSSI�?*PS
TransformableSboolSSI�?(PSCullingModeSenumSSI�?-PSShowTrajectoriesSboolSSI)@"PSliwSBoolSSAUIz@CPSLimbLength 1SNumberSSAUD�?DDY@�@ShadingCY�@CullingS
CullingOff�H*ModelL�:SLeftFootModelSLimbNode"AVersionI��HProperties70tA+PSRotationActiveSboolSSI�A(PSInheritTypeSenumSSI�AGPS
ScalingMaxSVector3DSVectorSDDDEB8PSDefaultAttributeIndexSintSIntegerSI�BOPSLcl TranslationSLcl TranslationSSA+D`V}�?D@e(E�D |��BIPSLcl RotationSLcl RotationSSA+D@x@D���@D`�9 @LCEPSVisibility InheritanceSVisibility InheritanceSSI�C,PS	MultiTakeSintSIntegerSI�C-PSManipulationModeSenumSSI$DUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDaD/PSSetPreferedAngleSActionSSI�D-PSPivotsVisibilitySenumSSI�D5PSRotationLimitsVisibilitySboolSSI'E:PSLocalTranslationRefVisibilitySboolSSIgE2PSRotationRefVisibilitySboolSSI�E3PSRotationAxisVisibilitySboolSSI�E1PSScalingRefVisibilitySboolSSI.F9PSHierarchicalCenterVisibilitySboolSSIrF6PSGeometricCenterVisibilitySboolSSI�F8PSReferentialSizeSdoubleSNumberSD(@�F5PSDefaultKeyingGroupSintSIntegerSI<G3PSDefaultKeyingGroupEnumSenumSSIoG%PSPickableSboolSSI�G*PS
TransformableSboolSSI�G(PSCullingModeSenumSSIH-PSShowTrajectoriesSboolSSIHH"PSliwSBoolSSAUI�HCPSLimbLength 1SNumberSSAUD�?DDY@�HShadingCY�HCullingS
CullingOffQ*ModelL�:SLeftToesModelSLimbNodeAIVersionI��PProperties70�I+PSRotationActiveSboolSSI�I(PSInheritTypeSenumSSIJGPS
ScalingMaxSVector3DSVectorSDDDdJ8PSDefaultAttributeIndexSintSIntegerSI�JOPSLcl TranslationSLcl TranslationSSA+D�Y��?D�TD�D��-@KIPSLcl RotationSLcl RotationSSA+D����D@�(�D P�ۿkKEPSVisibility InheritanceSVisibility InheritanceSSI�K,PS	MultiTakeSintSIntegerSI�K-PSManipulationModeSenumSSICLUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�L/PSSetPreferedAngleSActionSSI�L-PSPivotsVisibilitySenumSSI�L5PSRotationLimitsVisibilitySboolSSIFM:PSLocalTranslationRefVisibilitySboolSSI�M2PSRotationRefVisibilitySboolSSI�M3PSRotationAxisVisibilitySboolSSIN1PSScalingRefVisibilitySboolSSIMN9PSHierarchicalCenterVisibilitySboolSSI�N6PSGeometricCenterVisibilitySboolSSI�N8PSReferentialSizeSdoubleSNumberSD(@O5PSDefaultKeyingGroupSintSIntegerSI[O3PSDefaultKeyingGroupEnumSenumSSI�O%PSPickableSboolSSI�O*PS
TransformableSboolSSI�O(PSCullingModeSenumSSI7P-PSShowTrajectoriesSboolSSIgP"PSliwSBoolSSAUI�PCPSLimbLength 1SNumberSSAUD�?DDY@�PShadingCY�PCullingS
CullingOff�RQAnimationStackL��Z:S>_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1AnimStackS�RProperties70�Q0PS
LocalStartSKTimeSTimeSL(e9��R/PS	LocalStopSKTimeSTimeSL��G��MR4PSReferenceStartSKTimeSTimeSL(e9���R3PS
ReferenceStopSKTimeSTimeSL��G��uU_AnimationLayerL(��9SL_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1:BaseAnimationAnimLayerShUProperties70�SAPSColorSColorRGBSColorSD�������?DD�������?�S5PSBlendModeBypassS	ULongLongSSLT,PS	MultiTakeSintSIntegerSI@T+PSmLayerIDSintSIntegerSIwT)PSMutedForSoloSboolSSI�T*PS
MutedByParentSboolSSI�T+PSLockedByParentSboolSSI+U5PSParentCollapseVisibilitySboolSSI[U"PSEmptySboolSSI?X\AnimationLayerLX��9SI_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1:AnimLayer1AnimLayerS2XProperties70TVAPSColorSColorRGBSColorSD�������?DD�������?�V5PSBlendModeBypassS	ULongLongSSL�V,PS	MultiTakeSintSIntegerSI
W+PSmLayerIDSintSIntegerSIAW)PSMutedForSoloSboolSSIyW*PS
MutedByParentSboolSSI�W+PSLockedByParentSboolSSI�W5PSParentCollapseVisibilitySboolSSI%X"PSEmptySboolSSI~Y#AnimationCurveNodeLXM�:STAnimCurveNodeSqYProperties70�XPSdSCompoundSS�X'PSd|XSNumberSSAD�
0@/Y'PSd|YSNumberSSAD�n1V@dY'PSd|ZSNumberSSAD�����Z#AnimationCurveNodeL;�:SRAnimCurveNodeS�ZProperties70ZPSdSCompoundSS9Z'PSd|XSNumberSSAD@nZ'PSd|YSNumberSSAD�N��Z'PSd|ZSNumberSSAD�����[#AnimationCurveNodeL(��:STAnimCurveNodeS�[Properties70C[PSdSCompoundSSx['PSd|XSNumberSSAD�['PSd|YSNumberSSAD�['PSd|ZSNumberSSAD;]#AnimationCurveNodeL(�:SRAnimCurveNodeS.]Properties70�\PSdSCompoundSS�\'PSd|XSNumberSSAD�(J:@�\'PSd|YSNumberSSAD���?!]'PSd|ZSNumberSSAD��C@z^#AnimationCurveNodeLX_�:STAnimCurveNodeSm^Properties70�]PSdSCompoundSS�]'PSd|XSNumberSSAD+^'PSd|YSNumberSSAD`^'PSd|ZSNumberSSAD�_#AnimationCurveNodeL��:SRAnimCurveNodeS�_Properties70_PSdSCompoundSS5_'PSd|XSNumberSSAD@����j_'PSd|YSNumberSSAD�'^�?�_'PSd|ZSNumberSSAD�����`#AnimationCurveNodeL�̅:STAnimCurveNodeS�`Properties70?`PSdSCompoundSSt`'PSd|XSNumberSSAD�`'PSd|YSNumberSSAD�`'PSd|ZSNumberSSAD7b#AnimationCurveNodeL�:�:SRAnimCurveNodeS*bProperties70~aPSdSCompoundSS�a'PSd|XSNumberSSAD@����a'PSd|YSNumberSSAD@n*@b'PSd|ZSNumberSSAD�y��vc#AnimationCurveNodeL��:STAnimCurveNodeSicProperties70�bPSdSCompoundSS�b'PSd|XSNumberSSAD'c'PSd|YSNumberSSAD\c'PSd|ZSNumberSSAD�d#AnimationCurveNodeL��:SRAnimCurveNodeS�dProperties70�cPSdSCompoundSS1d'PSd|XSNumberSSAD ��fd'PSd|YSNumberSSAD@�|(@�d'PSd|ZSNumberSSAD�y���e#AnimationCurveNodeL`ۅ:STAnimCurveNodeS�eProperties70;ePSdSCompoundSSpe'PSd|XSNumberSSAD�e'PSd|YSNumberSSAD�e'PSd|ZSNumberSSAD3g#AnimationCurveNodeLX��:SRAnimCurveNodeS&gProperties70zfPSdSCompoundSS�f'PSd|XSNumberSSAD �����f'PSd|YSNumberSSAD�]�?g'PSd|ZSNumberSSAD����rh#AnimationCurveNodeL�:STAnimCurveNodeSehProperties70�gPSdSCompoundSS�g'PSd|XSNumberSSAD#h'PSd|YSNumberSSADXh'PSd|ZSNumberSSAD�i#AnimationCurveNodeL���:SRAnimCurveNodeS�iProperties70�hPSdSCompoundSS-i'PSd|XSNumberSSAD@�)@bi'PSd|YSNumberSSAD�PP!@�i'PSd|ZSNumberSSAD�ϤI@�j#AnimationCurveNodeLƅ:STAnimCurveNodeS�jProperties707jPSdSCompoundSSlj'PSd|XSNumberSSAD�j'PSd|YSNumberSSAD�j'PSd|ZSNumberSSAD/l#AnimationCurveNodeL(��:SRAnimCurveNodeS"lProperties70vkPSdSCompoundSS�k'PSd|XSNumberSSAD�i2@�k'PSd|YSNumberSSAD��@@l'PSd|ZSNumberSSAD`_w@nm#AnimationCurveNodeLp΅:STAnimCurveNodeSamProperties70�lPSdSCompoundSS�l'PSd|XSNumberSSADm'PSd|YSNumberSSADTm'PSd|ZSNumberSSAD�n#AnimationCurveNodeLh��:SRAnimCurveNodeS�nProperties70�mPSdSCompoundSS)n'PSd|XSNumberSSAD�: �^n'PSd|YSNumberSSAD�_���n'PSd|ZSNumberSSAD@���o#AnimationCurveNodeL���:STAnimCurveNodeS�oProperties703oPSdSCompoundSSho'PSd|XSNumberSSAD�o'PSd|YSNumberSSAD�o'PSd|ZSNumberSSAD+q#AnimationCurveNodeLT�:SRAnimCurveNodeSqProperties70rpPSdSCompoundSS�p'PSd|XSNumberSSAD 
�@��p'PSd|YSNumberSSAD����q'PSd|ZSNumberSSAD`Z�K@jr#AnimationCurveNodeL��:STAnimCurveNodeS]rProperties70�qPSdSCompoundSS�q'PSd|XSNumberSSADr'PSd|YSNumberSSADPr'PSd|ZSNumberSSAD�s#AnimationCurveNodeLH؅:SRAnimCurveNodeS�sProperties70�rPSdSCompoundSS%s'PSd|XSNumberSSAD��%$�Zs'PSd|YSNumberSSAD�@�s'PSd|ZSNumberSSAD`dEP@�t#AnimationCurveNodeL�Ӆ:STAnimCurveNodeS�tProperties70/tPSdSCompoundSSdt'PSd|XSNumberSSAD�t'PSd|YSNumberSSAD�t'PSd|ZSNumberSSAD'v#AnimationCurveNodeLo�:SRAnimCurveNodeSvProperties70nuPSdSCompoundSS�u'PSd|XSNumberSSAD���"��u'PSd|YSNumberSSAD���@
v'PSd|ZSNumberSSAD^OM@fw#AnimationCurveNodeL�ʅ:STAnimCurveNodeSYwProperties70�vPSdSCompoundSS�v'PSd|XSNumberSSADw'PSd|YSNumberSSADLw'PSd|ZSNumberSSAD�x#AnimationCurveNodeLpY�:SRAnimCurveNodeS�xProperties70�wPSdSCompoundSS!x'PSd|XSNumberSSAD�@��Vx'PSd|YSNumberSSAD y6��x'PSd|ZSNumberSSAD@��N@�y#AnimationCurveNodeL��:STAnimCurveNodeS�yProperties70+yPSdSCompoundSS`y'PSd|XSNumberSSAD�y'PSd|YSNumberSSAD�y'PSd|ZSNumberSSAD#{#AnimationCurveNodeLD�:SRAnimCurveNodeS{Properties70jzPSdSCompoundSS�z'PSd|XSNumberSSAD@�'��z'PSd|YSNumberSSAD`
�@	{'PSd|ZSNumberSSAD�g�P@b|#AnimationCurveNodeL��L:STAnimCurveNodeSU|Properties70�{PSdSCompoundSS�{'PSd|XSNumberSSAD|'PSd|YSNumberSSADH|'PSd|ZSNumberSSAD�}#AnimationCurveNodeL�FM:SRAnimCurveNodeS�}Properties70�|PSdSCompoundSS}'PSd|XSNumberSSAD�7���R}'PSd|YSNumberSSAD�Ug�?�}'PSd|ZSNumberSSAD�#�D@�~#AnimationCurveNodeL0AM:STAnimCurveNodeS�~Properties70'~PSdSCompoundSS\~'PSd|XSNumberSSAD�~'PSd|YSNumberSSAD�~'PSd|ZSNumberSSAD�#AnimationCurveNodeLh<M:SRAnimCurveNodeS�Properties70fPSdSCompoundSS�'PSd|XSNumberSSAD�e. @�'PSd|YSNumberSSAD�:�/��'PSd|ZSNumberSSAD���N@^�#AnimationCurveNodeL�;M:STAnimCurveNodeSQ�Properties70��PSdSCompoundSSڀ'PSd|XSNumberSSAD�'PSd|YSNumberSSADD�'PSd|ZSNumberSSAD��#AnimationCurveNodeL EM:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADd
�?N�'PSd|YSNumberSSAD��ӿ��'PSd|ZSNumberSSAD@D�F@܃#AnimationCurveNodeL�1M:STAnimCurveNodeSσProperties70#�PSdSCompoundSSX�'PSd|XSNumberSSAD��'PSd|YSNumberSSADƒ'PSd|ZSNumberSSAD�#AnimationCurveNodeL 3M:SRAnimCurveNodeS�Properties70b�PSdSCompoundSS��'PSd|XSNumberSSADh��?̄'PSd|YSNumberSSAD ��п�'PSd|ZSNumberSSAD`�E@Z�#AnimationCurveNodeL�6M:STAnimCurveNodeSM�Properties70��PSdSCompoundSSօ'PSd|XSNumberSSAD�'PSd|YSNumberSSAD@�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�-M:SRAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�a�3@J�'PSd|YSNumberSSAD���6��'PSd|ZSNumberSSAD�ݪC@؈#AnimationCurveNodeL7M:STAnimCurveNodeSˈProperties70�PSdSCompoundSST�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�#M:SRAnimCurveNodeS
�Properties70^�PSdSCompoundSS��'PSd|XSNumberSSAD�ַ!@ȉ'PSd|YSNumberSSAD�|L���'PSd|ZSNumberSSAD���@@V�#AnimationCurveNodeL%M:STAnimCurveNodeSI�Properties70��PSdSCompoundSSҊ'PSd|XSNumberSSAD�'PSd|YSNumberSSAD<�'PSd|ZSNumberSSAD��#AnimationCurveNodeLp(M:SRAnimCurveNodeS��Properties70܋PSdSCompoundSS�'PSd|XSNumberSSAD@?$@F�'PSd|YSNumberSSAD����{�'PSd|ZSNumberSSAD��aB@ԍ#AnimationCurveNodeL�M:STAnimCurveNodeSǍProperties70�PSdSCompoundSSP�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL(M:SRAnimCurveNodeS�Properties70Z�PSdSCompoundSS��'PSd|XSNumberSSAD
�ϿĎ'PSd|YSNumberSSADe�$���'PSd|ZSNumberSSAD�9I5@R�#AnimationCurveNodeLXM:STAnimCurveNodeSE�Properties70��PSdSCompoundSSΏ'PSd|XSNumberSSAD�'PSd|YSNumberSSAD8�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�M:SRAnimCurveNodeS��Properties70ؐPSdSCompoundSS
�'PSd|XSNumberSSAD�8��?B�'PSd|YSNumberSSAD��U,�w�'PSd|ZSNumberSSAD`��տВ#AnimationCurveNodeL�M:STAnimCurveNodeSÒProperties70�PSdSCompoundSSL�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL(
M:SRAnimCurveNodeS�Properties70V�PSdSCompoundSS��'PSd|XSNumberSSADQ+@��'PSd|YSNumberSSAD@�h0���'PSd|ZSNumberSSAD����N�#AnimationCurveNodeLX
M:STAnimCurveNodeSA�Properties70��PSdSCompoundSSʔ'PSd|XSNumberSSAD��'PSd|YSNumberSSAD4�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�M:SRAnimCurveNodeS��Properties70ԕPSdSCompoundSS	�'PSd|XSNumberSSAD`j�@>�'PSd|YSNumberSSAD�B�s�'PSd|ZSNumberSSAD@���̗#AnimationCurveNodeL�M:STAnimCurveNodeS��Properties70�PSdSCompoundSSH�'PSd|XSNumberSSAD}�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�M:SRAnimCurveNodeS��Properties70R�PSdSCompoundSS��'PSd|XSNumberSSAD�<@��'PSd|YSNumberSSAD �#��'PSd|ZSNumberSSAD`ԾF�J�#AnimationCurveNodeL�L:STAnimCurveNodeS=�Properties70��PSdSCompoundSSƙ'PSd|XSNumberSSAD��'PSd|YSNumberSSAD0�'PSd|ZSNumberSSAD��#AnimationCurveNodeLH�L:SRAnimCurveNodeS|�Properties70КPSdSCompoundSS�'PSd|XSNumberSSAD�Ճ>@:�'PSd|YSNumberSSAD�=�<�o�'PSd|ZSNumberSSAD���)�Ȝ#AnimationCurveNodeLx�L:STAnimCurveNodeS��Properties70�PSdSCompoundSSD�'PSd|XSNumberSSADy�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL(�L:SRAnimCurveNodeS��Properties70N�PSdSCompoundSS��'PSd|XSNumberSSAD�+���'PSd|YSNumberSSADu($@�'PSd|ZSNumberSSAD ����F�#AnimationCurveNodeLX�L:STAnimCurveNodeS9�Properties70��PSdSCompoundSSž'PSd|XSNumberSSAD��'PSd|YSNumberSSAD,�'PSd|ZSNumberSSAD��#AnimationCurveNodeL��L:SRAnimCurveNodeSx�Properties70̟PSdSCompoundSS�'PSd|XSNumberSSAD`Y�1�6�'PSd|YSNumberSSAD`:�&@k�'PSd|ZSNumberSSAD��N�ġ#AnimationCurveNodeL�L:STAnimCurveNodeS��Properties70�PSdSCompoundSS@�'PSd|XSNumberSSADu�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL0�L:SRAnimCurveNodeS��Properties70J�PSdSCompoundSS�'PSd|XSNumberSSAD���#@��'PSd|YSNumberSSAD�	@�'PSd|ZSNumberSSAD�DP�B�#AnimationCurveNodeL�L:STAnimCurveNodeS5�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD(�'PSd|ZSNumberSSAD��#AnimationCurveNodeL`�L:SRAnimCurveNodeSt�Properties70ȤPSdSCompoundSS��'PSd|XSNumberSSAD���"@2�'PSd|YSNumberSSAD�t�@g�'PSd|ZSNumberSSAD�MM���#AnimationCurveNodeL��L:STAnimCurveNodeS��Properties70�PSdSCompoundSS<�'PSd|XSNumberSSADq�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeLp�L:SRAnimCurveNodeS�Properties70F�PSdSCompoundSS{�'PSd|XSNumberSSAD ����'PSd|YSNumberSSAD�h� @�'PSd|ZSNumberSSAD`K�N�>�#AnimationCurveNodeL��L:STAnimCurveNodeS1�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD$�'PSd|ZSNumberSSAD}�#AnimationCurveNodeL��L:SRAnimCurveNodeSp�Properties70ĩPSdSCompoundSS��'PSd|XSNumberSSAD`�	
@.�'PSd|YSNumberSSAD`�@c�'PSd|ZSNumberSSAD` �P���#AnimationCurveNodeL0M:STAnimCurveNodeS��Properties70�PSdSCompoundSS8�'PSd|XSNumberSSADm�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL`M:SRAnimCurveNodeS�Properties70B�PSdSCompoundSSw�'PSd|XSNumberSSAD��R@��'PSd|YSNumberSSAD��?�'PSd|ZSNumberSSAD`!�D�:�#AnimationCurveNodeLM:STAnimCurveNodeS-�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD �'PSd|ZSNumberSSADy�#AnimationCurveNodeL�L:SRAnimCurveNodeSl�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�gƿ*�'PSd|YSNumberSSAD@`&@_�'PSd|ZSNumberSSAD�j�O���#AnimationCurveNodeL8�L:STAnimCurveNodeS��Properties70��PSdSCompoundSS4�'PSd|XSNumberSSADi�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeLh�L:SRAnimCurveNodeS�Properties70>�PSdSCompoundSSs�'PSd|XSNumberSSAD@n│�'PSd|YSNumberSSAD��N�ݱ'PSd|ZSNumberSSAD@
�F�6�#AnimationCurveNodeL��L:STAnimCurveNodeS)�Properties70}�PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSADu�#AnimationCurveNodeL��L:SRAnimCurveNodeSh�Properties70��PSdSCompoundSS�'PSd|XSNumberSSADM�&�'PSd|YSNumberSSAD���޿[�'PSd|ZSNumberSSAD@qE���#AnimationCurveNodeL��:STAnimCurveNodeS��Properties70��PSdSCompoundSS0�'PSd|XSNumberSSADe�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�۾:SRAnimCurveNodeS�Properties70:�PSdSCompoundSSo�'PSd|XSNumberSSAD��@��'PSd|YSNumberSSAD�ba1@ٶ'PSd|ZSNumberSSAD�^H�2�#AnimationCurveNodeL�־:STAnimCurveNodeS%�Properties70y�PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSADq�#AnimationCurveNodeL�Ҿ:SRAnimCurveNodeSd�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD��<�"�'PSd|YSNumberSSAD�m��W�'PSd|ZSNumberSSAD�`5A���#AnimationCurveNodeL�;:STAnimCurveNodeS��Properties70��PSdSCompoundSS,�'PSd|XSNumberSSADa�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�Ⱦ:SRAnimCurveNodeS�Properties706�PSdSCompoundSSk�'PSd|XSNumberSSAD{����'PSd|YSNumberSSAD��n�ջ'PSd|ZSNumberSSAD@��B�.�#AnimationCurveNodeLpľ:STAnimCurveNodeS!�Properties70u�PSdSCompoundSS��'PSd|XSNumberSSAD߼'PSd|YSNumberSSAD�'PSd|ZSNumberSSADm�#AnimationCurveNodeL���:SRAnimCurveNodeS`�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�	�Ͽ�'PSd|YSNumberSSADe�$@S�'PSd|ZSNumberSSAD�9I5���#AnimationCurveNodeL���:STAnimCurveNodeS��Properties70�PSdSCompoundSS(�'PSd|XSNumberSSAD]�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL`��:SRAnimCurveNodeS��Properties702�PSdSCompoundSSg�'PSd|XSNumberSSAD`8��?��'PSd|YSNumberSSAD�U,@��'PSd|ZSNumberSSAD���?*�#AnimationCurveNodeL���:STAnimCurveNodeS�Properties70q�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADi�#AnimationCurveNodeL���:SRAnimCurveNodeS\�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD Q+@�'PSd|YSNumberSSAD��h0@O�'PSd|ZSNumberSSAD��@��#AnimationCurveNodeL���:STAnimCurveNodeS��Properties70��PSdSCompoundSS$�'PSd|XSNumberSSADY�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL���:SRAnimCurveNodeS��Properties70.�PSdSCompoundSSc�'PSd|XSNumberSSAD`f�;���'PSd|YSNumberSSADY@#���'PSd|ZSNumberSSAD��5@&�#AnimationCurveNodeL���:STAnimCurveNodeS�Properties70m�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADe�#AnimationCurveNodeL�z�:SRAnimCurveNodeSX�Properties70��PSdSCompoundSS��'PSd|XSNumberSSADV�I@�'PSd|YSNumberSSAD����?K�'PSd|ZSNumberSSAD 8'�?��#AnimationCurveNodeL0z�:STAnimCurveNodeS��Properties70��PSdSCompoundSS �'PSd|XSNumberSSADU�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL�~�:SRAnimCurveNodeS��Properties70*�PSdSCompoundSS_�'PSd|XSNumberSSAD C6:���'PSd|YSNumberSSAD�%�@��'PSd|ZSNumberSSAD���"�#AnimationCurveNodeLX��:STAnimCurveNodeS�Properties70i�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADa�#AnimationCurveNodeL@v�:SRAnimCurveNodeST�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�.��?�'PSd|YSNumberSSAD�T��G�'PSd|ZSNumberSSAD@�p�?��#AnimationCurveNodeL肾:STAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSADQ�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL�g�:SRAnimCurveNodeS��Properties70&�PSdSCompoundSS[�'PSd|XSNumberSSAD`��=���'PSd|YSNumberSSADH�?��'PSd|ZSNumberSSAD�v@�#AnimationCurveNodeLxh�:STAnimCurveNodeS�Properties70e�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD]�#AnimationCurveNodeL�k�:SRAnimCurveNodeSP�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��rT@�'PSd|YSNumberSSAD@��@C�'PSd|ZSNumberSSAD���@��#AnimationCurveNodeLn�:STAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSADM�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL�o�:SRAnimCurveNodeS��Properties70"�PSdSCompoundSSW�'PSd|XSNumberSSAD@x@��'PSd|YSNumberSSAD���@��'PSd|ZSNumberSSAD`�9 @�#AnimationCurveNodeL�߾:STAnimCurveNodeS
�Properties70a�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADY�#AnimationCurveNodeL�ؾ:SRAnimCurveNodeSL�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD����
�'PSd|YSNumberSSAD@�(�?�'PSd|ZSNumberSSAD P�ۿ�AnimationCurveL��9SAnimCurveS��	DefaultD�
0@��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��s��
KeyValueFloatfs�gh�AA��|A|�yA��}AфATv�A���A�ԟAE�A���AmH�A�?�A�e�A"��A�ۥAiP�A�3�A��Aۣ�A��A�}�A���A��A��A���A�}�A�E�A���A0�Ay��A��AQ)�A�2B�B)�	B��
B��B�w$B�T3BoC=B�DB�DB�?B8Bv�/B�S*B��+B�%/B�w5B��>BC�JB�OXB�?gB�uB�,�B�L�B_<�B��B7��B\��B�1�B���BC��B��B��B�t�Bڮ�B��B�7�BLx�B�u�B�3�B�I�BaBZctB�4iBr\B�SOB��CB{�8B�=-B��!BJB�	B�>�AB��Aj��A���AT�ATJ�A�A�"�AɃ�A2�A���A_��A=��A�"�Ad��A��A^a�A��A���A�4�AB��A���A�/�Ad��A���A��A���Ay��At��A���A��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveLȹ�9SAnimCurveSg�	DefaultD�n1V@�KeyVerI�8��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+��
KeyValueFloatfs�Ϝ�B��Bb��B�&�B�b�B=T�B��B�y�B�6�B��B�C�B�m�BF5�Bm�B+6�BWm�B�.�B�{�BX��B�ˮBC��B؎�BῳB��B��BU��B܍�B���B�I�BC$�B�p�B4*�B��B\
�B/$�B�c�B;�B��B���B~��B}��BۦCWC��C7�CzO�B�#�B��B�$�B�"�BD��B'��B���B(�Btj�B��B4y�B�J�B�n�B�)�B��BYX�B���B�0�B�H�B��B�%�B#H�B��Bד�B���BPL�B.�B�B�X�B�טB:��B6��B��B�m�B�ӪB��B���BȒ�B!#�BP�BM�B{�Bj�BʦB7��B0��B
��B��Bd�Bm5�Bm��B%ʬBU��B<��B�2�Bj�B(�B�@�B2��Bx'�BﺶB��BV`�B1�B�=�B��BoY�Br��Bq�BU�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveLxB�9SAnimCurveS�	DefaultD����7�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs����
���@��v��dfĮh�÷��w�Ì5�������þ�����ò���@)��������!G�ðP����e������ڊ��j�É�{×�m��_è�QÞ�DÎ!8��+æ�Äk�
�%���#��������~�¢R��2�MŒ�����5�Y����U�Z?"�@1A��2A�GbA�۔As��A�AB��$B:�KB;�rBd��B�
�Bֲ�B���B�9�BuY�BI��B&��B�@Cmu	C�AC%�C�C�_C*m#Cd(Ć-C�2C8C'�=C�DCA�JC3-RC�-ZCi�bCEakC��sC�L|C�A�C�0�C"�C���C�C�ەC�k�C���C�ƤCL�Cf�CϴC�C�־C�q�CpL�C��C�3�C?��CA�C��C�;�C���C,��C���C���C5vD1(D4�Dk�	D��D
�KeyAttrFlagsiG�KeyAttrDataFloatf

t�KeyAttrRefCountis9�AnimationCurveL�>�9SAnimCurveS��	DefaultD@��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�؀�@��A�VA�.A�Al�A"��@�Y�@g�S@���?���?�@
��?Z�?T����2	�Ћ[��|�?�9o@˴v@�%@m�0@�K+@�s%>��,�����_���������s2�/>�f#����YEZ�!�]Aw
�Bg�CmC"�C��C݌Ce3C\�CX�CbC3�C�C4Q�B�#�B�J�A|���W%��d���z!�3�$��n=�GQ��b�N�s�qU��h��¢����µ��B��� ��†��k�OH�zZ"�>�#�v#��6'�1�u>ÃL�\WZ��h�Jq��%u���u�f�t��u�A5}�ER���I��7v��.���X��Z������,ǰ�mM��̃�ñ���˰��U�ùܲ��Q�ç>�Ôի�;�����S���濲�鏴þ_��"�Ç������^����Z��.8���V��)����KeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountis��AnimationCurveL���9SAnimCurveS��	DefaultD�N���KeyVerI�`��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��S��
KeyValueFloatfs��`p��m�-g�rve��eœ-d�3
\��R�k�I���<¿J0��-ž�4��Q7�$�4�C!8†D™�L�
lN� #K�ۿD’C�X�D�ĩ?�N2¶�*�X3��8E�4�X�Q�m����.u�€����������‘W������=Hr�u�E���³���o%{�UrP�+A
2�ABV�0Bh�}B��B�B��B#�SB�'BzG�A[��A<�A�\1���hэ��
���R��b/“
T¼|���'��¥���;��–��v���1^��9��?ڕ�Rۙ����
���1���w�����»��Š2���L�›���fח�u|�����8x����€[���ބ�0k�^�v��gp�|x�Y�§˃�Ca���%�ˆ���k*��>���[��ݷ��zh��4�z�v��u��~Ÿ��[��/O��\���ߧ�‚����}�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL؅�9SAnimCurveSG�	DefaultD����_�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�-�����������a���R\���T�������^���ؿ��>�?�9�=oc�?��@l`�?xg�?!��> {/�p���u~�J���C1�۬ľ�{�?Jh@��@�o�@���@D�A�s)ATv9A��A˱AA)@�4���b�Œq��Qv��,�����–/��D\���y�´F�����G�
âW�0�/À�r�U��x.��/��������ñ2��5_�È�ïƉ��������C}�Gsïc�w$M��"@��89�9B3�܅/��$+Ç&)Ø�(À{$��`����1��º~�£W�����D��A������"���0޿�S��Ϳk�+����e���R�24��*������/������}���"W�8S��d�������`��x��"�x�O�&�����Fzٿ6�?y=�@��KA��
A��q@iL@m7w@�8"@����i�5�KeyAttrFlagsio�KeyAttrDataFloatf

��KeyAttrRefCountisaAnimationCurveLx��9SAnimCurveS��	DefaultDKeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��)�)��)�)*����@�����)�))��)�))��)�))��*)����)���)�)��((�'�)@�)�()��(�)@���@)��)�(�(@���())���)����)�))�*����@�@�@�**������*�)�)�)@���KeyAttrFlagsi'KeyAttrDataFloatf

TKeyAttrRefCountis�AnimationCurveL���9SAnimCurveS�	DefaultD�KeyVerI�%KeyTimel(e9��PM�>���G��;
KeyValueFloatf�A�A�AeKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiQ	AnimationCurveL(,�9SAnimCurveS/	DefaultDGKeyVerI��%KeyTimel(e9��PM�>���G���
KeyValueFloatf���?���?���?�KeyAttrFlagsi	KeyAttrDataFloatf

D	KeyAttrRefCounti	AnimationCurveLhw�9SAnimCurveS�		DefaultD�(J:@�	KeyVerI�x
�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��k�
KeyValueFloatfs�FQ�Ad�A�j�A`��Ae�A�i�AR�AE��À�Ao3�A3�Amw�AEϪAF£A�g�AW#�A�9�A:S�Aߛ�A���A1��A�r�A�A�A�p�A��A�Ad��A;b�A'p�A֫�A��B�B�#B�B5�B�iB���A�S�AG�BԜ-Bw�OBE�nB���B��B)��B���BM�B���B���B�B �B��B֓yB��nB�haB~]B�\BYB.�YB��ZB�agB��sBܶ{B�
�BTĐB���B�h�B;��B�B�Bv�B�M�B�ǢB�םB6�B*�wB��NBf�?BOM:B55B#�0B!r,B�#B��B��B��B�0BNB�<B��A�!�A�3�A���A��A�o�A�1�A�V�A!z�A���Am�A�j�A�6�A��AƑ�Aq�A�6�A��A�ϡAE��A�T�A���AU�A�*{A=RQAm�?A�VAA�KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountis�AnimationCurveLx��9SAnimCurveS_	DefaultD���?wKeyVerI�0�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��#�
KeyValueFloatfs����>��?�S@]x@BV�@�ƍ@�R4@~��?QJ~?Pℾ��*�����g1��1ջ��Z��ӄ�9��
���2?�
@�:p@�M�@��@��8@�LV?1m�OI}��Dc�sK߿�L_?b&l@+�@��@�A���@qA�@"0@.�@t��?��@�B�@ '�@G�@�a�@i�@�=@��?�ɖ@ͯ@�
�@�X�@��@*G�@У@��@��T@m�%@5��?J
v?X���������)��&�J[�����W���Q���
�
�����/���͚����$�t�?��8?t������(8��TO�CEP���X��~g���Y���5���7�)Y:����ʂ���3j��.?i�@:g�@���@�J�@��@���@�)=@j �?S�1?��c>o=O�*��d���N���	�e�(?L{�>x�Լ�?�70@�{U@tgj@MKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountisyAnimationCurveL���9SAnimCurveS	DefaultD��C@/KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�v�@)��@[y@�yS@F1=@+ @a��?��?=.�k�R���&���7��F\t�[��Pi����Q'M?Q�@8�@x�A4CA���@��@qg�?,qb�@���o��}��m��ǁ������,A��껺�����t�I���e!��\4��n���Q��<?Z;&@1�@�q�@Bz�@�~�@�?F��?g��?�	@�@'�@ވ$@�T@O�@w��@�A�A�nA��/A}�mA��zA���A�ğA&ߒAfbA�CA8�DA�:3AR�A5S�@�Ԉ@VK@�E-?j#��M� =<}�?�/�@�A��=AG�XA�PNA�8A�X(A��A���@7M�@G��@E�
A���@�6�@I��@�M@�+B@��:@��Y@�z�?$�	�8
�����9�?���?d�?纲?�@�
@�pֳ�)�/@#mf@���?$2�?��@�l`@x@KeyAttrFlagsi?KeyAttrDataFloatf

lKeyAttrRefCountis1$AnimationCurveL���9SAnimCurveS�	DefaultD�KeyVerI��!�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���#�
KeyValueFloatfs��)*���)�)�)���)�)��)��)�(�(���(����)�(�(�)�(�`(����)��@))�(���������)��������)����)�)�)*�����)�)��*�)*@����)@��)�*�)�)@����)@�@*�#KeyAttrFlagsi�#KeyAttrDataFloatf

$$KeyAttrRefCountis�%AnimationCurveLx?�9SAnimCurveS�$	DefaultD�$KeyVerI��$%KeyTimel(e9��PM�>���G��%
KeyValueFloatf@�A@�A@�A5%KeyAttrFlagsio%KeyAttrDataFloatf

�%KeyAttrRefCounti!'AnimationCurveLH��9SAnimCurveS�%	DefaultD&KeyVerI�P&%KeyTimel(e9��PM�>���G���&
KeyValueFloatf��)���)���)��&KeyAttrFlagsi�&KeyAttrDataFloatf

'KeyAttrRefCounti�-AnimationCurveLh
�9SAnimCurveSw'	DefaultD@�����'KeyVerI�H+�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��;-�
KeyValueFloatfs�
�ſ'G��ۿ�|�?�!K@9&<@�3@5.�?}+�>��p�J���]?�Ψ?���?��@�	�?�9o=���>P�(=��Z>*@F]x@3Q�@J�8@S݇>.U>C�@�_r@��i@)@ز�?A;�Wg�%S�>Vn�?H"@"T@b��@Fd�@�Ŷ@��@ѥ,@��o=\�������Q���x��{�#o��XC���zE>$g�?)R@��@C��@��@�(�@`�q@��-@��>��}mF���y��Ǡ������l��7��%��L3��%<��F���@��T$�&<������rx�S�Q���j����ڿ��U[ѿ=�%����>;]<?T��� ]�����*g�.9�t�?T!@�#*@g61@���?wͿ��;���+���+�{
�J��G9���>\a�?e?�?C����Ǔ��3!�W��>β9?<<@k�;@	&@e-KeyAttrFlagsi�-KeyAttrDataFloatf

�-KeyAttrRefCountis�4AnimationCurveL8��9SAnimCurveS/.	DefaultD�'^�?G.KeyVerI�2�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���3�
KeyValueFloatfs�>�?.��?fX%@I`}@��@Ϟ�@�B@�X�?����#= �?y�������C��s������a@��X���b"�?�?��g@LӞ@c �@�ן@A�7@K7�R�^��-��2my�V��ݰ���w?���?9&V@ᝡ@
Y�@�@i/�?�.B?nB̾����t��?�M @g�k@�ӟ@?"�@�Q�@߇^@೺@��@^��@j�@>��@^��@���@��@���@���@9˰@U��@�:�@�l@��8@c��?�=�?w�?��?��[���ÿU꿻r���I�(�.T�Ϊ���̍�>W�%?)��^���¿w��ML�/�+����]��wCb�o泿]����c�=gL'?�-�?sG@��1@	+�@%�@|��@���@�P@��?�=��c���������r(�9�W�@+F����>��Z�8?z�?�[�<���?��.@g�K@�ra@4KeyAttrFlagsiW4KeyAttrDataFloatf

�4KeyAttrRefCountisI;AnimationCurveL�~�9SAnimCurveS�4	DefaultD�����4KeyVerI��8�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���:�
KeyValueFloatfs�}&��M)������U��h�1�b�H&M��?ʿ�@�w�@&��@���@M�@��@p̂@]�D@B��?�̲�o�M�ꓣ�����a���\������J@Y�@�'�@|U8@z,�?@&�?Z{@l�J@���?T���!{?;� �����e���I�'��z�Yє�@���QX��(�[EL���u�Z�j�d�V�ȵI���;�
�.����r��=`�q-F�SA��ba���O��H�\%�������v��m�x��|X�GL�\�R�L6:���G���1ա���������a?���?��@��@��?�U�?}�m?*�>H��>��>�:,�e熿z����鿡4���}������zط�Ӂ��ev���x��(��S��	>_��!�]i�?�U@�ig@I~C@��.@�(I@��R@�3@��
@
��>z�&���&w[��	��3�P�1�c�N��:KeyAttrFlagsi;KeyAttrDataFloatf

<;KeyAttrRefCountisBAnimationCurveL���9SAnimCurveS�;	DefaultD�;KeyVerI�p?�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��cA�
KeyValueFloatfs���)�)�)����*�)�*��@��))��))) *�(@)�(�)���* *�(�) ��(�(���)���)���)��*@))�)�)�(�����������@)�(@)�)���) *)��))�*��*��*��������)�)*@*���)@*�)�)�����@������AKeyAttrFlagsi�AKeyAttrDataFloatf

�AKeyAttrRefCountisyCAnimationCurveL���9SAnimCurveSWB	DefaultDoBKeyVerI��B%KeyTimel(e9��PM�>���G���B
KeyValueFloatf5�A5�A5�ACKeyAttrFlagsi?CKeyAttrDataFloatf

lCKeyAttrRefCounti�DAnimationCurveLXf�9SAnimCurveS�C	DefaultD�CKeyVerI� D%KeyTimel(e9��PM�>���G��SD
KeyValueFloatf�qO��qO��qO�}DKeyAttrFlagsi�DKeyAttrDataFloatf

�DKeyAttrRefCounti�KAnimationCurveLh�9SAnimCurveSGE	DefaultD@���_EKeyVerI�I�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��K�
KeyValueFloatfs��e��~ʿ�Y�?7�>8?d?y�Ϳ���l�������"ǒ�Y>�?5�@,�w@kܻ@́|@��>N�?av@���@(��@B�@��@4��@;��@�
A�GAk5�A<�A�?�AddA�z�@^k�@+�"A���ATB�B���AC5�A��_A�4AA�	-A��A�&A�ZAp:�A#��A��AĊ*A�~@�b
?��?����?� �@y8Af~@A�jA-�wA�m(A�\@�+C@���?m
C��?3�8?HD5�OA������<�dx��׋���5������!8������S?���g��˂���m~�X@�y�����{���r����9.���@��]@�$?zc�?�`p@Ѡ�@DV�@�
�@c�?A6��_>(ɋ�g���t�[e���$���A���7�/���Cb�O8�?!�R�����v��
��n���b���
H��gQ��5KKeyAttrFlagsioKKeyAttrDataFloatf

�KKeyAttrRefCountisaRAnimationCurveLH9�9SAnimCurveS�K	DefaultD@n*@LKeyVerI��O�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���Q�
KeyValueFloatfs�pSA�U>AB�A�W�@���@�@:	A�
A�qAp2A��A�4A�JNAR
OA�@A�2A��.A�)AثAj��@��F@W2�?|�@�M@�w�@B��@��&A�GFA'�JA��DA_KA��SAr�TAI�ZA�7iA�1rA�\�AB/�A@�SA���@�t^@A�@�_�@�d�@uh@džr��6���������e���Ѧ��W�����qE��0\?��?.��?Q�<�)��"��^>&�Q(?X,@���@���@H
A��,A�@A1�ZA�y{A���A�9�A�1�AAt�A[��A3��A$�A�\�A0	�A��A>��Ai��A��A��A!��A���A���A�n�A�S�A@�A���A+�AJvA�TsA7��AZ�A;��A�K�AC�A�A��A���A���A�g�Anv�AH�A��A��A��Aob�A�ǷA#q�A_6�A�l�A�1�A�QKeyAttrFlagsi'RKeyAttrDataFloatf

TRKeyAttrRefCountisYAnimationCurveLHZ�9SAnimCurveS�R	DefaultD�y���RKeyVerI��V�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��{X�
KeyValueFloatfs�̓��v=�yy{@�d�@���@ጱ@풄@�A@�{@�W�?�ۂ?~����T���Vc�������L"�A�=��*�@�A��*A�2A%2A�r&A���@v��
-Z�6����ֿؗ(o���h��K���5����Ξ�'������b�?ߍA�NA&C�@dɐ�fȀ���]�1��>iܟ@���@=@�@A.A!�Agq�@���?O��Y�&�� ���[��*>္?��u>_�%�/�I��u��!�
�:�����5�l�1�GA��|C��?H�n+�Q�(�Ĕ(�����
��VK����a]����ɢ�:/���O��e�?`�|�8������`��,x��]�̛ @
��@H��@r��@�,�@7�i@�%@��?KU?�y��,�~0��$��1����#�N�������f���s�.��{����L���Z�\�� ��XKeyAttrFlagsi�XKeyAttrDataFloatf

YKeyAttrRefCountis�_AnimationCurveL���9SAnimCurveSoY	DefaultD�YKeyVerI�@]�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��3_�
KeyValueFloatfs��*��*�)*���)���*��@*�)*�)��)���@���)��*)����@)�()�(�@)0*����������)�����)���)�(�)@)�)@))����������(���)��)))�)))����))�))�)�)����@*���)**���)*�������]_KeyAttrFlagsi�_KeyAttrDataFloatf

�_KeyAttrRefCountisIaAnimationCurveLx��9SAnimCurveS'`	DefaultD?`KeyVerI�x`%KeyTimel(e9��PM�>���G���`
KeyValueFloatf��A��A��A�`KeyAttrFlagsiaKeyAttrDataFloatf

<aKeyAttrRefCounti�bAnimationCurveL��9SAnimCurveS�a	DefaultD�aKeyVerI��a%KeyTimel(e9��PM�>���G��#b
KeyValueFloatf���?���?���?MbKeyAttrFlagsi�bKeyAttrDataFloatf

�bKeyAttrRefCountiyiAnimationCurveL�D�9SAnimCurveSc	DefaultD ��/cKeyVerI��f�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���h�
KeyValueFloatfs�qx��\D���!��;���/Ե�G��Aے��I��ژ�V���w���ƌ�(���e\���S���c���������p��fI���|��ul��퐵�oz�������-��m���	D�i�r�\Q��^d��&)u�D�V��DN��lj�����������V���/e�W+d��I��V ���5|�a��/���C]��#������������x�$��ѳ��I^�*���K���
�����_/?0�v@���@�p.@w�@���?-���]!��*�@Zd���}K�9���>&��?��>c����.D��7?=�{��ji_������_���L�������T(�"A,���!�6�������Ƕ���������������������>����$���������.��������&��X���w��j}����	�0���a���R��+���;����f��?��iKeyAttrFlagsi?iKeyAttrDataFloatf

liKeyAttrRefCountis1pAnimationCurveL���9SAnimCurveS�i	DefaultD@�|(@�iKeyVerI��m�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���o�
KeyValueFloatfs�r�CA�,=A�.A��A��A�iA�)&Ay$A�H'A}�-A��*Ap1A��=A-�<A�O3AɌ+A08*A�H#AA�
Ak>�@:��@W�@��A��#A�4A�<A(hAAxEAA�CA5�KA�OA5R=A�G1A�1Ac�3A.A[6A�d7Am�A'D�@��@�Ϟ@yb|@�?�ϡ��@.��_v�Uȓ��.>���P���v�8H�9Z+��� �3;����!��������!̿Q�?���?\�H@�=�@u�@e��@���@fF�@BA�A�5A�LA�\aA���A9g�A'��A�ɯA�^�A�ͼA޾A���A���AZ��At�A��A�ľA%=�AD\�AۤA���A���A'�A�1�As�AdŘA*��A���A9$�Aȝ�AKy�A഼A�>�A_,�AI��A���A�زARF�A�)�A�?�A��Ap��A�Af�A�D�A�oKeyAttrFlagsi�oKeyAttrDataFloatf

$pKeyAttrRefCountis�vAnimationCurveLȤ�9SAnimCurveS�p	DefaultD�y���pKeyVerI�Xt�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��Kv�
KeyValueFloatfs���F�,x�Ȏ������֊��CR�����=��G�=gԝ?2�?M4@hhK@S$>@Ͽ@�W�?Wq�?Q�?K�<�p
���v��ܤ�����/���i��a����C��s>c�E6��7q��i��G�{��Q�����?K[o@�r@��h@e{@���@Ȯ�@5�A�A�
HA��bA�bA��LA�GA$ BA�x(Ah�@Sx�?�/P�w������o"�
��t�|#.��=���?�kB�G�3�����z��d
��F3��ht���?���?�@nz?@��_@}�h@>lo@�8.@!`@���?ȗ�?�l�?���>�C#��	���~���r��'iA��Y��*���̇��1������@�
������1�����|�
�������b'��`���q���ϗ��v��g���y��L]��e6��Ƕ��
���j�����������:��
5��uvKeyAttrFlagsi�vKeyAttrDataFloatf

�vKeyAttrRefCountisaxAnimationCurveL(�9SAnimCurveS?w	DefaultDWwKeyVerI��w%KeyTimel(e9��PM�>���G���w
KeyValueFloatf�u��u��u��wKeyAttrFlagsi'xKeyAttrDataFloatf

TxKeyAttrRefCounti�yAnimationCurveLH3�9SAnimCurveS�x	DefaultD�xKeyVerI�y%KeyTimel(e9��PM�>���G��;y
KeyValueFloatfL�AL�AL�AeyKeyAttrFlagsi�yKeyAttrDataFloatf

�yKeyAttrRefCountiQ{AnimationCurveLx��9SAnimCurveS/z	DefaultDGzKeyVerI��z%KeyTimel(e9��PM�>���G���z
KeyValueFloatfRhڿRhڿRhڿ�zKeyAttrFlagsi{KeyAttrDataFloatf

D{KeyAttrRefCounti	�AnimationCurveL���9SAnimCurveS�{	DefaultD �����{KeyVerI�x�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��k��
KeyValueFloatfs�Q�����(�le࿹�+���ϫ�%��������R�05ʿ���N����޹�O�ſ��п��l
�u��������0������?�������dAҿ��ܿ������)P�//
�+K�������jֿ��׿^�޿t�ڿNo�\��_
�����Vdο�񸿨a��,���r���m��]����豿�䷿������ѿΎտ@-̿�����������I#ÿ�Ͽ}�翖&�����.8
�j��W�H���y���ῧ/��R�nP��#�����
�����`�]翙�ο�,��坣������6���t�����<������]/���쮿�������ѿU�޿�2���Y���������.ܿI�ҿcfɿH��������3��@������f˿Ctп�S̿
ҿ7�ҿ�3˿�Ͽ��KeyAttrFlagsiρKeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL�7�9SAnimCurveS_�	DefaultD�]�?w�KeyVerI�0��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��#��
KeyValueFloatfs�O�2?�6? /??��?�/?.I?�>D?V�:?m�?�>;�>�:�>Sɰ>O��>�>'?��V?OCV?�E?m�"?�n?�.?>@?R�6?��?��?��1?�Q^?eo?D�y?�
�?�ʄ?�9i?7�A?��?T�?(+?��?�=?֠a?��?<�?��?܄�?���?p�m?òn?�J?�%?��?!y
?�q+?��T?&{`?��\?�WS?$�d?L�l?J{Y?��w?4Ǖ?~�?Q �?O��?E��?}�?>��?�u�?��?ι�?	U�?�ƍ?���?a�?��?+آ?��?B�|?~!D?g�?�?J�?<.?[(?("?2��>+�>�j�>�`f>��>���>:a�>A�>A�>�?�$?��>?gGD?��)?�%?߁?�c?-U�>���>穲>���>8س>%=�>1�?ͮ�>�#�>�:�>5��>�6�>M�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountisy�AnimationCurveLH��9SAnimCurveS�	DefaultD����/�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��ێ�
KeyValueFloatfs�윷�(��b��I�����Ɉ���������D��k���E���5���[ҡ�����K��K���1-������N0���߾�I����G���s��g�������Y����C������Q>��h����������w�����u�����h������鴤��
��g���	�a�"5��S �?�@�8@6[@I�@`�@��)@�h:���e��	r� Wz��x���h�X"R�����=�����tǼ��
�8ԇ�Aě��u���E��!�����������$������7����Ɲ�m��-���Y
�������������V��fʢ��C��1r���$�?Z�<@J�^@��)@�ڍ?#�}�%���Na��_���`���z������E����������Ŕ��e���dž������J��!)��.����ʪ�K��zק�
[��M�����4��& ����������KeyAttrFlagsi?�KeyAttrDataFloatf

l�KeyAttrRefCountis�AnimationCurveL�"�9SAnimCurveSϏ	DefaultD�KeyVerI� �%KeyTimel(e9��PM�>���G��S�
KeyValueFloatff� Af� Af� A}�KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountii�AnimationCurveLx��9SAnimCurveSG�	DefaultD_�KeyVerI���%KeyTimel(e9��PM�>���G��ˑ
KeyValueFloatfi傹i傹i傹��KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCounti!�AnimationCurveL�x�9SAnimCurveS��	DefaultDגKeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�So��Ro��So��So��So��Ro��So��Ro��So��So��So��So��Ro��Ro��So��So��So��So��Ro��So��Ro��So��So��So��So��So��So��So��So��Ro��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��So��So��Ro��So��So��So��So��So��So��Ro��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��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��Ro��So��So��So��So��So��So����KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountisٟAnimationCurveL���9SAnimCurveSw�	DefaultD@�)@��KeyVerI�H��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��;��
KeyValueFloatfs�2�HA�xA��A��A���AI�Apw�A��AF�RA���@c�]@�m@9X�@X(�@��A��3A�YA��Ao7�A�2�A�|B�Bx��A>§A��ZA��#A�(AH�LA�YWA�o6A~�A` �@�.�@�z�@cBTA�/�A�ΆA.��@����p������s������C��`\ˆJ���O��]���C�·���
���c8���=Z‰�7��-®%7®3<�A5�ɒ°����ˆD¾N��7���k7���0��6|��J���]����ƣ���h�����1��:Φ@u2�@n�@�@o�"@+������+U�Vu��s�����3����4�O�]�����B��W���ܥ!�&���R6}�w~?���?2_@D��@��@�]�@D`@�R@|^@�.@��?~1(?�fx>)�Ͼ},�="�?�FR@(�@��AuVtA�I�A��Ae�KeyAttrFlagsi��KeyAttrDataFloatf

̟KeyAttrRefCountis��AnimationCurveL�:�9SAnimCurveS/�	DefaultD�PP!@G�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs���
A
RA��?A��A%eA��@"�Y@��ʿ������I�Q��`i�����:��i�?�]���3�@C�Aa�A��A>��A�AVpAR�@5�=�K�V�T�����������T�����@�VAj��A��A���@I��EzA�9��i6AS%�Ae`B�>EBl�cBw�qB�jB5[B�KOB�rRBlDaB5�lBx�dB>`PB�=B��'B�W
B$t�Aa.�A�<�A�b�A3�A�oB�8BuB,B��AR&�A��B�{B`1B&=Bn,;B�(BG
B�@�A�zA���@̉@���|��d�?@P�@U��@���@�e�@ {A'�)A�P=A �~Ad��A-��A��A�}AeOWA��BA��&Atu�@O�*@��������S�hc���S��@����t��F��)#����e�y���'�N?��?8���.�2;���N=�KeyAttrFlagsiW�KeyAttrDataFloatf

��KeyAttrRefCountisI�AnimationCurveLH	�9SAnimCurveS�	DefaultD�ϤI@��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�&MB��VB��`B�ifB��eB�`B8�UB��DB	4B�&B�WB3/B�JB��
B�.B��/Bg�DB�,[B�_pB�LyB�>tB�lB��cB4�WBM�IB�6Be�B|�B�	B:mB^[(Bc�?B�|UB�-eB�fmB�aBA�9BB�BJ�BX��A�^�A��AXl8ATS����z�a�٤t��kW˜� �n���S����Ai�A�`B��B�BS��A
9�AP@�A�A�A�=�A���A���Ai�Al,�A+�B�*B(�B��B��A���A`��A��B8SB« B�p+B�H1BO�.B{H"B��
Bӷ�A���A��A���A��A�y�AX�A���AÍ�A�I�A�:�A� B�<:B�AMB5bXB|ZB��VB��RB�VRBp�SB��RB٪OB��LB��JBֳHB�pEB�iCB�B@BP�:B0�:B*CB4�JB};NB(PB_wRBլKeyAttrFlagsi�KeyAttrDataFloatf

<�KeyAttrRefCountis��AnimationCurveLX�9SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel(e9��PM�>���G��#�
KeyValueFloatf���������M�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti9�AnimationCurveL�f�9SAnimCurveS�	DefaultD/�KeyVerI�h�%KeyTimel(e9��PM�>���G����
KeyValueFloatf�?�?�?ůKeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCounti��AnimationCurveL���9SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel(e9��PM�>���G���
KeyValueFloatfc�տc�տc�տ=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCountii�AnimationCurveL<�9SAnimCurveS�	DefaultD�i2@�KeyVerI�ص�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��˷�
KeyValueFloatfs�wH�A���A]�fA�����jA��4A�3gA���A$��A�V�A��jA^�jA16�AO�A䛺Am��AxP�AFf�A�sQA)��Nq,�y��@n�{AR7�A
�A�ʇA��A�m�A�P�A��A���AiԥA�e�A���A�/P�e���x���b�-�2#8���<�K�?�Ԅ>��{6ü(�.�Å4ê×��c���J����œR�¶���J��M��4`Ø
�Þ����D�tE���BUÀUò��,�Ô{�L���h�&� �$ç�!ÈW$�~�(Ë�)�JK*�|�,�@,���)��(�A}%à�"àY×�ö��o�‡ ô�%ë?)�(�%���������]É�#��$�x�%�פ(�
�'���#ä�"�O3%�&3'�s�'ð)�xe+À1.�P;.�~c)�=�#��>"�4)Ò�2���/���KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCountis!�AnimationCurveL���9SAnimCurveS��	DefaultD��@@׸KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs���Br�@B��B��B��B�քB\/WB�� BBx�A��A�&�A���A���A���A{��A�B��BY�0Bx�NB2-B��Bs�Bw��B��]B��4B<n&Bj�B�~B�	BuQBHBOaB�A-B� XB��B�ŧB��B�b�B���BLeCi}C�wC�C֮C}C)C�wC���B��B��B��B=��B���B�w�B�a�B���B�:�B��C�'CD�	C�

C�c	CO�C�2�B���B=��B�?�B�a�B?�C�6
CS8C�eC�C�RC&tC"� Cp�"C��"CA�"C��"CLS"C5.!Cl�C��C��C�dCBqC�C\
C�!	CS�C8�CtCNCLoC�x	CfXC�)CSaC�RC�� C1�"C.�#C?�#C�$C1�#C�"C�2Cq3C	�C��C�d�B��B���B�B��KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveL�9SAnimCurveSw�	DefaultD`_w@��KeyVerI�H��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��;��
KeyValueFloatfs����@L�:@^�������e����Y��@�m�@�rA��Al�A��A�A!
A�mABM�@��@wsx@���>�������=��67�V�z?��@惹@.w�@�-�@�#�@{�@�c�@�/�@��:@O<�=j-�Oٸ�]9ù���rm0��0�:5/�C.�j�.ß;.�_I.�}�0Àg2�|�1��y0�Y,Ì�#�j�î��\������"��-���4�h9�6:��]8�8�6�4�5Î�4ë4÷�2�p3�ky4��5Ýp4Ì�2�8�0�  /�!<-��+��7+���+Ð�,���-��
.�C�-���-�<E.��/�G�/��0ù21�d�1�h2é�1�D42�x(3Ïn3Ó�2��1É�0�S�/��{.ÐU-Ò�,�Fo,�W�+�!�+��-,�(b,��,È�,�,-�R�-�ݱ.�Ɉ0�s]4��=�ȽGØiC�e�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountisQ�AnimationCurveL���-SAnimCurveS/�	DefaultDG�KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf�L���L���L����KeyAttrFlagsi�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveLxh�-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G��+�
KeyValueFloatf�
@�
@�
@U�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiA�AnimationCurveL�a�-SAnimCurveS�	DefaultD7�KeyVerI�p�%KeyTimel(e9��PM�>���G����
KeyValueFloatf�?�?�?��KeyAttrFlagsi�KeyAttrDataFloatf

4�KeyAttrRefCounti��AnimationCurveL�(�-SAnimCurveS��	DefaultD�: ���KeyVerI�h��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��[��
KeyValueFloatfs�8��EM��q��D�D���b�C��F�
��3��Q��{�Lew�ege���e�
RY���E��X<��?�՟2�L������
���Q)���P�e�g���q�{-s��uw��r��bf���c�[Y�7I���.�A}!��� �Ӓ*�grU���_�~4Q�"�V���O�B�6����1q���-��?�(E��-S�Y1^��Ii�r�o��Qo��d��dJ�j�6�mq#��l�w�N��R[�@QT�WgT�9�V��=Z�}U�~�[�%���/z��wW�Q�1������	��[�����q��hu�_\+�|w/����3���0�c/!���2��7�[�9�z�7�03D���G��+��������L��{�����g�X0���G���?�߅3�K�B�M�U���E�2$<��A��g1�<o,���8�&.0�;�@���,�u�������KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveLx��-SAnimCurveSO�	DefaultD�_��g�KeyVerI� ��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��:��~�0>�ʽ�!�
��S�)�:�h�̿���C)���T��-v��6k���W��/T���F�Ow-�1����������B���ſ�&ӿ�����8��p'��-��5���:��B�
?�l2��-��X�Z��2�������"���>�!Ƒ�-����C��	����
i��uP��0�@��&@Rm�>�G�&�~��}�Ԛn����^���|���R�����^������g�G�i�)�D���v���O)����W
@�!
@��������n�򙗿�Uo@���?ζN�o��v���۠�������‹�b$��<�����F`y��,���f���i��h�D3�
�����ss��{'��jR�T�t�����g�����i�<�TZ�meS�!�G�tT��d�]lY���S��[��DJ���5�I� �
\��dU��wx\����>�?=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCountisi�AnimationCurveLX�-SAnimCurveS�	DefaultD@���KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�rd�4:���������/{�3%����@Q��@(v�?l%@���@?�@��@��@��X@��'@(��?��E�������A�����|�;���1`��46�'ÿ�|ɿ��M��6���a	��%��0�aY`�%v����w��-�]�<�;�~�l����I��MY���o��2D�o�9`���*���S�������Q´�¾������{!��X$€F5»AKŠ8C��[J�	"T��_�{~n�n!~����‡���@�w�h�r�hKj�A>X–�B�"����K��X|����,���(���L�gIN���U�]qj�#����p�����|����������I���������=���G����4�����B���pɅ�&�~���0�ϫ��(���05�h�?�6@��@���@U�3@�>�?���?N[?������ba���U��4b������Z����KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCountis��AnimationCurveL�u�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel(e9��PM�>���G��C�
KeyValueFloatfM���M���M���m�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�8�-SAnimCurveS7�	DefaultDO�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�]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

��KeyAttrRefCountis�AnimationCurveL(��-SAnimCurveS��	DefaultD�KeyVerI�@�%KeyTimel(e9��PM�>���G��s�
KeyValueFloatf��D���D���D���KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�[�-SAnimCurveSg�	DefaultD 
�@��KeyVerI�8��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+��
KeyValueFloatfs�QPµ���H�sC��/[������D;�����]$��>����QP�D8�:���6�b—j��j�������/[���
�������š��H��h��7*�QP��¸b¸d�J2����I��/[��/[��/[��/[��/[��/[��/[��/[��/[��.[��/[���������i���H����^¾�����v���?�{�'��}=�QP�L–4Ž�
�����1�����^�r��Xj� ���m�������]��Q����v��/[���������c���CR����)�µ‡��t�����?c�������m'��E�QP�QP�QP�QP�QP�QP�QP�QP�QP�QP��;³�N��&������K
�a<�����0[��U�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL(�-SAnimCurveS�	DefaultD����7�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs����Hm��!]�����E������p.������x���礬�S�����KH��k����ү���J��n��������y��E���6�������O����Ź�x3��4f��b���������v���������#���U���E���E���E���E���E���E���E���E���C���L���E����+��������������4��I��!���N���ג�����������V���������=-��o|��L���Y���!=��c7��at���͵�] ���L��W8������|���5���E���Da��\Y��E���@5��4��H������s���x�������,���.��M���1?��R��W ��ͣ�_5��@�������������������������������������:��`��$����'��xĺ��2��A"���V��G���
�KeyAttrFlagsiG�KeyAttrDataFloatf

t�KeyAttrRefCountis9�AnimationCurveL8N�-SAnimCurveS��	DefaultD`Z�K@��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs���]B'�OB|0@B323B�G,Bg�,B�3Bm�<B}�GBSRB� ZB��]BX�\BX\XB7�QB��IBxKAB'29BUd2B�-B�G,Bݸ.B<�4B�<B#�EB�NB�VB�\B��]B�ZB��SB�IBfu?BF�5B��.B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B��,B�.B�M1B��4B�8B�S=B�BB]�FBh�KB�XPB��TB�XBc�ZB��\B��]B��]Be|\B�ZB�#XB0UB�QBN�MB
�IB�|EBcIAB�.=BH9B�5B�2B��/B�-B�,B�G,B��,B�M.B�0Bei3B��6B��:BT�>B#
CB�dGB�KB��OB��SB��VB)�YB��[B�E]B��]B��]B��]B��]B��]B��]B��]B��]B��]B��]B��\B	5ZB5VBCQB%<KB_�DB�D>B��7B
�1B�G,B��KeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountis��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G���
KeyValueFloatf�6��6��6�=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCounti)�AnimationCurveL��-SAnimCurveS�	DefaultD�KeyVerI�X�%KeyTimel(e9��PM�>���G����
KeyValueFloatfD�D�D���KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL;�-SAnimCurveS�	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G��
KeyValueFloatf�Ȕ��Ȕ��Ȕ�-KeyAttrFlagsigKeyAttrDataFloatf

�KeyAttrRefCountiYAnimationCurveL8��-SAnimCurveS�	DefaultD��%$�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�&,!�����'�zR�
�
��<��C������E��$2 �%,!��� �ѱ�
��S�����������
�
�
����I���l���3�^� �%,!��Z �<�T�����!��*?��
��
��
��
��
�
�
�
�
��
�
�
��
��
��1���/g���������A��������"5������gl �'� �%,!��!��� ��V �l��.����:S����BJ���j���(�P��B����������
�l+�����m���;������S���������=��D�q ��� ��!�$,!�%,!�$,!�!,!�$,!�#,!�",!�",!�!,!�",!�h� ��7 �~�Dv��p��
��X��y�ɖ��
��KeyAttrFlagsiKeyAttrDataFloatf

LKeyAttrRefCountisAnimationCurveLh��-SAnimCurveS�	DefaultD�@�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��s
�
KeyValueFloatfs��x�@*�@�
�@���@�@���@~�@d��@5d�@�>�@�T�@�x�@���@I��@ѷ@Z8�@l�@���@趐@쓋@�@ᛌ@�5�@{œ@�"�@��@�@%��@�x�@$�@�0�@OX�@-'�@&Ĕ@��@�@�@�@�@�@�@�@�@�@�@�@E��@}��@z|�@k�@L(�@䌝@�l�@���@�ү@��@T��@|�@I}�@�<�@�x�@0�@ۨ�@C�@<��@tS�@d��@�j�@W�@���@li�@z_�@���@V�@2ߐ@��@ص�@Z�@�@ˌ�@�%�@͞�@�ߑ@ϕ@�R�@�L�@Q��@  �@d��@�@�7�@�־@%��@~��@��@�x�@�x�@�x�@�x�@�x�@�x�@�x�@�x�@�x�@�x�@k#�@�q�@�߽@=�@!�@��@��@s�@�@�@�
KeyAttrFlagsi�
KeyAttrDataFloatf

KeyAttrRefCountis�AnimationCurveLH��-SAnimCurveSg	DefaultD`dEP@KeyVerI�8�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+�
KeyValueFloatfs�#+�B*�vB/�gB�`[BT�TB�lUBmC[B�fdB��nBSyB�i�B#+�B��B4B�xBnqB�hB� aBi�ZBT2VBT�TB�WBճ\BzwdByDmB��uB�|}BS�B#+�B°�B�rzB)qB�#gB��]BUWBT�TBT�TBT�TBT�TBT�TBT�TBT�TBT�TBT�TBT�TBT�TB�WUBWB��YB9�\B��`B�eB@�iB�\nBF�rB�bwB�f{B��~BaπB���B#+�Bj�BR��BB��Ba�~B�{B��xB��tB�pB��lB�hB��dB�5aB��]Bx�ZB8XB�OVB{UBT�TBLUB�VBP�XB��[B��^BI�bB�xfB�jB��nB��rB`�vB�wzB��}B
8�B{C�B��B#+�B#+�B#+�B#+�B#+�B#+�B#+�B#+�B#+�B#+�B��Bis�B�	}B0!xB2vrBhRlB�eBA�_B��YBT�TBUKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountisAAnimationCurveL���-SAnimCurveS	DefaultD7KeyVerI�p%KeyTimel(e9��PM�>���G���
KeyValueFloatf�!	��!	��!	��KeyAttrFlagsiKeyAttrDataFloatf

4KeyAttrRefCounti�AnimationCurveLxb�-SAnimCurveS�	DefaultD�KeyVerI�h�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��[�
KeyValueFloatfs���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�KeyAttrDataFloatf

�KeyAttrRefCountisqAnimationCurveL���-SAnimCurveSO	DefaultDgKeyVerI��%KeyTimel(e9��PM�>���G���
KeyValueFloatfqZ�qZ�qZ��KeyAttrFlagsi7KeyAttrDataFloatf

dKeyAttrRefCounti)%AnimationCurveL���-SAnimCurveS�	DefaultD���"��KeyVerI��"�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���$�
KeyValueFloatfs��|�p{��~�v�	���e���	��>
�����:�����|��1���"���������]~	�������Q
��D
��e��D�ڍ�c��|�۫�5��n��B>�y�
��-������������+]��
�	�c
�#���
�.&�j���N������������DB��|�oo��&����X�����������~H�;���r
��
�k�
�ދ	�������E���IX������R�	�s'�Nj�i�sx�L���E�
��ʧ�Ȟ��g�����[��|��|��|��|��|��|��|��|��|��|��=�R��+l�����"���J�
�{��>9	���$KeyAttrFlagsi�$KeyAttrDataFloatf

%KeyAttrRefCountis�+AnimationCurveL���-SAnimCurveS%	DefaultD���@�%KeyVerI�P)�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��C+�
KeyValueFloatfs�4}�@�̗@4މ@E�}@H�r@��s@Ы}@�Ɔ@�p�@�&�@g�@.}�@�c�@�,�@ڙ@rm�@PՊ@�@��|@k6u@H�r@Ӱv@G�@�Ն@
ێ@�#�@��@£@.}�@w�@��@ۃ�@�;�@�*�@w@K�r@H�r@Z�r@H�r@K�r@L�r@N�r@M�r@J�r@G�r@L�r@*�s@��v@��z@35�@Y��@�d�@d��@���@�@�@b��@�t�@��@g��@���@0}�@UJ�@99�@�g�@R��@Z�@h��@?�@sS�@��@~ӊ@�D�@w��@���@+�|@�x@gu@�ss@F�r@̼s@9v@Αy@�6~@|�@3�@^��@�`�@+A�@�&�@��@-��@Þ@��@2��@�@/}�@.}�@5}�@7}�@5}�@3}�@6}�@5}�@9}�@7}�@Ԏ�@q��@h�@a;�@���@ ��@*4�@곂@.k{@G�r@m+KeyAttrFlagsi�+KeyAttrDataFloatf

�+KeyAttrRefCountis�2AnimationCurveL�%�-SAnimCurveS7,	DefaultD^OM@O,KeyVerI�0�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���1�
KeyValueFloatfs��zjB,G`B�6UB2�KB1�FB%tGBa�KB�RBC�ZB�bB`�gB�zjB��iB��fB��aB�\B�VB;3PB�SKBHB1�FB��HB��LB��RB(DYB��_B_eB�8iB�zjB�FhB�cB.,\B��TB��MBF�HB1�FB1�FB2�FB1�FB1�FB1�FB1�FB1�FB1�FB1�FB1�FB�dGBȡHBn�JB�MB�OBe)SBÕVBDZB�]B��`B��cB�ffBDthB��iB�zjBVjB��iBj;hB�mfB-:dB�aBo�^B\B
YB:VB�SB�BPB8�MBGmKB��IBHB�:GB2�FB�[GB�fHB��IB�LB&�NBw=QB�0TB^DWB7bZBvt]B.e`BjcB3�eB��gBp!iB� jB�zjB�zjB�zjB�zjB�zjB�zjB�zjB�zjB�zjB�zjB��iB�gBt	eB�_aB�$]Bj�XB�SB�/OB�JB2�FB%2KeyAttrFlagsi_2KeyAttrDataFloatf

�2KeyAttrRefCountis4AnimationCurveL��-SAnimCurveS�2	DefaultD3KeyVerI�@3%KeyTimel(e9��PM�>���G��s3
KeyValueFloatfE���E���E����3KeyAttrFlagsi�3KeyAttrDataFloatf

4KeyAttrRefCounti�:AnimationCurveL(��-SAnimCurveSg4	DefaultD4KeyVerI�88�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+:�
KeyValueFloatfs�P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>U:KeyAttrFlagsi�:KeyAttrDataFloatf

�:KeyAttrRefCountisA<AnimationCurveL��-SAnimCurveS;	DefaultD7;KeyVerI�p;%KeyTimel(e9��PM�>���G���;
KeyValueFloatf�m{��m{��m{��;KeyAttrFlagsi<KeyAttrDataFloatf

4<KeyAttrRefCounti�BAnimationCurveL���-SAnimCurveS�<	DefaultD�@���<KeyVerI�h@�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��[B�
KeyValueFloatfs�b��tK��g���������"�������s��l����������b��5�����ڶ���E��������I~���.�����=�������u��ߧ���)��Һ������b����������I�����9����A�������������������������!���;���i������x
��؈��!�����������o���D���������5+��b��TU���������
���c��(���=���5A������{����������������P���0��x����!���6���[��o�������=��B���B��4�������NS���������Wj������C��b��b��b��b��b��b��b��b��b��b���&��ۆ���������ʃ�������������p�����BKeyAttrFlagsi�BKeyAttrDataFloatf

�BKeyAttrRefCountis�IAnimationCurveL(U�-SAnimCurveSOC	DefaultD y6�gCKeyVerI� G�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��I�
KeyValueFloatfs�ɳ��7����t�����`�����������\K��B���� �����˳��6����J���,��*���5���%��Z���d��`������c��!G���@��۞��4���.���ʳ��m��O����z��h��������`���`���`���`���`���`���`���`���^���e���`���p���M"���S��%V��7>������R��($��1d��:����R��s�������ʳ��Ѹ������"���Q��d���<4������_����R��"6���'����������
���:[�����`���Y����;��i���`����������x���5���}���")���{�������x���!������(���ʳ��˳��ʳ��ʳ��ʳ��ʳ��ʳ��ʳ��ʳ��ʳ���������w���F���<���s������K���-7��`���=IKeyAttrFlagsiwIKeyAttrDataFloatf

�IKeyAttrRefCountisiPAnimationCurveL���-SAnimCurveSJ	DefaultD@��N@JKeyVerI��M�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���O�
KeyValueFloatfs��vB�jhB��XB��KB�EB\�EB�KB
WUB�_`B��jB%
sB�vBh�uB�AqB�jBʒbB�
ZB��QB�KBہFB�EBkqGB�LMB�hUB0�^B��gB(�oBE�tB�vB��sB�_lB~�bB3XB�NBT�GB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EBٝEB�XGB
JB{MBŒQBVB��ZBѾ_B��dB�,iB_mBL�pB��sBk�uB�vB6�vBluBR�sB@qB��mBgkjB΍fB+vbBw@^B�ZB��UB�RB�jNB.@KBZ�HB��FB�bEB�EB�EB7GBm@IB�!LB̋OB/`SBt�WB�[B�*`BwdB�hBkelB��oB��rB��tB�7vB�vB�vB�vB�vB�vB�vB�vB�vB�vB�vBL�uB�sBDoB��iB�dBF�]B�WB�PBSgJB�EB�OKeyAttrFlagsi/PKeyAttrDataFloatf

\PKeyAttrRefCountis�QAnimationCurveL���-SAnimCurveS�P	DefaultD�PKeyVerI�Q%KeyTimel(e9��PM�>���G��CQ
KeyValueFloatf/=��/=��/=��mQKeyAttrFlagsi�QKeyAttrDataFloatf

�QKeyAttrRefCountiYSAnimationCurveL)�-SAnimCurveS7R	DefaultDORKeyVerI��R%KeyTimel(e9��PM�>���G���R
KeyValueFloatf����������RKeyAttrFlagsiSKeyAttrDataFloatf

LSKeyAttrRefCounti�YAnimationCurveLHe�-SAnimCurveS�S	DefaultD�SKeyVerI�PWuKeyTimelmh(e9���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+Y�
KeyValueFloatfm�[:��[:��[:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��Z:��[:��Z:��[:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��Z:��Z:��[:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��[:��[:��UYKeyAttrFlagsi�YKeyAttrDataFloatf

�YKeyAttrRefCountim�`AnimationCurveL��-SAnimCurveSZ	DefaultD@�'�7ZKeyVerI��]�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���_�
KeyValueFloatfs�R<��f���k���t�)�n�Izo���t��|��k�����_A��R<��U��F‡��˅�T.��� ��:�y�=t�a3p�)�n��q�fv���|��ˁ�}���E���ň�Q<��j��aU���6��5�~�8<w�9Aq�(�n�'�n�)�n�+�n�)�n�)�n�)�n�(�n�)�n�'�n�(�n��fo���p�ILs��Av���y��7}�n��P3��Dۃ��X��㡆�C���p{�����R<���.������e������͆�I��������$������ ��Q}��y��
w��[t�@r�Op��1o�4�n��[o�m�p�7�r��u�9�w��{��T~�EȀ�+Y���у��(��	W��W���$��˼��r��P<��Q<��Q<��R<��V<��T<��[<��X<��M<��V<������G���"��&���u����p����}�3�x���s�%�n�
`KeyAttrFlagsiG`KeyAttrDataFloatf

t`KeyAttrRefCountis9gAnimationCurveL(X�-SAnimCurveS�`	DefaultD`
�@�`KeyVerI��d�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���f�
KeyValueFloatfs�k`@/^�?RD�?|k�?�@�?_Y�?�8�?���?�Y�?c��?�\@h`@%@���?=��?@��?�Q�?��?��?⟮?�@�?��?���?+��?���?���?L<�?p@h`@�@M��?���?0��?��?!��?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?l7�?	��?lK�?�
�?��?��?���?�!�?k��?+��?���?LP�?�C@%i@l`@l'@r�@ �@�e�?���?�z�?˕�?�m�?�B�?	N�?��?>��?L��?�P�?��?�Ю?�ڬ?�@�?$�?br�?��?oǷ?G��?�:�?`��?���?Q��?=e�?��?���?ݼ�?��@_L@<�@c`@a`@d`@e`@c`@b`@``@b`@c`@b`@3U@�r@�=�?��?���?�?X��?}4�?�?�@�?�fKeyAttrFlagsi�fKeyAttrDataFloatf

,gKeyAttrRefCountis�mAnimationCurveL؆�-SAnimCurveS�g	DefaultD�g�P@�gKeyVerI�`k�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��Sm�
KeyValueFloatfs�>��B�n{B�ElBb�_B��XB�fYBtc_B\�hB�sB��}Bb�B>��Ba'�B\	�B��}B�uB+\mB(feB8�^Bu1ZB��XB�[B�`B��hB��qB��zB*4�B�փB>��B1�B�MBF�uB��kB�/bB�[[B��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XBmQYBx[B��]B�
aB�eB�uiB'nB[�rB�wB�,|Bp#�B��BUP�B�E�B>��B��B1�Bl)�B_�B�k�Bd}B?�yB�uB�{qB ZmB�PiB�{eB��aB!�^BlD\B�OZB�YB��XBJEYB~�ZB��\B��_BxcB=�fB��jBioB�[sB�wB	�{B�RB�Q�Bڵ�B�ƃB�u�B>��B>��B>��B>��B>��B>��B>��B>��B>��B>��B�<�Bs�B���B<�|B�#wB�pB�bjB�dB4^B��XB}mKeyAttrFlagsi�mKeyAttrDataFloatf

�mKeyAttrRefCountisioAnimationCurveLX��-SAnimCurveSGn	DefaultD_nKeyVerI��n%KeyTimel(e9��PM�>���G���n
KeyValueFloatf��<���<���<��nKeyAttrFlagsi/oKeyAttrDataFloatf

\oKeyAttrRefCounti�pAnimationCurveL���-SAnimCurveS�o	DefaultD�oKeyVerI�p%KeyTimel(e9��PM�>���G��Cp
KeyValueFloatfl�D�l�D�l�D�mpKeyAttrFlagsi�pKeyAttrDataFloatf

�pKeyAttrRefCounti!tAnimationCurveLx
�-SAnimCurveS7q	DefaultDOqKeyVerI��rUKeyTimel)H(e9��`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���s�
KeyValueFloatf)�֨�֨�֨�ר�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨쾭sKeyAttrFlagsi�sKeyAttrDataFloatf

tKeyAttrRefCounti)�zAnimationCurveLX��-SAnimCurveSwt	DefaultD�7����tKeyVerI�Hx�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��;z�
KeyValueFloatfs��A޿�ɿcñ��ߜ�fu��잒����o��T��"=Ϳ�	ٿ�A޿��ܿGyֿ7�̿���=�������������du��K���"��=0�������qȿ�Կ.�ۿ�A޿��ٿI]Ͽ���������S��핿fu��_u��hu��pu��du��gu��au��_u��du��]u��au��!{��?Z��`ř��m�����b:��xŴ��\����ÿ
�ʿ��п@ֿ
:ڿtݿ�A޿��ݿ(oܿm�ٿ�&ֿ'�ѿ�z̿��ƿ{���)��~������W���"�ɛ��t��Z)����fu���f���є����<:��Ȣ��ց���B��A��K�ÿ��ɿ\eϿlYԿSuؿǓۿs�ݿ�A޿�A޿�A޿�A޿�A޿�A޿�A޿�A޿�A޿�A޿��ܿK'ٿcSӿ^�˿x�¿v��'���(T��5e��Yu��ezKeyAttrFlagsi�zKeyAttrDataFloatf

�zKeyAttrRefCountis��AnimationCurveL���-SAnimCurveS/{	DefaultD�Ug�?G{KeyVerI��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��:�?��?��?\x?��n?j�o?��w?��?�|�?���?�(�?�:�?���?:�?O�?���?��?�i�?��v?��p?��n?g�q?wz?�!�?�?k�?qi�?�A�?�:�?�˟?�?���?�e�?��{?
Qr?��n?��n?��n?��n?��n?��n?��n?��n?��n?��n?��n?�o?��q?�nu?�Bz?[!�?��?ɟ�?E�?�d�?�ݔ?&!�?e�?��?�>�?�:�?��?5ɡ?v��?��?Һ�?��?�J�?�g�?2��?"�?���?cz�?��{?�w?�s?�p?=Xo?y�n?9�o?wqq?�bt?�Xx?6C}?��?�҄?,q�?�L�?xI�?G�?��?o��?��?��?Ь�?�:�?�:�?�:�?�:�?�:�?�:�?�:�?�:�?�:�?�:�?�*�?P?�?��?���?�ߏ?��?bk�?E�~?%�u?��n?�KeyAttrFlagsiW�KeyAttrDataFloatf

��KeyAttrRefCountisI�AnimationCurveL��-SAnimCurveS�	DefaultD�#�D@��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�	&B`�B:KB�B.�BF4B��B0�
B<�BfrB0\#B	&BZ8%BE"B�6B�WB�B})B#,B��B.�Bz{B��B��
B�pB�B� B��$B	&B��#B�B�iB��B��BY�B.�B.�B.�B.�B.�B.�B.�B.�B.�B.�B.�B}$BMiB�_B��B��
B�1Bs�B�FB`�B*B�9B<�!B[�#B�e%B 	&Bz�%B�%BE�#B}�!BĥBzB@B�BB/BpB B�9B!�B5FB,XBh�BG�B.�BnB�,B�B��Bl	B:B5?BeBP�Bo�B
�B��B � B�#B>�$B+�%B	&B	&B	&B	&B	&B	&B	&B	&B	&B	&BWX%B7k#B�y B;�BhB̷B^�B�
B<�B.�BՇKeyAttrFlagsi�KeyAttrDataFloatf

<�KeyAttrRefCountis��AnimationCurveL�N�9SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G��#�
KeyValueFloatf���������M�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti9�AnimationCurveL( �9SAnimCurveS�	DefaultD/�KeyVerI�h�%KeyTimel(e9��PM�>���G����
KeyValueFloatf�Q�>�Q�>�Q�>ŊKeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G���
KeyValueFloatf���?���?���?=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCountii�AnimationCurveL���-SAnimCurveS�	DefaultD�e. @�KeyVerI�ؐ�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��˒�
KeyValueFloatfs�,sA?��@���@⨽@:��@eղ@<t�@e��@?��@t��@�W�@,sAS�Ag��@3N�@��@��@a��@�D�@�?�@:��@�@W�@���@}�@��@���@~A,sA3:�@��@S��@K��@-\�@�R�@:��@:��@:��@:��@;��@:��@;��@;��@:��@?��@;��@���@Ʒ�@b�@[�@�O�@���@���@���@���@�
�@V��@56�@���@ �A,sAOLA�zA]"�@{E�@
��@'�@2��@ST�@�}�@p��@���@��@L��@o��@c�@�u�@H�@9��@晲@�'�@�
�@2�@m��@�g�@cV�@�y�@���@��@��@u�@B[�@ȹ�@�A4A,sA,sA,sA,sA,sA,sA,sA,sA,sA,sAs�A�v�@�D�@7D�@H��@�r�@h��@̇�@�
�@;��@��KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCountis!�AnimationCurveLh��-SAnimCurveS��	DefaultD�:�/�דKeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs���}�yf�*�L���7�w�,�U.��7��G���X��Aj��w���}���{�{�t���i�q�\�/�N�'�A���6�mU/�w�,�4�0�
:��G��V���d���q�*�z���}���x���l��\�r�K�JE<�U51�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�y�,�w�,�c�-��0�O�4��g:�b�@��,H��O��W��_�E[g��In��Kt�^y�[|���}��{}�4�{���x�F\t��>o��hi�D
c��S\��sU�̘N�H�G�_�A�T�;���6���2�8�/�v�-�w�,���-��&0���3��A8���=��C��J��xQ�ݒX���_��`f���l�6Kr��w�ѩz��|���}���}���}���}���}���}���}���}���}���}��<|�<�w��q�V�h�7�^��iT���I�=?�Ձ5�w�,���KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountis٠AnimationCurveL�-SAnimCurveSw�	DefaultD���N@��KeyVerI�H��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��;��
KeyValueFloatfs��MuB�dB�=RB�BB�:B�n;BϭBB��MB|[B�wgB��pB�MuB��sB{�nB�gB{�]Bv�SB��IB|�AB]d<B�:BN�=BqvDB�NBL�XBw�cB��lB�;sB�MuB|�qB�)iB��]B�_QB!FBN�=B�:B�:B�:B�:B�:B�:B�:B�:B�:B�:B�:BU;B�c=B��@Bs�DB��IB��NB2�TB�IZB��_BWfeB�UjB~�nB��qB[FtB�MuBuB��sB�qB.�nB�kB
�fB2PbB�}]Bf�XB��SBe�NB�JB��EB�BB�>B�<B�;B�:B`F;B�=B��?B�CB� GB��KB��PBǢUB��ZB7�_Bg�dBA0iB�,mB>�pB�sB��tB�MuB�MuB�MuB�MuB�MuB�MuB�MuB�MuB�MuB�MuB1tB�qB�XlBiPfB�V_B��WB��OBECHB%AB�:Be�KeyAttrFlagsi��KeyAttrDataFloatf

̠KeyAttrRefCountisQ�AnimationCurveLx��-SAnimCurveS/�	DefaultDG�KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatfc0��c0��c0��ݡKeyAttrFlagsi�KeyAttrDataFloatf

D�KeyAttrRefCounti	�AnimationCurveLh��-SAnimCurveS��	DefaultD��KeyVerI�x��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��k��
KeyValueFloatfs�5�<5�<4�<5�<5�<5�<5�<5�<4�<4�<4�<5�<5�<5�<5�<5�<5�<4�<4�<5�<5�<5�<4�<5�<5�<5�<5�<5�<5�<4�<4�<5�<5�<5�<5�<4�<5�<5�<5�<5�<5�<5�<5�<5�<5�<4�<5�<5�<5�<4�<5�<5�<4�<5�<4�<4�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<4�<5�<5�<5�<5�<5�<4�<5�<4�<4�<4�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<4�<5�<5�<5�<4�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<��KeyAttrFlagsiϨKeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL8��-SAnimCurveS_�	DefaultDw�KeyVerI���%KeyTimel(e9��PM�>���G���
KeyValueFloatf?%??%??%?
�KeyAttrFlagsiG�KeyAttrDataFloatf

t�KeyAttrRefCounti9�AnimationCurveLX��-SAnimCurveSת	DefaultDd
�?�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs� S�?�By?�\?��B?�f4?�5?��B?��U?�j?r�}?�u�?!S�?Ov�?��?7
}?e�n?J_?XO?�8A?�7?�f4?E�9?ʺE?]V?K�g?Lx?٥�?���?!S�?��?��?o?�t[?!|H?�:?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?��5?3\9?��>?�F?YN?LW?��`?��i?�r?��z?�؀?8҃?6�?P��?S�?p+�?�T�?A߅?+ڃ?�S�?;�|?�v?s�n?$�f?5�^?fW?;DO?H?��A?�<?5�7?c75?�f4?1�5?h�8?�Z=?NTC?�NJ?��Q?yZ?j[b?�j?�Lr?��y?��?Kׂ?�#�?z܆?%�?S�?S�?S�?!S�? S�?!S�?S�? S�?&S�?$S�?K��?B��?�C�?��{?"�q?q�e?�#Y?�>L?�??�f4?ŰKeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountis�AnimationCurveL(��-SAnimCurveS��	DefaultD��ӿ��KeyVerI�`��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��S��
KeyValueFloatfs������j��!�
�꽤�Ƚ�˽�3�X����A���w�^擾�������b��
v��3L�7&����\s��Ͻ��Ƚ��ӽ,��]�M�9��Gf�:=��j𙾰�������?����L�D������5ս��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��˽�nӽ���d��#���y�?_)���>�GV��%n��Ղ�ޕ������̜�����d����w��������������[�t��6`�ʨK��
8���%�V��t��\���4�_�ٽ�нʛʽ�Ƚe˽{�ѽ��ܽ��>&������c-�h�@�J�U���j����򉾤������c��Ө��ܨ��̨������˨������Ȩ��������������!����&���؇��cr��\S� 95���W.��⽎�Ƚ}�KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveLx�-SAnimCurveSG�	DefaultD@D�F@_�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�"�5B��"B��
B�Z�A4��A���A��A��B�B�&B�1B"�5B�p4B��.B��%B�B�HBNB�,�A>��A4��Ax<�A��AA	B�qB�!B!N,B1�3B"�5B_�1BO(Bl�B6�B\��A���A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��AAI�AS��AL:�A��A?�B��	Bq`B��B;�B/�#B^)Bj?.B�2B��4B"�5B��5B64BG�1B�L.B[%*B�c%B- Bv�B�B�EB��	B�kBz�A)��A�k�A��A���A4��A�'�A��A�"�A��A)B�EB��Bt�B-�B�[B-�"B�
(B��,B�u0BMf3BFH5B!�5B!�5B!�5B!�5B!�5B!�5B!�5B!�5B!�5B!�5B��4B�1B��+Ba�$B-�BBH.B�bB�A�A4��A5�KeyAttrFlagsio�KeyAttrDataFloatf

��KeyAttrRefCountis!�AnimationCurveL���-SAnimCurveS��	DefaultD�KeyVerI�P�%KeyTimel(e9��PM�>���G����
KeyValueFloatf�S��S��S���KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveSw�	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf�7A��7A��7A�%�KeyAttrFlagsi_�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�&�-SAnimCurveS��	DefaultD�KeyVerI�@�%KeyTimel(e9��PM�>���G��s�
KeyValueFloatfN
->N
->N
->��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL(�-SAnimCurveSg�	DefaultDh��?�KeyVerI�8��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+��
KeyValueFloatfs�@�?&�i?�aO?��7?��*?n,? �7?�I?�>\?��m?�3z?W�?�~?D~w?Pm?��_?qTQ?�B?�H6?3�-?��*?�b/?�Z:?�I?�9Y?�mh?c�t?u}?Q�?�{?s�o?�`?�N?��<?x�/?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?u�+?�3/?z?4?��:?�(B?YKJ?p�R?L-[?�Ic?��j?�yq?xw?,t{?�`~?;�?,_?�}?�z?U&w?0ar?��l?�f?L�_?�X?�PQ?J?��B?�j<?��6?��1?b�-?�y+?\�*?��+?'�.?��2?c/8?�~>?&xE?f�L?\gT?%�[?Hc?�i?��o?�<u?p�y?��|?��~?Q�?P�?H�?=�?=�?6�?"�?�?֪?�?]E~?�Rz?g%t?J
l?Uab?�W?o�K?9@@?��4?ξ*?U�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL���-SAnimCurveS�	DefaultD ��п7�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs����K�D�8^��ǽ˙���$���ƽ����� #�yP��w�
���>���p�n�΍N��+�����彅jýa,��ܙ���г��ͽFD���b��xA�T*f������:�z�X�V��4,�6��4mԽ�ϴ�ߙ��Ι��י��#����g������͙��陪�����򙪽�լ�o������I�ν`�㽉L������� ��	4��H���[��am�&7|�T��޳��$'��P8���z�	�m��O^���M��n<��]+���(�e���]��AӽĽ���ʤ��s������������,��N@���!Ƚ�ٽ�)���6��S"���3�'WE���V��Vg��u������]��<���D���2������0������������泅�볅�*#���Ix��c�L�K�l�1�$�����޽�>��ǚ��
�KeyAttrFlagsiG�KeyAttrDataFloatf

t�KeyAttrRefCountis9�AnimationCurveL��-SAnimCurveS��	DefaultD`�E@��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��(B8SBo�B�~�A���A``�A�4�A52B��
B�^B4-$B�(B�B'B"B��B?B��B7�A&��A�V�A���A�A���ApGB�nB�wBL�BJ{&B�(B'�$BtB�\B��B*#�A>9�A���A���A���A���A���A���A���A���A���A���A���A,�Aza�A���A�L�A�/�A�B2�B��Bu�B'>BRBij!B�.%B֍'B�(B�^(Bn'B5�$BͿ!BB��B|B]BBl�B8�B�L�A���A���A�y�A��A���A���A�
�A��A�A�A�Q�AI��A��B}
B%T
B��B�B
$Br> B�#B�S&B�(B�(B�(B�(B�(B�(B�(B�(B�(B�(B�(B�w'B!F$BEdB�.B�B3<
B�7B%��AK��A���A��KeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountis��AnimationCurveL�[�-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G���
KeyValueFloatf-C��-C��-C��=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCounti9�AnimationCurveL��-SAnimCurveS�	DefaultD�KeyVerI����KeyTimelox(e9��p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfo�ϓ��ϓ��ϓ��Γ��ϓ��ϓ��ϓ��Γ��ϓ��ϓ��Γ��Γ��ϓ��ϓ��ϓ��Γ��Γ��ϓ��Γ��Γ��Γ��ϓ��ϓ��Γ��ϓ��ϓ��ϓ��Γ��ϓ��Γ��ϓ��ϓ��ϓ��Γ��ϓ��Γ��ϓ��Γ��Γ��Γ��Г��ϓ��ϓ��ϓ��ϓ��ϓ��Γ��ϓ��ϓ��Γ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��Γ��Γ��ϓ��ϓ��ϓ��Γ��Γ��ϓ��ϓ��ϓ��Γ��Γ��ϓ��ϓ��ϓ��ϓ��Γ��ϓ��ϓ��ϓ��ϓ��ϓ��Γ��ϓ��Γ��ϓ��ϓ��ϓ��ϓ��ϓ��Γ��Γ��Γ��ϓ��Γ��ϓ��Γ��ϓ��ϓ��ϓ��Γ��ϓ��Γ��ϓ��Γ��ϓ��ϓ��ϓ��Γ��Γ��Γ��ϓ��ϓ��Γ����KeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountio��AnimationCurveL�q�-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G���
KeyValueFloatf�[@�[@�[@=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCountii�AnimationCurveL�p�-SAnimCurveS�	DefaultD�a�3@�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�#�A��A�#�A��}A�@qA�rA��}A�*�A��A���A��A#�A�y�A�ϛAo�A���An
�A�B�A�|A�tA�@qAq�uA6�A�9�Aئ�Ai�A���A��A#�A�H�A�A'��Ax��A�g�AqAvA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�frA��uA��zAA_�Ah��A�ŇA#��A���A�'�A�p�A9K�A��A�o�As��A#�A��A�_�A�>�AT��A���A�L�Ai��AW��A%a�A��An��AxU�A�3�Aʿ|A��wA�HtA��qA�@qA�OrAuA[yA�U~A2�A���A���AFt�AۏA��Au�A���A�ߚA⬜A��A�؞A#�A#�A#�A#�A#�A#�A#�A#�A#�A#�A���A���A�e�A?�A���A���A�B�A���A^zAYOpA��KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCountis!�AnimationCurveL�t�-SAnimCurveS��	DefaultD���6���KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�WN������.���
s��d�uf���r�D���rK�����D��WN��Oe��%��j���)p��k����k���Kq�S�g��d���i�� v����4А����\��<M��WN��	���E��ޓ��T;��R/y�j��d��d��d��d��d��d��d��d��d���d��d���e��Wi��n��v�|��I�������h���\���H���ڦ�����_}���δ�WN��������������Ƭ��Ƨ�5��NM���F���S������R�������x��q�N�k���g�jce��d��e�$�h�Om���s�6@{�-��qU��<���D��a2���_��LN��O����l����qv��WN��WN��WN��WN��WN��WN��WN��WN��WN��WN�������;��Ӑ��pY��JF�����������{�3�m�N�a���KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveL8�-SAnimCurveSw�	DefaultD�ݪC@��KeyVerI�H��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��;��
KeyValueFloatfs��VB�:	BI��A��A��A$�A4��Ao
�A�V�A�B:B�VB��BԺB[B�B���A}��A.��A/��A��A�m�A��A)>�A�2�A$8B�UB�B�VB�	BT�B��B�y�A�!�A`/�A��A��A��A��A��A��A��A��A��A��A��A��A�"�Ah;�A��A	��A*-�AMA�A4��Av�B�O
BCB�\BPcBB�VB4B��B�BxjB�ByBD�BԯB�-�A���AM��A�'�A�o�AD�A���A���A�/�A��A��A�(�A��A锿A���A�8�A�k�A��Ab��AE�B�v	B�B�Bi�B��B��B�VB�VB�VB�VB�VB�VB�VB�VB�VB�VB�B�VB��B2�B�B���A���A���Aћ�Aem�Ae�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountisQ�AnimationCurveL��-SAnimCurveS/�	DefaultDG�KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf},m�},m�},m���KeyAttrFlagsi�KeyAttrDataFloatf

D�KeyAttrRefCounti�AnimationCurveLh��-SAnimCurveS��	DefaultD��KeyVerI�(�UKeyTimelIH(e9��`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��s�1
KeyValueFloatfI$���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiI��AnimationCurveLX��-SAnimCurveSg�	DefaultD�KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf
�?
�?
�?�KeyAttrFlagsiO�KeyAttrDataFloatf

|�KeyAttrRefCountiAAnimationCurveLX��-SAnimCurveS��	DefaultD�ַ!@��KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs���
A���@�5�@ \�@=�@q�@��@Gp�@��@H'�@�r	A��
AyrA�QA[�@w��@?4�@��@�@�,�@=�@_ϟ@�8�@��@�c�@'	�@#CA��A��
A�"
Aa^A��@�9�@q��@9��@=�@=�@?�@<�@>�@=�@?�@>�@>�@?�@A�@Ʃ�@���@��@1��@�@�i�@ua�@1i�@�@���@!�AA`n
A��A��
A��
A�?AP
A
A�NA���@��@��@v�@�.�@1�@�H�@"U�@��@��@���@��@;�@醚@���@�@n��@�x�@P
�@�T�@���@ڄ�@��@1?�@ eA{�A��A��A�,
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��A�	A��Aru
A$BA�YAL�!A�x+A9�4A@<A�KeyAttrFlagsiKeyAttrDataFloatf

4KeyAttrRefCountis�	AnimationCurveL���-SAnimCurveS�	DefaultD�|L�KeyVerI�h�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��[	�
KeyValueFloatfs��c��}1뾫|�;�q/>R�/>��2>B�/>�n�=ؽ8�����r��c���q����Z�����~�<ڃ��!�=�2>��4>Z�/>�6>q�'>1(�=���ݾ oE����c����y����)����<YH>>�6>P�/>o�/>+�/>c�/>Q�/>D�/>1�/>=�/>P�/>N�/><�/>t42>��6>z�5>��&>Y�>~}=����%���$���Ri+��lW�-*}��%���c����[A����x���W��*2�Os
��ƾ�2{��~���`��݃=��=� >C*2>�N7>(;5>�T1>m�/>>2>
6>��6>�p.>r�>���=_@=qi��j2����x�; ��VH�[�l����ގ��c���c���c���c���c���c���c���c���c���c��*����s��L�qc2��)��2�.�O��Z}��!���Ѹ��	KeyAttrFlagsi�	KeyAttrDataFloatf

�	KeyAttrRefCountis�AnimationCurveL(C�-SAnimCurveSO
	DefaultD���@@g
KeyVerI� �KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���
KeyValueFloatfs�܍BF6�A�%�A��zA�LAֺPAB�yA3
�Aa/�Ae��A�iB܍B��B��A%��AR��A��A扑A&1uA4*VA�LAmx\A���AH�A�9�Al��A$�A|�B܍B�bB�}�AX��A���A��A'^A�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�)PAt�[A��mA֓�A$I�A+|�A���A3�AP�A���A&��A���A��ByB܍Bv7B%fB�HB3�A���Ad��A2��A4�A.�A�ڬA���A�ӑAƺ�A� vA6ddAB�VA�NA�LA��OA�YAM�hA�|A ��A�o�A�T�A�вAS|�A���AT��A���A���A�x�A�cBֺB܍B܍B܍B܍B܍B܍B܍B܍B܍B܍B'�B�B�~�A��A��A&�A[��A���Au�A���A=KeyAttrFlagsiwKeyAttrDataFloatf

�KeyAttrRefCountis)AnimationCurveL���-SAnimCurveS	DefaultDKeyVerI�X%KeyTimel(e9��PM�>���G���
KeyValueFloatf�p!��p!��p!��KeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveLh#�-SAnimCurveS	DefaultD�KeyVerI��%KeyTimel(e9��PM�>���G��
KeyValueFloatfuH��uH��uH��-KeyAttrFlagsigKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveLH�-SAnimCurveS�	DefaultDKeyVerI�H%KeyTimel(e9��PM�>���G��{
KeyValueFloatf��?��?��?�KeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveL�a�-SAnimCurveSo	DefaultD@?$@�KeyVerI�@�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��3�
KeyValueFloatfs�B�!A�A���@7�@A��@���@̯�@.r�@ތA��A��AB�!Aƾ A��A@&A}Q
A��@O�@"��@$�@B��@U��@���@���@9LA�A�A� AB�!A��A�<Acp
Al�@hv�@e�@A��@B��@C��@A��@C��@B��@C��@C��@C��@C��@C��@ˤ�@�o�@/��@I�@�N�@]�@wA��A��AmA�hA@�A�A�!AA�!A�!A� A#~A��AXA��A�>A�-
A��A���@���@��@���@�0�@���@�r�@B�@@��@~��@���@J��@C��@���@h5�@o*�@��AoIAC�A��AWCA�6A�tA��A�n!AA�!AA�!AA�!AA�!AA�!AA�!AA�!AA�!AA�!AA�!A�� AA��A�^
A���@��@-�@���@�e@�%(@]KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountis�"AnimationCurveL�g�-SAnimCurveS'	DefaultD����?KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���!�
KeyValueFloatfs�G����{>�#=[�;�S<�3N=
�I=>�f<�Y�zH޾�'[�顿H���I��]���^jW�.��țx�%a���<�+A=�3N=�Z3=�IȺQ��^t����6��A��+���F���~��kil�����H�rC��G�.=�3N=N4N=z3N=�3N=�3N=13N=&3N=z3N=�3N=A4N=�3N=C@J=��4=�2�<wk�lw�C*��{���|Ӿ!<���F��x��ӓ�ţ����C������A	��������r���'U��j*�l���ƺ�0cx����pY����s�$'�<Q�=��?=%�K=H3N=áJ=�:=�A=�q1<*>���*��N�7��,��X�ھ? �vL@�׫l��͋�-��렮�]N���M���K���G���N���J���H���E���B���B���E����y�����kF3���6�*�`N>|G�>Ռ�>��>"KeyAttrFlagsiO"KeyAttrDataFloatf

|"KeyAttrRefCountisA)AnimationCurveL��-SAnimCurveS�"	DefaultD��aB@�"KeyVerI��&�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���(�
KeyValueFloatfs�|B���AF��A���A䬁AG��A�3�A`շA�^�A=E�A
B|B�4B�
B`7�A^��A�h�A\��A	�A婆A䬁A&ĉA�.�AU�A��A���AOAB
%B|BL�
B�B��A�N�A���A��A䬁A䬁A䬁A䬁A䬁A䬁A䬁A䬁A䬁A䬁A㬁A���A�q�AlR�A�ȝA�E�AX:�A��AWJ�AbE�A�w�AȨB�	B�_B�B|Bs�B~�B�
BJ�	B��BO��AO��A�F�A�X�A�a�A���AʬA��A�c�A㩍AD�A��A䬁A��A�`�A9ÏA�O�Aj��A�R�A���An?�A���A���A���A�B�B�VBa�B�<B{B{B{B|B|B|B|B|B|B|B0}B#
B.�B���A�)�A��AXK�A�qA�C3Ahi�@�(KeyAttrFlagsi)KeyAttrDataFloatf

4)KeyAttrRefCountis�*AnimationCurveLx��-SAnimCurveS�)	DefaultD�)KeyVerI��)%KeyTimel(e9��PM�>���G��*
KeyValueFloatf������������E*KeyAttrFlagsi*KeyAttrDataFloatf

�*KeyAttrRefCounti1,AnimationCurveLH+�-SAnimCurveS+	DefaultD'+KeyVerI�`+%KeyTimel(e9��PM�>���G���+
KeyValueFloatf�$���$���$���+KeyAttrFlagsi�+KeyAttrDataFloatf

$,KeyAttrRefCounti2AnimationCurveL���-SAnimCurveS�,	DefaultD�,KeyVerI��/KeyTimela(e9���˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��s1�
KeyValueFloatfa��}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�1KeyAttrFlagsi�1KeyAttrDataFloatf

2KeyAttrRefCountia�8AnimationCurveL('�-SAnimCurveSg2	DefaultD
�Ͽ2KeyVerI�86�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+8�
KeyValueFloatfs�P�|���!��ɲ���	��0&�?#�N
�6��^��¸�c^H�Q�|��-о����<	�6g�x$��V���	
�����0&����s_�Է�����F�)��~��/�S�|��2�Y쿑f����:>��k���0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&���#�[`��j���������̠��5_����N�F�x�ֿ�Z��;�(�Z��T�|�Y��q�ܾrc4�:����ʿ�a��`7���h�N���2�������=��{�a"��\���$��0&���#�m��m������T��։���ʼ��0��Y���v)P����1�뿬����X����C��R�|�P�|�Q�|�Q�|�R�|�Q�|�R�|�Q�|�Q�|�Q�|���þ�CE�3���T�	���E�ȿ������
�����Џ�U8KeyAttrFlagsi�8KeyAttrDataFloatf

�8KeyAttrRefCountis�?AnimationCurveL���-SAnimCurveS9	DefaultDe�$�79KeyVerI��<�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���>�
KeyValueFloatfs�(�$��4��I�����?dZg@W�\@��?�z�d�a��s���H�(�$��/��X	�[��D��zx߿�T�>�	@}�P@dZg@t�B@���?
����HA�(o��l�����(�$�j6�G|������Z�a�?/�>@dZg@fZg@dZg@fZg@dZg@fZg@dZg@dZg@dZg@bZg@dZg@�-^@�D@^�@��?`b?�/*�����V��ȗ�4{��V=��K	�Sy�Kk �(�$���#�vS�o���:����z���p�����O�:��.߿`" ����>��?̇@��0@��N@��a@dZg@��^@y�H@��&@~,�?=*�?g�E=:���'����]������ǽ�����9
��@��D��_"�(�$�(�$�(�$�(�$�(�$�(�$�(�$�(�$�(�$�(�$� �����E�����8��P?��ҟ2�E=ο��O��>
?KeyAttrFlagsiG?KeyAttrDataFloatf

t?KeyAttrRefCountis9FAnimationCurveLH��-SAnimCurveS�?	DefaultD�9I5@�?KeyVerI��C�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���E�
KeyValueFloatfs��I�AÎ�A(XA�� A5�AH�A; Am�HA~wA�ˑA[��A�I�A���A/�A�!�A�Z�A0�\A�^:A;'AM;	A5�A�J
AJ�&A�7IA�
pA��Ag�AK��A�I�A�ܣA�˔AJ��A�
UA�\,A�_A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A�\A/�AuAyY'A��8A�KArB`A��tA%��A#�A�ޖAgf�A�a�A�v�A�I�AGީA��A9��A{�A�AA��AૈA��A�nA]�\A�_KA4�:A�]+A��AbAV�	A�\A5�A'A�yA/AB�!A�50A�@A{RA�HdA��vA?O�AS�AVהA��AFСA�Z�A:C�A�I�A�I�A�I�A�I�A�I�A�I�A�I�A�I�A�I�A�I�AQ�A6ҢA^�Ax9�A���A��}AjA�`WA�;FA�37A�EKeyAttrFlagsi�EKeyAttrDataFloatf

,FKeyAttrRefCountis�GAnimationCurveLH��-SAnimCurveS�F	DefaultD�FKeyVerI��F%KeyTimel(e9��PM�>���G��G
KeyValueFloatfS�ѿS�ѿS�ѿ=GKeyAttrFlagsiwGKeyAttrDataFloatf

�GKeyAttrRefCounti)IAnimationCurveLX��-SAnimCurveSH	DefaultDHKeyVerI�XH%KeyTimel(e9��PM�>���G���H
KeyValueFloatf�l��l��l��HKeyAttrFlagsi�HKeyAttrDataFloatf

IKeyAttrRefCounti�JAnimationCurveLx�-SAnimCurveSI	DefaultD�IKeyVerI��I%KeyTimel(e9��PM�>���G��J
KeyValueFloatf?X@?X@?X@-JKeyAttrFlagsigJKeyAttrDataFloatf

�JKeyAttrRefCountiYQAnimationCurveL�3�-SAnimCurveS�J	DefaultD�8��?KKeyVerI��N�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���P�
KeyValueFloatfs��i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?j�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?Lч?�k�?�S�?B��?Bx�?���?/��?#	�?�PKeyAttrFlagsiQKeyAttrDataFloatf

LQKeyAttrRefCountisXAnimationCurveL�R�-SAnimCurveS�Q	DefaultD��U,��QKeyVerI��U�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��sW�
KeyValueFloatfs���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�|Ad�+�h�S�n�x�v�E���3���p���'���WKeyAttrFlagsi�WKeyAttrDataFloatf

XKeyAttrRefCountis�^AnimationCurveL�R�-SAnimCurveSgX	DefaultD`��տXKeyVerI�8\�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+^�
KeyValueFloatfs�KV��DV��iV��[V��sV��aV��mV��oV��aV��`V��RV��_V��[V��SV��lV��`V��bV��cV��kV��qV��sV��qV��xV��jV��bV��`V��SV��PV��_V��YV��nV��bV��oV��yV��pV��qV��xV��zV��mV��jV��\V��aV��hV��oV��{V��eV��SV��_V��lV��UV��ZV��VV��`V��dV��_V��`V��eV��NV��MV��WV��jV���V���V���V���V���V���V��yV��sV��hV��WV��WV��WV��VV��RV��NV��NV��JV��PV��SV��OV��RV��XV��KV��UV��EV��7V��NV��LV��OV��IV��ZV��KV��MV��JV��LV��JV��OV��WV��MV��TV��LV��XV��WV��XV��ZV��]V�����Ӿ����D��S�2�^�O���k�y��U^KeyAttrFlagsi�^KeyAttrDataFloatf

�^KeyAttrRefCountisA`AnimationCurveL���-SAnimCurveS_	DefaultD7_KeyVerI�p_%KeyTimel(e9��PM�>���G���_
KeyValueFloatf��"���"���"��_KeyAttrFlagsi`KeyAttrDataFloatf

4`KeyAttrRefCounti
eAnimationCurveL8l�-SAnimCurveS�`	DefaultD�`KeyVerI� c]KeyTimelJP(e9���,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��od5
KeyValueFloatfJ(��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��dKeyAttrFlagsi�dKeyAttrDataFloatf

eKeyAttrRefCountiJ�fAnimationCurveL���-SAnimCurveSce	DefaultD{eKeyVerI��e%KeyTimel(e9��PM�>���G���e
KeyValueFloatf�T@�T@�T@fKeyAttrFlagsiKfKeyAttrDataFloatf

xfKeyAttrRefCounti=mAnimationCurveL���-SAnimCurveS�f	DefaultDQ+@�fKeyVerI��j�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���l�
KeyValueFloatfs���XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA�lKeyAttrFlagsimKeyAttrDataFloatf

0mKeyAttrRefCountis�sAnimationCurveL
�-SAnimCurveS�m	DefaultD@�h0��mKeyVerI�dq�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��Ws�
KeyValueFloatfs�rE��rE��qE��qE��qE��qE��qE��qE��rE��rE��rE��rE��rE��rE��rE��rE��qE��qE��qE��qE��qE��qE��qE��qE��qE��rE��rE��rE��rE��rE��qE��rE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��rE��rE��rE��rE��rE��rE��rE��rE��rE��qE��rE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE��qE���sKeyAttrFlagsi�sKeyAttrDataFloatf

�sKeyAttrRefCountis�zAnimationCurveL(�-SAnimCurveSKt	DefaultD����ctKeyVerI�x�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��z�
KeyValueFloatfs�f}�e}�g}�d}�i}�b}�f}�h}�h}�h}�h}�h}�h}�h}�k}�f}�i}�h}�j}�i}�j}�j}�i}�h}�h}�i}�i}�h}�g}�h}�n}�g}�h}�h}�j}�h}�l}�j}�l}�h}�f}�e}�g}�i}�a}�g}�b}�d}�e}�e}�d}�f}�h}�l}�e}�g}�f}�e}�e}�h}�o}�w}�~}��}��}�|}�y}�t}�q}�m}�h}�e}�d}�e}�b}�b}�a}�a}�b}�d}�b}�e}�e}�b}�e}�a}�a}�`}�`}�`}�b}�c}�e}�e}�e}�b}�a}�a}�d}�a}�f}�e}�f}�f}�f}�f}�h}�h}�e}�e}�a}�b}�a}�a}�a}�9zKeyAttrFlagsiszKeyAttrDataFloatf

�zKeyAttrRefCountis%|AnimationCurveL=�-SAnimCurveS{	DefaultD{KeyVerI�T{%KeyTimel(e9��PM�>���G���{
KeyValueFloatf�u@�u@�u@�{KeyAttrFlagsi�{KeyAttrDataFloatf

|KeyAttrRefCounti�}AnimationCurveL��-SAnimCurveS{|	DefaultD�|KeyVerI��|%KeyTimel(e9��PM�>���G���|
KeyValueFloatfJL�AJL�AJL�A)}KeyAttrFlagsic}KeyAttrDataFloatf

�}KeyAttrRefCountiAnimationCurveLT�-SAnimCurveS�}	DefaultD~KeyVerI�D~%KeyTimel(e9��PM�>���G��w~
KeyValueFloatfRhڿRhڿRhڿ�~KeyAttrFlagsi�~KeyAttrDataFloatf

KeyAttrRefCountiͅAnimationCurveL��-SAnimCurveSk	DefaultD`j�@�KeyVerI�<��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��/��
KeyValueFloatfs�S�@+l@�)�?".�?��?��?���?���?���?�m�?NH�?c��?���?���?
�@'@�@^�@�&@%w
@@9��?���?,��?�m�?``�?�'�?<��?�?'I�?Q��?%3�?�:�?��y?��[?�T?�k�?D��? h�?�@��@�1@���?�?��@��@��@�h@{�%@�3@q�;@�1@!� @��@E�?Ƴ�?��?U\�?���?��@�.@�<@r�E@�O>@;~@X(�?�L�?|�?�z?�i�?��?�?�?�F�?���?^�?@��?���?�#�?*��?�?�l�?_��?���?%�@Y�@��@x@��@�@b�@ܐ
@k�
@vl
@�&
@x�@��@��@��?��?���?E��?��?^-�?��?���?��@��@
�@�
@K@��@�@�|�?���?���?Y�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL���-SAnimCurveS#�	DefaultD�B�;�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��*�`��Ѿ@9���B̾3\ƾ刹�2'¾����O���^������+g���侌e�sJ3��3N��L�|C���#�����{��_Ӿ]ֱ�T�|�YԽ��;�o�=&#%>���=Ѐ�=�>��Q>h��>{�>h��>1G>(��u����c�$�����q��#Z���Y	 �ʎ@���n�?L��h�������&]��l$�Hƾ�<��vk̽��=���#����b��諬��s��&�y�I�P�w��]��xH���r��^��Y���Q��fF��9%�,��C����@�E2⽋TI�պ��X���־����Y,�if=���U��c�[^^�ԗK���4�
�)�^"��<��b#�m�!��� 뾷O��\�������̽E�ݽ��T�&B��`��5>��
�Y�)��@�������y�оB��f���KeyAttrFlagsiK�KeyAttrDataFloatf

x�KeyAttrRefCountis=�AnimationCurveLȖ�-SAnimCurveSی	DefaultD@����KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs���� ����������M��M0���w�����������������w��'^��PX�������������aX�I;��0������;������c���fj���������4���[����$��Ю��*Ψ��+��#�����s��-��2f��J������������V�����h����������Yr���������������)�����?��b�[��Ux�����������\��7y�I����&�{�"D�@��A6�A��Au�FA06�@g�@50r@9wI@y��?>���}	��=r������x��]�������ep�������6�������9��c�$��<���F��g���
���'������#�������[��+�����`���ۢ���z��{��������������ж�� �����B��M���0&��ɒKeyAttrFlagsi�KeyAttrDataFloatf

0�KeyAttrRefCountis��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel(e9��PM�>���G���
KeyValueFloatf�� A�� A�� AA�KeyAttrFlagsi{�KeyAttrDataFloatf

��KeyAttrRefCountim�AnimationCurveL��-SAnimCurveS�	DefaultD#�KeyVerI�ܘ�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��Ϛ�
KeyValueFloatfs���3��3(��3��3 ��3,��3��3��3(��3��38��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%��3��3 ��3��3��3��3��3��3��3 ��3��3��3��3(��3 ��3��3 ��3(��3��3��3��3 ��3 ��38��3��3��3 ��3��3��3��30��3��3 ��3 ��3��3 ��3(��3��3��3��3��KeyAttrFlagsi3�KeyAttrDataFloatf

`�KeyAttrRefCountis%�AnimationCurveL8#�-SAnimCurveSÛ	DefaultDۛKeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�@���`�������@����������@�������`���`���`�����������@�����������`�������`���@�������`�������������������`����������� ���@���p���p���@���@������H���@���d���\���L�������`����������������������X�������x���h���h���0���p���p���X���(�������d���������������<���l���l���x�������L���n���H�����������p���X�������X�������P���@���@�������P�������x���p���d���@���H���H���8���X���h���@���P���`���p�������(���8���0�������p���p���@���0���`��� ���`�����������`��� ��� ���������KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountisݨAnimationCurveL�:�-SAnimCurveS{�	DefaultD�<@��KeyVerI�L��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��?��
KeyValueFloatfs�p.�A���A�
Bm�B5�B*lB���Ax��AV!�A� A;��������W����@chAu��A��A��A��AS�BG�B�%B�B&��Ay*bA�C@����u�������e���
Ï�`���k��������.w�e�p�=�R�¶W�6����%��Ԓo���o�8:0�*�����k����E��.R�'�@)>a@dʿJ����5��P�@����|% ����?�WG@��@�W�@jx�@�,�?y7��Q�w�B@��Ln)���D¬�E�8v)�<(��*�_�,[4�X��@ôA��bA��AW�jA}�%A)>�@�6<@��H@�˪@�HA�3@A⭋A��A<w�A4��AB�A�۳A��A�j�A���A���A�X�A�5�A�!A:�$@�qd������c��^�����^N�@n�JA���AU�A�]�AX��A���A5��A�B�EBb��Ai�KeyAttrFlagsi��KeyAttrDataFloatf

ШKeyAttrRefCountis��AnimationCurveLh�-SAnimCurveS3�	DefaultD �#�K�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs����Q&Ag�A���A�R�A��Ar�PA�Ս@��������������C ��{�٦ˆp�������2&�@X8>�'6Af]�A�A;uyA�*A�^�?�/P�a���m�;��w���-�>Xh���g�
�	�Jsm@P.Aō�A�&�A�ܩAC�A��m�����'������w��p�w���0�9�j>�^,A�؁AI>uAmG.AKf3AFЃAB��A�D�AIl�A&�
BvB�
B�@�A�7bA][�@��b@���@��C@��y�8�����Z�£@;�VI�k�K�VJ�TKL��N�4C��4,œ��(���!��{���}���=��x�����X���#���@�S�I����b@�{��@��@��%A��1Ak�A���@�@����V��S��+������qz2�](�����g��j�@a�@��XA�(�A� �A���A[��A!�KeyAttrFlagsi[�KeyAttrDataFloatf

��KeyAttrRefCountisM�AnimationCurveL�'�-SAnimCurveS�	DefaultD`ԾF��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs���5�C64��&�|#��e�t���#���¥e�W�������.=������@���"�!TA‡R��X���U�x�D���.�2 ��"�Jv�/ �?��7���)��\=��?�������U���/����������"����y���3�Ac'�6��"�‹C�բ'���&�)¨�-�L6/���4�a�H�T_�Ah¬�V�$4¹�
�	��O�����|����	�>D���f�T	W�ד)�ŵ���^��Z�s���7�fp��]�d@f�JA���A���A��A��[A�TAt[���.��X��x���'���L�U�	\&��R*˜/��=4� G4¤42�k�0��N-�|�&�P/!¨���!��X%��)��(*�#�# �����1•C
��j��-c$–1¥?;�}P>�)�AŒoI´�J���C»�=‹<�Rw;�ٵKeyAttrFlagsi�KeyAttrDataFloatf

@�KeyAttrRefCountisŷAnimationCurveLh��-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G��'�
KeyValueFloatfM=�AM=�AM=�AQ�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti}�AnimationCurveL��-SAnimCurveS�	DefaultD3�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��߽�
KeyValueFloatfs�C5��5���4��5��5�!6���5�@�5���4�@�6���5�@k5���3�@_5��Z5��)6��5��5��I5�U6���5���4�`P5��q5�@�5���5���5��4��15���5��6���4�`�5�H�5�8/5�Ќ5�(;5��4���5�(�4��W5�`5�@s6��H5���5�H�4��5���5���4�,�6��e4�05�p�5�G5��5��26���3��95���6�0�5���5�@;5�h5��5���4���5��s6���6�5��T6���3��&5�03�`�6�p�5��4��06�X�3�6�@5�^5�@�4� �4�`�4��5���4���5���5��6�@`5��n5�5��i5��q5���4�-5�Q5��5��q5���5���5�@5�@n5���5�G5��A5��^5���4��D5��H5�5��(5���5��5�l5�	�KeyAttrFlagsiC�KeyAttrDataFloatf

p�KeyAttrRefCountis5�AnimationCurveL�
�-SAnimCurveSӾ	DefaultD�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��;2�Z<2�]<2��;2 �;2B<2 };2 #92�=2�^<2��<2@$;2@�<2X�<2F;2��:2�U;2�=2 �=2�j:2�X;2��;2 �92�];2��:2�=;2`�;2�T<2q:2`?2t?2��:2�J;20,;2`�;2��>2�y;2��;2�;2`!:2	<2��:2@�=2�4;2�V:2q=2�892�2;2p><2pN92X�;2��<2�;2�<2 i:2�1<2�r;2 �;2@�92�:2`�92�(92�U:2�^<2P�:2Њ<2�!92��92`<2`�;2�;2@�;2@I;2��<2��;2 �;2��;2@j;2��<2�%<2�E<2�f:2 �:2 �:2�x<2��:2T<2`�<2�t=2pr;2P<2�;2@�:2�	;2P�;2�h;20;2�(:2=2��<2`=2 �:2��;20"<2�9<2��;2�+<2 �=2@<20;2�:2 2;2�-<2��;2``:2��KeyAttrFlagsi��KeyAttrDataFloatf

(�KeyAttrRefCountis��AnimationCurveL� �-SAnimCurveS��	DefaultD�Ճ>@��KeyVerI�\��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��O��
KeyValueFloatfs���A�DB��B5�B~�
B�SBn��A�~�A�a�A���A�B�Am��AݮA�"�A�!�A��A#�Al�BۻBl�A�P�A5�A���A�A�ٓA�ffA�PVAW�sAT)�Aۖ�A21�AdZ�A���AKl�AP	�A'�CAY>�@�>�����;�L^�o|N�I�`·ҋ™��e���Yw���;�«�����¶�Ÿ���8��Œ�;ƒ��>+›���������!G�e�M©�#„���I���c��5��h#��\�A!LB�NBNY�Ay����C���-��BU�}n�AJ�B��B6BR�
B�Bj��A���AA�AY��A�*�A
�A�;�Arj�A�X�Ad��A듿A���A�u�A��AL!�A�;�AMjA�]AfkA~�A}��A�e�A~��A���A��A�1�A�&�Aa��AB�B?�B�?B��
B��B By�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveLؤ�-SAnimCurveSC�	DefaultD�=�<�[�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��9�������������˻������	��kœO(��l/´3�F�̠b�"7r�+�k�G�W��.D�_(�W����Œ��S��t��*�ƫ:�dP�Z!t§t��&���7����hz»�T‰_E��!Q��\��dN·,%�m�Žh”e������Yd���‡����'��dz����w�ǽC�&(&�)����`���G�Ŋ�:l���ͅ�6�z�ѢL���/������
��Y���z���J��Ē���(�EFX»;�§O�•��K��S��� ����…#��輏¶���t�z½�t��'h�,�O�s�5µ�$���/��RL��m��:�~�"3�H�#�Xb��W��Q���ѿ���a��(=��&��t������E��(�)Y��Ձ�E��µ���v
q�/�Q�%f5�I����:����҈ �_�/��72�1�KeyAttrFlagsik�KeyAttrDataFloatf

��KeyAttrRefCountis]�AnimationCurveL��-SAnimCurveS��	DefaultD���)��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�m�M��`��zn��xm��ad���R��!-��1��蜢�^�R�Q����w��d~�?!2�@���@��U@�l��f���h�l���&�-���|�-����
�/=b�N?�<������1Z��r"��+ƿ���\�'�x�_�<丿
ߏ�&v��-��@#��F��Wܿv����x�?�?ch@���@�kAM� A���@n�?H��@�ە@�Q�?�����L�m�0����?*|�TB?�7$��N���L���:�_v����ܥ��0o�`�������Jb�@��?B���BꁅB��BU]A�I1�!���̂���"���'�U"*���5��DG��<`��	~���FX����I���� ��^���W��J_�������x���9���`J�?P��3�����M!����^�����L����-�`Yk�4��/ş�X����[������N�����KeyAttrFlagsi#�KeyAttrDataFloatf

P�KeyAttrRefCountis��AnimationCurveL�T�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel(e9��PM�>���G��7�
KeyValueFloatf��A��A��Aa�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLhT�-SAnimCurveS+�	DefaultDC�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��>��C��4�� G�@�L�K���I�@e��-��	t� EV�0�G�@T)�p2H�P�=�p�F�`�N��\:�@8�@�a���O�/;��_� �N���M�Ph�'\��V#��oN��2��jg�0�<���N��3N�x�C�p*Q�$�C���?���F�l�D�<�D��!F� �B�>E� I�`�B���B��eE���C���F��A���E�/E���E���E��DE�ztA��CD�,IK�PFJ�H]N���C��
C�(�E��D�$�H��QI�0TQ� �?��C�@�H��1^�0Q)�`�G��MQ� �Y�AP�����k�QE��cC�04>��19�;� bO�`�D��/F��_8��v5��xG�@#A�H��qT��P���8��E��[E���G��kC�@CG���E�@�?��N�@�4���9��n7��sE���2��8A��AM���S��UK�s@���D��V��KeyAttrFlagsiS�KeyAttrDataFloatf

��KeyAttrRefCountisE�AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�p�0�0�1��0���0���04�0��/��0A�0��0s�0���=0&�0�1��0!�0�'51��B0��0���0�z0��0���0�g�0�1�0O0�"1������q�0 T�0@��0�V�0�R��{�0�d0�'�0qN0�	�0��0`��0���0@�	1@�0@@]0��0`��0Z�/���0��1p0��0�0��0~�0��0�0�060��/�8h0&�0�ƺ0�/1S�0yP1��/�=�0��0�Z)1�/��00I�0���0�J�0^/��0ۂ0�0�0�0��0��0h0�1��'1�{1�0G�0�i0�?0�q0V�0��05�0�T0�\�0$�0��/�
1�0�A0'0Ķ0�0�?0
�0��0dg0��00�0D�0��0��KeyAttrFlagsi�KeyAttrDataFloatf

8�KeyAttrRefCountis��AnimationCurveL�d�-SAnimCurveS��	DefaultD�+���KeyVerI�l��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��_��
KeyValueFloatfs�@�]�f���`H��H��5S��MS���R�,�N�ݚ[���j��{�ꥌ��d��S���yl���/��Jz�9|�#�z�p�w�ALs���j�X�g�O�q�xɅ�S������t��0ג����ܳ���^��;���Î������������Gԑ��iz�)�h�r��w��~J��: ��Vz����������-��>���Х��Tɣ�+2���՟��������G��{*���
���_�����8l��§���ٱ��M��p���N���T�������k�`M�]�>���"�>u������[������*����4�5N�9�K��DJ�\L�5HC�g�;���>���:�*���0�ؠI�N
B���,��l�ض
������ �L�*���E�Bh��Oz��=}�R�y�^u��"p���k�� a�D�R��-F�0n>��(7�J��­��&���)���ف����KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL8T�-SAnimCurveSS�	DefaultDu($@k�KeyVerI�$��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��C!Af�EA��A�YA<A{@A�A��@T4�@���@���@�g�@���@.�@�X�@�@*��@_�
A�@!A0�#A0"A�tA�A��A#*�@��@�o�@�̗@���@༜@	��@���@&�@4��@Z>�@�/AVAa`;Av?ACd"AΞVA��rA��A�|aA\#A��A>��@q.�@���@n�A��[AlQ�AK��A�;�A4�A�y�A�M�A�^�A���An��A���A�>�A��A�;>AU�A��A�WuA�DA�'�@���@//�@-�@(��@�%�@Y�@G�e@��I@tDY@[B@'@r�?���>b��?x�?���?�^-@�*G@�+@am@FQ�@�A��A�A��Ao
A��A�g�@��@K@�_��@���8ΐC���*�"v����PZ@�k�@���@<��@4��@̄�@b�@{��@A�KeyAttrFlagsi{�KeyAttrDataFloatf

��KeyAttrRefCountism�AnimationCurveL(d�-SAnimCurveS�	DefaultD ����#�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��F�p���1�(�fl�� T�������§ ���e@8b A�JA��A3��A6��A-��ABКA��jA�jA���?1��"%��#�U����-<�Z�@r�}A�4�A���A�0�A���A!�A�A!�AA�A�~�AiZ�A��B�1B�YB�(|Bsb�B���B���Bsx�B^��B)��B��BO�BܥB�m�B���B�N�B&�Bj�eB{�dB�ppB�SmBVhBY�WB�8LB��9B��B��B\BeB��B�:	B�v�A~~�A�8�A�B�A��vA�AG��@���@('A޺{Ax�A
وA�ӘA���A�؎A(�yA:PA�jDA�#PAmhFA(XA�FA�$A���@��G@]�?D�(?�3@}Չ@��@�:7A*T�A�R�AO�AK�A;I�Ah��A�&�A��A�]A��A7��@��@Z5��,5��00�6t
�;�����KeyAttrFlagsi3�KeyAttrDataFloatf

`�KeyAttrRefCountis��AnimationCurveLH��-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel(e9��PM�>���G��G�
KeyValueFloatf��@��@��@q�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti]�AnimationCurveL���-SAnimCurveS;�	DefaultDS�KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf�RH��RH��RH���KeyAttrFlagsi#�KeyAttrDataFloatf

P�KeyAttrRefCounti�AnimationCurveLXF�-SAnimCurveS��	DefaultD��KeyVerI�%KeyTimel(e9��PM�>���G��7
KeyValueFloatfrhN�rhN�rhN�aKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL��-SAnimCurveS+	DefaultD`Y�1�CKeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��b���2�����j���%��/���0��Q"����������dG������)Ԗ����M2��������L����U��<���Ӎ��b��+9������Ҍ�����k��x��N�������X{���z������������|��������I���I���I���I���I���I���I���I���I���I���I���I���I���I����G�����qJ���E���8���������������������������������������������������������������r>�����1#��|%��K������b���b���b���b���b���b���b���b���b���b��㑍����6܎��׏������.���k��Y�������������������������������������������KeyAttrFlagsiSKeyAttrDataFloatf

�KeyAttrRefCountisEAnimationCurveL(��-SAnimCurveS�	DefaultD`:�&@�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���
�
KeyValueFloatfs��15A�2A>0A[-AS*A�>'AE8$A*Y!A�A�{A��A�~Aq�A;A��A�_A0�"A|�'A#�,A�0AM�3A�15Ar�4A�T2A:/A�+A�&A V"A8hA@A;AHA��A�Ad�A_A��A�{AwA��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A(HA��A��A�wA;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A;A��A��A	a$A�S*A��/A�3A�15A�15A�15A�15A�15A�15A�15A�15A�15A�15A��4A83A��0AZ%.AQ�*A�?'A�#Al�A�VA;A;A;A;A;A;A;A;A;A;A;A;A�
KeyAttrFlagsiKeyAttrDataFloatf

8KeyAttrRefCountis�AnimationCurveL8��-SAnimCurveS�	DefaultD��N��KeyVerI�l�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��_�
KeyValueFloatfs�.Pu�Eq��l�ݡg�bb¸]���W­�R�3�N‚�J©�G³�Eª�D¢>E�-(H�D�Mˆ�U�~^�x�f¦�m�+s�.Pu��
u�
�s£�p�r�l�L�g��a�;7Y¢�O¢>E���6�m�#ŠI
�7�����X��l�_�f1�� �� �� �� �� �� �� �� �� �� �� �� �� �� ���B��Z��t���b^�A&��<¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E���G�O�N©(X¸cb���k�P�r�.Pu�.Pu�.Pu�.Pu�.Pu�.Pu�.Pu�.Pu�.Pu�.Pu�Lft���q���m�i�wHc��]�N�V…dP�^{J¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E‰KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountisuAnimationCurveLQ�-SAnimCurveSS	DefaultDkKeyVerI��%KeyTimel(e9��PM�>���G���
KeyValueFloatf�'E@�'E@�'E@KeyAttrFlagsi;KeyAttrDataFloatf

hKeyAttrRefCounti-AnimationCurveL(	�-SAnimCurveS�	DefaultD�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��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��VJ��VJ��VJ��VJ��VJ��KeyAttrFlagsi�KeyAttrDataFloatf

 KeyAttrRefCountis�#AnimationCurveLx�-SAnimCurveS�	DefaultD�KeyVerI�L!�KeyTimelr�(e9��xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��;#�
KeyValueFloatfr�{H�{H�{H�zH�{H�{H�zH�{H�zH�zH�{H�{H�{H�{H�{H�{H�{H�zH�zH�zH�{H�zH�{H�{H�zH�{H�{H�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�zH�{H�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�zH�{H�{H�zH�{H�{H�{H�{H�{H�zH�{H�zH�zH�zH�{H�{H�{H�zH�{H�{H�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�e#KeyAttrFlagsi�#KeyAttrDataFloatf

�#KeyAttrRefCountir�*AnimationCurveL���-SAnimCurveS/$	DefaultD���#@G$KeyVerI�(�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���)�
KeyValueFloatfs�ϯAd!ACZAckA�eA:ZA�YA�uA�A]FA#
AXTA�AJ(A1H
A`�AuA��A��A&�A��AίA3AժA�^A�A}�A��A�A�-
AE(Ax A��AfA�A�~A�5A1�Al�AAAAAAAAAAAAAA	A؊A�"A�4A�A�$A��AJ(AK(AK(AL(AL(AL(AL(AL(AK(AK(AK(AJ(AJ(AJ(AJ(AJ(AJ(AJ(AJ(Af/
A��A�tAWfAbA\�A̯AͯAͯAίAίAͯAͯAͯAίAίA�UA�ZA��A��A{�A�ZA��A�uA�-AJ(AJ(AJ(AI(AJ(AL(AK(AK(AK(AK(AK(AK(A*KeyAttrFlagsiW*KeyAttrDataFloatf

�*KeyAttrRefCountisI1AnimationCurveL�U�-SAnimCurveS�*	DefaultD�	@�*KeyVerI��.�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���0�
KeyValueFloatfs��L�@&��@z��@�B�@�U�@�T�@Vz�@n�@�!�@��@4�@�n�@�C�@�א@���@R�@�j�@��@z˼@�x�@�g�@�L�@
��@���@��@is�@���@r��@cC�@}��@�א@eKd@(@�)?����H�,�C��tL���]���O���O���O���O���O���O���O���O���O���O���O���O���O���O������Ew���[�]�
>)@�%z@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�\�@�o�@z֩@�W�@a��@���@�L�@�L�@�L�@�L�@�L�@�L�@�L�@�L�@�L�@�L�@H�@U��@֙�@��@���@jV�@t�@E��@}ė@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�א@�0KeyAttrFlagsi1KeyAttrDataFloatf

<1KeyAttrRefCountis8AnimationCurveL�=�-SAnimCurveS�1	DefaultD�DP��1KeyVerI�p5�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��c7�
KeyValueFloatfs��$��o$����{�2�v�<�q¾Ll�c)g��Nb±�]©"Z�a(W�%U¬ET‹�T�ΖW�QM]��d��Nm»�u…�|Š� $���ځ�~���`�}�0�x�r�i�k���d�U�\‹�T�/K”�>�n�0�T,"���&=¢���2�����������������������������������������������������������a�����R��d.ªgA��OO‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T�;WW�8#^�ung�ڎq�@�z�;Ӏ $� $� $� $� $� $� $� $� $� $��氁�n��x}��x�?qr��Ml���e�J�_�%�Y‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T‹�T7KeyAttrFlagsi�7KeyAttrDataFloatf

�7KeyAttrRefCountisy9AnimationCurveL���-SAnimCurveSW8	DefaultDo8KeyVerI��8%KeyTimel(e9��PM�>���G���8
KeyValueFloatf�@�@�@9KeyAttrFlagsi?9KeyAttrDataFloatf

l9KeyAttrRefCounti1@AnimationCurveL� �-SAnimCurveS�9	DefaultD�9KeyVerI��=�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���?�
KeyValueFloatfs��'��'��'��'��'��'��'���'��'�"�'��'��'��'�
�'��'��'��'��'��'��'�
�'��'���'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'�
�'��'��'��'�
�'��'��'��'��'��'�
�'��'��'��'��'��'��'��'�
�'�
�'��'�
�'��'��'��'�
�'��'��'��'�
�'��'��'�
�'��'�
�'��'�
�'��'��'��'��'��'��'��'��'��'�
�'��'��'��'�
�'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'��'�	�'��?KeyAttrFlagsi�?KeyAttrDataFloatf

$@KeyAttrRefCountis�FAnimationCurveL�H�-SAnimCurveS�@	DefaultD�@KeyVerI�XD�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��KF�
KeyValueFloatfs��A�5C�55A�5�J�5�O�5>L�5�C�5��5jN�5Y�5�U�5K�5�B�5	F�5TI�5aD�5�O�5|e�5�U�5P�5�M�5lJ�5cO�5<B�5�>�55>�5�K�5EH�5
R�5�5�5�=�5L�5�K�5_K�5�J�5�/�5�K�5&D�5�N�5 D�5NO�5xJ�5�H�5#L�5"T�5KJ�5�A�5�K�5=J�5�I�5�A�5�S�5c=�5�U�5�H�5>M�5LJ�5�K�5HD�5�F�5u9�5M8�5UE�5�K�5bK�5�Q�5?J�5.Q�5F�5HH�5)K�5:J�5�P�5`L�5XH�5_J�5�J�54B�5�[�5)M�5�K�5pC�55�5b'�5,u�5k0�5b�5=Y�5_m�5L�5EM�58P�5�T�5�M�5�L�5M�5�M�5�k�5�9�5K�5�G�5�O�5qH�5<�5�>�5]D�5�J�5�Q�5�T�5`X�51b�5}Y�57�5B8�58P�5uFKeyAttrFlagsi�FKeyAttrDataFloatf

�FKeyAttrRefCountis�MAnimationCurveL��-SAnimCurveS?G	DefaultD���"@WGKeyVerI�K�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��M�
KeyValueFloatfs��mAvA��A��A�3AUt
A��A>!
Ak�A�hA�jA��AuA�AɏA�vAG�
A0�
A1�A*�A�A�mAf�ApVAA�uA��A�A�WA�YA��A)#Ay�A��A�.+A��7A��BA�YLA��RA�&UA�&UA�&UA�&UA�&UA�&UA�&UA�&UA�&UA�&UA�&UA�&UA�&UA�&UA��PA�hEA�5A��$AfA9
A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�zA�A��A
4A6KA��A�mA�mA�mA�mA�mA�mA�mA�mA�mA�mA� AkJAvA[aA]A�t
A�YA�F	ATA��A��A��A��A��A�A��A��A��A��A��A��A-MKeyAttrFlagsigMKeyAttrDataFloatf

�MKeyAttrRefCountisYTAnimationCurveL��-SAnimCurveS�M	DefaultD�t�@NKeyVerI��Q�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���S�
KeyValueFloatfs��۬@�@Uɤ@]�@L6�@=C�@]k�@�׌@汈@�"�@�S�@�m�@�5@g�@ໂ@]�@�A�@�6�@2�@�@�Ϫ@�۬@˫�@jq�@B�@��@Z֠@�Ě@-R�@�l�@m�@\�c@�d=@��@�G�?>YL?�.>B�ξ�D���f���f���f���f���f���f���f���f���f���f���f���f���f���f�7!�9�=�˃?��@��A@��n@g�@e�@d�@c�@c�@c�@c�@d�@d�@e�@e�@f�@e�@g�@f�@f�@f�@f�@f�@��@�@|��@�7�@u��@Q`�@�۬@�۬@�۬@�۬@�۬@�۬@�۬@�۬@�۬@�۬@��@ϡ�@��@�b�@$
�@XD�@AM�@�l�@��@h�@h�@h�@i�@h�@f�@f�@g�@g�@g�@g�@f�@�SKeyAttrFlagsiTKeyAttrDataFloatf

LTKeyAttrRefCountis[AnimationCurveLH��-SAnimCurveS�T	DefaultD�MM��TKeyVerI��X�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��sZ�
KeyValueFloatfs��mj��pg€d�R`�/q\�r�X�t�T��Q��M���J�¼H�\<G�@�F��F�2I�SM���R�%FY��_ž�d�l�h mj�T*j¹�h�,�f�
�c»w_—�Z��T�[;N��F�J=�9�0���!�#n�s:������i��dF�����������������������������������������������������������$�������j��X��y2œ2A��F��F��F��F��F��F��F��F��F��F��F��F��F��F��F��F��F��F��Fº�H���M��T�er\¼bc��uh mj mj mj mj mj mj mj mj mj mj���i���g�=�dUa�h]�S�X���S§%O�/�J��F��F��F��F��F��F��F��F��F��F��F��FZKeyAttrFlagsi�ZKeyAttrDataFloatf

[KeyAttrRefCountis�\AnimationCurveL(3�-SAnimCurveSg[	DefaultD[KeyVerI��[%KeyTimel(e9��PM�>���G���[
KeyValueFloatf}��@}��@}��@\KeyAttrFlagsiO\KeyAttrDataFloatf

|\KeyAttrRefCounti^AnimationCurveLX�-SAnimCurveS�\	DefaultD�\KeyVerI�0]%KeyTimel(e9��PM�>���G��c]
KeyValueFloatf�¿��¿��¿��]KeyAttrFlagsi�]KeyAttrDataFloatf

�]KeyAttrRefCountiy_AnimationCurveL��-SAnimCurveSW^	DefaultDo^KeyVerI��^%KeyTimel(e9��PM�>���G���^
KeyValueFloatf)��)��)��_KeyAttrFlagsi?_KeyAttrDataFloatf

l_KeyAttrRefCounti1fAnimationCurveL���-SAnimCurveS�_	DefaultD ���_KeyVerI��c�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���e�
KeyValueFloatfs�A����D����S���I�����}���N���V��s���8�������5������S���}����e��tȀ��������t��A�����b�z�Y4t��m�y�i���h���m��y�����ǚ�`��F������+�K�3�avF�:xS��IX��IX��IX��IX��IX��IX��IX��IX��IX��IX��IX��IX��IX��IX���N��x6����E����h��N����������������������ø��������������������������������������������������������D���с�dI������g��@���@���@���?���?���?���?���?���?���@��������R��2
��a���5��x��`#��-ƃ�����ĸ��ĸ��ĸ��ĸ��ĸ��ĸ��ĸ��ĸ��ĸ��ø��ø��ĸ���eKeyAttrFlagsi�eKeyAttrDataFloatf

$fKeyAttrRefCountis�lAnimationCurveL(�-SAnimCurveS�f	DefaultD�h� @�fKeyVerI�Xj�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��Kl�
KeyValueFloatfs�D+AVIAK_A�~A��A�AS�@?r�@��@���@���@o��@���@���@���@{�@Q��@�+A+QA�A2�AD+AiYA��A+�A��Ag�A2�A��A&A���@���@���@���@K��@&��@��A"�AX�AG�AG�AG�AG�AG�AG�AG�AG�AG�AG�AG�AG�AG�AG�A~�
A��AI��@�b�@߄�@0M�@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@5��@��@�*�@�A6AA�AD+AD+AE+AE+AE+AE+AE+AE+AE+AD+A��A�hAǞA�A��A�A���@�1�@���@���@���@���@���@���@���@���@���@���@���@���@���@ulKeyAttrFlagsi�lKeyAttrDataFloatf

�lKeyAttrRefCountis�sAnimationCurveL��-SAnimCurveS?m	DefaultD`K�N�WmKeyVerI�q�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��s�
KeyValueFloatfs�[zv��Frµ|m‚Jh€�b“f]�8X�~S�|N��J�΅G�	tE��D���D�}�G�M�%�U�s^€$g¸�n�42t�[zv��v��Ot�
*q�.�l�g��%`¤%X�*O���D��7™�&™�‚���'���"f���)��&B}�ro�ro�ro�ro�ro�ro�ro�ro�ro�ro�ro�ro�ro�ro�V,���Y��L��a�
�()��.=���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D��G�}�N��WX�/�b¨�l¯�s�[zv�[zv�[zv�[zv�[zv�[zv�[zv�[zv�[zv�[zv�2�u�b�r���n�˵i�<�c��g]�p�V�PaP«VJ���D���D���D���D���D���D���D���D���D���D���D���D�-sKeyAttrFlagsigsKeyAttrDataFloatf

�sKeyAttrRefCountisuAnimationCurveL�<�-SAnimCurveS�s	DefaultDtKeyVerI�Ht%KeyTimel(e9��PM�>���G��{t
KeyValueFloatf��@��@��@�tKeyAttrFlagsi�tKeyAttrDataFloatf

uKeyAttrRefCounti�{AnimationCurveL#�-SAnimCurveSou	DefaultD�uKeyVerI�@y�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��3{�
KeyValueFloatfs����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������]{KeyAttrFlagsi�{KeyAttrDataFloatf

�{KeyAttrRefCountisI}AnimationCurveL��-SAnimCurveS'|	DefaultD?|KeyVerI�x|%KeyTimel(e9��PM�>���G���|
KeyValueFloatf��d���d���d��|KeyAttrFlagsi}KeyAttrDataFloatf

<}KeyAttrRefCounti�AnimationCurveL(��-SAnimCurveS�}	DefaultD`�	
@�}KeyVerI�p��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��c��
KeyValueFloatfs��Lh@9lf@2Fd@f�a@�x_@B�\@��Z@"4X@
V@^ET@��R@o�Q@�nQ@��Q@K
S@@�U@nY@u]@bia@�d@�Gg@�Lh@ui@�k@��n@5q@0�q@�(p@�j@,�`@��Q@�u8@�-@���?�~c?A�>E�
��č�0���=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿ�=ѿZ���.%�?��>�ͮ?�E@��@@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��R@63V@��Z@�y_@:�c@=g@|Lh@�Lh@�Lh@�Lh@�Lh@�Lh@�Lh@Lh@�Lh@�Lh@�g@\�f@��d@��b@��_@��\@��Y@��V@)'T@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��Q@��KeyAttrFlagsiǃKeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveLH�-SAnimCurveSW�	DefaultD`�@o�KeyVerI�(��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�#�E@)eA@�1<@��6@��0@׍*@:�$@�
@A�@��@�@R�@��@�E@�@V@@�!@^�+@�D5@̍=@
yC@#�E@I�E@o,E@I:C@��?@-�:@�3@F=*@E6@�E@���?��?��g?���>߰����G��d�������ο�ο�ο�ο�ο�ο�ο�ο�ο�ο�ο�ο�ο�ο+����BW��X��\-=?J�?o�@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@6V@8@��$@��0@'6;@S�B@�E@�E@ �E@!�E@�E@�E@�E@�E@ �E@ �E@��D@�B@3�=@�8@�1@-�*@mF#@�@/L@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@�E@E�KeyAttrFlagsi�KeyAttrDataFloatf

��KeyAttrRefCountisq�AnimationCurveLx��-SAnimCurveS�	DefaultD` �P�'�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��Ӑ�
KeyValueFloatfs����圂�SF��Jw{�g&v«�p�„k�X�f�
b©0^´$[��Y��0X�R�X°�[�na��+i���q�GWz¨��s������������“G���4��>�z�GMt¿Wl�zc�R�X�W�J�8��"����v����D��$���ъ�Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q���Q����e������G�����4�:®?P�Q�X�Q�X�Q�X�R�X�R�X�R�X�Q�X�Q�X�R�X�R�X�Q�X�R�X�Q�X�R�X�R�X�Q�X�Q�X�R�X�R�X¢T[��Hb�o�k�(v�̪��O�������������������������������˜2��B��k����|·w���p�;Nj”�c±�]�Q�X�Q�X�Q�X�Q�X�Q�X�Q�X�Q�X�Q�X�Q�X�Q�X�Q�X�Q�X���KeyAttrFlagsi7�KeyAttrDataFloatf

d�KeyAttrRefCountis�AnimationCurveLXd�-SAnimCurveSǑ	DefaultDߑKeyVerI��%KeyTimel(e9��PM�>���G��K�
KeyValueFloatf�XE@�XE@�XE@u�KeyAttrFlagsi��KeyAttrDataFloatf

ܒKeyAttrRefCounti��AnimationCurveLX��-SAnimCurveS?�	DefaultDW�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs���2�A�2@k�2���2@h�2���2@x�28͕2�G�2 {2ۅ2@1�2��2p͇2pn�20H�2ع�2li�2�ފ2�2�ʆ2@��2�/�2ʈ2Ծ�2�?w2���2���2���2х2p��2 8�2��2�'�2���2 \�2Z��2���2�y�2��2��2���2��2��2�l�2V��2���2i߇2n��2tL�2�܈2`�2p��2�>�2ج�2�d�2�M�2�x�2��2��2��2d�2pK�2�	�2`և2ࣉ2���2�Y�2ж�2���2�|�2���2��2�ֈ2��2�ֆ20�2�Ă2�h�2�y�2�T�2�_�2���2�o�2��2g�20V�2x�2p��2`ׇ2��2@��2`[�2p��2�s�2���2��22�wg2��2��2`��2���2��2�2x5�2xi�2��24h�2�+�2+�2��2`��2��2 ��2-�KeyAttrFlagsig�KeyAttrDataFloatf

��KeyAttrRefCountisY�AnimationCurveL،�-SAnimCurveS��	DefaultD�KeyVerI�ȝ�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�M�ܵ��ܵJ�ܵ��ܵ��ܵ�ܵ��ܵ�ܵQ�ܵ�ܵ��ܵz�ܵ��ܵ2�ܵ��ܵ1�ܵZ�ܵ(�ܵJ�ܵ��ܵP�ܵu�ܵ�ܵ�ܵ.�ܵ?�ܵd�ܵT�ܵ��ܵ��ܵ��ܵ��ܵs�ܵ��ܵ��ܵ�ܵe�ܵ��ܵ�ܵ��ܵ�ܵ��ܵ�ܵ��ܵ3�ܵ�ܵ�ܵ�ܵ��ܵ��ܵ�ܵh�ܵI�ܵ	�ܵ0�ܵD�ܵ��ܵ��ܵ��ܵ��ܵ��ܵ��ܵ��ܵ�ܵ��ܵ��ܵ��ܵ��ܵ��ܵ��ܵ�ܵ��ܵ��ܵ��ܵ��ܵY�ܵ �ܵU�ܵ��ܵ	�ܵ��ܵN�ܵ�ܵ|�ܵF�ܵj�ܵ�ܵ��ܵ8�ܵ��ܵ��ܵP�ܵ��ܵ��ܵ��ܵ��ܵ�ܵ`�ܵ��ܵQ�ܵ��ܵ��ܵ��ܵl�ܵ��ܵ��ܵ��ܵ�ܵ�ܵ6�ܵ>�ܵJ�ܵQ�ܵ��ܵ�ܵ�KeyAttrFlagsi�KeyAttrDataFloatf

L�KeyAttrRefCountis�AnimationCurveL��-SAnimCurveS��	DefaultD��R@ǠKeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��s��
KeyValueFloatfs�E��@�C�@��@�4|@ÿx@?u@��q@�n@��k@�i@�g@1�e@e@�fe@+Yg@/2k@WFp@j�u@|y{@�%�@�ށ@E��@��@�w�@w��@��@�h@V{@��u@��n@�fe@)X@��E@M0@@��@q��?9ж?�1�?L��?G��?H��?H��?J��?I��?I��?I��?H��?J��?J��?K��?H��?I��?e�?���?��@q�)@
ZG@�]@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@H.g@��k@��q@��x@F�~@P��@C��@G��@K��@M��@M��@M��@M��@M��@M��@M��@�I�@wt�@�-�@�}@�Wy@�?u@�q@F�l@l�h@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@�fe@��KeyAttrFlagsiצKeyAttrDataFloatf

�KeyAttrRefCountisɭAnimationCurveL(��-SAnimCurveSg�	DefaultD��?�KeyVerI�8��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��+��
KeyValueFloatfs����?dޖ?�?؝�?��?Jz?��l?Jl`?�U?3K?�sC?�6>?��;?�=?�D?nS?�g?��|?�3�?k��?�6�?���?x��?��?��?��?6ؗ?��?.�?�ei?�=?���>y��=l��[�K�•��%ؿRu���O,�R,�R,�Q,�P,�Q,�P,�Q,�Q,�Q,�R,�Q,�P,�Q,��!�tW߿����X]���&>�b?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?��C?��U?Ʋm?��?z�?���?���?���?���?���?���?���?���?���?���?���?y֚?H��?|��?"]�?��?$Mz?�i?��Y?s�J?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?�=?U�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL�3�-SAnimCurveS�	DefaultD`!�D�7�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�Q%�XB"�u�¼�Š�=��0��Z�H��$®��AL�9�����*��eO
�v�¬!����#�Q%��%�\�#��^!�(���������S���½���Uc��6��Bg���cv�(�?�s�����������������������������������������������������������������a1;�ߠ��I?���H���������������������������������������������������������������x��+��D�����wM#�Q%�Q%�Q%�Q%�Q%�Q%�Q%�Q%�Q%�Q%�2�$��"����T�®�#��M(�e	�^��������������������������������������
�KeyAttrFlagsiG�KeyAttrDataFloatf

t�KeyAttrRefCountis��AnimationCurveLXm�-SAnimCurveS״	DefaultD�KeyVerI�(�%KeyTimel(e9��PM�>���G��[�
KeyValueFloatf�F�@�F�@�F�@��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL��-SAnimCurveSO�	DefaultDg�KeyVerI���%KeyTimel(e9��PM�>���G��Ӷ
KeyValueFloatf�	A��	A��	A���KeyAttrFlagsi7�KeyAttrDataFloatf

d�KeyAttrRefCounti�AnimationCurveL�7�-SAnimCurveSǷ	DefaultD߷KeyVerI��%KeyTimel(e9��PM�>���G��K�
KeyValueFloatf�΁?�΁?�΁?u�KeyAttrFlagsi��KeyAttrDataFloatf

ܸKeyAttrRefCounti��AnimationCurveL�p�-SAnimCurveS?�	DefaultD�gƿW�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�%83�aꃾ?���G�hV��*�isE�H�^��Vu�Ae���
��c8���v��LZ��+򊿄xx��YQ��{%����5���0a�;83�š��<�10>���>nE�>���>�M=u�ҾKZ��p�����[
���9�B+�bBL��^g�W�y��>���>���>���>���>���>���>���>���>���>���>���>���>���>���Vs��hQ��"�����]��9[��NZ��LZ��JZ��HZ��IZ��EZ��GZ��HZ��JZ��KZ��LZ��MZ��MZ��NZ��NZ��LZ��MZ��NZ��NZ�������(t��D��M�m(��}�j�!83�83��73��73��73��73��73��73��73��73�m[F���{�T~��Xھs�
�\�*��K���k�3��MZ��MZ��MZ��MZ��MZ��MZ��MZ��MZ��MZ��LZ��MZ��NZ��-�KeyAttrFlagsig�KeyAttrDataFloatf

��KeyAttrRefCountisY�AnimationCurveLș�-SAnimCurveS��	DefaultD@`&@�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��0AtU,A:�'A�]"A:�AlnA�A��A�VA�_Ab>A�A�@�j�@%T�@|�AT�A�A�|AK7!A��(Aa>.A�0A;�.A�3*Ar5#A|�AH=A!$
Aj�A��@%T�@�%A>T	A1A�UA��)A��4AO�=A�6DA]�FA]�FA]�FA]�FA]�FA]�FA]�FA]�FA]�FA]�FA]�FA]�FA]�FA]�FA��BA7r8A�z*A-A�
A�A(T�@)T�@*T�@+T�@)T�@+T�@)T�@*T�@*T�@)T�@(T�@(T�@%T�@'T�@'T�@'T�@'T�@%T�@%T�@�oA��A]TA��A��&A��-A�0A�0A�0A�0A�0A�0A�0A�0A�0A�0Ad�/AG�,A��(A*�#A��A�oA��A�C
A�A'T�@%T�@'T�@'T�@'T�@'T�@'T�@'T�@%T�@'T�@'T�@'T�@��KeyAttrFlagsi�KeyAttrDataFloatf

L�KeyAttrRefCountis�AnimationCurveL��-SAnimCurveS��	DefaultD�j�O���KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��s��
KeyValueFloatfs�Tk��z™
t�*wm”�f���_“�X��\R�ÇL��G�/�Cƒ�@���?��S@—&D¿�K½�U��`��l�Ȣu�҉|�Tkª�~�Ͻ{��v‹`p¡zh�{u_�@�U�K��S@�-33�&v"�]|ŽK��x���ȭ��u���|�?�n�?�n�?�n�?�n�?�n�?�n�?�n�?�n�?�n�?�n�?�n�?�n�?�n�?�n�q0��:������,•&�+�8��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@�K�C�^�L�)(Yº�f���r‡�{�Tk�Tk�Tk�Tk�Tk�Tk�Tk�Tk�Tk�Tk�i8~�G�z���u�Do���g�O�_�):W�l�N��3G��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@��S@�KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveLx��-SAnimCurveSg�	DefaultD�KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf���@���@���@�KeyAttrFlagsiO�KeyAttrDataFloatf

|�KeyAttrRefCountiA�AnimationCurveL�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�V��9W��9M��9Z��9_��9]��9X��9`��9Y��9M��9R��9W��9n��9Y��9]��9X��9W��9Z��9\��9e��9c��9U��9t��9`��9[��9U��9S��9j��9N��9x��9[��9Z��9S��9R��9Z��9u��9X��9d��9U��9\��9V��9Y��9]��9X��9R��9Y��9a��9X��9Z��9V��9\��9Z��9V��9W��9]��9V��9^��9Y��9X��9V��9S��9\��9\��9W��9Z��9P��9U��9J��9`��9[��9X��9J��9c��9[��9V��9S��9T��9m��9I��9Z��9[��9Z��9Z��9X��9[��9Y��9Y��9V��9W��9Y��9Z��9[��9a��9\��9X��9[��9T��9W��9Y��9X��9[��9Z��9T��9d��9`��9`��9Y��9_��9Z��9X��9[��9\��9V��9V��9Y��9��KeyAttrFlagsi�KeyAttrDataFloatf

4�KeyAttrRefCountis��AnimationCurveL�{�-SAnimCurveS��	DefaultD��KeyVerI�h��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��[��
KeyValueFloatfs�u>.�v>.�u>.�u>.�u>.�u>.�v>.�v>.�u>.�u>.�u>.�u>.�v>.�v>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�u>.�u>.�u>.�v>.�v>.�v>.�v>.�u>.�v>.�v>.�u>.�v>.�v>.�u>.�v>.�u>.�v>.�u>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�u>.�v>.�v>.�u>.�v>.�v>.�v>.�u>.�u>.�u>.�v>.�v>.�v>.�v>.�v>.�v>.�u>.�u>.�u>.�u>.�v>.�v>.�v>.�u>.�v>.�v>.�u>.�u>.�u>.�v>.�u>.�v>.�v>.�u>.�v>.�v>.�u>.�v>.�u>.�u>.�u>.�v>.�u>.�u>.�u>.�v>.�u>.�u>.�v>.�v>.�u>.�u>.�v>.�u>.�v>.�v>.�v>.�u>.�v>.�u>.�u>.�v>.�v>.�u>.�v>.�v>.�v>.���KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL(�-SAnimCurveSO�	DefaultD@n�g�KeyVerI� ��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�rx��q��Dj�:b�P�Y�Q8Q�N�H���@���9�nR3�a.��+��)��L*��/���8��	E��R��q`�'2l���t�sx��r���a��K�
>3�T��������LM��L*���a�+����.п
����!�Ѥ<�	�R��a�U;g�V;g�V;g�V;g�U;g�V;g�V;g�V;g�V;g�V;g�V;g�V;g�W;g�W;g���\���A�����鿸 ��07T��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*���.�V�9��?I���Y���h���s�px�hx�ax�ax�`x�jx�nx�{x�fx�nx���v��r��Zl�amd�\<[�;:Q�.�F�6�<���2��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*��L*�=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCountisi�AnimationCurveL��-SAnimCurveS�	DefaultD��N��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��t
�U�Z����T�[F۾ �ʾW���ܫ�s��VF���숾�������6���G���3��Dڳ��ξ!�羑M��@"��t
��5�6���w��"	��������}�ھ�e���6��N�ѽ�|�=�s�>�?�Fb?:�?�7�?�M�?��?��?��?��?��?��?��?��?��?��?��?��?��?��?s�?Z�?M�O?ns�>fg�=O���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6���6������ў��ػ�lK۾z����l��t
�u
�u
�u
�u
�u
�u
�#u
�u
�u
�@	�7�����:��O޾	˾�O��gأ�+����6���6���6���6���6���6���6���6���6���6���6���6����KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCountis!�AnimationCurveL���-SAnimCurveS��	DefaultD@
�F���KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�j�5�9K0±�)�n�"����G���b���P���/���3����d��p�������������	�K��UI!�ȇ+���2�j�5�`�4��0�'�*�d}"�|9�&H�4���p��������_��ߗ��Ҋ��c1u��CN��/��M�������������������������������������������]$��P�;��� ��g�������q���q���q���q���q���q���q���q���q���q���q���q���q���r���q���q���q���q���r���a
���º:
�S��O�(�m82�j�5�j�5�j�5�j�5�j�5�j�5�j�5�j�5�j�5�j�5��4�1���+���$¼����-��a��?��p���p���p���p���p���p���p���p���p���p���p���p�����KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveL
�-SAnimCurveSw�	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf�_Y@�_Y@�_Y@%�KeyAttrFlagsi_�KeyAttrDataFloatf

��KeyAttrRefCountiQ�AnimationCurveL�R�-SAnimCurveS��	DefaultD�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�������������~������������@����}��*x������2���B������'����������&���ڕ���n���������������q������䇣�e���c������������|������1���ꈣ� ���nz�����~��l�������ϋ������?���ȉ��ߐ���������~����������ц������ʇ������u���΍������;�����������3���W���ꄣ�Ί��e���)�������5���X������������|��떣��������L����������w��?���㊣�8���������������ˆ������򌣵c�������'���ƌ��Y�����������،��3j������\��L�������P���ꅣ�*���/�����������&���A����������焣���������{z����KeyAttrFlagsi�KeyAttrDataFloatf

D�KeyAttrRefCountis	�AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI�x��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��k��
KeyValueFloatfs��b�4�m�4�Q�4�y�4\��4��4���4�F�4�|�4��4���4�w�4�h�4�h�4�v�4gj�4փ�4�V�4��4���4ċ�4Tn�4���4��4�r�4e��4�}�4�u�4���4��4�
�4	��4�s�42s�4�z�4x�4�|�4�w�4|�4e�4��4=q�4Ղ�4k}�4*��4�x�4re�4<x�4�{�4�c�4tl�4/��4Hl�4�q�4�l�4���4V��4��4�B�4ZV�4�C�4�k�41q�4�x�4.~�4x��4~p�4{��4NR�4\�4b{�4��4�F�4YO�4Cv�4Ư�4$|�4�T�4���4ف�4@~�4:e�4�K�4;�4x��4�\�4��4�i�4�C�4��4�b�4���4X��4	��4�a�4�}�4���4�p�4��4���4�k�4��4/p�4-^�4�e�4�o�4cy�4}�4�x�4���4���4@��4xc�4Rv�4���4��KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis�AnimationCurveL(F�-SAnimCurveS_�	DefaultDM�w�KeyVerI�0�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��#�
KeyValueFloatfs��hj��bd��|]���U�iN��F�L4>���6��/��%*���%��j"�Q!��!��4&�Z
/�L�:�šG��KT�YJ_��#g��hj���d��=U�q�?�^�(�����C�����Di���!��W������ǿ��������5�!K�͢Y���^���^���^���^���^���^���^���^���^���^���^���^���^���^���T�~�:�j=���࿍b��ZEJ���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!�<�%�rT0�*�>��N��.\�iqf��hj��hj��hj��hj��hj��hj��hj��hj��hj��hj��i��@e��o_��X��lO�VF��b<��2�9�)���!���!���!���!���!���!���!���!���!���!���!���!�MKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountisyAnimationCurveL���-SAnimCurveS	DefaultD���޿/KeyVerI��	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�������ݾ�aоf�¾�������8��;�����7x�kem���h�ek�Ԉz�����s٠��X���x;g�྆X��z�,L�{�ؾj�ƾ�ϲ��#���6����}�Ik�(�b�O�`��'d�B�j�k�s�U}�˂�����������������������������������������������N&������
m���iy�br�/m�k�k�"k�*k�k�k�*k�'k�6k�@k�<k�Rk�dk�Fk�Ik�ck�Zk�Vk�Ok��2y��׎�������¾�:۾� ������
��5
��7
��3
��&
��)
��
��
��ǭ��
뾂��P�Ӿs�ľ�����ϣ�@%���s��kk�ok�ok�kk�sk�mk�jk�gk�hk�tk�uk�nk�KeyAttrFlagsi?KeyAttrDataFloatf

lKeyAttrRefCountis1AnimationCurveLX��-SAnimCurveS�	DefaultD@qE��KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs���(��#�(��?u˜�‚9
�L�‹"��s����m����������������e����s��C��x�¸�3C��%Š�(‡�'•�#�HL�0
�������q���*��������{/���E���)��!v��8T��9�T'�� �� �� �� �� �� �� �� �� �� �� �� �� �� �٢/�<�V�e������Ӡ��������������������������������������������������������������NY�������¤�™���D%Š�(Š�(Š�(Š�(Š�(Š�(Š�(Š�(Š�(Š�(�`v'šD$��bŠ-�k�;
��6�3��������������������������������������������KeyAttrFlagsi�KeyAttrDataFloatf

$KeyAttrRefCountis�AnimationCurveL���-SAnimCurveS�	DefaultD�KeyVerI��%KeyTimel(e9��PM�>���G��
KeyValueFloatfg�@g�@g�@5KeyAttrFlagsioKeyAttrDataFloatf

�KeyAttrRefCounti!AnimationCurveLH��-SAnimCurveS�	DefaultDKeyVerI�P%KeyTimel(e9��PM�>���G���
KeyValueFloatfn�H�n�H�n�H��KeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveL�W�-SAnimCurveSw	DefaultD�KeyVerI��%KeyTimel(e9��PM�>���G���
KeyValueFloatf�P@�P@�P@%KeyAttrFlagsi_KeyAttrDataFloatf

�KeyAttrRefCountiQAnimationCurveL�?�-SAnimCurveS�	DefaultD��@KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs�0�}@��@�@���@'"�@�}�@<m�@R̰@�w�@�I�@��@(��@��@k5�@䇾@�>�@�t�@��@�*�@��@�w�@0�}@��@���@LG�@�@1ܚ@�4�@��@���@k5�@���@-;�@�@�gA��
A��AG�A�fAD AD AE AD AD AD AD AD AD AD AD AD AD AD AksA�.A��A��@\��@O�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@�ؾ@�,�@b�@��@"?�@N?�@1�}@2�}@3�}@3�}@4�}@4�}@4�}@4�}@4�}@4�}@dP�@@��@�؊@iz�@�ښ@|�@1��@��@@��@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@k5�@�KeyAttrFlagsiKeyAttrDataFloatf

DKeyAttrRefCountis	%AnimationCurveL8��-SAnimCurveS�	DefaultD�ba1@�KeyVerI�x"�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��k$�
KeyValueFloatfs��Ab�A�a�A�xAAoA�GfA��^A?SXA�WSAd�OA�MA��KA��JA
BKA�rMA
�RA��[A��gA'�vA���A{�A�A{ډA��Ayp�A�tA�tgA$T\A�SA��MA
BKA��JAJ�LA0DPA�%UAS�ZAǗ`A��eA�FiA�jA�jA�jA�jA�jA�jA�jA�jA�jA�jA�jA�jA�jA�jA��gA�aAKBYAԎRA[NA��KA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA(?MA[�SA5_AoAHz�A��A�A�A�A�A�A�A�A�A�A�A���Ax	�Av‚A�[{A�pA�IfA�]A3UUA�kOA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA
BKA�$KeyAttrFlagsi�$KeyAttrDataFloatf

�$KeyAttrRefCountis�+AnimationCurveL��-SAnimCurveS_%	DefaultD�^H�w%KeyVerI�0)�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��#+�
KeyValueFloatfs��B���;�Z�3��*��P!�9��B�BD�i%��G������E��(���B����v�������
�j����(��5��?��B�EWA�h�;�G53¤@(�S����~�X��B�������ʲ�{����]���#y��I\�W�E�W7�t�1�t�1�t�1�t�1�t�1�t�1�t�1�t�1�t�1�t�1�t�1�t�1�t�1�t�1�׸?���c��g��1b���B�����B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���B���������������S!�$2�J>��B��B��B��B��B��B��B��B��B��B��\A�1�<»6·1-���"�a��­~����B���B���B���B���B���B���B���B���B���B���B���B���M+KeyAttrFlagsi�+KeyAttrDataFloatf

�+KeyAttrRefCountis9-AnimationCurveL��-SAnimCurveS,	DefaultD/,KeyVerI�h,%KeyTimel(e9��PM�>���G���,
KeyValueFloatfݳ~@ݳ~@ݳ~@�,KeyAttrFlagsi�,KeyAttrDataFloatf

,-KeyAttrRefCounti�3AnimationCurveL���-SAnimCurveS�-	DefaultD�-KeyVerI�X1�KeyTimelr�(e9��xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��G3�
KeyValueFloatfr�S6�;S6�;S6�;T6�;T6�;S6�;R6�;T6�;Q6�;R6�;S6�;U6�;S6�;T6�;S6�;S6�;T6�;T6�;S6�;T6�;S6�;T6�;S6�;S6�;R6�;S6�;U6�;R6�;W6�;V6�;S6�;S6�;S6�;S6�;V6�;S6�;T6�;S6�;T6�;S6�;S6�;T6�;S6�;S6�;S6�;T6�;S6�;S6�;S6�;S6�;T6�;S6�;U6�;S6�;S6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;T6�;S6�;T6�;S6�;S6�;T6�;S6�;S6�;Q6�;V6�;T6�;S6�;R6�;S6�;V6�;Q6�;S6�;S6�;T6�;T6�;T6�;S6�;S6�;S6�;T6�;T6�;S6�;T6�;S6�;S6�;S6�;T6�;S6�;S6�;S6�;S6�;S6�;T6�;S6�;S6�;T6�;T6�;T6�;S6�;T6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;q3KeyAttrFlagsi�3KeyAttrDataFloatf

�3KeyAttrRefCountire9AnimationCurveLhf�-SAnimCurveS;4	DefaultDS4KeyVerI�<7�KeyTimelY�(e9�����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���8q
KeyValueFloatfYd{��={��={��=z��=z��={��={��={��={��=z��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��=�8KeyAttrFlagsi+9KeyAttrDataFloatf

X9KeyAttrRefCountiY@AnimationCurveL���-SAnimCurveS�9	DefaultD��<��9KeyVerI��=�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��?�
KeyValueFloatfs�������Ui���P���6��F��e���ӿ��������D��j�"�	��b��\M��砿Ɲ��W!�LK�ZCo�ڈ����������x�h�X��3�9��ɿ�����o4��b��b�ob�Fb�b��a��a��a�va�la�ma�na�pa�oa�oa�oa�qa�oa�na�pa�na�oa�pa��a��a��a�%b�`b��b��b��b��b��b��b��b��b��b��b��b��b��b��b��b��b��b��b��b��b��IH�Zf��)��¨6��e�Pc��������������������������������쫇�sn��:�o�*]W�;��L�����Y���QY|��b��b��b��b��b��b��b��b��b��b��b��b��?KeyAttrFlagsi�?KeyAttrDataFloatf

@KeyAttrRefCountis�FAnimationCurveL�%�-SAnimCurveSs@	DefaultD�m���@KeyVerI�DD�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��7F�
KeyValueFloatfs�l;��QP�8��҂տط������N~��5L�v(!��G��*Hо�F���/ƾ��lJE�������ړ�o�
�m/�m;�k�ۛ�
�����ѿ�n���cr�;)�wA��/ƾ�/ƾ�/ƾq/ƾ</ƾ/ƾ�.ƾ�.ƾ�.ƾw.ƾr.ƾx.ƾx.ƾu.ƾu.ƾt.ƾz.ƾt.ƾu.ƾy.ƾx.ƾt.ƾq.ƾ�.ƾ�.ƾ�.ƾ</ƾ}/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ8;��N��B���տ/�����r;�q;�q;�s;�s;�s;�t;�u;�t;�t;�������>�
��b��U�ڿ�޷�l��a��^��/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾaFKeyAttrFlagsi�FKeyAttrDataFloatf

�FKeyAttrRefCountis�MAnimationCurveL���-SAnimCurveS+G	DefaultD�`5A�CGKeyVerI��J�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���L�
KeyValueFloatfs��	���(P�����b���,T��:V��_W��c���t�N�j��\��eV��mY���m�^Њ��M�����I��\~������	�kDª���\����D���S������	#��Be��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY�S�k�O���H�����"K��.
��	��	��	��	��	��	��	��	��	��	£��¾���c�������IX���/���\��S�}��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY�MKeyAttrFlagsiSMKeyAttrDataFloatf

�MKeyAttrRefCountisOAnimationCurveLx��-SAnimCurveS�M	DefaultD�MKeyVerI�4N%KeyTimel(e9��PM�>���G��gN
KeyValueFloatf��2@��2@��2@�NKeyAttrFlagsi�NKeyAttrDataFloatf

�NKeyAttrRefCounti�UAnimationCurveL8��-SAnimCurveS[O	DefaultDsOKeyVerI�,S�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��U�
KeyValueFloatfs�D,��@,�;R,��9,�[3,�n.,�\,�+/,�C,�^2,��E,��?,�,�Q:,�:,�8,�5,�F2,���+��E,��8,�{h,���+��,��<,��",��5,��(,��^,���+���+�CF,��E,�OM,��:,�K�+��>,�5,��H,��1,��H,�>,�k2,��?,��P,��=,�{*,��>,�<,�>,��>,�F5,�LB,�1f,��1,��F,��3,��=,��1,��=,��B,��=,��5,�'D,�tG,��?,��?,�+I,�.,�:,��<,��^,��*,��4,�@,��G,�`D,�Y,��K,��<,�n=,��?,�FD,��B,�85,�>,��9,�LD,�~',�E=,��',�$4,�*.,��),�6H,��#,���,�Ll,��.,�t=,��>,��<,�S@,�f5,��:,��9,��?,��E,�;,�:,�X4,��/,��N,��L,��0,�IUKeyAttrFlagsi�UKeyAttrDataFloatf

�UKeyAttrRefCountisu\AnimationCurveLX!�-SAnimCurveSV	DefaultD+VKeyVerI��Y�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���[�
KeyValueFloatfs�h���ڔ��ߘ���������여�����F���|����������󕬶����̘��o���z���C��������������x���_�����������V������_���k���s�����Ӧ��ғ������L���%���O���Ǖ������S������������������������
����������򕬶֗������,���Z����E���쓬�o�����������c�������D���ؔ������I��������������������������f�������K�����������������$�������Õ��2�������>���Z���_���D���U�������ѕ��Z�������|���Z��������I���W���Β��
���9���͓������m���@���g������F���-���1���ޗ������U���I���$���\KeyAttrFlagsi;\KeyAttrDataFloatf

h\KeyAttrRefCountis-cAnimationCurveL���-SAnimCurveS�\	DefaultD{���\KeyVerI��`�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���b�
KeyValueFloatfs��Ä�G�v�w9a���I��1�a�E%����пt?���ρ��I���"�����c�
UR�e���(����U�D���f�V��Ä�ٌ���2o�׆Q���-����q�ƿmw��?�:��c��c��c�rc�Xc�;c�(c�
c�
c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�3c�Rc�pc��c��c��c��c��c�uc�|c��c�}c�zc��c��c��c��c��c��c��c��c��c��c��c���M��s��I��q&1�;(]�)}��Ä��Ä��Ä��Ä��Ä��Ä��Ä��Ä��Ä��Ä�����ry��Og�9-P��Y5��$�]���뷿��~��c��c��c��c��c��c��c��c��c��c��c��c��bKeyAttrFlagsi�bKeyAttrDataFloatf

 cKeyAttrRefCountis�iAnimationCurveL���-SAnimCurveS�c	DefaultD��n��cKeyVerI�Tg�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��Gi�
KeyValueFloatfs��v3��J'�5X�g!
�9T����ӿ@'�����au�,]F�^5!��cQ������&�'�m�s*ڿ��������,��v3�@L/��f"�F+�3����T���R�N�^]����~��r��_��H��3����
��������������������������������������������'��D��^��p��u��m��f��b��a��m��f��h��m��q��u��{�����{��|�������|��}��2~#�I:x�+ӵ�6^��K��s+��v3��v3��v3��v3��v3��v3��v3��v3��v3��v3�c�0�G)�$J�RK�������ӿ�ά����~QC�����������������������������������qiKeyAttrFlagsi�iKeyAttrDataFloatf

�iKeyAttrRefCountis�pAnimationCurveL��-SAnimCurveS;j	DefaultD@��B�SjKeyVerI�n�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���o�
KeyValueFloatfs��E��_�\¬���g���l���/'��m��nD���C���������������x}��-���>��V��u���
����E����6�
�h��~���i��ѵ�ע���I��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������d�����8�������£���E��E��E��E��E��E��E��E��E��E����]�
�
�qF�O��y���P������1l��������������������������������������������������)pKeyAttrFlagsicpKeyAttrDataFloatf

�pKeyAttrRefCountisrAnimationCurveL��-SAnimCurveS�p	DefaultDqKeyVerI�Dq%KeyTimel(e9��PM�>���G��wq
KeyValueFloatf�(�?�(�?�(�?�qKeyAttrFlagsi�qKeyAttrDataFloatf

rKeyAttrRefCounti�sAnimationCurveL��-SAnimCurveSkr	DefaultD�rKeyVerI��r%KeyTimel(e9��PM�>���G���r
KeyValueFloatf�o���o���o��sKeyAttrFlagsiSsKeyAttrDataFloatf

�sKeyAttrRefCountiuAnimationCurveL�E�-SAnimCurveS�s	DefaultD�sKeyVerI�4t%KeyTimel(e9��PM�>���G��gt
KeyValueFloatfg#@g#@g#@�tKeyAttrFlagsi�tKeyAttrDataFloatf

�tKeyAttrRefCounti�{AnimationCurveL8�-SAnimCurveS[u	DefaultD�	�ϿsuKeyVerI�,y�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��{�
KeyValueFloatfs�N�|��$V��=ɿ2���<\�d��^���@O��v��Rz�kT��7$�S"(��0&��q��8�<������	�)��ԯ���K�|���˾\k���応�@�'x������������0&���/�&�4��>6�e05���2�O./���+�w)�P�(�Q�(�O�(�P�(�P�(�P�(�P�(�O�(�P�(�P�(�P�(�P�(�P�(�P�(��Y(��'�PZ'��&��z&�8C&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��������
���Q(\���ۿ�)!�_�|�O�|�N�|�l�|�l�|�l�|�k�|�l�|�l�|�=�|�]��Q�?�Bȭ�����P�N���P����������0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&�I{KeyAttrFlagsi�{KeyAttrDataFloatf

�{KeyAttrRefCountisu�AnimationCurveL���-SAnimCurveS|	DefaultDe�$@+|KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��ׁ�
KeyValueFloatfs�(�$A��A���@�̸@П�@r$@�Ȋ?�}� ���[��e#C�,�`���m�nZg�.�<�_wƿ,��>�7@���@Y<�@��A(�$AOA��	A6��@9��@��@�1�=�տ5�;�lZg���o�E�_��Y>��`9���-�c<T?-�0?-�0?.�0?-�0?.�0?-�0?-�0?-�0?,�0?,�0?,�0?,�0?-�0?-�0?SA�>9'���������e�0��X�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�fc@�;D����?���@�p�@rLA)�$A(�$A(�$A'�$A'�$A'�$A'�$A'�$A'�$A'�$A��A��A�F�@Y��@cl�@�$@��@?*�l��_�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg�nZg��KeyAttrFlagsi;�KeyAttrDataFloatf

h�KeyAttrRefCountis-�AnimationCurveL���-SAnimCurveS˂	DefaultD�9I5��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��I�������ʗ����m����el���U��@��_,��Y��
�ݳ����5�������)�n�K���p�T����^�������I��9���$���\���υ��}k��J���,����5�����������7�������"]�����
��O��O��O��O��O��O��O��O��O��O��O��O��O��O�f$����:�fB�v�����5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��5��Ү�*g-���V������������I���I���I���I���I���I���I���I���I���I���V�����攚�F���B���%kl��pP�|�4��>�5��5��5��5��5��5��5��5��5��5��5��5����KeyAttrFlagsi�KeyAttrDataFloatf

 �KeyAttrRefCountis��AnimationCurveL�i�-SAnimCurveS��	DefaultD��KeyVerI�ԉ%KeyTimel(e9��PM�>���G���
KeyValueFloatfS��?S��?S��?1�KeyAttrFlagsik�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLH(�-SAnimCurveS��	DefaultD�KeyVerI�L�%KeyTimel(e9��PM�>���G���
KeyValueFloatf�l��l��l���KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLe�-SAnimCurveSs�	DefaultD��KeyVerI�Č%KeyTimel(e9��PM�>���G����
KeyValueFloatfSX@SX@SX@!�KeyAttrFlagsi[�KeyAttrDataFloatf

��KeyAttrRefCountiM�AnimationCurveL�"�-SAnimCurveS�	DefaultD`8��?�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?���?�Ƀ?>�?�/�?�t|?A�x?:�u?^�s?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?�Fs?Dpt?��w?�{?x�?A��?鱄?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?ٓKeyAttrFlagsi�KeyAttrDataFloatf

@�KeyAttrRefCountis�AnimationCurveLȺ�-SAnimCurveS��	DefaultD�U,@��KeyVerI�t��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��g��
KeyValueFloatfs���bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bAW�dAǏiA��pA�gyA�8�A
��A�"�Aܢ�A���A���A���A���A���A���A���A���A���A���A���A���A���A���A��A
-�A ܁AO!xA�|mAɳeA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��KeyAttrFlagsi˚KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveLh��-SAnimCurveS[�	DefaultD���?s�KeyVerI�,��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs��U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�\�>�O�>R�>�6?o
?H&?\5?�R??f0C?n0C?e0C?g0C?c0C?g0C?g0C?g0C?h0C?g0C?f0C?f0C?g0C?g0C?<�<?z-?�?
�?3J�>���>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>I�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis5�AnimationCurveLHJ�-SAnimCurveS�	DefaultD+�KeyVerI�d�%KeyTimel(e9��PM�>���G����
KeyValueFloatf��"@��"@��"@��KeyAttrFlagsi��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveL�&�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimelY�(e9�����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���q
KeyValueFloatfYd��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���C���C���C���C���C���C���C���C�A�KeyAttrFlagsi{�KeyAttrDataFloatf

��KeyAttrRefCountiY-�AnimationCurveL���-SAnimCurveS�	DefaultD#�KeyVerI�\�%KeyTimel(e9��PM�>���G����
KeyValueFloatf�T@�T@�T@��KeyAttrFlagsi�KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL�9�-SAnimCurveS��	DefaultD Q+@��KeyVerI�4��KeyTimelox(e9��p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfo���XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XAsaXA�XA��WA~�VA+vVAVA|�UAB�UA��UA��UA��UA��UA��UA��UA��UA��UA��UA��UA��UA��UA��UA��UA��UAF�UA�dVA�WA	�WAMXA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XAA�KeyAttrFlagsi{�KeyAttrDataFloatf

��KeyAttrRefCountio=�AnimationCurveL���-SAnimCurveS�	DefaultD��h0@#�KeyVerI����KeyTimelox(e9��p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfo�tE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�A�$�Aۃ�A셠AZM�A���A#��Aů�Am�A���A���A���A���A���A���A���A���A���A���A���A���A���A���A��A���A|��A˩�A���AB��AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AsE�ArE�ArE�ArE�ArE�ArE�ArE�ArE�ArE�ArE�ArE�ArE�ArE�AsE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AɶKeyAttrFlagsi�KeyAttrDataFloatf

0�KeyAttrRefCountioŽAnimationCurveLf�-SAnimCurveS��	DefaultD��@��KeyVerI�D��KeyTimelox(e9��p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��'��
KeyValueFloatfo�_}@_}@_}@_}@^}@]}@[}@c}@_}@]}@_}@^}@_}@^}@_}@_}@_}@_}@_}@_}@a}@_}@^}@a}@^}@_}@Z}@��	@2�@|>@��%@��3@�B@s\P@&`Z@Y>^@Y>^@W>^@Y>^@W>^@X>^@W>^@Z>^@Y>^@Y>^@Y>^@Y>^@X>^@Y>^@X@��H@U�5@�#@��@�@`}@`}@_}@b}@c}@c}@`}@`}@b}@_}@_}@_}@_}@^}@^}@^}@_}@^}@^}@_}@_}@^}@_}@_}@_}@a}@`}@a}@d}@d}@d}@d}@d}@d}@d}@d}@d}@a}@`}@a}@c}@a}@^}@_}@^}@^}@_}@_}@^}@^}@_}@^}@^}@^}@^}@^}@Q�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountio=�AnimationCurveL���-SAnimCurveS�	DefaultD3�KeyVerI�l�%KeyTimel(e9��PM�>���G����
KeyValueFloatfBp��Bp��Bp��ɾKeyAttrFlagsi�KeyAttrDataFloatf

0�KeyAttrRefCounti��AnimationCurveL�m�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel(e9��PM�>���G���
KeyValueFloatf���������A�KeyAttrFlagsi{�KeyAttrDataFloatf

��KeyAttrRefCountim�AnimationCurveLh�-SAnimCurveS�	DefaultD#�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��)����)����@*�*��)���)�)��)���)�)�����((�'��(�(��(�((�(�����()�������(�(����(�()����))�)))���)��)�������(���(�)�)��@)�@�))����)�)�))))�)��KeyAttrFlagsi3�KeyAttrDataFloatf

`�KeyAttrRefCountis%�AnimationCurveLhB�-SAnimCurveS��	DefaultD`f�;���KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�3���b���,2e�p��K�*�T��ȃ�������“I,��zA��GE�"�>—g3£�����������~��o���m6�rb��M6��?��h��d���"C(��\E�

F��b>�,4�`�-�+�,�m�,�p�,¶�¦���5����#�p�C���i�}���V���2��檼�89��10���������ۢ�M���0��pf�;�L�n	4‡b����N��k���D�A��O�œ��£��º���2c���������Ʃ��}&��s
����»��«��°�»+���;��	��«�|��
��Eۋ�����O�»�����}��a�G]E�ӕ5ª+7�c+�B��c������@`�=X�G�Y�+^������f+��!žT.·X;¸L:�N!5�
4.�v�ć	�S���0������>��o\���6��oC�b�=�	�I���KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveL���-SAnimCurveS{�	DefaultDY@#���KeyVerI�L��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��?��
KeyValueFloatfs���{���
�͔"�Pe�@�����v�~�W�&uJ�$�W�
�a�pGs�mq��>h���M�~�F�o^��F
����������������i������`�F�e�[��o	�iq'��j�?�O�@��A�M$A���@���@���@[�@oR��.���
�@30Aj�ZA�cA��2A�X�@w%@됏�]�%�����0�<�b�bc���֟��3���l���������b}��r������t����0L�A���<!?�[�@�4#A�k�@@�0��Ĩ����ݘ���N�{;�{�������q���!*y�{C���H@o�A!ofA�-qA::6Aw�b@��P��p5��L�����e����T��R��<&��/`��������f��8c��+b������a��-���i`v��E��u,���!�f�&�ݟ\���8��d��h��{�2�	��94��7�n�(�i�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL���-SAnimCurveS3�	DefaultD��5@K�KeyVerI���KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�-��@غ���n$�����˱��å����c�]�@!��@`@��&Ai��Ak�A�ǕA�t�A�bAr�A�M{@��X�+�J�v������)���%�����G__� ��@AA(|[AB��AXr�A�S�Ao�2A�O_@����~��d^�@�O�@($Ax� AAbCA9�FA��5Av�A�bp@���@y׿����nb�����t|�����ˡ�a£��V��\����������d��*��k@XE*A%�{AĶ�Aa�A��wA�-A땿@��_?�[��������������]�F�"���V�e�k7+��9����X?!+1AS�AL@�A��A�WA��@->�����S�S�Qة�i����������_����N�����	A,�AM�AнA��A�~�A�ǍAΜqAgGA�T�@d�o����#n�=���ע�����!�KeyAttrFlagsi[�KeyAttrDataFloatf

��KeyAttrRefCountis
�AnimationCurveLH��-SAnimCurveS��	DefaultD�KeyVerI�<�%KeyTimel(e9��PM�>���G��o�
KeyValueFloatf��������KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�&�-SAnimCurveSc�	DefaultD{�KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf�#��#��#��KeyAttrFlagsiK�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI�,�%KeyTimel(e9��PM�>���G��_�
KeyValueFloatf�-���-���-����KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�B�-SAnimCurveSS�	DefaultDV�I@k�KeyVerI�$��KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G����
KeyValueFloatfs���MB?0BB��B2Q�A�/�A���A�7B��eBS��Bj��B��iB��>Bk�B"tB��B��!B�<B��JBI;B��B���A#QBe)*BC�YB��|BûB;
kB�gIB�03B�+B�3B��KB,�iB>��B�$cB}�A:<A
��A�I�Aw)B�-CB�ӁBm�B��B���B_��B ��BK1�B�%�B���BO��B)��B�H�B�4�B�MaBL�8B�VB�f�A���A��!B��iB�͒B���B�ηBS>�B5L�BD�B���Bs��B÷�B	��B�j�B���B��B
�bB/YBV�cB@lB�B���Bh٘Bʷ�B�(B,�SB3�-Bv�B��,B�RB��^B� OB��-B��A��AQ�qA��Aޤ�A���A�kB�,B�	8B��:B�&8B�:B��;B�3B<�)B�,'B�J B��'B1�B�l�AT��Aĩ�A���A��AA�KeyAttrFlagsi{�KeyAttrDataFloatf

��KeyAttrRefCountism�AnimationCurveL8��-SAnimCurveS�	DefaultD����?#�KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs�nV�?�sS@Ⱦ�@p&As�@1���]��.^Z��Ej�O���N���_�"�{����!����_y�!�=��j���:?��&@:�@�\@�O�����6��-�`�b������\�0�7�?����5����|����K@�ƴ@l+@A�PA��m@�3�?�\�����斗�C?�D,�>�?�)�?��	@�ou@#��@s�z@1�@dk���t��U�G�"p��qr��wv���QF�1rA�t��?���@W92A��`A�${A�	yA�^A4BAF�)AŶ'Ap.A�y2A��HA��hA}�At/�A'��A�SA�nn@��o>��?;��?���>f����$�
	��n��v3��q��=����K��g�n���!������)7��� !�P�(��+�ͻX�
i�m�N���E�"�<�+�$����h��� X���%���|��O�1�
&�?��t@�P5�S{Q���KeyAttrFlagsi3�KeyAttrDataFloatf

`�KeyAttrRefCountis%�AnimationCurveL���-SAnimCurveS��	DefaultD 8'�?��KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs��9�>Jm�?�$%@�5t@�D�R�M���m���2�_F:�dBL��0&���)��ס@��&@bJ��>�[S��)7�Gk�Ȩ?�cV@�w��b�V�~O��N����<��+a��u����;����������iö��|��J)���n@ύ�@�w�?�j�?�g��h��B���-�M	�>?�� 3������k���#��UU*�eYB���x�q#���M��ѣ������E�����B��ⱅ��k���i���ڌ��'v���L�����ϸ;
:�@�v�@@��@7�@�A8��@��@���@E&�@�F�@��)@{���T<f���/���?��u@��.�����4��5�(��<J6�z(C��cE�| ��D��˂�؆*���K��l^��>u������ѕ��y�J0,��'���|�k5s?m7�>$�6������������?��E�����
=����^ d���KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountis��AnimationCurveL�g�-SAnimCurveS{�	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf���������)�KeyAttrFlagsic�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�Y�-SAnimCurveS��	DefaultD�KeyVerI�D�%KeyTimel(e9��PM�>���G��w�
KeyValueFloatf*C)�*C)�*C)¡�KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLhN�-SAnimCurveSk�	DefaultD��KeyVerI���%KeyTimel(e9��PM�>���G����
KeyValueFloatf��0���0���0��KeyAttrFlagsiS�KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL��-SAnimCurveS��	DefaultD C6:���KeyVerI����KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G�����
KeyValueFloatfs����J���(@z���A@���Ak�(A�@�Ƕ������ �r�B\�������A��@��:�6��@���|0��:����,�6tA*$>AJ-�@�򾿢-�������@�AA" �A�e�A?>�@o{�|٣�������=@]��A�*LA+/A?�@a	�?^�"�5����E����<x�����EC��;�h�u]��ɿ1&�>�
0@�y@n3�@5\A|�gA�x�A����1������n���~K���[��]���@k��>����������������Z�����J��H'�5RAeԷA��Aq�jA�o@�>�TT��y�o�w��D	@o$�@A{l\��)�l-��+�'E-��{A6|BS�Ba��A&��A��A6�%@���LY~�A|��XX�?l|@@�AxyA=��Z+��r��,���P{Z�8��?N|A�A)y�A��KeyAttrFlagsi�KeyAttrDataFloatf

8�KeyAttrRefCountis�	AnimationCurveLx��-SAnimCurveS��	DefaultD�%�@��KeyVerI�l	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��_	�
KeyValueFloatfs�.q>@�j�@N:�@P�
?>f�>�{@�p1@v"@�5?.#� ?4��@���@��@�m�@���@�M@V̉@��@��@��7@t3�h��
<�?g\@zY�~	����@�$@'0@�YU@�RX?��"?i�?"�@�B�c�B��2@�}�@�UAn�(A&�A)��@�>@�,@3�?�E?h�#@�@�d@n>@k�c@��u@�sf@�,�@a[v@:�C@��@���@僫��$�������Ӎ�^m��I���6�N5�y�@�}�@˥�@A�\<A�9FA�8A<�AL�&@�KU?��?�az?���@j
�@?�#@�G�@A�GOA��#A�[�@�ˆ@2B�@ݨ�@��e@l��.���ǿT�п�ɤ���x��T���\��,=l>F��@,��@2��@���@�I�@R!	A?A��@8
�@e��@���@K��@��@<͙@`E[@�	KeyAttrFlagsi�	KeyAttrDataFloatf

�	KeyAttrRefCountis�	AnimationCurveL��-SAnimCurveSS		DefaultD���k	KeyVerI�$
	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��	�
KeyValueFloatfs��.��d�@�RRA�D�A>J�A���@�t�?R;n��-��G�����K�9?x��@*VHA��@����d���@�YYA�,�A��A���@�.�?Sп�A��3�?�g|@}�;@��@�$f?\!�{��\�;@3~A`�A�>�A�֬AKwA�IA�5�@��@��@�<@��>0
y��2�>O��?��u@,�@��@a�������V;��Ro�L����οXz�� ����
��9���L����g|�ԺO��j/�����(z�f�?��@^�XA���A���A�|�A8�
Bz�B⪭A��N@Ӻ������>���2,[�`J@�bz��X
�����z��2�:?;'�@yymA0/�A>C�AR#�A��*AJG�@�l����L�PZ��67��"�u���B@Ԃ
A9�AO�/A��A�A�@*6���c�eı�šA?�qA�'�A�|]A ��@ϿA	KeyAttrFlagsi{	KeyAttrDataFloatf

�	KeyAttrRefCountis-	AnimationCurveLh2�-SAnimCurveS
		DefaultD#
	KeyVerI�\
	%KeyTimel(e9��PM�>���G���
	
KeyValueFloatfΪ?�Ϊ?�Ϊ?��
	KeyAttrFlagsi�
	KeyAttrDataFloatf

 	KeyAttrRefCounti�	AnimationCurveL���-SAnimCurveS�		DefaultD�	KeyVerI��	%KeyTimel(e9��PM�>���G��	
KeyValueFloatf�"���"���"��1	KeyAttrFlagsik	KeyAttrDataFloatf

�	KeyAttrRefCounti	AnimationCurveLȊ�-SAnimCurveS�		DefaultD	KeyVerI�L	%KeyTimel(e9��PM�>���G��	
KeyValueFloatf�hA�hA�hA�	KeyAttrFlagsi�	KeyAttrDataFloatf

	KeyAttrRefCounti�	AnimationCurveL���-SAnimCurveSs		DefaultD�.��?�	KeyVerI�D	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��7	�
KeyValueFloatfs�u��?�w�@^@I0?��	�����؉��[(����Y����񱿉:1�`���V����s��E']@@/�7���:��H�a@����A?� �@�CP?K��������
��5�������5�6�"����)/77:
;7�:7��?p޷@��Ab�@��`@���U�0Ts�h�t>�8��u�kfC�ɽ�%uݿ�ÿS���Uz�V."��G:�,���44��%�_�k������7�B%@�s@*�p?�9�����h����dW���ο;�Ŀ�;x��*^��
��Ƨտu�*�
��B'��~�?��@Ev���G��fο���Aw��T@UA�@J�@b�`@b�`@b�`@���@a�������,2��_p��Y[�yk4�AL�4���	�A��s������A��\�����6��1>�Ҩ_?Ҩ_?�?-��������3���h�a	KeyAttrFlagsi�	KeyAttrDataFloatf

�	KeyAttrRefCountis�	AnimationCurveL(j�-SAnimCurveS+		DefaultD�T��C	KeyVerI��	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���	�
KeyValueFloatfs��Jd�r�]��N��H_���k��Le�����(��(������k��Bl��EZ��3<���F��c��̾�1������s��g��&*����=���L�����8����ݮ�)�������p��$I��8���8���8���Z�����2�4y&�*�	�x��������c���.��M���Ε����Љ������L��}�R�И?��Am�>hX�˻0�|�I��9�m�@��J���a���f�����1��ɼ��H��&�<�Xk����oҿ�꿀�
�j��X��B�)�bS��.��{0e��Z{�d}���߇��ƅ��ʄ�f���:�2���.����������������Z����q��|����N��jZ��R���E�[�R�p�F�������wY
��	�ȹпŔҿ�?!��?py�(K�(K��#��Q��� f��T�^�R��	KeyAttrFlagsiS	KeyAttrDataFloatf

�	KeyAttrRefCountisE%	AnimationCurveL($�-SAnimCurveS�		DefaultD@�p�?�	KeyVerI��"	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���$	�
KeyValueFloatfs���>L?a�0?��?tމ��׹���A<G?���?	q�?��?��?���?�	@ϟ�?����}<?o�?k^�?�V�?��@�I�?FN����?{o�?�}?<�?��?3�@��K@�9!@;?��
6�Z6\6���>�߈��aӿh�����c?Xs�?�˘?��X?�2�?���?1m�?��?���?�$|?�ba?��@?�+�>Y�V>]�=�������(kB�j� ?:�F�%j>�s?3+'?�	D?3?���=�?��.5�E�s��L��b�f�葱�,F�<@��>���?�ڋ?��k��&ٽ,��?���?u��?Qo�?U�?�d�?�*�>�'>7�>~ƴ=~ƴ=~ƴ=�Յ>��?�V�>���Dd��8�>/�0?���?Rb�?�_�?vup?]?�m�?'��?��?D�Z?��?+�V?<�?<�?��^?�*�>���>k��>���?�$	KeyAttrFlagsi%	KeyAttrDataFloatf

8%	KeyAttrRefCountis�&	AnimationCurveLH��-SAnimCurveS�%		DefaultD�%	KeyVerI��%	%KeyTimel(e9��PM�>���G��&	
KeyValueFloatf;p�@;p�@;p�@I&	KeyAttrFlagsi�&	KeyAttrDataFloatf

�&	KeyAttrRefCounti5(	AnimationCurveL�H�-SAnimCurveS'		DefaultD+'	KeyVerI�d'	%KeyTimel(e9��PM�>���G���'	
KeyValueFloatf����������'	KeyAttrFlagsi�'	KeyAttrDataFloatf

((	KeyAttrRefCounti�.	AnimationCurveL�L�-SAnimCurveS�(		DefaultD�(	KeyVerI�\,	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��O.	�
KeyValueFloatfs��*�)�)�)�)�)������*���)�����)�)������(�����@(�')�(���@((�(��()����(�� )�(`)����)�(�)�))��)��)�)@����)�����@)����)���*�)�)��))�)�)��)�)��)y.	KeyAttrFlagsi�.	KeyAttrDataFloatf

�.	KeyAttrRefCountis�5	AnimationCurveL���-SAnimCurveSC/		DefaultD`��=�[/	KeyVerI�3	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��5	�
KeyValueFloatfs�#.��-k�6�”��p��2��9���r���&	��'�m�������?�d@��
@9�އ��u��W���\�–��і�?N������ɷ��'��MP���3�/Dj��������W���� �nv�r���9&�����^�H�G�`��b��Qz�X�J�ݺ{����Fך�-Q�����V����«���Gj�œ������ri�����:��Š�š����ݐ�*A��J[��YL�·��)u��&��7r����bu���������t"�‘���XN��fD��|�������VM��F��)��
	�צQ��,��'!“Z�¨��O��t����*��Rº�)�Hc6�2M9��y/�$!�b��I�����7����W�������˕��>��-�������5�S�8#��P��%�
�:oZ��'��(����!�r�**F��%�15	KeyAttrFlagsik5	KeyAttrDataFloatf

�5	KeyAttrRefCountis]<	AnimationCurveL���-SAnimCurveS�5		DefaultDH�?6	KeyVerI��9	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���;	�
KeyValueFloatfs��@�?{��d4��#
�qp�u���� ���
�(,��6F�>dʼ?�p^@�.AF��@��u@�i�@c��@�?�@�-�@x��@!C@�7�������b�?)��?H�?�<!@�sd@M��@�3�@�@���}QG��+��!�5�Ù��V���w��l�@B@{2�?lŤ@D}�@�?�@W�@^r*@M��>\�@a�AN�%A�VA��~A+�AW��A���AYY�AO�A��A-��AX��A$�A�>A{��@6٭@M�'@,�?��@1A*�IA{
ZAiA�hA�]A8�RAg�LA�C,AIA���@�#�@���?������G?=��>� @�j�@�xAZ#AB&"Al��@�@�@�½��~����|%���T�N�E�ٻ�vH����l��ܗ�8��V+򿡃p�D����m@�0Ap�`Af0A,��@v�A��@I4�@�3@�;	KeyAttrFlagsi#<	KeyAttrDataFloatf

P<	KeyAttrRefCountisC	AnimationCurveL(<�-SAnimCurveS�<		DefaultD�v@�<	KeyVerI��@	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��wB	�
KeyValueFloatfs�<��@�X�A�x�A�A�Q�A�#�A\�A%�#Ay�@����4<��%�����6������- &�ү��0�@�*hA�U�A�AB	�A��A��Aa>�=����I>��tٕ��b�YQ��ٯ�~Ao߶A�G�A#V�A!%gA0A�f�@���@�
#A��tA=xA�m0A��@?AH}�@_�X?���@T��@�WJA�/�A��Ah�Al�	Bs|Bp��A�E�A���A�}�A6��A��A};�A��Ad��AV�B|�B�BU"�A���A�ϞA/�fAXM�@	Ib�L-f�;�����������OM���q���A�A�~�{����G��Qk���U��p���G�T7�� ��@�fA�P�A�άA��A�I�A�=�Au]Ao�@�`>��z��r�5��9������]���z��'H������:�<��@zRAk/�A��A���A�f�A�ԻA�B	KeyAttrFlagsi�B	KeyAttrDataFloatf

C	KeyAttrRefCountis�D	AnimationCurveLXa�-SAnimCurveSkC		DefaultD�C	KeyVerI��C	%KeyTimel(e9��PM�>���G���C	
KeyValueFloatf��@��@��@D	KeyAttrFlagsiSD	KeyAttrDataFloatf

�D	KeyAttrRefCountiF	AnimationCurveL���-SAnimCurveS�D		DefaultD�D	KeyVerI�4E	%KeyTimel(e9��PM�>���G��gE	
KeyValueFloatf�#��#��#‘E	KeyAttrFlagsi�E	KeyAttrDataFloatf

�E	KeyAttrRefCounti}G	AnimationCurveLh�-SAnimCurveS[F		DefaultDsF	KeyVerI��F	%KeyTimel(e9��PM�>���G���F	
KeyValueFloatf�-���-���-��	G	KeyAttrFlagsiCG	KeyAttrDataFloatf

pG	KeyAttrRefCounti5N	AnimationCurveL��-SAnimCurveS�G		DefaultD��rT@�G	KeyVerI��K	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���M	�
KeyValueFloatfs����Bl�BgӐBj9sB.�?B�&B�p Bԟ/B�)4B-h9B�!B�B�	B�$B��UB@�Bg��B	&�BK��B�&fB3$Bo��A��AJ�BK�B��B �!B��NB�LuB}U�B�(�B�\�B�?uB�HB��LB}8B��A��A<AP�A_�B;S0BKDEBYEB_*GB�HB��KB�HB/L8BOO)Bm`Bt3B&�B��B�B#^B3�B��Bi�3B5GB��AB+-B1�"B��FB�,�B�a�Bs��BJV�Br@�B��B$}�Bќ�BT��B�I�BᓚB%��Bp9�BC��B�BR}TBk�(B��B�B�$B��BB�
zB�7�B�:�B�B7��BȨB���B��mB�BB�80B��8B�9GB��UB��XB2�>B�s	B�?�A�C�A֜�AR�B�D.B�SBm�sB�B�zB$�ZBP_0B�B|��A�4�A�M	KeyAttrFlagsi�M	KeyAttrDataFloatf

(N	KeyAttrRefCountis�T	AnimationCurveLx��-SAnimCurveS�N		DefaultD@��@�N	KeyVerI�\R	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��OT	�
KeyValueFloatfs�ⷵ@���@M;*A4<�A���A"N;A��YAv&hAkv7A�f&A
A1�#A��AyI�@�=A��2AWG#A8�A#WBA��yA��oA&�7A�A��@r��@գ�@�$�@8ɔ@��@-A�A�
A�4�@
�[?��s�n�X�қ�@~��A�~�A��A��2A_��A�ȭA,�A�{�A�P�A�x�A�qA�PA��RA�XA��QA��QA`<^AǜhAm�eAthZA-UA�`KA�IA�*DAHJ�@F��@��&A��*A��Apٮ@m/D@,r6@�*@@^4$@�gM@V5�@���@��@TP�@�A�@~�@#�A�lA�,:A�"�@@h�@T�G@���@�Av�@�<�@�Ou@�
�@Q'A�1>A�A �@6\�@�:�@���@$��@�&�@�5�@�B�@�}�@%��!����@��=A��SAk�EA�@A0LA
��A6�A�N�A�uAyT	KeyAttrFlagsi�T	KeyAttrDataFloatf

�T	KeyAttrRefCountis�[	AnimationCurveL���-SAnimCurveSCU		DefaultD���@[U	KeyVerI�Y	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��[	�
KeyValueFloatfs��ާ@W�!A�~�A>�A�2�@}�@5$_@~��@a�?h��&�s�H�?��?�#E��T�,֩@�FAmeA�tAؑ@A�Wf@H�?��.
����~����o���a�?!�/,��C��z^A��kA�9@��<�X���/t��� �*��@�֣@��?4�S����@��3A��@��z@g��?1�@�#ʿI9��W�s�I�.�������N���a,���L��f������ ��D��ٿ��F��������ȭ
A7�#Al�@9ޖ��}=�(��DDM��=C�� ���|���K�d���S�g���������?�z@���>�Į�g������̌��,2�c�4@���@��@6�A�:�@���?��c̿3�{�X��a����y���X���r�?�������k���������{�@��A��A�4A{4UA.�$A�p�@�2�@1[	KeyAttrFlagsik[	KeyAttrDataFloatf

�[	KeyAttrRefCountis]	AnimationCurveLH_�-SAnimCurveS�[		DefaultD\	KeyVerI�L\	%KeyTimel(e9��PM�>���G��\	
KeyValueFloatf��?��?��?�\	KeyAttrFlagsi�\	KeyAttrDataFloatf

]	KeyAttrRefCounti�^	AnimationCurveL���-SAnimCurveSs]		DefaultD�]	KeyVerI��]	%KeyTimel(e9��PM�>���G���]	
KeyValueFloatf*C)�*C)�*C)�!^	KeyAttrFlagsi[^	KeyAttrDataFloatf

�^	KeyAttrRefCounti
`	AnimationCurveL8��-SAnimCurveS�^		DefaultD_	KeyVerI�<_	%KeyTimel(e9��PM�>���G��o_	
KeyValueFloatf��0���0���0��_	KeyAttrFlagsi�_	KeyAttrDataFloatf

`	KeyAttrRefCounti�f	AnimationCurveLhQ�-SAnimCurveSc`		DefaultD@x@{`	KeyVerI�4d	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��'f	�
KeyValueFloatfs���@�5?�J�>�n�>(���h?��?@�w��E���}@���ګ��L*��f�@��A-QaA+A��8@w�h3��1*e�c	��&M?(/[���[�N$���d����	�KN@��#A�\A���@��e��������(�і������[AYDA�-!Ah�@ԃ?�s-�q���������������
�F*�����$����"��[�ª��h]?�V@"��@�ʵ@O��@�	�@���@"�?�ʰq�yv�
#��P��ڕ���Px�a`��a�aj�M4��\F�`�b��:�Rz
������p��R��@ꝖA�ZsA=j8A�`(A�3A�{A��(A �A�@��@[Ue@����ך���������Gl������+��s}��#z��i����"@T�<��~M���������(�{����hh�S�?J{�@��Al<A�v9AQf	KeyAttrFlagsi�f	KeyAttrDataFloatf

�f	KeyAttrRefCountis}m	AnimationCurveL�{�-SAnimCurveSg		DefaultD���@3g	KeyVerI��j	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���l	�
KeyValueFloatfs��M�@��8@x}P@t��@��@^r@�o@R��@DZ�@E��@f-�@%r�@���������@X�A@�1�@��@"��@c>�@��@
�]@���@��@�ѧ@��@���@�)3@`�@�2A.4t@�ه@���0�����V�,?�����o���0�x��@]jAqA/R�@�h�@�g
A�6Ad�@fQA*�A�:A71A�%*A<A'�!A"�A$�A"��@i�}@j)@�a@�k�@#^.@�|*A���A�@A�8AA*kA�
;A
�AH$A��A��"A�� AD4#A*F(A%(A8U#A�/A^LAێ=?0��@��=A��@<��@9��@�{�@yܭ@;��@��C@��@���@�f�@r��@�@���@4��@�A;A6�%A��
AA�5@*�8@�u��ؿ}^��<`"@�!�@8�*A�x"A��@|��@2��@Qa�@m;�@	m	KeyAttrFlagsiCm	KeyAttrDataFloatf

pm	KeyAttrRefCountis5t	AnimationCurveLX��-SAnimCurveS�m		DefaultD`�9 @�m	KeyVerI��q	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���s	�
KeyValueFloatfs�S�Aj9VAj�cA��7AR^A$�*A!%�@���
����Y�@~�+AaVA�>�>�j>��z � �8��c�@r^>A�=eA[�[AeKAM�Aј'�����Ih@Z"Aմ=A�K�P@��ĿF��@G�*A�b@{
��^�T�7�A��uA�KqA.�bAi%A�
As8Az0eAw^A��&A��gA��A��A�A�V�A���A���A
�A���Ah%�A��yA��iA�FBA��Ax�A㝡@��������~�T���:��������yw��-���Q���
���A��H-@&�U@A>�@$�0A
�A��Af@�A���A��A�L�?�m��@m�G�9���>��Gy���\��8���#0�Ύ�=��<?�F@z��@Y{���?��ç?��	A�:qA<}�A��
Ad����o��0��l���Xd�����=w��Ǎ�?��?T��"ϖ�����{���s	KeyAttrFlagsi�s	KeyAttrDataFloatf

(t	KeyAttrRefCountis�u	AnimationCurveL�?�-SAnimCurveS�t		DefaultD�t	KeyVerI��t	%KeyTimel(e9��PM�>���G��u	
KeyValueFloatfΪ??Ϊ??Ϊ??9u	KeyAttrFlagsisu	KeyAttrDataFloatf

�u	KeyAttrRefCounti%w	AnimationCurveL�@�-SAnimCurveSv		DefaultDv	KeyVerI�Tv	%KeyTimel(e9��PM�>���G���v	
KeyValueFloatf�"���"���"���v	KeyAttrFlagsi�v	KeyAttrDataFloatf

w	KeyAttrRefCounti�x	AnimationCurveL%�-SAnimCurveS{w		DefaultD�w	KeyVerI��w	%KeyTimel(e9��PM�>���G���w	
KeyValueFloatf��hA��hA��hA)x	KeyAttrFlagsicx	KeyAttrDataFloatf

�x	KeyAttrRefCountiU	AnimationCurveL8��-SAnimCurveS�x		DefaultD����y	KeyVerI��|	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G���~	�
KeyValueFloatfs�������?k�$�}�⧌�g"x��>��k���^��
��)x����>�����������&O��G���ٺ��c��7����G���9g�3Q�"�:��\:�>Jf@�'\�'��
̛��]z���9`��6{"�����A�������-��O���[��YW�p��뉿�"���ʓ�#c�����L����_��������������~���?��1���k���S��~�����6�������¤E�jI��8�A��#Z�r:��b?��6A���*�wl2���8�i�'��B��K^���0g@�s�@�s�@��`@�o����Ό!�7"�m�?~���7��Gg�V����h�u�X��S�F�D���B���)�(p�dy��-���Γ�7����i?��i?��i?��{��t�^{^�����R������CBz�܀C�(O�;=���
>��>��7�1�T����~	KeyAttrFlagsi	KeyAttrDataFloatf

H	KeyAttrRefCountis
�	AnimationCurveL���-SAnimCurveS�		DefaultD@�(��	KeyVerI�|�	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��o�	�
KeyValueFloatfs�rG���?
�D@I�}�d�ܿ�G��jȽ�Q'@��@P@Y�
@w�B�(��^��������,^��y����2��'���Ѕ��������?�?�?�?��?QF�?�e
@�=@�c��'�\¿O;�@�@@����@ݿ��~����<=Z��~@<�.QG�n��0��:��<�-�6��yX������~�2�F��n�!g��F�j(D��"�����^Ŀ��R=�0��qZj���P�R�v�[>��r@�t�?�)@V�G@�q�?��?>
@J�@h�c@͒�@#�@#�@���@`��@R��@�g�@W�?�,�>lE�@95A?����16?	.9?8�1>�C�>�
A?�\?׈�>��>�xX��ޞ>��?��@#�@#�@#�@�|>gy��F5���ۿ�'��0���9=�7�>��$�cc��t�gP?�ܯ?��;@�y�@��	KeyAttrFlagsiӅ	KeyAttrDataFloatf

�	KeyAttrRefCountisŌ	AnimationCurveLX��-SAnimCurveSc�		DefaultD P�ۿ{�	KeyVerI�4�	�KeyTimels�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��@�����D�W���P��8B����j��?�ƙ0�^"��<"~����ٚ(:�5�иl��x70� ��H��4���p�z�2>\�����h/����o��,L˞`�'�*ӂ����ޟX'Z:�����$��P��M��!h����+�H�`�𝲼��v�@�9t���ϣ���+�8�����G��?�0�Κ�������UR�(��Ѝ�	�x�e� �c���	'�p��x��Ԩ��q0�h5�������C�`����B���}W�X�ɲ�{����Pj�PxƬ���!��u�}�H�^٭�r"5���吮@p����lH��m0��8�����j�[���z��0h>���o��e�ʱ(�&��bL��x�޲ `�9��ޖ��p]Z��M��Zᨴh٤�Xh`���+��`U��Բs��Rv϶X�9+�P�������PM�>���G��'�	�
KeyValueFloatfs���ݾ���w���%A�l�Y��_�y�a�ǿ����)���4��M��:�6?}m���]�nb�f����ɉ��{�1���϶I�=~	��
k���h��=�.�>�N�?$��>]�~�!{�;����L��!��@�j�M�F:{�.߾�tվ"�-�Ct�D��~4
�pm�uQ����{!�[��[��0]�����Q���;V�,�I��P۾������
���Xj���C�w�޾���`�ſt�9�VJ9��B���L�[�D���-�C+4�BN1�*����_4?�%@��}@��}@2�h@��R@�
F@��K@+��@6
�@/S@��?Yc�=[3��>�e��<��F�OP��oG�m.�
t�`�l�����Sp��'�l�}id�}id�}id�<烾��%?��!�-�@?��h�W8O��O.�
욾�
�=��=H��)放J�9�V)��Q�	KeyAttrFlagsi��	KeyAttrDataFloatf

��	KeyAttrRefCountis��	#MotionBuilder_SystemL@	X;SKTimeWarpManagerS�	Properties70_�	/PSMoBuTypeNameSKStringSSSBox��	/PSMoBuSubTypeNameSKStringSSS�	BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager_�	.PSMoBuAttrBlindDataSBlobSSIR�	
BinaryDataRp֎	2PSMoBuRelationBlindDataSBlobSSIɎ	
BinaryDataRpǓ	/MotionBuilder_GenericL��W;SFaceTime HD Camera (Display)S��	Properties70��	1PSMoBuTypeNameSKStringSSSVideoڏ	3PSMoBuSubTypeNameSKStringSSSLive=�	UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Video�	�PS
RecordPathScharptrSSSzC:\Users\bOb\Documents/_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1-FaceTime HD Camera (Display)-VideoRecording.avi �	#PSOnlineSboolSSIW�	)PSResolutionFRSenumSSI��	)PSRecordToFileSboolSSIđ	(PSRecordAudioSboolSSI��	'PS
CompressorSenumSSI6�	.PSMoBuAttrBlindDataSBlobSSI�)�	�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	0MotionBuilder_GenericL�qW;SFaceTime HD Camera (Built-in)S��	Properties70q�	1PSMoBuTypeNameSKStringSSSVideo��	3PSMoBuSubTypeNameSKStringSSSLive�	VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Videoɕ	�PS
RecordPathScharptrSSS{C:\Users\bOb\Documents/_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1-FaceTime HD Camera (Built-in)-VideoRecording.avi��	#PSOnlineSboolSSI1�	)PSResolutionFRSenumSSIh�	)PSRecordToFileSboolSSI��	(PSRecordAudioSboolSSIӖ	'PS
CompressorSenumSSI�	.PSMoBuAttrBlindDataSBlobSSI��	�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��	2PSMoBuRelationBlindDataSBlobSSIz�	
BinaryDataRp&�	!MotionBuilder_GenericL��W;SVideo Output 1S�	Properties70<�	1PSMoBuTypeNameSKStringSSSVideo�	5PSMoBuSubTypeNameSKStringSSSOutputԙ	GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video�	%PSDrawModeSenumSSI��	.PSMoBuAttrBlindDataSBlobSSI)��	.
BinaryDataR)p	UseMipMapI�	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	!MotionBuilder_SystemLx�W;SKVideoRendererS�	Properties70��	2PSMoBuTypeNameSKStringSSSObject�	=PSMoBuSubTypeNameSKStringSSSKVideoRendererZ�	@PSMoBuObjectFullNameSKStringSSSKVideoRendererg�	.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ȡW;SKSerialManagerSo�	Properties70��	:PSMoBuTypeNameSKStringSSSKSerialManagerؠ	/PSMoBuSubTypeNameSKStringSSS&�	@PSMoBuObjectFullNameSKStringSSSKSerialManager�	.PSMoBuAttrBlindDataSBlobSSI`ޢ	e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCIb�	2PSMoBuRelationBlindDataSBlobSSIU�	
BinaryDataRp�	#MotionBuilder_SystemL0sW;SKCharacterHelperSڦ	Properties70�	0PSMoBuTypeNameSKStringSSSTool]�	8PSMoBuSubTypeNameSKStringSSS	Character��	BPSMoBuObjectFullNameSKStringSSSKCharacterHelper �	.PSMoBuAttrBlindDataSBlobSSI�	
BinaryDataRpͦ	2PSMoBuRelationBlindDataSBlobSSID��	I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEIu�	MotionBuilder_SystemL��W;SKNLEManagerSh�	Properties70��	7PSMoBuTypeNameSKStringSSSKNLEManager��	/PSMoBuSubTypeNameSKStringSSS�	=PSMoBuObjectFullNameSKStringSSSKNLEManager�	.PSMoBuAttrBlindDataSBlobSSIsת	x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5[�	2PSMoBuRelationBlindDataSBlobSSIN�	
BinaryDataRpЭ	MotionBuilder_SystemL8QX;SConstraintsSí	Properties70
�	2PSMoBuTypeNameSKStringSSSFolderR�	7PSMoBuSubTypeNameSKStringSSSCategory��	EPSMoBuObjectFullNameSKStringSSSConstraintsFolder?�	.PSMoBuAttrBlindDataSBlobSSI52�	:
BinaryDataR5p(
FolderTypeSConstraints��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp�	 MotionBuilder_SystemL �W;S
KAudioManagerS��	Properties70q�	9PSMoBuTypeNameSKStringSSS
KAudioManager��	/PSMoBuSubTypeNameSKStringSSS��	?PSMoBuObjectFullNameSKStringSSS
KAudioManagert�	.PSMoBuAttrBlindDataSBlobSSIg�	
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޲	
BinaryDataRph�	(MotionBuilder_SystemL(�W;SKMotionTriggerManagerS[�	Properties70��	APSMoBuTypeNameSKStringSSSKMotionTriggerManager�	/PSMoBuSubTypeNameSKStringSSSH�	GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager״	.PSMoBuAttrBlindDataSBlobSSI*ʴ	/
BinaryDataR*p
KEEPACTIVEIN�	2PSMoBuRelationBlindDataSBlobSSIA�	
BinaryDataRp��	MotionBuilder_SystemL�JX;S
Story rootS��	Properties70�	5PSMoBuTypeNameSKStringSSS	TimelineX?�	/PSMoBuSubTypeNameSKStringSSS��	FPSMoBuObjectFullNameSKStringSSSStory rootTimelineö	"PSMutedSboolSSI��	#PSSoloedSboolSSI0�	.PSRecordClipPathScharptrSSS^�	 PSTracksSobjectSS��	#PS	TimelinesSobjectSSϷ	2PSQuaternionInterpolateSboolSSI'�	JPSRotationOffsetSColorRGBSColorSDDD~�	IPS
RotationPivotSColorRGBSColorSDDDո	IPS
ScalingOffsetSColorRGBSColorSDDD+�	HPSScalingPivotSColorRGBSColorSDDDg�	.PSTranslationActiveSboolSSI��	JPSTranslationMinSColorRGBSColorSDDD�	JPSTranslationMaxSColorRGBSColorSDDDQ�	,PSTranslationMinXSboolSSI��	,PSTranslationMinYSboolSSIź	,PSTranslationMinZSboolSSI��	,PSTranslationMaxXSboolSSI9�	,PSTranslationMaxYSboolSSIs�	,PSTranslationMaxZSboolSSI��	*PS
RotationOrderSenumSSI�	6PSRotationSpaceForLimitOnlySboolSSI8�	;PSRotationStiffnessXSdoubleSNumberSD��	;PSRotationStiffnessYSdoubleSNumberSDʼ	;PSRotationStiffnessZSdoubleSNumberSD�	0PSAxisLenSdoubleSNumberSD$@]�	GPSPreRotationSColorRGBSColorSDDD��	HPSPostRotationSColorRGBSColorSDDD�	+PSRotationActiveSboolSSIA�	GPSRotationMinSColorRGBSColorSDDD��	GPSRotationMaxSColorRGBSColorSDDD;	)PSRotationMinXSboolSSI�	)PSRotationMinYSboolSSI;�	)PSRotationMinZSboolSSIr�	)PSRotationMaxXSboolSSI��	)PSRotationMaxYSboolSSI�	)PSRotationMaxZSboolSSI�	(PSInheritTypeSenumSSIN�	*PS
ScalingActiveSboolSSI��	FPS
ScalingMinSColorRGBSColorSDDD��	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?,�	(PSScalingMinXSboolSSIb�	(PSScalingMinYSboolSSI��	(PSScalingMinZSboolSSI��	(PSScalingMaxXSboolSSI�	(PSScalingMaxYSboolSSI:�	(PSScalingMaxZSboolSSI��	PPSGeometricTranslationSColorRGBSColorSDDD��	MPSGeometricRotationSColorRGBSColorSDDDM�	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?��	6PS
MinDampRangeXSdoubleSNumberSD��	6PS
MinDampRangeYSdoubleSNumberSD�	6PS
MinDampRangeZSdoubleSNumberSD]�	6PS
MaxDampRangeXSdoubleSNumberSD��	6PS
MaxDampRangeYSdoubleSNumberSD��	6PS
MaxDampRangeZSdoubleSNumberSD,�	9PSMinDampStrengthXSdoubleSNumberSDs�	9PSMinDampStrengthYSdoubleSNumberSD��	9PSMinDampStrengthZSdoubleSNumberSD�	9PSMaxDampStrengthXSdoubleSNumberSDH�	9PSMaxDampStrengthYSdoubleSNumberSD��	9PSMaxDampStrengthZSdoubleSNumberSD��	7PSPreferedAngleXSdoubleSNumberSD�	7PSPreferedAngleYSdoubleSNumberSD^�	7PSPreferedAngleZSdoubleSNumberSD��	!PSShowSboolSSI��	8PSNegativePercentShapeSupportSboolSSI,�	KPSLcl TranslationSColorRGBSColorSDDD��	HPSLcl RotationSColorRGBSColorSDDD��	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�	3PS
VisibilitySdoubleSNumberSD�?S�	.PSMoBuAttrBlindDataSBlobSSI�F�	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp^�	MotionBuilder_SystemL؈W;S	Edit rootSQ�	Properties70}�	5PSMoBuTypeNameSKStringSSS	TimelineX��	/PSMoBuSubTypeNameSKStringSSS
�	EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline=�	"PSMutedSboolSSIn�	#PSSoloedSboolSSI��	.PSRecordClipPathScharptrSSS��	 PSTracksSobjectSS	�	#PS	TimelinesSobjectSSI�	2PSQuaternionInterpolateSboolSSI��	JPSRotationOffsetSColorRGBSColorSDDD��	IPS
RotationPivotSColorRGBSColorSDDDO�	IPS
ScalingOffsetSColorRGBSColorSDDD��	HPSScalingPivotSColorRGBSColorSDDD��	.PSTranslationActiveSboolSSI9�	JPSTranslationMinSColorRGBSColorSDDD��	JPSTranslationMaxSColorRGBSColorSDDD��	,PSTranslationMinXSboolSSI�	,PSTranslationMinYSboolSSI?�	,PSTranslationMinZSboolSSIy�	,PSTranslationMaxXSboolSSI��	,PSTranslationMaxYSboolSSI��	,PSTranslationMaxZSboolSSI%�	*PS
RotationOrderSenumSSIi�	6PSRotationSpaceForLimitOnlySboolSSI��	;PSRotationStiffnessXSdoubleSNumberSD��	;PSRotationStiffnessYSdoubleSNumberSDD�	;PSRotationStiffnessZSdoubleSNumberSD��	0PSAxisLenSdoubleSNumberSD$@��	GPSPreRotationSColorRGBSColorSDDD-�	HPSPostRotationSColorRGBSColorSDDDf�	+PSRotationActiveSboolSSI��	GPSRotationMinSColorRGBSColorSDDD�	GPSRotationMaxSColorRGBSColorSDDDG�	)PSRotationMinXSboolSSI~�	)PSRotationMinYSboolSSI��	)PSRotationMinZSboolSSI��	)PSRotationMaxXSboolSSI#�	)PSRotationMaxYSboolSSIZ�	)PSRotationMaxZSboolSSI��	(PSInheritTypeSenumSSI��	*PS
ScalingActiveSboolSSI�	FPS
ScalingMinSColorRGBSColorSDDDp�	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?��	(PSScalingMinXSboolSSI��	(PSScalingMinYSboolSSI�	(PSScalingMinZSboolSSIH�	(PSScalingMaxXSboolSSI~�	(PSScalingMaxYSboolSSI��	(PSScalingMaxZSboolSSI�	PPSGeometricTranslationSColorRGBSColorSDDDm�	MPSGeometricRotationSColorRGBSColorSDDD��	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�	6PS
MinDampRangeXSdoubleSNumberSDO�	6PS
MinDampRangeYSdoubleSNumberSD��	6PS
MinDampRangeZSdoubleSNumberSD��	6PS
MaxDampRangeXSdoubleSNumberSD�	6PS
MaxDampRangeYSdoubleSNumberSD_�	6PS
MaxDampRangeZSdoubleSNumberSD��	9PSMinDampStrengthXSdoubleSNumberSD��	9PSMinDampStrengthYSdoubleSNumberSD4�	9PSMinDampStrengthZSdoubleSNumberSD{�	9PSMaxDampStrengthXSdoubleSNumberSD��	9PSMaxDampStrengthYSdoubleSNumberSD	�	9PSMaxDampStrengthZSdoubleSNumberSDN�	7PSPreferedAngleXSdoubleSNumberSD��	7PSPreferedAngleYSdoubleSNumberSD��	7PSPreferedAngleZSdoubleSNumberSD�	!PSShowSboolSSIM�	8PSNegativePercentShapeSupportSboolSSI��	KPSLcl TranslationSColorRGBSColorSDDD��	HPSLcl RotationSColorRGBSColorSDDDQ�	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?��	3PS
VisibilitySdoubleSNumberSD�?��	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightID�	2PSMoBuRelationBlindDataSBlobSSI7�	
BinaryDataRpv�	$MotionBuilder_SystemL �W;SKTimelineXManagerSi�	Properties70�	=PSMoBuTypeNameSKStringSSSKTimelineXManagerD�	/PSMoBuSubTypeNameSKStringSSS��	CPSMoBuObjectFullNameSKStringSSSKTimelineXManager��	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5\�	2PSMoBuRelationBlindDataSBlobSSIO�	
BinaryDataRp��	MotionBuilder_SystemLX;X;SPosesS��	Properties70�	2PSMoBuTypeNameSKStringSSSFolderM�	7PSMoBuSubTypeNameSKStringSSSCategory��	?PSMoBuObjectFullNameSKStringSSS
PosesFolder.�	.PSMoBuAttrBlindDataSBlobSSI/!�	4
BinaryDataR/p"

FolderTypeSPoses��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp�	MotionBuilder_SystemL�xW;STakesS��	Properties70Q�	2PSMoBuTypeNameSKStringSSSFolder��	7PSMoBuSubTypeNameSKStringSSSCategory��	?PSMoBuObjectFullNameSKStringSSS
TakesFolderw�	.PSMoBuAttrBlindDataSBlobSSI/j�	4
BinaryDataR/p"

FolderTypeSTakes��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	MotionBuilder_SystemL�X;SGlobal LightS��	Properties70��	9PSMoBuTypeNameSKStringSSS
GlobalShading��	4PSMoBuSubTypeNameSKStringSSSLight6�	>PSMoBuObjectFullNameSKStringSSSGlobal Light��	BPS
Ambient ColorSColorSSAD����?D����?D����?��	>PS	Fog ColorSColorSSAD�?D�?D�?
�	-PS	Fog BeginSNumberSSAD@33�?F�	+PSFog EndSNumberSSAD@�@��	/PSFog DensitySNumberSSAD@��	$PSFogModeSenumSSI��	&PS	FogEnableSboolSSI\�	.PSMoBuAttrBlindDataSBlobSSIO�	
BinaryDataRp��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRpH�	MotionBuilder_SystemL8�W;SRendererS;�	Properties70��	4PSMoBuTypeNameSKStringSSSRenderer��	6PSMoBuSubTypeNameSKStringSSSDefault�	DPSMoBuObjectFullNameSKStringSSSRendererRendererS�	+PSFrustumCullingSboolSSI��	*PS
DisplayNormalSboolSSI��	/PSDisplayBoundingBoxSboolSSI�	;PSDisplayHierarchicalBoundingBoxSboolSSIK�	,PSIDBufferPickingSboolSSI��	=PSIDBufferPickingAlphaSdoubleSNumberSD�?��	,PSIDBufferDisplaySboolSSI�	.PSSelectionOverrideSboolSSI`�	FPSSelectionOverrideTransparencySdoubleSNumberSD�?��	RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?�	7PSCurrentCallbackIndexSintSIntegerSI����D�	1PSAdvancedMaterialModeSboolSSI��	.PSMoBuAttrBlindDataSBlobSSI��	
BinaryDataRp.�	2PSMoBuRelationBlindDataSBlobSSI!�	
BinaryDataRp�	&MotionBuilder_SystemL�8X;SPython Tool ManagerS�	Properties70��	4PSMoBuTypeNameSKStringSSS__FBTool'�	/PSMoBuSubTypeNameSKStringSSSz�	EPSMoBuObjectFullNameSKStringSSSPython Tool Manager��	'PSCaptionScharptrSSS��	$PSEnabledSboolSSI�	%PSReadOnlySboolSSIF�	$PSVisibleSboolSSI{�	'PSLeftSintSIntegerSI��	&PSTopSintSIntegerSI��	(PSWidthSintSIntegerSI�	)PSHeightSintSIntegerSIT�	*PSAnchorsSintSIntegerSI��	(PSSkinContextSenumSSI��	$PSHintScharptrSSS��	)PS	HintMouseScharptrSSS1�	0PS
HintMouseLeftSintSIntegerSI����n�	/PSHintMouseTopSintSIntegerSI������	1PSHintMouseWidthSintSIntegerSI������	2PSHintMouseHeightSintSIntegerSI����,�	1PSHintIsTextCompletionSboolSSI]�	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS��	,PSBackgroundBrushSenumSSI�	.PSBorderStyleSintSIntegerSIA�	+PSPositionSintSIntegerSI|�	-PS
StartWSizeSintSIntegerSI���	-PS
StartHSizeSintSIntegerSI���	+PSMaxWSizeSintSIntegerSI����)�	+PSMaxHSizeSintSIntegerSI����b�	+PSMinWSizeSintSIntegerSI���	+PSMinHSizeSintSIntegerSI������	,PS	StartXPosSintSIntegerSI�����	,PS	StartYPosSintSIntegerSI������	.PSMoBuAttrBlindDataSBlobSSIu�	
BinaryDataRp��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp�
(MotionBuilder_SystemL`GX;SBatch Tool (scripted)S�
Properties70��	4PSMoBuTypeNameSKStringSSS__FBTool��	/PSMoBuSubTypeNameSKStringSSSI�	GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)~�	'PSCaptionScharptrSSS��	$PSEnabledSboolSSI��	%PSReadOnlySboolSSI�	$PSVisibleSboolSSIJ�	'PSLeftSintSIntegerSI~�	&PSTopSintSIntegerSI��	(PSWidthSintSIntegerSI��	)PSHeightSintSIntegerSI#�	*PSAnchorsSintSIntegerSIY�	(PSSkinContextSenumSSI��	$PSHintScharptrSSS��	)PS	HintMouseScharptrSSS�	0PS
HintMouseLeftSintSIntegerSI����=�	/PSHintMouseTopSintSIntegerSI����|�	1PSHintMouseWidthSintSIntegerSI������	2PSHintMouseHeightSintSIntegerSI������	1PSHintIsTextCompletionSboolSSI,�	#PSActiveSboolSSIa�	'PS
ActiveControlSobjectSS��	,PSBackgroundBrushSenumSSI��	.PSBorderStyleSintSIntegerSI
+PSPositionSintSIntegerSIK
-PS
StartWSizeSintSIntegerSI�
-PS
StartHSizeSintSIntegerSIm�
+PSMaxWSizeSintSIntegerSI�����
+PSMaxHSizeSintSIntegerSI����1
+PSMinWSizeSintSIntegerSI�j
+PSMinHSizeSintSIntegerSI�����
,PS	StartXPosSintSIntegerSI�����
,PS	StartYPosSintSIntegerSI����Q
.PSMoBuAttrBlindDataSBlobSSID

BinaryDataRp�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRp�
3MotionBuilder_SystemL��W;S Character Selection/Key ControlsS�
Properties70�
4PSMoBuTypeNameSKStringSSS__FBTool�
/PSMoBuSubTypeNameSKStringSSS.
RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controlsc
'PSCaptionScharptrSSS�
$PSEnabledSboolSSI�
%PSReadOnlySboolSSI�
$PSVisibleSboolSSI/
'PSLeftSintSIntegerSIc
&PSTopSintSIntegerSI�
(PSWidthSintSIntegerSI�
)PSHeightSintSIntegerSI
*PSAnchorsSintSIntegerSI>
(PSSkinContextSenumSSIp
$PSHintScharptrSSS�
)PS	HintMouseScharptrSSS�
0PS
HintMouseLeftSintSIntegerSI����"
/PSHintMouseTopSintSIntegerSI����a
1PSHintMouseWidthSintSIntegerSI�����
2PSHintMouseHeightSintSIntegerSI�����
1PSHintIsTextCompletionSboolSSI
#PSActiveSboolSSIF
'PS
ActiveControlSobjectSS�
,PSBackgroundBrushSenumSSI�
.PSBorderStyleSintSIntegerSI�
+PSPositionSintSIntegerSI0	
-PS
StartWSizeSintSIntegerSI�k	
-PS
StartHSizeSintSIntegerSIx�	
+PSMaxWSizeSintSIntegerSI�����	
+PSMaxHSizeSintSIntegerSI����

+PSMinWSizeSintSIntegerSI�O

+PSMinHSizeSintSIntegerSI�����

,PS	StartXPosSintSIntegerSI�����

,PS	StartYPosSintSIntegerSI����6
.PSMoBuAttrBlindDataSBlobSSI)

BinaryDataRp�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRp�
MotionBuilder_SystemL�X;S
FBX ExportSs
Properties70`
4PSMoBuTypeNameSKStringSSS__FBTool�
/PSMoBuSubTypeNameSKStringSSS�
<PSMoBuObjectFullNameSKStringSSS
FBX Export
'PSCaptionScharptrSSSN
$PSEnabledSboolSSI�
%PSReadOnlySboolSSI�
$PSVisibleSboolSSI�
'PSLeftSintSIntegerSI
&PSTopSintSIntegerSIR
(PSWidthSintSIntegerSI�
)PSHeightSintSIntegerSI�
*PSAnchorsSintSIntegerSI�
(PSSkinContextSenumSSI)
$PSHintScharptrSSS`
)PS	HintMouseScharptrSSS�
0PS
HintMouseLeftSintSIntegerSI�����
/PSHintMouseTopSintSIntegerSI����
1PSHintMouseWidthSintSIntegerSI����Z
2PSHintMouseHeightSintSIntegerSI�����
1PSHintIsTextCompletionSboolSSI�
#PSActiveSboolSSI�
'PS
ActiveControlSobjectSS9
,PSBackgroundBrushSenumSSIu
.PSBorderStyleSintSIntegerSI�
+PSPositionSintSIntegerSI�
-PS
StartWSizeSintSIntegerSI^$
-PS
StartHSizeSintSIntegerSI�]
+PSMaxWSizeSintSIntegerSI�����
+PSMaxHSizeSintSIntegerSI�����
+PSMinWSizeSintSIntegerSI�
+PSMinHSizeSintSIntegerSI����B
,PS	StartXPosSintSIntegerSI����|
,PS	StartYPosSintSIntegerSI�����
.PSMoBuAttrBlindDataSBlobSSI�

BinaryDataRpf
2PSMoBuRelationBlindDataSBlobSSIY

BinaryDataRp`=
 MotionBuilder_SystemLh�W;S
HierarchyViewSS=
Properties70#
;PSMoBuTypeNameSKStringSSSKtHierarchyView`
/PSMoBuSubTypeNameSKStringSSS�
?PSMoBuObjectFullNameSKStringSSS
HierarchyView�<
.PSMoBuAttrBlindDataSBlobSSI�&�<
�&
BinaryDataR�&p�&
HierarchyView5ShowGridI�&ObjectsAttributes�NameSReferenceModel�	XDO@�	YD�p@�ExpandedIENameSPivotModel	XDO@	YD�s@8ExpandedI�NameSRootModel}	XDO@�	YD�v@�ExpandedI1NameSHipsModel�	XDO@
	YDz@$ExpandedI�NameSSpineModelj	XD�u��	YD }@�ExpandedINameSChestModel�	XD@x��	YD �@ExpandedI�NameSNeckModelW	XDd��n	YD��@�ExpandedINameSHeadModel�	XD����	YD@�@�ExpandedI�NameSLeftEyeModelF	XD��]	YDP�@wExpandedI�NameSRightEyeModel�	XDl���	YDЄ@�ExpandedIsNameS
JawModel5	XD~��L	YDP�@fExpandedI�NameSTongueBackModel�	XD֧��	YD��@�ExpandedIjNameSTongueTipModel,	XD@��C	YD`�@]ExpandedI�NameSLeftLipLowerModel�	XD����	YD��@�ExpandedI`NameS
JawENDModel"	XD��9	YD`�@SExpandedI�NameSRightLipLowerModel�	XD~���	YD��@�ExpandedI_NameSRightLipCornerModel!	XD��8	YD`�@RExpandedI�NameSLeftLipCornerModel�	XDR���	YD��@�ExpandedI\	NameSLeftLipUpperModel		XD���5		YDЄ@O	ExpandedI�	NameSLeftNostrilModel�		XD����		YDP�@�	ExpandedIT
NameSLeftCheekModel
	XDd��-
	YDЄ@G
ExpandedI�
NameSLeftEyelidLowerModel�
	XD��
	YDP�@�
ExpandedIVNameSLeftEyelidUpperModel	XD8��/	YDЄ@IExpandedI�NameSLeftInnerBrowModel�	XDD���	YDP�@�ExpandedIUNameSLeftIOuterBrowModel	XD��.	YDЄ@HExpandedI�NameSRightInnerBrowModel�	XD���	YDP�@�ExpandedIV
NameSRightIOuterBrowModel
	XD���/
	YDЄ@I
ExpandedI�
NameSRightEyelidUpperModel�
	XD����
	YDP�@�
ExpandedIZNameSRightEyelidLowerModel	XDh��3	YDЄ@MExpandedI�NameSRightCheekModel�	XD<���	YDP�@�ExpandedITNameSRightNostrilModel	XD��-	YDЄ@GExpandedI�NameSRightLipUpperModel�	XD���	YDP�@�ExpandedIRNameSRightShoulderModel	XD�m�+	YD0�@EExpandedI�NameSRightArmModel�	XD@q��	YD��@�ExpandedIJNameSRightForeArmModel	XD�s�#	YDP�@=ExpandedI�NameSRightHandModel�	XD�u��	YD��@�ExpandedIFNameSRightHandPinky1Model	XD���	YDp�@9ExpandedI�NameSRightHandPinky2Model�	XD���	YD�@�ExpandedIHNameSRightHandPinky3Model
	XD���!	YD��@;ExpandedI�NameSRightHandRing1Model�	XD����	YD��@�ExpandedIHNameSRightHandRing2Model
	XD���!	YD��@;ExpandedI�NameSRightHandRing3Model�	XD؇��	YD�@�ExpandedIJNameSRightHandMiddle1Model	XD@x�#	YDp�@=ExpandedI�NameSRightHandMiddle2Model�	XD�z��	YD�@�ExpandedINNameSRightHandMiddle3Model	XD�|�'	YD��@AExpandedI�NameSRightHandIndex1Model�	XDV��	YD��@�ExpandedIPNameSRightHandIndex2Model	XD�_�)	YD��@CExpandedI�NameSRightHandIndex3Model�	XD`d��	YD�@�ExpandedIRNameSRightHandThumb1Model	XD�j@+	YDp�@EExpandedI�NameSRightHandThumb2Model�	XD�e@�	YD�@�ExpandedITNameSRightHandThumb3Model	XD a@-	YD��@GExpandedI�NameSLeftShoulderModel�	XD��@�	YD0�@�ExpandedIKNameSLeftArmModel
	XD��@$	YD��@>ExpandedI�NameSLeftForeArmModel�	XDh�@�	YDP�@�ExpandedIBNameSLeftHandModel	XDЗ@	YD��@5ExpandedI�NameSLeftHandPinky1Model�	XD��@�	YDp�@�ExpandedIBNameSLeftHandPinky2Model	XD��@	YD�@5ExpandedI�NameSLeftHandPinky3Model�	XD`�@�	YD��@�ExpandedIANameSLeftHandRing1Model	XD��@	YD��@4ExpandedI�NameSLeftHandRing2Model�	XD��@�	YD��@�ExpandedI?NameSLeftHandRing3Model	XD`�@	YD�@2ExpandedI�NameSLeftHandMiddle1Model�	XD<�@�	YDp�@�ExpandedIANameSLeftHandMiddle2Model	XD��@	YD�@4ExpandedI�NameSLeftHandMiddle3Model�	XD�@�	YD��@�ExpandedIB NameSLeftHandIndex1Model 	XD�@ 	YD��@5 ExpandedI� NameSLeftHandIndex2Model� 	XDT�@� 	YD��@� ExpandedIB!NameSLeftHandIndex3Model!	XD��@!	YD�@5!ExpandedI�!NameSLeftHandThumb1Model�!	XDN�@�!	YDp�@�!ExpandedIB"NameSLeftHandThumb2Model"	XD�@"	YD�@5"ExpandedI�"NameSLeftHandThumb3Model�"	XDp�@�"	YD��@�"ExpandedI>#NameSRightUpLegModel#	XDޥ@#	YD ~@1#ExpandedI�#NameSRightLegModelz#	XD��@�#	YD��@�#ExpandedI3$NameSRightFootModel�#	XDH�@$	YD0�@&$ExpandedI�$NameSRightToesModelp$	XD��@�$	YD��@�$ExpandedI)%NameSLeftUpLegModel�$	XDb�@%	YD ~@%ExpandedI�%NameSLeftLegModeld%	XD�@{%	YD��@�%ExpandedI&NameSLeftFootModel�%	XD̨@�%	YD0�@&ExpandedI�&NameSLeftToesModelX&	XD��@o&	YD��@�&ExpandedIF=
2PSMoBuRelationBlindDataSBlobSSI9=

BinaryDataRp�F
MotionBuilder_SystemL�X;S	TransportS�F
Properties70�=
,PSMoBuTypeNameSKStringSSS->
/PSMoBuSubTypeNameSKStringSSSv>
;PSMoBuObjectFullNameSKStringSSS	Transport�>
'PSCaptionScharptrSSS�>
$PSEnabledSboolSSI?
%PSReadOnlySboolSSIB?
$PSVisibleSboolSSIw?
'PSLeftSintSIntegerSI�?
&PSTopSintSIntegerSI�?
(PSWidthSintSIntegerSI@
)PSHeightSintSIntegerSIP@
*PSAnchorsSintSIntegerSI�@
(PSSkinContextSenumSSI�@
$PSHintScharptrSSS�@
)PS	HintMouseScharptrSSS-A
0PS
HintMouseLeftSintSIntegerSI����jA
/PSHintMouseTopSintSIntegerSI�����A
1PSHintMouseWidthSintSIntegerSI�����A
2PSHintMouseHeightSintSIntegerSI����(B
1PSHintIsTextCompletionSboolSSIYB
#PSActiveSboolSSI�B
'PS
ActiveControlSobjectSS�B
,PSBackgroundBrushSenumSSIC
.PSBorderStyleSintSIntegerSI=C
+PSPositionSintSIntegerSIF
.PSMoBuAttrBlindDataSBlobSSIa�E
f
BinaryDataRapTTransport Tool Settings�ZoomBar Settings�3_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1�ZoomWindowModeI�ZoomWindowTimeLLp6��5�Audio Display Settings*AudioDisplayII
AudioClipNameSiAudioTrackNameS�AudioLeftChannelActiveI�AudioRightChannelActiveIGSettings�
TimeFormatISnapOnFramesI:ReferenceTimeIndexI����zF
2PSMoBuRelationBlindDataSBlobSSImF

BinaryDataRp�N
MotionBuilder_SystemL �W;SFCurveS�N
Properties70!G
,PSMoBuTypeNameSKStringSSS^G
/PSMoBuSubTypeNameSKStringSSS�G
8PSMoBuObjectFullNameSKStringSSSFCurve�G
'PSCaptionScharptrSSSH
$PSEnabledSboolSSI>H
%PSReadOnlySboolSSIpH
$PSVisibleSboolSSI�H
'PSLeftSintSIntegerSI�H
&PSTopSintSIntegerSII
(PSWidthSintSIntegerSIFI
)PSHeightSintSIntegerSI~I
*PSAnchorsSintSIntegerSI�I
(PSSkinContextSenumSSI�I
$PSHintScharptrSSSJ
)PS	HintMouseScharptrSSS[J
0PS
HintMouseLeftSintSIntegerSI�����J
/PSHintMouseTopSintSIntegerSI�����J
1PSHintMouseWidthSintSIntegerSI����K
2PSHintMouseHeightSintSIntegerSI����VK
1PSHintIsTextCompletionSboolSSI�K
#PSActiveSboolSSI�K
'PS
ActiveControlSobjectSS�K
,PSBackgroundBrushSenumSSI2L
.PSBorderStyleSintSIntegerSIkL
+PSPositionSintSIntegerSIN
.PSMoBuAttrBlindDataSBlobSSIJ
N
O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI�N
2PSMoBuRelationBlindDataSBlobSSI�N

BinaryDataRp�Q
MotionBuilder_GenericLpjW;S
GlobalInfoS�Q
Properties70FO
5PSMoBuTypeNameSKStringSSS	SceneInfo�O
7PSMoBuSubTypeNameSKStringSSSUserData�O
GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo<Q
.PSMoBuAttrBlindDataSBlobSSI�/Q
�
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Q
2PSMoBuRelationBlindDataSBlobSSI�Q

BinaryDataRp��
ConnectionsR
CSOOL��z:L@R
CSOOL`di:L3v)gR
CSOOLX`i:L 8v)�R
CSOOLHXi:L(=v)�R
CSOOLP\i:L0Bv)�R
CSOOL8Pi:L8Gv)S
CSOOL@Ti:L@Lv)*S
CSOOL(Hi:LHQv)QS
CSOOL�PX;L��z:xS
CSOOLXM�:L(��9�S
CSOOL;�:L(��9�S
CSOOL(��:L(��9�S
CSOOL(�:L(��9T
CSOOLX_�:L(��9;T
CSOOL��:L(��9bT
CSOOL�̅:L(��9�T
CSOOL�:�:L(��9�T
CSOOL��:L(��9�T
CSOOL��:L(��9�T
CSOOL`ۅ:L(��9%U
CSOOLX��:L(��9LU
CSOOL�:L(��9sU
CSOOL���:L(��9�U
CSOOLƅ:L(��9�U
CSOOL(��:L(��9�U
CSOOLp΅:L(��9V
CSOOLh��:L(��96V
CSOOL���:L(��9]V
CSOOLT�:L(��9�V
CSOOL��:L(��9�V
CSOOLH؅:L(��9�V
CSOOL�Ӆ:L(��9�V
CSOOLo�:L(��9 W
CSOOL�ʅ:L(��9GW
CSOOLpY�:L(��9nW
CSOOL��:L(��9�W
CSOOLD�:L(��9�W
CSOOL��L:L(��9�W
CSOOL�FM:L(��9
X
CSOOL0AM:L(��91X
CSOOLh<M:L(��9XX
CSOOL�;M:L(��9X
CSOOL EM:L(��9�X
CSOOL�1M:L(��9�X
CSOOL 3M:L(��9�X
CSOOL�6M:L(��9Y
CSOOL�-M:L(��9BY
CSOOL7M:L(��9iY
CSOOL�#M:L(��9�Y
CSOOL%M:L(��9�Y
CSOOLp(M:L(��9�Y
CSOOL�M:L(��9Z
CSOOL(M:L(��9,Z
CSOOLXM:L(��9SZ
CSOOL�M:L(��9zZ
CSOOL�M:L(��9�Z
CSOOL(
M:L(��9�Z
CSOOLX
M:L(��9�Z
CSOOL�M:L(��9[
CSOOL�M:L(��9=[
CSOOL�M:L(��9d[
CSOOL�L:L(��9�[
CSOOLH�L:L(��9�[
CSOOLx�L:L(��9�[
CSOOL(�L:L(��9\
CSOOLX�L:L(��9'\
CSOOL��L:L(��9N\
CSOOL�L:L(��9u\
CSOOL0�L:L(��9�\
CSOOL�L:L(��9�\
CSOOL`�L:L(��9�\
CSOOL��L:L(��9]
CSOOLp�L:L(��98]
CSOOL��L:L(��9_]
CSOOL��L:L(��9�]
CSOOL0M:L(��9�]
CSOOL`M:L(��9�]
CSOOLM:L(��9�]
CSOOL�L:L(��9"^
CSOOL8�L:L(��9I^
CSOOLh�L:L(��9p^
CSOOL��L:L(��9�^
CSOOL��L:L(��9�^
CSOOL��:L(��9�^
CSOOL�۾:L(��9_
CSOOL�־:L(��93_
CSOOL�Ҿ:L(��9Z_
CSOOL�;:L(��9�_
CSOOL�Ⱦ:L(��9�_
CSOOLpľ:L(��9�_
CSOOL���:L(��9�_
CSOOL���:L(��9`
CSOOL`��:L(��9D`
CSOOL���:L(��9k`
CSOOL���:L(��9�`
CSOOL���:L(��9�`
CSOOL���:L(��9�`
CSOOL���:L(��9a
CSOOL�z�:L(��9.a
CSOOL0z�:L(��9Ua
CSOOL�~�:L(��9|a
CSOOLX��:L(��9�a
CSOOL@v�:L(��9�a
CSOOL肾:L(��9�a
CSOOL�g�:L(��9b
CSOOLxh�:L(��9?b
CSOOL�k�:L(��9fb
CSOOLn�:L(��9�b
CSOOL�o�:L(��9�b
CSOOL�߾:L(��9�b
CSOOL�ؾ:L(��9c
CSOOL��:L��z:)c
CSOOL��z:L��z:Pc
CSOOL8:L��z:wc
CSOOL��z:L��z:�c
CSOOLx�:L��z:�c
CSOOL��z:L��z:�c
CSOOL8h:L��z:d
CSOOL��z:L��z::d
CSOOL�
%;L��z:ad
CSOOLx�:L��z:�d
-CSOPLXM�:L��z:SLcl Translation�d
*CSOPL;�:L��z:SLcl Rotation�d
CSOOL�j:L��z:"e
CSOOL��z:L��z:]e
-CSOPL(��:L��z:SLcl Translation�e
*CSOPL(�:L��z:SLcl Rotation�e
CSOOL8�:L��z:�e
CSOOL��z:L��z:
f
CSOOL�:�:L��z:1f
CSOOLx2�:L��z:lf
-CSOPLX_�:L��z:SLcl Translation�f
*CSOPL��:L��z:SLcl Rotation�f
CSOOLxs:L��z:�f
CSOOL��z:L��z:-g
-CSOPL�̅:L��z:SLcl Translationeg
*CSOPL�:�:L��z:SLcl Rotation�g
CSOOL�:L��z:�g
CSOOL��z:L��z:�g
CSOOL��z:L��z:h
CSOOL{:L��z:(h
CSOOLx\;L��z:Oh
CSOOL�\;L��z:vh
CSOOL�\;L��z:�h
CSOOL�"\;L��z:�h
CSOOL�'\;L��z:�h
CSOOLX
�:L��z:i
CSOOL`�:L��z:9i
CSOOLh�:L��z:`i
CSOOLp�:L��z:�i
CSOOLx!�:L��z:�i
CSOOL�&�:L��z:�i
CSOOL�+�:L��z:�i
CSOOL�0�:L��z:#j
CSOOL�5�:L��z:^j
-CSOPL��:L��z:SLcl Translation�j
*CSOPL��:L��z:SLcl Rotation�j
CSOOL8�:L��z:�j
CSOOL��:L��z:k
CSOOL��:L{:2k
CSOOL@�[;L{:Yk
CSOOLH�[;L{:�k
CSOOLP�[;L{:�k
CSOOLX�[;L{:�k
CSOOL`\;L{:�k
CSOOLh	\;L{:l
CSOOLp\;L{:Cl
CSOOL��:L@�[;jl
CSOOL��:LH�[;�l
CSOOLx�:LP�[;�l
CSOOL��:LX�[;�l
CSOOLx�:L`\;m
CSOOL8K:Lh	\;-m
CSOOLx�:Lp\;Tm
CSOOL��:Lx\;{m
CSOOL��:L�\;�m
CSOOLxx:L�\;�m
CSOOL8:L�"\;�m
CSOOL�~:L�'\;n
CSOOL��:LX
�:>n
CSOOL��:L`�:en
CSOOLx�:Lh�:�n
CSOOL�@:Lp�:�n
CSOOL� :Lx!�:�n
CSOOL8�:L�&�:o
CSOOL�:L�+�:(o
CSOOL�1:L�0�:Oo
CSOOLx|:L�5�:vo
CSOOL�\:L�:�:�o
CSOOL�?�:L�:�:�o
-CSOPL`ۅ:L�:�:SLcl Translationp
*CSOPLX��:L�:�:SLcl Rotation7p
CSOOL��:L�?�:^p
CSOOL�D�:L�?�:�p
-CSOPL�:L�?�:SLcl Translation�p
*CSOPL���:L�?�:SLcl Rotation�p
CSOOL8�:L�D�:q
CSOOL��:L�D�:Zq
-CSOPLƅ:L�D�:SLcl Translation�q
*CSOPL(��:L�D�:SLcl Rotation�q
CSOOL�q:L��:�q
CSOOL�:L��:r
CSOOL�:L��:.r
CSOOL0�:L��:Ur
CSOOLH:L��:|r
CSOOL`#�:L��:�r
-CSOPLp΅:L��:SLcl Translation�r
*CSOPLh��:L��:SLcl Rotations
CSOOL8�:L�:=s
CSOOL�:L�:xs
-CSOPL���:L�:SLcl Translation�s
*CSOPLT�:L�:SLcl Rotation�s
CSOOLx:L�:�s
CSOOL�:L�:9t
-CSOPL��:L�:SLcl Translationqt
*CSOPLH؅:L�:SLcl Rotation�t
CSOOL�O:L�:�t
-CSOPL�Ӆ:L�:SLcl Translationu
*CSOPLo�:L�:SLcl Rotation2u
CSOOL�p:L�:Yu
CSOOL �:L�:�u
-CSOPL�ʅ:L�:SLcl Translation�u
*CSOPLpY�:L�:SLcl Rotation�u
CSOOL8�:L �:v
CSOOL(�:L �:Uv
-CSOPL��:L �:SLcl Translation�v
*CSOPLD�:L �:SLcl Rotation�v
CSOOLx�:L(�:�v
-CSOPL��L:L(�:SLcl Translation'w
*CSOPL�FM:L(�:SLcl RotationNw
CSOOL��:L0�:uw
CSOOL8�:L0�:�w
-CSOPL0AM:L0�:SLcl Translation�w
*CSOPLh<M:L0�:SLcl Rotationx
CSOOL�U:L8�:6x
CSOOL@:L8�:qx
-CSOPL�;M:L8�:SLcl Translation�x
*CSOPL EM:L8�:SLcl Rotation�x
CSOOL8a:L@:y
-CSOPL�1M:L@:SLcl TranslationCy
*CSOPL 3M:L@:SLcl Rotationjy
CSOOL��:LH:�y
CSOOLP
:LH:�y
-CSOPL�6M:LH:SLcl Translationz
*CSOPL�-M:LH:SLcl Rotation+z
CSOOL8�:LP
:Rz
CSOOLX�:LP
:�z
-CSOPL7M:LP
:SLcl Translation�z
*CSOPL�#M:LP
:SLcl Rotation�z
CSOOL�:LX�:'{
-CSOPL%M:LX�:SLcl Translation_{
*CSOPLp(M:LX�:SLcl Rotation�{
CSOOL��:L`#�:�{
CSOOLh(�:L`#�:�{
-CSOPL�M:L`#�:SLcl Translation |
*CSOPL(M:L`#�:SLcl RotationG|
CSOOL��:Lh(�:n|
CSOOLp-�:Lh(�:�|
-CSOPLXM:Lh(�:SLcl Translation�|
*CSOPL�M:Lh(�:SLcl Rotation}
CSOOL�o:Lp-�:C}
-CSOPL�M:Lp-�:SLcl Translation{}
*CSOPL(
M:Lp-�:SLcl Rotation�}
CSOOL�&:Lx2�:�}
CSOOL�7�:Lx2�:~
-CSOPLX
M:Lx2�:SLcl Translation<~
*CSOPL�M:Lx2�:SLcl Rotationc~
CSOOL8b:L�7�:�~
CSOOL�<�:L�7�:�~
-CSOPL�M:L�7�:SLcl Translation�~
*CSOPL�M:L�7�:SLcl Rotation$
CSOOL8�:L�<�:K
CSOOL�A�:L�<�:�
-CSOPL�L:L�<�:SLcl Translation�
*CSOPLH�L:L�<�:SLcl Rotation�
CSOOL�?:L�A�:�
CSOOL�F�:L�A�:3�
CSOOL�U�:L�A�:Z�
CSOOL��$;L�A�:��
CSOOL��$;L�A�:��
CSOOL��$;L�A�:�
-CSOPLx�L:L�A�:SLcl Translation�
*CSOPL(�L:L�A�:SLcl RotationB�
CSOOL�u:L�F�:i�
CSOOL�K�:L�F�:��
-CSOPLX�L:L�F�:SLcl Translation܁
*CSOPL��L:L�F�:SLcl Rotation�
CSOOLx�:L�K�:*�
CSOOL�P�:L�K�:e�
-CSOPL�L:L�K�:SLcl Translation��
*CSOPL0�L:L�K�:SLcl RotationĂ
CSOOL8):L�P�:��
-CSOPL�L:L�P�:SLcl Translation7�
*CSOPL`�L:L�P�:SLcl Rotation^�
CSOOLx�:L�U�:��
CSOOL��$;L�U�:��
-CSOPL��L:L�U�:SLcl Translation��
*CSOPLp�L:L�U�:SLcl Rotation�
CSOOL8W:L��$;F�
CSOOL��$;L��$;��
-CSOPL��L:L��$;SLcl Translation��
*CSOPL��L:L��$;SLcl Rotation��
CSOOLx:L��$;�
-CSOPL0M:L��$;SLcl TranslationS�
*CSOPL`M:L��$;SLcl Rotationz�
CSOOLxf:L��$;��
CSOOL��$;L��$;܅
-CSOPLM:L��$;SLcl Translation�
*CSOPL�L:L��$;SLcl Rotation;�
CSOOL8E:L��$;b�
CSOOL��$;L��$;��
-CSOPL8�L:L��$;SLcl TranslationՆ
*CSOPLh�L:L��$;SLcl Rotation��
CSOOLx�:L��$;7�
-CSOPL��L:L��$;SLcl Translationo�
*CSOPL��L:L��$;SLcl Rotation��
CSOOL�k:L��$;��
CSOOL��$;L��$;��
-CSOPL��:L��$;SLcl Translation0�
*CSOPL�۾:L��$;SLcl RotationW�
CSOOL8q:L��$;~�
CSOOL��$;L��$;��
-CSOPL�־:L��$;SLcl Translation�
*CSOPL�Ҿ:L��$;SLcl Rotation�
CSOOL�M:L��$;S�
-CSOPL�;:L��$;SLcl Translation��
*CSOPL�Ⱦ:L��$;SLcl Rotation��
CSOOL��:L��$;ى
CSOOL�%;L��$;�
-CSOPLpľ:L��$;SLcl TranslationL�
*CSOPL���:L��$;SLcl Rotations�
CSOOLx�:L�%;��
CSOOL�%;L�%;Պ
-CSOPL���:L�%;SLcl Translation
�
*CSOPL`��:L�%;SLcl Rotation4�
CSOOLxC:L�%;o�
-CSOPL���:L�%;SLcl Translation��
*CSOPL���:L�%;SLcl Rotation΋
CSOOLx�:L�
%;��
CSOOL`�:L�
%;0�
-CSOPL���:L�
%;SLcl Translationh�
*CSOPL���:L�
%;SLcl Rotation��
CSOOL��:L`�:��
CSOOLh�:L`�:�
-CSOPL���:L`�:SLcl Translation)�
*CSOPL�z�:L`�:SLcl RotationP�
CSOOL�
:Lh�:w�
CSOOLp�:Lh�:��
-CSOPL0z�:Lh�:SLcl Translation�
*CSOPL�~�:Lh�:SLcl Rotation�
CSOOL��:Lp�:L�
-CSOPLX��:Lp�:SLcl Translation��
*CSOPL@v�:Lp�:SLcl Rotation��
CSOOL8k:Lx�:Ҏ
CSOOL��:Lx�:
�
-CSOPL肾:Lx�:SLcl TranslationE�
*CSOPL�g�:Lx�:SLcl Rotationl�
CSOOL8�:L��:��
CSOOL�:L��:Ώ
-CSOPLxh�:L��:SLcl Translation�
*CSOPL�k�:L��:SLcl Rotation-�
CSOOL�@:L�:T�
CSOOL�:L�:��
-CSOPLn�:L�:SLcl Translationǐ
*CSOPL�o�:L�:SLcl Rotation�
CSOOLx:L�:)�
-CSOPL�߾:L�:SLcl Translationa�
*CSOPL�ؾ:L�:SLcl Rotation��
CSOOL(��9L��Z:��
CSOOLX��9L��Z:ޑ
!CSOPL��9LXM�:Sd|X
�
!CSOPLȹ�9LXM�:Sd|Y<�
!CSOPLxB�9LXM�:Sd|Zk�
!CSOPL�>�9L;�:Sd|X��
!CSOPL���9L;�:Sd|Yɒ
!CSOPL؅�9L;�:Sd|Z��
!CSOPLx��9L(��:Sd|X'�
!CSOPL���9L(��:Sd|YV�
!CSOPL(,�9L(��:Sd|Z��
!CSOPLhw�9L(�:Sd|X��
!CSOPLx��9L(�:Sd|Y�
!CSOPL���9L(�:Sd|Z�
!CSOPL���9LX_�:Sd|XA�
!CSOPLx?�9LX_�:Sd|Yp�
!CSOPLH��9LX_�:Sd|Z��
!CSOPLh
�9L��:Sd|XΔ
!CSOPL8��9L��:Sd|Y��
!CSOPL�~�9L��:Sd|Z,�
!CSOPL���9L�̅:Sd|X[�
!CSOPL���9L�̅:Sd|Y��
!CSOPLXf�9L�̅:Sd|Z��
!CSOPLh�9L�:�:Sd|X�
!CSOPLH9�9L�:�:Sd|Y�
!CSOPLHZ�9L�:�:Sd|ZF�
!CSOPL���9L��:Sd|Xu�
!CSOPLx��9L��:Sd|Y��
!CSOPL��9L��:Sd|ZӖ
!CSOPL�D�9L��:Sd|X�
!CSOPL���9L��:Sd|Y1�
!CSOPLȤ�9L��:Sd|Z`�
!CSOPL(�9L`ۅ:Sd|X��
!CSOPLH3�9L`ۅ:Sd|Y��
!CSOPLx��9L`ۅ:Sd|Z�
!CSOPL���9LX��:Sd|X�
!CSOPL�7�9LX��:Sd|YK�
!CSOPLH��9LX��:Sd|Zz�
!CSOPL�"�9L�:Sd|X��
!CSOPLx��9L�:Sd|Yؘ
!CSOPL�x�9L�:Sd|Z�
!CSOPL���9L���:Sd|X6�
!CSOPL�:�9L���:Sd|Ye�
!CSOPLH	�9L���:Sd|Z��
!CSOPLX�9Lƅ:Sd|XÙ
!CSOPL�f�9Lƅ:Sd|Y�
!CSOPL���9Lƅ:Sd|Z!�
!CSOPL<�9L(��:Sd|XP�
!CSOPL���9L(��:Sd|Y�
!CSOPL�9L(��:Sd|Z��
!CSOPL���-Lp΅:Sd|Xݚ
!CSOPLxh�-Lp΅:Sd|Y�
!CSOPL�a�-Lp΅:Sd|Z;�
!CSOPL�(�-Lh��:Sd|Xj�
!CSOPLx��-Lh��:Sd|Y��
!CSOPLX�-Lh��:Sd|Zț
!CSOPL�u�-L���:Sd|X��
!CSOPL�8�-L���:Sd|Y&�
!CSOPL(��-L���:Sd|ZU�
!CSOPL�[�-LT�:Sd|X��
!CSOPL(�-LT�:Sd|Y��
!CSOPL8N�-LT�:Sd|Z�
!CSOPL���-L��:Sd|X�
!CSOPL��-L��:Sd|Y@�
!CSOPL;�-L��:Sd|Zo�
!CSOPL8��-LH؅:Sd|X��
!CSOPLh��-LH؅:Sd|Y͝
!CSOPLH��-LH؅:Sd|Z��
!CSOPL���-L�Ӆ:Sd|X+�
!CSOPLxb�-L�Ӆ:Sd|YZ�
!CSOPL���-L�Ӆ:Sd|Z��
!CSOPL���-Lo�:Sd|X��
!CSOPL���-Lo�:Sd|Y�
!CSOPL�%�-Lo�:Sd|Z�
!CSOPL��-L�ʅ:Sd|XE�
!CSOPL(��-L�ʅ:Sd|Yt�
!CSOPL��-L�ʅ:Sd|Z��
!CSOPL���-LpY�:Sd|Xҟ
!CSOPL(U�-LpY�:Sd|Y�
!CSOPL���-LpY�:Sd|Z0�
!CSOPL���-L��:Sd|X_�
!CSOPL)�-L��:Sd|Y��
!CSOPLHe�-L��:Sd|Z��
!CSOPL��-LD�:Sd|X�
!CSOPL(X�-LD�:Sd|Y�
!CSOPL؆�-LD�:Sd|ZJ�
!CSOPLX��-L��L:Sd|Xy�
!CSOPL���-L��L:Sd|Y��
!CSOPLx
�-L��L:Sd|Zס
!CSOPLX��-L�FM:Sd|X�
!CSOPL���-L�FM:Sd|Y5�
!CSOPL��-L�FM:Sd|Zd�
!CSOPL�N�9L0AM:Sd|X��
!CSOPL( �9L0AM:Sd|Y¢
!CSOPL���-L0AM:Sd|Z�
!CSOPL���-Lh<M:Sd|X �
!CSOPLh��-Lh<M:Sd|YO�
!CSOPL�-Lh<M:Sd|Z~�
!CSOPLx��-L�;M:Sd|X��
!CSOPLh��-L�;M:Sd|Yܣ
!CSOPL8��-L�;M:Sd|Z�
!CSOPLX��-L EM:Sd|X:�
!CSOPL(��-L EM:Sd|Yi�
!CSOPLx�-L EM:Sd|Z��
!CSOPL���-L�1M:Sd|XǤ
!CSOPL���-L�1M:Sd|Y��
!CSOPL�&�-L�1M:Sd|Z%�
!CSOPL(�-L 3M:Sd|XT�
!CSOPL���-L 3M:Sd|Y��
!CSOPL��-L 3M:Sd|Z��
!CSOPL�[�-L�6M:Sd|X�
!CSOPL��-L�6M:Sd|Y�
!CSOPL�q�-L�6M:Sd|Z?�
!CSOPL�p�-L�-M:Sd|Xn�
!CSOPL�t�-L�-M:Sd|Y��
!CSOPL8�-L�-M:Sd|Z̦
!CSOPL��-L7M:Sd|X��
!CSOPLh��-L7M:Sd|Y*�
!CSOPLX��-L7M:Sd|ZY�
!CSOPLX��-L�#M:Sd|X��
!CSOPL���-L�#M:Sd|Y��
!CSOPL(C�-L�#M:Sd|Z�
!CSOPL���-L%M:Sd|X�
!CSOPLh#�-L%M:Sd|YD�
!CSOPLH�-L%M:Sd|Zs�
!CSOPL�a�-Lp(M:Sd|X��
!CSOPL�g�-Lp(M:Sd|YѨ
!CSOPL��-Lp(M:Sd|Z�
!CSOPLx��-L�M:Sd|X/�
!CSOPLH+�-L�M:Sd|Y^�
!CSOPL���-L�M:Sd|Z��
!CSOPL('�-L(M:Sd|X��
!CSOPL���-L(M:Sd|Y�
!CSOPLH��-L(M:Sd|Z�
!CSOPLH��-LXM:Sd|XI�
!CSOPLX��-LXM:Sd|Yx�
!CSOPLx�-LXM:Sd|Z��
!CSOPL�3�-L�M:Sd|X֪
!CSOPL�R�-L�M:Sd|Y�
!CSOPL�R�-L�M:Sd|Z4�
!CSOPL���-L�M:Sd|Xc�
!CSOPL8l�-L�M:Sd|Y��
!CSOPL���-L�M:Sd|Z��
!CSOPL���-L(
M:Sd|X�
!CSOPL
�-L(
M:Sd|Y�
!CSOPL(�-L(
M:Sd|ZN�
!CSOPL=�-LX
M:Sd|X}�
!CSOPL��-LX
M:Sd|Y��
!CSOPLT�-LX
M:Sd|Z۬
!CSOPL��-L�M:Sd|X
�
!CSOPL���-L�M:Sd|Y9�
!CSOPLȖ�-L�M:Sd|Zh�
!CSOPL���-L�M:Sd|X��
!CSOPL��-L�M:Sd|Yƭ
!CSOPL8#�-L�M:Sd|Z��
!CSOPL�:�-L�M:Sd|X$�
!CSOPLh�-L�M:Sd|YS�
!CSOPL�'�-L�M:Sd|Z��
!CSOPLh��-L�L:Sd|X��
!CSOPL��-L�L:Sd|Y�
!CSOPL�
�-L�L:Sd|Z�
!CSOPL� �-LH�L:Sd|X>�
!CSOPLؤ�-LH�L:Sd|Ym�
!CSOPL��-LH�L:Sd|Z��
!CSOPL�T�-Lx�L:Sd|X˯
!CSOPLhT�-Lx�L:Sd|Y��
!CSOPL���-Lx�L:Sd|Z)�
!CSOPL�d�-L(�L:Sd|XX�
!CSOPL8T�-L(�L:Sd|Y��
!CSOPL(d�-L(�L:Sd|Z��
!CSOPLH��-LX�L:Sd|X�
!CSOPL���-LX�L:Sd|Y�
!CSOPLXF�-LX�L:Sd|ZC�
!CSOPL��-L��L:Sd|Xr�
!CSOPL(��-L��L:Sd|Y��
!CSOPL8��-L��L:Sd|Zб
!CSOPLQ�-L�L:Sd|X��
!CSOPL(	�-L�L:Sd|Y.�
!CSOPLx�-L�L:Sd|Z]�
!CSOPL���-L0�L:Sd|X��
!CSOPL�U�-L0�L:Sd|Y��
!CSOPL�=�-L0�L:Sd|Z�
!CSOPL���-L�L:Sd|X�
!CSOPL� �-L�L:Sd|YH�
!CSOPL�H�-L�L:Sd|Zw�
!CSOPL��-L`�L:Sd|X��
!CSOPL��-L`�L:Sd|Yճ
!CSOPLH��-L`�L:Sd|Z�
!CSOPL(3�-L��L:Sd|X3�
!CSOPLX�-L��L:Sd|Yb�
!CSOPL��-L��L:Sd|Z��
!CSOPL���-Lp�L:Sd|X��
!CSOPL(�-Lp�L:Sd|Y�
!CSOPL��-Lp�L:Sd|Z�
!CSOPL�<�-L��L:Sd|XM�
!CSOPL#�-L��L:Sd|Y|�
!CSOPL��-L��L:Sd|Z��
!CSOPL(��-L��L:Sd|Xڵ
!CSOPLH�-L��L:Sd|Y	�
!CSOPLx��-L��L:Sd|Z8�
!CSOPLXd�-L0M:Sd|Xg�
!CSOPLX��-L0M:Sd|Y��
!CSOPL،�-L0M:Sd|ZŶ
!CSOPL��-L`M:Sd|X��
!CSOPL(��-L`M:Sd|Y#�
!CSOPL�3�-L`M:Sd|ZR�
!CSOPLXm�-LM:Sd|X��
!CSOPL��-LM:Sd|Y��
!CSOPL�7�-LM:Sd|Z߷
!CSOPL�p�-L�L:Sd|X�
!CSOPLș�-L�L:Sd|Y=�
!CSOPL��-L�L:Sd|Zl�
!CSOPLx��-L8�L:Sd|X��
!CSOPL�-L8�L:Sd|Yʸ
!CSOPL�{�-L8�L:Sd|Z��
!CSOPL(�-Lh�L:Sd|X(�
!CSOPL��-Lh�L:Sd|YW�
!CSOPL���-Lh�L:Sd|Z��
!CSOPL
�-L��L:Sd|X��
!CSOPL�R�-L��L:Sd|Y�
!CSOPL���-L��L:Sd|Z�
!CSOPL(F�-L��L:Sd|XB�
!CSOPL���-L��L:Sd|Yq�
!CSOPLX��-L��L:Sd|Z��
!CSOPL���-L��:Sd|XϺ
!CSOPLH��-L��:Sd|Y��
!CSOPL�W�-L��:Sd|Z-�
!CSOPL�?�-L�۾:Sd|X\�
!CSOPL8��-L�۾:Sd|Y��
!CSOPL��-L�۾:Sd|Z��
!CSOPL��-L�־:Sd|X�
!CSOPL���-L�־:Sd|Y�
!CSOPLhf�-L�־:Sd|ZG�
!CSOPL���-L�Ҿ:Sd|Xv�
!CSOPL�%�-L�Ҿ:Sd|Y��
!CSOPL���-L�Ҿ:Sd|ZԼ
!CSOPLx��-L�;:Sd|X�
!CSOPL8��-L�;:Sd|Y2�
!CSOPLX!�-L�;:Sd|Za�
!CSOPL���-L�Ⱦ:Sd|X��
!CSOPL���-L�Ⱦ:Sd|Y��
!CSOPL��-L�Ⱦ:Sd|Z�
!CSOPL��-Lpľ:Sd|X�
!CSOPL��-Lpľ:Sd|YL�
!CSOPL�E�-Lpľ:Sd|Z{�
!CSOPL8�-L���:Sd|X��
!CSOPL���-L���:Sd|Yپ
!CSOPL���-L���:Sd|Z�
!CSOPL�i�-L���:Sd|X7�
!CSOPLH(�-L���:Sd|Yf�
!CSOPLe�-L���:Sd|Z��
!CSOPL�"�-L`��:Sd|XĿ
!CSOPLȺ�-L`��:Sd|Y�
!CSOPLh��-L`��:Sd|Z"�
!CSOPLHJ�-L���:Sd|XQ�
!CSOPL�&�-L���:Sd|Y��
!CSOPL���-L���:Sd|Z��
!CSOPL�9�-L���:Sd|X��
!CSOPL���-L���:Sd|Y
�
!CSOPLf�-L���:Sd|Z<�
!CSOPL���-L���:Sd|Xk�
!CSOPL�m�-L���:Sd|Y��
!CSOPLh�-L���:Sd|Z��
!CSOPLhB�-L���:Sd|X��
!CSOPL���-L���:Sd|Y'�
!CSOPL���-L���:Sd|ZV�
!CSOPLH��-L���:Sd|X��
!CSOPL�&�-L���:Sd|Y��
!CSOPL���-L���:Sd|Z��
!CSOPL�B�-L�z�:Sd|X�
!CSOPL8��-L�z�:Sd|YA�
!CSOPL���-L�z�:Sd|Zp�
!CSOPL�g�-L0z�:Sd|X��
!CSOPL�Y�-L0z�:Sd|Y��
!CSOPLhN�-L0z�:Sd|Z��
!CSOPL��-L�~�:Sd|X,�
!CSOPLx��-L�~�:Sd|Y[�
!CSOPL��-L�~�:Sd|Z��
!CSOPLh2�-LX��:Sd|X��
!CSOPL���-LX��:Sd|Y��
!CSOPLȊ�-LX��:Sd|Z�
!CSOPL���-L@v�:Sd|XF�
!CSOPL(j�-L@v�:Sd|Yu�
!CSOPL($�-L@v�:Sd|Z��
!CSOPLH��-L肾:Sd|X��
!CSOPL�H�-L肾:Sd|Y�
!CSOPL�L�-L肾:Sd|Z1�
!CSOPL���-L�g�:Sd|X`�
!CSOPL���-L�g�:Sd|Y��
!CSOPL(<�-L�g�:Sd|Z��
!CSOPLXa�-Lxh�:Sd|X��
!CSOPL���-Lxh�:Sd|Y�
!CSOPLh�-Lxh�:Sd|ZK�
!CSOPL��-L�k�:Sd|Xz�
!CSOPLx��-L�k�:Sd|Y��
!CSOPL���-L�k�:Sd|Z��
!CSOPLH_�-Ln�:Sd|X�
!CSOPL���-Ln�:Sd|Y6�
!CSOPL8��-Ln�:Sd|Ze�
!CSOPLhQ�-L�o�:Sd|X��
!CSOPL�{�-L�o�:Sd|Y��
!CSOPLX��-L�o�:Sd|Z��
!CSOPL�?�-L�߾:Sd|X!�
!CSOPL�@�-L�߾:Sd|YP�
!CSOPL%�-L�߾:Sd|Z�
!CSOPL8��-L�ؾ:Sd|X��
!CSOPL���-L�ؾ:Sd|Y��
!CSOPLX��-L�ؾ:Sd|ZP�
TakesH�
8CurrentS3_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1C�
8TakeS3_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1��
<FileNameS7_63_a_U1_M_P_RapidStrafeJump_ToLeft_R_Fb_p90_No_0_1.tak
�
	LocalTimeL(e9��L��G��6�

ReferenceTimeL(e9��L��G�����	���c�~���'r��Z�j���~���u�)

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/Raw Mocap Data/Animations/Strafing/RapidStrafeJump_ToLeft_R.fbx

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