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
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
Kaydara FBX Binary  �
FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteI3WSecondItMillisecondI��'CreatorS"FBX SDK/FBX Plugins version 2013.0'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSS�C:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2.fbx��PSSrcDocumentUrlSKStringSUrlSS�C:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2.fbx�$PSOriginalSCompoundSS*BPSOriginal|ApplicationVendorSKStringSSSAutodesk}EPSOriginal|ApplicationNameSKStringSSS
MotionBuilder�?PSOriginal|ApplicationVersionSKStringSSS2013%MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 20:51:23.975d1PSOriginal|FileNameSKStringSSS�%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk<FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder�@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 20:51:23.9755FileIdR*�*�!�κž-�(��jCreationTimeS2012-11-08 15:51:23:980�6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=201201052
GlobalSettings�VersionI�%
Properties708	)PSUpAxisSintSIntegerSIs	-PS
UpAxisSignSintSIntegerSI�	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI%
,PS	CoordAxisSintSIntegerSIc
0PS
CoordAxisSignSintSIntegerSI�
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI+8PSUnitScaleFactorSdoubleSNumberSD�?y@PSOriginalUnitScaleFactorSdoubleSNumberSD�?�HPSAmbientColorSColorRGBSColorSD����?D����?D����?APS
DefaultCameraSKStringSSSProducer PerspectiveQ%PSTimeModeSenumSSI�3PS
TimeSpanStartSKTimeSTimeSL�2PSTimeSpanStopSKTimeSTimeSL@�Y��
8PSCustomFrameRateSdoubleSNumberSD��	Documents_
CountI�!DocumentLH|�S	KFbxSceneSScenesProperties70�
&PSSourceObjectSobjectSSfvPSActiveAnimStackNameSKStringSSSC_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2�	RootNodeL�
ReferencesDDefinitionsVersionIdCountI�e
ObjectTypeSGlobalSettingsXCountI�
ObjectTypeSMotionBuilder_System�CountI\#

ObjectTypeSModel�CountIVO#PropertyTemplateSFbxNodeB#Properties70s2PSQuaternionInterpolateSenumSSI�KPSRotationOffsetSVector3DSVectorSDDD$JPS
RotationPivotSVector3DSVectorSDDD|JPS
ScalingOffsetSVector3DSVectorSDDD�IPSScalingPivotSVector3DSVectorSDDD.PSTranslationActiveSboolSSIhKPSTranslationMinSVector3DSVectorSDDD�KPSTranslationMaxSVector3DSVectorSDDD�,PSTranslationMinXSboolSSI5,PSTranslationMinYSboolSSIo,PSTranslationMinZSboolSSI�,PSTranslationMaxXSboolSSI�,PSTranslationMaxYSboolSSI,PSTranslationMaxZSboolSSIU*PS
RotationOrderSenumSSI�6PSRotationSpaceForLimitOnlySboolSSI�;PSRotationStiffnessXSdoubleSNumberSD+;PSRotationStiffnessYSdoubleSNumberSDt;PSRotationStiffnessZSdoubleSNumberSD�0PSAxisLenSdoubleSNumberSD$@HPSPreRotationSVector3DSVectorSDDD_IPSPostRotationSVector3DSVectorSDDD�+PSRotationActiveSboolSSI�HPSRotationMinSVector3DSVectorSDDDDHPSRotationMaxSVector3DSVectorSDDD{)PSRotationMinXSboolSSI�)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI )PSRotationMaxXSboolSSIW)PSRotationMaxYSboolSSI�)PSRotationMaxZSboolSSI�(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSIQGPS
ScalingMinSVector3DSVectorSDDD�GPS
ScalingMaxSVector3DSVectorSD�?D�?D�?�(PSScalingMinXSboolSSI(PSScalingMinYSboolSSIH(PSScalingMinZSboolSSI~(PSScalingMaxXSboolSSI�(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSIIQPSGeometricTranslationSVector3DSVectorSDDD�NPSGeometricRotationSVector3DSVectorSDDDMPSGeometricScalingSVector3DSVectorSD�?D�?D�?D6PS
MinDampRangeXSdoubleSNumberSD�6PS
MinDampRangeYSdoubleSNumberSD�6PS
MinDampRangeZSdoubleSNumberSD6PS
MaxDampRangeXSdoubleSNumberSDT6PS
MaxDampRangeYSdoubleSNumberSD�6PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSD&9PSMinDampStrengthYSdoubleSNumberSDm9PSMinDampStrengthZSdoubleSNumberSD�9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSDB9PSMaxDampStrengthZSdoubleSNumberSD�7PSPreferedAngleXSdoubleSNumberSD�7PSPreferedAngleYSdoubleSNumberSD 7PSPreferedAngleZSdoubleSNumberSDG (PSLookAtPropertySobjectSS *PSUpVectorPropertySobjectSS� !PSShowSboolSSI� 8PSNegativePercentShapeSupportSboolSSI:!8PSDefaultAttributeIndexSintSIntegerSI����k!#PSFreezeSboolSSI�!#PSLODBoxSboolSSI�!NPSLcl TranslationSLcl TranslationSSADDDN"HPSLcl RotationSLcl RotationSSADDD�"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?�"2PS
VisibilityS
VisibilitySSAD�?5#EPSVisibility InheritanceSVisibility InheritanceSSIu>
ObjectTypeS
NodeAttribute�#CountIVh>PropertyTemplateS	FbxCamera[>Properties70,$>PSPositionSVectorSSADDDI�x$>PSUpVectorSVectorSSADD�?D�$FPSInterestPositionSVectorSSADDD%&PSRollSRollSSADH%:PSOpticalCenterXSOpticalCenterXSSAD�%:PSOpticalCenterYSOpticalCenterYSSAD�%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?&-PS	TurnTableSNumberSSAD\&1PSDisplayTurnTableIconSboolSSI�&*PS
UseMotionBlurSboolSSI�&2PSUseRealTimeMotionBlurSboolSSI'9PSMotion Blur IntensitySNumberSSAD�?U',PSAspectRatioModeSenumSSI�'4PSAspectWidthSdoubleSNumberSDt@�'5PSAspectHeightSdoubleSNumberSDi@!(9PSPixelAspectRatioSdoubleSNumberSD�?^(/PSFilmOffsetXSNumberSSAD�(/PSFilmOffsetYSNumberSSAD�(2PS	FilmWidthSdoubleSNumberSD�&1��?)3PS
FilmHeightSdoubleSNumberSD/�$���?b)8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?�)9PSFilmSqueezeRatioSdoubleSNumberSD�?�),PSFilmFormatIndexSenumSSI*,PSPreScaleSNumberSSAD�?]*2PSFilmTranslateXSNumberSSAD�*2PSFilmTranslateYSNumberSSAD�*2PSFilmRollPivotXSNumberSSAD+2PSFilmRollPivotYSNumberSSAD\+1PS
FilmRollValueSNumberSSAD�+*PS
FilmRollOrderSenumSSI�+)PSApertureModeSenumSSI�+$PSGateFitSenumSSI?,4PSFieldOfViewSFieldOfViewSSAD�p9@�,6PSFieldOfViewXSFieldOfViewXSSADD@�,6PSFieldOfViewYSFieldOfViewYSSADD@-/PSFocalLengthSNumberSSAD&��VrA@;-)PSCameraFormatSenumSSIs-*PS
UseFrameColorSboolSSI�-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?�-%PSShowNameSboolSSI5.-PSShowInfoOnMovingSboolSSIh.%PSShowGridSboolSSI�..PSShowOpticalCenterSboolSSI�.'PS
ShowAzimutSboolSSI/)PSShowTimeCodeSboolSSID/&PS	ShowAudioSboolSSI�/GPS
AudioColorSVector3DSVectorSDD�?D�/2PS	NearPlaneSdoubleSNumberSD$@01PSFarPlaneSdoubleSNumberSD@�@W01PSAutoComputeClipPanesSboolSSI�0/PSViewCameraToLookAtSboolSSI�04PSViewFrustumNearFarPlaneSboolSSI15PSViewFrustumBackPlaneModeSenumSSI\15PSBackPlaneDistanceSNumberSSAD@�@�12PSBackPlaneDistanceModeSenumSSI�16PSViewFrustumFrontPlaneModeSenumSSI$26PSFrontPlaneDistanceSNumberSSAD$@e23PSFrontPlaneDistanceModeSenumSSI�2%PSLockModeSboolSSI�23PSLockInterestNavigationSboolSSI3.PSBackPlateFitImageSboolSSIM3*PS
BackPlateCropSboolSSI�3,PSBackPlateCenterSboolSSI�3/PSBackPlateKeepRatioSboolSSI4@PSBackgroundAlphaTresholdSdoubleSNumberSD�?J4*PS
ShowBackplateSboolSSI�44PSBackPlaneOffsetXSNumberSSAD�44PSBackPlaneOffsetYSNumberSSAD55PSBackPlaneRotationSNumberSSADR53PSBackPlaneScaleXSNumberSSAD�?�53PSBackPlaneScaleYSNumberSSAD�?�5,PSBackground TextureSobjectSS
6/PSFrontPlateFitImageSboolSSIC6+PSFrontPlateCropSboolSSI~6-PSFrontPlateCenterSboolSSI�60PSFrontPlateKeepRatioSboolSSI7;PSForeground OpacitySdoubleSNumberSD�?>7+PSShowFrontplateSboolSSI�75PSFrontPlaneOffsetXSNumberSSAD�75PSFrontPlaneOffsetYSNumberSSAD86PSFrontPlaneRotationSNumberSSADJ84PSFrontPlaneScaleXSNumberSSAD�?�84PSFrontPlaneScaleYSNumberSSAD�?�8,PSForeground TextureSobjectSS9,PSDisplaySafeAreaSboolSSIB94PSDisplaySafeAreaOnRenderSboolSSI�91PSSafeAreaDisplayStyleSenumSSI�9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?:/PSUse2DMagnifierZoomSboolSSIK:5PS2D Magnifier ZoomSNumberSSADY@�:2PS2D Magnifier XSNumberSSADI@�:2PS2D Magnifier YSNumberSSADI@
;1PSCameraProjectionTypeSenumSSIJ;2PS	OrthoZoomSdoubleSNumberSD�?�;0PSUseRealTimeDOFAndAASboolSSI�;,PSUseDepthOfFieldSboolSSI�;(PSFocusSourceSenumSSI9<3PS
FocusAngleSdoubleSNumberSD@}<6PS
FocusDistanceSdoubleSNumberSDi@�<,PSUseAntialiasingSboolSSI=>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?@=/PSAntialiasingMethodSenumSSI�=2PSUseAccumulationBufferSboolSSI�=5PSFrameSamplingCountSintSIntegerSI�=.PSFrameSamplingTypeSenumSSIN>APSColorSColorRGBSColorSD�������?D�������?D�������?�>
ObjectTypeSMotionBuilder_Generic�>CountI�A
ObjectTypeSAnimationLayer?CountIzAPropertyTemplateSFbxAnimLayermAProperties70�?*PSWeightSNumberSSADY@�?!PSMuteSboolSSI�?!PSSoloSboolSSI@!PSLockSboolSSIf@APSColorSColorRGBSColorSD�������?D�������?D�������?�@&PS	BlendModeSenumSSI�@5PSRotationAccumulationModeSenumSSIA2PSScaleAccumulationModeSenumSSI`A5PSBlendModeBypassS	ULongLongSSLmC
ObjectTypeSAnimationStack�ACountI`CPropertyTemplateSFbxAnimStackSCProperties70HB+PSDescriptionSKStringSSS�B0PS
LocalStartSKTimeSTimeSL�B/PS	LocalStopSKTimeSTimeSLC4PSReferenceStartSKTimeSTimeSLFC3PS
ReferenceStopSKTimeSTimeSL�C
ObjectTypeSAnimationCurveNode�CCountIL
D
ObjectTypeSAnimationCurveDCountI�oN
ObjectsI<
NodeAttributeLHEK;S#Producer PerspectiveNodeAttributeSCamera�GProperties70�D>PSPositionSVectorSSADD b@D�r@=EFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@D�EDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�E1PSDisplayTurnTableIconSboolSSIF,PSFilmFormatIndexSenumSSIJF4PSFieldOfViewSFieldOfViewSSADD@�F/PSFocalLengthSNumberSSAD �Z5@�F<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?G5PS2D Magnifier ZoomSNumberSSADTG2PS2D Magnifier XSNumberSSAD�G2PS2D Magnifier YSNumberSSAD�G	TypeFlagsSCamera�GGeometryVersionI|HPositionDD b@D�r@=HUpDD�?DkHLookAtD1�ʧ�U�<D�����V@D�HShowInfoOnMovingI�H	ShowAudioI�H
AudioColorDD�?D�H	CameraOrthoZoomD�?�N6
NodeAttributeLPIK;SProducer FrontNodeAttributeSCamera7MProperties70�I>PSPositionSVectorSSADD�V@DL�@JFPSInterestPositionSVectorSSADD�V@DgJDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�J1PSDisplayTurnTableIconSboolSSI�J,PSFilmFormatIndexSenumSSI"K4PSFieldOfViewSFieldOfViewSSADD@_K/PSFocalLengthSNumberSSAD �Z5@�K2PS	NearPlaneSdoubleSNumberSD�?�K1PSFarPlaneSdoubleSNumberSDL�@(L<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?kL5PS2D Magnifier ZoomSNumberSSAD�L2PS2D Magnifier XSNumberSSAD�L2PS2D Magnifier YSNumberSSAD*M1PSCameraProjectionTypeSenumSSIXM	TypeFlagsSCamerayMGeometryVersionI|�MPositionDD�V@DL�@�MUpDD�?DNLookAtDD�V@D#NShowInfoOnMovingI>N	ShowAudioIpN
AudioColorDD�?D�N	CameraOrthoZoomD�?7T5
NodeAttributeLXMK;SProducer BackNodeAttributeSCamera�RProperties70VO>PSPositionSVectorSSADD�V@DL���OFPSInterestPositionSVectorSSADD�V@D�ODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?;P1PSDisplayTurnTableIconSboolSSIuP,PSFilmFormatIndexSenumSSI�P4PSFieldOfViewSFieldOfViewSSADD@�P/PSFocalLengthSNumberSSAD �Z5@4Q2PS	NearPlaneSdoubleSNumberSD�?sQ1PSFarPlaneSdoubleSNumberSDL�@�Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?R5PS2D Magnifier ZoomSNumberSSAD@R2PS2D Magnifier XSNumberSSAD�R2PS2D Magnifier YSNumberSSAD�R1PSCameraProjectionTypeSenumSSI�R	TypeFlagsSCameraSGeometryVersionI|>SPositionDD�V@DL��hSUpDD�?D�SLookAtDD�V@D�SShowInfoOnMovingI�S	ShowAudioIT
AudioColorDD�?D*T	CameraOrthoZoomD�?�Y6
NodeAttributeL�K;SProducer RightNodeAttributeSCamerabXProperties70�T>PSPositionSVectorSSADL�@D�V@D@UFPSInterestPositionSVectorSSADD�V@D�UDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�U1PSDisplayTurnTableIconSboolSSIV,PSFilmFormatIndexSenumSSIMV4PSFieldOfViewSFieldOfViewSSADD@�V/PSFocalLengthSNumberSSAD �Z5@�V2PS	NearPlaneSdoubleSNumberSD�?	W1PSFarPlaneSdoubleSNumberSDL�@SW<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�W5PS2D Magnifier ZoomSNumberSSAD�W2PS2D Magnifier XSNumberSSADX2PS2D Magnifier YSNumberSSADUX1PSCameraProjectionTypeSenumSSI�X	TypeFlagsSCamera�XGeometryVersionI|�XPositionDL�@D�V@D�XUpDD�?D,YLookAtDD�V@DNYShowInfoOnMovingIiY	ShowAudioI�Y
AudioColorDD�?D�Y	CameraOrthoZoomD�?b_5
NodeAttributeL�K;SProducer LeftNodeAttributeSCamera�]Properties70�Z>PSPositionSVectorSSADL��D�V@D�ZFPSInterestPositionSVectorSSADD�V@D'[DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?f[1PSDisplayTurnTableIconSboolSSI�[,PSFilmFormatIndexSenumSSI�[4PSFieldOfViewSFieldOfViewSSADD@\/PSFocalLengthSNumberSSAD �Z5@_\2PS	NearPlaneSdoubleSNumberSD�?�\1PSFarPlaneSdoubleSNumberSDL�@�\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?+]5PS2D Magnifier ZoomSNumberSSADk]2PS2D Magnifier XSNumberSSAD�]2PS2D Magnifier YSNumberSSAD�]1PSCameraProjectionTypeSenumSSI^	TypeFlagsSCamera9^GeometryVersionI|i^PositionDL��D�V@D�^UpDD�?D�^LookAtDD�V@D�^ShowInfoOnMovingI�^	ShowAudioI0_
AudioColorDD�?DU_	CameraOrthoZoomD�?Be4
NodeAttributeL!K;SProducer TopNodeAttributeSCamera�cProperties70`>PSPositionSVectorSSADDy�@Da`>PSUpVectorSVectorSSADDD�`FPSInterestPositionSVectorSSADD�V@DaDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?Fa1PSDisplayTurnTableIconSboolSSI�a,PSFilmFormatIndexSenumSSI�a4PSFieldOfViewSFieldOfViewSSADD@�a/PSFocalLengthSNumberSSAD �Z5@?b2PS	NearPlaneSdoubleSNumberSD�?~b1PSFarPlaneSdoubleSNumberSDL�@�b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?c5PS2D Magnifier ZoomSNumberSSADKc2PS2D Magnifier XSNumberSSAD�c2PS2D Magnifier YSNumberSSAD�c1PSCameraProjectionTypeSenumSSI�c	TypeFlagsSCameradGeometryVersionI|IdPositionDDy�@DsdUpDDD�dLookAtDD�V@D�dShowInfoOnMovingI�d	ShowAudioIe
AudioColorDD�?D5e	CameraOrthoZoomD�?%k7
NodeAttributeL%K;SProducer BottomNodeAttributeSCamera�iProperties70�e>PSPositionSVectorSSADD��DDf>PSUpVectorSVectorSSAD�D�D�?�fFPSInterestPositionSVectorSSADD�V@D�fDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?)g1PSDisplayTurnTableIconSboolSSIcg,PSFilmFormatIndexSenumSSI�g4PSFieldOfViewSFieldOfViewSSADD@�g/PSFocalLengthSNumberSSAD �Z5@"h2PS	NearPlaneSdoubleSNumberSD�?ah1PSFarPlaneSdoubleSNumberSDL�@�h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�h5PS2D Magnifier ZoomSNumberSSAD.i2PS2D Magnifier XSNumberSSADni2PS2D Magnifier YSNumberSSAD�i1PSCameraProjectionTypeSenumSSI�i	TypeFlagsSCamera�iGeometryVersionI|,jPositionDD��DVjUpD�D�D�?�jLookAtDD�V@D�jShowInfoOnMovingI�j	ShowAudioI�j
AudioColorDD�?Dk	CameraOrthoZoomD�?�l?
NodeAttributeL�_X;SCamera SwitcherNodeAttributeSCameraSwitcher�kProperties70�k-PSCamera IndexSIntegerSSAI�kVersionIe$lNameSCamera SwitcherModel>lCameraIdIZl
CameraNameIdvlCameraIndexName�l*
NodeAttributeL���-SNodeAttributeSLimbNode�l
	TypeFlagsSSkeletonkm*
NodeAttributeL��-SNodeAttributeSLimbNode^m
	TypeFlagsSSkeleton�m*
NodeAttributeL.�-SNodeAttributeSLimbNode�m
	TypeFlagsSSkeletonSn*
NodeAttributeL`�-SNodeAttributeSLimbNodeFn
	TypeFlagsSSkeleton�n*
NodeAttributeL�Y�-SNodeAttributeSLimbNode�n
	TypeFlagsSSkeleton;o*
NodeAttributeL���-SNodeAttributeSLimbNode.o
	TypeFlagsSSkeleton�o*
NodeAttributeL���-SNodeAttributeSLimbNode�o
	TypeFlagsSSkeleton#p*
NodeAttributeL��-SNodeAttributeSLimbNodep
	TypeFlagsSSkeleton�p*
NodeAttributeL���-SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonq*
NodeAttributeL��-SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonq*
NodeAttributeL�*�-SNodeAttributeSLimbNoderq
	TypeFlagsSSkeleton�q*
NodeAttributeL��-SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletongr*
NodeAttributeL#�-SNodeAttributeSLimbNodeZr
	TypeFlagsSSkeleton�r*
NodeAttributeL���-SNodeAttributeSLimbNode�r
	TypeFlagsSSkeletonOs*
NodeAttributeL���-SNodeAttributeSLimbNodeBs
	TypeFlagsSSkeleton�s*
NodeAttributeL���-SNodeAttributeSLimbNode�s
	TypeFlagsSSkeleton7t*
NodeAttributeLH�-SNodeAttributeSLimbNode*t
	TypeFlagsSSkeleton�t*
NodeAttributeL���-SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletonu*
NodeAttributeL�l�-SNodeAttributeSLimbNodeu
	TypeFlagsSSkeleton�u*
NodeAttributeL��-SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletonv*
NodeAttributeLH��-SNodeAttributeSLimbNode�u
	TypeFlagsSSkeleton{v*
NodeAttributeL�'�-SNodeAttributeSLimbNodenv
	TypeFlagsSSkeleton�v*
NodeAttributeL�-�-SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletoncw*
NodeAttributeLH��-SNodeAttributeSLimbNodeVw
	TypeFlagsSSkeleton�w*
NodeAttributeL��-SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonKx*
NodeAttributeL�-SNodeAttributeSLimbNode>x
	TypeFlagsSSkeleton�x*
NodeAttributeL%�-SNodeAttributeSLimbNode�x
	TypeFlagsSSkeleton3y*
NodeAttributeL�-SNodeAttributeSLimbNode&y
	TypeFlagsSSkeleton�y*
NodeAttributeLH��-SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonz*
NodeAttributeL<�-SNodeAttributeSLimbNodez
	TypeFlagsSSkeleton�z*
NodeAttributeL��-SNodeAttributeSLimbNode�z
	TypeFlagsSSkeleton{*
NodeAttributeLH��-SNodeAttributeSLimbNode�z
	TypeFlagsSSkeletonw{*
NodeAttributeL� �-SNodeAttributeSLimbNodej{
	TypeFlagsSSkeleton�{*
NodeAttributeLȾ�-SNodeAttributeSLimbNode�{
	TypeFlagsSSkeleton_|*
NodeAttributeL�-SNodeAttributeSLimbNodeR|
	TypeFlagsSSkeleton�|*
NodeAttributeL���-SNodeAttributeSLimbNode�|
	TypeFlagsSSkeletonG}*
NodeAttributeLH��-SNodeAttributeSLimbNode:}
	TypeFlagsSSkeleton�}*
NodeAttributeL���-SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton/~*
NodeAttributeL���-SNodeAttributeSLimbNode"~
	TypeFlagsSSkeleton�~*
NodeAttributeLȼ�-SNodeAttributeSLimbNode�~
	TypeFlagsSSkeleton*
NodeAttributeLH��-SNodeAttributeSLimbNode

	TypeFlagsSSkeleton�*
NodeAttributeLȟ�-SNodeAttributeSLimbNode~
	TypeFlagsSSkeleton�*
NodeAttributeLH��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletons�*
NodeAttributeL��-SNodeAttributeSLimbNodef�
	TypeFlagsSSkeleton�*
NodeAttributeLH��-SNodeAttributeSLimbNodeڀ
	TypeFlagsSSkeleton[�*
NodeAttributeLH#�-SNodeAttributeSLimbNodeN�
	TypeFlagsSSkeletonρ*
NodeAttributeL��-SNodeAttributeSLimbNode
	TypeFlagsSSkeletonC�*
NodeAttributeL(�-SNodeAttributeSLimbNode6�
	TypeFlagsSSkeleton��*
NodeAttributeL��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton+�*
NodeAttributeL��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL���-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�O�-SNodeAttributeSLimbNodez�
	TypeFlagsSSkeleton��*
NodeAttributeL4�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletono�*
NodeAttributeLH�-SNodeAttributeSLimbNodeb�
	TypeFlagsSSkeleton�*
NodeAttributeLH$�-SNodeAttributeSLimbNodeօ
	TypeFlagsSSkeletonW�*
NodeAttributeLH��-SNodeAttributeSLimbNodeJ�
	TypeFlagsSSkeletonˆ*
NodeAttributeLH�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton?�*
NodeAttributeL��-SNodeAttributeSLimbNode2�
	TypeFlagsSSkeleton��*
NodeAttributeLHK�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton'�*
NodeAttributeLi�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeLH��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�B�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���-SNodeAttributeSLimbNodev�
	TypeFlagsSSkeleton��*
NodeAttributeL���-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonk�*
NodeAttributeL���-SNodeAttributeSLimbNode^�
	TypeFlagsSSkeletonߊ*
NodeAttributeL��-SNodeAttributeSLimbNodeҊ
	TypeFlagsSSkeletonS�*
NodeAttributeL���-SNodeAttributeSLimbNodeF�
	TypeFlagsSSkeletonNj*
NodeAttributeLH�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton;�*
NodeAttributeL��-SNodeAttributeSLimbNode.�
	TypeFlagsSSkeleton��*
NodeAttributeL�Q�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton#�*
NodeAttributeL��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�\�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL���-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL��-SNodeAttributeSLimbNoder�
	TypeFlagsSSkeleton�*
NodeAttributeL�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletong�*
NodeAttributeLH��-SNodeAttributeSLimbNodeZ�
	TypeFlagsSSkeletonۏ*
NodeAttributeL���-SNodeAttributeSLimbNodeΏ
	TypeFlagsSSkeleton$�4ModelL.v)SProducer PerspectiveModelSCamera:�VersionI�ޘProperties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?א!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIy�NPSLcl TranslationSLcl TranslationSSADD b@D�r@ϑHPSLcl RotationSLcl RotationSSAD�V�D����S@D�V�	�,PS	MultiTakeSintSIntegerSID�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIb�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI+�3PSRotationAxisVisibilitySboolSSIj�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI;�8PSReferentialSizeSdoubleSNumberSD(@~�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*�*PS
TransformableSboolSSI`�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIԖ+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?P�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI�#PSCenterSboolSSI�&PS	KeepRatioSboolSSIW�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSIј*PSResetCameraSActionSSI��ShadingCW�CullingS
CullingOffg�.ModelL)v)SProducer FrontModelSCamera}�VersionI�!�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI`�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL�@�HPSLcl RotationSLcl RotationSSADD�V@DL�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD'�/PSSetPreferedAngleSActionSSIb�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI-�2PSRotationRefVisibilitySboolSSIn�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI8�6PSGeometricCenterVisibilitySboolSSI~�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI5�%PSPickableSboolSSIm�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIޟ-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSIU�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?Ơ%PSFitImageSboolSSI��!PSCropSboolSSI&�#PSCenterSboolSSIZ�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSIܡ4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI7�ShadingCWZ�CullingS
CullingOff��-ModelL$v)SProducer BackModelSCamera��VersionI�c�Properties70-�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?\�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL��T�HPSLcl RotationSLcl RotationSSAD�D�V�D��,PS	MultiTakeSintSIntegerSIɤ-PSManipulationModeSenumSSI,�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDi�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI/�:PSLocalTranslationRefVisibilitySboolSSIo�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI6�9PSHierarchicalCenterVisibilitySboolSSIz�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSID�3PSDefaultKeyingGroupEnumSenumSSIw�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI �-PSShowTrajectoriesSboolSSIY�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?թ0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI7�!PSCropSboolSSIh�#PSCenterSboolSSI��&PS	KeepRatioSboolSSIܪ2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSIV�*PSResetCameraSActionSSIy�ShadingCW��CullingS
CullingOff�.ModelL�v)SProducer RightModelSCamera�VersionI���Properties70p�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIA�NPSLcl TranslationSLcl TranslationSSADL�@D�V@D��HPSLcl RotationSLcl RotationSSAD�f@D�D�f@ѭ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIo�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI*�5PSRotationLimitsVisibilitySboolSSIr�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI2�1PSScalingRefVisibilitySboolSSIy�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@F�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI(�(PSCullingModeSenumSSIc�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSIڲ0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?K�%PSFitImageSboolSSIz�!PSCropSboolSSI��#PSCenterSboolSSI߳&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIa�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCWߴCullingS
CullingOffؽ-ModelL�v)SProducer LeftModelSCameraD�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI'�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADL��D�V@D��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI[�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIӷ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI^�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI߸3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIe�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@2�5PSDefaultKeyingGroupSintSIntegerSIs�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI޺*PS
TransformableSboolSSI�(PSCullingModeSenumSSIO�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSIƻ0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?7�%PSFitImageSboolSSIf�!PSCropSboolSSI��#PSCenterSboolSSI˼&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIM�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW˽CullingS
CullingOff�,ModelL�v)SProducer TopModelSCamera/�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?̾!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIn�NPSLcl TranslationSLcl TranslationSSADDy�@DĿHPSLcl RotationSLcl RotationSSAD�V�D�D�V���,PS	MultiTakeSintSIntegerSI9�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIW�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI �3PSRotationAxisVisibilitySboolSSI_�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI0�8PSReferentialSizeSdoubleSNumberSD(@s�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIU�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?E�0PSAspectHSdoubleSNumberSD�?x�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSIL�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW�CullingS
CullingOff]�/ModelLPVv)SProducer BottomModelSCameras�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSIV�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD��D�HPSLcl RotationSLcl RotationSSAD�V@D�D�V@B�,PS	MultiTakeSintSIntegerSI}�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIX�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI#�2PSRotationRefVisibilitySboolSSId�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI.�6PSGeometricCenterVisibilitySboolSSIt�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI+�%PSPickableSboolSSIc�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI
�+PSResolutionModeSenumSSIK�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI�#PSCenterSboolSSIP�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI
�*PSResetCameraSActionSSI-�ShadingCWP�CullingS
CullingOff��7ModelL�[�9SCamera SwitcherModelSCameraSwitcher��VersionI�{�Properties70-�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?\�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIz�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI5�5PSRotationLimitsVisibilitySboolSSI}�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI=�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@Q�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI3�(PSCullingModeSenumSSIn�-PSShowTrajectoriesSboolSSI��ShadingCW��CullingS
CullingOff��+ModelL�`�9SReferenceModelSLimbNode�VersionI���Properties70i�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD:�8PSDefaultAttributeIndexSintSIntegerSI��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIe�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI �5PSRotationLimitsVisibilitySboolSSIh�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI(�1PSScalingRefVisibilitySboolSSIo�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@<�5PSDefaultKeyingGroupSintSIntegerSI}�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIY�-PSShowTrajectoriesSboolSSI��3PSlockInfluenceWeightsSBoolSSAUI��ShadingCY��CullingS
CullingOffU�'ModelL�e�9SPivotModelSLimbNode?�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDb�8PSDefaultAttributeIndexSintSIntegerSI��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI*�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIH�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIP�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI!�8PSReferentialSizeSdoubleSNumberSD(@d�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIF�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@%�ShadingCYH�CullingS
CullingOff��&ModelL�j�9SRootModelSLimbNode��VersionI�v�Properties70��+PSRotationActiveSboolSSI.�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�EPSVisibility InheritanceSVisibility InheritanceSSIV�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD1�/PSSetPreferedAngleSActionSSIl�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI7�2PSRotationRefVisibilitySboolSSIx�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIB�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI?�%PSPickableSboolSSIw�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIi�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��&ModelL�o�9SHipsModelSLimbNode
�VersionI���Properties70_�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD0�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D`�p@D��W@D������IPSLcl RotationSLcl RotationSSA+D`we@@D�T�D��(A�7�EPSVisibility InheritanceSVisibility InheritanceSSIq�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDL�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIR�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI]�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI'�3PSDefaultKeyingGroupEnumSenumSSIZ�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI3�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��'ModelL�t�9SSpineModelSLimbNode)�VersionI���Properties70{�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDL�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD@�D�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D`�@D I,�D@dY#@R�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI*�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDg�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI-�:PSLocalTranslationRefVisibilitySboolSSIm�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI4�9PSHierarchicalCenterVisibilitySboolSSIx�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIB�3PSDefaultKeyingGroupEnumSenumSSIu�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIN�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff
'ModelL�y�9SChestModelSLimbNodeD�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI!�GPS
ScalingMaxSVector3DSVectorSDDDg�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADDA0@D�2ſ�IPSLcl RotationSLcl RotationSSA+D`�˿D`��D����m�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIEUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIH:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIO9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSI]3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI9-PSShowTrajectoriesSboolSSIi"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff'
&ModelL�~�9SNeckModelSLimbNode^VersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI;GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADD`��9@D <�	�4IPSLcl RotationSLcl RotationSSA+D�i��D`(9
�D Q���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI_UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI	5PSRotationLimitsVisibilitySboolSSIb	:PSLocalTranslationRefVisibilitySboolSSI�	2PSRotationRefVisibilitySboolSSI�	3PSRotationAxisVisibilitySboolSSI"
1PSScalingRefVisibilitySboolSSIi
9PSHierarchicalCenterVisibilitySboolSSI�
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@65PSDefaultKeyingGroupSintSIntegerSIw3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIS-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY
CullingS
CullingOffA&ModelL��9SHeadModelSLimbNodex
VersionI��Properties70�
+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIUGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@;D 4� @D s�?NIPSLcl RotationSLcl RotationSSA+D*�"�Dа�D|�@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIyUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI45PSRotationLimitsVisibilitySboolSSI|:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI<1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI
8PSReferentialSizeSdoubleSNumberSD(@P5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI2(PSCullingModeSenumSSIm-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY4CullingS
CullingOff^)ModelL���9SLeftEyeModelSLimbNode�VersionI�Properties70�+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIrGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@kIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI3-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIQ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3PSRotationAxisVisibilitySboolSSIY1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI*8PSReferentialSizeSdoubleSNumberSD(@m5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSIO(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@.ShadingCYQCullingS
CullingOff�%*ModelL���9SRightEyeModelSLimbNode�VersionI�n%Properties70*PS
RotationOrderSenumSSI=+PSRotationActiveSboolSSIs(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSIjNPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ EPSVisibility InheritanceSVisibility InheritanceSSIN ,PS	MultiTakeSintSIntegerSI� -PSManipulationModeSenumSSI� UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD)!/PSSetPreferedAngleSActionSSId!-PSPivotsVisibilitySenumSSI�!5PSRotationLimitsVisibilitySboolSSI�!:PSLocalTranslationRefVisibilitySboolSSI/"2PSRotationRefVisibilitySboolSSIp"3PSRotationAxisVisibilitySboolSSI�"1PSScalingRefVisibilitySboolSSI�"9PSHierarchicalCenterVisibilitySboolSSI:#6PSGeometricCenterVisibilitySboolSSI�#8PSReferentialSizeSdoubleSNumberSD(@�#5PSDefaultKeyingGroupSintSIntegerSI$3PSDefaultKeyingGroupEnumSenumSSI7$%PSPickableSboolSSIo$*PS
TransformableSboolSSI�$(PSCullingModeSenumSSI�$-PSShowTrajectoriesSboolSSI%"PSliwSBoolSSAUIa%CPSLimbLength 1SNumberSSAUD�?DDY@�%ShadingCY�%CullingS
CullingOff.%ModelL��9S
JawModelSLimbNode&VersionI��-Properties70V&+PSRotationActiveSboolSSI�&(PSInheritTypeSenumSSI�&GPS
ScalingMaxSVector3DSVectorSDDD&'7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@l'8PSDefaultAttributeIndexSintSIntegerSI�'NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?(IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټr(EPSVisibility InheritanceSVisibility InheritanceSSI�(,PS	MultiTakeSintSIntegerSI�(-PSManipulationModeSenumSSIJ)UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�)/PSSetPreferedAngleSActionSSI�)-PSPivotsVisibilitySenumSSI*5PSRotationLimitsVisibilitySboolSSIM*:PSLocalTranslationRefVisibilitySboolSSI�*2PSRotationRefVisibilitySboolSSI�*3PSRotationAxisVisibilitySboolSSI
+1PSScalingRefVisibilitySboolSSIT+9PSHierarchicalCenterVisibilitySboolSSI�+6PSGeometricCenterVisibilitySboolSSI�+8PSReferentialSizeSdoubleSNumberSD(@!,5PSDefaultKeyingGroupSintSIntegerSIb,3PSDefaultKeyingGroupEnumSenumSSI�,%PSPickableSboolSSI�,*PS
TransformableSboolSSI-(PSCullingModeSenumSSI>--PSShowTrajectoriesSboolSSIn-"PSliwSBoolSSAUI�-CPSLimbLength 1SNumberSSAUD�?DDY@�-ShadingCY.CullingS
CullingOff26,ModelL�:STongueBackModelSLimbNodei.VersionI��5Properties70�.+PSRotationActiveSboolSSI�.(PSInheritTypeSenumSSIF/GPS
ScalingMaxSVector3DSVectorSDDD�/8PSDefaultAttributeIndexSintSIntegerSI�/NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�??0IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�0EPSVisibility InheritanceSVisibility InheritanceSSI�0,PS	MultiTakeSintSIntegerSI1-PSManipulationModeSenumSSIj1UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�1/PSSetPreferedAngleSActionSSI�1-PSPivotsVisibilitySenumSSI%25PSRotationLimitsVisibilitySboolSSIm2:PSLocalTranslationRefVisibilitySboolSSI�22PSRotationRefVisibilitySboolSSI�23PSRotationAxisVisibilitySboolSSI-31PSScalingRefVisibilitySboolSSIt39PSHierarchicalCenterVisibilitySboolSSI�36PSGeometricCenterVisibilitySboolSSI�38PSReferentialSizeSdoubleSNumberSD(@A45PSDefaultKeyingGroupSintSIntegerSI�43PSDefaultKeyingGroupEnumSenumSSI�4%PSPickableSboolSSI�4*PS
TransformableSboolSSI#5(PSCullingModeSenumSSI^5-PSShowTrajectoriesSboolSSI�5"PSliwSBoolSSAUI�5CPSLimbLength 1SNumberSSAUD�?DDY@6ShadingCY%6CullingS
CullingOffQ>+ModelL:STongueTipModelSLimbNode�6VersionI�>Properties70�6+PSRotationActiveSboolSSI7(PSInheritTypeSenumSSIe7GPS
ScalingMaxSVector3DSVectorSDDD�78PSDefaultAttributeIndexSintSIntegerSI8NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@^8IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�8EPSVisibility InheritanceSVisibility InheritanceSSI�8,PS	MultiTakeSintSIntegerSI&9-PSManipulationModeSenumSSI�9UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�9/PSSetPreferedAngleSActionSSI:-PSPivotsVisibilitySenumSSID:5PSRotationLimitsVisibilitySboolSSI�::PSLocalTranslationRefVisibilitySboolSSI�:2PSRotationRefVisibilitySboolSSI
;3PSRotationAxisVisibilitySboolSSIL;1PSScalingRefVisibilitySboolSSI�;9PSHierarchicalCenterVisibilitySboolSSI�;6PSGeometricCenterVisibilitySboolSSI<8PSReferentialSizeSdoubleSNumberSD(@`<5PSDefaultKeyingGroupSintSIntegerSI�<3PSDefaultKeyingGroupEnumSenumSSI�<%PSPickableSboolSSI=*PS
TransformableSboolSSIB=(PSCullingModeSenumSSI}=-PSShowTrajectoriesSboolSSI�="PSliwSBoolSSAUI�=CPSLimbLength 1SNumberSSAUD�?DDY@!>ShadingCYD>CullingS
CullingOffsF.ModelL:SLeftLipLowerModelSLimbNode�>VersionI�-FProperties70�>+PSRotationActiveSboolSSI2?(PSInheritTypeSenumSSI�?GPS
ScalingMaxSVector3DSVectorSDDD�?8PSDefaultAttributeIndexSintSIntegerSI)@NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @�@IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�@EPSVisibility InheritanceSVisibility InheritanceSSI
A,PS	MultiTakeSintSIntegerSIHA-PSManipulationModeSenumSSI�AUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�A/PSSetPreferedAngleSActionSSI#B-PSPivotsVisibilitySenumSSIfB5PSRotationLimitsVisibilitySboolSSI�B:PSLocalTranslationRefVisibilitySboolSSI�B2PSRotationRefVisibilitySboolSSI/C3PSRotationAxisVisibilitySboolSSInC1PSScalingRefVisibilitySboolSSI�C9PSHierarchicalCenterVisibilitySboolSSI�C6PSGeometricCenterVisibilitySboolSSI?D8PSReferentialSizeSdoubleSNumberSD(@�D5PSDefaultKeyingGroupSintSIntegerSI�D3PSDefaultKeyingGroupEnumSenumSSI�D%PSPickableSboolSSI.E*PS
TransformableSboolSSIdE(PSCullingModeSenumSSI�E-PSShowTrajectoriesSboolSSI�E"PSliwSBoolSSAUI FCPSLimbLength 1SNumberSSAUD�?DDY@CFShadingCYfFCullingS
CullingOff�N(ModelL:S
JawENDModelSLimbNode�FVersionI��NProperties70G*PS
RotationOrderSenumSSIPG+PSRotationActiveSboolSSI�G(PSInheritTypeSenumSSI�GGPS
ScalingMaxSVector3DSVectorSDDD!H8PSDefaultAttributeIndexSintSIntegerSI}HNPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�HIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ'IEPSVisibility InheritanceSVisibility InheritanceSSIaI,PS	MultiTakeSintSIntegerSI�I-PSManipulationModeSenumSSI�IUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD<J/PSSetPreferedAngleSActionSSIwJ-PSPivotsVisibilitySenumSSI�J5PSRotationLimitsVisibilitySboolSSIK:PSLocalTranslationRefVisibilitySboolSSIBK2PSRotationRefVisibilitySboolSSI�K3PSRotationAxisVisibilitySboolSSI�K1PSScalingRefVisibilitySboolSSI	L9PSHierarchicalCenterVisibilitySboolSSIML6PSGeometricCenterVisibilitySboolSSI�L8PSReferentialSizeSdoubleSNumberSD(@�L5PSDefaultKeyingGroupSintSIntegerSIM3PSDefaultKeyingGroupEnumSenumSSIJM%PSPickableSboolSSI�M*PS
TransformableSboolSSI�M(PSCullingModeSenumSSI�M-PSShowTrajectoriesSboolSSI#N"PSliwSBoolSSAUItNCPSLimbLength 1SNumberSSAUD�?DDY@�NShadingCY�NCullingS
CullingOff�V/ModelL:SRightLipLowerModelSLimbNode!OVersionI��VProperties70sO+PSRotationActiveSboolSSI�O(PSInheritTypeSenumSSI�OGPS
ScalingMaxSVector3DSVectorSDDDDP8PSDefaultAttributeIndexSintSIntegerSI�PNPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @�PIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټJQEPSVisibility InheritanceSVisibility InheritanceSSI�Q,PS	MultiTakeSintSIntegerSI�Q-PSManipulationModeSenumSSI"RUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD_R/PSSetPreferedAngleSActionSSI�R-PSPivotsVisibilitySenumSSI�R5PSRotationLimitsVisibilitySboolSSI%S:PSLocalTranslationRefVisibilitySboolSSIeS2PSRotationRefVisibilitySboolSSI�S3PSRotationAxisVisibilitySboolSSI�S1PSScalingRefVisibilitySboolSSI,T9PSHierarchicalCenterVisibilitySboolSSIpT6PSGeometricCenterVisibilitySboolSSI�T8PSReferentialSizeSdoubleSNumberSD(@�T5PSDefaultKeyingGroupSintSIntegerSI:U3PSDefaultKeyingGroupEnumSenumSSImU%PSPickableSboolSSI�U*PS
TransformableSboolSSI�U(PSCullingModeSenumSSIV-PSShowTrajectoriesSboolSSIFV"PSliwSBoolSSAUI�VCPSLimbLength 1SNumberSSAUD�?DDY@�VShadingCY�VCullingS
CullingOff_0ModelL ":SRightLipCornerModelSLimbNodeEWVersionI��^Properties70�W+PSRotationActiveSboolSSI�W(PSInheritTypeSenumSSI"XGPS
ScalingMaxSVector3DSVectorSDDDhX8PSDefaultAttributeIndexSintSIntegerSI�XNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@YIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټnYEPSVisibility InheritanceSVisibility InheritanceSSI�Y,PS	MultiTakeSintSIntegerSI�Y-PSManipulationModeSenumSSIFZUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�Z/PSSetPreferedAngleSActionSSI�Z-PSPivotsVisibilitySenumSSI[5PSRotationLimitsVisibilitySboolSSII[:PSLocalTranslationRefVisibilitySboolSSI�[2PSRotationRefVisibilitySboolSSI�[3PSRotationAxisVisibilitySboolSSI	\1PSScalingRefVisibilitySboolSSIP\9PSHierarchicalCenterVisibilitySboolSSI�\6PSGeometricCenterVisibilitySboolSSI�\8PSReferentialSizeSdoubleSNumberSD(@]5PSDefaultKeyingGroupSintSIntegerSI^]3PSDefaultKeyingGroupEnumSenumSSI�]%PSPickableSboolSSI�]*PS
TransformableSboolSSI�](PSCullingModeSenumSSI:^-PSShowTrajectoriesSboolSSIj^"PSliwSBoolSSAUI�^CPSLimbLength 1SNumberSSAUD�?DDY@�^ShadingCY_CullingS
CullingOff1g/ModelL(':SLeftLipCornerModelSLimbNodeh_VersionI��fProperties70�_+PSRotationActiveSboolSSI�_(PSInheritTypeSenumSSIE`GPS
ScalingMaxSVector3DSVectorSDDD�`8PSDefaultAttributeIndexSintSIntegerSI�`NPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@>aIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�aEPSVisibility InheritanceSVisibility InheritanceSSI�a,PS	MultiTakeSintSIntegerSIb-PSManipulationModeSenumSSIibUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�b/PSSetPreferedAngleSActionSSI�b-PSPivotsVisibilitySenumSSI$c5PSRotationLimitsVisibilitySboolSSIlc:PSLocalTranslationRefVisibilitySboolSSI�c2PSRotationRefVisibilitySboolSSI�c3PSRotationAxisVisibilitySboolSSI,d1PSScalingRefVisibilitySboolSSIsd9PSHierarchicalCenterVisibilitySboolSSI�d6PSGeometricCenterVisibilitySboolSSI�d8PSReferentialSizeSdoubleSNumberSD(@@e5PSDefaultKeyingGroupSintSIntegerSI�e3PSDefaultKeyingGroupEnumSenumSSI�e%PSPickableSboolSSI�e*PS
TransformableSboolSSI"f(PSCullingModeSenumSSI]f-PSShowTrajectoriesSboolSSI�f"PSliwSBoolSSAUI�fCPSLimbLength 1SNumberSSAUD�?DDY@gShadingCY$gCullingS
CullingOffSo.ModelL0,:SLeftLipUpperModelSLimbNode�gVersionI�
oProperties70�g+PSRotationActiveSboolSSIh(PSInheritTypeSenumSSIghGPS
ScalingMaxSVector3DSVectorSDDD�h8PSDefaultAttributeIndexSintSIntegerSI	iNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@`iIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�iEPSVisibility InheritanceSVisibility InheritanceSSI�i,PS	MultiTakeSintSIntegerSI(j-PSManipulationModeSenumSSI�jUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�j/PSSetPreferedAngleSActionSSIk-PSPivotsVisibilitySenumSSIFk5PSRotationLimitsVisibilitySboolSSI�k:PSLocalTranslationRefVisibilitySboolSSI�k2PSRotationRefVisibilitySboolSSIl3PSRotationAxisVisibilitySboolSSINl1PSScalingRefVisibilitySboolSSI�l9PSHierarchicalCenterVisibilitySboolSSI�l6PSGeometricCenterVisibilitySboolSSIm8PSReferentialSizeSdoubleSNumberSD(@bm5PSDefaultKeyingGroupSintSIntegerSI�m3PSDefaultKeyingGroupEnumSenumSSI�m%PSPickableSboolSSIn*PS
TransformableSboolSSIDn(PSCullingModeSenumSSIn-PSShowTrajectoriesSboolSSI�n"PSliwSBoolSSAUIoCPSLimbLength 1SNumberSSAUD�?DDY@#oShadingCYFoCullingS
CullingOfftw-ModelL81:SLeftNostrilModelSLimbNode�oVersionI�.wProperties70�o+PSRotationActiveSboolSSI3p(PSInheritTypeSenumSSI�pGPS
ScalingMaxSVector3DSVectorSDDD�p8PSDefaultAttributeIndexSintSIntegerSI*qNPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�qIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�qEPSVisibility InheritanceSVisibility InheritanceSSIr,PS	MultiTakeSintSIntegerSIIr-PSManipulationModeSenumSSI�rUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�r/PSSetPreferedAngleSActionSSI$s-PSPivotsVisibilitySenumSSIgs5PSRotationLimitsVisibilitySboolSSI�s:PSLocalTranslationRefVisibilitySboolSSI�s2PSRotationRefVisibilitySboolSSI0t3PSRotationAxisVisibilitySboolSSIot1PSScalingRefVisibilitySboolSSI�t9PSHierarchicalCenterVisibilitySboolSSI�t6PSGeometricCenterVisibilitySboolSSI@u8PSReferentialSizeSdoubleSNumberSD(@�u5PSDefaultKeyingGroupSintSIntegerSI�u3PSDefaultKeyingGroupEnumSenumSSI�u%PSPickableSboolSSI/v*PS
TransformableSboolSSIev(PSCullingModeSenumSSI�v-PSShowTrajectoriesSboolSSI�v"PSliwSBoolSSAUI!wCPSLimbLength 1SNumberSSAUD�?DDY@DwShadingCYgwCullingS
CullingOff�+ModelL@6:SLeftCheekModelSLimbNode�wVersionI�MProperties70x+PSRotationActiveSboolSSIRx(PSInheritTypeSenumSSI�xGPS
ScalingMaxSVector3DSVectorSDDD�x8PSDefaultAttributeIndexSintSIntegerSIIyNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@�yIPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�yEPSVisibility InheritanceSVisibility InheritanceSSI-z,PS	MultiTakeSintSIntegerSIhz-PSManipulationModeSenumSSI�zUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD{/PSSetPreferedAngleSActionSSIC{-PSPivotsVisibilitySenumSSI�{5PSRotationLimitsVisibilitySboolSSI�{:PSLocalTranslationRefVisibilitySboolSSI|2PSRotationRefVisibilitySboolSSIO|3PSRotationAxisVisibilitySboolSSI�|1PSScalingRefVisibilitySboolSSI�|9PSHierarchicalCenterVisibilitySboolSSI}6PSGeometricCenterVisibilitySboolSSI_}8PSReferentialSizeSdoubleSNumberSD(@�}5PSDefaultKeyingGroupSintSIntegerSI�}3PSDefaultKeyingGroupEnumSenumSSI~%PSPickableSboolSSIN~*PS
TransformableSboolSSI�~(PSCullingModeSenumSSI�~-PSShowTrajectoriesSboolSSI�~"PSliwSBoolSSAUI@CPSLimbLength 1SNumberSSAUD�?DDY@cShadingCY�CullingS
CullingOff��1ModelLH;:SLeftEyelidLowerModelSLimbNode�VersionI�r�Properties70A�+PSRotationActiveSboolSSIw�(PSInheritTypeSenumSSÌGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIn�NPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@ŁIPSLcl RotationSLcl RotationSSA+D�D ܥ�<D� ټ�EPSVisibility InheritanceSVisibility InheritanceSSIR�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD-�/PSSetPreferedAngleSActionSSIh�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI3�2PSRotationRefVisibilitySboolSSIt�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI>�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@Dž5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI;�%PSPickableSboolSSIs�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIe�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffݏ1ModelLP@:SLeftEyelidUpperModelSLimbNode�VersionI���Properties70f�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD7�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ=�EPSVisibility InheritanceSVisibility InheritanceSSIw�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDR�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIЋ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIX�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI،1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIc�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI-�3PSDefaultKeyingGroupEnumSenumSSI`�%PSPickableSboolSSI��*PS
TransformableSboolSSIΎ(PSCullingModeSenumSSI	�-PSShowTrajectoriesSboolSSI9�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYЏCullingS
CullingOff�/ModelL��z:SLeftInnerBrowModelSLimbNode7�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDZ�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@
�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ`�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIՒ-PSManipulationModeSenumSSI8�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDu�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI;�:PSLocalTranslationRefVisibilitySboolSSI{�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIB�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI̕8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIP�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI,�-PSShowTrajectoriesSboolSSI\�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ЗShadingCY�CullingS
CullingOff\�0ModelL��z:SLeftIOuterBrowModelSLimbNode[�VersionI��Properties70��*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIp�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@i�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI1�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDћ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIO�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIל2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIW�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI(�8PSReferentialSizeSdoubleSNumberSD(@k�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIߞ%PSPickableSboolSSI�*PS
TransformableSboolSSIM�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI	�CPSLimbLength 1SNumberSSAUD�?DDY@,�ShadingCYO�CullingS
CullingOff��0ModelL��z:SRightInnerBrowModelSLimbNode��VersionI�:�Properties70	�+PSRotationActiveSboolSSI?�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDڡ8PSDefaultAttributeIndexSintSIntegerSI6�NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@��IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIU�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI0�-PSPivotsVisibilitySenumSSIs�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI<�3PSRotationAxisVisibilitySboolSSI{�1PSScalingRefVisibilitySboolSSI¥9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIL�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIЦ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI;�*PS
TransformableSboolSSIq�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIܧ"PSliwSBoolSSAUI-�CPSLimbLength 1SNumberSSAUD�?DDY@P�ShadingCYs�CullingS
CullingOffݰ1ModelL��z:SRightIOuterBrowModelSLimbNodeܨVersionI���Properties70-�*PS
RotationOrderSenumSSIf�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD7�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ=�EPSVisibility InheritanceSVisibility InheritanceSSIw�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDR�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIЬ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIX�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIح1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIc�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI-�3PSDefaultKeyingGroupEnumSenumSSI`�%PSPickableSboolSSI��*PS
TransformableSboolSSIί(PSCullingModeSenumSSI	�-PSShowTrajectoriesSboolSSI9�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYаCullingS
CullingOff�2ModelL��z:SRightEyelidUpperModelSLimbNode:�VersionI���Properties70��+PSRotationActiveSboolSSI±(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD]�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ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)�2ModelL��z:SRightEyelidLowerModelSLimbNode`�VersionI���Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI=�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIߺNPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@6�IPSLcl RotationSLcl RotationSSA+D�D ܥ�<D� ټ��EPSVisibility InheritanceSVisibility InheritanceSSIû,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIa�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIټ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSId�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI$�1PSScalingRefVisibilitySboolSSIk�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@8�5PSDefaultKeyingGroupSintSIntegerSIy�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSIU�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOffI�,ModelL��z:SRightCheekModelSLimbNode��VersionI��Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI]�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@V�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI<�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSID�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@X�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI:�(PSCullingModeSenumSSIu�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY<�CullingS
CullingOffk�.ModelL��z:SRightNostrilModelSLimbNode��VersionI�%�Properties70��+PSRotationActiveSboolSSI*�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI!�NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@x�IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI@�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI^�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI'�3PSRotationAxisVisibilitySboolSSIf�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI7�8PSReferentialSizeSdoubleSNumberSD(@z�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI&�*PS
TransformableSboolSSI\�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@;�ShadingCY^�CullingS
CullingOff��/ModelL��z:SRightLipUpperModelSLimbNode��VersionI�H�Properties70�+PSRotationActiveSboolSSIM�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSID�NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@��IPSLcl RotationSLcl RotationSSA+D`+��D ܥ�<D� ټ��EPSVisibility InheritanceSVisibility InheritanceSSI(�,PS	MultiTakeSintSIntegerSIc�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI>�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI	�2PSRotationRefVisibilitySboolSSIJ�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIZ�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSII�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI;�CPSLimbLength 1SNumberSSAUD�?DDY@^�ShadingCY��CullingS
CullingOff�/ModelL��z:SRightShoulderModelSLimbNode��VersionI���Properties70W�HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDa�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD����D`�)6@D@
M���IPSLcl RotationSLcl RotationSSA+D@�H�D`D��?D��?g�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI?�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD|�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIB�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSII�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIW�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI3�-PSShowTrajectoriesSboolSSIc�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff{�*ModelL��z:SRightArmModelSLimbNode\�VersionI�5�Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc��+PSRotationActiveSboolSSI:�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI1�NPSLcl TranslationSLcl TranslationSSAD��$@D��a0�D@�վ��IPSLcl RotationSLcl RotationSSA+D@(@�D���D��S@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIP�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI+�-PSPivotsVisibilitySenumSSIn�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI7�3PSRotationAxisVisibilitySboolSSIv�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIG�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI6�*PS
TransformableSboolSSIl�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI(�CPSLimbLength 1SNumberSSAUD�?DDY@K�ShadingCYn�CullingS
CullingOff��.ModelL{:SRightForeArmModelSLimbNode��VersionI���Properties70C�HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?|�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDM�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD`�W9�D �<�?D`,����IPSLcl RotationSLcl RotationSSA+D�N=@D w�1@D�Fm@S�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI+�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDh�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI.�:PSLocalTranslationRefVisibilitySboolSSIn�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI5�9PSHierarchicalCenterVisibilitySboolSSIy�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIC�3PSDefaultKeyingGroupEnumSenumSSIv�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIO�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�+ModelL@>R:SRightHandModelSLimbNodeI�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI&�GPS
ScalingMaxSVector3DSVectorSDDDl�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD ��8�D <P@D����?�IPSLcl RotationSLcl RotationSSA+D@�� �D�NH�D���(�r�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIJ�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIM�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI
�1PSScalingRefVisibilitySboolSSIT�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@!�5PSDefaultKeyingGroupSintSIntegerSIb�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI>�-PSShowTrajectoriesSboolSSIn�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff�1ModelLHCR:SRightHandPinky1ModelSLimbNoden�VersionI�GProperties70��HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q���+PSRotationActiveSboolSSIL�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIC�NPSLcl TranslationSLcl TranslationSSAD����D�K�ɿD�ۚ���IPSLcl RotationSLcl RotationSSA+D`t=.�D��/@D�K:G@��EPSVisibility InheritanceSVisibility InheritanceSSI'�,PS	MultiTakeSintSIntegerSIb�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI=�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSII3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSIY8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIH*PS
TransformableSboolSSI~(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI:CPSLimbLength 1SNumberSSAUD�?DDY@]ShadingCY�CullingS
CullingOff1ModelLPHR:SRightHandPinky2ModelSLimbNode�VersionI��Properties70XHPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDb8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D�(���D`��IPSLcl RotationSLcl RotationSSA+D�a@�D �@D�;&M@hEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI@UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD}/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIC:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI	1PSScalingRefVisibilitySboolSSIJ	9PSHierarchicalCenterVisibilitySboolSSI�	6PSGeometricCenterVisibilitySboolSSI�	8PSReferentialSizeSdoubleSNumberSD(@
5PSDefaultKeyingGroupSintSIntegerSIX
3PSDefaultKeyingGroupEnumSenumSSI�
%PSPickableSboolSSI�
*PS
TransformableSboolSSI�
(PSCullingModeSenumSSI4-PSShowTrajectoriesSboolSSId"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff-1ModelLXMR:SRightHandPinky3ModelSLimbNodedVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIA
GPS
ScalingMaxSVector3DSVectorSDDD�
8PSDefaultAttributeIndexSintSIntegerSI�
NPSLcl TranslationSLcl TranslationSSAD�8$�D��V��D �@�:IPSLcl RotationSLcl RotationSSA+D��$�D��1@D�FQ@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIeUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI 5PSRotationLimitsVisibilitySboolSSIh:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI(1PSScalingRefVisibilitySboolSSIo9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@<5PSDefaultKeyingGroupSintSIntegerSI}3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIY-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY CullingS
CullingOff�0ModelL`RR:SRightHandRing1ModelSLimbNode�VersionI�aProperties70�HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c�0+PSRotationActiveSboolSSIf(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSI]NPSLcl TranslationSLcl TranslationSSAD�H=�D�is�?D �m￴IPSLcl RotationSLcl RotationSSA+D���@D Aq"@D�L@EPSVisibility InheritanceSVisibility InheritanceSSIA,PS	MultiTakeSintSIntegerSI|-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSIW-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI"2PSRotationRefVisibilitySboolSSIc3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI-6PSGeometricCenterVisibilitySboolSSIs8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI*%PSPickableSboolSSIb*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUITCPSLimbLength 1SNumberSSAUD�?DDY@wShadingCY�CullingS
CullingOff!%0ModelLhWR:SRightHandRing2ModelSLimbNodeVersionI��$Properties70qHPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI5GPS
ScalingMaxSVector3DSVectorSDDD{8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD�'�D ښ��D@K�߿.IPSLcl RotationSLcl RotationSSA+D`Ch5�D�Y@D�ʪO@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIY UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD� /PSSetPreferedAngleSActionSSI� -PSPivotsVisibilitySenumSSI!5PSRotationLimitsVisibilitySboolSSI\!:PSLocalTranslationRefVisibilitySboolSSI�!2PSRotationRefVisibilitySboolSSI�!3PSRotationAxisVisibilitySboolSSI"1PSScalingRefVisibilitySboolSSIc"9PSHierarchicalCenterVisibilitySboolSSI�"6PSGeometricCenterVisibilitySboolSSI�"8PSReferentialSizeSdoubleSNumberSD(@0#5PSDefaultKeyingGroupSintSIntegerSIq#3PSDefaultKeyingGroupEnumSenumSSI�#%PSPickableSboolSSI�#*PS
TransformableSboolSSI$(PSCullingModeSenumSSIM$-PSShowTrajectoriesSboolSSI}$"PSliwSBoolSSAUI�$CPSLimbLength 1SNumberSSAUD�?DDY@�$ShadingCY%CullingS
CullingOffE-0ModelLp\R:SRightHandRing3ModelSLimbNode|%VersionI��,Properties70�%+PSRotationActiveSboolSSI&(PSInheritTypeSenumSSIY&GPS
ScalingMaxSVector3DSVectorSDDD�&8PSDefaultAttributeIndexSintSIntegerSI�&NPSLcl TranslationSLcl TranslationSSAD@���D�
��D��ݿR'IPSLcl RotationSLcl RotationSSA+D�J�?D ��@D``�Q@�'EPSVisibility InheritanceSVisibility InheritanceSSI�',PS	MultiTakeSintSIntegerSI(-PSManipulationModeSenumSSI}(UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�(/PSSetPreferedAngleSActionSSI�(-PSPivotsVisibilitySenumSSI8)5PSRotationLimitsVisibilitySboolSSI�):PSLocalTranslationRefVisibilitySboolSSI�)2PSRotationRefVisibilitySboolSSI*3PSRotationAxisVisibilitySboolSSI@*1PSScalingRefVisibilitySboolSSI�*9PSHierarchicalCenterVisibilitySboolSSI�*6PSGeometricCenterVisibilitySboolSSI+8PSReferentialSizeSdoubleSNumberSD(@T+5PSDefaultKeyingGroupSintSIntegerSI�+3PSDefaultKeyingGroupEnumSenumSSI�+%PSPickableSboolSSI,*PS
TransformableSboolSSI6,(PSCullingModeSenumSSIq,-PSShowTrajectoriesSboolSSI�,"PSliwSBoolSSAUI�,CPSLimbLength 1SNumberSSAUD�?DDY@-ShadingCY8-CullingS
CullingOff�52ModelLxaR:SRightHandMiddle1ModelSLimbNode�-VersionI�{5Properties70.HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�J.+PSRotationActiveSboolSSI�.(PSInheritTypeSenumSSI�.GPS
ScalingMaxSVector3DSVectorSDDD/8PSDefaultAttributeIndexSintSIntegerSIw/NPSLcl TranslationSLcl TranslationSSAD�QB�D<��?D@��?�/IPSLcl RotationSLcl RotationSSA+D�qz@D�G�?D�4I@!0EPSVisibility InheritanceSVisibility InheritanceSSI[0,PS	MultiTakeSintSIntegerSI�0-PSManipulationModeSenumSSI�0UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD61/PSSetPreferedAngleSActionSSIq1-PSPivotsVisibilitySenumSSI�15PSRotationLimitsVisibilitySboolSSI�1:PSLocalTranslationRefVisibilitySboolSSI<22PSRotationRefVisibilitySboolSSI}23PSRotationAxisVisibilitySboolSSI�21PSScalingRefVisibilitySboolSSI39PSHierarchicalCenterVisibilitySboolSSIG36PSGeometricCenterVisibilitySboolSSI�38PSReferentialSizeSdoubleSNumberSD(@�35PSDefaultKeyingGroupSintSIntegerSI43PSDefaultKeyingGroupEnumSenumSSID4%PSPickableSboolSSI|4*PS
TransformableSboolSSI�4(PSCullingModeSenumSSI�4-PSShowTrajectoriesSboolSSI5"PSliwSBoolSSAUIn5CPSLimbLength 1SNumberSSAUD�?DDY@�5ShadingCY�5CullingS
CullingOff=>2ModelL�fR:SRightHandMiddle2ModelSLimbNode6VersionI��=Properties70�6HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9��6+PSRotationActiveSboolSSI�6(PSInheritTypeSenumSSIQ7GPS
ScalingMaxSVector3DSVectorSDDD�78PSDefaultAttributeIndexSintSIntegerSI�7NPSLcl TranslationSLcl TranslationSSAD`��D���?D@��?J8IPSLcl RotationSLcl RotationSSA+D��A�?D ��D��oO@�8EPSVisibility InheritanceSVisibility InheritanceSSI�8,PS	MultiTakeSintSIntegerSI9-PSManipulationModeSenumSSIu9UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�9/PSSetPreferedAngleSActionSSI�9-PSPivotsVisibilitySenumSSI0:5PSRotationLimitsVisibilitySboolSSIx::PSLocalTranslationRefVisibilitySboolSSI�:2PSRotationRefVisibilitySboolSSI�:3PSRotationAxisVisibilitySboolSSI8;1PSScalingRefVisibilitySboolSSI;9PSHierarchicalCenterVisibilitySboolSSI�;6PSGeometricCenterVisibilitySboolSSI	<8PSReferentialSizeSdoubleSNumberSD(@L<5PSDefaultKeyingGroupSintSIntegerSI�<3PSDefaultKeyingGroupEnumSenumSSI�<%PSPickableSboolSSI�<*PS
TransformableSboolSSI.=(PSCullingModeSenumSSIi=-PSShowTrajectoriesSboolSSI�="PSliwSBoolSSAUI�=CPSLimbLength 1SNumberSSAUD�?DDY@
>ShadingCY0>CullingS
CullingOffcF2ModelL�kR:SRightHandMiddle3ModelSLimbNode�>VersionI�FProperties70�>+PSRotationActiveSboolSSI"?(PSInheritTypeSenumSSIw?GPS
ScalingMaxSVector3DSVectorSDDD�?8PSDefaultAttributeIndexSintSIntegerSI@NPSLcl TranslationSLcl TranslationSSAD >u
�D@�&�D�I��?p@IPSLcl RotationSLcl RotationSSA+D����?D���D <�Q@�@EPSVisibility InheritanceSVisibility InheritanceSSI�@,PS	MultiTakeSintSIntegerSI8A-PSManipulationModeSenumSSI�AUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�A/PSSetPreferedAngleSActionSSIB-PSPivotsVisibilitySenumSSIVB5PSRotationLimitsVisibilitySboolSSI�B:PSLocalTranslationRefVisibilitySboolSSI�B2PSRotationRefVisibilitySboolSSIC3PSRotationAxisVisibilitySboolSSI^C1PSScalingRefVisibilitySboolSSI�C9PSHierarchicalCenterVisibilitySboolSSI�C6PSGeometricCenterVisibilitySboolSSI/D8PSReferentialSizeSdoubleSNumberSD(@rD5PSDefaultKeyingGroupSintSIntegerSI�D3PSDefaultKeyingGroupEnumSenumSSI�D%PSPickableSboolSSIE*PS
TransformableSboolSSITE(PSCullingModeSenumSSI�E-PSShowTrajectoriesSboolSSI�E"PSliwSBoolSSAUIFCPSLimbLength 1SNumberSSAUD�?DDY@3FShadingCYVFCullingS
CullingOff�N1ModelL�pR:SRightHandIndex1ModelSLimbNode�FVersionI��NProperties70.GHPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��gG+PSRotationActiveSboolSSI�G(PSInheritTypeSenumSSI�GGPS
ScalingMaxSVector3DSVectorSDDD8H8PSDefaultAttributeIndexSintSIntegerSI�HNPSLcl TranslationSLcl TranslationSSAD�e��D�yҿ�D��y@�HIPSLcl RotationSLcl RotationSSA+D�c-@D@+��D�N@@>IEPSVisibility InheritanceSVisibility InheritanceSSIxI,PS	MultiTakeSintSIntegerSI�I-PSManipulationModeSenumSSIJUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDSJ/PSSetPreferedAngleSActionSSI�J-PSPivotsVisibilitySenumSSI�J5PSRotationLimitsVisibilitySboolSSIK:PSLocalTranslationRefVisibilitySboolSSIYK2PSRotationRefVisibilitySboolSSI�K3PSRotationAxisVisibilitySboolSSI�K1PSScalingRefVisibilitySboolSSI L9PSHierarchicalCenterVisibilitySboolSSIdL6PSGeometricCenterVisibilitySboolSSI�L8PSReferentialSizeSdoubleSNumberSD(@�L5PSDefaultKeyingGroupSintSIntegerSI.M3PSDefaultKeyingGroupEnumSenumSSIaM%PSPickableSboolSSI�M*PS
TransformableSboolSSI�M(PSCullingModeSenumSSI
N-PSShowTrajectoriesSboolSSI:N"PSliwSBoolSSAUI�NCPSLimbLength 1SNumberSSAUD�?DDY@�NShadingCY�NCullingS
CullingOffYW1ModelL�uR:SRightHandIndex2ModelSLimbNode:OVersionI�WProperties70�OHPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\��O+PSRotationActiveSboolSSIP(PSInheritTypeSenumSSImPGPS
ScalingMaxSVector3DSVectorSDDD�P8PSDefaultAttributeIndexSintSIntegerSIQNPSLcl TranslationSLcl TranslationSSAD���
�D���?D�!C�?fQIPSLcl RotationSLcl RotationSSA+D���@D݅�D�ǀI@�QEPSVisibility InheritanceSVisibility InheritanceSSI�Q,PS	MultiTakeSintSIntegerSI.R-PSManipulationModeSenumSSI�RUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�R/PSSetPreferedAngleSActionSSI	S-PSPivotsVisibilitySenumSSILS5PSRotationLimitsVisibilitySboolSSI�S:PSLocalTranslationRefVisibilitySboolSSI�S2PSRotationRefVisibilitySboolSSIT3PSRotationAxisVisibilitySboolSSITT1PSScalingRefVisibilitySboolSSI�T9PSHierarchicalCenterVisibilitySboolSSI�T6PSGeometricCenterVisibilitySboolSSI%U8PSReferentialSizeSdoubleSNumberSD(@hU5PSDefaultKeyingGroupSintSIntegerSI�U3PSDefaultKeyingGroupEnumSenumSSI�U%PSPickableSboolSSIV*PS
TransformableSboolSSIJV(PSCullingModeSenumSSI�V-PSShowTrajectoriesSboolSSI�V"PSliwSBoolSSAUIWCPSLimbLength 1SNumberSSAUD�?DDY@)WShadingCYLWCullingS
CullingOff~_1ModelL�;SRightHandIndex3ModelSLimbNode�WVersionI�8_Properties70X+PSRotationActiveSboolSSI=X(PSInheritTypeSenumSSI�XGPS
ScalingMaxSVector3DSVectorSDDD�X8PSDefaultAttributeIndexSintSIntegerSI4YNPSLcl TranslationSLcl TranslationSSAD�.�D��߿D@���?�YIPSLcl RotationSLcl RotationSSA+D@7R!@D���D@CP@�YEPSVisibility InheritanceSVisibility InheritanceSSIZ,PS	MultiTakeSintSIntegerSISZ-PSManipulationModeSenumSSI�ZUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�Z/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�g1ModelL�$;SRightHandThumb1ModelSLimbNode�_VersionI��gProperties70I`HPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D	��*��`+PSRotationActiveSboolSSI�`(PSInheritTypeSenumSSI
aGPS
ScalingMaxSVector3DSVectorSDDDSa8PSDefaultAttributeIndexSintSIntegerSI�aNPSLcl TranslationSLcl TranslationSSAD�~��D����D༯@bIPSLcl RotationSLcl RotationSSA+D���@D [y @D�a@@YbEPSVisibility InheritanceSVisibility InheritanceSSI�b,PS	MultiTakeSintSIntegerSI�b-PSManipulationModeSenumSSI1cUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDnc/PSSetPreferedAngleSActionSSI�c-PSPivotsVisibilitySenumSSI�c5PSRotationLimitsVisibilitySboolSSI4d:PSLocalTranslationRefVisibilitySboolSSItd2PSRotationRefVisibilitySboolSSI�d3PSRotationAxisVisibilitySboolSSI�d1PSScalingRefVisibilitySboolSSI;e9PSHierarchicalCenterVisibilitySboolSSIe6PSGeometricCenterVisibilitySboolSSI�e8PSReferentialSizeSdoubleSNumberSD(@f5PSDefaultKeyingGroupSintSIntegerSIIf3PSDefaultKeyingGroupEnumSenumSSI|f%PSPickableSboolSSI�f*PS
TransformableSboolSSI�f(PSCullingModeSenumSSI%g-PSShowTrajectoriesSboolSSIUg"PSliwSBoolSSAUI�gCPSLimbLength 1SNumberSSAUD�?DDY@�gShadingCY�gCullingS
CullingOffp1ModelL�);SRightHandThumb2ModelSLimbNodeUhVersionI��oProperties70�h+PSRotationActiveSboolSSI�h(PSInheritTypeSenumSSI2iGPS
ScalingMaxSVector3DSVectorSDDDxi8PSDefaultAttributeIndexSintSIntegerSI�iNPSLcl TranslationSLcl TranslationSSAD`�2��D`���D��@+jIPSLcl RotationSLcl RotationSSA+D��@D ��*�D��x�~jEPSVisibility InheritanceSVisibility InheritanceSSI�j,PS	MultiTakeSintSIntegerSI�j-PSManipulationModeSenumSSIVkUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�k/PSSetPreferedAngleSActionSSI�k-PSPivotsVisibilitySenumSSIl5PSRotationLimitsVisibilitySboolSSIYl:PSLocalTranslationRefVisibilitySboolSSI�l2PSRotationRefVisibilitySboolSSI�l3PSRotationAxisVisibilitySboolSSIm1PSScalingRefVisibilitySboolSSI`m9PSHierarchicalCenterVisibilitySboolSSI�m6PSGeometricCenterVisibilitySboolSSI�m8PSReferentialSizeSdoubleSNumberSD(@-n5PSDefaultKeyingGroupSintSIntegerSInn3PSDefaultKeyingGroupEnumSenumSSI�n%PSPickableSboolSSI�n*PS
TransformableSboolSSIo(PSCullingModeSenumSSIJo-PSShowTrajectoriesSboolSSIzo"PSliwSBoolSSAUI�oCPSLimbLength 1SNumberSSAUD�?DDY@�oShadingCYpCullingS
CullingOff�x1ModelL�.;SRightHandThumb3ModelSLimbNodezpVersionI�SxProperties70�pHPSPreRotationSVector3DSVectorSD$�rOϸ>DD"q+PSRotationActiveSboolSSIXq(PSInheritTypeSenumSSI�qGPS
ScalingMaxSVector3DSVectorSDDD�q8PSDefaultAttributeIndexSintSIntegerSIOrNPSLcl TranslationSLcl TranslationSSAD@5^�D �r�D@��@�rIPSLcl RotationSLcl RotationSSA+D���	@D@�/�D����rEPSVisibility InheritanceSVisibility InheritanceSSI3s,PS	MultiTakeSintSIntegerSIns-PSManipulationModeSenumSSI�sUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDt/PSSetPreferedAngleSActionSSIIt-PSPivotsVisibilitySenumSSI�t5PSRotationLimitsVisibilitySboolSSI�t:PSLocalTranslationRefVisibilitySboolSSIu2PSRotationRefVisibilitySboolSSIUu3PSRotationAxisVisibilitySboolSSI�u1PSScalingRefVisibilitySboolSSI�u9PSHierarchicalCenterVisibilitySboolSSIv6PSGeometricCenterVisibilitySboolSSIev8PSReferentialSizeSdoubleSNumberSD(@�v5PSDefaultKeyingGroupSintSIntegerSI�v3PSDefaultKeyingGroupEnumSenumSSIw%PSPickableSboolSSITw*PS
TransformableSboolSSI�w(PSCullingModeSenumSSI�w-PSShowTrajectoriesSboolSSI�w"PSliwSBoolSSAUIFxCPSLimbLength 1SNumberSSAUD�?DDY@ixShadingCY�xCullingS
CullingOff�.ModelL�3;SLeftShoulderModelSLimbNode�xVersionI�ˀProperties70ayHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9��y+PSRotationActiveSboolSSI�y(PSInheritTypeSenumSSI%zGPS
ScalingMaxSVector3DSVectorSDDDkz8PSDefaultAttributeIndexSintSIntegerSI�zNPSLcl TranslationSLcl TranslationSSAD��@D@�)6@D@
M��{IPSLcl RotationSLcl RotationSSA+D�'��D���߿D@K2�?q{EPSVisibility InheritanceSVisibility InheritanceSSI�{,PS	MultiTakeSintSIntegerSI�{-PSManipulationModeSenumSSII|UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�|/PSSetPreferedAngleSActionSSI�|-PSPivotsVisibilitySenumSSI}5PSRotationLimitsVisibilitySboolSSIL}:PSLocalTranslationRefVisibilitySboolSSI�}2PSRotationRefVisibilitySboolSSI�}3PSRotationAxisVisibilitySboolSSI~1PSScalingRefVisibilitySboolSSIS~9PSHierarchicalCenterVisibilitySboolSSI�~6PSGeometricCenterVisibilitySboolSSI�~8PSReferentialSizeSdoubleSNumberSD(@ 5PSDefaultKeyingGroupSintSIntegerSIa3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI=�-PSShowTrajectoriesSboolSSIm�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff��)ModelL�8;SLeftArmModelSLimbNodee�VersionI�>�Properties70ԁHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@
�+PSRotationActiveSboolSSIC�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDނ8PSDefaultAttributeIndexSintSIntegerSI:�NPSLcl TranslationSLcl TranslationSSAD��$@DD����IPSLcl RotationSLcl RotationSSA+DH@D���D���T��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIY�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI4�-PSPivotsVisibilitySenumSSIw�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI@�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIƆ9PSHierarchicalCenterVisibilitySboolSSI
�6PSGeometricCenterVisibilitySboolSSIP�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIԇ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI?�*PS
TransformableSboolSSIu�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI1�CPSLimbLength 1SNumberSSAUD�?DDY@T�ShadingCYw�CullingS
CullingOff��-ModelL�=;SLeftForeArmModelSLimbNode܉VersionI���Properties70K�HPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDU�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��g9@DD�<�IPSLcl RotationSLcl RotationSSA+D C@D���*�D`��[�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIЌ-PSManipulationModeSenumSSI3�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDp�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI6�:PSLocalTranslationRefVisibilitySboolSSIv�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI=�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIǏ8PSReferentialSizeSdoubleSNumberSD(@
�5PSDefaultKeyingGroupSintSIntegerSIK�3PSDefaultKeyingGroupEnumSenumSSI~�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI'�-PSShowTrajectoriesSboolSSIW�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ˑShadingCY�CullingS
CullingOff�*ModelL�B;SLeftHandModelSLimbNodeP�VersionI�әProperties70��+PSRotationActiveSboolSSIؒ(PSInheritTypeSenumSSI-�GPS
ScalingMaxSVector3DSVectorSDDDs�8PSDefaultAttributeIndexSintSIntegerSIϓNPSLcl TranslationSLcl TranslationSSAD���8@D =D�&�IPSLcl RotationSLcl RotationSSA+D ���D@D�!@Du�y�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIQ�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIɕ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIT�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIՖ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI[�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@(�5PSDefaultKeyingGroupSintSIntegerSIi�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIԘ*PS
TransformableSboolSSI
�(PSCullingModeSenumSSIE�-PSShowTrajectoriesSboolSSIu�"PSliwSBoolSSAUIƙCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff��0ModelL�G;SLeftHandPinky1ModelSLimbNodet�VersionI�M�Properties70�HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@Dd�Z~Q���+PSRotationActiveSboolSSIR�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSII�NPSLcl TranslationSLcl TranslationSSAD �C@D�S
�D@�	���IPSLcl RotationSLcl RotationSSA+D��@D��V!�D�~P��EPSVisibility InheritanceSVisibility InheritanceSSI-�,PS	MultiTakeSintSIntegerSIh�-PSManipulationModeSenumSSI˝UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIC�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIΞ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIO�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI՟9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI_�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIN�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI@�CPSLimbLength 1SNumberSSAUD�?DDY@c�ShadingCY��CullingS
CullingOff
�0ModelL�L;SLeftHandPinky2ModelSLimbNode�VersionI�ǪProperties70]�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?��+PSRotationActiveSboolSSỊ(PSInheritTypeSenumSSI!�GPS
ScalingMaxSVector3DSVectorSDDDg�8PSDefaultAttributeIndexSintSIntegerSIäNPSLcl TranslationSLcl TranslationSSAD���@D�Ji�D��¿�IPSLcl RotationSLcl RotationSSA+D ,:+�D@@K@D`,�P�m�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIE�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIH�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIɧ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIO�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI٨8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI]�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIȩ*PS
TransformableSboolSSI��(PSCullingModeSenumSSI9�-PSShowTrajectoriesSboolSSIi�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ݪShadingCY�CullingS
CullingOff1�0ModelLR;SLeftHandPinky3ModelSLimbNodeh�VersionI��Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIE�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@�s@D���D�D@���>>�IPSLcl RotationSLcl RotationSSA+D mJ$@D`12@D`~Q���EPSVisibility InheritanceSVisibility InheritanceSSI˭,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIi�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI$�5PSRotationLimitsVisibilitySboolSSIl�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI,�1PSScalingRefVisibilitySboolSSIs�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@@�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI"�(PSCullingModeSenumSSI]�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI޲CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY$�CullingS
CullingOff��/ModelLW;SLeftHandRing1ModelSLimbNode��VersionI�d�Properties70��HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c�3�+PSRotationActiveSboolSSIi�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI`�NPSLcl TranslationSLcl TranslationSSAD��@D�P�׿D EB򿷵IPSLcl RotationSLcl RotationSSA+D���$@D���DjFQ�
�EPSVisibility InheritanceSVisibility InheritanceSSID�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIZ�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI%�2PSRotationRefVisibilitySboolSSIf�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI0�6PSGeometricCenterVisibilitySboolSSIv�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI-�%PSPickableSboolSSIe�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIֺ-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIW�CPSLimbLength 1SNumberSSAUD�?DDY@z�ShadingCY��CullingS
CullingOff#�/ModelL0V�9SLeftHandRing2ModelSLimbNode�VersionI���Properties70s�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI7�GPS
ScalingMaxSVector3DSVectorSDDD}�8PSDefaultAttributeIndexSintSIntegerSIٽNPSLcl TranslationSLcl TranslationSSAD A@D`Va�D�;�̿0�IPSLcl RotationSLcl RotationSSA+DY�'�D`�&�D�l�P���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI[�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIӿ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI^�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIe�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@2�5PSDefaultKeyingGroupSintSIntegerSIs�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIO�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOffF�/ModelL8[�9SLeftHandRing3ModelSLimbNode}�VersionI��Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIZ�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@DȎ@>D@Ϋ��S�IPSLcl RotationSLcl RotationSSA+D`:�!@D`ΐ
@D`�[Q���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI~�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI9�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIA�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@U�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI7�(PSCullingModeSenumSSIr�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY9�CullingS
CullingOff��1ModelL@`�9SLeftHandMiddle1ModelSLimbNode��VersionI�{�Properties70�HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--�J�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIw�NPSLcl TranslationSLcl TranslationSSAD�h@D`5!ȿD�9�?��IPSLcl RotationSLcl RotationSSA+D@5�?D x�D��P�!�EPSVisibility InheritanceSVisibility InheritanceSSI[�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD6�/PSSetPreferedAngleSActionSSIq�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI<�2PSRotationRefVisibilitySboolSSI}�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIG�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSID�%PSPickableSboolSSI|�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIn�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff<�1ModelLHe�9SLeftHandMiddle2ModelSLimbNode�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIP�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD Q�@D�,s??D�ǥ�I�IPSLcl RotationSLcl RotationSSA+D�~f�D��!�D���P���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIt�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI/�5PSRotationLimitsVisibilitySboolSSIw�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI7�1PSScalingRefVisibilitySboolSSI~�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@K�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI-�(PSCullingModeSenumSSIh�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY/�CullingS
CullingOffa�1ModelLPj�9SLeftHandMiddle3ModelSLimbNode��VersionI��Properties70��+PSRotationActiveSboolSSI �(PSInheritTypeSenumSSIu�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD �+@D��v��D��5�>n�IPSLcl RotationSLcl RotationSSA+D�3 ��D�?N�D@=�R���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��0ModelLXo�9SLeftHandIndex1ModelSLimbNode��VersionI���Properties70+�HPSPreRotationSVector3DSVectorSD(�t�c�D���PNk"�Dʴ	A��d�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD5�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@D���D�B
@��IPSLcl RotationSLcl RotationSSA+D`c0@D�C&�?D@([O�;�EPSVisibility InheritanceSVisibility InheritanceSSIu�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDP�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIV�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIa�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI+�3PSDefaultKeyingGroupEnumSenumSSI^�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI7�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffU�0ModelL`t�9SLeftHandIndex2ModelSLimbNode6�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIi�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD�{�@D@�ft?D�Z�?b�IPSLcl RotationSLcl RotationSSA+D�#�D�C�DJ(M���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI*�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIH�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIP�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI!�8PSReferentialSizeSdoubleSNumberSD(@d�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIF�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@%�ShadingCYH�CullingS
CullingOffy�0ModelLhy�9SLeftHandIndex3ModelSLimbNode��VersionI�3�Properties70�+PSRotationActiveSboolSSI8�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI/�NPSLcl TranslationSLcl TranslationSSAD��_@D���D�?�վ��IPSLcl RotationSLcl RotationSSA+D�j%�D��$�D@�qS���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIN�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI)�-PSPivotsVisibilitySenumSSIl�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI5�3PSRotationAxisVisibilitySboolSSIt�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIE�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI4�*PS
TransformableSboolSSIj�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI&�CPSLimbLength 1SNumberSSAUD�?DDY@I�ShadingCYl�CullingS
CullingOff�0ModelLp~�9SLeftHandThumb1ModelSLimbNode��VersionI��Properties70C�HPSPreRotationSVector3DSVectorSDD��t[��?D2��*�|�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDM8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���?D���D��l@IPSLcl RotationSLcl RotationSSA+D �!@D@�	@D���SEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI+UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDh/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI.:PSLocalTranslationRefVisibilitySboolSSIn2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI59PSHierarchicalCenterVisibilitySboolSSIy6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIC3PSDefaultKeyingGroupEnumSenumSSIv%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIO"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff0ModelLx��9SLeftHandThumb2ModelSLimbNodeNVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI+GPS
ScalingMaxSVector3DSVectorSDDDq8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD`�2�?D`���D`
�@$	IPSLcl RotationSLcl RotationSSA+D���@D���*@D��x@w	EPSVisibility InheritanceSVisibility InheritanceSSI�	,PS	MultiTakeSintSIntegerSI�	-PSManipulationModeSenumSSIO
UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�
/PSSetPreferedAngleSActionSSI�
-PSPivotsVisibilitySenumSSI
5PSRotationLimitsVisibilitySboolSSIR:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIY9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@&
5PSDefaultKeyingGroupSintSIntegerSIg
3PSDefaultKeyingGroupEnumSenumSSI�
%PSPickableSboolSSI�
*PS
TransformableSboolSSI(PSCullingModeSenumSSIC-PSShowTrajectoriesSboolSSIs"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY
CullingS
CullingOff�0ModelL���9SLeftHandThumb3ModelSLimbNoderVersionI�KProperties70�HPSPreRotationSVector3DSVectorSD��cܥ�>DD+PSRotationActiveSboolSSIP(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIGNPSLcl TranslationSLcl TranslationSSAD@5^@D �r�D@��@�IPSLcl RotationSLcl RotationSSA+D���	@D��/@D��@�EPSVisibility InheritanceSVisibility InheritanceSSI+,PS	MultiTakeSintSIntegerSIf-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSIA-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSIM3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSI]8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIL*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI>CPSLimbLength 1SNumberSSAUD�?DDY@aShadingCY�CullingS
CullingOff�,ModelL���9SRightUpLegModelSLimbNode�VersionI�kProperties70:+PSRotationActiveSboolSSIp(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSIgNPSLcl TranslationSLcl TranslationSSAD@.�D �C�D��IPSLcl RotationSLcl RotationSSA+Dڋ!�D���2�D�`�@EPSVisibility InheritanceSVisibility InheritanceSSIK,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD&/PSSetPreferedAngleSActionSSIa-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI,2PSRotationRefVisibilitySboolSSIm3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI76PSGeometricCenterVisibilitySboolSSI}8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI4%PSPickableSboolSSIl*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI
"PSliwSBoolSSAUI^CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�'*ModelL`�:SRightLegModelSLimbNode VersionI��'Properties70X +PSRotationActiveSboolSSI� (PSInheritTypeSenumSSI� GPS
ScalingMaxSVector3DSVectorSDDD)!8PSDefaultAttributeIndexSintSIntegerSI�!NPSLcl TranslationSLcl TranslationSSAD`�p�D@�tD�D@�e���!IPSLcl RotationSLcl RotationSSA+D�5$@D`|��D���/"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�/+ModelLh�:SRightFootModelSLimbNode%(VersionI��/Properties70w(+PSRotationActiveSboolSSI�((PSInheritTypeSenumSSI)GPS
ScalingMaxSVector3DSVectorSDDDH)8PSDefaultAttributeIndexSintSIntegerSI�)NPSLcl TranslationSLcl TranslationSSAD`V}�D@e(E�D |��)IPSLcl RotationSLcl RotationSSA+D�B�t?D�K��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
8+ModelLp�:SRightToesModelSLimbNodeD0VersionI��7Properties70�0+PSRotationActiveSboolSSI�0(PSInheritTypeSenumSSI!1GPS
ScalingMaxSVector3DSVectorSDDDg18PSDefaultAttributeIndexSintSIntegerSI�1NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@2IPSLcl RotationSLcl RotationSSA+D�n���D ׯ�D mo>m2EPSVisibility InheritanceSVisibility InheritanceSSI�2,PS	MultiTakeSintSIntegerSI�2-PSManipulationModeSenumSSIE3UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�3/PSSetPreferedAngleSActionSSI�3-PSPivotsVisibilitySenumSSI45PSRotationLimitsVisibilitySboolSSIH4:PSLocalTranslationRefVisibilitySboolSSI�42PSRotationRefVisibilitySboolSSI�43PSRotationAxisVisibilitySboolSSI51PSScalingRefVisibilitySboolSSIO59PSHierarchicalCenterVisibilitySboolSSI�56PSGeometricCenterVisibilitySboolSSI�58PSReferentialSizeSdoubleSNumberSD(@65PSDefaultKeyingGroupSintSIntegerSI]63PSDefaultKeyingGroupEnumSenumSSI�6%PSPickableSboolSSI�6*PS
TransformableSboolSSI�6(PSCullingModeSenumSSI97-PSShowTrajectoriesSboolSSIi7"PSliwSBoolSSAUI�7CPSLimbLength 1SNumberSSAUD�?DDY@�7ShadingCY8CullingS
CullingOff,@+ModelLx�:SLeftUpLegModelSLimbNodec8VersionI��?Properties70�8+PSRotationActiveSboolSSI�8(PSInheritTypeSenumSSI@9GPS
ScalingMaxSVector3DSVectorSDDD�98PSDefaultAttributeIndexSintSIntegerSI�9NPSLcl TranslationSLcl TranslationSSAD`.@D��C�D�9:IPSLcl RotationSLcl RotationSSA+D`2�?D@Ce$�D���@�:EPSVisibility InheritanceSVisibility InheritanceSSI�:,PS	MultiTakeSintSIntegerSI;-PSManipulationModeSenumSSId;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�;/PSSetPreferedAngleSActionSSI�;-PSPivotsVisibilitySenumSSI<5PSRotationLimitsVisibilitySboolSSIg<:PSLocalTranslationRefVisibilitySboolSSI�<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI'=1PSScalingRefVisibilitySboolSSIn=9PSHierarchicalCenterVisibilitySboolSSI�=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@;>5PSDefaultKeyingGroupSintSIntegerSI|>3PSDefaultKeyingGroupEnumSenumSSI�>%PSPickableSboolSSI�>*PS
TransformableSboolSSI?(PSCullingModeSenumSSIX?-PSShowTrajectoriesSboolSSI�?"PSliwSBoolSSAUI�?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY@CullingS
CullingOffIH)ModelL��:SLeftLegModelSLimbNode�@VersionI�HProperties70�@+PSRotationActiveSboolSSIA(PSInheritTypeSenumSSI]AGPS
ScalingMaxSVector3DSVectorSDDD�A8PSDefaultAttributeIndexSintSIntegerSI�ANPSLcl TranslationSLcl TranslationSSAD�p@D �tD�D@�e��VBIPSLcl RotationSLcl RotationSSA+D�-@D�� 2@Dว@�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSIC-PSManipulationModeSenumSSI�CUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSI<D5PSRotationLimitsVisibilitySboolSSI�D:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSIE3PSRotationAxisVisibilitySboolSSIDE1PSScalingRefVisibilitySboolSSI�E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSIF8PSReferentialSizeSdoubleSNumberSD(@XF5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSIG*PS
TransformableSboolSSI:G(PSCullingModeSenumSSIuG-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@HShadingCY<HCullingS
CullingOffgP*ModelL�:SLeftFootModelSLimbNode�HVersionI�!PProperties70�H+PSRotationActiveSboolSSI&I(PSInheritTypeSenumSSI{IGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSIJNPSLcl TranslationSLcl TranslationSSAD`V}�?D@e(E�D |�tJIPSLcl RotationSLcl RotationSSA+D��+�D`�.&�D����JEPSVisibility InheritanceSVisibility InheritanceSSIK,PS	MultiTakeSintSIntegerSI<K-PSManipulationModeSenumSSI�KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�K/PSSetPreferedAngleSActionSSIL-PSPivotsVisibilitySenumSSIZL5PSRotationLimitsVisibilitySboolSSI�L:PSLocalTranslationRefVisibilitySboolSSI�L2PSRotationRefVisibilitySboolSSI#M3PSRotationAxisVisibilitySboolSSIbM1PSScalingRefVisibilitySboolSSI�M9PSHierarchicalCenterVisibilitySboolSSI�M6PSGeometricCenterVisibilitySboolSSI3N8PSReferentialSizeSdoubleSNumberSD(@vN5PSDefaultKeyingGroupSintSIntegerSI�N3PSDefaultKeyingGroupEnumSenumSSI�N%PSPickableSboolSSI"O*PS
TransformableSboolSSIXO(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSI�O"PSliwSBoolSSAUIPCPSLimbLength 1SNumberSSAUD�?DDY@7PShadingCYZPCullingS
CullingOff�X*ModelL�:SLeftToesModelSLimbNode�PVersionI�?XProperties70Q+PSRotationActiveSboolSSIDQ(PSInheritTypeSenumSSI�QGPS
ScalingMaxSVector3DSVectorSDDD�Q8PSDefaultAttributeIndexSintSIntegerSI;RNPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@�RIPSLcl RotationSLcl RotationSSA+D��
�D�`QֿD�=�Ŀ�REPSVisibility InheritanceSVisibility InheritanceSSIS,PS	MultiTakeSintSIntegerSIZS-PSManipulationModeSenumSSI�SUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�S/PSSetPreferedAngleSActionSSI5T-PSPivotsVisibilitySenumSSIxT5PSRotationLimitsVisibilitySboolSSI�T:PSLocalTranslationRefVisibilitySboolSSIU2PSRotationRefVisibilitySboolSSIAU3PSRotationAxisVisibilitySboolSSI�U1PSScalingRefVisibilitySboolSSI�U9PSHierarchicalCenterVisibilitySboolSSIV6PSGeometricCenterVisibilitySboolSSIQV8PSReferentialSizeSdoubleSNumberSD(@�V5PSDefaultKeyingGroupSintSIntegerSI�V3PSDefaultKeyingGroupEnumSenumSSIW%PSPickableSboolSSI@W*PS
TransformableSboolSSIvW(PSCullingModeSenumSSI�W-PSShowTrajectoriesSboolSSI�W"PSliwSBoolSSAUI2XCPSLimbLength 1SNumberSSAUD�?DDY@UXShadingCYxXCullingS
CullingOff�YaAnimationStackL��Z:SN_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2AnimStackS�YProperties70WY/PS	LocalStopSKTimeSTimeSL@�Y���Y3PS
ReferenceStopSKTimeSTimeSL@�Y���\oAnimationLayerL�3�9S\_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2:BaseAnimationAnimLayerS�\Properties70�ZAPSColorSColorRGBSColorSD�������?DD�������?�Z5PSBlendModeBypassS	ULongLongSSL![,PS	MultiTakeSintSIntegerSIZ[+PSmLayerIDSintSIntegerSI�[)PSMutedForSoloSboolSSI�[*PS
MutedByParentSboolSSI\+PSLockedByParentSboolSSIE\5PSParentCollapseVisibilitySboolSSIu\"PSEmptySboolSSIi_lAnimationLayerLh��9SY_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2:AnimLayer1AnimLayerS\_Properties70~]APSColorSColorRGBSColorSD�������?DD�������?�]5PSBlendModeBypassS	ULongLongSSL�],PS	MultiTakeSintSIntegerSI4^+PSmLayerIDSintSIntegerSIk^)PSMutedForSoloSboolSSI�^*PS
MutedByParentSboolSSI�^+PSLockedByParentSboolSSI_5PSParentCollapseVisibilitySboolSSIO_"PSEmptySboolSSI�`#AnimationCurveNodeLش�:STAnimCurveNodeS�`Properties70�_PSdSCompoundSS$`'PSd|XSNumberSSADY`'PSd|YSNumberSSAD�`'PSd|ZSNumberSSAD�a#AnimationCurveNodeLh�:SRAnimCurveNodeS�aProperties70.aPSdSCompoundSSca'PSd|XSNumberSSAD`we@@�a'PSd|YSNumberSSAD�T��a'PSd|ZSNumberSSAD��(A�&c#AnimationCurveNodeL �:SRAnimCurveNodeScProperties70mbPSdSCompoundSS�b'PSd|XSNumberSSAD`�@�b'PSd|YSNumberSSAD@�-�c'PSd|ZSNumberSSAD@dY#@ed#AnimationCurveNodeL�I�:SRAnimCurveNodeSXdProperties70�cPSdSCompoundSS�c'PSd|XSNumberSSAD`�˿d'PSd|YSNumberSSAD`��Kd'PSd|ZSNumberSSAD�����e#AnimationCurveNodeL�Q�:SRAnimCurveNodeS�eProperties70�dPSdSCompoundSS e'PSd|XSNumberSSAD�i��Ue'PSd|YSNumberSSAD`(9
��e'PSd|ZSNumberSSAD Q���f#AnimationCurveNodeL�f�:SRAnimCurveNodeS�fProperties70*fPSdSCompoundSS_f'PSd|XSNumberSSAD*�"��f'PSd|YSNumberSSADа��f'PSd|ZSNumberSSAD|�@"h#AnimationCurveNodeL@ȅ:SRAnimCurveNodeShProperties70igPSdSCompoundSS�g'PSd|XSNumberSSAD`+���g'PSd|YSNumberSSAD ܥ�<h'PSd|ZSNumberSSAD� ټai#AnimationCurveNodeL(�:SRAnimCurveNodeSTiProperties70�hPSdSCompoundSS�h'PSd|XSNumberSSAD`+��i'PSd|YSNumberSSAD ܥ�<Gi'PSd|ZSNumberSSAD� ټ�j#AnimationCurveNodeLp>�:SRAnimCurveNodeS�jProperties70�iPSdSCompoundSSj'PSd|XSNumberSSAD`+��Qj'PSd|YSNumberSSAD ܥ�<�j'PSd|ZSNumberSSAD� ټ�k#AnimationCurveNodeL���:SRAnimCurveNodeS�kProperties70&kPSdSCompoundSS[k'PSd|XSNumberSSAD`+�⼐k'PSd|YSNumberSSAD ܥ�<�k'PSd|ZSNumberSSAD� ټm#AnimationCurveNodeL(>�:SRAnimCurveNodeSmProperties70elPSdSCompoundSS�l'PSd|XSNumberSSAD`+���l'PSd|YSNumberSSAD ܥ�<m'PSd|ZSNumberSSAD� ټ]n#AnimationCurveNodeL���:SRAnimCurveNodeSPnProperties70�mPSdSCompoundSS�m'PSd|XSNumberSSAD`+��n'PSd|YSNumberSSAD ܥ�<Cn'PSd|ZSNumberSSAD� ټ�o#AnimationCurveNodeLx�:SRAnimCurveNodeS�oProperties70�nPSdSCompoundSSo'PSd|XSNumberSSAD`+��Mo'PSd|YSNumberSSAD ܥ�<�o'PSd|ZSNumberSSAD� ټ�p#AnimationCurveNodeL���:SRAnimCurveNodeS�pProperties70"pPSdSCompoundSSWp'PSd|XSNumberSSAD`+�⼌p'PSd|YSNumberSSAD ܥ�<�p'PSd|ZSNumberSSAD� ټr#AnimationCurveNodeLȦ�:SRAnimCurveNodeS
rProperties70aqPSdSCompoundSS�q'PSd|XSNumberSSAD`+���q'PSd|YSNumberSSAD ܥ�<r'PSd|ZSNumberSSAD� ټYs#AnimationCurveNodeL�D�:SRAnimCurveNodeSLsProperties70�rPSdSCompoundSS�r'PSd|XSNumberSSAD`+��
s'PSd|YSNumberSSAD ܥ�<?s'PSd|ZSNumberSSAD� ټ�t#AnimationCurveNodeL(��:SRAnimCurveNodeS�tProperties70�sPSdSCompoundSSt'PSd|XSNumberSSAD`+��It'PSd|YSNumberSSAD ܥ�<~t'PSd|ZSNumberSSAD� ټ�u#AnimationCurveNodeL��:SRAnimCurveNodeS�uProperties70uPSdSCompoundSSSu'PSd|XSNumberSSAD`+�⼈u'PSd|YSNumberSSAD ܥ�<�u'PSd|ZSNumberSSAD� ټw#AnimationCurveNodeL���:SRAnimCurveNodeS	wProperties70]vPSdSCompoundSS�v'PSd|XSNumberSSAD`+���v'PSd|YSNumberSSAD ܥ�<�v'PSd|ZSNumberSSAD� ټUx#AnimationCurveNodeL���:SRAnimCurveNodeSHxProperties70�wPSdSCompoundSS�w'PSd|XSNumberSSAD�x'PSd|YSNumberSSAD ܥ�<;x'PSd|ZSNumberSSAD� ټ�y#AnimationCurveNodeL���:SRAnimCurveNodeS�yProperties70�xPSdSCompoundSSy'PSd|XSNumberSSAD`+��Ey'PSd|YSNumberSSAD ܥ�<zy'PSd|ZSNumberSSAD� ټ�z#AnimationCurveNodeLp5�:SRAnimCurveNodeS�zProperties70zPSdSCompoundSSOz'PSd|XSNumberSSAD`+�⼄z'PSd|YSNumberSSAD ܥ�<�z'PSd|ZSNumberSSAD� ټ|#AnimationCurveNodeLX�:SRAnimCurveNodeS|Properties70Y{PSdSCompoundSS�{'PSd|XSNumberSSAD`+���{'PSd|YSNumberSSAD ܥ�<�{'PSd|ZSNumberSSAD� ټQ}#AnimationCurveNodeL�ۅ:SRAnimCurveNodeSD}Properties70�|PSdSCompoundSS�|'PSd|XSNumberSSAD`+��}'PSd|YSNumberSSAD ܥ�<7}'PSd|ZSNumberSSAD� ټ�~#AnimationCurveNodeL�2�:SRAnimCurveNodeS�~Properties70�}PSdSCompoundSS~'PSd|XSNumberSSAD`+��A~'PSd|YSNumberSSAD ܥ�<v~'PSd|ZSNumberSSAD� ټ�#AnimationCurveNodeL�f�:SRAnimCurveNodeS�Properties70PSdSCompoundSSK'PSd|XSNumberSSAD`+�⼀'PSd|YSNumberSSAD ܥ�<�'PSd|ZSNumberSSAD� ټ�#AnimationCurveNodeL�&�:SRAnimCurveNodeS�Properties70U�PSdSCompoundSS��'PSd|XSNumberSSAD���'PSd|YSNumberSSAD ܥ�<�'PSd|ZSNumberSSAD� ټM�#AnimationCurveNodeL��:SRAnimCurveNodeS@�Properties70��PSdSCompoundSSɁ'PSd|XSNumberSSAD`+����'PSd|YSNumberSSAD ܥ�<3�'PSd|ZSNumberSSAD� ټ��#AnimationCurveNodeL@�:SRAnimCurveNodeS�Properties70ӂPSdSCompoundSS�'PSd|XSNumberSSAD`+��=�'PSd|YSNumberSSAD ܥ�<r�'PSd|ZSNumberSSAD� ټ˄#AnimationCurveNodeLP��9SRAnimCurveNodeS��Properties70�PSdSCompoundSSG�'PSd|XSNumberSSAD`+��|�'PSd|YSNumberSSAD ܥ�<��'PSd|ZSNumberSSAD� ټ
�#AnimationCurveNodeL0��9SRAnimCurveNodeS��Properties70Q�PSdSCompoundSS��'PSd|XSNumberSSAD@�H濻�'PSd|YSNumberSSAD`D��?��'PSd|ZSNumberSSAD �Y�?I�#AnimationCurveNodeL(~�9SRAnimCurveNodeS<�Properties70��PSdSCompoundSSņ'PSd|XSNumberSSAD@(@���'PSd|YSNumberSSAD���/�'PSd|ZSNumberSSAD��S@��#AnimationCurveNodeL}�9SRAnimCurveNodeS{�Properties70χPSdSCompoundSS�'PSd|XSNumberSSAD�N=@9�'PSd|YSNumberSSAD w�1@n�'PSd|ZSNumberSSAD�Fm@lj#AnimationCurveNodeL�{�9SRAnimCurveNodeS��Properties70�PSdSCompoundSSC�'PSd|XSNumberSSAD@�� �x�'PSd|YSNumberSSAD�NH���'PSd|ZSNumberSSAD���(��#AnimationCurveNodeL w�9SRAnimCurveNodeS��Properties70M�PSdSCompoundSS��'PSd|XSNumberSSAD`t=.���'PSd|YSNumberSSAD��/@�'PSd|ZSNumberSSAD�K:G@E�#AnimationCurveNodeL8q�9SRAnimCurveNodeS8�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�a@���'PSd|YSNumberSSAD �@+�'PSd|ZSNumberSSAD�;&M@��#AnimationCurveNodeL�m�9SRAnimCurveNodeSw�Properties70ˌPSdSCompoundSS�'PSd|XSNumberSSAD��$�5�'PSd|YSNumberSSAD��1@j�'PSd|ZSNumberSSAD�FQ@Î#AnimationCurveNodeLXi�9SRAnimCurveNodeS��Properties70
�PSdSCompoundSS?�'PSd|XSNumberSSAD���@t�'PSd|YSNumberSSAD Aq"@��'PSd|ZSNumberSSAD�L@�#AnimationCurveNodeL�d�9SRAnimCurveNodeS��Properties70I�PSdSCompoundSS~�'PSd|XSNumberSSAD`Ch5���'PSd|YSNumberSSAD�Y@�'PSd|ZSNumberSSAD�ʪO@A�#AnimationCurveNodeLX`�9SRAnimCurveNodeS4�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�J�?�'PSd|YSNumberSSAD��@'�'PSd|ZSNumberSSAD``�Q@��#AnimationCurveNodeL(c�9SRAnimCurveNodeSs�Properties70ǑPSdSCompoundSS��'PSd|XSNumberSSAD�qz@1�'PSd|YSNumberSSAD�G�?f�'PSd|ZSNumberSSAD�4I@��#AnimationCurveNodeL�]�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS;�'PSd|XSNumberSSAD��A�?p�'PSd|YSNumberSSAD �忥�'PSd|ZSNumberSSAD��oO@��#AnimationCurveNodeL�U�9SRAnimCurveNodeS�Properties70E�PSdSCompoundSSz�'PSd|XSNumberSSAD����?��'PSd|YSNumberSSAD����'PSd|ZSNumberSSAD <�Q@=�#AnimationCurveNodeL@T�9SRAnimCurveNodeS0�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�c-@�'PSd|YSNumberSSAD@+��#�'PSd|ZSNumberSSAD�N@@|�#AnimationCurveNodeL�O�9SRAnimCurveNodeSo�Properties70ÖPSdSCompoundSS��'PSd|XSNumberSSAD���@-�'PSd|YSNumberSSAD݅�b�'PSd|ZSNumberSSAD�ǀI@��#AnimationCurveNodeL@K�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS7�'PSd|XSNumberSSAD@7R!@l�'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD@CP@��#AnimationCurveNodeLN�9SRAnimCurveNodeS�Properties70A�PSdSCompoundSSv�'PSd|XSNumberSSAD���@��'PSd|YSNumberSSAD [y @��'PSd|ZSNumberSSAD�a@@9�#AnimationCurveNodeLpH�9SRAnimCurveNodeS,�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD ��@�'PSd|YSNumberSSAD ��*��'PSd|ZSNumberSSAD�x�x�#AnimationCurveNodeL�B�9SRAnimCurveNodeSk�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��	@)�'PSd|YSNumberSSAD@�/�^�'PSd|ZSNumberSSAD�����#AnimationCurveNodeLp?�9SRAnimCurveNodeS��Properties70��PSdSCompoundSS3�'PSd|XSNumberSSAD�'��h�'PSd|YSNumberSSAD���߿��'PSd|ZSNumberSSAD@K2�?��#AnimationCurveNodeL(Z�9SRAnimCurveNodeS�Properties70=�PSdSCompoundSSr�'PSd|XSNumberSSADH@��'PSd|YSNumberSSAD���ܞ'PSd|ZSNumberSSAD���T�5�#AnimationCurveNodeL�9�9SRAnimCurveNodeS(�Properties70|�PSdSCompoundSS��'PSd|XSNumberSSAD C@�'PSd|YSNumberSSAD���*��'PSd|ZSNumberSSAD`��t�#AnimationCurveNodeL7�9SRAnimCurveNodeSg�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD ���%�'PSd|YSNumberSSAD@D�!@Z�'PSd|ZSNumberSSADu���#AnimationCurveNodeL04�9SRAnimCurveNodeS��Properties70��PSdSCompoundSS/�'PSd|XSNumberSSAD��@d�'PSd|YSNumberSSAD��V!���'PSd|ZSNumberSSAD�~P��#AnimationCurveNodeL`1�9SRAnimCurveNodeS�Properties709�PSdSCompoundSSn�'PSd|XSNumberSSAD ,:+���'PSd|YSNumberSSAD@@K@أ'PSd|ZSNumberSSAD`,�P�1�#AnimationCurveNodeL�,�9SRAnimCurveNodeS$�Properties70x�PSdSCompoundSS��'PSd|XSNumberSSAD mJ$@�'PSd|YSNumberSSAD`12@�'PSd|ZSNumberSSAD`~Q�p�#AnimationCurveNodeL*�9SRAnimCurveNodeSc�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD���$@!�'PSd|YSNumberSSAD���V�'PSd|ZSNumberSSADjFQ���#AnimationCurveNodeL@'�9SRAnimCurveNodeS��Properties70��PSdSCompoundSS+�'PSd|XSNumberSSADY�'�`�'PSd|YSNumberSSAD`�&���'PSd|ZSNumberSSAD�l�P��#AnimationCurveNodeL�-�9SRAnimCurveNodeS�Properties705�PSdSCompoundSSj�'PSd|XSNumberSSAD`:�!@��'PSd|YSNumberSSAD`ΐ
@Ԩ'PSd|ZSNumberSSAD`�[Q�-�#AnimationCurveNodeL��9SRAnimCurveNodeS �Properties70t�PSdSCompoundSS��'PSd|XSNumberSSAD@5�?ީ'PSd|YSNumberSSAD x��'PSd|ZSNumberSSAD��P�l�#AnimationCurveNodeL�#�9SRAnimCurveNodeS_�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�~f��'PSd|YSNumberSSAD��!�R�'PSd|ZSNumberSSAD���P���#AnimationCurveNodeL���9SRAnimCurveNodeS��Properties70�PSdSCompoundSS'�'PSd|XSNumberSSAD�3 ��\�'PSd|YSNumberSSAD�?N󿑬'PSd|ZSNumberSSAD@=�R��#AnimationCurveNodeL���9SRAnimCurveNodeSݭProperties701�PSdSCompoundSSf�'PSd|XSNumberSSAD`c0@��'PSd|YSNumberSSAD�C&�?Э'PSd|ZSNumberSSAD@([O�)�#AnimationCurveNodeLp��9SRAnimCurveNodeS�Properties70p�PSdSCompoundSS��'PSd|XSNumberSSAD�#�ڮ'PSd|YSNumberSSAD�C��'PSd|ZSNumberSSADJ(M�h�#AnimationCurveNodeLx��9SRAnimCurveNodeS[�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�j%��'PSd|YSNumberSSAD��$�N�'PSd|ZSNumberSSAD@�qS���#AnimationCurveNodeL���9SRAnimCurveNodeS��Properties70�PSdSCompoundSS#�'PSd|XSNumberSSAD �!@X�'PSd|YSNumberSSAD@�	@��'PSd|ZSNumberSSAD����#AnimationCurveNodeL���9SRAnimCurveNodeSٲProperties70-�PSdSCompoundSSb�'PSd|XSNumberSSAD���@��'PSd|YSNumberSSAD���*@̲'PSd|ZSNumberSSAD��x@%�#AnimationCurveNodeL���9SRAnimCurveNodeS�Properties70l�PSdSCompoundSS��'PSd|XSNumberSSAD���	@ֳ'PSd|YSNumberSSAD��/@�'PSd|ZSNumberSSAD��@d�#AnimationCurveNodeL���9SRAnimCurveNodeSW�Properties70��PSdSCompoundSS�'PSd|XSNumberSSADڋ!��'PSd|YSNumberSSAD���2�J�'PSd|ZSNumberSSAD�`�@��#AnimationCurveNodeL�V�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�5$@T�'PSd|YSNumberSSAD`|����'PSd|ZSNumberSSAD����#AnimationCurveNodeL�f�9SRAnimCurveNodeSշProperties70)�PSdSCompoundSS^�'PSd|XSNumberSSAD�B�t?��'PSd|YSNumberSSAD�K��ȷ'PSd|ZSNumberSSAD����?!�#AnimationCurveNodeL0a�9SRAnimCurveNodeS�Properties70h�PSdSCompoundSS��'PSd|XSNumberSSAD`7I��Ҹ'PSd|YSNumberSSAD ׯ��'PSd|ZSNumberSSAD �q�>`�#AnimationCurveNodeLpQ�9SRAnimCurveNodeSS�Properties70��PSdSCompoundSSܹ'PSd|XSNumberSSAD`2�?�'PSd|YSNumberSSAD@Ce$�F�'PSd|ZSNumberSSAD���@��#AnimationCurveNodeL�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�-@P�'PSd|YSNumberSSAD�� 2@��'PSd|ZSNumberSSADว@޼#AnimationCurveNodeL0��9SRAnimCurveNodeSѼProperties70%�PSdSCompoundSSZ�'PSd|XSNumberSSAD��+���'PSd|YSNumberSSAD`�.&�ļ'PSd|ZSNumberSSAD����#AnimationCurveNodeL8C:SRAnimCurveNodeS�Properties70d�PSdSCompoundSS��'PSd|XSNumberSSAD��
�ν'PSd|YSNumberSSAD�`Qֿ�'PSd|ZSNumberSSAD��BĿd�AnimationCurveL��[:SAnimCurveSs�	DefaultD��KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x
�<��p�DvY��)T~�Bʏ��s>o��G��<8�N�X�b:�Y�DM�dMK��
-J��פ�͚��&��"�P�V�����9:��3�k�B������Q���T-Y��>�Ԓ�h.}T�K�|r�oHC#5�.���_jj���=j2W�؄�&��-25y>�!�n6�Aŗ�$����d���:1������t��J�>P�wI$�K�hy<�gŒy�fj��b��TdBNGi|�ђ�4gܛ*[=���2�Jr���(���R�9e�7������l@y�t�e����Cq��1��[���0|U'&G���C�D�^��mL��u�n����#��-�YY ��.�����
ߔ���+
�A�,��AY�ߗ3�%�[�.��|���|)�4�_��sݮ�ţ>���7ֺ�s���&g���,�ךc��X�������qA�[�P�y!���wd�q��Oq�,��a��MR42���YYz��ٙ��u�R�B�۱!b;�~Ua�cF�U��U��
�9*8�V�|�6�~���[�y�4(q3N	���.J�.Z�`��	��P��u=�zqk�?���xKo����~�+�4N00��'�H�m��ѹ�z��ʍ�t:6>ɺy��e�?�����U#c]÷�|�]3
����q-�]̺��x�[����^i�~�T����w��pR��2������ΨYb��2�3,$�H�D�/)3��U��)� �Ϻ!�{�&x����u)�̐�\L��uS2�nN,�h�І�kH��3ݺ�J�^z�T�����Ο�Akɸ9��~�V�M4u,�J�M$�d���B��)u?��2�$�V��FIM/����\��4ڕBs6'ӸYY�+�{���*��4��j�)4!���ER^}�	��4�AT��/����������J�\'�Y���o\@�
�ԨoF)�&��3�H��L��Ή��^1�E�8]�$~����ŀ��xO��-qN"��@���������b"��Kd���y%���ҚCop�
'�
b�`:{r?�)�yCU�?������W��fv��5c�h���k�������N�[��6kX{��i�#�L��a�;vx!�3�<��'}�"fw��!��ۀ�3(L���X�_���2�'!fH�E�
L���	�.#ًp|2�Y�H���?6#2 Rm�Ԅ��prB�{,�C�a��,0��*4�0�s��Lg�=��e|��¶}��7E�^c�[ UW���F9x� �r��Cl��ׯ�����8�K.�>��R�dg��$��
�en�\xs)�|k��&���K)��%�{���i�2�k�����ˏ�+�:4K���^j��%}N~2��E۱w�W����Q��q������Zʱ�*yUq-��n�#��&����O|��V��z�sn{8�>��P2„ݛ���)�Z=�k,�c
˽�H�'�qn�F_x�ڎx�r%�w� ���8�"�zo�]�+��6�aI�������KeyAttrFlagsi!*�KeyAttrDataFloatf

W�KeyAttrRefCounti�
�AnimationCurveL��[:SAnimCurveS��	DefaultD��KeyVerI��&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�l�F
KeyValueFloatf�9x
�yTUUƵDH4�p%4�ie��f&?[Y��LÂ����J	+'Ē�����=�s����Q0
�VT*��$-]����{��}g���_[|-���⿭��Q������gk�i�!LְjE
=�!�@5Ec���P�ڲ�Y���i�*�x��닂<�k�c�&�;ŦMr�Ş[��vx�͐]'ˤ�eA�4�c���MҶhN=d��Ԧ�#{�k\�NKL�j��tM�ؖ#���%,A��Y�/B��Jѭ�"o�ôE^�È)�;��6ĭ6�-I�b�]�t���'CDN�o�C�1�꽚�?i���#̥n~�y3������E�D��|��#��o4�:�4� �A��Do�i��Y6@3�C�ʁ6������ �]�O��;K���Q���^����u6�c\���jӖdqO�b}�ɩg�ּ��&?�aJo���&��J��Q`�#8�1��h1�ޢ0��FWͨ'=~���*Ax��7#�m�trY��Cqg��HM�lE�tͽmNi�`�#!��t9es�N��%ɤ,�]3Mƕ)|M�l�I�e�l~��	������\���?T���5�wz,b�=~kS
��ٔ�硬7���3�� X�`����x:��L�L}C�W�͂�m:϶(��8��$�A���t�5���[�E�I�ܾ&7l����������-.r�9���rb�Ͱ�5��2Y�,��$��W|�ߢ��y���=6���iD'(�k�l���������2]1E� ����^�ܶ�d˭��qC5�,~>@J����~����8=¡��Kb�C�(�7k>�Ť�}A�\��C��Vo�',�V*ʵ ��AK���:�o)V\�(�c����^(*�M�	"�S�%��9��t��о�a�`���M��%/�P,�p9:D\B�31A��9t٨)�&9z� c�A�T��t-�H���>+cq�����M�ܼK��[S�E����	_���������}�{R�i+д����38�3@[U�]����5�6Mq}�^�y��$����?�l}Z�����S�ă��X���)������˳�,K�|�b�'��,Md��H��H�ফ|�Nf�3�rT1k��jʼn��^�����ge�B,�<����]��yl��h�����@�)�yC	e/�=���َo�6��>�,b�w�\�߂zk+��b�=U���}|9A�+0I�8O'��ś/GQZ��p�ˌaA���2����5ED�`]D����Y ���LE�����y�R$Hx�$)U�1�f�y���6#�Z�|���t/����2�^P4Y��ɢ�i��݊�LIc���;��<O�������KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�Y�AnimationCurveL�\:SAnimCurveS`�	DefaultDx�KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x
щ_�ypg5Ha�J
](K)R�y)b�L5��N�r�Y��6�CR��ХK���IȹȑH��������_���=e{l�fհ���e�啰����pqk}��W�˰�-�7�S��m�,'�=�S|͚n~�d.�۱�y�σ����(e2M�1��0�8�LW�#͕#
��䕛6�q5&�u7����H�`ɛ�D�҈�m.�ᔒ��D��%B��D	����oI����Ib7L�o�8P:C�䕠H�
��pQC�2�£�ߠI��� S������r���'�������w��A�^/x���7�ౢ���� Xv6d_�@Ҧ����"a�
_��!�<�GDB�P�ņ��u�����A��*M|���'d{�CN�+h�s�����j�l���
��o�%Lk5�]��`��9z0�j!�R���`uw&Tfˁ�Չ�z�0�����~��(}�NV�#�ޔq�	��`9v/��y#�(gk�7�Ɉ+�����-Rajz�<�'���a���k�S��s-�@Ɗ
��h��tg~1U+����,-��G��:�}T��(��4	+{9؛��ݫ���Yp��6^n�G-�*��t-F���m=�>���^�����mE;'<�I�nȎ�0��}?�?�K�b�?/�|
���axre$��E!?"
�Fb�z8�pw��!�>5����z*���n���`��'*����.�����[����(�i�9�Vx$��b>�6A��Xg�k�k���ʅ�b�S.*W��'(��u��y�v?{C��XA+U�TOW؜�c.'h��4ڙC:8�BƄ�+S^�'ɇ�%�ZoI�E+�P�'�b��bԝ��]Җ`F^�
Ig�nr��Bh10)#�����o!)^�٬.r��#�����p�����0�K�
�AСs��`�a��j��c#i�����[B��5�ݶ��{HW�]�¯ZG(�t�(�&���!<����"h��䨸��6p�v�+N��
�g�����S��6A잍P}��<Z�9��6��&P����,���K�y�"�tSH��<H˂��	�]c��p���D=���T4/�2�ҚKN�����1�|@H��,HP�i�����gԚ"˪>�����\�8���N��^��H4*	q�O�X�G}��B�H9%��ڨ�&.�D��m���o�ƧO��*���w��S'c�
P��~D�5�a����G}�!�A�������Y��<�e��sB�WL�)��C�}��}��a_1*%���Pt�co4���������h2���Tq�8+n�C�X�ٳc��D��(L����0,�śEA�2]���~�'�_6xa�K��q�o�B�Z��nL-��|�%�U�p��4��ĺ��8��u��+\4��G�d����F�tۥ7T����]k��15t ���5d��h��Ζ^��)���9�$���ͻ�Jn�����~��KeyAttrFlagsi!�KeyAttrDataFloatf

L�KeyAttrRefCounti�L�AnimationCurveL��[:SAnimCurveS��	DefaultD`we@@��KeyVerI��&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x
PT�eFn��H^��J%V�Tn�����3��$�H�� ���B�)'�;��=��̵�\��g��֊�uI�B�T��	�����{���}�{�Sa2fi��v,Lf~.�z#��!�W<,���Ŭ�2��8Y�+^�˒*�k�,�͐�Mɒỳ�쬙rK�l��!�C��̾Lٙ�/W9+e׾�2��Od��=�r��������Yy��m��B(�B��Q�Y9�ꆠu�0L;�'-����(==o���SOa����G%"�~2�T;0���T�zA�����Y�A{Q��f
Wwh�\���1�XaGG�?_7qہ�w��;���r'��u�~H���A'�;��c�HёP��b���I�:��v!1܍�snh�y�u��\H��1�Oǝ5.�?�B�U~
uc�nT��`�Jr�=�	�z�Y{ڍ��7xP��A��iD��~��K�(xۅ�UO��4lw�ANJ�]™Ľ�bk%zʁ�ZbQ>qH[�n]~)t!a���v�1i�s�;�Fz��<`�}
�?{[.Ftd)|+^�W�cV��Mh��O`���z��h;o ?��K�H��EY����{��^�6�RJ#�_؈���x�R#t�_#��e�*��&�����
��z�@{��%s
�c��À�Ҁ}����>�������<o�6p����Ll���^��0�g��S�G�b?\~t�������Z�}|���:χ��C}�·uM~t~|n�%���P�܋'�q:�7�L�o���-8nQr�k�1����M�݄�_7#d�~��ُ���B馣X�v��.�5�
,C��n�ml>�)+��蓑L�����̋bt�
���t�S��w��)l\���
�u����������;�`�[Б X�!رF0�Z�Y���!�{E����o��r�1Y�L�I<���w��N�&8�`��O<6H��SU��f��_�\U)��.s�^�p���/�	λn�	KY�����&������p�Z��=��&���wz-��[a��s�K�	n���x�
�
3�~�_{9��{�\����fS7��~��u ���{qC�N�N>2��A>*�?~4�U������&YY��rl��S+TY�\_
DžX9e��uK���K+;v[ٵ�ʣ�V���L��uI*�%��4Z������De�:��b��MNߠ��=�ԫ�?����*�UnSئ��Le��*��Py7G�36��?�QYa�F���f�X����6.�񄢱��ƶ*O��X�����8l�ƿ�k,|B�����h��@c}�ƭA�5'S��������8C�hp4��iI<���=V�T�å�~�/�q����[*W���O��{����j�������i!��KeyAttrFlagsi!�KeyAttrDataFloatf

?�KeyAttrRefCounti��	AnimationCurveL0�[:SAnimCurveS��	DefaultD�T���KeyVerI��&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf��x
�m<�w�W�&�k���xiBڈ����+���I��e�鬎�k�X�I9��99�;�p�H�����Ⱥ*�K�v�fj˜��ҕˣ������wY���)4t甆f�i(�FC�]��_N�'�����xC9�]TA�4�RA̧�R�*H6p��ͭ��gU��|�N;ŝ���r�mVR>����������~7R�^�$����SL�O�i@ZBc!%T�YD���

jiWP�mU�Q�i��ɥ���"%�Nt��#)4����m,I�#�R��A��
P��m�ZE��x�B�M[���M�U�m�F��:P�����G#�M�0ۈ�&�3=B���sI�ǬJ���+H̎�����MB���ݗQ�^����<o�.�C�����,w��z���o�bOp����y1��K٤H�vg���Q5��W��nZ�于�����N�6�>����6��P��I�-�9cH�E+���Ꮐ���[k�������r�.$�܇E.�d��+�6�Xw+7,�P��B��2|�^��K+�R��ZxY��ܤ�Ͳ:d�4���1{��y���K��	e�6Q�amv7��Y�]21��v�B�&�tG}
o�BvyF/����!S���K���
w%sпj&.�0�*�
�+d���Y��5f��;m�c�ϔ��ϋY�rv;q���}�]�1pqW�܊�t�CDrv���ʯ�,��v��h;���+���]��G���3"Ga/�u�d/����(�vuw�o~�J_vΠQ�1m�>���K���o+G��'eF3
����z�E����I��-��$_�Mc:;gӎ'��ν��J:ׯ"ݦ2z�v������Z�Ѯ���s��LΓ�]-ywU�a�

��&'e����
j�=Mq�NQ�\ٟ���G�}���m	��)��Bǧ��ιP��6���f����t?z葐0yU����_nj<.D��+܄�rOa��"!B:��F��e��-����_�]�mzţuD_���Y\��:.疆�(���}��o�d���ê�l�,��~ʮ�m`�\k���^C{��e�W�ld��k�A�v��y�,��0Eu������#zz���0g"
���x݌C��𱊁��$�;$ö�����>(�ON���M�转B�j�y�E��5�-ҡü3���*X��m
h���yd=6�0l��Z};�є���1%��+pH{
>+�������4X:�Nk��$ݒ��ш-ƃ�9���PG�8�h�2̭Z�v��2�C��o�M��M����yV>�K�2q�6�?�ݺ��Jٯû����l�e
��|����8�1�Wk7gȭmї䊡Ǟ����Z��{��M���д�b�G���B�g2o�]P<�&����)�/���{�Z^�;WU0��~R�_w����J$��p����y
x��f+y�v ��&\<{�
���}j�f#�?@���$	KeyAttrFlagsi!^	KeyAttrDataFloatf

�	KeyAttrRefCounti��AnimationCurveL�\:SAnimCurveS�		DefaultD��(A�
KeyVerI�@&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�2�
KeyValueFloatf��x
ӉW�u`�%�IYb�E���w�\����{�E%gD��fMzG&1Q4�LG$
wVQeQ���}p�r:n������d4��s3ց_p��4���D��Ёw�Չk�/�Lمo����������ÿI���H~�o�+��������sxP�\ޠ[xlY�?�Mn����4���.n�?,�[.�Gl�ig;�gz�ϩ������c"^����V'�W��Jg���c�P7��MAQ| >�<�1AH�h�2��]E�( ���F�= �x���k���"��:�]��c����.an���7d���c‰�
�9 !�D���%dH�|K���"����("r���6	�cdT��?�V(��W1#��if��h��J�4�
��ʸa/��'	�S$L�� �(HY��kX���[��e�
�w(�d��3�V�����$<Z+a�z	��F
�� ��g7*���/_@�*��׀��X����,��f\�S1𞂚>J��/��m����r��_���;�=���9��qvzcC�\�\�Ŏ�1K{���u��u�_�*p�}�|u]Пd��7""�Ï���'�_и7�)����F��T�T��FF��&$Xl1�4M�Cma��R�N�'Q�ݴ{B>YX1Y6���UT�X���,Z�-�P�5G�R�6{����~���C��M�O��C���i��&��~��h�|K2�%�����T�M��A3�O�ʳ���/��":�7��“�;�-Չ4�V���W�G��4��m=��
ѻ�\t�J{=n�/�S
�m(��<�N������Gof�b���w�	���N}��������Of�Oc�xR�)�Գ��lh����d�3���B��*`'BH��cC�h8�0��k�~#�׌�gt�h4����k>3b�E��<xK@o����D,�4jMP��	��jE�2�3
��^F���c�"�jG
�
H�,�l���"b�E�~ �u2�Xax��5SA����R�8ZUL�R1s��#{T~�b��	.}*�W�0V6�	C�t3>-G�Hl=��V��T�4�p�E��ZeL{{�b���\��+�]O	3�$f)()W+̈/G��(��b��w-0D cD�uI���2v����t,�削nT�	���>X����Kܹ��C_[o�O��)����C�د%�+s4����^�i8�2�YN_�!��j�6�B����b�x�vSlC�58�Ӛv&���y��{�,)J��4ǡ`-储mp�5��@�I��v��N[��;����A���m�����3x��}�R�gځZV��-�R=���q�N?��U-׼
35�[{�E�9Z���ݫ��|�]���JV��~y�Ž��ƺC�Φ��f�~�}<��(g϶]f�����hǣ����z-#2W+�p����o��w����g�(�w�j:�Ik���1�);�e�ZMT�Jc��m��M���QvO9�ͿR\KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��'AnimationCurveL�[:SAnimCurveS&	DefaultD`�@>KeyVerI�x!&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�&'�
KeyValueFloatf��x
ҋ;����j%�n�].OM�!�����}��~� qp\N��r��Et�r+E4��}kmݭ�-vy�VV�úN[�4����/�>����n�-�
�%('���'���h�T�7����BqM8o�+���
���t_���?R�F��MSɶ4a�E[>MY�c#_�nȰzL��-��!AO
�.��V�i"�v��ۼ�G!�標�Y6��f��9SN�x!�=��wyQ#���65��ј�KIr���TF�S]��S��<�
dlT†[^�m@ʼO�L��a��L쩃�W�3��k/F��L���_'r$<���4~N��A�vj�Ea�2���-[ˉ�Q@��ZfNi���V���S�!jq2���>�3K�YT�W~J�ŗTL�b��
������L�4+�ip��c��������{�N@[�d�$��﷒3eC}�L�F����p���$��p���w��pr�Eͨ��Iy�8oeJ&��Y�l64x2�IBՄם7�G '�|0x(��2�#�3j���\�*�BwQ˫�Dr�|9����o7c�����������l�G<x/�ɞ��<�\KȈ�9�an����b�~�������j��$���!T(�h�JBdN���sm�_�ԗb���G���7&M\8�HM�^6O��З��uT��k܏���_�1�:�U��w��+��;�8�X�}��_�$S��I��h���8�/�����Y�'��S+o�tR���Ǐ�q�u��xRH�Ͼ������Ư! k9Q[-���Ϸ�
��z����7�-��֌��3q
����xkx#{-�ྐݭ�li�&_UKCr=_�,�{:��b6�4�7��g��mDƐ�Yf��Z�ش��
��̌��Y1X�B�Jl��p�s?^�tL���\s0+<Q���.�����2c𫎤[�䰄a��,��Bt��?K�o$��
��1s���#��\�����'��xh��cv6���m��ͧ��1�}���8ү$-��K�UX�-!yU*�Ӽq�`���j��L=)&���?F�a�~������Dj�'BXr#������~�Mt�wj�J'~w��DI�VF���X�Jʢ�1��n*��P֜���~�r^���TI=7/�.��ue�z�m��<���~�à,�M1�i1,,ቿ?����&�3¯�ah{Ұ�*F�a%W�T�2\�}�lV'��g���&*�~I�bS&����]t���SSz����8F~F�a'O����7���Q�;�+��9|�ww���UW5�ϖ�|��k]Z�>(���l��V`ؓ���<����[߀�Cf_P+oŷ������
��qK35X���lˢ�;��D�O�q����sM���I*î�a�Mt,�����sY0�@d�d�
��d��P&)�2��P;���P��P'KeyAttrFlagsi!�'KeyAttrDataFloatf

�'KeyAttrRefCounti��6AnimationCurveL�8\:SAnimCurveS(	DefaultD@�-�2(KeyVerI�i0#KeyTimel�x%��_���u)����BY�F}���[!#�9a��t���Ei��B��qb:4�����r�.G{��qb�U{��s�߲�/
��~ޏ{��|�������:M�q�eh߾�ÁԼ�
�܁��#~���m�b(x���n}�H���T@~v�_�����a�rS��zuÜHsf�*^��r3>x:��?�m�����ӽh�pҸѥʞ�}�ɪH&ix��J�<�B���+\H��SuP�8�ŕd&�~uV���v#�6ˡve𿡨�m��.j�5�w�	�ˣ�$mw�UAu��=�ٿڝ�
�.Bխ1�H~L{���	�}X$�:g'4��P�\2��Ff�����@����cHNSC54���e���y��P�eh�tc�XR\�	�..��<w�q��ƒ]�X��j�a�I�L�
�8�����e���&M��ؤ�l�(�V�N�xN ��V(��pZ'5L$U'��B�W�sh9��E*٭�!��
4��_�M*�x�A�G'si:t*�Y)�9��=�4��Ƀ��ڇ��&�B��R���*m��z��SP�;�=d::��!u���P�(9�d�e@��17�hG;gi|��'����	�Nڶu��75�� 's�/i������O�okX�GZ6�7Beo��$/��	�_޸
��\�k]���ܟBy��?�I�8���6(K�^@�-�j�!��q&)}����\��ǽ�g����-�iιu���I�{ #��w�m+�$E+b�C�}�7P��UD
[U�����;��P���Zo��C�bR� ���ChY�8�T^�-��(�hn�&��'!�j�;h�_�*��7E�CN������F)����@vC'�4{�ҋ��5�2x���xJ}^Af]W���Ԟ��� �?hm���o�"����$�g󿁚i����w>i�(����	L�凓��G�ʫ�5�WV�F�vB
T�v�$y�-I�|��	*<��Nrl�&V_+������=�X���܆£HvY��%����Q4�rv���ݭ���C!�8��l�����sd|:��;R���eО��
5�ڨR�';	mo��Au�`�bR0Ф����BRe��B�f�h�5NYB*�ʷCޫ�h��^J*���Bnz�Kh�N��%�>g 珮�И�MXF�,�
��!h���i��o4BVg���>!B%f��\�2/��=*���c_C�C�X�]���*>[Aڗ'$AM�w.�����ݩΆ�%�P`�_IZc�vC��z�/�
�'-��j���<Cs�*�Y�#T\���䆻n����kPvh��������6(k�-&�!U���bJ7���J Y��PXg��:Y�Z�9+Du��֑b�+鐡�;�Z��)���9m��i�ۡ�L��DR�#�ڪ<^B��EI��d�ih�J�U�>	H���K�rL˒���YY�Wd�f��iɤ�pc�.脦��RH���w�s��ݔK7���� �e�g����-J���Y{�}E�'eCI��.d:�妑����P�)�;����Ǡ� w���8)��:�o��3H[NI
T�\��-��&���\��|������$-Y�}P����d�fk�	�H��C�ߐ�ԺP���m�I	I�F��u(�pe�f��[a4��n��N��2�����7��@�Ѣl���q��;���a�x��2�Ԛ|X[IQ\w&��joAͲ�i9��נ"h[2�������`q�ah��U�n#�7Z�AK��!�Tb!��Q?C�ն�rR~T�W�BS�$n>)�[J g��g�ؐ>�����<�?��CÜ�˷�R]�y�

s�A�높�d��*d�X2a'��_��Z��1�ެBB{������3lA��y�=j��m�ƕ
R}��x�t�EZ+�ҠjB�u�W�L.&-���PYq��-�SB�G����=����p7ir?����!�1V��4�u�e.ߏ�K��I���<����ZJ����ꋳC�/TI2���Sc/�,X��dE����2R��e=��)�P�6v�~R�;Jmm�B���3�I�_	%��y�r�(6�
KeyValueFloatf��x
��?��q�)�RyX�t�W6[�-/R�-G/W�U����ֲWw�b,+Z1t<?d��h�S���~Bb�s�r<��^*n%�����?�}���3>��ݧ1{Ȉ���f���L�0�y%tL�w�'��]'���Az��r�����~θe��etaN�&\��y&�����N��+�,�(1��Q�����XE�o:i!l�H�n�Zw����~����2�*Y�֛A�>9���͘�H8�J�C~�7p�L�g�1<&����7��a�Q��&Q��W�l�I�פ�K!$�5�ќ|Ni����S�o�c��������|��c����c~�89�HY��y6 �n|@�u4�:����zejԣZd�^e�ׁ̟L�D��j�
��:u�5�C�^��m}̯]V9I"r�M���N�����fخ��M��4����ӏq�m֕��r	�69���,�q+݅�O�ńG�xx�L8:�&.v3&F��8�NX�+��%-G;���g1~O��H��7q�p1��F�3�J�K��X��K1�Ꞹ��=����"��{��o��j?
=�(�p��}������0_�g�)��ݨ?���T.9�w|
g��|k�	�#��>7=��j/�����)�.?뒄ۓ8^z +�cn��~�>w� ��t"nQ�hLȰU��ə�a����_��_�J�y�����|N0����m0��(3c��b��R��h.E�A[b>½�l�o����9�{��PODq	q��.�S}�8C�R���YV�h����<Qx�v�]�=���	��Zh��o_��(�29�7{N��.��$�0��|���	�=*�~kL������**%C�սb�mC����R2���3�0����df��QS@�Z9�R��g0=�S�{��/pZ��ѥ�����T+�1
��nR�XIWMV��\���}8K}	um��=4�2��i��W�0�H��1f�%vc5�5���vV����@��
ʴ���#����H�]drY,�5،,��Aޖ�4���U��:�x�kz�����P��Fй5�Ve5M�׹WQ�LY&�y,C������y��0�AΌ����d����Wf��(��*��+�wqd���WH�*�q ��h����(b�~��]�΀8"�	o'��!c�^|�Dy�ʉI#e�|�N�!Z�jr��a�A_d(6�\��Õ�����i����s&��k���:��^;Ȝk��tZ�bQ���H5i��О�%�EJ衹����,��*x N��w����3�����P�gP�(�YE؄ע����F�64�e�IN�����QP�M�"�WB\�h/��i.[��Q���'������?�^}��h�n��0Ѕ]�%#&�q��2[2I�W#�U�0Y�J��T�$�fn���Q��K�˖^TU�[����%f�3�&A����~�GR6KeyAttrFlagsi!�6KeyAttrDataFloatf

�6KeyAttrRefCounti��EAnimationCurveLPe\:SAnimCurveS7	DefaultD@dY#@47KeyVerI�n?&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�YE�
KeyValueFloatf��x
�{<���,�;y.�VK6cH��}�S�}R�Rjt����X�甈!Y)3Q���02mv��i��(r��T�i٫uZJX������[٫�c��;"�l<$��b9����?*g���g���K�
�#9��7m�x�݋;C����F=+'LY���f�븐>I�z�9Ri��fNLZ�6�qg��0��%�@},�o�3
�~b���Q~ǒm7���-[�C�_���\z�v'������p���?O���%"?�צ&��d�59��q��>��/`l���>Ņ�|��#. W-r�˻�S���W}^�
�RO�?[|�s.�u��d�;
�-��;g��=�d�ݥ��:���U�4g��D&^X��k>���>�E2D���l����`w�9�Xڳ�oѥ��	';���?
�ٸ����ݻb��u�d����zB��[����֒�"��T�ŵ+W���
�ż�ǁ��z>c˚��GB��@^�
�|KLVW��`5�[q" 	�m�Cч���nŸ��qW�;�}��	��바ƌom���q��>;7�?eN��A]#��K1��L<:�=��˸_���)���̬NgJ�\9Q���ۯ1<���p�g/>)D�X.>K��fgܟ+��O��b�OcM�7���4Z�{�-�j�	=��L鮄���B���7�T�T��$y�b@U$49��J�+h�?@��Yl[��֓��{�̒��oȈ����XF*�&�ޥ8>�:���q�=[�Y�5��hZ��
tІ��y�oh�!����*8���F}F�K�pS�#�3����<Q���U8�U	E�� ��&)�`�u�kt�����y�ώ��K��H”fk9݇e����K�"�%pU��en-�#!oP�ʻ�C�g�����IĹ�0�ږ�B���Zğ-��/�l���N�Mw$Y.ȿ�	ӎ��j�ڧ���C�N(���L�K4[��\�^q����_����R���ǰ���X�uf%��Q-<v��*D�eP����Y���B���`A�4*Zػnj3��8�/a`�1��NB�C!�jf�2����+�u?g���B�7�XةvY2_������\��L!zt�.˸��)gj���I����t'��C1��Z,����t%T�~hl�cU��
��DШ!�eV�p`��W.�YQ+ѐ�v=0OM���-�b�?�~5��!(6��[�>�n�@��l��9���Z��g�󿺱�@�d'_�}���g�2t�M�|zՠ''iQh���;�b�l�8_Х��n��G�G�|"Vݱ�t{�[9b
�Q�p
3��+�����M�L�bA�%z�O�q`�3�^�[Y0����6V�-�~�/Z;K�}+b4��fMqp�&[����B\�<��uP�9�d��n6<;��Or��N�ʯn��i���)D.���#�o�K��^�'1
08ڄl�L�MË�V���z�c0�]��-�X����{`с���PZ�Z�{������ЃEKeyAttrFlagsi!�EKeyAttrDataFloatf

�EKeyAttrRefCounti�UAnimationCurveL�[:SAnimCurveSMF	DefaultD`�˿eFKeyVerI��N&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�mT�
KeyValueFloatf��x
�iT�E�w��F���#�V�rh����@R�{����qAA�U4�J� 5(�&J��a�ř���0�08�Pv�aPQˏ{���޹�m���%�'$�b$ƞe�G�)ɤf�T񓓴��6��� id�i��亴�,Wڥ�I'tH�1$�Ԛ�n8�`��WD�\fR�å9��[II�pu���n%A���k�lg��zY���'%���n�&�^�>�[��[���a���LQ�7���&V��҄�N�5��R�;���49���d|z��e�x~���3ԭ��������H��K�'X5چM���'��夂�g
B�o�D��N��i/gYO.{7��Μt�˕�d�̜b��]���R��/�����6��P�(۾fzf�����i{��g7�ٳ6��Nt�e�];�]uŴ����4�Ԇ��OGxEa�SGy���`̣�p�&Jf{�f�y|$��ų��4�R�qcO�g���<�m��زa���N��j�\$L�*��҆cB-�|�7�:����9��I��$��ih�)"�f�D3qf���
�/�f�z8�i+���k��<�A-�Z�+�L�`9����E����Ny��<��T8��k3t��?Ǹ`����z��SͿܕ��X��p%�[���U�,��OD��ɷ���b(7��G�&��,���Dx7�
û���hQ�H�S��Msi6|�#����6)�YLg����l����a��
�ӿ�D���,L|�&�VzN=`MR��j���4���	�{�,R��w��^���y���O����������Uܯ�a�O�«DEsz��^�|�nT8���+��u��̡C���6��������sM|-i��3��"�����&a��� �X/,!�^%I�)�'��y��I&<�˲^l���.z[��
�-��{�^�t��v|�J�)�M'�(f�`�.���顤�֬�����Ucl�%>N{K���w�!-�y����}j1��3\}����h~�EGP�{|���]�T�a�U�cH'��o\�/.�;��\�t�+SA
��`{]
�M�YR@��),G�p���f��^ tO5��~��^����l{��x��	Aބ��_h!���)9�k/�@Z`qCa�E�����Ie�bW�l~Zɸs	�1ET*$aa!v�.�--��XƮ�2������h""Q�
e��q�T����v����[)}V���"�>���c"y�ʑ��C{a�-6,y�"���������BLJB3�"�V:7����Y%�r���Vbu����j��x���(e��5���g$�
���i��%�B6�:"t��?OX����s3�5GXm7���'�gi[�'"ǧq���k�FQ�+j�u�>�["8|�x�b�p��TD�Z
������9ƹ�8,x���)\}�I9�FzT�����TKeyAttrFlagsi!�TKeyAttrDataFloatf

�TKeyAttrRefCounti�#dAnimationCurveLPn\:SAnimCurveSaU	DefaultD`��yUKeyVerI��]&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��c�
KeyValueFloatf��x
҉7p��g^$*GF�li(�ī]r�FE���#:IJ!�1�h�i�!*Be��mU�"]���^[*����c1CDQĤMh{���bRI̥#�9��O<s�%e�)���g��71YE��F�
�C�ʝ���.�@�G���*�/��p���
��8�D�@?�fR�u�L�3�v���<�ˎڕþ����\�./�r���-т���x$I��D^��aaD%q�\�?�+�@�@f���O-/��K�F�O�՚�1�3&��\	�`-�@�\>N�
�	^:�ჯz|
Sƀ�G�&�ʐ9F��p\�4REǣ��>�y�"D��G����,C��_���5�sko�v2a������K��se�m<e�<�utP�5#���=���0|[�5[�`EV)俤���X���ȉ�������K��/�����re3|{d!�ɔ5:���s"a…��x�朆��j��k���X��Tz��ڐ����e��Bbƞx4Ͷ+h
Y����*��ѯ����CE�c���Ub���?�	Z��8$V�&Su3����������t�Vڽv(>�N�6��P�Q���Js.!�5r3�!=����0�]���*�꣋�ri�Ew�����8�95,���[������X���L�^8��p,�ހ�c�(�������S3�&���.������Px������;>��P%��d�#>�v��z�q\z��ns8�ha<�#=~- �!2�c��|!%���E��Rwۉ�_ZR�R�@kf*b�c4��ܖ�׫�u�)�d\�Jj�Z����R����_�h��",��A�����p+l��凘U�㽄œk��~��r���6�TY�+e62�]&���L4�]��������T��1���D$!1�p�	���0?i���y�-Yi{��N���R��vx��.�-��S�$���(��)Pd���\!�6���]�J¿S�Xi�	zW���@�����v���Zd:�#�*�s��:�,��C��C����X�w\@�}z�N��m/�{����y]-h�"��x��z��CW�d�q��9R�]n
8�W^��)��U����e�p.q��
���𠧉RK%
�bҘ%��`[�h�CˤW�+�Fx�OntcIt��^���H�����a?S�+���)�?Ǡ���2V�M�xB�Z+�9��[N��0�S�P�V<�G,7���P��G��YT|;��/a4��)�m�X�@8S��a&�zv�~�A>�A�|���(.�ؔ#\���Pn&`�.��q�Ӑ5���SiD[{=>UBmB��(�#���v�����~���O�8�\2�+&ka��1�����}�
����Z֛BK����1G��7Ak� �-&�gMX�/Ǽ���P�M��H1�����0���h��cKeyAttrFlagsi!�cKeyAttrDataFloatf

dKeyAttrRefCounti�nsAnimationCurveL�W\:SAnimCurveSyd	DefaultD�����dKeyVerI��l&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��r�
KeyValueFloatf��x�<���M-t�9+���iu�WhO.�x~��Z��W���K�fr�,��QӃ�<n��\F�y�������R)wr��i��0
��~��ҙ�yW|�^T��w{�V�Qǯr�4M�[�H;"����fm�|ciͩKĿ�B���R�	�֛�yy,���-���X���* 	|�'���G�!�i>5�g��Qn�K��d�?��g��Dc�M�����S+�1�T���,�:��(��/w���(}ዱ�]�I�#DZh����2�
s���O<lt��^�Ӕڍ'��l�`�wTB��cg<��F�,�G��]h�����`�o��f�rO]֩��A�sZ=EsI�ҿ���=�8V����V\mC�HuQ��3]*l�n[Hl�k�vqX�nv����x�	=�{���R�;�� DbM�T���u�[0��A��8
\�����e�|Es�G���>������[k���w��h[~8����d��$a4;9n��e��?3��P�c]!x,,S޲'�9��w��x�t,��^�לא���B��ɩ
H��Q{H�m+��_~��u�&8��aZ����0'I��g��>9��	%fEv�.:��� ��iň�ޮ���m|�)�UZ
ޱ.��u0��O���ff�w����g��~q���MXݚށ��ɫ�s8��(F��0�Y���Nt_¾���W����I������a"���ߓ���b��T+�J�$m�9C[�
��»�%��5CoǺ��0���L�=%h]NF��@�N��ل��zeqB���t*�c����L<�\���,��3�^v��g
�����>ݳw�#��9R~��7�Y�ٿn�nV��L�!1|L���4ŋ�ڴ���>>�l{�^ۍ���0�l�1M�7W��X6��N�զ�%DuJ����S솄���t�4]�M
d�S�\A�1�S~��y��s�1���z�6;!h�K6���v�bn�Y�m�7��u��E&-��e��0݃_�=�Z��0��L]9��)���|��K�������_4��ˋ#v��3��a�p>@#5E˩��k���u�[�ǭ��^c&g�
��n��Q
�U���/����a1%v,�\�����	y�9Ƥ1�ܞU�cdv?��\5�>�B�\����J)�`����!�`l�^_�^u�f��hg�9ߴ�//ر�]x�tm�Ր�ncoq)��	})MXr,�sB
(�1���E��*�	&�^->zT�m[[�HM[��}&"t���Q�Yt����7��]��	F;'X����
[t�CS�j��pY���_<�숊���y��#�$�#�"�L�p�
7��>��
�����n��c��_�3?���!*.��ŋ�X�G���W���BK�l���R+��{+z;��������,�W<�x��X��m�P�$u�a���}�O/]�8�ii�w���+�8JA^ܳt'+i�ƒ{�ɨ@³&���mg�<S�#�?�
��rKeyAttrFlagsi!4sKeyAttrDataFloatf

asKeyAttrRefCounti�~�AnimationCurveL*\:SAnimCurveS�s	DefaultD�i���sKeyVerI�|&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x
��?��q�����0!�����!��a.��'iR1�j9�d�Yj�+��9����j���e����a��.�I6���:��Dt�>?�?qK��Qq��l��5r��]2:�P\�����b9S^*��#�!��Q^-�s�J{�Eɱ�:xC���1v\�k
�!ۖz�9x\��dƴlo�d��K�#��d@֥>�=W&D�K���l{"-�:��6q.�E����tќ1B��)qGD�����.�۔��:��rM4ߞ���9aDW�	�kM�4�s��C�9��{ԋ����?L���K��Q0~�)R��w{{|6�[dͥ�yh�z��Փ����w��͋��k)yW�ٻ"���Ut_��N���Q����qȊ#������]�����͏g��)1<���t�}��І-����!���N�"eS��t�c��������0��x�Z�8W�E����e�0�_NM�j|���s��45���.<����:w���q|���q��Ԍ���Qd��j�@��r�ZqAc�`�?Gk<�zґ�g���l(;lAıg�Q�5Y`� O�L��͹c��q+�#��x`��Y�4[𝹆��x.x$����_s`��|��G��>֓̍��i���(NuDp�2��%�O[oj�ԧ�٩i��Kg�ͯ:ѝo��rJ6
Mʜ�a	T
�A��jNkYԹ���<[���$���J�����d���;�]y�Ԩ�%.2��/sq��Hƚ4B~N��j6��������^����$����7���Iy����ys�9��5���ͻ�}s��[�nXŹ��l����<��R�`�^_8��~xw-�I�s���0��=�_���c��w��h
�qz��;�����´%��ƒꗈLk٠J�D�:
����EG�V�r����E��� ܎q$L�Ʌ`������f�6�S뭥�,����,ʠ�p%'>~�������b��6�ά��?o2���W�Sl����i�m�����ԨY��'�o��Hm��ܙdRVj�y���EQ�H`�"��A/�o��6[����m�Ǽ�_N��p��\�>
���"�N���c�U9&�=4��%�Of2akA,6LW�{�.�#&���9'���k�ԙ�lz�z9��|��	K3��`Z����]���:�s���	U��Ҡ� ��\��Y��_)���r;�'I���
����y/�����[+?�'�����n� ���+��ZI|���#_	�~�8t-ɡ�Ui���BE��x�~��l;X?���z��{e��oR���2;�*��zǞG{tɚ��`�)+

�b���R�u����#n]6�;"�M����%��-��|=�:����ּC,O/�kG.�E�7nc�m���z��[��g����J�FI�d8N]�ܹ����|t#��Ul�K�}aEa1��I���ԣj\]ޠ�b��<�v��|�0�
�KeyAttrFlagsi!D�KeyAttrDataFloatf

q�KeyAttrRefCounti���AnimationCurveL��[:SAnimCurveSԂ	DefaultD`(9
��KeyVerI�&�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf��x
ҋ[
v��5��P�S�V�tyy�詽���t��R"[.�T�n��J�=�:�.�Cgu����ǭ�&^�����m�ze����|��"} yA���QdNBFO�hE�!����7/��z1WK������
/2�%��2a�#.�l��M�r�DT+�Q^qV����ł+qF���"r�)W�,)P�͘�#�"B��{6#3va�`�k9qC�Խ��u5���@u6��q��]�������<���B�����a0�ު�O����O;��o���zLp�eK��0�(�[6�϶c[��m��`{���|���>�>�`�|�etk'͵j�5adS�ѕ�E��]�Eb���P�R��b7�{�5����J|vv�b0@N���]|���c
�*$����#ӝ\��b�!�Py<�-ś�݁���y���T��X7�u�$��3��ݾgN��VU5KR�QuDard�ͭI�2�[�O�܅�S��|ʋ�;�0��D?���-$g�ȕ4S)U��HM�Z|�����!�
�֙ğ(�K��������HׄߪN�n�'2�"#��pv;���j�3������Oa܄�<Ird�pen�?�y�l���Hja�
H�40�3����a���V?�����I5���K�4˗_��_4"2��X1���m��h{r#��i#�r4��;u������O�C�ƥ�6F>���_��W��&;���2�eH������z�������A6H~`(��%�*�%Yꧼew���ndø���Z5�dP��z-q���X���4��fRDRl
��N�^@���,�L
k@5R�ʥkH���x�V�i�3%�݁H��n�p�l����j>����]/h/���\9Y7��X7�՛��_8f�ϱ!*���8���_�z}��2M>~ޥ���u����,�4O���'�	��ۈ�7�x�/޶)�~K"��R�S��o0�{'��<I���.����X�O��ꀚ6�Ӵ�&j�'��"�{�WY�lZY�^39�}�<~�-�^Wrĺ�C_B��7?^#���9\a�S���L����1�5)��p��\.�s�A���DW��G��B���¹P���"��•��P�u�3��0?y���&�)�5S�ָ��;|�ΐ�
W�8c�@C�|�z?�Eg����Z��s���l�x�Wz4�:���Ke)���/\���;H���
�����
a�`@U�1�������WR<�}�����w�T
��5�z��p^�qn��n��v�$N�k@��b�l�Y-�_��ǝ%ۖ3} �]2�����j1�3�4�;��H��	��DQ������]�����{�$�����ݟ
M�s�2$�5�y��X�ت�r��ֺ\�u[6Ct+w�{5�E�jw�y|M����7/
u2��5��w�kx�{�p���?Ĉkt�KeyAttrFlagsi!H�KeyAttrDataFloatf

u�KeyAttrRefCounti���AnimationCurveL�Y\:SAnimCurveSؑ	DefaultD Q���KeyVerI�*�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf��x
Ӊ[�	��tL
[dM�d���8V�^����qu�}��y���LQ:�W*ruM�ݽ�4o�����Q�%�@�DҼ*R���'|���
]�8�c|�Dsv����s�t0�S�_x�k�'N�;)/�gƛ��Ğ�OV0�ڎ�:Kit��E���J�����E�X��7%g�$µ�ՋJ�NY��y��7�e�b��	��™>C>ףh�sa�Vm|�g"����+,܇� u���pcj�~q�H����Fs�1=j���M�h
}u�D�f0^�S�Y�G��@~r=B�Wr,v�P?���f5GKp�T0��@Go�9���]<��a��.����c:Fu��ZR/������:�KkI���G����{���w�(m1 �1N�=e����{Ǜ��bE|?��*�M&�0�N���5�%��
�W�z�����({>QԌ���t��>�{6~Fwp/Zm�Xo":�+��`u�d����q��~�?��ip!��ZH1%�|+�.J���i/
�����{���?je��tB֦���-8<ddm'��uD�bY[r�>�i��>����Yx��k��6B���~�@`%��~�a����p�2�]�< �ۓÉ6��ӽ�c���W��OrHU���T�!�<~�I�]'��7�yc{��T���+�C��T}��avM�`��L�7si�]�.��d�o,�\#(��ɩD��R�^s��˼��0�Wsf�"�'�on
�WI�YJ��n�l}��|
���yf-�5�^�D?OFG�W=puԣ���0}�p���U�0!�,Rh�^&������œ�)'h��r�Um���喝/���8:y'5�0�RJW��G>���@�?�v�n�"����wh�F�V��)c�L"2Э�EV�QkΝ�� ��q��+c��,��Y��%�ҏ�獓E�U���6����;��k��>�����9QM�m��At=�E�;
S�=�8?�!�=%�U���+;ר�UP���BޜH#�IA��
|
�*�yr����%#�nƉh}����:}'s�:]���VΔ���r��l����E,�EI���t7�;*E���Z�X��X6�Q��<�C�p�K�Ҡ�
;�a6ȝ��|9�����I�TI��&�����(����ϱI3��xՙGɎ	$*��_ɸ���0��۬�(���{q)ۼ�Q���o�T���.�,��m"S� �\vX;�w�Wq���x����\l����#�C�D��a�4qC۫-*��������"^�-
L���U55��G�3�I������3k�,���#%$�ga�%��6�y@�U
�K���S_�?n �|h ˲���D<1u��\6_\�3CLѝ$v��w���U�)\��Ą���1iG8ۃ29�V���^��/^�o$�Z���[٠��O�x��M����6z�W�KeyAttrFlagsi!R�KeyAttrDataFloatf

�KeyAttrRefCounti�j�AnimationCurveL��[:SAnimCurveS�	DefaultD*�"���KeyVerI�4�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�̮~
KeyValueFloatf�qx
�	S�aXĕ�3���`a����PL�%#L�tMD���FC<0��(�"�6,MC�ʣ�5��J�#�h�L�P�<2~�7�ͼ����}���X���v��i�X��u����F�3�0�`!����_�h�eA�"��6c��f;�ʡ��XJE���U7��\��ˤ�M����u��Mg�c�F�O���T9��$�צ�ܹd֟rb�Ч�B��:����|�Bd<8����%�U���k:�T;4��S��B�O��4�J�")�әdlM��k�Ք	���ꐂWUz^�7s;���	R�+�(�c�3�AGg4��(���>&�?�32븆�^)F��{4��F��RM����h�א��5	�GS��lEYjO6˹ޯGY�c����,��WJ�����aTO�gz_<w$��Bi�9�!�(~������r�Z4��
�P`�.��+ۆΔ�;��b>0(�m���=R�q<rDRP�#{8�1����{��e�),x�F��D�KT�r8�~���1�\ӛ��YV�I&����l�1�~<Q����[k�<�Ny*_�$���0j��S;�HNI��d4�i�<h �n�U��R�I���&9O�*�a��N��q\�?���.^ْ�?�fl��̋�W�'S�&��𥆲�	��>gF(��F�|������#ft���T�{H��y<k4��}�n�ﷻ}��7|�N�D�4���F�
F�
����_?n�D�TH��X��IIy;���0�F�03џO���$ѸJ�ZOm��P�'�D���r&T(9tSǯ;+���pe
����8��&�;�Ԝ~wx�aMw#���'E(���<���}c��}my�|�}��'��qE3�-�!��?o!c��Wk���	F�.���X���e���(���p]b�+������q|vTG�>�j���o-�qz���H=ca�׎�0������0�՜�uI"�i9jPa�S��L�]O��8p/�f�kN$E)|.��iC�ޕ�٦C�����th�xMɶ%a��6���0�gM�2-�K���{sp�̤ݜ�o���5]	<wO͢n#=63������Gmc��Mb�0[}.%�MD�r*��b&&����">rs��$|���Ҳ�9��ll�Ľ��L����2�P��Ey|���ԉS	12�i:�D��X���9����yr1���W?������/�����K9�?��T�KX�Z�ô�J�
z/��$���K��^�4���r8��1���|,
[����X�xQ����Lj,I�
,�]��/�l֦gs�N�w���
{X��ӡ�����
g�H����Sq�R���F�����G����mr*o�8��QߡblK,��&U)�Dp%O���li��g�Ҥ��?������KeyAttrFlagsi!0�KeyAttrDataFloatf

]�KeyAttrRefCounti�t�AnimationCurveLЈ[:SAnimCurveS��	DefaultDа�دKeyVerI��&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�ֽ�
KeyValueFloatf��x
��_�����.�Dz�e�K�h���I��8;g�Ғ%B�v�E������ʷt[WI����"�J�׻#I|��V&iI�]Tt
�_����x:�@�q"MI��$�v:mj<93᧻�L�;��f%�����,��� �ԟ�ߓ\���5ܶ�b��\dh�!M������b}���.i��Cih�M�+x}}y~�����5���a�_���d��R�_ķ��kU(-S��"�1�t:��;��E��o�D��2�=�7M�n��)9��M�=T��X�q�c�����"�eap<�X�{�9�T�2�*d;/�M{��
�<h�R�LT�'���0��1.��Xjy�����R��\��Q��G9v��)���7-�v5�Q��鯘��;B��W��+S&�O(��B>�a�_����Wt{Oq�$_�b��د,&\G����F�,�e��}�g�'tGt��F�(s��2
��F��u&Ѹ|�E�7�^y#+`��0֟�#+(��{҈�)c��V�����n��ӏ�c3D���^%\^�J�3h������+J�5� �+����!�ur��f��n~�5F�������>EG��I�����ऩ��!
u�!´�����@In')���ұ,.Z�#ߠ���Ì�V&�׏1�o��bn󩶂�_�SPq�����/[�~i��T3f�-gi�;!���E�p����VPOۢ.��<�̤��]�8u`�q����R�R��{^8-Xɺ�8�FRt.�I�%
W72�چ�E�[�D����"�(e���/�� KVk1\�Ac�+Og�`nU0��C�)qtL拻�\�v� ?�>�����&wvq;�*n�9<_�7�˜h���'�Y8���p�x�e��`��;8����S��[l(LG�Ō�&b��l�dd(�����^ssw?��&L��c��K��lo�x�,�7���j~���Q���[:5���S�Dھ�\������
��\t���ǘ���&��@<*�Q�B�ǩ���ܻ��Vsة����<��(Gr^pB��-���.PS��*��.�2������[��>�\�(�׾E7OG���U|.V]7R����l$6�����R��Ϝ�����
6��d�#�%u�8x�I~܂����eY�GY�/�F�$�t�����Y�\�"�<+R	�:��]�����|�˃��:�n�v��Ok)n�Z�L�S=Ѽ_O�8#�t��Ræ*��L�\��f
Q&h�Mcc�":Woaz��<q���&��(����WP(�o)�����j�G�")�=A2�*���+E�̑tR��Krjv��M�^g��kσ�'q?���ӣ�Sy�$���y�K3�ϖT��$U�(�Kf�2���_����~$)<y��+��6���I�u�dl&mJ<(�O���Ǥ��m���<���#�O2x���$)i{FE�CB��:����j���?��[�KeyAttrFlagsi!:�KeyAttrDataFloatf

g�KeyAttrRefCounti�U�AnimationCurveL\:SAnimCurveSʾ	DefaultD|�@�KeyVerI��&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf�tx
�S�{`��P��G�f)�Ƈ"bS
1	Ѵ��qXG�	(pcl����c�Ƙ0d<EE�dI)x����o�9�뮱�(�0�3���(�5+��-�5���J˷Ax��<c#G~[�^k����m�$l��p�?�?��7�'�����݆�s¯x�����Z�lğ��tq؝:���	�bO��������Q���P��R��r�\<��%���EL�R`���jRE��%dYT4�y�F�� -"-�F5>�ʩ����v�t)e���T��µDƗ��Q����Ht��]Ӕ68�9n5�}ފE�A�����v�<:Q�4�5SO���-^:$y��X���@H+�C(.�0�_\��(���t���>6�"�Ѝq���U�)
�8Vrå�竬��n�k� �v"0^'xY'�4���:zO��ҩ:f�UK�1/��+Q��	���[���/i<*>�S{u�������:��,gܡ���^�U���J�'��,(�Ph66y
��դ�TSt���eF�p9��i�9����+q+њr���1���
Z�b<m叇|\k��3�Në]J�5�'���U��C�W�,_/��&�%SYT�%�J��������&ϫX�ZȂ~�.��T��~)�C�$����
��nG�
8\�ǛaR����xQL�E%���Օ񰺚�f�,5T�ܴ��ݚ�gʐ��9���>=~Nj�dR>�*����9v��r�����u�$��Y��������/�����܏b�3v&�.�bL��Bs6�N�%9D/��v2o�1z]���hyV��J%�m���gasPD��E�2���?g�+i�Q0կ`�t�Ib*O˙>��ʴ2��$�n�n��W��W������f"M]4���u�_�~���H
%5h�5��)��,�A��.����ѢV�u&��(s3qI��F�f�Ƶ�ie�`�fZ���ą63�᫩�mc
K���Ơ�=�K�<����j�b��3+�$n�gx��9�z���m,�'?2���-+6븶�GIؕ��d��H:�DgqHȠh����Kp7r�D#-��6���#,w�`�P�5�l�L�"~T���xF�ͷ����{Dx��Mc���1��,*&Է�U\6�'4���T3kvy!U�6�B<����&�M���$��{���g��o{
��3�zC�p�k�zs���r:�
E쟕E�$V��e�,���X�#9��m_$C�ax��_������|��C�t4�>�0��\b���xFo��(XO�7ެ^BIs��s�IB"nUHP�q�����;����Q�"��űy	S�.�����˜�4��
�q� �jX�A9�j��K�|?��M'��w/����� ���KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti���AnimationCurveLN\:SAnimCurveS��	DefaultD`+����KeyVerI���KeyTimel�
KeyValueFloatf[��A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLP2\:SAnimCurveS�	DefaultD ܥ�<#�KeyVerI�L�KeyTimelw�
KeyValueFloatf�.�&��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiu�AnimationCurveLp�\:SAnimCurveSk�	DefaultD� ټ��KeyVerI���KeyTimel��
KeyValueFloatf�Ȧ�KeyAttrFlagsi!;�KeyAttrDataFloatf

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

��KeyAttrRefCounti5�AnimationCurveL��[:SAnimCurveS+�	DefaultD ܥ�<C�KeyVerI�l�KeyTimel��
KeyValueFloatf�.�&��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveL0U\:SAnimCurveS��	DefaultD� ټ��KeyVerI���KeyTimel��
KeyValueFloatf�Ȧ!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�u\:SAnimCurveS��	DefaultD`+���KeyVerI�,�KeyTimelW�
KeyValueFloatf[����KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiU�AnimationCurveL�\\:SAnimCurveSK�	DefaultD ܥ�<c�KeyVerI���KeyTimel��
KeyValueFloatf�.�&��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveLp6\:SAnimCurveS��	DefaultD� ټ��KeyVerI���KeyTimel�
KeyValueFloatf�ȦA�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLв[:SAnimCurveS�	DefaultD`+��#�KeyVerI�L�KeyTimelw�
KeyValueFloatf[����KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiu�AnimationCurveL�\:SAnimCurveSk�	DefaultD ܥ�<��KeyVerI���KeyTimel��
KeyValueFloatf�.�&�KeyAttrFlagsi!;�KeyAttrDataFloatf

h�KeyAttrRefCounti��AnimationCurveLP�[:SAnimCurveS��	DefaultD� ټ��KeyVerI��KeyTimel7�
KeyValueFloatf�Ȧa�KeyAttrFlagsi!��KeyAttrDataFloatf

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

(�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD ܥ�<��KeyVerI���KeyTimel��
KeyValueFloatf�.�&!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL0\:SAnimCurveS��	DefaultD� ټ�KeyVerI�,�KeyTimelW�
KeyValueFloatf�Ȧ��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiU�AnimationCurveLpB\:SAnimCurveSK�	DefaultD`+��c�KeyVerI���KeyTimel��
KeyValueFloatf[����KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS��	DefaultD ܥ�<��KeyVerI���KeyTimel�
KeyValueFloatf�.�&A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD� ټ#�KeyVerI�L�KeyTimelw�
KeyValueFloatf�Ȧ��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiu�AnimationCurveL@�[:SAnimCurveSk�	DefaultD`+�⼃�KeyVerI���KeyTimel��
KeyValueFloatf[���KeyAttrFlagsi!;�KeyAttrDataFloatf

h�KeyAttrRefCounti��AnimationCurveL�3\:SAnimCurveS��	DefaultD ܥ�<��KeyVerI��KeyTimel7�
KeyValueFloatf�.�&a�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti5�AnimationCurveL0�[:SAnimCurveS+�	DefaultD� ټC�KeyVerI�l�KeyTimel��
KeyValueFloatf�Ȧ��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS��	DefaultD`+�⼣�KeyVerI���KeyTimel��
KeyValueFloatf[��!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL@�[:SAnimCurveS��	DefaultD ܥ�<�KeyVerI�,�KeyTimelW�
KeyValueFloatf�.�&��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiU�AnimationCurveL�j\:SAnimCurveSK�	DefaultD� ټc�KeyVerI���KeyTimel��
KeyValueFloatf�Ȧ��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveL�y\:SAnimCurveS��	DefaultD`+����KeyVerI���KeyTimel�
KeyValueFloatf[��A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�7\:SAnimCurveS�	DefaultD ܥ�<#�KeyVerI�L�KeyTimelw�
KeyValueFloatf�.�&��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiu�AnimationCurveL�*\:SAnimCurveSk�	DefaultD� ټ��KeyVerI���KeyTimel��
KeyValueFloatf�Ȧ�KeyAttrFlagsi!;�KeyAttrDataFloatf

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

��KeyAttrRefCounti5�AnimationCurveL��[:SAnimCurveS+�	DefaultD ܥ�<C�KeyVerI�l�KeyTimel��
KeyValueFloatf�.�&��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveL@�[:SAnimCurveS��	DefaultD� ټ��KeyVerI���KeyTimel��
KeyValueFloatf�Ȧ!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL]\:SAnimCurveS��	DefaultD`+���KeyVerI�,�KeyTimelW�
KeyValueFloatf[����KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiU�AnimationCurveL��[:SAnimCurveSK�	DefaultD ܥ�<c�KeyVerI���KeyTimel��
KeyValueFloatf�.�&��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveL�\:SAnimCurveS��	DefaultD� ټ��KeyVerI���KeyTimel�
KeyValueFloatf�ȦA�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL \:SAnimCurveS�	DefaultD`+��#�KeyVerI�L�KeyTimelw�
KeyValueFloatf[����KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiu�AnimationCurveL��[:SAnimCurveSk�	DefaultD ܥ�<��KeyVerI���KeyTimel��
KeyValueFloatf�.�&�KeyAttrFlagsi!;�KeyAttrDataFloatf

h�KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS��	DefaultD� ټ��KeyVerI��KeyTimel7�
KeyValueFloatf�Ȧa�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti5AnimationCurveL��[:SAnimCurveS+�	DefaultD`+��C�KeyVerI�l�KeyTimel��
KeyValueFloatf[����KeyAttrFlagsi!��KeyAttrDataFloatf

(KeyAttrRefCounti�AnimationCurveL�\:SAnimCurveS�	DefaultD ܥ�<�KeyVerI��KeyTimel�
KeyValueFloatf�.�&!KeyAttrFlagsi![KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL@c\:SAnimCurveS�	DefaultD� ټKeyVerI�,KeyTimelW
KeyValueFloatf�Ȧ�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiUAnimationCurveL��[:SAnimCurveSK	DefaultD�cKeyVerI��KeyTimel�
KeyValueFloatf���KeyAttrFlagsi!KeyAttrDataFloatf

HKeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD ܥ�<�KeyVerI��KeyTimel
KeyValueFloatf�.�&AKeyAttrFlagsi!{KeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL�r\:SAnimCurveS	DefaultD� ټ#KeyVerI�LKeyTimelw
KeyValueFloatf�Ȧ�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiuAnimationCurveL��[:SAnimCurveSk	DefaultD`+�⼃KeyVerI��KeyTimel�
KeyValueFloatf[��KeyAttrFlagsi!;KeyAttrDataFloatf

hKeyAttrRefCounti�	AnimationCurveL��[:SAnimCurveS�	DefaultD ܥ�<�KeyVerI�	KeyTimel7	
KeyValueFloatf�.�&a	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti5AnimationCurveL��[:SAnimCurveS+
	DefaultD� ټC
KeyVerI�l
KeyTimel�

KeyValueFloatf�Ȧ�
KeyAttrFlagsi!�
KeyAttrDataFloatf

(KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD`+�⼣KeyVerI��KeyTimel�
KeyValueFloatf[��!KeyAttrFlagsi![KeyAttrDataFloatf

�KeyAttrRefCounti�
AnimationCurveL�[:SAnimCurveS�	DefaultD ܥ�<
KeyVerI�,
KeyTimelW

KeyValueFloatf�.�&�
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCountiUAnimationCurveL�;\:SAnimCurveSK	DefaultD� ټcKeyVerI��KeyTimel�
KeyValueFloatf�Ȧ�KeyAttrFlagsi!KeyAttrDataFloatf

HKeyAttrRefCounti�AnimationCurveL�M\:SAnimCurveS�	DefaultD`+���KeyVerI��KeyTimel
KeyValueFloatf[��AKeyAttrFlagsi!{KeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL �[:SAnimCurveS	DefaultD ܥ�<#KeyVerI�LKeyTimelw
KeyValueFloatf�.�&�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiuAnimationCurveL7\:SAnimCurveSk	DefaultD� ټ�KeyVerI��KeyTimel�
KeyValueFloatf�ȦKeyAttrFlagsi!;KeyAttrDataFloatf

hKeyAttrRefCounti�AnimationCurveL�^�-SAnimCurveS�	DefaultD`+���KeyVerI�KeyTimel7
KeyValueFloatf[��aKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti5AnimationCurveL���-SAnimCurveS+	DefaultD ܥ�<CKeyVerI�lKeyTimel�
KeyValueFloatf�.�&�KeyAttrFlagsi!�KeyAttrDataFloatf

(KeyAttrRefCounti�AnimationCurveLX��-SAnimCurveS�	DefaultD� ټ�KeyVerI��KeyTimel�
KeyValueFloatf�Ȧ!KeyAttrFlagsi![KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�	DefaultD`+��KeyVerI�,KeyTimelW
KeyValueFloatf[���KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiUAnimationCurveL��-SAnimCurveSK	DefaultD ܥ�<cKeyVerI��KeyTimel�
KeyValueFloatf�.�&�KeyAttrFlagsi!KeyAttrDataFloatf

HKeyAttrRefCounti�AnimationCurveL��-SAnimCurveS�	DefaultD� ټ�KeyVerI��KeyTimel
KeyValueFloatf�ȦAKeyAttrFlagsi!{KeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveLX��-SAnimCurveS	DefaultD`+��#KeyVerI�LKeyTimelw
KeyValueFloatf[���KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiuAnimationCurveL(��-SAnimCurveSk	DefaultD ܥ�<�KeyVerI��KeyTimel�
KeyValueFloatf�.�&KeyAttrFlagsi!;KeyAttrDataFloatf

hKeyAttrRefCounti�AnimationCurveLh��-SAnimCurveS�	DefaultD� ټ�KeyVerI�KeyTimel7
KeyValueFloatf�ȦaKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti5!AnimationCurveL���-SAnimCurveS+ 	DefaultD�C KeyVerI�l KeyTimel� 
KeyValueFloatf��� KeyAttrFlagsi!� KeyAttrDataFloatf

(!KeyAttrRefCounti�"AnimationCurveLh-�-SAnimCurveS�!	DefaultD ܥ�<�!KeyVerI��!KeyTimel�!
KeyValueFloatf�.�&!"KeyAttrFlagsi!["KeyAttrDataFloatf

�"KeyAttrRefCounti�#AnimationCurveLXI�-SAnimCurveS�"	DefaultD� ټ#KeyVerI�,#KeyTimelW#
KeyValueFloatf�Ȧ�#KeyAttrFlagsi!�#KeyAttrDataFloatf

�#KeyAttrRefCountiU%AnimationCurveL8N�-SAnimCurveSK$	DefaultD`+��c$KeyVerI��$KeyTimel�$
KeyValueFloatf[���$KeyAttrFlagsi!%KeyAttrDataFloatf

H%KeyAttrRefCounti�&AnimationCurveL��-SAnimCurveS�%	DefaultD ܥ�<�%KeyVerI��%KeyTimel&
KeyValueFloatf�.�&A&KeyAttrFlagsi!{&KeyAttrDataFloatf

�&KeyAttrRefCounti(AnimationCurveLH��-SAnimCurveS'	DefaultD� ټ#'KeyVerI�L'KeyTimelw'
KeyValueFloatf�Ȧ�'KeyAttrFlagsi!�'KeyAttrDataFloatf

(KeyAttrRefCountiu)AnimationCurveL�V�-SAnimCurveSk(	DefaultD`+�⼃(KeyVerI��(KeyTimel�(
KeyValueFloatf[��)KeyAttrFlagsi!;)KeyAttrDataFloatf

h)KeyAttrRefCounti�*AnimationCurveL�-SAnimCurveS�)	DefaultD ܥ�<�)KeyVerI�*KeyTimel7*
KeyValueFloatf�.�&a*KeyAttrFlagsi!�*KeyAttrDataFloatf

�*KeyAttrRefCounti5,AnimationCurveLH8�-SAnimCurveS++	DefaultD� ټC+KeyVerI�l+KeyTimel�+
KeyValueFloatf�Ȧ�+KeyAttrFlagsi!�+KeyAttrDataFloatf

(,KeyAttrRefCounti�-AnimationCurveL�m�-SAnimCurveS�,	DefaultD`+�⼣,KeyVerI��,KeyTimel�,
KeyValueFloatf[��!-KeyAttrFlagsi![-KeyAttrDataFloatf

�-KeyAttrRefCounti�.AnimationCurveL���-SAnimCurveS�-	DefaultD ܥ�<.KeyVerI�,.KeyTimelW.
KeyValueFloatf�.�&�.KeyAttrFlagsi!�.KeyAttrDataFloatf

�.KeyAttrRefCountiU0AnimationCurveL���-SAnimCurveSK/	DefaultD� ټc/KeyVerI��/KeyTimel�/
KeyValueFloatf�Ȧ�/KeyAttrFlagsi!0KeyAttrDataFloatf

H0KeyAttrRefCountim?AnimationCurveL�Q\:SAnimCurveS�0	DefaultD@�H��0KeyVerI��8&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��>�
KeyValueFloatf��x
�{8�	@�G%5[C�5��i��ԗ���;�[M�X�R̮�cgj�F�utq��Q�׌���ro�!���Pz���Tk��le�������X}��J��U���jr�:�O��J��Bu�?&*��RUD��*^zOY�����B�4�٥�g��z_9��%D�c�ق�����^�۳vk�٫
a�;��'��L�/[��H��/��	�쑇���+��Ԕ,���k������EMe�!����MB\�o���17���gt�`��"uL�NhS�iͯ�+Q4�rB �߮tg��B���	��Y����97@x��/r$!{A�������݆���	�+��n�UQ%h*J1���3>���]��JAlU�ϞVd�:yy�(�6Z�%��E���zF���E^�4Pv�b��
<=�dYgc��
wo$f�FG�~A&o�ysm+/u�M��7�Qሗ<	3y*���,H�!�R�Hg�wʹ՝���D~K�s:�����G���^h<b����������p��2#K���s�d��E?�RL��b��7
�v3�"���K!e�V2��y���v�	�i0}�Al
�f�C���	�JF���/��a�'��ƅ*�������R/�����hǧ��[�lh#~K�5���N�mz=���	�E}�6�1����.>���c��A�jr�sy��	bʮ�p�9q^�yd����y�B�E���D�cڢK'(�����|���v�s�4��|����|nƋ�����E۬�������=�����?�����tCU-�%h�bKLE��-E�������Q�iu���;��t���NJF������i�W?���1bS��됰�A��#-�2���̪�x�
	��"
'4��M��~�Ɍ�%�N������*V�+t*`�)�b�,4�9���T��f��<�~��Yr�ۙbu��K�r�.������t�ml�;���}�oY�a[q�K��'�(�?t$�QD��)G
���}_́C
V�6!��IB�8]�p�EǨ��m��>��a��w�*��ΐ��Ԡg"7�.��]s딘f�g�z1>�5�J�����s.
|�-E�6������`Vt�O9�%Ɉ�H�w:��z�MJ��X�%�t�V��~=�w^�ϻ
y�qL�n6��)gm���Aq��炾5�nuBH��Я1$l�ֆ�~vX����턼Hf�����"����R�\w��N�V/c~E9��Q�Ɛ��K��(N̢#g���)����
r�{ۻ}�����oS�G��3��9ھ���x����x�!2|�+
���"�R[d��Ht�C+Qz���Q�h��5���CJYsӑ
D��XU�TSȘ�{�N����T�]H�����X�4�/����r�]�	/J�Y��Q�[��(e���ɹ\�'9zk��/z���I�֟�◌�6����6ĥ�>KeyAttrFlagsi!3?KeyAttrDataFloatf

`?KeyAttrRefCounti��NAnimationCurveL@	\:SAnimCurveS�?	DefaultD`D��?�?KeyVerI�H&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�N�
KeyValueFloatf��x�
<���l��0��=7%J�-j�����l��j*f5E	��C���p��'���z�C'y
��>�-j����ZNX�rݒ�����a��|���;how;��h���v*on!�y5�#��R�6Σ��t��C�(J���PR��̒�im
�w&�ޠ2
XL��Z���=T7�C�i
���4E����bJ��l��	�����+8|&�8ج}Tޤ1Z*�o��F,�O�>�]1b2��G��H���ֈ{4<�Jb���j���JIM����4�{:�
<4,��˽b�������C���.mg�v��!-X�����S���r����]Ÿ[�؜��wg	���"�FTT�4�b�x3x������[�v�,���E������Ngl�D[N��b�~Ԏ;�/@���"��[���
��c0���;T��f-��C����J�����ؑF�lӳ�ԭޢijZ{��x����������?����Pu��%��2!�ra遊�UL'������5U56	�S�,5� ��A�?t�	2�Ԟ���c����<v�2C�Y��'˅��Âf�I
�i�ѩ���9W_�\�V��:f����'�Ƹ�h��-�ѧ��.�*�n)x.C`VX�d-J��Jz�/���|4��!�vm�/��z�/��>'��s����C����(�݀���y��3�7<���2v�V�FY����l<�G��S�
�ꊈ��]��v�B]�<�w-6���l-��)*�R��iMD���s�l�c����U��
���Y��K�pÞ��K�qU(�Ȅ��cu�(�Z��u_���(��@�^�����'Sp�L���Zr/�9gr1���}n3��+|Vp�q��N�{��b�T2��}
�M�xQGj�->����,�!��O�8�3�C�
y���:!x]F��kx��h��h4���<j�������xT�F򏒂�f��L�+��pS鏳��2F�7XV�_1Yn�)+}8����� ��}����9c�����M�'Ӣ_���e�S������߉d�Lj�Bn�ǃ�Y�:K���/�_�
r0�������ΏE�򼍒�B.l��yobS[�/�t�E\,:�GM�$
�^b��;�=���o�fU����1i{��#0����;�^��;u���a[G0V��!iU�^
�^��Zނ��X�s�U���L��(O�Oho��'�%P��9�T��i��4�1�w<ٱ�F�s�!˂p��'��G�)g�u���Շ�np�����[R���?J�M�d7�Q���#�j‡s۔I�'_ĺme�3�I�Zb�wA�,�>���S�vX&����������r,9�X�~�l�����&��o:��Dמl���>l����W�{�C�мЊVR��>ڼ#�lz��3E̽�9S�����p�����Q'���T��$/�g[Ub$������,^'@��-�t�0�W���1���!��k�T�E���<�GNKeyAttrFlagsi!�NKeyAttrDataFloatf

�NKeyAttrRefCounti��]AnimationCurveLX��-SAnimCurveSO	DefaultD �Y�?)OKeyVerI�`W#KeyTimel�x%��_���u)����BY�F}���[!#�9a��t���Ei��B��qb:4�����r�.G{��qb�U{��s�߲�/
��~ޏ{��|�������:M�q�eh߾�ÁԼ�
�܁��#~���m�b(x���n}�H���T@~v�_�����a�rS��zuÜHsf�*^��r3>x:��?�m�����ӽh�pҸѥʞ�}�ɪH&ix��J�<�B���+\H��SuP�8�ŕd&�~uV���v#�6ˡve𿡨�m��.j�5�w�	�ˣ�$mw�UAu��=�ٿڝ�
�.Bխ1�H~L{���	�}X$�:g'4��P�\2��Ff�����@����cHNSC54���e���y��P�eh�tc�XR\�	�..��<w�q��ƒ]�X��j�a�I�L�
�8�����e���&M��ؤ�l�(�V�N�xN ��V(��pZ'5L$U'��B�W�sh9��E*٭�!��
4��_�M*�x�A�G'si:t*�Y)�9��=�4��Ƀ��ڇ��&�B��R���*m��z��SP�;�=d::��!u���P�(9�d�e@��17�hG;gi|��'����	�Nڶu��75�� 's�/i������O�okX�GZ6�7Beo��$/��	�_޸
��\�k]���ܟBy��?�I�8���6(K�^@�-�j�!��q&)}����\��ǽ�g����-�iιu���I�{ #��w�m+�$E+b�C�}�7P��UD
[U�����;��P���Zo��C�bR� ���ChY�8�T^�-��(�hn�&��'!�j�;h�_�*��7E�CN������F)����@vC'�4{�ҋ��5�2x���xJ}^Af]W���Ԟ��� �?hm���o�"����$�g󿁚i����w>i�(����	L�凓��G�ʫ�5�WV�F�vB
T�v�$y�-I�|��	*<��Nrl�&V_+������=�X���܆£HvY��%����Q4�rv���ݭ���C!�8��l�����sd|:��;R���eО��
5�ڨR�';	mo��Au�`�bR0Ф����BRe��B�f�h�5NYB*�ʷCޫ�h��^J*���Bnz�Kh�N��%�>g 珮�И�MXF�,�
��!h���i��o4BVg���>!B%f��\�2/��=*���c_C�C�X�]���*>[Aڗ'$AM�w.�����ݩΆ�%�P`�_IZc�vC��z�/�
�'-��j���<Cs�*�Y�#T\���䆻n����kPvh��������6(k�-&�!U���bJ7���J Y��PXg��:Y�Z�9+Du��֑b�+鐡�;�Z��)���9m��i�ۡ�L��DR�#�ڪ<^B��EI��d�ih�J�U�>	H���K�rL˒���YY�Wd�f��iɤ�pc�.脦��RH���w�s��ݔK7���� �e�g����-J���Y{�}E�'eCI��.d:�妑����P�)�;����Ǡ� w���8)��:�o��3H[NI
T�\��-��&���\��|������$-Y�}P����d�fk�	�H��C�ߐ�ԺP���m�I	I�F��u(�pe�f��[a4��n��N��2�����7��@�Ѣl���q��;���a�x��2�Ԛ|X[IQ\w&��joAͲ�i9��נ"h[2�������`q�ah��U�n#�7Z�AK��!�Tb!��Q?C�ն�rR~T�W�BS�$n>)�[J g��g�ؐ>�����<�?��CÜ�˷�R]�y�

s�A�높�d��*d�X2a'��_��Z��1�ެBB{������3lA��y�=j��m�ƕ
R}��x�t�EZ+�ҠjB�u�W�L.&-���PYq��-�SB�G����=����p7ir?����!�1V��4�u�e.ߏ�K��I���<����ZJ����ꋳC�/TI2���Sc/�,X��dE����2R��e=��)�P�6v�~R�;Jmm�B���3�I�_	%��y�r�&]�
KeyValueFloatf��x
Ӌ7��+�R�W���n.y�~��;y�q=J]�������<�h+��nK�yD�m���(�amΌZq�M��1�_���wc�1�6#`j
�ʬ0���[�P샜�=6����f�b��h�_D�v�b��[<�@�����F��.�z�$m!��i�	v��r��=ח����\{<��H�YC�^,��
ׯ�*T���e��Wi�(��eJ����*�3�5�/�".*ף��~i��Kj7 ���8��t]�Ě�+(����A�*��l�	�N�Y:��A��� �ܽE�kH8���-�!�z�+�������j>���H7���
��:_58��7�AQ�K*��Ռ�S����L�t��?�e@��3�_�C[�9�*�xW�����*!7w:p׾��[A?�����c��q8v$����Xء%�:�z��R��1�Ն�GC���lT�� �q%{�pH�$��q����8hQ�\X�ޢ���x3+���Df���������Ӥ&����K��({��%��h��S"�m�=\�Z��=W�8G�#^�[z@J�6Hzk7��;�
���gc��v�QZg�m}Zi���q��-@��&�����Sd�x�n8
{[��K`�,{O%"N������q0ȍF7�x�ӊEc�N�����t�c��A�A:���:����/�4�,l���	����=3�Ts�*d<4+��w^,_���_q����s�<�v����Ra&��܅�XQu	QM�ҹ���tH�#�p��y\Wۏ�vxY)a;q�<�t���`\7^��F�2	�!O���H��Ff����6c{��=�L����օ�SF�7i.���xY�p�����~�
o!l���8��'�?�A�.S
nz��ƃ�i‚A
N-~���:�xX�,�r�Vb�CR��8�����B��nG*�cV
ղQ��\���M���o
~{�L�Ħ'��Z}� c�}�t�SІ|���3���:j��`�ЇZ+�{ӕ�b��k�@&�v�l[ ܴ�!0�]X��\�c%�CU'���b���we�<z;�[pX�KQ��+�,������W~D�t�&��i�b^lD��v�4�ŹZ?��8�M����I�'_aQS<lޣ�w;��!��Ņ�B鼁sb�'�a���o�GBPr���}y��/�F]
�|;���.O,審�X�!FkEr:)����\b+���FqU�����|��"��}�	�
�+�W��W��F+*��x=q%#^�_��U⏸�{_��}�y�G�;�q)������_�Ձ\
�'34с
���&�v��3O%<��U]k)7-
`a�5��:4hT�'�n,g��e�����ϹPw���\h�>-��0'�=�T�	�<�Àj
Sj�դ�ٿa��[�6 ��.l�ӤI=�?ߐ�P]KeyAttrFlagsi!�]KeyAttrDataFloatf

�]KeyAttrRefCounti�mAnimationCurveLX��-SAnimCurveS^	DefaultD@(@�2^KeyVerI�lf&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�pl�
KeyValueFloatf��x�
<�����LIy��m��u͢��îZ�ʡz��6$�ܜ%���QG�Ω,���u�|��0�Q��Li�T[�����נ�p���N�U�tLYO!sT�\JS��QC����HP6E�����S�C �����7�'Gz�X�~�.�����r/��(��.�9r�|[���@�Nn�9���7�^mR��7A�,�F#�g=�W�p�������i֖D:P�D����r�(�Ȉj� ����*c�v�vx)�/^ĝ��iN���\�(d��������9�0��py�Ȥy���c�uy���v�����ރ
-r����`�J����v��-3���)�͛OV�q�zW�9?(r��^6\�0@M-�d�-{{RǮ�,��/31��/<�ܵ0�,0�A�r����
<�E�b� ����eiv����]��yq����$��i��5ȯ��J��aKO2�
�C��0KX��m3�}YN\?<�_n��
^�b��Vc���Lb]�?���7��fA����5|Q�q�X���Ш�`#�i��HuXF��bm�x�=�k��+e�ǟ�)�}YDݗ�Q���>��i�(�$}���	��2�(x��I-���c�3�#c]}Ok�]H�W�xf8�-���yZ��-���v"�6
���X�nc����)�Q#)Ғ��h�~/bɃJ�2�h-3����f.2B|qk^$���Cx`9:�K��$
Nw��/�5�����Z�W�d���0�2��yzF��,���Vo�kn(\���%�j�sT�����g�a�
�e��0ֻq��m�/ˣ��	��g���\���9�`{=��)C�X��!\��$2�� �a꽊���)m�(�(e�%���|.�o��Z�%�jٝ��2��Q�Ʒ���'�٦����v�<R���K1�����t���J�vɧ_k�������fG:i}H��r�)�7%��������R�N`k��"9��'"t�)�=E���U�>��O}��7�|���t>�AC�U�$�����oR)`�n�!OMT���
���'+�u�f|�1��޶d2�^�
�hc�3�%�Z���wF{�M�b!�*�}Z`�;�	���_��	q�#(C�Lۀ���=�Hl):3���هd֡��r
��Ց.���
!� �¸�Y�y�Ρ��{�|�	�u�/�G�l���A��%,�e))�n�S�C���U�>��ݣ�u2R-k�D��e^bg���#���M�a��ux+��Q��b	�Vڢ�C��W��Ɵ�6:�gawH�/_��%i��g��e���L��3��krQ�^��*�$T!��f:�b���EVqzArJb��?p~�"�w#��8�_:���k�`;�9�m�	7�i�OE�R��Bڵ��&��n�j��VapR��h�ӜH��x��
܆NcFd�.��Q"����*@�4;&��?�Xh���01�
KE�N%���U5���<[a�[�y!�m\�6f(o4������lKeyAttrFlagsi!�lKeyAttrDataFloatf

mKeyAttrRefCounti�,|AnimationCurveLx��-SAnimCurveSdm	DefaultD���|mKeyVerI��u&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��{�
KeyValueFloatf��x
��?x`�J"G-)�M�.�L��&EB�����m[��"G�U�D����q}?�dܤ���v*V�rE�����Ib��@$[���%_V���ꫂYd4���;�:��ؐE�	�eyk1��lm�	�Yq�r�oP��S�sT�U�!b
�Q��˓��w�)���g�'Μ]�s��R�������km���5,Z�>8���0T|t�3�yĢ�W�q����	U�-�^�8qo����V�q�nd��^F=���$�e�R��F��G���AKO�1V���C��}h��������
�ss!LM���v$s��*6��V�ӥE�t$������_r�xl���<�f��UyNj���$���HP��Y�,�!��dE$R��^z�K��#m��<\l����?>�%!�/��"��7�٣����x�������*�K�ae{	O'�٬ҧi�Nd̍${KP}�:�����Hufa�r��݈�fOQ(y�B�Ts��qUZ3�E-��.ٰ���6ׂ�o���DWU�f�U'#�}5��;1N��`f	�9݀��I�
��WD9�a��'�����x�f������w%E8����[0?�%|��ඏ�^�`T��@�Bz�@�*��;t��#�((�GY
~-�^����}O�
4T���T���{����5<���S�h��Lj�����~�z(�X:uJ(�WCA�<�y쁌�x(���+Wq�+��qC����~�6� ���h��L�m�NU�ad='���5�#a�<��݋�Cab�P�a�x�ji24�7��\JVt����&-�L;R)��<�1���Jn�z������Og��ԩ.˟�G!�;���D��
R8D/�-�2ܓ|;cI�"�J5��^���ϟ��o���^��L�;�EM�Y��"65�d
�H3�L���u�f�$��w'�m:�ZC���ԭ;��~G��(��oCkY��)ď����a�
iDZ�B�AJU�e���9���J�-4��'h�����N�l0
��0�+���	�梦6w�`��̗���sǘ����F����ȉ�����^���.f�G�k�}�9\��R	<�X�����n���+K1eU
U9Ɠ�{�t����?'�w�<�-���bi�wAh0K�yS!�kp�k��y
w!zF�>���F2�YH��,���%jڑuZ8�p�Raq-��`���o/�����z	�_tº�+��;�������>�8����O��*Z��i�ᛑB>���0Ê���15�2wQIb���H%	��(�ha�.,�6E��N�O�i<^*f�=��D���~Y,�R8��#���B��/�LI������9�9s��!��ɕ�n�����H-�Cӷ���G	���`ҟ�X�wu���M閧Լ��!�����Dw;M�R����uNF���� �t��8�2�{KeyAttrFlagsi!�{KeyAttrDataFloatf

|KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS�|	DefaultD��S@�|KeyVerI�Ԅ&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�P�b
KeyValueFloatf�Ux
�PU�A��R�RS���n���VX春ׂь24 ��eQ����������}�GP��JV�*gs��L��4u�t$�15cU�FC��93�|?�s�v$��Hp��5w$���d���\;��3x��j���h��8�c=��8��u؟b���"��w�4�U��I��cLA-)���p
Ofz�y�ȕ
�E�lŠ���d��)1n�s��0ʀ!��o0�A�j��L}��7�����Qj�Q�$����M7h��Si��ÄZ�>�ɣ
��R�<+�>Id��:��9����z?oV̝#s�7��?5�a1!n��?�S�qrM�����L��3@�2��ɾ(2�%i�@uU?	|�.scL���:鯘��[,|�fbN���1v�6�F[\�c߫����%���4U����f���t��o�Й7�$�!�;J��S���x�)�7�mZ�������{K�B�ʉ�2��̞T��#�s�ƾ!:�
�?�fږ8֓>7�����GU�t>ؤ�T��y^�8E�d��lC��K���U>�>�/!ZnZT�Yq*ƣ��y��3���P�8�Ý*��
�O��B�[�x���r���s2�ٴ�d���F_�3����1�f�,ʵH�b2��`���N�� ?�RQ(��[��Q����T�rh���g,:m='p4NoI���1~�lJ�&"�y-�&L�op�I�A�$�-2�kUjW8�-Hj�NS��#c-�vG�no���9D���kLX�Г,ӶN䟒@e��i[`�<����jt�Z��Z�GI�m6vD�dq�ɖc:I�A���1�Xfd�@�����pw�[���6-��E8�̀6�ʬ��.������j6��Sx>G��M���2÷i�����4��X�t����O]OD��[ov{�����I9>6W�����Z�%#��.��5�?4����[��^^�{�e� JMW��g
f_�h��RS�H%�i�+an���po���M���T�e�D��C���Q�q=�Ł2}�����P�φ�|du{�U���!��7dhÆX�����tX�G)�"�/��G�q��߇��O��Z���@Iz�31�묯Wb`��g�����/;|sԡ�ͦ~W���A�ɺ&3�:V/�rd�r��`��E����ݷ��$�C_?�e�&��ؔ�SO��z>jv54��]&�]:g?�Ν��%��LW��n�ˈ4��E�B��X��'�|���r������XE�Ho����L��	��vH��,�d+S��%�*G+L�!ЗXI0s)�w/�ai�-��J�L��n�J��^�;EcRs��'t�5H.Ϣ� �X��S����3��t��w�
�uz�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�(�-SAnimCurveSD�	DefaultD�N=@\�KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�j��
KeyValueFloatf��x
ԏ?��C;��s�^�n"b5-fm5M��>��OV�~M�
���I�=�~L�J�H��R�$�����R*t
�����#��bw��_��>���Z؇��,[2��
C0z�+�#x�p�	F�DQ�܈���-��'BN벡��d�9i��ɻ��-���M�)_�������65�3�܃�/ɸ�`O��=`�֗]x+X���#�#1�<��(�ʡj�ӛ��,i�Ɂ���s�ɒ;�6lͶ��ޜ�wLX�#�������-���k���>%��nBr� D�r�S��UN�Wȸ�A�(����"d�t�;��B!�F��AD���ï+~I
E��\�?wuS��XZj �3��)d�jK��`�$c?�m�x6�1�zpc~
d�cɹ$L���ك�H8x�=Uȸ�E��{�/l��S�9M�����mϔH�"��ڑ�v��h�c�(�8!���
���E�ʜ��L�{h�#�~X���zE��3��^8�v܎�~/�XZ����h��y�Y�X���zl�+`�GB��f`�=c`ǏXN���q<��Ne����u�p�[O��&���2���ñ]�'Ǻ!��J�Ǖ�a�,C~�&�уk�Z�^6``�
���[߂�p
[��/�����z�I��U��0v~f��&o���^�;e�]��օ�~���9Ҋ,�-z�ۅ
x��3��1ܜ���B����4���!��8&СBي��z4bj`#ҟ��]�kj<�lĔ���l+@��QD�����7����7�x�Ѓ����*�qu:�$1<�CK[P��b��&̍T��{+��aDZ��y`'l}arQ1r�,��qj\۠-�a��W�9��f� t�aU҉hg�/�ƃ���*!;��>��D�9뾅^y>�o��6�p�4����-0�Bl�>Ŕ����q�v6V�Q;V�f����Q���T�*t�!rl=������ܙ{����ګ�;��F�-����X�-�b��P�����r�4�\A�������H�<l!��}Gf�a˻Z+u2�˜[����Y��ny��.���_
�;�X��6���@+�`금�%��;��I���'g8�6́=��lK�c��/�Z�U4'�T�+*�����)_���׆Y)���
�����ygΦ�zk,g2�77^�'��ˎ�M����<���F��R����h+��
X�hǫ�=���Ԉ���J��rt�<||+C��1�"���N�7��'6���|�����b�X��V����T2S9��R�3�2la�[�`�D9V*���8�oN�rw�|��](��Ӫ��^�ɵ�"�f
x��r��_���0��\��8q����Ҁ�C��?�"nX���$)��0�g{�q��w�1�R/�:�1��:��.cn�!��⓱L���3�(�����;uao2o��oL�{��KeyAttrFlagsi!ΙKeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLH_�-SAnimCurveS^�	DefaultD w�1@v�KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x
��_��t�C�.M�B�f�om�A9VK�a�:VB:h������cS�ƺRƲi�>��V6g�T6�&�:h�����(D�_L���I)Y�O��ϧ���>Q9����ʺ�(����:�QYcŻ
�vOڰI�^�bJ/p�>g����[UWZ��{e[����-?��Q�- ��D�6&'&�G�
X�R��E��z��9�#,+(�L�"{)Q��.�ߠ.�[Ԕ�L���=��j߾"�~�l
�&6ξ�
M�<V46᥅'�50C�p����q�%�}������nx�Ӳ�VzZ�K�5L=h��Oܰ�ŷx%9�IC�hu!<�7`��;^tO���qz�O��O���m-j"O����,��d�B\��L���ǖ���n�M΀�B>N쎆V�/Qv������h�$��N�v�!��O���懧4q~�J�t�/��l
���,�sV
�ĭGs�ZO�mZhs!y� Eꣂ��h֊r����?�!aX�lS87�`�{zTi�|����t�Hx�c�����0��Lu�V��T�t�a���5p_a��
T�nL\���d0��"C)�ưt�
GS�z�M�d�\������2K^P�[%1�?R{�&�����)D��c��V񸛓���<�-��F{6����5�p�c��4�4#�﩯s��L\27���cQ�x���x.ʮnF�`?���jS:l[��̎��<;>x���"��=����H�!�醖w�eX�޸~�/���b;ƕ|D��ߖ���h��!|��-p��1�d2ғ� k�Ǩ�	l�������Ill�Ys�$<�@�Z!~N�9'��58]s��}:�vN�u��;·���s����=��g�
�ﶣ�=�IRXΖB6���e[!)��+.�}�3�����XC���C��
��vpb��y��~x��C�lY��@�/:�^��㵯�� ��l�`A+�y�����z�<�r�
�ܐ�
�>D3$Pm� ��{���Xآ�����p�����v�#�d�u���F���r����(�g3q�k�2��%�ͣH,Sy�0�a;�Q8Jթ��f��-�?�I>����#�9끷j&��W�u��,���W��!LgF�5r.��2��Abri��YVQ�nqkh�a�hu�o�JK�@�e�{E��}�g~B�����
�ZN�+P��5W�:7��8��	�� ��Q�O�m�͖Gr
8l���&E(��I�ܤ�(;����!>,B�LG�#�w/���}^
Χ"4�������Dw�]����_�~(��Z<i9Ï|�$�,���&�S��L{l��s�	8���v样 
?'B��{;]���^���&j���L�n3��k�Q?�Fڕp�k�Q�0����f��"����c�>b/����T[u��;֘᫨KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�a�AnimationCurveL��-SAnimCurveSu�	DefaultD�Fm@��KeyVerI�DZ&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�÷�
KeyValueFloatf��x
��;��]:!)��Ñn(V�i�9���trI鲣t�eCI�)5k��Գ��Hi���qɉ�y�W�CK�h����ꄩ������y>����Q
��
I�V@�^���+k����JU�aOTT���?O���F�_
��ThlW��n27(Q�;�s��/v�yص�R��.(�aP)t�q�p�\/Fԃ�2�`dj��g�qn�2l�9����P)��m%uؖq˞?CI�{nC;Ez|�f�G�F��M�3!��te6�����#���B�s��z��VnAo��	�$G�i�
:Ҩ�4��^D����K�������S�n�X�N��g���;	�����C���S�:��.7(�3
YШ�D�)4�yύ�W�Cꗭ�5��b������~q�x/�7*1|^t=Đ�
�Hl���h�OA&�FfL�c)�ա}��bg.�'�)2��߶�-+��n���5�T����ق��.(��$�Hn��T�ބ�Ɣ�/������ �%�R�؋�r�ia{I�$��H�׊�ҧ
~�@SC*4%�-t�'K�00��JX��p^Čc���pB-�q�v66�0N*58Ӌ���Pn���?��Ͱ�>��^���.�uiF]r%�FI8��7s�Q�[���[z�����P�/6��g��!�s���R9���QH���� �&?A��m�}����(,��e|��ٻ�s���Y���S�o�1��J����`��Ie���~}�W��b�����_���cWE�o���f�j���ao�-��l�Q�z8OmFUY'N)^��-�|G�?dُ�p�C#<���4�lf��|`!��0Ge1�{����z��
�x7�ДGH�?��g��4H٣��Ed	S`�*��k2q��9��+~l2�0]��͐�*C�B�u%i����:���%k�Šn��^�	�o������j��)�+e׆/����e�~�=��N<�yU�P��6����&�P����h�9-�����.�gjp�Z��UV��pt�����m[������Z"�x�Z@��'��PD�"2n���ȌR���Sˠ�xʼ��$F�|A@�j��n�i��q��)�u�bj��?r���(��tlw�{{��	�����]a�6˫�-(�n�ST�8uq�
 ���D}����R2�I�ÎVl)�݊D�j�iA�	�
�w�%8ݏcNX�������Z���5��Gl�3(�i�4kꈰ��ev��u�_{����|�Lr��sʛM�B�����?����2!+si�U�7�������-�7���k�^�j[�V����}s�:g[�߂�ܜ�-�A���'O��u�Ib�J��8P����M���78�~ћ��{�r�ֵ�޿a�g�/#��$ʿz����do3��z�t�7�z3��%Io���Ԇ�t\��1���p�vI�.��ƍ�ڞ�e�/Ź
��xj>�]K?N���܌������KeyAttrFlagsi!'�KeyAttrDataFloatf

T�KeyAttrRefCounti�f�AnimationCurveL�`�-SAnimCurveS��	DefaultD@�� �ϸKeyVerI�	�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x
��[�wo��S�����f��Gh���e��e�ed���%h(�XjF�fb~� d��{�N,�	6�0cl�������~�p����J�ϒ1f��[��X^&c�#9'�9s���y�U��@9o�b�E%�~��Ȍ�J��n������?3�q��<60�ӥZ��f~���M2~����5A����{O�^�U[�.hX0$`�1+4����?����|B�u��q�[9�s!��RZ��y�[5��|h�$c��f����	��^$yqO���륌?`�`E#J����k6����jlIH9��u�Y�/�cKD3~S�#N2s��;���?�܋��o��r���B"Z�זzs�ŗG.��L����<1/�}��~��]H��b�� 
bè�8>3f�52���4W�m#���Ú�V�������¸�N����[0e������e4Uh)p�2r�?���,�.G��H}=�Ǻ�\���s��j���A9E3�
�]�ɸ󚆧��|��\��x�Y'�����a�������
	��E<��@�(#vM��@v9z2������f��c�����/	�w�5�:��9��-�o��'�(�
`�V´8�܎��e�ƺ���t����|�lO�J���o-���at�}����Mp��É�T���1nn�c�L�%�!�����k*�X��9�qk��9L(jŴ��^�	�>�NJXzԛ����pm��ɣ�|��w�Pv�ׅ����ݎ2iZ#Eܣs���.�_����J���!�k@�+n$�J�f��S%�1R��
n|����d\�VɽQ>Tm�����nz7:'[���vlJ�Fd���� �;%�)���D3>~�_��hNoA~��^�x�����n���P�9N,��B�Ձ!���^hz�P�hCAh�܁~b=\�U�7�lS'v���6e�G��?�zr�pZ���9���
�~������{�m��F��x׸`�����~lp��%��'����4,�pR�#$���uC/N�*d@���(g�pp�h5 �/#�5�����	�5(�R1I��23�S+��G��a[r#�w��%g�>s/u�hmD�B"5�x�؆�v7V� %�	x��[M�k��rT3�oY�!m@���h�g��|[�a���Y�uU"*����^���b�����:��t��9ݨh�cf�ߴ���F=f��8��/�J�P��@�a!{����/>�އ��r��Z��+�S͗r%��%�;�u��x�t-�*ʠ=t��i�Qŭ��0n����{���g'��%�8ҏ]�<w;f��0�Y��H.��sR
E�=��N���_���2�-.Y�µ�0~����pf�M%J.�>��������+Z1}��a��L��*���v���k���&���KeyAttrFlagsi!,�KeyAttrDataFloatf

Y�KeyAttrRefCounti���AnimationCurveL�
�-SAnimCurveS��	DefaultD�NH���KeyVerI��&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf��x�<�w��R�P�#w/��x�������Ƕ̴"�-u���Dn9]�4ג����l֔ՒP���V�%�R{���׀T� ���b@:�,��M�ܦ����1�X�#0:�5����	�H�D�GE���
Gw��j�{x�U?F�1|�>"� slF�7������h�̂Y>(����t1���n�l�wr�S�xq�R𸾅�;�A��G]m6��ʐ�s,
p��4FW�"�/ͯ����ݧ�7��I5���\�LlPzҜ�
����.�#$��d}/�>�u�m�|$�Dq]벰r�~<}c�'څ�����T�YB�	oz�Z��b�p�B!���}�������Ա�B�g$��n-�|�Ԗԧ&�v��ۊq�;�eY���[�-������A|�C�7����COP�e$�V�I��^�d�+$�}�e���o�Q���c�{�Gֈm�����;
C��3WE��$~�i+�s���-9�3�^f/��J�KgK���b�I���#m�|rjPh򰠦dZX9Wࡼɺ�ߪQ�ۡ	���z���u��
���pj��r�|�ō����"l.��WՔl�E�z�)�t/e~vM�9^��6}�d�G~a"��c�5���7W2�2�����J�)뚶c����U+��Đ��OQ���l�G��\�r������kLA��#��V��4��X���f�C����A����|��7- ��R4���G�)<ȑ�Z�V�Y��팙ٸ0���}���W.`�*cx����~,�˟�P۳ˡ+Yi�
��c�R�M��`?�ز����ݎ3�nu���"\�u����Wד������ȍlPn�j|LX��ۺƄ��t��!��{%%Xu�K]��TqM�ST�'��Ey�N�Pz$Tx���j���)�4rf�
��丌]���f�)�~*Ue�#��݂�o?�Y����E��0��
�4���v^QdMi?����
&���ȴ:�N�����<1&�	?]+@���u2��:̤w͍��|����3�	�{�<4�w��%C|�z{J�(�Zu9~�'���:D�������#S����r�\#���{�J�E�`8���U�W����D�e��0^St�k���<���uB�ѓ��H�H�s$��	x7��Ӝz�N����\Ũ��M��<�z�<�)��i�1I2��?��=�����&qe�T#�����^u���bo���CCH��!W��tg�<ҹ˅�$���D4��iP�~���<,U���l�������ұ=��=
��U�DG6�2%^���o+���u��E����f]N�� �hM�U�%�H�*��L�E�:x�TǟP��W4���{� ���a�,!�����)�Cرq-t_���q��q����
T	��,�%q*b��⹟~}6�Q�-f=���ܥ�+4{y��+���槿?ˣ��r�a���4(;�>Z�&<OXB��0�����E���O�4�<n�F�_r<'�F�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL(��-SAnimCurveS�	DefaultD���(�(�KeyVerI�b�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf�xx
��[�E�b�v8��b��XgS;>[�7��V�S@E���N���C�GHB � 1�i�`EN����j}�Q��G;`Һ�M:��{��ܮ@�e�D�M@�}/��K�p09���e|�C6cTt_��/1�R��V_!l::��ĕ�s�5������[���i
�QJ����(E�-��eZ�a��P2�d��nBvx�T6pTX�M�ͨ�=Y�˳y�=����}1��1�����e����<�c��*6�*$�N%��5߯d���ME�{yd��a�G��S�b����@��E��]<I��t
a�E���|0f"?�Ŀ�r�8IA�[A�
l�TZ�x����=��i�>Z��f�DP����	1<r�敹̯-e��JL���$
�.�#���y����V)�����<��3CX2�^���)l[���A��塙n�f���I!�vR�i�2����\����!-��H�.!���i��G�ߑ�AF��R��x82�sn�hdz��@����:J�Z�|�G~�&i��K��"��Q���)�;���[��-D��H�����gP�0p�Y�;����\u� ��DU��y�
�A˺	7n�0�B\a?Ϫ�9c+�����F<�Sr�nV3Ceg�b���^ˆ�f�~�Έ$�p�/ѹ����S��0!�s�m<�\b8���ro�ۈ�n#��Ib'��>�\^��^�lv"�����󖤆U��o\��W���I�P'��zi���Wެ��H���[�l
�g�z�z��\��w�=&���lzfiɊ��յ�f֠��ly�_T=!=��=5���)4P�J����7�o4c�N˾	��Kp�8�	��'��������v�ո�j����:F2P��L�$'�u�����TEj��BMJ����":LV�8�$���@���7����ԧ��h��,t�2`�e����z8�����O����#I����iD1�{���
S��Ј\>�P=���NVdf̙�Ѫ
��!k ����9f���\E��<�u�"=Tvع�2���Z%s{rI�R@϶|�A2.[D���ғ���y���2!���X2�Bq����p�׊ڤ% VF�^/ؗ``e��5�E�#�� se4����7\H��Jj=��؜p��!#��z�|o�D����|�{� ��g~���&�R���L�}��(�"^s��)U�t��Ɠ��K�ɍ�{�G�����M� 1s��y� -��@���MN�'<��P�ܘJ�-O��c#�
є?XŞ;1Xw���?��e�>��K��\���f��U#��N$�g����:�_5�[]@�r%;�dԭˁEd�A�tS_x���h�z���Br����d�9��H1��r���[w�0'���V��+�KeyAttrFlagsi!e�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL���-SAnimCurveS��	DefaultD`t=.�
�KeyVerI�+�
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w2��
KeyValueFloatf����q� �o��%m��aj��tg��pd�Tga�!j^�L�[���X��fV�AET�s�R�85Q�-hP��-P�f�P�w�R��W�Je[�X�_���d�4�i���m���p���q���q���q���q���r�pt�c
w��z�,!}����w;���-���Ȃ�E��E��E��E������x�{��t���q��}�E��E��E��E��ܲ���H|�m1r�~th�H	d�~th�m1r��H|�ܲ��E��E��E��E������o�H	d�n�f��ep��F{����E��E��E��E��j��p�H	d�̼d���k�RHu���}����E��E��E��E��t[���=s�C]c�Je[�C]c��=s�t[��E��E��E��E�����>at�'�d�Je[��;\�J�b�"1l�=v�wf~����E��E��E��E��Ո��	8���K~�W�x���r���l��Mg�H	d�?�b�(�b��d��e�3bh�\k�F�m��p���q��v���}��؁�E������,!}�y�u���q���q���q���q���o�rsk��f�H	d��d��?g�G�j��5n�{�p���q���q���q���q�]�p�H3m�{i���e�H	d���e�{i�H3m�]�p���q���q���q���q��o���i�9Lb�Je[��
Y�4D\���b���i�8�o���q���q���q���q���o��)k��Mf�H	d�H	d�\�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�@�-SAnimCurveS&�	DefaultD��/@>�KeyVerI�\�
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�wc��
KeyValueFloatf���xA�vA�tA�rAʚoAE
mA*|jA��gA�weAcA��`A��^A�]A$~[A&DZAedYAd�XA�@YAs�ZA�B]A�TaA��fAW*mAT�rA�9wA�xA�xA�xA�xA�$zAB�}A�K�A�f�A҇AI�A���A�,�A���A7��A7��A7��A7��A�]�AJ_�A��|A�xAҌ�A7��A7��A7��A7��AXB�A-C|A��XA��;A
0A��;A��XA-C|AYB�A7��A7��A7��A7��AL��A`sQA
0AF7A�9SAsexA���A7��A7��A7��A7��A�A�QRA
0A��1AEXEA#cAˁ�A]c�A7��A7��A7��A7��A/��AЌ�A`(hA�B]A`(hAЌ�A/��A7��A7��A7��A7��A���A��A�JjA�B]A�]^A�CgA,juA�
�AZ!�A;@�A7��A7��A7��A7��A6�AŴ�A�~�A��mA1�XA��EA4[7A
0AJ�/A�w4A�<AC�GA��SA��_AkA��sA�xA�ĀA���A
7�A7��A��A҇A��A�xA�xA�xA�xAmnA��UA�	=A
0AO3A�@A[RAv�dASsA�xA�xA�xA�xA�BqA`_Ab�IAߏ7A
0Aߏ7Ab�IA`_A�BqA�xA�xA�xA�xA��uA�bnA�TeA�B]A1�ZA�B^A^�eA��nA��uA�xA�xA�xA�xA�mmANTArW;A
0A
0A��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�2�AnimationCurveLؼ�-SAnimCurveSW�	DefaultD�K:G@o�KeyVerI���
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w���
KeyValueFloatf��^�9B��8B��7B�
7BU26B�^5B�4B��3B��2B��1B�1Bh0B��.B��-Blt,B�+BG�)B��&B��#B��"B�2%Bu�)BF�.B?4B�<8B^�9B^�9B^�9B^�9B\;B̉>B �CB��IBO�PB5FWB�z]Br�bBQfBbZgBbZgBbZgBbZgB
#_B8�MB�=B^�9B��QBbZgBbZgBbZgBbZgB�!`B0�NBb^:B')Bn�!B')Bb^:B0�NB�!`BbZgBbZgBbZgBbZgB�bVB��5Bn�!Ba!&B	7B��LBDd_BbZgBbZgBbZgBbZgB��VB�~6Bn�!B�"BU�.BEO@B��RB�gaBbZgBbZgBbZgBbZgB�\B�EBC�-B��"BC�-B�EB�\BbZgBbZgBbZgBbZgB�L]B��FBS�/B��"B$B5�,B4:B�IB�9XB�cBbZgBbZgBbZgBbZgB&�dBc�]Bz�SB&�GBBm;B$0B�('Bn�!B� B�; B� "BH%BhH)B?�-B+;2Bd6B^�9B2�BB�RB7�`BbZgB#5`BO�PB��@B^�9B^�9B^�9B^�9BK6Be.Bk1&Bn�!B-�"B8'B{%-B�53B��7B^�9B^�9B^�9B^�9B�Y7Bp1B�W*B�]$Bn�!B�]$B�W*Bp1B�Y7B^�9B^�9B^�9B^�9B}Q7Bb=1B��)B��"BƩ B��#B	*B�X1B�T7B^�9B^�9B^�9B^�9Bi6BJ�-B��%Bn�!Bn�!B��KeyAttrFlagsi!��KeyAttrDataFloatf

%�KeyAttrRefCounti�UAnimationCurveL��-SAnimCurveS��	DefaultD�a@���KeyVerI�(tKeyTimel�gx%�mLS��[��ġu�v�ˈ��dt�A+�-���F4�"2��K�R񅊘U�R	 �n��D��h��M����MXYV�����/����������n�Ё�H��:b�W���㧐���j��?���^�T�>r�T����^,X=����r�9MLzw�@��?CŎ��0����Rh�^�;d�3�G
��k ���ʶ��$��wm#4�G��ҿ��	'ʢ�V]
��'~���O����cP-_�}����M��T6�ǠwNΚ�Hk}�U���D��S-E�u\u�c�(	@iMg:Kv�--����5�L��%���k0�����d��w@~��P���#m���."�:nz�T�*Қl��;��ГbY�H�:u� �G|A
7#���P֖�&�.Ud%d$l���#m��>k1�T��ƥ>�����2����q��/���R/!�M3�]��J�s��$��L��̭�)��ۖn�W~�A&���P�`?l
]�-'���fS�CGY0g��tB�^��z���#�ό|����/ϟ���ؼ-�zn�
�k����<� @o�h�V�z��
*f�{����B�4C�-dO���0ݖ���j�����S�HWM�fh;{J��������JHkq|*��"=EW����I�0�
��=�m����=���kS�Sh�/�H�G'a��n�Xi)i���	CO���uUI\��5�
V�>��=i�]a>
�R��}�(��T�w_�>�M�����6C�ҙ���N�li]r����y��G�� M�ÐM�����3�%.l����#���O_ ��}?@i�&��,)�l��:z
:߶�܃��I�M�ețE�Z�0���`�WI�u
KeyValueFloatf�h���+µ��������K2��p�������.��S����j�����)�������l���u������5���Z��u���1�����^��x“�····�������D،�H;��&�H;�D،��������···¨����ـ��&�޷*�������\����···�cv���B���&��a��&Z�]��.��rB���···�{A�m�>���u���>���m�{A····ŒN��¦<��u���\*��:����
��������····�)I��,���y?���(��l����R�x�%��&��9��^@���r�T���'/��R%��^N�������···™����Ƭ�#
X��&��$��Kh�]������pT���··¸�������D،�H;��&�H;�D،��������···�)~�!�E���u��������l��ʸ���"��~····�p-��P٨��O��&��&��KeyAttrFlagsi!KeyAttrDataFloatf

HKeyAttrRefCounti�xAnimationCurveLH�-SAnimCurveS�	DefaultD �@�KeyVerI�K	tKeyTimel�gx%�mLS��[��ġu�v�ˈ��dt�A+�-���F4�"2��K�R񅊘U�R	 �n��D��h��M����MXYV�����/����������n�Ё�H��:b�W���㧐���j��?���^�T�>r�T����^,X=����r�9MLzw�@��?CŎ��0����Rh�^�;d�3�G
��k ���ʶ��$��wm#4�G��ҿ��	'ʢ�V]
��'~���O����cP-_�}����M��T6�ǠwNΚ�Hk}�U���D��S-E�u\u�c�(	@iMg:Kv�--����5�L��%���k0�����d��w@~��P���#m���."�:nz�T�*Қl��;��ГbY�H�:u� �G|A
7#���P֖�&�.Ud%d$l���#m��>k1�T��ƥ>�����2����q��/���R/!�M3�]��J�s��$��L��̭�)��ۖn�W~�A&���P�`?l
]�-'���fS�CGY0g��tB�^��z���#�ό|����/ϟ���ؼ-�zn�
�k����<� @o�h�V�z��
*f�{����B�4C�-dO���0ݖ���j�����S�HWM�fh;{J��������JHkq|*��"=EW����I�0�
��=�m����=���kS�Sh�/�H�G'a��n�Xi)i���	CO���uUI\��5�
V�>��=i�]a>
�R��}�(��T�w_�>�M�����6C�ҙ���N�li]r����y��G�� M�ÐM�����3�%.l����#���O_ ��}?@i�&��,)�l��:z
:߶�܃��I�M�ețE�Z�0���`�WI�u
KeyValueFloatf�h��(@̉@7��?*�?�.?x@
>�ƾ��`������ڿN�K��8��C!�!�c[�Y�������jA5?K(�?nD�?�
@�d@{&@��(@��(@��(@��(@�>@��k@�j�@�w�@0]�@�w�@�j�@��k@�>@��(@��(@��(@��(@�qY@�ō@0]�@xȖ@��@Sq@��@@��(@��(@��(@��(@ �X@�e�@0]�@b��@9|�@�L�@ݚb@��:@��(@��(@��(@��(@9F@s��?m�}?kA5?m�}?s��?9F@��(@��(@��(@��(@}�@[V�?���?kA5?.�<?��w?��?�W�?`@х @��(@��(@��(@��(@[�1@2aH@l6e@���@��@XR�@h&�@0]�@Ȫ�@p�@+��@��@EEw@(�\@�rC@�-0@��(@��(@��(@��(@�\G@	a@���@0]�@o<�@��@_D�@b_@+�9@��(@��(@��(@��(@�>@��k@�j�@�w�@0]�@�w�@�j�@��k@�>@��(@��(@��(@��(@\X@���?�F�?kA5?�?JF?A�?a��?�k@��(@��(@��(@��(@�H@&�@̞�@0]�@0]�@KeyAttrFlagsi!>KeyAttrDataFloatf

kKeyAttrRefCounti��AnimationCurveLx��-SAnimCurveS�	DefaultD�;&M@�KeyVerI�ntKeyTimel�gx%�mLS��[��ġu�v�ˈ��dt�A+�-���F4�"2��K�R񅊘U�R	 �n��D��h��M����MXYV�����/����������n�Ё�H��:b�W���㧐���j��?���^�T�>r�T����^,X=����r�9MLzw�@��?CŎ��0����Rh�^�;d�3�G
��k ���ʶ��$��wm#4�G��ҿ��	'ʢ�V]
��'~���O����cP-_�}����M��T6�ǠwNΚ�Hk}�U���D��S-E�u\u�c�(	@iMg:Kv�--����5�L��%���k0�����d��w@~��P���#m���."�:nz�T�*Қl��;��ГbY�H�:u� �G|A
7#���P֖�&�.Ud%d$l���#m��>k1�T��ƥ>�����2����q��/���R/!�M3�]��J�s��$��L��̭�)��ۖn�W~�A&���P�`?l
]�-'���fS�CGY0g��tB�^��z���#�ό|����/ϟ���ؼ-�zn�
�k����<� @o�h�V�z��
*f�{����B�4C�-dO���0ݖ���j�����S�HWM�fh;{J��������JHkq|*��"=EW����I�0�
��=�m����=���kS�Sh�/�H�G'a��n�Xi)i���	CO���uUI\��5�
V�>��=i�]a>
�R��}�(��T�w_�>�M�����6C�ҙ���N�li]r����y��G�� M�ÐM�����3�%.l����#���O_ ��}?@i�&��,)�l��:z
:߶�܃��I�M�ețE�Z�0���`�WI�u
KeyValueFloatf�h�1iBi�dB[K_B#6YBY�RB��KB��DB�>BL�7B6�1BVt,Ba;(B.%B́#B�k#B�!%B��(B1�3B�DB�pQB�?YB�V_BN�cB4�fB��hB�1iB�1iB�1iB�1iB5�gB�?eBW�bB=�`B�O`B=�`BW�bB�?eB5�gB�1iB�1iB�1iB�1iB1XfB3bB�O`Bc�`B�ObB��dB�gB�1iB�1iB�1iB�1iBGbfB�@bB�O`B�g`B�xaB�ZcB��eB#hB�1iB�1iB�1iB�1iB2}eBCT]B�(UB�pQB�(UBCT]B2}eB�1iB�1iB�1iB�1iB2�eB"�]B
�UB�pQB��QBr�TBčYB��^BH�cBƹgB�1iB�1iB�1iB�1iBN�hB�WgBl�eB��cB�vbB�TaB�`B�O`B{`B�aB^�aB-cBҐdB�#fB��gB;�hB�1iB�1iB�1iB�1iBggBdBJoaB�O`B4�`B��aB��cB��eB�4hB�1iB�1iB�1iB�1iB4�gB�?eBW�bB=�`B�O`B=�`BW�bB�?eB4�gB�1iB�1iB�1iB�1iBٙfB/L`B��XB�pQB8OBzRRB��XBRh`B\�fB�1iB�1iB�1iB�1iBFPgBT�cBsGaB�O`B�O`B'KeyAttrFlagsi!aKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL�3�-SAnimCurveS�	DefaultD��$�	KeyVerI���KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\�}q
KeyValueFloatfYd0%�0%��&"�Q�������iS������Q���&"�0%�0%�0%�0%���Թ
�iS����PL�Iq�_�!�0%�0%�0%�0%�����hS�S����	��:��P�=�"�0%�0%�0%�0%���#�d� �V��ҳ�Y����$I�iS�T�j��=�-���2X�/q!�9$�0%�0%�0%�0%��� �I0���	�iS��(��+��Y������"�0%�0%�0%�/%��&"�Q�������jS������Q���&"�0%�0%�0%�0%��� �Ru���iS�iS��KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiY�AnimationCurveLȺ�-SAnimCurveSq	DefaultD��1@�KeyVerI�r�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\��q
KeyValueFloatfYd}��@}��@�N�@y'�@"o�@�Im@R�]@�Im@"o�@y'�@�N�@}��@}��@}��@}��@�*�@�w�@R�]@q�f@�އ@�n�@���@}��@}��@}��@|��@���@;'�@Q�]@�`@t�z@���@�˲@���@}��@}��@}��@}��@}��@���@���@hG�@�͉@�w@�d@R�]@��a@)zo@��@w�@'�@���@�	�@���@}��@}��@}��@}��@�m�@ȝ@`�y@R�]@�Bd@�y�@t7�@��@��@}��@}��@��@x��@�N�@x'�@#o�@�Im@T�]@�Im@"o�@y'�@�N�@}��@}��@|��@}��@�h�@d��@�u@R�]@R�]@'KeyAttrFlagsi!aKeyAttrDataFloatf

�KeyAttrRefCountiY$AnimationCurveL8��-SAnimCurveS�	DefaultD�FQ@	KeyVerI��!�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\�}#q
KeyValueFloatfYd4:�B4:�B��B}sB��ZB�`FB��=B�`FB��ZB}sB��B4:�B4:�B4:�B4:�B�[|B��UB��=B��BB�WB��pB܄�B4:�B4:�B4:�B4:�Bé|B�^VB��=B�?B�"MB
bB�xB��B4:�B4:�B4:�B4:�B�~�B��B�vB��gBO�XB	aKB�AB��=B�@B$�GBx�RB��_B��mB{�zB:�B�ʆB4:�B4:�B4:�B4:�Bl!�B
�hBحLB��=BYyABi7PB��dBk�yB��B4:�B4:�B4:�B4:�B��B}sB��ZB�`FB��=B�`FB��ZB}sB��B4:�B4:�B4:�B4:�B*ρB�AgB��JB��=B��=B�#KeyAttrFlagsi!�#KeyAttrDataFloatf

$KeyAttrRefCountiY',AnimationCurveL���-SAnimCurveSq$	DefaultD���@�$KeyVerI��(�KeyTimel��x%�}P��M�FM��Mh��M���F�PtB�<���D�y"���1y�d2�i(��M��ux��f�N�9�ҝ��������A������ܗ���ʁxҕs��u:ɏI�/y@Iٓ!�\h[C�Ke�0~��:�Ƣ�H����PT��7�����;�͟6@���݃��(�C�_Q?@��倵���EP�S��&��AZ�z�@���8��űH�XjTd���?���$Y���$��f(K���E2~+PAC��W(y��tIMu��q�K(�+��M:��۠>ٲ���}H���+_�"*�*{��#9��^h�3ແTk�!�v�������[O�@�‍��'*��m˿@G`��wH]s�9(������q\R�yt
u��柶o�i�	�~��@�z�5����%��IȮ1%��>��V(?+^�,7��`�x��e�z��HFU�qhX�}��Oy!��~g�6R VNB[�0AHj�Z ��iZc*?� U&q�E{xHZz-
������^$i��C����ф��n(
�Y���(;	�CbB�uFh��
j����w�,�N:�}��;�
����w�F����U��B�j�4�g��HJ�Ck��lj��:ŻH�)et���x!m7?g2BGa�:	zг�L���k���\�����äh��ho4����<(�n�6���#��RO�W�B��QY�ʇ�%�]��/m�QRY��5�x��&�4׌���W����3���}n��P^m�,f?�4V垅��-vȨ���%�]�P�.��6GVs��
sA��T�IҚ}�T����'yY��b_�������jh>��*F=�)I���`��~
���"R�2q�~������ë�s��s���D���՗��A���d&������.�2O�Zs�!h�7�AEj�_QB�݌ah�䗑�>�g��1-ݹ1jR��r�����n�=M*�%�B9S�%Y���и�3
e�=�I�?�7�A�d֒�����?jB��+�
KeyValueFloatf�����@ٷ�@�:�@�@��@B*�@%_�@u��@���@b��@B!�@�V�@�@�1�@���@�V�@�.�@Q��@}:�@���@�B�@R.�@`�@H'�@�"�@���@���@���@���@��@kY�@+�@+6�@9:�@u�@�{�@���@�1�@�j�@�j�@�j�@���@g�@b�@���@��@�j�@�j�@�j�@�j�@�X�@ѾF?:���ޛ
�v�+�ޛ
�:���ѾF?�X�@�j�@�j�@�j�@�j�@2o)@����v�+��������^>y�@�j�@�j�@�j�@�j�@��-@`��v�+���&�������:���?oq�@�j�@�j�@�j�@�j�@��@���@���@���@���@���@��@�j�@�j�@�j�@�j�@8��@�W�@�L�@���@3W�@�\�@V\�@;��@+)�@n-�@�j�@�j�@�j�@�Y�@�5�@��?I�ԿQ��:?��s�v�+�Uv$���%���w�|z����?���@<��@���@^1�@8��@�A�@�j�@��@9:�@�6�@���@���@���@���@ۜy@W���{��v�+�U#��$��΄+�7{�?���@���@���@���@���@�E�@���>���#�v�+�#�������>�E�@���@���@���@�y�@�/�@=��@���@/��@e�@P��@�1�@�y�@���@���@���@�q@�+	�ī�v�+�v�+��+KeyAttrFlagsi!�+KeyAttrDataFloatf

,KeyAttrRefCounti�X4AnimationCurveLh0�-SAnimCurveS},	DefaultD Aq"@�,KeyVerI��0
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w�3�
KeyValueFloatf��	�A��
A6��@��@��@O�@]��@�1s@O?@�@��?1�?a�;?r�?��?��T?��?�
3@�j�@�u�@���@N?A�A
AHA�A	�A	�A	�A	�A��A�4A�A<�AF(A��A��Am��@�3�@���@���@���@���@5�A�	AМA	�A�nA���@���@���@���@&g�@5��@�l�@M̛@�	�@M̛@�l�@5��@'g�@���@���@���@���@: �@+_�@�	�@z��@�@\U�@!j�@���@���@���@���@�{�@!5�@�	�@}�@9q�@��@��@��@���@���@���@���@C�@��@�@�u�@�@��@C�@���@���@���@���@M��@�}�@o%�@�u�@
�@ä�@�m�@���@�W�@��@���@���@���@���@���@M��@���@i��@T��@d�@NU�@�	�@
�@Y��@���@���@���@�A��
A�A	�A�A��A�K�@���@!AF(A�A	�A	�A	�A	�A\�A�*�@��@�	�@�h�@Yݲ@+>�@�4�@B�
A	�A	�A	�A	�A!.A�>�@@?�@?�@�	�@?�@@?�@�>�@!.A	�A
�A
�A	�A�DA��A���@�u�@���@@e�@�)�@E
A�JA
�A	�A	�A	�A�oAI�@�Y�@�	�@�	�@�3KeyAttrFlagsi!4KeyAttrDataFloatf

K4KeyAttrRefCounti��<AnimationCurveL���-SAnimCurveS�4	DefaultD�L@�4KeyVerI��8
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w�;�
KeyValueFloatf����dB	*cB��aB�Z`B��^BZ�]B@"\B|�ZBDSYB��WBk�VBL#UB��SB�_RB�QB�OB�HNBPLB�XJB�EJB�DMBCnRBZ�XB�k^B��bB��dB��dB��dB��dB.�eB�iB6oB�uB��|B}�B*O�B��B�܉B��B��B��B��BX0�BH�yBA�hB��dB�]~B��B��B��B��B$�B��oB�<PB��5B=+B��5B�<PB��oB$�B��B��B��B��B�{B��IB=+B�}1B�&KB8@lB�p�B��B��B��B��B�y{B�UJB=+B��,B{�>BFMYB��uB���B��B��B��B��B���BֱoB��UB�EJB��UBֱoB���B��B��B��B��B��B߲qBU9XB�EJB�xKB6UB��cB�tBlP�B�9�B��B��B��B��Bq�B�߂B��uB�]cB�|PB~`?B�-2B=+B:�)B�:,B�1B�c9B�{BBH,LB�UBu^B��dB�#oB[~B`@�B��B���B��|B)lB��dB��dB��dB��dB��[B��HB�D5B=+B
�-BB�7B��EBxTB:�_B��dB��dB��dB��dB�^B.PBA#?B	�0B=+B	�0BA#?B.PB�^B��dB��dB��dB��dB��aB*�ZB�RB�EJBڨGB�>KB�zRBW�ZBf�aB��dB��dB��dB��dB��[Bd�GB��3B=+B=+B<KeyAttrFlagsi!O<KeyAttrDataFloatf

|<KeyAttrRefCounti��CAnimationCurveL�d�-SAnimCurveS�<	DefaultD`Ch5��<KeyVerI�@tKeyTimel�gx%�mLS��[��ġu�v�ˈ��dt�A+�-���F4�"2��K�R񅊘U�R	 �n��D��h��M����MXYV�����/����������n�Ё�H��:b�W���㧐���j��?���^�T�>r�T����^,X=����r�9MLzw�@��?CŎ��0����Rh�^�;d�3�G
��k ���ʶ��$��wm#4�G��ҿ��	'ʢ�V]
��'~���O����cP-_�}����M��T6�ǠwNΚ�Hk}�U���D��S-E�u\u�c�(	@iMg:Kv�--����5�L��%���k0�����d��w@~��P���#m���."�:nz�T�*Қl��;��ГbY�H�:u� �G|A
7#���P֖�&�.Ud%d$l���#m��>k1�T��ƥ>�����2����q��/���R/!�M3�]��J�s��$��L��̭�)��ۖn�W~�A&���P�`?l
]�-'���fS�CGY0g��tB�^��z���#�ό|����/ϟ���ؼ-�zn�
�k����<� @o�h�V�z��
*f�{����B�4C�-dO���0ݖ���j�����S�HWM�fh;{J��������JHkq|*��"=EW����I�0�
��=�m����=���kS�Sh�/�H�G'a��n�Xi)i���	CO���uUI\��5�
V�>��=i�]a>
�R��}�(��T�w_�>�M�����6C�ҙ���N�li]r����y��G�� M�ÐM�����3�%.l����#���O_ ��}?@i�&��,)�l��:z
:߶�܃��I�M�ețE�Z�0���`�WICu
KeyValueFloatf�hB���������n����Y��3Ҥ��-��)}���ӟ��H��]�������X��">���������c���6���6Z���ا�o	��m���������B��B��B��B��>B����o�d6�����-���d6���o�>B��B��B��B��B��MLJ�����-�~sy�6��E^f�T���B��B��B��B��cR��Q���-�V�A������1��'�����B��B��B��B�����5��o<��6Z��o<��5�����B��B��B��B������(���f��6Z���q���*���9��nZ���T�����B��B��B��B��$0��Q��x�{��E�������7Xi���-��FQ���]s��{C(��Z�`�������:��B��B��B��B��[Ε��J��{����-�\ue�����h:��������B��B��B��B��=B����o�d6�����-���d6���o�=B��B��B��B��B��Ϫ���������6Z��^ĥ�Ԑ�����<����Ϫ�B��B��B��B��D�����C�-����-���-�8CKeyAttrFlagsi!rCKeyAttrDataFloatf

�CKeyAttrRefCounti��JAnimationCurveL��-SAnimCurveSD	DefaultD�Y@DKeyVerI��GtKeyTimel�gx%�mLS��[��ġu�v�ˈ��dt�A+�-���F4�"2��K�R񅊘U�R	 �n��D��h��M����MXYV�����/����������n�Ё�H��:b�W���㧐���j��?���^�T�>r�T����^,X=����r�9MLzw�@��?CŎ��0����Rh�^�;d�3�G
��k ���ʶ��$��wm#4�G��ҿ��	'ʢ�V]
��'~���O����cP-_�}����M��T6�ǠwNΚ�Hk}�U���D��S-E�u\u�c�(	@iMg:Kv�--����5�L��%���k0�����d��w@~��P���#m���."�:nz�T�*Қl��;��ГbY�H�:u� �G|A
7#���P֖�&�.Ud%d$l���#m��>k1�T��ƥ>�����2����q��/���R/!�M3�]��J�s��$��L��̭�)��ۖn�W~�A&���P�`?l
]�-'���fS�CGY0g��tB�^��z���#�ό|����/ϟ���ؼ-�zn�
�k����<� @o�h�V�z��
*f�{����B�4C�-dO���0ݖ���j�����S�HWM�fh;{J��������JHkq|*��"=EW����I�0�
��=�m����=���kS�Sh�/�H�G'a��n�Xi)i���	CO���uUI\��5�
V�>��=i�]a>
�R��}�(��T�w_�>�M�����6C�ҙ���N�li]r����y��G�� M�ÐM�����3�%.l����#���O_ ��}?@i�&��,)�l��:z
:߶�܃��I�M�ețE�Z�0���`�WI1Ju
KeyValueFloatf�h�¸@]�@N*�@�f�@�N�@$�@�@�>�@U�@C�@�Q�@Y6�@�|@F�y@l�y@��{@^��@F��@n2�@���@"=�@
�@�p�@�v�@r4�@�¸@�¸@�¸@�¸@�©@��@�:6@�"�?3S�?�"�?�:6@��@�©@�¸@�¸@�¸@�¸@�~�@��#@3S�?<6�?�K(@<V�@�8�@�¸@�¸@�¸@�¸@g�@�&@2S�?Ш?E�@:O@��@�h�@�¸@�¸@�¸@�¸@s�@�0�@�q�@���@�q�@�0�@s�@�¸@�¸@�¸@�¸@KX�@2ͭ@��@���@�W�@�)�@��@���@���@yO�@�¸@�¸@�¸@�¸@v��@7��@�΋@a!c@�B.@�+�?^��?3S�?X0�?�0�?
�@��F@�%w@⯒@B6�@d��@�¸@�¸@�¸@�¸@�Y�@d&g@T#@3S�?A��?~�@�X@���@3>�@�¸@�¸@�¸@�¸@�©@��@�:6@�"�?6S�?�"�?�:6@��@�©@�¸@�¸@�¸@�¸@�3�@J
�@��@���@�П@K΢@�@�(�@r7�@�¸@�¸@�¸@�¸@9�@�a@
��?3S�?3S�?[JKeyAttrFlagsi!�JKeyAttrDataFloatf

�JKeyAttrRefCounti��QAnimationCurveLX��-SAnimCurveS%K	DefaultD�ʪO@=KKeyVerI��NtKeyTimel�gx%�mLS��[��ġu�v�ˈ��dt�A+�-���F4�"2��K�R񅊘U�R	 �n��D��h��M����MXYV�����/����������n�Ё�H��:b�W���㧐���j��?���^�T�>r�T����^,X=����r�9MLzw�@��?CŎ��0����Rh�^�;d�3�G
��k ���ʶ��$��wm#4�G��ҿ��	'ʢ�V]
��'~���O����cP-_�}����M��T6�ǠwNΚ�Hk}�U���D��S-E�u\u�c�(	@iMg:Kv�--����5�L��%���k0�����d��w@~��P���#m���."�:nz�T�*Қl��;��ГbY�H�:u� �G|A
7#���P֖�&�.Ud%d$l���#m��>k1�T��ƥ>�����2����q��/���R/!�M3�]��J�s��$��L��̭�)��ۖn�W~�A&���P�`?l
]�-'���fS�CGY0g��tB�^��z���#�ό|����/ϟ���ؼ-�zn�
�k����<� @o�h�V�z��
*f�{����B�4C�-dO���0ݖ���j�����S�HWM�fh;{J��������JHkq|*��"=EW����I�0�
��=�m����=���kS�Sh�/�H�G'a��n�Xi)i���	CO���uUI\��5�
V�>��=i�]a>
�R��}�(��T�w_�>�M�����6C�ҙ���N�li]r����y��G�� M�ÐM�����3�%.l����#���O_ ��}?@i�&��,)�l��:z
:߶�܃��I�M�ețE�Z�0���`�WITQu
KeyValueFloatf�hWV}B%�xBZsBk�lB�
fBa_B��WB
�PB�XJB�NDBH?B�:B��7B\�5B��5B��7B�b;B�JFB�2WBs�dB��lB50sBG�wBp�zBw�|BWV}BWV}BWV}BWV}B�vB��fB�TB8xEBNA?B8xEB�TB��fB�vBWV}BWV}BWV}BWV}B��mB�PBNA?B��BBѐQB��dB��uBWV}BWV}BWV}BWV}B��mB�QBNA?BX8@B+[JB��YBF]jBb�wBWV}BWV}BWV}BWV}B��yB�qB԰hBs�dB԰hB�qB��yBWV}BWV}BWV}BWV}B��yBa�qB`miBs�dB�CeB�ahB�5mB��rB4�wB��{BWV}BWV}BWV}BWV}B�zB�nsBCgiBP^B��RB�IB["BBNA?B��@BCLFB�GNBI�WB�ZbB�ilB�	uB�{BWV}BWV}BWV}BWV}B+�sB�^B3JBNA?B>�AB��LB��[B�kB�+xBWV}BWV}BWV}BWV}B�vB��fB�TB8xEBNA?B8xEB�TB��fB�vBWV}BWV}BWV}BWV}Br�zB�'tB� lBs�dBqbB�eB��lB�DtB�zBWV}BWV}BWV}BWV}B*DsB
�]Bc�HBNA?BNA?B~QKeyAttrFlagsi!�QKeyAttrDataFloatf

�QKeyAttrRefCounti�rWAnimationCurveLHM�-SAnimCurveSHR	DefaultD�J�?`RKeyVerI�IU�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\��Vq
KeyValueFloatfYdV"(?U"(?$��>�����������+b ������������$��>T"(?U"(?U"(?U"(?Z2S�}���+b �uu�B"��^��3�>U"(?T"(?U"(?V"(?�4&��c��)b ����G����3.S���>U"(?V"(?U"(?U"(?�e	?y�\>���9O��{���L���f�+b �t�����ҿ����U!�2�߽^��>r�?T"(?T"(?T"(?T"(?|l>sD��x�+b ���l޿�n��j�ɓ�>U"(?P"(?R"(?T"(?��>Υ���������6b ��������ڥ����>V"(?S"(?X"(?T"(?��T>��T�����+b �+b ��VKeyAttrFlagsi!8WKeyAttrDataFloatf

eWKeyAttrRefCountiY�\AnimationCurveLx��-SAnimCurveS�W	DefaultD��@�WKeyVerI��Z�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\�T\q
KeyValueFloatfYd��g@��g@̙R@]�"@�>�?���?��`?���?�>�?]�"@̙R@��g@��g@��g@��g@W7@��?��`?Ĩ�?�z�?r�@2uP@��g@��g@��g@��g@�7@��?��`?@uj?ّ�?z�?�1-@�NV@��g@��g@��g@��g@-_@�H@�W*@��	@�1�?���?�}?��`?R�q?J��?<�?� �?��@�Q3@��M@L�`@��g@��g@��g@��g@�I@��@aڦ?��`?U�{?G8�?��@��0@{W@��g@��g@��g@��g@͙R@]�"@�>�?���?��`?���?�>�?^�"@͙R@��g@��g@��g@��g@Q.H@�J@��?��`?��`?~\KeyAttrFlagsi!�\KeyAttrDataFloatf

�\KeyAttrRefCountiYrbAnimationCurveLؿ�-SAnimCurveSH]	DefaultD``�Q@`]KeyVerI�I`�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\��aq
KeyValueFloatfYdc�Bc�B�n�B�mpBkNB�1B,�%B�1BkNB�mpB�n�Bc�Bc�Bc�Bc�B��|B�(GB,�%B�,B��HBu�lBz҅Bc�Bc�Bc�Bc�B�1}B�HB,�%B�'B#9;B�?XBH�vB�{�Bc�Bc�Bc�Bc�B���BҖ�BuB�:`B�BKB��8B@u+B,�%B�6)B�v3B��BB{�TB�-hB��zB%�B�b�Bc�Bc�Bc�Bc�B7�Bu�aB�:B,�%Bt+B�|?B\�[B&�xB�ЇBc�Bc�Bc�Bc�B�n�B�mpBkNB�1B,�%B�1BkNB�mpB�n�Bc�Bc�Bc�Bc�B�p�B�n_BT�7B,�%B,�%B�aKeyAttrFlagsi!8bKeyAttrDataFloatf

ebKeyAttrRefCountiY�jAnimationCurveL���-SAnimCurveS�b	DefaultD�qz@�bKeyVerI��f
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�wj�
KeyValueFloatf�����@���@	U�@���@ld�@�A�@�AK�A	Az�A��A�A�.ArVA.A��A�A,��@�*�@���@^��@�\�@���@���@Fy�@���@���@���@���@�@��@���@���@�z�@��A�iAm
AB`A�;
A�;
A�;
A�;
A��A��@��@���@ ��@�;
A�;
A�;
A�;
Ab�A���@���@��@�/�?��@���@���@b�A�;
A�;
A�;
A�;
A���@�>q@�/�?�*�?�x@�q�@p�A�;
A�;
A�;
A�;
A;��@hu@�/�?8��?�;@J۝@�g�@E�A�;
A�;
A�;
A�;
Aq�A��@`�@���@`�@��@q�A�;
A�;
A�;
A�;
A��AHL�@�u�@���@x��@T�@��@!��@�iA{A�;
A�;
A�;
A�;
AJF	A���@���@�5�@�R�@��;@K�?�/�?���?c��?�@��?@�u@�\�@�ܯ@��@���@���@tG�@�*	A�;
AYA�z�@�@���@���@���@���@�G�@6�@P�@�/�?w��?��&@�z@Y�@69�@���@���@���@���@Lb�@�+�@s
S@��?�/�?��?s
S@�+�@Lb�@���@���@���@���@u��@���@���@���@���@�w�@�&�@!��@���@���@���@���@���@��@���@I�@�/�?�/�?/jKeyAttrFlagsi!ijKeyAttrDataFloatf

�jKeyAttrRefCounti��rAnimationCurveL�-SAnimCurveS�j	DefaultD�G�?kKeyVerI�/o
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w6r�
KeyValueFloatf��<�?��?d�?a��>J5�>��>��r>c� >��=��<^ڻ�������;�y�=F�(>�Ý>��>��_?g$�?��?H��?|�?E!�?Ϸr?��3?<�?<�?=�?=�?�|?�?�>�?>�=��K�˾��8�l���/���Iʼ��uſ�uſ�uſ�uſe�������k��><�?Y3uſ�uſ�uſ�uſN���޴��sοe���8�e���sο޴�N����uſ�uſ�uſ�uſ]ⴿOٿ�8�2���\ֿ�ȵ������uſ�uſ�uſ�uſ������׿�8���=���ÿJ��x-���uſ�uſ�uſ�uſV2j���>)=�?��?)=�?��>V2j��uſ�uſ�uſ�uſW.t���X>��?��?���?��?AE?�*�=��+�~ꤿ�uſ�uſ�uſ�uſ��¿�q���|����ȿ�2߿Bk���_��8��C�#X�x4�sM)�ﲓ>�B?p7?<�?�Q>���wx���uſ•�K�˾��>=�?<�?<�?=�?��w>�t"�"�տ�8��W�G/Ŀ�H�Y0����><�?<�?=�?=�?�]�>���&����d���8��d��&�������]�><�?=�?=�?=�?)N:?���?�~�?��?���?v��?���?�Z�?�!:?=�?=�?<�?<�?t�c>�1�b߿�8��8�`rKeyAttrFlagsi!�rKeyAttrDataFloatf

�rKeyAttrRefCounti�{AnimationCurveL�x�-SAnimCurveS*s	DefaultD�4I@BsKeyVerI�`w
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�wgz�
KeyValueFloatf���IB��IB�mJB��KBn�MB}OB:�QB�oSB@UBt:VB�VB�zVB�8UB��RB�OB�IB��BBML4B�� B�(Bk�B��Bl�,B��:BDREB�IB�IB�IB�IB�hKB�*PB$-WBi�_B�hB�+rBt�zBLҀB�0�B�B�B�B�BM�|BkeBt	OB�IB��jB�B�B�B�B�~yB{�VB�K-B	�
B3��A	�
B�K-B{�VB�~yB�B�B�B�B=�eB�$B3��A��B��&B�2RB�wB�B�B�B�BRIfB�%B3��AzB�A�Bw:9B�}^B�|B�B�B�B�BX8vB�NB;.'B�(B;.'B�NBX8vB�B�B�B�B+_wB^�QBf�*B�(BjB�%B�y<BvVB@�nB���B�B�B�B�BNH�B��sB
�^B�dFBn�-B�B��B3��A-]�A��A�BN~BQIB'B��3BH�?B�IB@XB)3mB��B�B�b~B
�hBpSB�IB�IB�IB�IB�>B�h$BZ"
B3��A!��A�e
Bb B~4B5lCB�IB�IB�IB�IBa�AB�A.B�`B�UB3��A�UB�`B�A.Ba�AB�IB�IB�IB�IB��CB$�5B��$B�(Bi�B	B�%BX:6Bm�CB�IB�IB�IB�IB5x=B)�"B]VB3��A3��A�zKeyAttrFlagsi!�zKeyAttrDataFloatf

�zKeyAttrRefCounti�%�AnimationCurveL(��-SAnimCurveS[{	DefaultD��A�?s{KeyVerI��KeyTimel��x%�}P��M^!8Ab6�'7�.�#�C�	%� n����DNjc�2�d^�P&Ǜ����&/Ό��5	sr�;)�с�;p�!��=�����2�O_9pO�r�:O%�2��%�(){2
!kH]����s_@{�X����v	�
s���W[>q%5��z(�6�����řP�W��l�ߝ����*s�C�D¶7H�Q����#�XiKi���א���}����&)K���I2~+PB}��W(y��tJ�u��q�K(�+��E:�]۠.ɼ��ҼI���k�,*�*z����pF/4���@ʅ5��}+q�	�C��̛ONC��b����'*�qm˿@{@�ַIms�Y(����+�\R�yt
���ꗺo�n������r�5��	��!嬅IȮ1���>��V�yF�Y.niA�ᴹ��^��cP���J˟�I�����@����~a��T�.�@�=�"�DU~F*��.ȋt���4���P^?9�ɼp�$�-��-��#	����Pҳ�C��Qv��<��k��Q��7������a\`�(��7{7@-w�dU��� 
w')�-�����/�z/��.o��β�	����"%'-�1/\�����dܜ�텕k%��!�C]ೄ�������X�ڦ��äh��mhkԳ3I�[yyPp)���s�GH�Ş*�_���/c"�H�7�+�;?8͞�ģ��6���X�&�4Ռ�r��w ��t���>��B�Ym�,f?�4T垁�խ6Ȩ���%��]�P�*��V{Vs��
qB��T�	Ғ}�&T����'yYa��l[������*h:��Gݶ+H����a��~
�-A�"R�<q:�������C��c��s�3����q�U��A���d&�������&�0O�S�!(�h�h�7�AI��/+ �n�0�D��He��sȋ�����(���9���B�����"冒� ;4ҽ��d
�5$K=wV{���B����'�:ԫ��ZR�8x�#̔C���
KeyValueFloatf����?N��?�!�?�w�?8��?�ߏ?�?k$�?lO�?3��?��y?�r?�l?
�e?`?C�Z?�fV?��Q?J�N?H�R?�da?��x?�d�?ɛ�?���?��?��?��?���?=�?���?�l�?��?߽�?�+�?�)�?F��?Q�?d�?V�?EѰ?���?Q��?��?D��?R�?T�?R�?R�?X��?(ə?Ȑ�?�Z?�&I?�Z?Ȑ�?(ə?X��?R�?R�?R�?R�?}4�?��x?�&I?�S?u${?�:�?Q�?R�?Q�?R�?M�?N}�?&�y?�&I?��K?�fg?樈?�.�?��?R�?R�?R�?Q�?iҨ?2w�?�j?H�R?�j?2w�?iҨ?R�?R�?R�?R�?M��?;y�?Eo?H�R?c�T?�h?�u�?�{�?
/�?��?R�?R�?R�?R�?�3�?�q�?Z��?dr�?���?#Rf?͑R?�&I?qhG?x�H?+N?B9W?h�d?�+v?<�?�ܒ?��?��?V$�?�<�?P�?<�?��?��?��?��?��?��?���?�~�?�_?�&I?˴N?��d?�1�?>��?��?��?��?��?��?@�?s�?��u?V?�&I?V?��u?s�?@�?��?��?��?��?��?I.�?��t?I�R?;�F?��V?Y�v?4q�?��?��?��?��?��?<�?6-�?�\?�&I?�&I?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�)�AnimationCurveLH��-SAnimCurveS{�	DefaultD �忓�KeyVerI����KeyTimel��x%�}P����l�$fqrS�b9�1�P2�8�`��@��I&�29�4�]��0ypf��i��+�IɎ݁��s}�y}���������dKgz��dJ�l[�-�Ҳ���k�>|i(�W��Y��,�� ���.AqQ����j�Ǟ��`���&O/�~�D�EG�V���?Cun��K��i=�]U����{H��&-#�P��r�x�ۛ���X�C2���1]��
��XE�e�s��I�K(�%��K�=[�!պ�殯�I���_���@r��h��ᅱT�j
 �V�#�+�$7�����%A�H_\[���Mo����3P��>
W�x����
6�g�=0c�zR[t
�����BK���{�T���!�Ɯ�'{�*[��d�=�����S�N(g�|�!���#и���ʟ��H����-�P���>Q���&�5C�=�<��V~I�͒Nȏ��}���X�PU7�]i�(�"
(��ƈ�1���.(�^��n/;���B�5fC,��h����w��*�#�M~�P�z��}[I��m#�Uå�Yn����w�I��Z�.��m��vRzB�]��yh(���A&ΘM�YT�JJ�]%4�������x:yYKP��y���

F��Խ����"��0v��^쮂�5�ah�">:�T������S��K9L�jS��\��+rHK���\y��|��)��\ՎA�f�rISU�i(_��L�Tla\�l�vgvS>��wC��D�1Җs�&T���) �ّy�꘻U����hٟ�*����H�އ�a��nm��bR�6v��m凕�ҟ"��k��sh�vG'wh.B��)���J)%��סC�c� u��P���;�~oh����]VA���Ah�	���^�g��>�]y�R��r������n�:I*Mǿ�����夂%�ґl��hZ�
�γ$�O�uh԰X��l~`?�ͨ�x���
KeyValueFloatf��/(�LT�����7�����(׾�������ь�2�l��*D����C)���н�R���ݘ��������]���=�����x�����
�	y �/(�/(�_�(�z�)��+�-��/�
G1��O3�$5� 26��6��6���3��6.�U)�/(�͐/��6��6��6��6�̛�Sfվx�z��
 �2�	��
 �y�z�Rfվ˛��6��6��6��6��y��W�^�4�	���)e�Mʾ�)��6��6��6��6�������a�;�	�'q���7�����꾑�!��6��6��6��6��W���پį����=�Ư����پ�W��6��6��6��6�����:�zމ���=���D��c�9*��jP�J����,��6��6��6��6�HO,�߬���侍V��"#n�
d0�)��=�	�8S���-���X�¦�����yپ�M�|N�/(���1���5���6��6�584��/�I*�/(�/(�/(���	�����y8�8�	��L�>�F�������7q�/(�/(�/(�/(����G̾��y��"�"�	��"���y��G̾��/(�/(�/(�/(�����i����=��:�ÏM����𾭡�
/(�/(�/(�/(�fb��렾S!1�9�	�;�	���KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�Z�AnimationCurveL�x�-SAnimCurveS�	DefaultD��oO@��KeyVerI���
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w���
KeyValueFloatf���{B^xBQUtBm~pB��lBӈhB��dB�`B�\B��XB-UB-�QB�NBV�KBLSIB�AGBţEB�yDB�DB.|GB+�NBoYB�dB;pB�JxB�{B�{B�{B�{B��{B�}B��~B�f�B:��B���B��B��B��B�H�B�H�B�H�B�H�B�B��B)�|B�{B���B�H�B�H�B�H�B�H�BYC|B
&ZB�l1BCLBc�BCLB�l1B
&ZBYC|B�H�B�H�B�H�B�H�B��hBi�(Bc�B'm	B��*B
�UB��zB�H�B�H�B�H�B�H�B8tiBW�)Bc�B?7BFxB"0=B��aB��~B�H�B�H�B�H�B�H�BO�B�iB#�QB.|GB#�QB�iBO�B�H�B�H�B�H�B�H�B�a�B��jB��SB.|GB��HB�QB/_^B��mB
�{B�4�B�H�B�H�B�H�B�H�BAm�B��uB;N`Bw�GB��.BY�B�EBc�B�mB��	BcLB�p$BZ�5BQkHB�ZB)alB�{B��BI�B�a�B�H�B@�B:��Bg�}B�{B�{B�{B�{BaQiB��@B9Bc�Bq�B{7B*l:B�yYB��qB�{B�{B�{B�{B��nB�aPBD,B�
Bc�B�
BD,B�aPB��nB�{B�{B�{B�{B��uB?�gB�VB.|GBcNBB{iIB�WB�<hBX�uB�{B�{B�{B�{Bg\hBJ@>B"Bc�Bc�B�KeyAttrFlagsi! �KeyAttrDataFloatf

M�KeyAttrRefCounti�ĚAnimationCurveL(��-SAnimCurveS��	DefaultD����?ȓKeyVerI�w��KeyTimel��x%�}P���߄��	�	9�iw�s�#��Pt��:��ϋ�D�X�͝���aL��iZ�?��<��ɼ&iN�t����������\�^�{3��c
#�T�ga���i����ʆ��0nO_F���f(�>���߲�H������/���h�R5�Bɴ#�K���i���-�@�х����w�PWf~Ey��@:\/����51$�s��{�?A���+Ɉ��
���B�ۊ�d�^t�x�|��8�9�?�'=���vp�R��B׭����
is��?
�$q鉤���S0x�.i5i�j��g�GH��*i�4��2��ߡ�ҊmB�"�	J:��ЗX���Ԟt��yɤ�|w)t����%+x�I�ov��!��jN+�!/�[�J:Ny���i�]G2�£�]��U��Di��vo�&R��NB߰4WJ������[��f��L꜊>(��ƾAz=P��憂�BQ&�&4BfC��,���y?T��z��\k8�i9w��*�>���&h�i��S
d[�@g\;�
ǞA��hx;�`���8^���1�6���G�ַ�H���Gz;I�Im�J砭.\������1�T��<�;��u�
/B���}GH��[����5���J(��ၾ�P�{��€�W�ǡ��-%�.��	�s�@O�%�}R�R�9�xiY)�j;+����/�r(*�j��{�ǹ&.#���P�������r�]��*���J:+ISyz�'��'��7nB�ژ*RT��z���P{��jR�Ġ�����`�8w����{�ڦ �M�ג�‰c0r����T�Ց�2�0�;��y2O��]�0p'gZwp��Iو�:�+,����Upj8�L�3��C���4T7�w�%�r�CV�ᴐ�9�A��(f�&��
KeyValueFloatf���ޮ?�?e��?~�?�{�?ߑ�?��?0��?���?�S�?c��?���?�u�?���?�.�?��?P�?'�?��?�ޮ?�ޮ?�ޮ?WV�?���?-w�?���?4(�?ϕ�?[λ?���?ܾ?�O�?�O�?P�?�e�?� �?�M�?�ޮ?���?�O�?P�?P�?�O�?Ja�?�J�?w�}?WVI?��4?VVI?w�}?�J�?Ja�?�O�?�O�?�O�?�O�?N#�?�p?��4?��@?Ls?���?k�?�O�?�O�?�O�?�O�?|��?��q?��4?�7?VZ?��?���?	�?�O�?P�?�O�?P�?UǼ?8(�?+y�?�ޮ?+y�?8(�?TǼ?�O�?�O�?�O�?�O�?!�?�?W��?�ޮ??#�?DC�?���?8B�?0��?7O�?�O�?�O�?�O�?k�?�1�?} �?-x�?Rz?S�W?G�??��4?��4?�<?ʨI?�]?��t?ۇ�?+�?.-�?�ޮ?fj�?�C�?6
�?P�?SǼ?4(�?%y�?�ޮ?�ޮ?�ޮ?�ޮ?��?�q�?�zR?��4?0�;?+�Y?͂?x��?���?�ޮ?�ޮ?�ޮ?�ޮ?��?s��?ʽp?\�E?��4?Y�E?ͽp?q��?��?�ޮ?�ޮ?�ޮ?�ޮ?��?���?�vN?��4?��4?P�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�	�AnimationCurveL�$�-SAnimCurveS�	DefaultD���2�KeyVerI�̞�KeyTimel�yx%�}P������<�&��M�G�ܲ��9�#��PtB�$o>/"�'�8ǂm�L&�5
cz<L���������N�5Msre��lW���6 �������ܛa�g݃�]89x�{.�j�܁�xG��ը�CՌ������D:�^>�uUA��R>:Ԡ��?6|��3������CS��>d'�_y����[�L2?֚ �C�Ԏ����Lh����~�c�yS�9���]�]��9�z>I#ʦ�qh�)V0C�wc4�9� o=���܁ò��tR��q�Ԑ��t��z���F2G־@:��'�R��7��|��t��]��N�������ud\�RѸ ����S��/�A|
[�E,9̷�@�	�$�wf���~�c�S^"k�A�-�݂��l��׶�����04"/���M�n(��;���ד&���������P���v?��
�'5C���������\�:���t�s
oC�efMe�6��m���J��HWjtJ���{��f�È%[H�u�2�=c�k�x���ίi����	�N�����c�n���BWC�|��y=0RgY�A���x?z��K0"ٿ��w ��&n�p''ԓ��kj��|^�D��wH۹A+��4�����*HS*�#Ȟ�O�@���]��V�)/vI%�k�
�>�
?ؕ�9��Y���](�]�V�k�	�[\�L�tA5���wB��h�"]5��:7��S;���kס�wc���X_
��Mh<�eV-)~d1C�ޢ��0�_g$��o��á�)������l�L�㾅�7jrH�wyV�������j����*���-��FR9�
�j����z�L� ��Y�Y|u-��H�«�3�xm�vֿ�=�\�k��
KeyValueFloatf�x��U���V��X���Y�ƨ[�)�]���_���a�M�c�_�e�g�%?h�8�h�9|g���e�J5`�YY���U���U���U��W�J�X�[�Z��F]���_�;�a��c�9e���e���e�^�b�jG\���V���U���]���e���e���e���e�X,@��5뾖bc��W���ɽ�W�bc��5�W,@���e���e���e���e��[���?���ɽk�ܽT�G�Y۾��<���e���e���e���e�jt�n�C��ɽ��ͽ����[��@���F���e���e���e���e���b��F]�l�W���U�m�W��F]���b���e���e���e���e�c� �]��ZX���U��U��W���Z��[^���a�R�d���e���e���e��V�7�/����<੾�R��x���Խ��ɽ٣޽�\��>�����+&��������"���A���U��^��kc�Je���e���b��F]�f�W���U���U���U���U�@�&�b���L���ɽ\�ڽ�%������n�ի;���U���U���U���U�F54�*��ĸe�0y����ɽ:y����e�&��D54���U���U���U���U�h�$��������ɽ��ɽ��KeyAttrFlagsi!ϡKeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL��-SAnimCurveS_�	DefaultD <�Q@w�KeyVerI�5��KeyTimel��x%�}P����l��d�	�8�iw�s6G���脊u7|\�0O�q �cr&�1=�i���sx��z`'�9��]t��Gw�rG���>��>wo���id�z�� ������J��{8
�s�i+H[��	*f�O`��������(�*���mx'��TL�P2툌"}Gk����o���b�J����jh(mzE9��@r�R�H:\PSػ.�d~�4@v��'��;}5V;[��A�S�zW�=�ދ쁶<�T��ƒU�M(r�Gz�u�B���}|R c���H�ˤN�\y7sG�$6-���xx/�$�%m"y5T�,���_%��M��\��w迸j����_���,�����4�'\�b�87����.��3�����;7	y��l9e��S�ȍ�*L&'=}PôżF2��G �w���RH��ޖM�D����ai��4o���o��Лiz3ip*��(#*�M�3��A���
��"���!�!}o�~����ּE��������Pu�I�$�"��z����<�V2���±g��T0��t0�R�8^���1����C�S[`�nj�ýʝ�ꄾg���V3W��T���2�V�֠RmI�s�w]�ƒK�z)��)_;q�;X����R^%�=���|@��4B��8�~����4�r>����艶�~H�[򾀂U/�(!]�c�n�g_A��E�ɡ��*�m�߃\�Uq)�h,;5���i��,#�ž�6A_����4����xrj�1�[r�4���� Eśˠ�?w�}�TI
���е?�ԍGmғ��w��!_�d�ɼjR�?q���C���)5���F���<��b��<�ɚ����ZR>��J�iq��Z�Df!���9�X�����3$�O�5�9�R=���=Sl���
KeyValueFloatf����B͐�B~F�B�Bg�B���B�B]ߓB���B[��B6�B��Bm�B�B&�B�a�B���B�"�B軏B��B��B��B��B�7�BzʎB���Bը�BLƑB��B�B”B�T�B���B���B���B���B 0�B�M�B���B��B��B���B���B���B���B2��B	NjB��3B�&B�A�&B��3B	NjB2��B���B���B���B���B�~B�1(B�A���A.�*B+jdB���B���B���B���B���BM�~B�)B�A���A�BE�CB��tBt��B���B���B���B���BU]�BLƑBC/�B��BC/�BLƑBU]�B���B���B���B���B�p�B���Bbi�B��B� �B��Bғ�B�G�B%�B6�B���B���B���B���BN��B���B�WrBi-QB��/B;'B��A�A��A��B�BI�+B�EB)�_B�UxB���B��BZ�B��B�k�B���BU]�BLƑBC/�B��B��B��B��B�w�B�KBaB�AyC�A�B1>BB�mB�B�B��B��B��B��B�8�B��`B0�.BW�B�AW�B0�.B��`B�8�B��B��B��B��B�΀B[�GB�j
B�A�A�KeyAttrFlagsi!T�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL8-�-SAnimCurveS�	DefaultD�c-@��KeyVerI��
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w!��
KeyValueFloatf���hAzABg�Av�A鼟A�ܬAC�At��AQ4�A6`�A�#�A�"�A���A\R�Aƭ�A���Anm�A ��AgQ�A[W�A��A��Ar&tAVUmA��iA�hA�hA�hA�hA��lAՔwA-i�A�B�A\�A���Ah+�A0ƪA�]�A�A�A�A�A��A���A�uA�hA5�A�A�A�A�AF��A1�Aˎ@A��@�d�@��@ˎ@A1�AF��A�A�A�A�A�?�A ~-A�d�@u�@N2A��A҂�A�A�A�A�A���A��/A�d�@,5�@3$
A��YA��A�v�A�A�A�A�A�e�A�֫AzM�A[W�AzM�A�֫A�e�A�A�A�A�A�g�A�x�A牡A[W�A+�A�şAA?�A�V�A�*�A,�A�A�A�A�A��A���A��A��tA�KBAK�Av��@�d�@��@���@/��@#�@�bAf�*A��CA�-YA�hA��A��A��A�A�4�A\�A��~A�hA�hA�hA�hA1�SA��"A%_�@�d�@��@���@��ArAA��]A�hA�hA�hA�hA�=ZA�6A��A��@�d�@��@��A�6A�=ZA�hA�hA�hA�hA�XqA+��Aն�A[W�A�ݜA��A*&�A��A�MqA�hA�hA�hA�hAO�RAԶA���@�d�@�d�@K�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL(p�-SAnimCurveS�	DefaultD@+��-�KeyVerI�K�
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�wR��
KeyValueFloatf��Z��|O��=�N�`��������lܭ�N�����������y��
����(��c�������������ᒤ��LY��'����ԿXYͿ�5࿍���Z��Z��Z��Z���I�r�3��Xf�o���tQ��)��0��@��y���#���#���#���#�����(��),�Z��������#���#���#���#�������Rc��h!����h!��Rc����������#���#���#���#�F�
�x^������w8��0�������#���#���#���#��
��H�����}��������h������#���#���#���#�%��
���Q�?��'�Q�?�
���&����#���#���#���#��U	����N.I��'��q���;�4������Ƭ���I���#���#���#���#�@����2E
��N������>�������G�������4��`��0wc�$�'�.��Ռ�Z���a�̪�������#��a�tQ���K�Z��Z��Z��Z����5�cq��6�����;����������tVa�
 �Z��Z��Z��Z����'�_�{����=�����=������_�{���'�Z��Z��Z��Z���|����*���'��E��j�oH�����}�Z��Z��Z��Z��Um8��s��](������|�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�!�AnimationCurveLXF�-SAnimCurveSF�	DefaultD�N@@^�KeyVerI�|�
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w���
KeyValueFloatf��5pB�FB
{B��B;�Bp
B�zB� B\%B�0)B��+B�-BQ�,B�*B�%B�uB��B�[�ArشAg�A���A���A���A���Ay��A5pB5pB5pB5pBy(B��B�XB�m$B��2Bf�@B]�MB�8XB�h_B>bB>bB>bB>bBiQB��,B��
B5pBB�5B>bB>bB>bB>bB�cOBCY#Bz�Am�A)�PAm�Az�ACY#B�cOB>bB>bB>bB>bB�]6BJ��A)�PA jyA���AA�BZ{MB>bB>bB>bB>bB7B]S�A)�PA�O[Akm�Ab
�A�.-BҬRB>bB>bB>bB>bBc�IBe�B��Ag�A��Ae�Bc�IB>bB>bB>bB>bBB1KB�B�i�Ag�A��A|��A��A�^Be�?B]XB>bB>bB>bB>bB
[By{HB*).B��B*0�Ax�A�9�A)�PA[�CAL.LA�nfA�>�A�$�A���Ae�A���A5pB�@B�6B��TB>bB�FSB��2Bc�B5pB5pB5pB5pBE��A��A��A)�PAT�]A�u�A~l�Aa��A��A5pB5pB5pB5pBf��A��A�L�A�ZoA)�PA�ZoA�L�A��Af��A5pB5pB5pB5pB
e�A��AOȮAg�A��}A�W�A��A!Z�AJw�A5pB5pB5pB5pB�D�AKQ�A�A)�PA)�PA��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�R�AnimationCurveL�
�-SAnimCurveSw�	DefaultD���@��KeyVerI���
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w���
KeyValueFloatf����@���@��@$��@���@���@EA�@9n�@
R�@a��@��@r��@���@ʲ�@�f�@��@L�@�֪@���@ 3�@�ΐ@�f�@T�@!��@@��@��@��@��@��@��A�#A��A+�A��A��A { A�%AS/(A�S)A�S)A�S)A�S)AN�!AD A�`A��@\A�S)A�S)A�S)A�S)A҈Av�A�0�@��@�kf@��@�0�@v�A҈A�S)A�S)A�S)A�S)A��A	��@�kf@�~@��@j��@�cA�S)A�S)A�S)A�S)A�fAQ�@�kf@*�l@$e�@|C�@�	AR} A�S)A�S)A�S)A�S)A��A�g�@K��@ 3�@K��@�g�@��A�S)A�S)A�S)A�S)A��A��@ޭ@ 3�@���@r�@L��@[�@҃A�;#A�S)A�S)A�S)A�S)A�H%A�A��A���@�X�@��@��@�kf@�a]@�Z@0_@!*o@�ʅ@kw�@���@��@��@�A��A��&A�S)A��"A��AtWA��@��@��@��@d��@��@�x�@�kf@��p@�,�@�`�@u�@Ӗ�@��@��@��@��@M6�@��@�V�@�g@�kf@�g@�V�@��@N6�@��@��@��@��@�~�@���@,�@!3�@�;v@���@��@�F�@@��@��@��@��@��@1��@�@ad�@�kf@�kf@��KeyAttrFlagsi!�KeyAttrDataFloatf

E�KeyAttrRefCounti���AnimationCurveLX��-SAnimCurveS��	DefaultD݅���KeyVerI���
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w���
KeyValueFloatf���.|�ǔl�M�[�z�I���7���$����Q���(�ڿ�!������1v���C������,
̾u���b��;-;�/��� L�݋*���Q�P
p��.|��.|��.|��.|�?>}�o���f��-`���ֈ�≌��$���B���s��F��F��F��F���#��Y���}��.|�י��F��F��F��F��9!g��ǿ�/���\>��>�\>�/���ǿ9!g�F��F��F��F��+��?�=��>H>�Ð;�=��Uy`�F��F��F��F��Ճ�ip�<��>�6>�B>��־ܙ����r�F��F��F��F��j����'�)���)�����'�j��F��F��F��F��/4��.��Xʿ[E��]@��"Y�Q�7�� n��.��F��F��F��F��܇��I���쿮�9�x0S��>�m>��><r<#)�n�ܾR�%������e'1���]��.|�����!���N���F��Vʑ��ֈ��(���.|��.|��.|��.|��62��|e�E#=��>�>\ꮼ��/��E��O�R��.|��.|��.|��.|��G����\C����=��>��=\C������G��.|��.|��.|��.|��e���1��f�}Q�G���r��;w2��e��.|��.|��.|��.|�>�.�?PO����=��>�>�KeyAttrFlagsi!I�KeyAttrDataFloatf

v�KeyAttrRefCounti���AnimationCurveLH��-SAnimCurveS��	DefaultD�ǀI@��KeyVerI��
KeyTimel��x%�yL��V��!XAF�eR5�ePƱE+lR#�jD(�T�ʜT��:�J�t�5����h��pV�i#�4,`Yv��`�����yɗ����xҕ�=�q&ދI�.��AI��!h_�^C�e�P4���
�"�H��+P���7�����3�ɝ�C���م��,L������>kI��2��	�N�m�4s�����q�9��a�Ʊ�(O�y����J�R���M�یP�Ҿٍd�����$��P:�&d�����'e��d�x�;ivn���
դx�6Ib'��u}�I��%�BEO�A/����;�I��*�;�`/�#؛L���,�_/��D��(jY������Kj+�C���qh���Kj8��A~�vZ���o&�u>� �k��G�/5gB�A�R�Z��쪾X.��R��ω� ��%%�4�5u@���=�Q�x�W<Bi�3n �y�^������/��ꘅ&Ȼ߷͑埅��>q�F��H�zLr�����Dnix�B�֐����.(
����h+9[�A�
FP$i������w(�OF��F�:��y
Y���;I�㻋�U�C�j�ԗf�GJ�����dj�:�ŻI�iE����p!y)��3@[~�:	����P��<.
���:����@mC@�R�i������杜ȿb�������rw�mP�B����҃��^��&7M�1RQ��
丮_�I�FC�ګw!��T��d��_>L��C���E*��A��6+d��Df��z(U�A�-�1�Tg; or*�iμu*�T��܌�lh�.<��#���H��r4�}�.;$������R;��v)M�8	��?��OrI��!оw�ԙ�ÊH��eh{=����Ťp`�&��5�ӤƘp�?^Z�lT�ꨫ
Ȼ�:�~�R�k�r��Ơ�+;RE*B��C��3���A�3��P�d�D�-%ә�0
�R�]����i(+S�@2���	�*&���.��V�w��
KeyValueFloatf��<LB�ZJB��HB9pGB�FB��DB@�CB�FBB��@B�q?B��=B�
<B�:B��7B
H5Bnn2B7:/B��)B��"B�v Bt�$BG�,B�P7B7cAB�IB<LB<LB<LB<LBf�LB�OB+rRB�|VB��ZBuF_BPOcB{�fB'�hB��iB��iB��iB��iB�bdB�YBk�NB<LB^�[B��iB��iB��iB��iB��VB@�)B\�A�A�zAA�A\�A@�)B��VB��iB��iB��iB��iB�m=B ��A�zAA�oA@]�A��#BlUB��iB��iB��iB��iBM>By�A�zAA��MAO��A��BQ�3B�JZB��iB��iB��iB��iB�s^BnEBw,B�v Bw,BnEB�s^B��iB��iB��iB��iB�-_B4dGBjQ.B�v B��!B�$+B��9B?VJB�YB�AeB��iB��iB��iB��iB�NbBL�NB�O2B�EBs	�AW��A<2kA�zAA�wGAmA��A%��A
W�A|�
B~�$B�D:B<LB�`YB:�bBg�gB��iB�eB��ZB��PB<LB<LB<LB<LBpr5B�aB ��A�zAA^AM�A���AQ�!B��?B<LB<LB<LB<LB�:<B�!BR��AY��A�zAAY��AR��A�!B�:<B<LB<LB<LB<LBSUGBL�;Bڌ-B�v BBR"BG<.B�<B�[GB<LB<LB<LB<LB�@4B�D�A�>�A�zAA�zAA@�KeyAttrFlagsi!z�KeyAttrDataFloatf

��KeyAttrRefCounti�9�AnimationCurveL�m�-SAnimCurveS
�	DefaultD@7R!@"�KeyVerI����KeyTimel��x%�}P����l��d�	�8�iw�s6G���脊u7|\�0O�q �cr&�1=�i���sx��z`'�9��]t��Gw�rG���>��>wo���id�z�� ������J��{8
�s�i+H[��	*f�O`��������(�*���mx'��TL�P2툌"}Gk����o���b�J����jh(mzE9��@r�R�H:\PSػ.�d~�4@v��'��;}5V;[��A�S�zW�=�ދ쁶<�T��ƒU�M(r�Gz�u�B���}|R c���H�ˤN�\y7sG�$6-���xx/�$�%m"y5T�,���_%��M��\��w迸j����_���,�����4�'\�b�87����.��3�����;7	y��l9e��S�ȍ�*L&'=}PôżF2��G �w���RH��ޖM�D����ai��4o���o��Лiz3ip*��(#*�M�3��A���
��"���!�!}o�~����ּE��������Pu�I�$�"��z����<�V2���±g��T0��t0�R�8^���1����C�S[`�nj�ýʝ�ꄾg���V3W��T���2�V�֠RmI�s�w]�ƒK�z)��)_;q�;X����R^%�=���|@��4B��8�~����4�r>����艶�~H�[򾀂U/�(!]�c�n�g_A��E�ɡ��*�m�߃\�Uq)�h,;5���i��,#�ž�6A_����4����xrj�1�[r�4���� Eśˠ�?w�}�TI
���е?�ԍGmғ��w��!_�d�ɼjR�?q���C���)5���F���<��b��<�ɚ����ZR>��J�iq��Z�Df!���9�X�����3$�O�5�9�R=���=Sl����
KeyValueFloatf����
A�7AA:�A�F#A1�*Ap�2A
:Az�@A��FA�LA^�OAaRA��RA�QA�MMAd�FA�G4A��A��
A��
A��
A��
A!TApAAvo A�r)A6W2A�e:A��@AQWEAd�FAd�FAd�FAd�FA}�<A�%Av�A��
AV+Ad�FAd�FAd�FAd�FA#7AF�A�@��,@FO�?��,@�@F�A
#7Ad�FAd�FAd�FAd�FA�KA�@FO�?��@oQ�@	�A�j5Ad�FAd�FAd�FAd�FAl�A�@FO�?B�?�F^@H�@��A/:Ad�FAd�FAd�FAd�FA��=A�r)APXA��
APXA�r)A��=Ad�FAd�FAd�FAd�FA�|>A'+A�7A��
AÓA}�A�A)~-A�':A�aCAd�FAd�FAd�FAd�FA�AAIH0AQ�AFz�@�Ʀ@�V_@˧@HO�?��?	9�?"�@��+@��e@��@qf�@<��@��
A!V A��3A*�AAd�FA��=A�r)APXA��
A��
A��
A��
A_��@i�@�l1@GO�?��@�B@��@5��@��A��
A��
A��
A��
A>�@���@@Yy@e�@OO�?e�@@Yy@���@>�@��
A��
A��
A��
A<��@��@j�(@HO�?HO�?��KeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCounti���AnimationCurveLء�-SAnimCurveS��	DefaultD�����KeyVerI�e��KeyTimel��x%�}P����l��d�	�8�iw�s6G���脊u7|\�0O�q �cr&�1=�i���sx��z`'�9��]t��Gw�rG���>��>wo���id�z�� ������J��{8
�s�i+H[��	*f�O`��������(�*���mx'��TL�P2툌"}Gk����o���b�J����jh(mzE9��@r�R�H:\PSػ.�d~�4@v��'��;}5V;[��A�S�zW�=�ދ쁶<�T��ƒU�M(r�Gz�u�B���}|R c���H�ˤN�\y7sG�$6-���xx/�$�%m"y5T�,���_%��M��\��w迸j����_���,�����4�'\�b�87����.��3�����;7	y��l9e��S�ȍ�*L&'=}PôżF2��G �w���RH��ޖM�D����ai��4o���o��Лiz3ip*��(#*�M�3��A���
��"���!�!}o�~����ּE��������Pu�I�$�"��z����<�V2���±g��T0��t0�R�8^���1����C�S[`�nj�ýʝ�ꄾg���V3W��T���2�V�֠RmI�s�w]�ƒK�z)��)_;q�;X����R^%�=���|@��4B��8�~����4�r>����艶�~H�[򾀂U/�(!]�c�n�g_A��E�ɡ��*�m�߃\�Uq)�h,;5���i��,#�ž�6A_����4����xrj�1�[r�4���� Eśˠ�?w�}�TI
���е?�ԍGmғ��w��!_�d�ɼjR�?q���C���)5���F���<��b��<�ɚ����ZR>��J�iq��Z�Df!���9�X�����3$�O�5�9�R=���=Sl� ��
KeyValueFloatf��~(��R�����������7&���u���H���\���/�y��U�}�	���
��=�dU
���	r������e��(��~(��~(��~(��g5���+�����������,������r���
1�L��	r�	r�	r�
r�C�������s��(������	r�	r�	r�	r�s���X�%�l���җ�>3w�<җ�>r���X�%�s���	r�	r�	r�	r��΀�y|�=w�<x�P>��=r�
�o���	r�	r�	r�	r�틂�x��=w�<!��=<��>��!S�jp��	r�	r�	r�	r��7���,���L��~(���L���,���7��	r�	r�	r�	r�5�����������~(�����������o��Ϥ��r���}�	r�	r�	r�	r�<���EJ����G�v ��#"�=�S�>-��>v�<��&��uϾrFE��L�����U�Z�P{�����(��z���aX�����	r��7���,���L��~(��(��(��(��,N���o��2	�w�<4�b=H�����O�rz��~(��(��~(��(��_L��J,!��
�=oF=�w�<5oF=�
�J,!�_L���(���(��~(��~(��5>���1��>�c:v�<v�<J�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�C�AnimationCurveL(��-SAnimCurveS�	DefaultD@CP@,�KeyVerI����KeyTimel��x%�}P����l��d�	�8�iw�s6G���脊u7|\�0O�q �cr&�1=�i���sx��z`'�9��]t��Gw�rG���>��>wo���id�z�� ������J��{8
�s�i+H[��	*f�O`��������(�*���mx'��TL�P2툌"}Gk����o���b�J����jh(mzE9��@r�R�H:\PSػ.�d~�4@v��'��;}5V;[��A�S�zW�=�ދ쁶<�T��ƒU�M(r�Gz�u�B���}|R c���H�ˤN�\y7sG�$6-���xx/�$�%m"y5T�,���_%��M��\��w迸j����_���,�����4�'\�b�87����.��3�����;7	y��l9e��S�ȍ�*L&'=}PôżF2��G �w���RH��ޖM�D����ai��4o���o��Лiz3ip*��(#*�M�3��A���
��"���!�!}o�~����ּE��������Pu�I�$�"��z����<�V2���±g��T0��t0�R�8^���1����C�S[`�nj�ýʝ�ꄾg���V3W��T���2�V�֠RmI�s�w]�ƒK�z)��)_;q�;X����R^%�=���|@��4B��8�~����4�r>����艶�~H�[򾀂U/�(!]�c�n�g_A��E�ɡ��*�m�߃\�Uq)�h,;5���i��,#�ž�6A_����4����xrj�1�[r�4���� Eśˠ�?w�}�TI
���е?�ԍGmғ��w��!_�d�ɼjR�?q���C���)5���F���<��b��<�ɚ����ZR>��J�iq��Z�Df!���9�X�����3$�O�5�9�R=���=Sl����
KeyValueFloatf��*�B#��Bj�B&:�B�P�B폏B�ؒBY�B
�Bj��B,��B*��B2��B�BhC�Bޏ�BҶ�B��B���B*�B*�B*�B*�B3ЂB�ÄBU��B8 �BE�B���B�0�B(�B���BҶ�BҶ�BҶ�BҶ�B��BGQ�B�L�B*�B9��BҶ�BҶ�BҶ�BҶ�B4�Ba>YB�:B�R�AkEA�R�A�:Ba>YB4�BҶ�BҶ�BҶ�BҶ�B?pvBe��AkEA�TA�{�A^}PB˖�BҶ�BҶ�BҶ�BҶ�B�owB%�AkEAi� ARb�A�#B�hhB�o�BҶ�BҶ�BҶ�BҶ�B��BE�B��B*�B��BE�B��BҶ�BҶ�BҶ�BҶ�B���B�B���B*�B���B�DžB�؊B��B��Bc!�BҶ�BҶ�BҶ�BҶ�BwS�Bb��B�PfB`5B��B��A�TNAkEA�5A�QAn.�A؆�A)�
B��0B�QBlOnB*�B��B�V�B�_�BҶ�B��BE�B��B*�B*�B*�B*�BdB^�B�$�AkEAL8A���Ah	BԳGB��rB*�B*�B*�B*�B��mB�>7B1�A��nAkEA��nA1�A�>7B��mB*�B*�B*�B*�B�bbBBZ�AkEAkEA��KeyAttrFlagsi!	�KeyAttrDataFloatf

6�KeyAttrRefCounti���AnimationCurveLح�-SAnimCurveS��	DefaultD���@��KeyVerI�o��KeyTimel��x%�}P����l��d�	�8�iw�s6G���脊u7|\�0O�q �cr&�1=�i���sx��z`'�9��]t��Gw�rG���>��>wo���id�z�� ������J��{8
�s�i+H[��	*f�O`��������(�*���mx'��TL�P2툌"}Gk����o���b�J����jh(mzE9��@r�R�H:\PSػ.�d~�4@v��'��;}5V;[��A�S�zW�=�ދ쁶<�T��ƒU�M(r�Gz�u�B���}|R c���H�ˤN�\y7sG�$6-���xx/�$�%m"y5T�,���_%��M��\��w迸j����_���,�����4�'\�b�87����.��3�����;7	y��l9e��S�ȍ�*L&'=}PôżF2��G �w���RH��ޖM�D����ai��4o���o��Лiz3ip*��(#*�M�3��A���
��"���!�!}o�~����ּE��������Pu�I�$�"��z����<�V2���±g��T0��t0�R�8^���1����C�S[`�nj�ýʝ�ꄾg���V3W��T���2�V�֠RmI�s�w]�ƒK�z)��)_;q�;X����R^%�=���|@��4B��8�~����4�r>����艶�~H�[򾀂U/�(!]�c�n�g_A��E�ɡ��*�m�߃\�Uq)�h,;5���i��,#�ž�6A_����4����xrj�1�[r�4���� Eśˠ�?w�}�TI
���е?�ԍGmғ��w��!_�d�ɼjR�?q���C���)5���F���<��b��<�ɚ����ZR>��J�iq��Z�Df!���9�X�����3$�O�5�9�R=���=Sl�*��
KeyValueFloatf���l@9y"@�p2@g(D@Q�V@��h@%�y@��@�z�@��@��@��@�q�@wٚ@���@E��@Q�@DZ}@�c<@�l@�l@�l@�l@h@�'@
C:@6�O@�6e@7.y@�@4}�@i��@Q�@R�@Q�@Q�@/�@�I\@DŽ$@�l@A�i@Q�@Q�@Q�@Q�@�A�@l�@Rf�@�4�@��@�4�@Rf�@l�@�A�@Q�@Q�@Q�@Q�@`͕@���@��@30�@=��@Lٗ@�w�@R�@R�@Q�@R�@˽�@>��@��@Q�@�@tÙ@k��@��@Q�@Q�@Q�@Q�@#��@�6e@�o0@�l@�o0@�6e@#��@Q�@Q�@Q�@R�@L�@:�h@1m5@�l@I@�Q.@�M@�vn@̄@ʍ@Q�@Q�@Q�@Q�@N�@}`�@�3�@e��@.�@d�@��@��@V�@K�@)w@+
Z@��=@3&@a|@�@�l@)7@��i@�@Q�@#��@�6e@�o0@�l@�l@�l@�l@Uv-@��b@[��@��@�{�@�W�@�*k@T[B@e]"@�l@�l@�l@�l@�E&@hSN@t�}@�ɒ@��@�ɒ@t�}@hSN@�E&@�l@�l@�l@�l@Ź.@Y%f@���@��@��@T�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�MAnimationCurveLȽ�-SAnimCurveS�	DefaultD [y @6�KeyVerI����KeyTimel��x%�}P����l��d�	�8�iw�s6G���脊u7|\�0O�q �cr&�1=�i���sx��z`'�9��]t��Gw�rG���>��>wo���id�z�� ������J��{8
�s�i+H[��	*f�O`��������(�*���mx'��TL�P2툌"}Gk����o���b�J����jh(mzE9��@r�R�H:\PSػ.�d~�4@v��'��;}5V;[��A�S�zW�=�ދ쁶<�T��ƒU�M(r�Gz�u�B���}|R c���H�ˤN�\y7sG�$6-���xx/�$�%m"y5T�,���_%��M��\��w迸j����_���,�����4�'\�b�87����.��3�����;7	y��l9e��S�ȍ�*L&'=}PôżF2��G �w���RH��ޖM�D����ai��4o���o��Лiz3ip*��(#*�M�3��A���
��"���!�!}o�~����ּE��������Pu�I�$�"��z����<�V2���±g��T0��t0�R�8^���1����C�S[`�nj�ýʝ�ꄾg���V3W��T���2�V�֠RmI�s�w]�ƒK�z)��)_;q�;X����R^%�=���|@��4B��8�~����4�r>����艶�~H�[򾀂U/�(!]�c�n�g_A��E�ɡ��*�m�߃\�Uq)�h,;5���i��,#�ž�6A_����4����xrj�1�[r�4���� Eśˠ�?w�}�TI
���е?�ԍGmғ��w��!_�d�ɼjR�?q���C���)5���F���<��b��<�ɚ����ZR>��J�iq��Z�Df!���9�X�����3$�O�5�9�R=���=Sl����
KeyValueFloatf����AT��@��@AѢ@��m@*�@��J?~�&�����N����q���ϲ�����A��fj��q�M�%��>4��@��A��A��A��A�y�@���@�[�@�ч@
Y#@UZ?�7�_��A9�q�M�q�M�q�M�q�M��;��X#Q@���@��A�k@q�M�q�M�q�M�q�M�K���D�=^74@���@���@���@^74@�D�=K��q�M�q�M�q�M�q�M��=p�ϺY@���@8i�@ؿP@aҸ>Dt	�q�M�q�M�q�M�q�M��y��SU@���@Kʽ@��@�]@�9�4��q�M�q�M�q�M�q�M�.�
Y#@�
�@��A�
�@
Y#@.�q�M�q�M�q�M�q�M�E�¿��@��@��A�An��@�ˋ@�@�?�*����q�M�q�M�q�M�q�M�N39������C�t<?1�@�u@���@���@��@̱�@Z�AD�A��Ao�A?7AW�A��A⳷@��?�ӿq�M�.�
Y#@�
�@��A��A��A��A\�@���@�@���@N��@��@���@�q�@�
A��A��A��A��A�5A�S�@���@���@���@���@���@�S�@�5A��A��A��A��A3��@��@�c�@���@���@��KeyAttrFlagsi!KeyAttrDataFloatf

@KeyAttrRefCounti��AnimationCurveL8~�-SAnimCurveS�	DefaultD�a@@�KeyVerI�y�KeyTimel��x%�}P����l��d�	�8�iw�s6G���脊u7|\�0O�q �cr&�1=�i���sx��z`'�9��]t��Gw�rG���>��>wo���id�z�� ������J��{8
�s�i+H[��	*f�O`��������(�*���mx'��TL�P2툌"}Gk����o���b�J����jh(mzE9��@r�R�H:\PSػ.�d~�4@v��'��;}5V;[��A�S�zW�=�ދ쁶<�T��ƒU�M(r�Gz�u�B���}|R c���H�ˤN�\y7sG�$6-���xx/�$�%m"y5T�,���_%��M��\��w迸j����_���,�����4�'\�b�87����.��3�����;7	y��l9e��S�ȍ�*L&'=}PôżF2��G �w���RH��ޖM�D����ai��4o���o��Лiz3ip*��(#*�M�3��A���
��"���!�!}o�~����ּE��������Pu�I�$�"��z����<�V2���±g��T0��t0�R�8^���1����C�S[`�nj�ýʝ�ꄾg���V3W��T���2�V�֠RmI�s�w]�ƒK�z)��)_;q�;X����R^%�=���|@��4B��8�~����4�r>����艶�~H�[򾀂U/�(!]�c�n�g_A��E�ɡ��*�m�߃\�Uq)�h,;5���i��,#�ž�6A_����4����xrj�1�[r�4���� Eśˠ�?w�}�TI
���е?�ԍGmғ��w��!_�d�ɼjR�?q���C���)5���F���<��b��<�ɚ����ZR>��J�iq��Z�Df!���9�X�����3$�O�5�9�R=���=Sl�4�
KeyValueFloatf���@���@�'�@
>�@��@�ɻ@m��@B<�@E�@���@l��@p��@���@���@���@�
�@�v�@�P�@��@�@�@�@�@��@:�@A�@<��@�;�@gU�@��@�G�@]��@�v�@�v�@�v�@�v�@t��@�V�@���@�@�*�@�v�@�v�@�v�@�v�@�)�@7t�@��@|�@*?�@|�@��@7t�@�)�@�v�@�v�@�v�@�v�@��@>��@*?�@6��@���@���@I��@�v�@�v�@�v�@�v�@�+�@n �@*?�@� �@^:�@^��@�Q�@N�@�v�@�v�@�v�@�v�@(�@�;�@{^�@�@{^�@�;�@(�@�v�@�v�@�v�@�v�@��@V�@\U�@�@��@[��@�D�@9`�@wR�@���@�v�@�v�@�v�@�v�@���@���@���@3��@g��@�	�@���@*?�@���@5q�@��@�:�@m��@�^�@PJ�@Ƕ�@�@A��@gؽ@Xx�@�v�@(�@�;�@{^�@�@�@�@�@'��@��@`i�@*?�@,ɣ@"��@�t�@�ܜ@՚@�@�@�@�@n�@I��@���@J/�@*?�@J/�@���@I��@n�@�@�@�@�@���@#�@���@*?�@*?�@^KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�R
AnimationCurveL���-SAnimCurveS(	DefaultD ��@@KeyVerI�)�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\��q
KeyValueFloatfYd�-@�-@�@��@5#�?�?n�_?�?5#�?��@�@�-@�-@�-@�-@�@ɯ?n�_?Jz?�5�?׸�?��@�-@�-@�-@�-@�@rv�?l�_?b�f?�~�?���?�a@5H"@�-@�-@�-@�-@?�'@�@5�@���?w�?�˓?g�t?p�_?�l?���?j�?��?�A�?�N@��@Ȧ(@�-@�-@�-@�-@w@�9�?sE�?o�_?�5s?�Š?��?-�
@�#@�-@�-@�-@�-@�@��@6#�?�?s�_?�?6#�?��@�@�-@�-@�-@�-@�@�X�?��?p�_?p�_?�KeyAttrFlagsi!
KeyAttrDataFloatf

E
KeyAttrRefCountiY�AnimationCurveL�v�-SAnimCurveS�
	DefaultD ��*��
KeyVerI���KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\�4q
KeyValueFloatfYd�V��V�|>H�'�%������������������'�%�|>H��V��V��V��V�~�4�"������V������)!���F��V��V��V��V��*5���������y��Z���57�zi-���J��V��V��V��V���P��QA�2I+������������Ow��������h��P����&������1�0�D���Q��V��V��V��V��B����5G���������a0��˕�U�/�'�K��V��V��V��V�|>H�'�%������������������'�%�|>H��V��V��V��V���@�0��Ķ��������^KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiYRAnimationCurveL(j�-SAnimCurveS(	DefaultD�x�@KeyVerI�)�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\��q
KeyValueFloatfYd������=�zvۿ0����O`�u�9��O`�/���zvۿ=�������������t�R��u�9��pP�7A����Կ��������������}��U”�u�9�)�?�B�~�����4"�iA
��������������e�������+A��6�v�8�K�t�9�@nD�ye��ы�sª���̿P��&��U��������������3c�P��d�|�u�9��sJ��~���̶�뿢�
�������������=�{vۿ0����O`�t�9��O`�0���{vۿ=���������������L����s�t�9�u�9��KeyAttrFlagsi!KeyAttrDataFloatf

EKeyAttrRefCountiY�AnimationCurveLxz�-SAnimCurveS�	DefaultD��	@�KeyVerI���KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\�4q
KeyValueFloatfYd��L@��L@�@@}F"@�=@o��?�k�?o��?�=@}F"@�@@��L@��L@��L@��L@�/@�]�?�k�?;��?���?ʄ@�>@��L@��L@��L@��L@;}/@�?�k�?��?Iv�?�	@u�(@qQB@��L@��L@��L@��L@+�G@�:@'@��@�R�?
��?���?�k�?3��?6��?J��?�@�@`�,@�
=@��H@��L@��L@��L@��L@�:@�u@�A�?�k�?��?���?z
@W+@�C@��L@��L@��L@��L@�@@F"@�=@q��?�k�?q��?�=@F"@�@@��L@��L@��L@��L@��9@s@T"�?�k�?�k�?^KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiYR#AnimationCurveL�B�-SAnimCurveS(	DefaultD@�/�@KeyVerI�)!�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\��"q
KeyValueFloatfYd��x���x��Ik���J��#�ZZ�nW��ZZ��#���J��Ik���x���x���x���x���X����nW��1{��֤�`�F��i���x���x���x���x��`Y����nW�� ���K�T-/�R���m���x���x���x���x��_s���d�P��J8��W �Z@�U��nW��)����*�Q��r\+��^A�gXV�h�&Rt���x���x���x���x�$xe�e:�DN
�nW��\8������G3�o�T��rn���x���x���x���x��Ik���J��#�ZZ�nW��ZZ��#���J��Ik���x���x���x���x�<rd��a7�a9
�nW��nW���"KeyAttrFlagsi!#KeyAttrDataFloatf

E#KeyAttrRefCountiY�(AnimationCurveL���-SAnimCurveS�#	DefaultD����#KeyVerI��&�KeyTimelY��t� 8s@�����*����8F���	>�͙0����TQ���(�Б�d��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w`06�������X}zI��=���z�P��\�4(q
KeyValueFloatfYd}0�}0���$��?
�L�ؿ����lo������K�ؿ�?
���$�}0�}0�}0�}0����Q�̿lo��Z���1�ϿN���j#�}0�|0�}0�}0����� οlo���f���߸��鿕���&�}0�}0�}0�}0�DX+�O3�u�8���u�ӿ�ⴿ�L��ko�������3���7ſ�Z��t���!�m$,�~0�~0�~0�~0�
��G~���շ�ko������迿_�����5'�~0�~0�~0�~0���$��?
�L�ؿ����ko������K�ؿ�?
���$�~0�~0�|0�|0�~��mK���i��ko��ko��^(KeyAttrFlagsi!�(KeyAttrDataFloatf

�(KeyAttrRefCountiY�7AnimationCurveL�
�-SAnimCurveS()	DefaultD�'��@)KeyVerI�z1&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�U7�
KeyValueFloatf��x
�y4��@3��m&K)Q��7ob�Ǐ�y���)մL'S���D�gMj‘lYN�ؒ��}�'&K�!�dI��:���=��s��QV7Ko+��s��}?��so_��ee�G\��ߌ�˳�դ$ǩҁl=�M�I��ܬXK��SIn������l�:����F�4���LDX0oM+�Zv6�1����+-�y�)�n�p���$�[Ү.E*y��.�)��A�rօ.�X�v�c���	�FV�p�M"#�h�v�3�\6J�Y��Wy�I]y�ս���}?�YE{�.��UO�s�V�м�
�d�kS6��3x���Y�8������U���~�P�����d�^�_����!kS�Q=����8������rg�TXN��zwrb�[\�us(������Gg<��p�]�f����w�׍��YI�ʔEbY
2�����M�}٩����ܦ�1C?�SQ����c��HeI��!>QIT/��b��?X�ց�J˲ꙓԉ�K/ӆ���
�O
hZ�Cz���Q�\�<N�ױ��#tW�]��7�؛�p�,/���������{O��SG8�t�����q,�bA��f���d���0IP�V�T�	��S�����c�)��f��_h���~�b�}<���D�o�Q�.`�x���l'g��H����g�@GM�P�"<��
��Ybd����h(J>�t�v�{UX+���3�������)
*��>c�m�B1>EOlT�%�i	��:B�s�p����e����YM��^Q$��ڄ��:��5�z������qF9{~��|���CwHO���w��9fq�>���%���B�x��UW�\�ɖ�M�yr��+2'���U�cGIzM�p������_g��b���)9׉zo3���A��n���~�Qs����>��OEsT�{��+�e0���{(�����
Jl�W���uj��r� pЍ��B�Qwz�U�0�_�ED���[?�ߟ��&���#��F7���=D�W��+��� �?��$͝KQ��5��O��ϋ�
b�`��4Բ�k���"��^����/3Y��ו���Kn�*.�ӹ�����ƃ�ʍn�L1���h~��#{�.����>�@y8S���y �c��p�d��q���P�Np�#�_!z�
�F��p�p����W�M�b��)Z��"��`��cx\����P����㳚�H
<4�3~�KSQ9X���n,����n���.2��r����߫p.M~I^����H�w����>������<��F^�<��Kt���}�w��}Na�n���R빭���$���6���2����n��P��7#3��V�ee��.Ců�S�A�t�l\���Rs�"�j)�ДF�%x�JQ�%��+��R�Ɯ���օJ�K���$#�+ҏO?�*�e���mkgc�:E��ϣS66�$�<��fن�ȵ�?Y�w7KeyAttrFlagsi!�7KeyAttrDataFloatf

�7KeyAttrRefCounti�>GAnimationCurveL��-SAnimCurveSI8	DefaultD���߿a8KeyVerI��@&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��F�
KeyValueFloatf��x
��?��E�gy��j����Ԝ��~���6"n���TZy�dTk�4thQR�T;az8�,����HQ�4bE!lD��^����?�߯�{y�K=5�<�=�l_+��b���{Gӱ~�,��X��a����Z��{�y�g��	V����4x�4�2[S��ue'�L~���b��p�c��s��sb䷁@'��'���s���s�<DL��a}M)\�R�C�H��v�l�WO�_&���3�X��K�>+���$Ӣ��s��$B��n��l%�&���z�����j�q�RH�A�RDn�������4��/栣}�D8���'�C{CzD� ��@������zD(�u�!���piH�i�T�{�ڊ4D���mA��jD�NA��!*Z$�w��u�ߖ�~��!���V�Ǿ#��<Z鮋�y�B�G�h���ǫ|1q��o��2�@����x��\�|(@@���$�[�I��G0�]Q���-���3n�~���
w^�V=���o��1*<*��/8E^v^����m%^�Ի��H��/3oJ0��r7!�ΈOڈ�w����δ��&o��RlٻZR�KJ&��Hv�Z���\W��GHY�C�f��^ZjFC���
G�ÈM��FQ+�
�%-�iP�l;�6#V�R�3���P�,�F�"[�����q���ߣ�Ϭ�HGzbҋ�-�������4�َJk�{>�t3��	{޷�)k����i4����Љf��}�~�q���n�䀹v��Uq^���==�gN�~bL+�����>�v�+Ocj�)܇�Ɉ�+������[��n2ec��Qp�}��Ja�(v��F����)�W��p�yrL���iQ2�Jp^�FrJ3��m�Ap	��fa��5�Z�N��U�t����"S�O��ȝt�~�9��U�}�s�B��l��]H���H��B�8�Q���:tg"5����y���T����0��i�e��K�.��MuЯ������k�
|��c��axl�na�CuNTL�K�/Q������n��$qK��@��%{���.��U(՗#\���F0��� `�"5!��o�lw�V�����T,42��\�'��%���ĽFA��0E~�;�m�Cd�{�)�
�h��6+d�?J���q�V[n�D>��������Y\�'��������@X�/kQkh=�mR����*�qts�F�27���OO"Ȃ�.��n��Q����d��S���Ne�B�� ���æ�j�7����?nE�3�a���9���\�'Be�lc�US�m��E�ȝ}4<m!��mb{K%����~@�9\�U\�"�
��¯�e�9�z[��O�qq�a~�"�O�:�
R'�s�w���@d�1{��i�;���Y�gY�Ҍ;�n�Z�x��w:�V�㑷�yƼ"n�w�}�MO���օ�Ò`�Ζ(�K�zM[���W}\[=ĕ�����u5��:�u�FKeyAttrFlagsi!GKeyAttrDataFloatf

1GKeyAttrRefCounti�MVAnimationCurveL���-SAnimCurveS�G	DefaultD@K2�?�GKeyVerI��O&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��U�
KeyValueFloatf��x
��?�qO�p8�quEu� O��V��k��(۬��z��'))������kzT��״���zޙ��)E�<��pe��ޯOb~jW���n���M*@�B|}� ���yB�	X��@p
��!>�^�a�j!kb��u�c	n��½^w��j
?c�o]�S�<�_^撑���̝�zZ�����d�Ȩh�1a�
��07љ��xW�fX�2�ӗ�(g�S���&�y�'���Q.�@��&f�����YT#��Չ�^[03ņ�"9�ƫX�7���-n6�LgeX}�ȩ�Ny�3�����	c��ЬL���/�d<� eM���'Kظą�{})J	��y*>��kpඒ�Z��9��Ǿƅ���wxn�Rf�q埏�x�Ɗ�Ҍ�fmͲ_v%G09#�kU1t���B2P�ʖ&��ڱU��g���U���*b���W�Rtˉ}_db��U��T���#�0��y/>��%�����ԅ'ޠ��)�_R{v7��|���g�j$�3C)O��q�T&�
�`�$����V7o^̳�`��C��Sԕ���~2��|;C��Ŏt��	X��E�a��gs|������X�ʑן��ϧ�Ĕ��'�q�a��НӅgˍi�ʈ}+�p�P�"����L-�1;B�'8q{�PZ���ENԬ1��~
~�+�%�j8�x��ff����n�;�`Oq�K����ԔQ����˓�{2h���cػŇ!�<���7�7A3��ly#ԞyBKn�ڂ��58�5%�X�̓G�j:�g�dw6��g�p�N̾�pN�ʙ1hͬL[�}����+=ZeLKt�x�#��-X�΂�	���&�C�E�"�2[��Y^��W�yT`½�]�݈�W�P�b�k�R��T�9��4<@i�Sdl�a|�(֬��3���0i�m([_�����w�c�r��G��󈿢E��}�z������,9W�Cy}����u#bØj7��'��[�2�
.%w���8]*�8g�~��c79PV,�@�=�e~|j2���&S���[�s|���
�1|^%N�4aW����R��0�H�Jc��0(U�x[%m����`BYnIn*��ߝ�l���f8[U�]'�����ʉ� �a����s��Ƒ#알�НJ
z�P�Ϗn:��ߔ���@��2�ً��G�x�5�p�_��_$L�g¥��֡ B����C͹c���)��dm��?�n� �0$�� 9+
�\x�W }�utv��m�ȓ��!�^����(}��^D�u�yO����K�����X�zI�ޯu��v.���=��g�����'�8j�M�ߙShŶ҉�a�t*4�y�?O�^r��ߜZ=V�=Ap�;(���;E���NT��0z�)d�fc��
��90<k�3n<�S�*���F�_��{Ê;2�P�y��z7w��UKeyAttrFlagsi!VKeyAttrDataFloatf

@VKeyAttrRefCounti�eeAnimationCurveLH��-SAnimCurveS�V	DefaultDH@�VKeyVerI��^&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��d�
KeyValueFloatf��x
��?x�q�8�!1rvH�������4�T6��C��PQ��J��
I%��#ֆV��[H͐br͠G�*�c��������D�Z���ٽcjC��K!���3��f�"�-�=b�َ�ylql.+��lL���X:�y��g�%�/Y��8K��j3�nig�����Vu\�Y��J0�Ò�g^��}u!L���A�"9:�G�N�P��qs�`��MNX]���O61uυ����/�?tƌ��gX�GM��u���Z�dKBssr٭Js�8���1@`�lŅ6Ta��ӱ�܌zoe�L��

��Ѡ�~=���%��[N�
���.�Mqfd;�F	�136�^C�k���_Y~F�ِ�6an�4�� Q؀_���ݭN���P$Ks���Bv�`s���
IJ�b�u�>,"��FYC#�6
�_�I"A���ӟ�b{�I�E�<J�ȅ7��,�"�u򔰽5���q�c����#���\�q�Ux���OH=�����4��RjkR3"Z`L��ө�N�D��pq�ck/�2�q�
�hF�|�k��!-�C�i��,m�W y�������ݭ�ҍTZ��ά|	��[Pᭆ��
�tMpC�L�hPR"��Z>D/p.5&�8�҄��6��7��ӓ��՝a�~���f��jC5D�&CZ%��o7
�Kpm}#�Z�q�Eb��	v��C���j�(�i���*/}�2�f��o�)�6(�ש��f	|���w�
Ԗ��;�kf�cdf3�k0S�/�*`�L,P�E��A��jc_z;`ȅ��`<�E�S(��u�r�8��
���
ï�&�j`[���\T�߀p�
}��稏�p�)�!>�L5%P�os�2:pR��2dtX��X�Q����Q�|h7�jV��b���Uq7*k�e��oG�TO�O�j�&�-�AP�0�~����W΅�G�;�3��UQɣ�᥻6%3��x晃�&�����/��M�W ��:�1�
+���C�t�����J��eq�IHL�ϤS(����>�M�+�-;)t6N�e�Pצ�^]�X�An!��݃���0lIB���-/e>2�~��U��x�-<�e(�U��ԍb$s�Q�3�\��M���,7���s��c�J�1�0e�vh�1��>Z���E� 
�ñ�����!O���I=MɚoE���ѥN=ze2�|��,�gl��Zv������u��ʏ�`�m�7�S~^�nw#�a�R��	Ep8��x�\���avF�C~�floݍ�ڧ��}
~:	��{2&����4��rl�⣜�A�0|W(��0U��T�����K���_бf�N+���
-jQ��E�2�#��T�����'q�����nI<gkZ�lA���%��$v�x�̮lZՆ��//��E:��!pU>be�>�͸dя�:�-����dKeyAttrFlagsi!+eKeyAttrDataFloatf

XeKeyAttrRefCounti��tAnimationCurveL���-SAnimCurveS�e	DefaultD����eKeyVerI�
n&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�t�
KeyValueFloatf��x
ω?�y���~L����\�C��5���V���l�j;w$���QKCD[�E:I2��e(v;P�X-iUJ$I[�����;xd�]\�u���12^��4`y�'lk��&�*�uT[�fΊ�W�&��� /y�����u8D^�����1
HK�����z��^�R&��z,{2��5����Ue�����)`ʥAD�F(�M�۫X�ev�S�g[2��]>zdѨI�$E򵺁C?a���l�Jwv���U,�6����{F��`u k��WD���4�ɜ��:�,����g��7u��V)��'f�^����'w�Y:��$�]�rP\��j
�&��F���8�}K��Q[R����Q�(-�W&���i����y3�n��70�>R�R�Q�2�=g}r׺i�����%�%Y;Ш؈�CU�P�G4׾��R+��/���b3m'AU�3�����É�6�	��hA�x6�sہVf�8�g-2�Ѥ�|j�N�4"�i��T���g�R'S���֊��`M���
���aN�&0�&s�����u����ŹF=hP��o��OS";Eʊ��i�K�D�z���i�a��~��\���MVc�.[��c�O��|ږۏ�7obT�it,F��B�e@�����+�`a�������A%�ٰ3>:F���(Y���ϴ�;́��P��O!���K;�f/L�nz��7O����mг��.�Y���R��Ë"�|�<1���j�b//sJܱ�@�0�Lȕ�EYr
���Q)KVS��G0�ztv�UY6���6o����U�JpQ�D��7��~����P�{�}P����.�q݉�o���������m��B���/Ncs��Sɣ�{��2�{z���]�8�u-
M*e*DfIJ��P+��c����'
<�8�R=
�������;p�ۏb1׉���qO�],�]��T/���q\?������t�ȢB6�_�F�[�
�=#�
m�k�;�Խgс7K�)|)��mhź�4��F˴Zq�B7���ra5�Le�<HV򅫾Q�h5�MW��;��[�=bB�yK�h�Qy�%�M5�����!��`1z�D�F�3%��r���" �zl�����3��B����z�R��8�8�!�k���?�JXN�wt	��^�D�J�Q��t��A\�-�-�=݆`\*e��Zx4J��I�h
	-�-������$�B��4UN%r*�O���3�Q��Y�w�����d�A�P������L|���Bt16�� ~ �
���xP�;#�K���b�ʰ&d2������c�z��L�B�{��"`ֻga��V,.��ac�h��3�+��la^�I���	��vԢDY���8�Q�靴�2��k�)1ݏ�ّ亪?X��~���ۭR�|y<7���6����¾C�]	ڿ��S�uȔ'��>!�m���#�W%�Kc8�q�o�k����M�O
z��X�Vf\5Ov�‹#�(�����6��>tKeyAttrFlagsi!xtKeyAttrDataFloatf

�tKeyAttrRefCounti�}�AnimationCurveLXX�-SAnimCurveSu	DefaultD���T� uKeyVerI�Z}&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�߂k
KeyValueFloatf�^x
��S�ǽ$M�d�.�@�2�����8�4�3-TR^��\d��evY�g��}��툍dJ�]s2�2g����
�A]j�DX6�XJ7b������>��|�߆]q��0��”8ô���ff ̧J�_a�%�97��τ�z����:����Ҽvڲ���9�Y��|�œ��"��ϝ��i�	G�C���z�u��Z����tˍ�Jƨ��}�
vV^��ǭ5t̳�2��%v�"���pY"w�JE���*7.��Ov)w�/h枔rr�n'w~	-(⳼B��"�h���G-<^fe�R�����7]�{eRF����\60}�9��]���X��b�w��Qǝ�v������v�\�ը\�"���7V8�b�̌��d�og�X�XN�&ضs���Ǫ�׳疀�(��I��
篫�W�D����+h��{��VSzw��<����#���e&y�����!���4���A�ib��������'�1����++�6�H�?l�ێ�����fڏX9�*Py9�����S2�}(3~�Aot#��~K1�d����F����/jZ���c/	�t���$Y��\����M�o�5���y>���r��E����V�H��	޴s��
���sv�Ȳn��4�g����6���u�����K���lb�
7q�Z�\h\�V��Y;Gf�����#�L>��.�IKO�;�Yx����f^Io"*�C�.��>��I��
�M֙m,.����GQV�Z���)5��T�x�/u��A���
�n��~�tLj�D7�WUǬ�z
c*V��ָm��7�&7#{]4�����Ҝ$3�E���޹v�,P���q�`'���z-|XZO����KW�98$�L��8���6���U'����]�Wl���T��2>*)e����W+�*F��+2\%��)<��t���B'��5*�Y5$0����bc��F�sV�ROZ�����菗�f����L(��֘=Cc�
��q0�gcM����X8�23-���>.g�]����+��t�Ķ�(T�]^?��Ṡ�R)�Htn�aX^ͼ�L�3�r���$J���Y���If���ez�5NF8�2ׅq��/�6s�m/Ys�Lv�t��y@5p4�@�����L��r�O6���8%s4R%xM!����w���}����M�G�H��$t:�:,�pS��H��b���*�e*�*�.��\Էq�LҐ��s�!��&��T��l
wM��+�FK^٠{xjDߒ�2�k��T�o���tes�3���l�)X�[�Z�֘����N��Q7��1�k��LJ5�I�\+^,f21�̴�Y�7�d�v<�G�*��Lx�������o	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCounti���AnimationCurveLh��-SAnimCurveSӃ	DefaultD C@�KeyVerI�%�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf��x
��;Շ�qp8�9���mR���X�Y���[ݩK��g�jkm4ܭ��f��˶�6+'D�HS<'/�ߑ%**5v*�jҋ��2�����y>ڝ9��	�*f�S��HŐ�Z�绲Y�F�t7�������������6�ٶ�%�[�!bc��߱G2��cy�9�?->/���a_'��L��>�cɋ(����
�B9�A�oX[�/7�/��|�kl���K�aoS����i�%n���*��5����'�N��M�U�q�+�Ubū���1:��C����د-��{�Čw+�RM�0W�ǿ��x��'�bQ���|kf���Ϻ����������J+�Р).�.�?�d-^��ٿ���bx���#��s�]~���W��Uer�LVqH�Nm�����Ky/vݯG�I�X�+���bu�O�vҒ�5�1��-�sY����)x�A��^kF��r��D�&�rY�38�ՠ��ňN���çL�t�uu8�@�F��<`�����R�7;��m����|����D[��P�҈�3�0}���jS�h�5I�=Y�<�9�|([-�0ct:�f��2Ō��6��ʕ�gܹ�͆s�;�?��0y������I�e[���1�&�(}.�����]z��u���aώ��~-�:�Bpwnf@n�3]*!�(U|n[}�&N8'�gE9fE�cM��:O#n,B�MQ�I���d��j6J�'�yEb����
��s_�nK±�Z�c;oa��	�RM�h׏O��4�8�|����Z�P&G�h!,֧B���
�vS/�/X�]�r���l�g�d�A�����`�~
C�
L����D���\�X�*EVA6�N����S�1�λ��Ĵ,tο���J��q�F����&�����@�#º�.�?��x��!����s��\�WK[��ߙa��	��8���sGmx�7k~��O8�=�w�ݸ��+�﹇�e��9ԍHY+�����ګ����xqd�g�Z�5�ocN���*/ez��_NTh��a�����a-/^�'��O��_�wC���!���/�>���
{e�H��Nc�q*����#C�\d—�خ1�>�l�;���~ ¾)����W��6��s1��bg�I�f�<[U� ��̾4c�M�K,�f��Ǭ���j/b��w���:)�g���?���;��݁~��=38|Γ_6�15N��f�~��C��ly8˭F��;�����f�PH�!�j��`B�y����c4�8|?>��q���(F@K.2�|S/�F���w���hC;�A�����f�[�~G;^�y	��3D^�f�˧�[�[G�C��p��.�{\6Z��5��{c��GO�\�}�#�<��ĉ�vR�|�k-�p#�+<	s
^< �/y&��m��9%B)a��'�
����d*C\�2͙�8s�.;�T[p���m�UP>����G�=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL8��-SAnimCurveS�	DefaultD���*��KeyVerI�Y�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf��x
��Wt�=��l5��P�p�a���pTA1�\r�D��K�q7����a�,��$X���B�C��`5W0�dY����{����h�V�$Z��J��eN�pyO)V='�y��5���TFيkWm���D��q�;�cV��?�-V\֊�z�w�1�Œ��k7Z��U���=ƛS��
�GN�h�M�����"`�WXG�_�[,���l6an�r��uE4��c�d���^�&��T�'�D�xՁ�Q+�:dE���w�H�w�#T��c9�s}�EDR�>�m%��4\���
�:��Ϡ�<�dG<.:���	1�e�wN�'�s�“��n��;��G��&K�����$)��c
|����,��	k�v��׎�De���6�=�=gO�G*c��X䊩_���\{��R���	�0v�������?1�~� ����6��e�s���1R�Q�EP��J�`!��R��L�����2FJ��H�䛛��{XQ�gL������>��c��e�~����AG93:��6ऩ%��4�J�,�-6��H�&z�=��.��u#���E�
+���˦D�����XFv��6K�UC����}'��g�P0qnk)��ȌQ�3��M��X�L`OnEr�x7�����8��-
�6�Ký��$��`�=�w[c�|+��I������������G���D��S��!���Ed�SZ����`i]	�a�X��]G�&<(��c�R K�!��7.���1���'��ː���+�sh�ˉXr��H��ұO�i�3%>^�|�X�X*6�"�
T�N��+Y/+A����2^�Z�OU0V��td,M�ݹ�ʞ�{"C\����(�DI��PJ�6��I��|������a:�mҲx���?�D�f��)!�n5�e�:м��J�k����|��l���P�-&l���ֈ��l՜P0yw���ᔌ;�V��Gr�]�zݝ��^t_���޵�.$����� �B�⫍�}Q��i%y�3��4ϕkp���ez�[�lQ���8`��k�l������]�<���;]�$�Tњ��#����U�S��zu4kuFn˼_��s`̍�p���ϓm�L�b_�&_��crH��B-od·M��RGKz{��@�AF�%<�mEK�j���1�m�N)�,Wc����3�<�ۉ�-��K~�if��|��׵4�2���E�8��-�c�KB�\��:Ǔ�r��:���
�1D�i a�=�p�4�}δ[)I��A[��,K�d����78UCx�an��\���iQ��T��X�'[	��!�0�̧.x�|���\��β�D��Y)��_v��?6)_e�tZ��*�Q^���_�	#Cz-��������8�B�S1���E�9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�W�-SAnimCurveS�	DefaultD`���KeyVerI�U�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�s�
KeyValueFloatf��x
э?���N��qGZ"%��SҔ��߯�9Zk��塇�;�6��Ms�ӑbΤ8+yh�A�&:��GϺR���6r;�Ԧ�����»���a��y�����"��7��N��]֦Z:��a�yPtT�e���~�ߑ��B�DG�a�Q#_+䯿���̮L��fO�G�&_���t	��;'��'8���7�qq�>�W���1�_�x��
Cj �x��u�"6i��gr:������

VӸ�J2n�,�O����!�.37<<i�.�"�4U�`����Yq6q��A�c�u����e���P�--+�򳃰J�;d>8�n�rF�?�q|�	J?�}�[�5�"�
��Rn\F_�]��n��\{#������ɰٯN��1�<4e6F�NG��7�S�Ca�澟v��k��)�o+'=bw�q�0�ܠ&ǩ�UB�),��������8�]����p���~�P{b��Ɲ��l�>�&g�R:�N	
l���zF�ɠ;ړ�ޯB�1�>����>qƟ��q{�x(���L(�X	c���E�{E�������5K#Sy0�K6�
��S��U;E�x���g��<��������3�t�����F�H��{tg���Q�UԷWC[�_!��2|R��	P�{"�S5|�Αk�O^({IeG�E��ɚ�-�y��XO���b�)�L�؊�5}E��ߓ��s]�w�y�~ޘ﷨9G���$��B��[j8�c� ��Ȧ���#�]�i4��~���Q��t���[\�K1x�v@(܆VCD��*��+aU�S��v�Rș�"��}䊳�zF���\���j��RMj�u���;pvX�x�qZ/�3 17H�=�g��g�T��6�RA���4a��N[?��߶a����2���7�z|:�����P�{,˯A�͟�ڪ��Ym�l�2����D��@E/O��V;�Ɔ������H��r�Ҳ ��o�{�C�}��|mא"��C�eBǫ�_�]�&�'I�,����<|����~Z(���y{�s
�r��H%����i?>�cׁ���RA2��<�ɺ3���f��N�NE�l>bb��>����y��(�3A����fk�|&��;��Ͽ�q]��&��vex
�Í�O�T>�h A;�h��M����KNӄ$#���>��!a�
DVh5
�n���a�`��)�yx�����8/0
=�=��^�s����k��ǩ�j�9!�@ai�g�`��3jM%��h:n]m��1��
a�:��	[�U�����O=ӷ�x]3�J�Ŗ�4`��5�@���<[��[�8BT�̳������o�R�k�P��7��q6��ē;ܪN.W���Y�Л�cy"����ʒZ�+���6�l���*�v���Z0�q�k��w��a��9+��q�����w��p�?�0O6Ln.�F��F���
l������
��F�Ȑ`�*O��F��wй��%�p��U�a[\5�VO���d�Ǿ�/p
���KeyAttrFlagsi!װKeyAttrDataFloatf

�KeyAttrRefCounti�`�AnimationCurveL�M�-SAnimCurveSg�	DefaultD ����KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�¿�
KeyValueFloatf��x�8�yp#ɥ$jT&��Zeø�x�t��p����JM�2��)�qI�U�k�bPL�����}�$�2�1J�:���"5���w,��a��D�G&�n
�L������2�N���P�I�2荕�`n���yec~W6��ӡ�]
�ģj�8
5qb�I��ˆY$�hO�����HZ/�Ӫ�Z�`�9���v1�Xk��\�m�����$c�6j��
�|L�Z���fX��
=��MF�)"ǒ<����-g��y���<[7�?��͍{�ݷ�xD���t>o7���ݩ�TmW�o��b`�9�_���T�	K
��鮃��Έg��Gk���~c�
oPM�e2K��̾��`Q;r�M4���G4)�Sc�K���߭h��(4Dz
!�R���G�N檏˹�K9?v(���[�����ػ����f�F⦆Ta�Ji�)�l2Ť��1Y��J5n�۔V����O��GW�*�vU��r�>��˜�e4�WBGJ���Ct`W'}���~�6�4��7�*�)���cz��l��s]��o��~c�
���ů�1i}�K��j�O$c�{�i�GϽÉUY�}uBQ���`�[�rV:�i���'���n|�b�FY,^��8��*�L~�'�y�4�8ui&���J:�3.NU�)���n�bO/�/S��f�B�}�R�U����NKL �t�C��U���u@�oim�#���=ݍ7��+3\����
�b��gHڤ��1KС�
{f��0R��W�"�.��^<$��QO��!7L������A�X{��=���v2k�R}��#�ԗXc*Cۼ4Z&"S)��у���C�N,N���O��c�q�K��K	�᠖/��b1�h�	n�5�f2�������=��7���@��.��Ӣ�e�!S�R�\i��v��XG���_]C[�S��7�%�����Z�8�|�5u�}��9/���`��Ё�wx��t�h�����#&�D��R������Ǔ�k i�^g[����ux��Q�R�u�S��
�O���*Od'�o؂�n�8
�|K3{�—-Y�X��O&��F�^-�5A�z�;���c"l.��7PTP�(i�F��ߟX�ͥ�l�+��,����)9&���嬳Z!�,�@ثm������s���^A���IOѽ�������"�V�YQ����>o-��`_%�G���=]�@K�f�.Qв���hC��+ɥyTY/��+�]Bj�Y~v#�Q��au��g�MF��
�=sz�'�FO�LҿnX�t����i{�K�K�0���ߚ �t3F�Ba�>9���ߋ}I�C_��#I��%Cl������N��S��p|x�

HR���C��8JN��#���L�L��1j��?�]G?Rw/�/[� ��Y3�-��r�)3�s\�ıX��">�<@�u��6����Rhg�	:};��-u��-�w��9
$��5;���!*��J�i���Ϧ�i�Vo�A����u�05�KeyAttrFlagsi!&�KeyAttrDataFloatf

S�KeyAttrRefCounti���AnimationCurveLxD�-SAnimCurveS��	DefaultD@D�!@��KeyVerI��&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�"�
KeyValueFloatf��x�<�wp��Uv�E"�82�n��|ny<�b����ӓG���'��G��ʿ]�,�&�%�Ѭ��󭨧�Jn��JVv(B����N���G��v>��%;�ɔ�F���)t��V}��
Kwta��������G���}ܽ�s���WeX��RZ,�O��)�=�,�”�4H��*� �Ǭ�
V�d}�\�iT�W�,����[{<��cr�
N�ڡ^�IG�B�X�������
q�j|�`j�'��Z�2II>У�� pɆ:a+�� NgVK��azM��_�W1��B��"��S�+)�������,^Z��އr�����%��׃��NX"��a݋k7�K�W�A�1g���/���W٤���ot��C8�I���A۲_�sr��`��-��<�oX���p8Ǐ^��Ǯ���A--sh#�� �Kܤ�kO����=��V�#:g�`�-;�!C��'Ve��+�
�O\2��p�|���V�#)N���GJa�K�\�����d��}����M�J��-�u>����O�H#�ӥ�0Qզ��kK���h�x7�:������n=6���dT$����}&�ا�@�V4�ð�b|����zx��!�w�lYb����"���~�m`�\���9O������}M�v�MM5\�(\c߅��V>��
�kC�:A��qKY�?ֲ��~*Y��|~N��w�s�7E�0P�6/f�o���0��Nzu:�v�<��hvr3s���hϳƦ|Fy���Hpy�O;I�A���k6����[V��ֲ �`����vW�_|	
t�	0i|8���L]\ٍ�OXH@!��u��t��*!P�I>X-U��sV�$�Q�>si�

�V��[�En�9�ծ=����|���~=���5f�H�x5�*L�/��t �kOo�뿆`]I.d�z�Q�/��PEf36�ۅ}�Ν��,5�~�Ç��Dg&��y�H� �f�U�G��4�u���!j�Q���,�8�E�0�av��3��(���<^�s�#y��t��[ژC�py�Olp�G���~i3oSG�{ts#�Ҭa��Y�Rʜ�*�����]w
ph�|NQ�@9�� .x�(~��P5��*���4�7���Q�Ǩj.MV--����{����O߫���Cx�-��t�����O`{7c�E���0g��i!�3�=F��sz�OG�4&�m�Uz}PA�ǽyc�� Q�\`f���7K���~�/�:���Uz�	���nW߃�{�\��1���rZ3�˄�4-S�K#�)f��q�)1��S��/��d��*���q3ͶeQ��Q:���5�~ʦ:�YI����	Vs2�m���	��d�ڛi��2{!�� f�Ml�ǛI����U
=�-������-�e\y�WS�l���!틟s���\���_dRFw'D�6�֟��&M�l��F,�—��k(�y
�Ϩxۙ.zgD�"���SK+9��m�yw����)����R��ý�����eG7�=�k
3g��/yL�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL؃�-SAnimCurveS�	DefaultDu�.�KeyVerI�h�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�t��
KeyValueFloatf��x
Џ?��p���#
�G��H�"�8����J��N��~P؝�ZK%ɏv(%?�%V�8-�Tg���TS����de�WK]Yd�{�	�5g����{b��(�C��o��
ʚ���\t�$������p
��-����W0�j�!�|佸y��UOa"DOp/b�0���t��ܲ"��NT��"�!�s�~Vu�5J�(��R��|��Rw�{�����㖰>� F%?b��;��7��W>���b֥��`x��a濮�ϋa�~0�P��!�˾樟�c�cz:������
��g�O,o��K����H��Q�X&�Z5�Xnc��_��?��V/���a��|� >�v�%7v�+��f� 1�҇E(z��jo'\�=V*���D�×��y��h3�m;�g�!.ݑ�M���Ow�a}Q�L3Y��e#4,	n'�a��A�ǹ���V��bt�Y,�]�R"�9[,�3��r��g�X���P����fީ\�j�)-i���Ӿ*TfD��
*� �4�t����o`:��|]�'|���ݞ��>O�[:���9lYrLmI�)��y(�同��v9�o�**�!�\�D��v�Ԇ�q��Z���e�\���o�pUN5���E���0t%֯+����SsF� ���.�g���-@�REf*��CR�;�$�u��"�f>K��'Z�����[yЖ��}�%���جv<r-��b�u�R���έx������
��64�k1�zYW8R|�'M����C(zi͓+H�#W�ѱ��>�oF�
\�����q�ƦGu��W��"�����|�0��S<�wq-��J�gw��U9�����l0���YT���/�ql1V-�BH�;���q���W8�ƈR�Ӊ�2���J�����i��0��s��B:����7�E�
1�@��ݕ$���)R�7	N�k!���؀	����K2��%��I_��l��	iR�kfYs���x�PY�-�;�z�k�q���y�t�Sc���{Q��j�鳌Q���b��q5w)��9a��!�YI{}��[��nD1�hrX��
qc�"�އ�bG�_`�Ԙ���PV�]�+�c���M�8A��-���f!��g�������r�)L52T[�r5��1)�w���-
ޡd��+o����~��)%~l�΀��W���]���\��'��EAXdx�p�\$��a��U�]�OZ3*\B{R"]�P�3&�(���|x���`�����]�x�9<l̟h��ֱ^���4lN{��S��O��Ɛ:ܝ�Ac�4��٤C�Q�)��������
��)�ɟ����Iv����9��dWC�3ۓfd�c��$4}��˾CؾvT����~,S����9�-'P��3����r�X�Lj`!��G]��U�̏�/و��D�łp�&n���B�f��x�
	o��ydJ\� "ll>}]�9V�L*�2��.�-c�v]bA��b��R�T7�5l��3T����o��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�r�AnimationCurveL�-SAnimCurveSh�	DefaultD��@��KeyVerI���KeyTimel��
KeyValueFloatfg�'@��KeyAttrFlagsi!8�KeyAttrDataFloatf

e�KeyAttrRefCounti��AnimationCurveL�@�-SAnimCurveS��	DefaultD��V!���KeyVerI�	�KeyTimel4�
KeyValueFloatfV�
�^�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti2�AnimationCurveLT�-SAnimCurveS(�	DefaultD�~P�@�KeyVerI�i�KeyTimel��
KeyValueFloatf��¾�KeyAttrFlagsi!��KeyAttrDataFloatf

%�KeyAttrRefCounti��AnimationCurveLhx�-SAnimCurveS��	DefaultD ,:+���KeyVerI���KeyTimel��
KeyValueFloatfa�Y��KeyAttrFlagsi!X�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD@@K@�KeyVerI�)�KeyTimelT�
KeyValueFloatfZ�@~�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiR�AnimationCurveLH��-SAnimCurveSH�	DefaultD`,�P�`�KeyVerI���KeyTimel��
KeyValueFloatfcA����KeyAttrFlagsi!�KeyAttrDataFloatf

E�KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS��	DefaultD mJ$@��KeyVerI���KeyTimel�
KeyValueFloatfiS"A>�KeyAttrFlagsi!x�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�]�-SAnimCurveS�	DefaultD`12@ �KeyVerI�I�KeyTimelt�
KeyValueFloatf���@��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountir�AnimationCurveL�'�-SAnimCurveSh�	DefaultD`~Q���KeyVerI���KeyTimel��
KeyValueFloatf�3����KeyAttrFlagsi!8�KeyAttrDataFloatf

e�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD���$@��KeyVerI�	�KeyTimel4�
KeyValueFloatf�U&A^�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti2�AnimationCurveLhT�-SAnimCurveS(�	DefaultD���@�KeyVerI�i�KeyTimel��
KeyValueFloatf����KeyAttrFlagsi!��KeyAttrDataFloatf

%�KeyAttrRefCounti��AnimationCurveLh3�-SAnimCurveS��	DefaultDjFQ���KeyVerI���KeyTimel��
KeyValueFloatfP3���KeyAttrFlagsi!X�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLx��-SAnimCurveS��	DefaultDY�'��KeyVerI�)�KeyTimelT�
KeyValueFloatf�*=�~�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiR�AnimationCurveL���-SAnimCurveSH�	DefaultD`�&�`�KeyVerI���KeyTimel��
KeyValueFloatf�7����KeyAttrFlagsi!�KeyAttrDataFloatf

E�KeyAttrRefCounti��AnimationCurveL�
�-SAnimCurveS��	DefaultD�l�P���KeyVerI���KeyTimel�
KeyValueFloatfe+��>�KeyAttrFlagsi!x�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��-SAnimCurveS�	DefaultD`:�!@ �KeyVerI�I�KeyTimelt�
KeyValueFloatf�	A��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountir�AnimationCurveL8��-SAnimCurveSh�	DefaultD`@��KeyVerI���KeyTimel��
KeyValueFloatfs�T@��KeyAttrFlagsi!8�KeyAttrDataFloatf

e�KeyAttrRefCounti��AnimationCurveL�t�-SAnimCurveS��	DefaultD`�[Q���KeyVerI�	�KeyTimel4�
KeyValueFloatf+܊�^�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti2�AnimationCurveL�+�-SAnimCurveS(�	DefaultD@5�?@�KeyVerI�i�KeyTimel��
KeyValueFloatfҨ!?��KeyAttrFlagsi!��KeyAttrDataFloatf

%�KeyAttrRefCounti��AnimationCurveLh��-SAnimCurveS��	DefaultD x���KeyVerI���KeyTimel��
KeyValueFloatf�s��KeyAttrFlagsi!X�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�X�-SAnimCurveS��	DefaultD��P��KeyVerI�)�KeyTimelT�
KeyValueFloatfl7��~�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiR�AnimationCurveL�H�-SAnimCurveSH�	DefaultD�~f�`�KeyVerI���KeyTimel��
KeyValueFloatf�3����KeyAttrFlagsi!�KeyAttrDataFloatf

E�KeyAttrRefCounti��AnimationCurveL8T�-SAnimCurveS��	DefaultD��!���KeyVerI���KeyTimel�
KeyValueFloatf�
��>�KeyAttrFlagsi!x�KeyAttrDataFloatf

��KeyAttrRefCountiAnimationCurveLr�-SAnimCurveS�	DefaultD���P� �KeyVerI�I�KeyTimelt�
KeyValueFloatf�G�ž�KeyAttrFlagsi!��KeyAttrDataFloatf

KeyAttrRefCountirAnimationCurveLH�-SAnimCurveSh	DefaultD�3 ���KeyVerI��KeyTimel�
KeyValueFloatf����KeyAttrFlagsi!8KeyAttrDataFloatf

eKeyAttrRefCounti�AnimationCurveL�R�-SAnimCurveS�	DefaultD�?N��KeyVerI�	KeyTimel4
KeyValueFloatf�q��^KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti2AnimationCurveL��-SAnimCurveS(	DefaultD@=�R�@KeyVerI�iKeyTimel�
KeyValueFloatfꉕ¾KeyAttrFlagsi!�KeyAttrDataFloatf

%KeyAttrRefCounti�AnimationCurveLY�-SAnimCurveS�	DefaultD`c0@�KeyVerI��KeyTimel�
KeyValueFloatf��@KeyAttrFlagsi!XKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLX��-SAnimCurveS�	DefaultD�C&�?KeyVerI�)KeyTimelT
KeyValueFloatf2!?~KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiRAnimationCurveL���-SAnimCurveSH	DefaultD@([O�`KeyVerI��KeyTimel�
KeyValueFloatfB�z��KeyAttrFlagsi!KeyAttrDataFloatf

EKeyAttrRefCounti�	AnimationCurveL���-SAnimCurveS�	DefaultD�#��KeyVerI��KeyTimel	
KeyValueFloatfo��>	KeyAttrFlagsi!x	KeyAttrDataFloatf

�	KeyAttrRefCountiAnimationCurveLX��-SAnimCurveS
	DefaultD�C� 
KeyVerI�I
KeyTimelt

KeyValueFloatf����
KeyAttrFlagsi!�
KeyAttrDataFloatf

KeyAttrRefCountirAnimationCurveL�)�-SAnimCurveSh	DefaultDJ(M��KeyVerI��KeyTimel�
KeyValueFloatfPBi��KeyAttrFlagsi!8KeyAttrDataFloatf

eKeyAttrRefCounti�
AnimationCurveLH��-SAnimCurveS�	DefaultD�j%��KeyVerI�	
KeyTimel4

KeyValueFloatf�U+�^
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCounti2AnimationCurveLM�-SAnimCurveS(	DefaultD��$�@KeyVerI�iKeyTimel�
KeyValueFloatff�&��KeyAttrFlagsi!�KeyAttrDataFloatf

%KeyAttrRefCounti�AnimationCurveL8W�-SAnimCurveS�	DefaultD@�qS��KeyVerI��KeyTimel�
KeyValueFloatf��KeyAttrFlagsi!XKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL/�-SAnimCurveS�	DefaultD �!@KeyVerI�)KeyTimelT
KeyValueFloatfQ�@~KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiRAnimationCurveLX
�-SAnimCurveSH	DefaultD@�	@`KeyVerI��KeyTimel�
KeyValueFloatfr�M@�KeyAttrFlagsi!KeyAttrDataFloatf

EKeyAttrRefCounti�AnimationCurveL�o�-SAnimCurveS�	DefaultD����KeyVerI��KeyTimel
KeyValueFloatf�v��>KeyAttrFlagsi!xKeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL���-SAnimCurveS	DefaultD���@ KeyVerI�IKeyTimelt
KeyValueFloatf�-@�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountirAnimationCurveL�5�-SAnimCurveSh	DefaultD���*@�KeyVerI��KeyTimel�
KeyValueFloatf�VA�KeyAttrFlagsi!8KeyAttrDataFloatf

eKeyAttrRefCounti�AnimationCurveL'�-SAnimCurveS�	DefaultD��x@�KeyVerI�	KeyTimel4
KeyValueFloatf��@^KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti2AnimationCurveL(�-SAnimCurveS(	DefaultD���	@@KeyVerI�iKeyTimel�
KeyValueFloatf��L@�KeyAttrFlagsi!�KeyAttrDataFloatf

%KeyAttrRefCounti�AnimationCurveL�+�-SAnimCurveS�	DefaultD��/@�KeyVerI��KeyTimel�
KeyValueFloatf��xAKeyAttrFlagsi!XKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�	DefaultD��@KeyVerI�)KeyTimelT
KeyValueFloatfm0@~KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti,AnimationCurveLȮ�-SAnimCurveSH	DefaultDڋ!�`KeyVerI��%&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�i+�
KeyValueFloatf��x
щ;�p=�K^�-�(/*���p,�]�7�z���r�r$V�;%R䨷�Q9C:���j���̳T��c��Jkl��s;l$���B�|4"�A�NC(�ᮽ)*��(��5�ɱænG���}�lh�,C��-z}Y�!���qv�K�d�˅T(��*�Ǽ���[2�_���^AQ�;>��e7�>��Q�Y%Æ�ӯƝ�� ���s��Z߃CjOkMc[�9�gɆV���ᙟ�Ԩ
���O:>��f#�^�>�	R�ù"�S�͝�)n,�͎��&�j�Ɨ݂��R�'a��l�����z-���3�1/e3^-����~,��%�s�;�Wͤ�S7^��LQ��vc�S5R7A�����@:J�C��6����q;,�\���ޢXw<;������eŁ��B&�{��l	��F�ɷ��ep�;��0%��F�7���p�����:�����~���0ߕˍ���	��Z���5b��e�U�@�W���9�����4��sV�J�Y��H��{��ۚ=�����=N)}���2��)���q8�(=G��B��7^�
!�L�c��w��x�&��&[�9�18C�H���+Ң��6�{�� ��T9�3q/��"`������刋�J,:�%>��"��X��L;����1D��5x1�t���+grkӱe�l\��6�^�r�Uœ�O�:W�Fx�0��Z��
�ϵb�+cf��qF�c�=|	�FG���3й 6�]a�W���V��B������vb�
����e,�8�7ضrݚ!�Y-쿯A�@
گ��^(��:h�������L��]H��S>�0���?]3��>�2�
}7��tI���5(����f���
�����4A�`�J�ä�N�X���?l���'/�-e�t�$�p~A��<%�0=Qˮ�\��m�1�v��<��MDOӥ]�%�����՛�d3yWg
mN�x(�\�T���4�T�Cz�|x:�on
i�O	��/#�@����>AY���Μ^��݅>|8R����[�����J�!�z����K�8HD��v���E��Bש�.t!:U��,�v��4I�#7�W�>��kpV��'*��azHJ<c�ʞ��P�3��6�)��0l�֪!|�9�A[](W���?y*��������L�E̛�0+���;�?�FǬ4���G+�|�zC�Wa�K��|`G�r�o�l���/M�\U
ou'��bk�8�Zq���١n̪^L��F�&�(<��'gR���꡽l�H�k�('�ృ���dI��|��!\���Ǒ�����[�$�D|�K4�s�3�'�Irʂ�ңy�뜨<dL��Z���隻0q�	͸z�.i����e
@O2����l��dK^��,aX�/o�tൣ��׃w�5�A})�l\@�T'0.���Z�n�[�+KeyAttrFlagsi!�+KeyAttrDataFloatf

�+KeyAttrRefCounti�;AnimationCurveL�r�-SAnimCurveS],	DefaultD���2�u,KeyVerI��4&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�p:�
KeyValueFloatf��x
ԋ;��q)t�ӘF�M̤�r��A.I)�H�tR-eo6/Eqh�D�id.�Zy�1��W��h�qy:�I����U�v�����|�v�c��)���X0��~l�~@����n!�a��=��s��N��W�9Ŕ<�@�(��Fc�����R��p>���������(܂�^JĮux�A�>��^�WmbSE�P���o�`�
�~����$;��V]���/|��~hX��
��]�H�S;��;����nd�M������
�ag��Ry^G�V�i%��
j��,>��MSz�,�䪉6s�2e�
��&6���hEӳd�ξ��_3�>�8���xh�g�;�Pɢ�Ἷ@��*�l�	s���/U�A��"����M�&�'X�RŗQ7�q����q�߈�
B��~���h<�vϠ���Ki����
':��?��3[yuZ���,j�XH�s��_�ۊO.?ֆ���Z5�D��3��g����Q��
��k1X��i �C1��d{s	�˫q�kBǺ���%D�A�r
��Z��QC�&;����܌�~1�[V����<����̸[A��N<Nk��Ro�b����1�lo��s���ڱ��	HL��m��.������ǁ,Ă��ڱ�U��;����ٴ�+�%ڣ��
Q���c��V�^�p�����VL�;�y�i�|bE�d���>6�y

9C����f����\^�x��>�7��~�q��q.LL:1�S���XM����h���C�)ĩ��d�ejOT �-�@,!�C�h�?&�������P��<,��w����p&E�oby�%��2z���^�3�������ll�X%�~�9�����r��.���Y�e�GfΌt'�s��;�d����I�����y�8��+ߕH���c�������`�7ݶ"vTXҷy�Q)x��,��P����OF�8(�Yт����DZ�X���y!�q�����sE5+T+�
�	%in�'�w�2f��q^$7q�~FO|�4���<�v�ᡮE���c> g�<�9�)ԏ�	��9�m�沱	ޱX�)��\�������z�}��g!�6�iʜ���}k̚6k�c����ZqEh��#sȓ5�I||����yy;��k	�^r���3	��&~�jO�dB�-A�qCa��Vq�mB��Q8�o�x�>·i���E\1�Gc����7<����w�Wgk��֔Ͼ�ô��Ei��a�6�<���UC���i��ϧ~�0��Ԥ^H~ ,^�Ʊ,-���pmz6w�*������4�3�sNG�?�ȹ$~�>��׺ZԦ�ٛ��~:Թgw⍔�!�Xc��4�R�K�u���EL�3�hH�ic&�]�<ue`�rK��c�T���<������ikMe.��NI
/\����/f��:KeyAttrFlagsi!�:KeyAttrDataFloatf

;KeyAttrRefCounti�SJAnimationCurveLH��-SAnimCurveSd;	DefaultD�`�@|;KeyVerI��C&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��I�
KeyValueFloatf��x
ҍ?v�P�*�iJ+bGF�lSw�Oz���F�	��zX��&sBB����Dr�U���&R[4ѩD�WY6�j=m{�
o]�s��26E�4��(`��L6U��l�E����0߶��u�>[0�K|�*S|��vQP�@�g��K�w����orUf!7�oQ�Z3T�Ö
�!�h"�'�6��������[������3���=�nl.�
E�tĆD�(%����t�E��*r�O������ᑥOC?�N��b�e���ky@�	]? ��.ڽ΄.�N��}M�l�-QY�d�>�#vHؚ��e[=Z�� e}
�\a����
G0�cw�ԥ�sI���x6���'=|��.��)/Y��x�$��˿�0��:�"+1�=�o7aN�,�5�廎�lF���^N[�h��<)���N��C��%3 uK���K���1nI�@T�
��^���o!�m�������X��bny�6��4�B�Liu�!=+y�sl�xsx&�f䏴�p���E3���t~�{0U���x{f՟���),g-���c��,�������V�O2T; H��J�
��`��t���E����X�����ܽ��w�M.2c:�kD���4���[�)�iU��ϵ�+�!ȸץ�aA�lW���Bw��|�&�r����>���x���L�hv��X�r�U!����2��j��
TW��v���%
o�8b��5$�Tʋ�������7:wl1Uf	i��=�]b��Xt��K��#ϔ0��V�%Pw�"���6b��gپ���
~.f��Ǿ�Z[����j����:�2���B-M��%�X��"�V�Up{ �@h��6}�[���sЁ��i��q�3���ƚ��'�O�C�	�OK�}�#/��dG���9���Q=j�cJv��PCU��.%�I�	^N���L˵)rJ��$�o�ݛ�;�M�����c�{u�<���F���'L/앸���/|�C�Jۆ���'"Z�dK��s�q6,�G�I6�u0ջ�u�B_9괒��Y�2�eM�Ίu��ƯVJ6�+脝u�{RH�x��..���E2y��_p�����/�E�:���Z,��r�E�;o�8�!��9��;��"���܊w��1�� �2��:N����N�c?���S��2��������t���C!�mf���*�W�żC�S�"ͯ��ī����>7g�~���Pk%8����E���i�"����dlmJ��ڸ|\}C��Sv�h'T��C��7����H�����8��5{ �ǥy�q�?��^�uq+!�ߌ�q��r���ˏ�g�odzm�r��C�����f�M�
�|�Gα�۟�-o*[�N839a��1{5�|��j����E����l$��T$�_^�0M��� �JB�x�<��G1�=S`�@.���h�/k:S�c*��	~�l�}�p��Jέ"�>�]���,�=�ڕ�����U�IKeyAttrFlagsi!JKeyAttrDataFloatf

FJKeyAttrRefCounti�QYAnimationCurveL���-SAnimCurveS�J	DefaultD�5$@�JKeyVerI��R&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��X�
KeyValueFloatf��x
Ӎ;��q��m%q������G�A��QyKy�D'E1��dƑ��P^RO/�Y����]�2i��s�r��ݚ<��uS�^Hw���sVf-�������bu�\T�؈��v".�ADr�g)����0�Z&Z��E�}���'��䈎�&18qW,9oJR�6�0���mńn�R��1ջ��1��h��p��+Ԋ���������d�l_�,�~Q�W��4�,#��G�^iH%<R�Hr����4?n�wc�}s�C^�ar׀�!Vފr9���tBG��~:��\Cꏂ��K	p&쩂Y	*Z��ȼmB��I�Q~_�����1�!_KS��ˋ�1��(J��RlѹۉѬG��A���,�z���Cr�,%d[΢�ʸp81��ZOj\2q�Fe��2�6loD�PAŇ{��eS���Lt�-E"qb���5z�s�]��	��I	���l����D��m5ƭ%4>�I�X4�Y�x��r��j�g��SP��V�z���3��툐|(�\��r3mi������R�^��W�ߺ�oƞ[f�&I��jÜ�NL�[P��k���_L��'*gr�l�����R�yx������,�
�v��b<��5�6�OM0l���Q���R<BͱO4�ȍ)�r��$�?�z���ո[`��|�[�?I2O�Z<�P���6/F�i\g��o����~�]�c��gG�M6TXB�h%��V`���M�dFzC��n����۳�3�FnD�*ѕJQU͠`jR���cA���9�6T���!���x����-��oKca`^��	t�f�r~pX�&+%'�M��Dv_�	���\��e�����Zw505�������D���P{;�R��b>�ɸ~߂cs��|+�c�K1)�;p$���t�T2-���
z��;9�ű��
yҠ�ҏ5w�0�Y���i\}����6&"l0���RKd��85�RRRɡZ����*��+�;���~g�ն��J�o7�A�1WMh�pD����=-�z&�P��VY
i��L(#�[��;��:2��A���<�t�W&�7�u�)���q�~_		z:Ҟ7`<V�TRJ~@*=B��ƠL��
~��I�r<�q�N��w1��/	|�����3=�KL3F�
�x��=-�穫x�.g8WJ�7�w���F��Gj�:�z��Hb����r���r����D�� �F16�XU���\\.����}�%�z��i8[���E�}�	�>�%s^�'�����&�����.N�w��_Qe�a�t&�����l�=6"
�������ßEQj���,��k����~XN�����v��~�e�M:U��R̢9{(���}@�On$_6�p긂�=R�}��-e&�B����K#�mKZyM�zK��O'�D��m ��Zڔ�h�VК��ё�nt<�XKeyAttrFlagsi!YKeyAttrDataFloatf

DYKeyAttrRefCounti�~hAnimationCurveLP�-SAnimCurveS�Y	DefaultD`|���YKeyVerI��a&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��g�
KeyValueFloatf��x
�{ Շp$DB����E��ZmI6mn�ܴލ^�M�脕8u�5�lT+�]�)�����vC�r�X�VzH��j��ק���a�Xv~M�hP�~�?�8F��l�a�*-�aJ��ѯ�����M`�U36Zs��\�yG�挏x�g7n^d��>���R'V/���"w{�Χ:�2L��L���b�2%RN��6و	�w[������i:�Nb��p~�����J��g�1������i�#ۜ�=��H]=F�Ka\��%g��L�a��(R���p	bN6#I�ٿ�S�C;���E�;t�[��
�����V�g���`�X���V|��P�$��P駀�psf,WXp��o����d-
8�2�2�E�{Q*�XH�6iǿ�x2/;�/�L���,<�r|Q��W�#=ގ]n�<"��Ј;�W91y�8Dcbf6��^�������7�(�0�ݲ;W
<��IG�t��&�}ȍ�!|���\�ຐP'��M1���}8�=�o1�3�@�0}����/E.�{g�"v?�
��O0�9��_�K��YtLJ5�-���7f��Uz4�}���'�:T��_=J��*��nB�#��ѐ���X��e�=�u��.S���
ڊaW6.���H�aZ&��R5�<�2pr�w>����6ĞM�콜�
V�ys8�DRzM2`Q�7�3)}2��3��s�6�Cma�|�����	��H��6ݗH�f���N���ܓ���M��nys��R
Rs�hA��qX�E�k�#��;2�V�}���/_�`qn1J��A�@•��<����p��/���f
�3�5�7^���w��d:��Zs�^�X�˷���S���I=W�*p�Ve�H�����\+�̟żhJ§s��V��pB��P�d�Ȼ<sj��}
j�X�l�O98�s�<�Y;�e`����k���@�O�r���n��]�O��eQ��K!՜�y
�����i=�}��6�F�1l�{��
9H���E*x��q	3j�o�X��:��w!�,
e��8eSח�<��̳�쎋��:���.d�ڛ��X��)Ԕ�3��$�h���Z8w�߾e��jJ��mCZ�(*�D<!��޿-����/�J�����٢~�Pe��݃�����]C��s��_�T�w�Ɩჾ�Y��AG�Xn�h�Y1:�*�ǔ�L��{�eG���
�/��^����غ�ka���N�p��+�F�rK.��}����-���ЯrB�K�{n��m��9��8U����~~E3S/�N�Zv]�X��I�Q]�E�Z>{Bhx��[2��t��VG(!��b?�Y:k��ϔŢ܈�_31F_��Xk���2�J���q4K=a�!L����
��1��l�k�l�ꠌ���F�`>\�AU^�u���m�C�3%>8�ɐL>�-�z����K�1�EH�IǟB5Q�
hKeyAttrFlagsi!DhKeyAttrDataFloatf

qhKeyAttrRefCounti��wAnimationCurveL���-SAnimCurveS�h	DefaultD����hKeyVerI�&q&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�w�
KeyValueFloatf��x
��?և���H�CnmnY*�$$ً�	OLefի��\�/"F�\�#ݔ[�=�\�����)+q*��1%�ګ�^Z��������{��!_������+1�ު`�����|�1�9i��?����9C��7"�֛�^�q�����g�Kn'��y&:���HG
��?���1�Tc�=5���'a+qH�!�3F���+3eh~9��qo�w��wQ/�
(60gm])~{���]x��3�~c �S�`fsy	47�S����
���B�V��lx�v���>.��R��H�/�ԕcqG8X�	Ǫ�8R��#au��"���&�c.k	�wZQ����6�,^���U�?݂�$/�����u�T�)�����x�G�„e���KK
1�fC�����c�41Aߘ;���k��z_ds�Γ[R�"%�C;��x�?��̥S��C�;Eb7DI"n��mB:m��bT����?��٘�9��Ȫo@�Vb�i1�d�E)2���<�[V��DO�g��T�|�]7W��9'�[�+�1���/Q��	>{%s/�t~-|UN��߅��>ɷ�	Q�coN�S$;��ʝN�}�O�֦=\�iF�%�jf⫨f\P
8\y�^ס��P{�bW�p}��?�`�����n>�{FN���FF��1@Q@�-�5�����r*ǰ[m���c�� �B��l5{���]8s0��ϱ�V��ۙ;`@ϡ��Z�#l��p?,@ؘ��4#TKD��|�\�r�5��֥��!Mg�y�?�Ο|F��YK�
7F(���X
��f���<�LF[�|`ó/m�1h�@�:�$?Ľ�a�/_�>�\�]��{���[�<?���L*U7��}�i�c�C���T<m-C�s,n^E�i�e���'G^l7t�l�re|�����d�
guj�=3�Z�*���ZA�Yp�H��i���\��HJ�G��y�f7!��5E̥�m)N�se\d[�!�t�[��6�_L���V���w[3�/���M2俭�]��3���)о+��.\����<ީdp�]�7q�.�l ���6��S�U��}�ƹC����#�a����Hw�p��и����r.�9D�p/���R�m��A;7K?�U�*�d�6%z�T	��È!�Nq�H�o5v�ز��q�X�[
�t:h�+�)чz"*�`[�6l�CYF?�D�w�߶"C�����ɚ�*N��Z	?+��j7}�=���<捆�Ւ���Ұ�Bi�_il�i�?{4&6C��l|h�s�[��yͯ�ڱ��~S@����H�g��7<��1u�ވ�e�6c�|lDx�.��&pԺ�m7�A��)	̵���KB� ��-
��u0�v^�_�'_�h�7���V��.a=�p�X��l$풤?o�.\,H��LH���%3/����sw��}�I&�ʪ�d�,>_�"Y=/����G��J��U�!���*�?ӾE�@wKeyAttrFlagsi!zwKeyAttrDataFloatf

�wKeyAttrRefCounti��AnimationCurveL���-SAnimCurveS
x	DefaultD�B�t?"xKeyVerI�\�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�F��
KeyValueFloatf��x
��;�iǑq##*�4���J��7*GY䊇zTH%��ed;�X�J*�(�T�<��[���7t��F�!�D)M:Hۿ�9���㔦��a�Y�y�X�ۧXG�"�Ēe?tW��WJY��2�p�*���Tv�C[T2�G�7��W6�o4D6���g��hV����q��K���LoJ��lem�k҂Lh�c�m&BGZ��LX䋠hB�n��g��7؊nD�0'�G�
��K?�]�l���Q�MF2'���~QCu�4|W���F=w�Ǒ����3���JR�O��</�E�|�(ʼ���m-�ظn=v��ƨB���@��]�rIV���ۦ��K:�0�^G���X�T4�0�3��X�%A�fX��J��q�7��a�P�2�"��}���%0���Ca'���C���}��`n��T"f�'³�da���ZMV	r6H�jEV-��Ԫ�Czz�);������;F�U�sin_��;p"�0F�[Q�k��s:�ኰ���
�!UT��C�����T�Y�\h3��1&�%�U�A:
Q��	1���:L�"�]JĦ_+�V���i�]3y�j�F)��):
o��do�0qu
@<���98ԗ���%ȝJ�=�/�-�@�%.�{��J�5���n�KÏO��Sg#L�u�ۅV�4�G�}1���B�7q]1�mu�]�>f�� �r���]=:�G'<����a8K2��	/�خ"�Q�2��o8����=瀶d|܇��s��%���l����+S��<�N�Fq�|���Ad��i��w�+����/�FQhݸ%]!����ef�xy`�nU:pT�jp�����SKB3ל8�mc��Q�+s<ɭ�2r~�r�w�cJ�2OH]�|��3��K5j|�)߈GwiϦ����\2M��yڎq{_�t�H�@.��O"����d��R���a|�V���J4t��\�A����`�K�e
i.�$f�b�Nx��6�:b�H[2�����V9�`����/!LѠ���h�.�7���qଘ��,�/��6�8��W�ĢK��`�Fpq$���U��T��K�h���>Z��j�`�R�(;kT>���E8�X"��
W8~h�ۋ��b|�vB�ZmDt
�!wD��&�w�G?\�S!á���A��$�,���Fp�V�D��"�miP[��K�p���/�DFò������l�2��shm�g�)j��bw��$��V��:ڶ�P���hS(�s�,��d�so��G�]v�Ъ|,�!��>�~�F��Ad�?�;as�9'f��c�&b�f$$C���ގ05��C��j�Y$�IA����.�^f��Ϣ�y�D����nef��9����^[$�wAa��W���Q��<m2V��bDM�	��$F��t�1WTU���eZH�"���B\n1B���܌L����D#�Q-E_�'��T���o�9T�K�?�I-p�KeyAttrFlagsi!��KeyAttrDataFloatf

׆KeyAttrRefCounti�$�AnimationCurveL���-SAnimCurveS:�	DefaultD�K��R�KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x�	X�y�4�4ѱ�UR��CE���G�ʒ&+7i��x�GB���$���R�.%R����[ѱ[��H�e)�\mx�}Wf�@l&ı�������>�b�H7f��H���I�\Ľlnr{?g>l�_�v���'�]_{���|��M���R�'�wV@���p��'s���ϸ��Un��.N�7��MR�Y��p�V'��q�����X�0[���թ�k,A�*��18ؚ�V
ʘ2;��|ĝ�F��J��Sܪ��bl�����
#�F�j>�~���?���>\?T�y����d�:=�T�A��r��E|v>,G�]�B�N�\���M��8�gA�ƴ��(z��&u䫑�S�r��{B=��?F'Z�f)��'a��[L�*]ׅ�:Q(���G��Q\�<�'{Ѝ�����(�k�9��P�^�t��%'#��[Ͻ��`lO-R�p���(��E�#M�5��$-��;����������)�e&��"W,t�-��Z���>l�`+��²���eAV3���鯝@�A�������\Ȕ2O�37R1�uJb�I0�$���������t)Ff�%�Hh�&͐ʡ^z�iE��̃֞��s�&V%�s�3�@���ݘ���c�L��y�\�����AC>����5��R�ȩD�VG�hT/"�G\�)m�@ʁ�	i->��������&��z�
���5>Lc
]ǰI���P����<���C�N����I��T������Jχި�݉w�p��
����ﻇ���	��۰�����F7�(] Z
��]�W1)ka~f>p^_��Qd$G��n�[�CR��
�k�[3���mӋ��5ք�j�i3�d�R��1�6=��)
�ۭMe�f�iۍ�Y'���[�եb��;���M;�'Rא.��
I��#�����Y� �h����߻;���T�֏��]W�r���</`���B�^�4)�H���h$W���z0�	�~�?uw�w	�ˏ�|�74�<E�������
�\_�]�G+��8h<m�5�3��xgY�4�J���"T۸:�3L٭E�cf�"ӂ�u��"!_96�4�u�d�w�8k�L!$�n
:�K�[�e��]��hA�/}��|��3	��;��E��zsn�C��h1=�v#U���M�xC�.�'V�Ni��ۖ�Gg���Ŝ�b�ڗH��=�ŏp�%�],�Ն�b}�P�f@҂�'������P0DX����ϫ�����5o�U:n�G�.u7�P�~s��gB�f�4�폴���A��~�Z�:�؝Ŷ�Yp^[���K��Ɣ��,�8�����۹�n+��y3iN��Wa��y�����ON�qm;g_��'$)���A@�>�$ٓ0Ւ��i��:UM�Eb��g_i�^A�"��^����˗�0�
��3��^8W��� O�r)��p�j}�;7�^VK�&k�>I릧�u=��J/��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti���AnimationCurveLh��-SAnimCurveSz�	DefaultD����?��KeyVerI�̞&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r���
KeyValueFloatf��x
�{<�pq��kZ�%�m�!�M��<��p�ϖ��t��$�.$M����EJ�%��Mٲ���U���*�%rI:��jl������Fံ��В!�l�(Dt
����;�����R�n�X��ʏ=��]�`��	N�~��0Z����9�9�Gh�5�R��;jB���������f9���u�RXx�
�[�c�t/4_�SBr��注�(���	�9��#������k�JiU5$S��(��ŀv[�Ra�.�5��������J+�1i��o0��#s�j�#��.��A�XkewD��|g	,>T]1|���mػ݉��cR�w�����������8��	�O��*Y�8�C1�IR�O{͗��Zib�h%�����^7�n(�R��x�L��[�l����x/�G;a��<p��Cb�iٷ���q/Y�$S���CG}������I�d���k���T1;!��t������m=����ȼ��
��WB^|(Y��և�bDE&%
>��@#>#�`��^Z�UO8���Fa�iL[#G_q>�N'����
,���`�m���*�ߧ'W|Y�J�ܦl\����)q�`��
���p� ��h��"��d?5���됼!ҝ� �4[8Ub!\NЃ��	�a�}�H̘mJ�z�,[��W�w'��`��TtWAd�F���u���],���R�N]���
��9���|q��_u�7��Q1�;���=Xh1�M��/����R蘽��݉��:������`exP�4�I��,]��gB���)BIc.�4��</�
c�X����2S~�L>�%���y0,�u
�Ж�a<l@q��P�M=��q����::[�����et�������6f���	��h}.����ԤN�?�Q�6g�����~1/~#(�ރ|�7����9>jtS��O�T���k�&L�X�w��\O�Y�:1�ܯ�7/B�`����BW����Gp��T���BEZ���Q}�(
���q���s���Q����qN<_�q�yқ�x�/�0��.O�rz`�p
?��+���o���*-����;�­.j�_A���Sbl�p��Ix�"��E�%��i���	��f����4	��d i���}������|
�0�]���s�F�\�_���f��{�a\Qj����`��L�e#a���|�p�����-��l�wE����y�"�gU*9?�:�[�r�M���F-����}c��P�V�{†x5�+^���C�n�mw~M�z����e��fUoޕBBZ k<6Q���J�7�w�ɶ�?�k?��c�<�·��n�5��9v�?`��������;���M
n�=�'�b���|ʻ��s���a�\���2/��}���b�'�h]�q7qs^-IB��҅%�e�F�]��ӻ��g��4�\�_�]9�{��6��M�G�^R�Q
Jz���[���>���Z�e�=��Fʋ���+�'�p���"�]��l�s�a.���;�KeyAttrFlagsi!I�KeyAttrDataFloatf

v�KeyAttrRefCounti���AnimationCurveLh'�-SAnimCurveS٥	DefaultD`7I���KeyVerI��KeyTimel�x�qX�%e�QXRV�Qo֫�
9�	e�պ:�j�k����Mq�u�XN��hy��W�g��-޲��������>�c�;0a�û�6t���%.‚�^�a���Ꮄj���R�–7��������ק�D�3�%X�j�/����ә6�y}'��=�����G�ƭ.%X����ޢZĤ
��Tbi��;�z�d���x�K�lqq��	~_b]�Հ����h���r�]�o,j<����a̓�b᪨�ch۽�UXk��w�s��¸KXu{��X�ӑ�-�'oa��Dͻ�ً͂n3V�Ԇ����2T��K��|����4����y�ò�=hv�*6\�9~-
)نY�V��z���DZr��>��x�uu��I�x�wf\xn�Zn�JOZT���v���lZs�o3�64c��l�ɴ��߉U�c�Ԗ�)��T�7���[N�,�춓�wB��'Ư���<�1ף�9�6��I�rV�s��yO��czs����f�ɂ�ӆ�!���9��J��9�ީ�������N�|h�>c3��̠�q�X���[X����K�?�܃5y�f,�sBgҶ]�G��m�k,��X�G[�j�*k���7�ӖmyW��/b�,���؆ͯn����?.͵�؇M��ϰ��!?��T��b�m�^H�-�k�!��q6-}���66c���IshIB��4g�Ǻu����������;ֶEѢ�1'����[�Y�&
��m�:l��g�h�]�,X�Ղ���xͣU1ɹ����,�
�O+oԕb^��%6��D�ЊEC�1�Z�{lZX�6��7E5`N�Ә�ƫF)����bvc'�6�x���K��5�2d���xK�|^cf}w����Vc�O��!���4b���q��������;XX��[H�8�
��*y��b�����1��j��������P��'�ѼI�$l>Vӄi�>��Gw`��
ˏ4h�{�l,���en�Q4��E�
���biI�(�f9��a���Q�i�c�V�,�o�:�k	-.�څ�δc�䠥��_)����`��.*���Nc�ې�X�=��6�5�`��V٢���ݩ[��ӗ��̲ݘ�:���=BV�
kǷ��V�
�zcbiy�O5����76n�&��e��F��<�s��l K7]1bVW��U�>!R�%f�S�\ߺ ��=.���c�`�#�X�]���*F������ͻ	WZ&~A���da��6,0���1����V���D�Ӗ|5VF
b��%n-m^T�#V\����F�nŦ���X^>e=������0v;�5v���Ъ��p)�K��G%�,]�)���cI�,~͜�úCniq@sfhnb���M���nl��Ӂ5�e�i���[l��x���:�&тӕg��+�o���I�L�'�\ƖZ��VN��ļ�`#6{�n�G�b��.l:� ���;|�9�[���M�b+-+���]ƎH�
%�X�|�g�:�0�KZ�85K�,�0��7������O���ۿ0��~l8�E�9��n��IiM��,|��N۲���z0�:�p��m���`����?7��d�b��n���J�I��ɧ�"�ߎ�/{�|M�R�/b�2�m4'94
-C7�ls��4���|l�݁�]N�e4kÝ�Xo.�Œ���Y4���,��wc�J���E�e�5��vҢ��lo��ƚ���ٴ���Bl[>���W�rh�����z+���8��E�o��ǖ(�C.�4�&b�gc��k��"�s��aS�Tn-�[�1g����ؘ�0����>��?�`üK�v�R]��
w�C�뇷`��5���x�^Z�,���1c��9��|��f����j�����<�5UC�6m��>��_����X59��C�іI�<��h~�y
���ч�b�s/��,�O��k���hsFO����?a���c���ʤlp�qK��(�Y#�U��E�O�ā�����r��t����/?H3�#�cm��C)-zߺ	�s�z�y;�-�+ö��_�z��Ye�௄b��6l
��
KeyValueFloatf��x
�y<�y�B�%JYW�B[F���%:I��4�J%�bvIȑ�VJ�D3*�rF���S��(G�R�lR������j�	�îq!���ƽ�X�vZ����-L���ܦBy�d��͠@Y曤��:8d,��ᥨ��U9��!٤���Q+�4���xxy_�B����9LE��Uc{|��˩�[�6��5����2�}����;���-K���oN�R�ݤ{Z����G�VB��hM�刊N��XtL�����<펑U��R���C|�]���9>�:ѓ�X)����*�9T�2y�\�p=s��F����vL}���,0���sKCH��CZl��.����^A�^��P�W���CI\)�Q��BS}Xy�]6#x6������R�ٞ�8׵#�!]j����ȼ��j��'����ȸژ:e��mџ��(~gjj�`:#=�e����)��"J�*Kw�?#j�Շ���#*��J"�͔�s�O5�T?������bn�2^�
Lsw!����&��-:
Q�x�L�_+��ۨ��)e�{�M�:D�2_�P}�`�`;�u�9$�נ�`���*�����1g\{?��7Rz�F!�t?g�;���X$U��íZX�EA�|<D'3�����<�����QA�)8?�C��.�5(=ޛ.�_����J/���4�6����z���Δ2x�k�i�x�%æ��B�ri�b0>!�v]h_($�
Q4�Dˏ�P���Z^dGUc/-���������-��Z#!���q��uȄt�EPk.Gz���J���L����>�Z�X���s"��Tt*AQr1��0z]^_=��ocбr�y����xe��B����J,I�ʐT9���PF��jMJ��m�&:2�[u�a�e(U�B�T!��E�o�^��b���"#y�Wi�b"^r9�2��F�-����K c�
]w8���a�\����
��~0l'��}ݩrkE�]z�ډ��8�Y��PR�m���Z����|h9��a��P�-�UO"�D���N���"��m�L���Vs��Æ#0�"rGZ�נՇ�,O�[c��Ӎ�G��k�K�ֳԤ~��4��]��I��7V`%�:.x���q0=>�v����[:��ʙI����	��+6�O�!��Sh�Y���YY�Q������XQ�"��wZ�M�
ϳ�H
;��Y�x��~9G����e�"tE-6�5�ÍQX;3��$nQ��������[=��{�[7+�+�9��'�f��>֡$��c��a�=��3�6����`����I�i�Q�r�>�*�6<��h��2��r%ar5OQ��ϝ���r�[���	�#TQYZ�e�z�-�T�_
�D�=���v+�}����i�n	�m �t;*�7�Bksdm��p6>�GA�;�/ִB]��A$��Ȉ��uc\�9��d�KeyAttrFlagsi!U�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL��-SAnimCurveS�	DefaultD ׯ���KeyVerI�7�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�I��
KeyValueFloatf��x
ԏ?�����J�#�_�I~^�n
�s��Gu�6u��%ѯ�vwI"
��F�h�".*Q���~�~]�%���XݦЏ�j�j��G<U������1���,}��4�*���U���G=��;Ŀzt�g:��z%�Kb7�
��s���6Яf��vs��x]���0�FHqw�{������}�=���L<�_t8ESsg6�Vv��+ܖD�t7��Bp��b��A��;d{C�!��A}į/��,�a]%L��JH5��%����Y�Y@�	[bQ���[�����1�)�QK(<��z��r����z��ϋ��I�:��^�{v�7�\ u�.6�uE�m?��=����ˆVxu���J���~b�Q��s�0�?�����`�s~{G�Mi�]���V��&���<n�s�{��X3�������j����b��.���l��c��mdT.���za4m��?��k,���;�I�����g����c����ᗻz��尐�tX0��`�?�!=?�$��� 	%o���r��S`��\}`��nk,�5��a��i�(^�`l��ױEe��51���P��fzb����]y�S0����`�Y�(�'��M�
�$����Sm�(O? H5? A��N}e�4)�o����
����T<XJ_��ǘ�$�T&�ҬO��r���[
_O�^(��L��ݰaʋ�]�Y/X����v�����jI��O��@�\�	;yEzO2�����y�PIG�5d$�Nw����m�� ��uT��-���I2j^NU�w��3_�����#��D`���7��+hlu¹���fŇ�Se�:�s&�`mG���T��A�%��?�dn��
hSf���G#qg�Þ�8n��IH}���,C�b�J���B٥��BGN��/�^�/�7��8�ԨN:ۑ���p��Ñ4��ԑ��iJ�0�_�F�ز��B��[�������$
��C�o$'�1}9m����͐��T��L	}e�W�r�;w�$;�2XR��E0�P�9��������V��6i.����'d��C�����n��n9G�O�b�8$3M;B���
�H��!.�m��E���X5��C���'�Q������ﯦr��l�<Uȶ��0OE#_��
ʼ���8ܙ��8��{!���Y�e���Q�H��Ԫ��[x�Z�+�Ltҷ�3<��x��nG������_xcͮ-�S���<���:�r�N���T����R��I������rX2L����Zm�:b(<k['�s���W)��i����Q>�\�y�����^�.�W�'���Nd��,�L��*��?�&h��fAgukL�x��1-�$S�N�w�
3�pB�^Ϫ�m�J�<�O��~�7��
^Jm)���i .e�һ�N�󭀱�!��"�JV���Q���*=�]��Z1�~�%���ʃ�/�@��)Y=K��+��P���o�>��q�������"s�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�	�AnimationCurveL���-SAnimCurveS=�	DefaultD �q�>U�KeyVerI�n�KeyTimel��x�\�%e���QXRV�QO֣��GFNs�BY�j]��
5�5�,'�CS\{\�,��r�y'&��K��+�xʮ:�����yۆ���`0��b,x����x�H��+0?;�/ly��HZ��O�y}��N�93G�����=�iӟ�w`yZ���Y:{m��R�e/���dU�6<_S��I��0�ٓ�.�~�z,y��2�f&�}�u�V���v���ɱvMȿ���]��.j>�5��������m�FVau���=�΍�
�.a��	n�h~LG�������}X4�g6��X�R:��Fe��闠�`�ehNsc
6����eW"6���0�l�|s�DZR��.����<7�I���ý�T������x�wf\xn�Zn�JOZT���v���lZs�o3�6\Ŷ�9��i5���>��֩-�Shթ�o0�+���t��춓�wB��'ů���<�1׽�9�6��I�rV�s��yO��c{󰬬�f�ʂ�ӆ!���9��J�qh�S�,��3���к��,f���A3��2���	��hwǗ�8�k��Xh�Τm;��`����X���̏��`U��'̷5n�-[󛰲/b�,���؊ͯn����R?.͵�؋Minϰ��!?��V��b�%{��ٖ�ؐT�8��>KیY��b��>�9�$�a;f�s�c�:~�\Z���~̈o�kۋ#�h�ꘓ����-֬j��6U���3y���g*,�j���g��Ѫ��<̿��[�ͧ�7�b^��%6��,
�QC�1�Z�{lZX�6��7G7`N�����+F)����bvc'�6�����K��5�2d���xK�|^cf}w����Vc��O��!���4b�����s�_c�o�,�f�-�m�VVW�>łi���z��Vy����ʊ�H��N���ގQ4�Ò���j���=��3�{4p;6��۰�HC�������2��X�:M�����Y�_,-�-�YΣ�~_ۨŴı|fǷ`��u�ČOgڱvwJ�RZ��� ����`��.:���Nc�ې�X�3��6�5�p��V٢���ͩ[��ӗ�ʬ�]��:��3�CV�
kǷ��^�
�zcbiy�O5����76&kV�2Kf#fo�9mx6�������Օ?s�O�T`���3׷.��u�K�����7���-VDiW���E���i���$�i�n�•�I_ж�5�X�<�
��khkL�>���`��%���_���Ã�gh�[K��J~Ċk1���܈�[����:���OYOs��;�1�ݎe�]s�4;��6\J���y��	4K�{
���XR/��@3����FZp53��7����M���.l��Ӂ5�e�i���[l�r���:�&тӕg��+�o���I�L�'�\ƖZ��Vzdea^E���}�i�Ѧ"�_ЅMG"��r7��0�pk?6�*Wl�ec�l�q#RiCi{"�:���'L���;N�ƒb�=�t8�M�uE����S�3��/L��N`QA� ���qRZ�7|ߵ8gж�������GO�����r�j[�C��I[����uW7�}U%Ȣ�֔SX��o�ܗ�k��M������V�������X���m4���lش�K����hֆ;���\֋%�EK�if��Y�����G���4㋤�Xk�a�Eq=��ަ��5+�|sh��Eض|�	V��ri�����z+���8��I�o��ǖh�C�4�&b�g�~��k��"�s�&�æ��|Z���`΂sϱ�1}a-�}����y�V������'c��5���d�Z�,���bƬ�s
)��r%�\ۍ��lA��y�=j���mږ5
Z}��"x����V֧a������VL[<��XYq�1�M,�WB��.:��{1Wug�>��vX��EØ3f�x?m<����|?���L�����tόR�5�_�X_��KxaJ��,ǺOM}X��`��1ykҢ����=O�ǚw����q2ll����UF�J(����g�k��
KeyValueFloatf��x�
<�yp�X[y�y�R#r�.G�����ٴ��<��ݥ���˵{a{���vJ�-�Ԋ9�!�����c8yX
�ˎm��JZ���[>��V���k�Z.�������N"Uzr}*3.����"7����\��{Zm~�]R��k\��s�VJ[��L�@�ؐ�V�=�)�q@����������d��r7���4�E����|��]%��Z�G�k
��Lksr�&��/k��>��[��8OI��V�-�tґ��*�G��k�o���MѺ��I'����Ī�>^�F�#�c"��y��kOR�����ɇ��ב��$�,c���!bM��D4@ej)��}r�i���^�	�x�5���n��0������/jhK��y�B��2�Lc�LOV�C��c���)�}�^�ђl���� eOE�Y����=xŻ��ә�cI�[r:˙�^�4�F|d��,O�7Z�
"ak���q�4,q
�eˡʷg���Xl�
�ZoE�	���O�~�;��X���)h�\�����Q��ڼ���,��e�F��V5���؛�V�a��҇�r��]\�P���%��h$uS�m�i��6�<TCi�?�n�
�/,֘�˲\���υ�&x60kĴ�Ȉԓ�yC|�2�v�5��)0�|�����.��8\��X�<�,ޅ
�{�i��ߢIf��_a��F���)޸��"e�\}��\�����ݐ|(��
ξf(�|�|�Q:�`�[�Y�C�r�+�|��O�SB�^Ɩz�#��7�^rT�fG�+=1wI�A�{�~�)x�\���E"k���V�֘a]��ِ�S��.���p
�\~!��Us��J���|�s9
�]q�@����7Ɓp�kY��۴2��W����ȿۿA=�7���o�-��NԹ��K͆��N���*Y�w�d�ujH49L��$N4���������s��e�0�p������5$�?�f���~�z�w���	�����$S=M����g:�|�*Z�N���o�b�u�B�C���Y�$��e��l�	��/���ю�<��|-{���I�	���O��/�Fn�B�������<>��2$}����s�쟂���;AvR"�\��rp��mA+�[��O�x5�P/i���)~ǞE�nd�Y:�����!�+�P¨oU��t8���0G\��:�j���?�8ДM&
���<<y�4�:&�H�V�m�F���I��>��|���֩
NQT�n�DDf���$U�+B����S��}�ևkg�����B��Da��Oݗ/BQ��z�m#$q^���b���������ito�#�1B��l�����~.W�ɿD1����9S����sQ�%O6��g���s�7����s��y��R��&�,n��+��*�
��֊��X<5���d�:9s+~�1��K��i/}�4��~��&�j[�@M
�pF�|>rc{9]���9�Qp�>�v=�ߵo�:�*:���"�o��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�C�AnimationCurveL80�-SAnimCurveS_�	DefaultD`2�?w�KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x
�<�w�~Q�#?�SK(r�h\>�S��,JX�m��WFJ��Z�*�ef%���q����_����Z��!!��M�����3��	�o�E�����aV�p��ke-��X�k>�~4����g�*1Sn�/Y:m��br��rϜ���(8���XM�e��|�;��-�N�ڷ����K���1�q'*2���y�?�>�6ۮ�OY�uE�v�G�Q~rY+O�E����M*Q(�?-4J֒�,
�48f��c�8�S�Go�����a~�J<�)���5s�b���jQ!�\���XV뻐oU�wB�uuCA�6,<���8\���yR�/1�G���g�*���,ZNW��F�#����	����B�_9m~,�p~��p��qv&CW.���8a'�n�?�Z��Z{��]�����B��`��Pʟ8������=��C-E�"qu����!�b�&!6m)*WY`c�!ds'@l|�.o:H.
'�^Gxq%u�3��Y@y������4O�E�qA.G"�B`Qf���'B�i�������}�^B�5DŽ��<y�N/����%�_�@'J�8L��o�GaL$�S"���E���E�y@�3�RυQ�oѪW��nō���t6C�u����r�AǼ�b��Q�	|�]���z��3g�S��^���4�|��SH�ق.u󃟴񿼈��lǚ���d��R����I�y�|���r���<yF�
!��+e5�����\g|�/H5������l�O�`��Ǥ-0F��-���j���
c�H���y�\{n�}3�ޚ��+?Q�
.{�1�`��I�J��,������;��(W�3Q��8�Ր[��h�ob,����,����(��S�M�#
#������Z���W䱻={��òpL��"�e;�hv��bwiI�y�R2�s�n���k��7bz��y)s�#T��ӓ)X��&_	[Q4:*��]�	:�
P��}���>������y4���5�+y�dV>S�U��B5�H�=S�cG,6�Ǥtl���'���I�a
IL�eNR��V�rK�A��L���Ly��_$jP��cJNb��ZU��1(Ĉ,��a�Q+�j댊pܹ�E�{^>��V������4��oͤk��R����pL�*��Ē/Ѵt5�n�ťL�������l��F�;��(�|5I(��8�	3�ݣ[�Uzm��`������N"�"���!]�,�a���N�R�J�o�B��z.��p'�ɖ�>u�+��x�B��0�#�f�~
:*�!l sp/�ʶ:,�9�_]�@�]�eQߑT�~[�oZa���T"���/ʂ�j-�X٢z�)m�n���I��*3�J���:��9C��hh�Q��˿�T���Tc[�>|�b۠r��5"�+I^<�O�ٞ�b/҉K��ab��n��v]�w�D��J�C�Q-�����=��N4^��KeyAttrFlagsi!	�KeyAttrDataFloatf

6�KeyAttrRefCounti���AnimationCurveL{�-SAnimCurveS��	DefaultD@Ce$���KeyVerI���&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r����
KeyValueFloatf��x�<�gp4�2�v̥�v"skDE[���$�'},b/K눎J2��PJ�k4r�.
�c�/������I(�l�4b�:�����ڻ:�_���y<h�m�ī4������'fsws;��*���y��F��H��k'X�f�Uo�bn�62P�bϰ��*�X�V+��$���-��v3�>���"!��i�b"����O�o�QpM�>��䧽���2����ּYk����{���5R�9�D\A�f��h���a7%�F#�(����y�}2�6GY�.���mg����H���v��1<z�AM���-ݤp�����ȴ��q퇱t��]��8���(��(knB�?ِ/���NR>=���re�9ZY��B<�4�OF<�P�!
�@	mç�`X]
�B��!�s	v�A��E&�:�{c+�׵"o���sN�]b
��;P�oCuΡ/�Q��Τ,4z����.d�Jfʏ�,��Dz��=�,?z/`�2�$�f�[��$�?"q�^�>���C����h��d��h���`�Z&fcz֞�d҉��fNY�&��i��<���L���!p:q͛�趦R�K�^ᄖ�V��m��Q�OnK����F<��7��A��"�H�|#��)�*��oC�xդc��;�m0�>	��'I�[Bw�m"ٷ��M�]w;?~�+�}0�����ݦ��D�?Ӣ�q|7M�`i��c�R��g��
�o�J6Vf�fU*ů#׈y�
bv?c� ����-�1XI\k}6T�������Ð12tn��$k�R�Y��o����P~��R����m��������g
�ܵUO��V�G���>5���0p
Z�Q�9�;K�����h0�8
���Oz���z&&*Y�C6���l��[dwo$�Gs��������/"��#f�x�\+�lD��ZlΊEf�~T����v�ڤ�P�^�6��#kP�uc�p�3m�%�--�_�b�3�˼φ��2��ȼ�$YU�O�O�N����n���5~�MތW��4�ȎZ����eIP��H�|�%���7K	�e���Y�#��L�DGȃ��J��2#�L�w�
�ې�ԧ��o���(ђ�Wׅ%}�C�-���¿77��j
�.a0�X�U4�9���4��݅�[�HԜF��X����p��KHS�|ٝ{1��tP��>F:��&����9�9(ȯAЛj,
Va��%����T5��W)S�dz����?�U�����D���2��7�J_S�"��,xp
�e�$_����;���_1äi�}�/nr��|�t�7{���-c7[jš�$�հ�Yl����j�j~f���L���n<2�Fe�.��a�Zx�~�HN%�)Y+`|�
��ϜW��(�'T��,(`Ól}�(+kc��/�SD�R��p���3�Wb�b���˥{�o!��l��jv�f[�nj%��P�aV}j�Rր�z��j-1�N�ܩս(:N�����KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti��	AnimationCurveLx��-SAnimCurveS��	DefaultD���@��KeyVerI�5�&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�-	�
KeyValueFloatf��x
��7�w�U�vn'���M4�NC��~�2-v�V��Ni�nk�H$E�r���K\}1ח�n�y}\�^��HLb]iD�C��9���_E˫�ԕJ�~�{����i��;��?�3U�n�p?�z���xd��8nxF�������:��P"���g���
�5o&�L3�,��s��

�˝�f�1����f��sn�ٞj+�ً���qHO@if,jӂ1����ҘטߡUP�G��e�@Z��q;��}�?M9�>��W�n[��]����n�����0�� >n�[��7�MTVH��3音��G�_Q/p���l�v	�d���Q9��#�c+�
�`�B��.Z]F�3����=	�Ӆ�Y��Hʯ�ؔ3��_=�-�FBL:<����x��tclIV��B�w-"rsP�cl<:��\��Fs(�n��Ԩi\JSb��on���>��O`���S���+q͸m�J�6z�zyx{�4uPf���)����ZRD�ϘҜ���Q����r�G�8{����ͫ���Gh����^M�ň�x� �$���+oh�AW��YH�'R�5wI��i�wb��
ܼQ�JI�^ Ī�:4:�@�X>���d�����~yL��L���|��4�W
���̂G}�)2�kP��������ݣ��:���d$kj���~�"5��
��R�Z�?"%'��1��;��J��ꁙ�+�;�
�v�HW��f�}G����Y2•'іs�B�b�4ƥԖ)�jv;y�I'���[�٧����+wj1/�����o9��JGF�f�t��l���M���h#m�$/�I���g�Qv�g�S��.��c�P+V<m��_3���q��2ޭrD��R��d�*ͅe�L��e�0y��w�Yߐ�e�G�"�Q��f��FH���A��ԃqi&v��ݠ���a�Ú�紐���fY$Q��T>���H����H:��O�*��!z�>�*D�4�`�g±$�����O��M�iK_7}�h��\l+�yFQ�	'8��FTh+�Oh��s?�{`�m���Fx
C�'
��f��鵜~�O�#It*ҍVI�m�Â��#kk$5�px�@��SVt�{����F$X�����;��o���d��A��KQ�#��y�E�\�{�=�Z���U<�@���RA�����Ś�l�N;���Q]���Fx�KI�>�gqݺ�K��n��Kf��]Y8�D���=)_�@�s�lkA_;�dh�� �:Y�w��/׀u{/�s���l���,p��=(w�q�Uxo/��ȇX<Є��6�H���g�)�qQ-tW�4BU�ϜzT�=F�f��4`^�}��C��y��V��X5����Ff�2�Iw����:V�۔����ӛ�iV���$E��fԛt�`@����O�A�x	��x��>����])� ���홠K_����	n(�#�҈q~A6dj<���W��ݎ����J�:+����V�u�SQ�2W	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveLHn�-SAnimCurveS!		DefaultD�-@9	KeyVerI�s		&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�6	�
KeyValueFloatf��x
Ћ7�q��%"���~��tS��7FdN&�Y��ʖ��kL��])��L�3�X����M����U[�δ�N����'|>or�5,NtC㤡t���e��-�j�(#6)2�J��~��veHٛiȪ�X���:�A��~m�Nq�z!ϭy:���fܰ2f��8�/���t��n;�$�=�LJ����ct{ֱ{�d�U�K�x·G1+-��8|y�Nx�8 U�z���QU(3�Qw���a���y&�|A쭅�Q����=�/����vn��Կc�{R�S��92o�
l��YçE���-���D:�¾67~t4!�ƀ�ܲd��tJ���>=����r��9��&�/�����9q)�#�%<�V�jV:�B)�u࠮61�^J���yJڂl���s��`�4�(=ދ_�d*�Q%�����z;yT���q֪�/+�ݩ�ySftM%x�N�3�F����ȭ��J�>�����>���t�r9�6�œD���Be�@S�[�)약o�+و�+�y��,>+�۷���ί���f��Z:�RPgq62�3O��s�R�5g��e�J��j+�L��_��%X���a�I�$�;"U�3�������?�'�H�wR��w5���n7�a�M�6D�9ch1��36�c�8~�m�K	}2y���X�.�5�t�qh�6��p���#�A�8?}-���Y�>�:���,�{+edA����/�%X����h2�e�bW�5�l��_�*�f�V���郎ތ�%��ɤ�h�3�-�/.�o�9�>��� |_�TH�a1w�r�{���(?j��E�W�,�ub����24_���bp����4�O�c9n2�5�K��+3���$��Es���ؤ������H�!K��"W�x���r7릨_]����2�������ǕP
&/�YW�
ӭ멯����-���ӆ̉���ʎ�uJl;���,;�W�̆_d���`_V����d�.��W|�	�XN0�θ_�׽������7=�>|t�ݐ���2��#���	�������<6�+#USN�G!.S�Н+Ӭ�Yl�D�i8�v���?���7a��r��Yvy|�{�ͅh��,r2J�9��fU1��R�v27+�tT�}���э'�0����
���>�.��)Ud�����|"�T���k��|��e|$�CN���%�O�֨�ʘ�$�8R��;�<h�&�Ɠj���|o'��yV�C�I��Wb[bG�Uc֮1���,&&-�]8��6r�8�s�V��d���DY�!%˧�]�&IO��n��y	�~�6� ��wѐ�5K����k�R��<��qKC���[.R%�W�R���T8��x�������X���}.��y��ϟDw�a֢�f�!�w�Xm�*ymi�����:q�oJ֡@l�}v9y�ʸP��0�~�`	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL�(�-SAnimCurveS*		DefaultD�� 2@B	KeyVerI�|	&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�&	�
KeyValueFloatf��x
Ѝ_̇���~ј=e���e�^����<E�&j!�V*E�W��:��9+�u=(&�d!Q�TKkV���lg�����z��G���
fnT0�X��Xi_(��:��m9�
�ug��E�L\=ұtO��X"A��	��d�v
�#~��������"��諷�Ѷ�즑��4BJ����/J�|&r�
?��t����f�a��ca���B[T� ��%�ݧ�Ld�����&]��w6���5�xn5寥SY�D�2ǴR��/%^�
�Rl�����+�$�׫��($;P��6����`8�
ˏD�
��8M{a=̮��Y���'G0y��r2���Һ���E�EN �s3�	�3��S|�]8��}h?켊&��N�pi���nd�ZO�tN����_����R�# 4��x��/w,`�����|`u���q�`��q" ��cr/{3��e,�<E��vl����ex�I�ш.K�e�/���='g�K9놪��8A��H�>k�2,{���"�aAI�-��`���A]"k��p�v���<L%tb=Qs{�i'&���*�uK���Q����7%u��$����7�T�Ϥe Żω|�ɱ��~Q�����)id��/���n�s���s/sּ��4�6��=�	?�{#.�a�0���l@
[�˱=���A7�2=��#^Ǚ�e��O�u�w3�i�x�_+=P+�����0j+��ˆ
�dD<g<
pn�������&�{+���am�L�����*�b?)������w>E�5�-?��T����Oq�dL��]у�N3���h�R�i���j/��'_#�Q�)X\e��ׇ��r]�!�5���Ѹ>�c„F�<�t~-s�W���-5�$���\SD�W�,x����7���X�eT��`ѡ�����a�R����6F�]��W�X#ä,��)܏.B���	e�X�CT�ٺtzD�9�c�ml7	G�P���-F�ubz���<LNc��ܮ˰N?��:�0��F��&�O��p�8�`������fa_�>�����U��x%�s)��7�*���jB�w����pR�L���%�+E�\����T)eM�g�J�o[C��nH�Eŗ��܉����b�u5|�;ƶ��+�d�t�Ǯ��׌�ɾi�[�H[N��5F��ЈP���3���lt�*�rm��j2�ޱ�EJ�$���!�X�$Y��� 5��
��k�	ϡ?��x�Yှ�•e�17,xb��ʂt�}ڄ��s�����4�V��Zx+txf��a�=�IbL�$x��+��g���L�����|ӟ�Ӧ�~ߎ.�)�{��/w�.��F�1�f�]"��	Ȍe���&*� v;�0�=�sRL���ٔYm�O]-�B1|��Y�}�N� e����CP	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti��-	AnimationCurveLh��-SAnimCurveS		DefaultDว@2	KeyVerI�l'	&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�D-	�
KeyValueFloatf��x
Ӊ[�	�)+:��n��H��)�ّ~�O��娭V�,�>���cCҚ	Ii������-Ôb�]Ja���H������m^*%�p	qXb���E,��	�UJ(;VBv�B���FW	�*��S� /���&���B�ѻ���g����=�e�>�Qi3����:3�p��T�X��s�Lh��N����)�	<��1����>
4�I�ʹ��Am�LC����RZRH�Nrݧ�M/t���oZ�Ge���(ȼ�k[;6��^�`S�Ds�P���dS�Ae�3(���d���ʽ{�7�c�^���`Q���L
�b��8�J1���"������T�6DN���E��E)�����F������暄�:�hr,B��2�q����mځ�Q�p�u����QM��d��^C�.*��LQ�CL]j�v�UL���f:���/�!��Е�þ,o'BPj����.�N��\�?"/�ӵ7y4l���4����y�����,$ˇC���o�����Q��"�G(�kEJ^���Qf6�<g(��[��Wk�I�N��ǃ�6��j��a�u5t����/��y`�����_^:��IF�˧�>�ކg���`܉�
�]t���df
��,E��QTDd��0�`�9�d�p����s�a��J�[b��5�.�mVR��-�u�,���X^�I�H�Wb�O�qtR!&�}7�r�!z.�1Ys�����&D���ΑNֺ�ԪL�]ː�G)z7�Cp>F��k�AT�&�FC�o�sl�\��D��D\�q]_��pb!���'G�M�5(\����+xc�˹��	XSg�*��i-%3�g����"�ެO��I;4
�iY�1B�#4���3�[Ճ�O���d@����*4�qE&�2i|�)�w�L����L�%_J^���K�po�>�.��J�:�l�-����߅�F�G���O]�

N#��1Z�N�{��#&��	����_x��D�L5����W�E��w��?���a
4˦�g���*2���N
��|�pa>�|;�W����A��2��X�䛛5�p�g>�'6�����	�n3��o\�;��UX�q����֦B�,GMk5�=
hL��<\E�@��!���0k�,�7�GyQ�xeoэp���	�dA��|h�#`�������x����WW�}���� ���U&0m� ���+jb�m���T�5�y�U���3�,��/!��:��5C��ǔⴞD���\��水I="�B�%���j�����vX,��U�-Q@�.E�v!&��]�TX���ܟ��t���uj:b5����,�2���̙���\p��a��uL�hG�g7�W��5�O
�v� 9��i�$q����7�[�Am�䳭�\���a/t]<�a��-�`�����`r��o����T�+n-	KeyAttrFlagsi!�-	KeyAttrDataFloatf

�-	KeyAttrRefCounti�7=	AnimationCurveL�-�-SAnimCurveS8.		DefaultD��+�P.	KeyVerI��6	&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��<	�
KeyValueFloatf��x�<��pO�<Q�溧'�\Bs��W���{��-��ڊ��n�Ė�צ�T�j�.�E�!N<����&OnCS��Ӆ�S�e.��>��3�nx9��l6�D���.?���oQw��	HL�:�T��2 ��C��r��G��ʱ>4���@K��:'*{���#3<
w
���{��)��7�hl�c��'�C��5�d���tvT�`�X�=���ILY-�Uo���&u_��KA'�$�a���s�¦������'.�4�����O[b������7a\=������Yʕ�=�9|gl��j�J��Ϧf��ˇ=1�P�|"�fՔ�c��`�E+W-��j?��>FR��ڷ���Ӈe�DD�(���3K&ܽz�Œ��
�V�EK����K��?����T��v�(Y4գ�R�{�Y�=� �
%3�8�^�N�mHD���Kl����Ű��sOQyW�cD����U���&��j$|�Ȅk��^yf�����?�v�Y�;�\�/VݨX��O��9���K�ɣo�M�
b�t�$��[��8-��]�Am����q�ÐY�Ϻ��;3ρx�#MSH6H)�4����i��7oF����
Ih)��n�9|e�7J��(Ǟu�gB�M6�m/aq?�W|�J�#��6B�ؠ�m'V
9B\n��˰<+�n�L��vf�^���*���Vt�S���j�2�͈S�θs\�kmj�jj�̤�9M�$L�w��z�P���Hq�/u�~�]�1Uj�����{�C�Y�(�]�pU��ԣ�_�����B��X��bi�g�t��`�X+���yb�.o�{�є�8�4��Y$,v*a.��5�_�����A[r�h�����V¼�G�]L6��Q�_<�<hƄ.�����0y��h]%<���
u2�E�I�_km�h�
u=(�%Sd�g�8�z`K�v�!��
�"��'Q]�K��q��B(�\/���	�9���O��r����5��+9,�Z(���e�#�(�{�<�f��g�<uE
��<q�T$�-Z�>��d��n�2J�)��n>���dk�ۗE��ST*���~��c}'��"waw�	�;�
���	�}���*���P�mlݢ�(�5j�]�uG�!u~�ˤ����'�4"��>(�R皷��,*�J�ݽ�=��M�/���F��sH��1]�v�W�7�H�����h������(1���dM����.[���㬧J�����3�3�;�
w�Ͻu�����Uo��I5��Lb�T�W\�Sa�"h��Ry���I����*��6ӷ�gI���Z�N�)������u�W0�f�?�y~�_R����L�^$d��������J��4��0�E?2��3Q��lD�����K���0�����pv؉l�W�v Rq޴�c�Ԣ�4t}��T��ds�X�;�J'a96t�B��_1}�1Ƙ�������}"gd*�hc˗W�m�U}\�r�2N�����вt��JR>V�<	KeyAttrFlagsi!�<	KeyAttrDataFloatf

*=	KeyAttrRefCounti�9L	AnimationCurveL8��-SAnimCurveS�=		DefaultD`�.&��=	KeyVerI��E	&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��K	�
KeyValueFloatf��x
��7��e�i=j�5#�m�(�.�Q]��RgZ�)��Ӄqm�mw��;mz�&���ʶ��~�Ֆ�gu���^{�F����������|2�{������Bl��M��1օ�}jUѭu�{����>Q���v�["2��7���qT�܇Dm���mz!N7s2Մ����Z�iWƗ�'hh@aw����	�N�n�Y��h�q!*��.���������I�p���+��i�����մS�a�.��zo	�>��F�\7|o�[f��uHD^�Ӿc%��F�Y�)�V�Ƶ�|�s8#��T��S�z7��䆓��N�7
���H�>4AjO�܇����Z0�ir
��4ޘ,��S�4HKY��)�m4o%�/�X�X�"!��?�=iP�u�kTX<	�5(�rkQ�	�y�KD�6�?K����y�o�c0�є�Em�Z�Ḛr��o��tOt�Jɹ����p~�T�������n�R�ќTDJ�I\��Ȧ�4
���T�i�&�z&�!6t'�����_��a�.3H1z*v��|�db|뉍��؞�{i�O!&G�����*)cW����sI��f�ҝ<��p�w!�����VB�7ë+��
g�KwQ�������g�`3�kS�$.6��)	ObX�_�Ov�)ܷ���r|{�8����:$���PWb���M��DQ�<�lh�3!�¤�����I��Oa����֕�%�~!Z�Y���S��P}p��hښ4�����|(����E���p:5Ů��q��.��ȕB��J��b�����e��:�4�y�Y�O�?ո-��>P�w���Q����dҿ�B?�Az�=z�)]�:{��>�ZOa�Y#|^�Ֆ�O-�=�_8��>W�P�^��G����Û�Q\��#6ß�*�}p�ڇr�+��$��o����[ɑ'�<d$����~B4[ �Rc�\�/�ch��HG��`��p}&�l�n����o$��2��AS���E2f9����S#"�ÈAo��D#3ڊ�%�%|V�B\f0;C*�2�3{s9�����c��j������7�h\*��93e�����p�]B��>������[Ě3e|mt�k5��
Ao�#-��"��{����!�(��|�!���d�\��Hu�&�-�'�[���b�@ǒ�]4J��U���K�/Xp�LI�4{:?1&i�	�Lx�e��+xZ�L�<	�5���2�EQ�x�i�^:a]mL��)a3&��l.�*��ݟ�f)�Ӿ�
�����&2�S����㯪��a�{.�� m�)�.���r1T� Fv8�����|�d�T.��XVgr��c^Z��_�X�Q�X�鈂�N�s�(����߈=�s�]���"m�˯��eHь��sI��$��k�`2;�a��߈����uJ:�8��jL��#�?��>�K	KeyAttrFlagsi!�K	KeyAttrDataFloatf

,L	KeyAttrRefCounti�|[	AnimationCurveLذ�-SAnimCurveS�L		DefaultD����L	KeyVerI��T	&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r��Z	�
KeyValueFloatf��x
Ћ;�pVO!�J��v��hʥ���IK*Z���tZ�U<
��ʥD(�.�(˥3y(���y�7RĤ�&����1ut�}����ȑ����fu��r
�'�)A�g�Ž*nU��P~���>7J�]YHbp�1������ņ�f/x�EɻٕN'X���l��X�V[���5�%g�j�ǝhS�8t�# �	�V�I$m�|J�����l!��ip�_);��׍6ljo[9t��������%:t[[7��!4���qBr��fb�;ڍQ�I���|��5:Z�Ec&E��Zi2�m8(s/���}(�-s����Y����&��<.2���h�������oy�C�84� ��_��1������?	�{��eT�������\[t��� �Oh>���͘�?�2MR��%�h|�V���f�tF5扵�¨~�Z����᷾�r �sib�0��@�λ����0&�W�1Cg��B��é���!�s��y�>��	������Sٕ�)�`w_2I��|^ ��n"�"�f ge,i��+��1�MSX?�6:y������g�7>�ȳ"��F]H���w �2������H�P�v�.�@�d���G4i�B�(V�����[��F�c���lbbI���[R�(�~h�>�b�_`,<O7���K��/M��k�Ͳg���`T�N�r��,�^\���S����}���A|�d-k��W)�/�C��7��(�Qw�&���&?�ɵ��,��7"��>�l-2�8Dc��^IT��Ǵ!3�W��ن�m_�`����=_,B��|�eo�E��ٍי��,f��װ�£޴RӜr�`%k����7R����(WӮ�q��c�w�tx��>|�^�C
/�%��Cz%��~�d�4_A��n��"T������|�
f����;i�j5~��>o�1����
�[��A7=?O�����}z-�"�l���ݴ�X?h�R�R�vq���ǻ��E��r�._؇�\�'
Q\s����x�K�X4�~�(���Ш׊םw��M4�<�p5���&�w%-��q�u�T�a�o�ҍ�F���;�}d����Jk.��A;8t7c�x�<����0zk
Y�9�/W��X�?i_�1�s
ڟ4��l&�LK���
��8��O���\t��>�kس(;�����ؿ�#}��
]��gx�Q��B������r�c�1�pͥ����$m͚���p�oǖ�|tʣ��f-Ju�1j��/�0�08>ȅs�%���w�c
����D$�І2<+���S���ݸ�.��8?�A�*�;Ԃ���g�Ak'�F�����ZO����[[A�pQ�m(s���*�;����|N�m�"�L���gW��S�(:���u���#���~w������@�o���f�ʆU��+6�s"���l�J>��a�ul��I�akM#�jd��lជ����T[	KeyAttrFlagsi!B[	KeyAttrDataFloatf

o[	KeyAttrRefCounti��j	AnimationCurveLH��-SAnimCurveS�[		DefaultD��
��[	KeyVerI�$d	&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�
j	�
KeyValueFloatf��x
��?v�e*%�KHI7	�7���ZT�r��I��z�m�eN�K+�˕�����/�*����޾T�[�eY�pأV��������ھ֬~�=)d�ā,�:�������`O}\ټ�)�Ρ�}���-.F�y����=p���S#�{)�X9
{s�*�0�Di���񠸳��kL4m~��:5��ɧ9�m�{���1F�<o����֚С�Pʒ'PH)���q���z�(��ݦ\��FR깘O��Q��Y�K�(�Yz���{���l�I�\�a�	�� �t�:E98�R�XE���g�=�򏁠X�婉h�9�W"�$���m䔿���	aO����5�jr����$ӭHw�,�m�:6�,��D+�懲pq��R�!�O��R1���m0��=�t�$��QYU���
8�(��/B���0P�CѼ�28�qj>B�2����]�!��~��-�\wk_,���<�X2+)�<K�va���63\5�E���#�U��vb�<]"tL�!��87�⿞O2�$,:̅��*�?����0q��⠍�s瓶�i�uj%�V �}e,�J���<�f�c��8m
�X�Lה�>B�0�j�w��};�WX�Fh%ɳ�����'��LNv͖cl8�1��aZ'՝��%3R�����.�|kAF�Sh�h6L�40�u������ʳ���*<���`lV<�g"�ڐ
TrP��4#ƫ��yҔ�)�:�_�F��E���cR��,}��ur>����(����Q����K#:[誼��������!ƭw���̍���0�ڄu�Sha�=�S`ޜ�ϗ�B8�x�w��w��Ƥl��,���S=�{T����1�/��H�
F��6��G��W��ޛpF�ok�k�f�n�"�� J�U��`-���y�6<�����Q��&521�EZ�|��%��l�M����~���H9�E�â����V����j�8���*n@���l�PEJ:�a��ڑ���CIR�F$�����	��gBV��)L�;!�I�|*�D~�7̘�
-'�0J��M�8K�C"����؟��8d����m���/��a���#2�:���㶂{k7r�<���H������Sػq�	�?Ƈ���,�G��7������=�̷��Z�oR�eq!g��U�p�Iv�5���'�`j���75r����A��*�����
H+TI�P�;s��T�C,��K���(����ی�����]Oz����I�Ze���ܚ�nJ:j��bF,7k!൚"�3�B�\��YŔx�9w��kеÆ�<����:ؼ��_��vsQr�[e���uC�<	U�%�RN���xp'R`بGM��t@@�so��F���b��>��1�I,n>�|�6j7#Ҫ��/E����/��I˽�@�2vQ�����ؙ�3���` �n@��6�4�����i�4j	KeyAttrFlagsi!nj	KeyAttrDataFloatf

�j	KeyAttrRefCounti��y	AnimationCurveL�y�-SAnimCurveS�j		DefaultD�`Qֿk	KeyVerI�Ps	&KeyTimel�x-��_�u)KdD��BY�F=Y��V��iNX(+��ձ(V�)4�YNL�����zYN��h/�2NL��8;Wn�]=4��|?������|����h�o�C}��w.uw 5�Gm���w�m��g�z��
�x��۞�9����r��J�Z^�1�Tn��B^�n�i�Ȗ@��y�@n�Og���mP�Zxr��N7�C���!;Y�$
�VV@i��[�z�x��_w�J'�� �	�_A]��ūk�]Iƣ-r�]�O(j{4���B���B���H��a�Pk|w�v#�¸�Puk��h�Ӟ--'nB�Dɻ��
͂.3T4ׄ�!��*h�%�_P>��X���P
����@ٕ�u�$;�q.�;��o���K�@=��o<)��`d�?��Zq�)��]�٠�[�̓դj��7`�Ԝ����ꛠ�L��R��o�����uRs�DRu�p?�{�<��.�^���z��@���ޤ�g�w2'���ӛ���b��þޓI㨞PVZ��]eASHÁ��P�|Yō�R�J�F��LG��>�n����������t��8�&�j�L#��O삚�D3�9!�I����P���dg,�%����P���	�m
k�H����P�>v��dl��7nCEz�/��Z�T��P����Or6����b�%{/ ٖg5АT�8��>M�Y����q��,R�P�2����n5?`6)~�ad�7��m���hE�	h���j����Ha���b�<R}�s,�l��[��搪�����!�,�	�K*�ז@^��47G����S�{��4��_B���!'�i��H���BK[ �!�J��wA���ȚS<��_H<%�>� ��+�O�fj���|�'��ZFhk����򘿓����@ʹ��PX��O�8-
��,~�c�����Q��j{
�����P�ǽ#I��%	��V7B�{���$�H�Vhb��B��z�q�����ߡ�u(<�d�4���Y�o(-�E�,��P��u�R�X�2㛡���ZH�:�CƧ�mP�+%p)��[�=�Pc���!�;d���M�;���_L
uК�?RH�lQR����-��)KHef�N�{�����KI���[�M�x	M݉1��|�O������	�H�%��7���4<�τ�����ՙ;}9�O�P@���2״̋#u�������א��-VDhW��E���V���	IP�����,�$mw���zIZ+�W�֘��Pu���s��I�u�*�� ����4G�Wc��&��#6BSc�5(+������Cc(�
�:g�IvH�h���
�s��H���$��١�N��d�
�A��A�u�ؿ)
2��Z��)�i��9��i�ۡ��tn")�}m��/�zrǢ$Rp���z%}��
��
$B�%h9�eIH�Gf&���}`Z2�8r�r��uB��y)����;�9����ʥIYI���2��M���-J���Y��E�'eAI��.d:�妒����P�)������ǡ(/g���8)��1t
�6;�������[GL����Zs�jK���AZ2���Ug�}])�$�֔�P��g��=+�!M��.@�2��$'%$
-�סlC��-$���<hX���Nse$k��CPo.큒5�EY$�����wA��
�V��e�%�5�������ho�ނ�e�ӲI�Aжd�1T/�搂�yG��fDT-tX����h9-QJ����y�����������c2�mJ�Ma����\o)��yg�AcC��<R2�8d���
s..�IJu9�!+(�y��J��Y����cфݤ�qkG<���f��seJ(���ګ؂R���{(�TB��+����(�~9bi��K��	Y�!_2���x�s�����+�SD��D��1�=����p/ir;���C�!�9N��4�t�e.ߏ�O��I��<����ZL���#�3C�/TI2eP��r/��[r�dE���<�R��e=��P��m츃�0g���~���f������y�r�Ay	�
KeyValueFloatf��x
Љ?�wpʑ�҅�_���W9������!V�$��?b��O13��ʤ9*�el=:~�E�ޯe�#���=��I#E�Q��Ox��5w�Oh^�gjjr35��4=�!u�����Z�_Gd��Yҧq���'���6+|J��Yk	�sE�G ����om��{���a	�5�T]�Fo�P�cj8:D7S��1|җ,�n�%��L�յpD�*Dz��Q��6�z�����Bi%�G�qY��:�b���=sD�w�4:j���[��<����h���
��5��E(>��6k0U�G=��q����_Ef�
A���x����
a��?b�y�j����K�6w12��4)g����ŕ�]�]�'���Ngx�3��{^Lv�ܝ��J��'Gm���\d���s�!��Sf�+2C-I:/��t���/�1���d�8�~�	|���ަU��qp�8(�	&�'X7�#�����%(�7L{��@5�TlD�	�-��^�ZRY�l֨:�[�264r)o[�4���ǥ��D�-�?Gi��O"��,^��鉝�uuǖ��hV�s��4��Z���s�p�(3���U���D��E���nU'�u��i9䧭����
�6;��S��r��h��q�~2���t�Q^q8����@7����ύ�>)�7J�͝��.n�؏�Sy�#Md�+���J~�+��v�#�3t���
(�Z��2[���H"8mo�$y�n��D��U��`(�+��HE��܍�	HJb-�n�C�C'�k2����F�p�
����f�O��|6�a� �ᣪ�^�M.ۺZZY����DV�M86�A�N[K	R��os�)L�_��ᴦ�C�I��'8�`��kK��U�-��+]�[�K���p��Ġ ����V	��'�����,`( 
����ܻ�0ka	&�
��{�l�p�3
����ÿI��5���p\YIL����|*
�!-y�+�P���Oy�tN!��#,����6��_9P�_7*��ƌ��=NhY�
����&y�"��LP�v$����>%�/K0�R��h볺O�Bo�G�=}h�j�\�c�<t�$\+����1���It�M����v�ў����),?$�=^��2��`�M'q$p&n���O?Dt�5��P<rG��(,!��g�v�&��Po�!��y�Rٲ��,*ޞi%Y�����q���h�0t� t���NB�z���Hj"��&�斀��{�z3�rdf�71[�ݞ�8ۻ��.�=�����6�����Ds�&����5P�=S$�ʱ��C�S@���-�(����\�=8DFi����o:��j���	2����z�*��|�?d6:l�A'��n�`�T�r�|��
k,�vB��G��(B�cK�|�Ϗ�8`��0�O6���6捺��a�/G��q�ψ�S�7��x����ge��a̷���"���:�ky	KeyAttrFlagsi!�y	KeyAttrDataFloatf

�y	KeyAttrRefCounti�*�	AnimationCurveL���-SAnimCurveS5z		DefaultD��BĿMz	KeyVerI�u�	KeyTimel�x�\�%e���QXRV�QO֣��G��愅��j]��
5�5�,'�CS\{\�,'vu�y'&��K��+�xʮ:�����y�wź;0͇�۰0��]l:�?�V�c�[�߰u��pGZ5P]���ia˛��G�ʭ}Z��Ӎt�͙9�x�������L�����ӊ`N��٣h�f�R,{q�f��������J,M�|�YϞ�r����cɓ��43��K���xm��+�x�M���C��E����vQ�!�y��O,\�x,m�7�
����n�U	�nOpG�c:2����-�\��ây78{�Y�mƊ����47*S�M���,�@s�k����?,����f�1�b��&�Ґҭ�u)�.����'ђ��bfP�3���{�����q�
k�5+<iQm���G�i͹�MX��Ќmgs<'�jT}���S[�ЪS��`�W�l9��E+�m'1��-6OJX�M+�y�c�{s*m*?��Y��9��=�6���ò��G��*�N��R��K�*mZġ�N�g�d_��ttZ�C����Q6v�(���ڿ'�¢�_����n��O2c��:����>��ok_cAN�2?�:T�U��0�ָޟ�lͿ��}fѼ,�Vl~u�Vd��qi�5v/6��=�������6�۰,�{E Ͷ<�ņ��ٴ�Y�&��،�O�<�ВĆ�iι�uk��si���1#��w�m/��E�bNb���X��ML�Tu�����껞[�`yW��>�5�VŤ�a�-�Gز�7h>��Qw�e/��%dQ��:��ך�c���5���)�s���6^5J�,����9a�!�}7�^��Ĭy�!h�Ť#X��3�c��n���/d~Œ���ᔶv������'m?��5��F���j��B��iU`uU�S,�Ǐ���܎a�W�̯����-��Z�<��E�<,��|��	+��=>��G�c��
ˏ4h�[�~l,���e���4�`��%�����"��<�����ZLK�7cfqB�1�^KhqQ�N��t�kw�-�E�b{~o���cha��4��
y��9C	�h�`�[��i�-Z��ۜZ���8}9��*ۅy��;�9�=$�VX;�����W�ԓG˷�Tc��cc�6q-�d6b����ӆgYX�����g�����
,13�b����q�wX��3�ʼn(����T1bm_���5m�MX��2��v�&����a�10`5m��߇U�,��$7"���૱2zx�-�khsTɏXq-f�Z�1z365�]����)�h�>a'6��۱��k��f�V��K�=X:�?:�f�zOa}P�K�e	�i�P�]r�@���1C[xk�M�H��;��v�;XS]6?����Ŷ*�WX=�si2-8]y[���ƪJ��M4r�el9�eIh�GV�U��}�7�V�R������H�TZ����n��FWe�fZv0��v7bm(mO�R��?c���I_�zǩ�XRl����i��(}
�`ƞ����c�	,*��v;?^Jk�/`��ږS��Ճ1ױ`��)_�V[[.Vm+���	s3iK�V���Ƽ��Y�ٚz
+�����w�״iK�E,�C溕椆�c�e��mj���f�VX�
u`i��|�Z�0֛�z�d�hi6��p?�u	��X��R��f|�|kM>��(�'�۴��fE�o-�5�ۖ>�j㕰\Z���(�ފ�Ǫ%�;i������tȣ���$��l���|�}��VD�ans�=l
��ͧ�zK	�,8��в��'0���l�wi�.Z�˽�Y��λi}�p
��1\��K&�u�r�X;�!f̺?��Ҟ/Wb��5��^�����c��jۦm^��է�/b����{ike}VMξ����iŴ�Þ��͏1obѼ�|t�a��܋��;K��&��,?,Ɯ1��i��Ο����q��ler&68ϸ���{f�Ҭ��*���'X��S�L�`9�}�҇�{
��Ñ籶��� -zߺ��z�y7�-�'ö��_�z��Ye�����lmی�	�
KeyValueFloatf��x�8�gp����HI�\"t�:"���{���v�n�P�4˒
��K9mnaZ{b�.*t�����߳��j"Vz�V�&e5���~��V�X�̿��T>`U�JZ��\�f�zx:��l��gi4f���ДBt̨���Z��z_߉h�׉��uc�YF׈��U�<+����6>Y�|F���6�P�
0�{�[vi��8��F=5f�S�F��hΙ�Xv�vF�0&�����ӢӈV�~���^������g�	�Η�mW@!)�ɉc�PqM�^BN~O��5��j��2�9䛉�S�⭆\��h�h}h*�^�:�Qp��_J�OW
��{:�|���te����~1yR�K���tȽ���;�#��;����\Lyw�G��l5urGUnrS`����X.���6�����P/Q��"��ʝ1C���ǯ����,�M����K�C&�)mjǠE2)���j.%��Qn�@�}�&׀4�hDK�b������G>��fN0�gYZ�����#�N���{� �hG큫I�m�%)uK��_v��/T��q7�]X��ױ�cs��D'�T��E'i�v�2v�²	K�����Y3����f��i�=FsI��3���
:��R3�ҢeY���u��<,c
}SL��}61�v��zD���T^���`�\D�[)�����iP�~k�����vZ�]��X���<�ӍוB�^K����������Ѩ�Z�oYT:��k���[Iǯ�i\�Bn��#a3������9�͇w����0��~0�?	S�Q��wʍAedv�('�������o���B�X*�}��6LR��J
�y׊��D?��ၣ]�E�m�<��v2�.��|��&)2b�3@ް~b�5tT��ϊ���a|��6�[�҆G��c[�^
�k���g�����/|�USvpr�����4���Fd?�_?���K���.�y��'���.S��v�p�K�b|/4�>�1+���cԣr
m�v���)����y���-�ӭ�6Q�[�1L���ml��k�0��@[�q0��4��w�7�gq'w3:�x=�n�U��NC��Tb��j���3�vj��K�^u_���H1o�.�ԕ��`�n�����_��/+&�ɫ��^�T��i(Jg[Ya�:�ʼnS�f�O�1Y	ߪ/�-��0ԧ��p^y��vċL��n�>giz�Q�H!0ݛ�6d�չba��Xqԗ=ά�YFZUm��[��^%p�{!.���MҮ��[F��
��F����pʤ�N{JDy��xv�%6;`Ʈ�y�^�P�d���<��T#�#�Z��o�Ky�e�O�š��
��+�G��UO$�씓Gb�f����T��b#�.�b]E+x=����J��{�u�f�(�`����uU��X�2�4~�=���%m�ZO�M]�1:��L1<�����0O#<��WC;+L��+Ć��,3�Ysμ���w��3��ve3��Nqk�Rо9
q�mP��r���y1�9�K!�D��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCounti�U�	#MotionBuilder_SystemL�vW;SKTimeWarpManagerSH�	Properties70ĉ	/PSMoBuTypeNameSKStringSSSBox�	/PSMoBuSubTypeNameSKStringSSSQ�	BPSMoBuObjectFullNameSKStringSSSKTimeWarpManagerĊ	.PSMoBuAttrBlindDataSBlobSSI��	
BinaryDataRp;�	2PSMoBuRelationBlindDataSBlobSSI.�	
BinaryDataRp<�	/MotionBuilder_GenericL(�W;SFaceTime HD Camera (Display)S/�	Properties70��	1PSMoBuTypeNameSKStringSSSVideo?�	3PSMoBuSubTypeNameSKStringSSSLive��	UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Videod�	�PS
RecordPathScharptrSSS�C:\Users\bOb\Documents/_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2-FaceTime HD Camera (Display)-VideoRecording.avi��	#PSOnlineSboolSSI̍	)PSResolutionFRSenumSSI�	)PSRecordToFileSboolSSI9�	(PSRecordAudioSboolSSIn�	'PS
CompressorSenumSSI��	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI"�	2PSMoBuRelationBlindDataSBlobSSI�	
BinaryDataRp&�	0MotionBuilder_GenericLP�W;SFaceTime HD Camera (Built-in)S�	Properties70�	1PSMoBuTypeNameSKStringSSSVideo'�	3PSMoBuSubTypeNameSKStringSSSLive��	VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)VideoN�	�PS
RecordPathScharptrSSS�C:\Users\bOb\Documents/_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2-FaceTime HD Camera (Built-in)-VideoRecording.avi�	#PSOnlineSboolSSI��	)PSResolutionFRSenumSSI�	)PSRecordToFileSboolSSI#�	(PSRecordAudioSboolSSIX�	'PS
CompressorSenumSSI��	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI�	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	!MotionBuilder_GenericL�6X;SVideo Output 1S��	Properties70��	1PSMoBuTypeNameSKStringSSSVideo�	5PSMoBuSubTypeNameSKStringSSSOutputY�	GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video��	%PSDrawModeSenumSSI�	.PSMoBuAttrBlindDataSBlobSSI)
�	.
BinaryDataR)p	UseMipMapI��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp}�	!MotionBuilder_SystemLx�W;SKVideoRendererSp�	Properties70F�	2PSMoBuTypeNameSKStringSSSObject��	=PSMoBuSubTypeNameSKStringSSSKVideoRendererߘ	@PSMoBuObjectFullNameSKStringSSSKVideoRenderer�	.PSMoBuAttrBlindDataSBlobSSI�ߛ	�
BinaryDataR�p�
RendererTools4VersionIgP	StartTimeS0kStopTimeS0�StepTimeS1�OutputFormatSAVI�
OutputPathSc:\temp\Output.avi�FormatSFrom Camera	FieldModeI,QualityIORendererAntialingIk
ModelsOnlyI�ViewingModeI�StereoDisplayModeI
�RenderAudioI�AudioFormatI ShowCameraLabelI$ShowTimeCodeIBShowSafeAreaIeGlobalViewingModeI�GlobalStereoDisplayModeIc�	2PSMoBuRelationBlindDataSBlobSSIV�	
BinaryDataRp�	!MotionBuilder_SystemL�W;SKSerialManagerS��	Properties70 �	:PSMoBuTypeNameSKStringSSSKSerialManager]�	/PSMoBuSubTypeNameSKStringSSS��	@PSMoBuObjectFullNameSKStringSSSKSerialManagerp�	.PSMoBuAttrBlindDataSBlobSSI`c�	e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI�	2PSMoBuRelationBlindDataSBlobSSIڟ	
BinaryDataRpl�	#MotionBuilder_SystemL�^X;SKCharacterHelperS_�	Properties70��	0PSMoBuTypeNameSKStringSSSTool�	8PSMoBuSubTypeNameSKStringSSS	Character2�	BPSMoBuObjectFullNameSKStringSSSKCharacterHelper��	.PSMoBuAttrBlindDataSBlobSSI��	
BinaryDataRpR�	2PSMoBuRelationBlindDataSBlobSSIDE�	I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEI��	MotionBuilder_SystemL]X;SKNLEManagerS�	Properties70	�	7PSMoBuTypeNameSKStringSSSKNLEManagerF�	/PSMoBuSubTypeNameSKStringSSS��	=PSMoBuObjectFullNameSKStringSSSKNLEManageri�	.PSMoBuAttrBlindDataSBlobSSIs\�	x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5�	2PSMoBuRelationBlindDataSBlobSSIӧ	
BinaryDataRpU�	MotionBuilder_SystemL�/X;SConstraintsSH�	Properties70��	2PSMoBuTypeNameSKStringSSSFolderר	7PSMoBuSubTypeNameSKStringSSSCategory*�	EPSMoBuObjectFullNameSKStringSSSConstraintsFolderĩ	.PSMoBuAttrBlindDataSBlobSSI5��	:
BinaryDataR5p(
FolderTypeSConstraints;�	2PSMoBuRelationBlindDataSBlobSSI.�	
BinaryDataRp��	 MotionBuilder_SystemL`�W;S
KAudioManagerS}�	Properties70��	9PSMoBuTypeNameSKStringSSS
KAudioManager3�	/PSMoBuSubTypeNameSKStringSSS��	?PSMoBuObjectFullNameSKStringSSS
KAudioManager��	.PSMoBuAttrBlindDataSBlobSSI�	
BinaryDataRp�
AudioInputHNameSMicrophone (Display Audio)`FormatI xOnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD�
AudioInputK.NameS)Microphone (Cirrus Logic CS4206A (AB 29))cFormatI {OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD
AudioInputZ:NameS5Digital Audio (S/PDIF) (Cirrus Logic CS4206A (AB 29))rFormatI �OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayDp�	2PSMoBuRelationBlindDataSBlobSSIc�	
BinaryDataRp�	(MotionBuilder_SystemL�-X;SKMotionTriggerManagerS�	Properties70;�	APSMoBuTypeNameSKStringSSSKMotionTriggerManagerx�	/PSMoBuSubTypeNameSKStringSSSͰ	GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager\�	.PSMoBuAttrBlindDataSBlobSSI*O�	/
BinaryDataR*p
KEEPACTIVEIӱ	2PSMoBuRelationBlindDataSBlobSSIƱ	
BinaryDataRpi�	MotionBuilder_SystemLp�W;S
Story rootS\�	Properties70��	5PSMoBuTypeNameSKStringSSS	TimelineXIJ	/PSMoBuSubTypeNameSKStringSSS�	FPSMoBuObjectFullNameSKStringSSSStory rootTimelineH�	"PSMutedSboolSSIy�	#PSSoloedSboolSSI��	.PSRecordClipPathScharptrSSS�	 PSTracksSobjectSS�	#PS	TimelinesSobjectSST�	2PSQuaternionInterpolateSboolSSI��	JPSRotationOffsetSColorRGBSColorSDDD�	IPS
RotationPivotSColorRGBSColorSDDDZ�	IPS
ScalingOffsetSColorRGBSColorSDDD��	HPSScalingPivotSColorRGBSColorSDDD�	.PSTranslationActiveSboolSSID�	JPSTranslationMinSColorRGBSColorSDDD��	JPSTranslationMaxSColorRGBSColorSDDDֶ	,PSTranslationMinXSboolSSI�	,PSTranslationMinYSboolSSIJ�	,PSTranslationMinZSboolSSI��	,PSTranslationMaxXSboolSSI��	,PSTranslationMaxYSboolSSI��	,PSTranslationMaxZSboolSSI0�	*PS
RotationOrderSenumSSIt�	6PSRotationSpaceForLimitOnlySboolSSI��	;PSRotationStiffnessXSdoubleSNumberSD�	;PSRotationStiffnessYSdoubleSNumberSDO�	;PSRotationStiffnessZSdoubleSNumberSD��	0PSAxisLenSdoubleSNumberSD$@�	GPSPreRotationSColorRGBSColorSDDD8�	HPSPostRotationSColorRGBSColorSDDDq�	+PSRotationActiveSboolSSIƺ	GPSRotationMinSColorRGBSColorSDDD�	GPSRotationMaxSColorRGBSColorSDDDR�	)PSRotationMinXSboolSSI��	)PSRotationMinYSboolSSI��	)PSRotationMinZSboolSSI��	)PSRotationMaxXSboolSSI.�	)PSRotationMaxYSboolSSIe�	)PSRotationMaxZSboolSSI��	(PSInheritTypeSenumSSIӼ	*PS
ScalingActiveSboolSSI'�	FPS
ScalingMinSColorRGBSColorSDDD{�	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?��	(PSScalingMinXSboolSSI�	(PSScalingMinYSboolSSI�	(PSScalingMinZSboolSSIS�	(PSScalingMaxXSboolSSI��	(PSScalingMaxYSboolSSI��	(PSScalingMaxZSboolSSI�	PPSGeometricTranslationSColorRGBSColorSDDDx�	MPSGeometricRotationSColorRGBSColorSDDDҿ	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�	6PS
MinDampRangeXSdoubleSNumberSDZ�	6PS
MinDampRangeYSdoubleSNumberSD��	6PS
MinDampRangeZSdoubleSNumberSD��	6PS
MaxDampRangeXSdoubleSNumberSD&�	6PS
MaxDampRangeYSdoubleSNumberSDj�	6PS
MaxDampRangeZSdoubleSNumberSD��	9PSMinDampStrengthXSdoubleSNumberSD��	9PSMinDampStrengthYSdoubleSNumberSD?�	9PSMinDampStrengthZSdoubleSNumberSD��	9PSMaxDampStrengthXSdoubleSNumberSD��	9PSMaxDampStrengthYSdoubleSNumberSD�	9PSMaxDampStrengthZSdoubleSNumberSDY�	7PSPreferedAngleXSdoubleSNumberSD��	7PSPreferedAngleYSdoubleSNumberSD��	7PSPreferedAngleZSdoubleSNumberSD�	!PSShowSboolSSIX�	8PSNegativePercentShapeSupportSboolSSI��	KPSLcl TranslationSColorRGBSColorSDDD�	HPSLcl RotationSColorRGBSColorSDDD\�	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?��	3PS
VisibilitySdoubleSNumberSD�?��	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightIO�	2PSMoBuRelationBlindDataSBlobSSIB�	
BinaryDataRp��	MotionBuilder_SystemL��W;S	Edit rootS��	Properties70�	5PSMoBuTypeNameSKStringSSS	TimelineX?�	/PSMoBuSubTypeNameSKStringSSS��	EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline��	"PSMutedSboolSSI��	#PSSoloedSboolSSI/�	.PSRecordClipPathScharptrSSS]�	 PSTracksSobjectSS��	#PS	TimelinesSobjectSS��	2PSQuaternionInterpolateSboolSSI&�	JPSRotationOffsetSColorRGBSColorSDDD}�	IPS
RotationPivotSColorRGBSColorSDDD��	IPS
ScalingOffsetSColorRGBSColorSDDD*�	HPSScalingPivotSColorRGBSColorSDDDf�	.PSTranslationActiveSboolSSI��	JPSTranslationMinSColorRGBSColorSDDD�	JPSTranslationMaxSColorRGBSColorSDDDP�	,PSTranslationMinXSboolSSI��	,PSTranslationMinYSboolSSI��	,PSTranslationMinZSboolSSI��	,PSTranslationMaxXSboolSSI8�	,PSTranslationMaxYSboolSSIr�	,PSTranslationMaxZSboolSSI��	*PS
RotationOrderSenumSSI��	6PSRotationSpaceForLimitOnlySboolSSI7�	;PSRotationStiffnessXSdoubleSNumberSD��	;PSRotationStiffnessYSdoubleSNumberSD��	;PSRotationStiffnessZSdoubleSNumberSD�	0PSAxisLenSdoubleSNumberSD$@\�	GPSPreRotationSColorRGBSColorSDDD��	HPSPostRotationSColorRGBSColorSDDD��	+PSRotationActiveSboolSSI@�	GPSRotationMinSColorRGBSColorSDDD��	GPSRotationMaxSColorRGBSColorSDDD��	)PSRotationMinXSboolSSI�	)PSRotationMinYSboolSSI:�	)PSRotationMinZSboolSSIq�	)PSRotationMaxXSboolSSI��	)PSRotationMaxYSboolSSI��	)PSRotationMaxZSboolSSI�	(PSInheritTypeSenumSSIM�	*PS
ScalingActiveSboolSSI��	FPS
ScalingMinSColorRGBSColorSDDD��	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?+�	(PSScalingMinXSboolSSIa�	(PSScalingMinYSboolSSI��	(PSScalingMinZSboolSSI��	(PSScalingMaxXSboolSSI�	(PSScalingMaxYSboolSSI9�	(PSScalingMaxZSboolSSI��	PPSGeometricTranslationSColorRGBSColorSDDD��	MPSGeometricRotationSColorRGBSColorSDDDL�	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?��	6PS
MinDampRangeXSdoubleSNumberSD��	6PS
MinDampRangeYSdoubleSNumberSD�	6PS
MinDampRangeZSdoubleSNumberSD\�	6PS
MaxDampRangeXSdoubleSNumberSD��	6PS
MaxDampRangeYSdoubleSNumberSD��	6PS
MaxDampRangeZSdoubleSNumberSD+�	9PSMinDampStrengthXSdoubleSNumberSDr�	9PSMinDampStrengthYSdoubleSNumberSD��	9PSMinDampStrengthZSdoubleSNumberSD�	9PSMaxDampStrengthXSdoubleSNumberSDG�	9PSMaxDampStrengthYSdoubleSNumberSD��	9PSMaxDampStrengthZSdoubleSNumberSD��	7PSPreferedAngleXSdoubleSNumberSD�	7PSPreferedAngleYSdoubleSNumberSD]�	7PSPreferedAngleZSdoubleSNumberSD��	!PSShowSboolSSI��	8PSNegativePercentShapeSupportSboolSSI+�	KPSLcl TranslationSColorRGBSColorSDDD��	HPSLcl RotationSColorRGBSColorSDDD��	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�	3PS
VisibilitySdoubleSNumberSD�?R�	.PSMoBuAttrBlindDataSBlobSSI�E�	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	$MotionBuilder_SystemL�X;SKTimelineXManagerS��	Properties70��	=PSMoBuTypeNameSKStringSSSKTimelineXManager��	/PSMoBuSubTypeNameSKStringSSS�	CPSMoBuObjectFullNameSKStringSSSKTimelineXManagerj�	.PSMoBuAttrBlindDataSBlobSSI�]�	�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRpD�	MotionBuilder_SystemL8.X;SPosesS7�	Properties70��	2PSMoBuTypeNameSKStringSSSFolder��	7PSMoBuSubTypeNameSKStringSSSCategory�	?PSMoBuObjectFullNameSKStringSSS
PosesFolder��	.PSMoBuAttrBlindDataSBlobSSI/��	4
BinaryDataR/p"

FolderTypeSPoses*�	2PSMoBuRelationBlindDataSBlobSSI�	
BinaryDataRp��	MotionBuilder_SystemL�6X;STakesS��	Properties70��	2PSMoBuTypeNameSKStringSSSFolder�	7PSMoBuSubTypeNameSKStringSSSCategoryh�	?PSMoBuObjectFullNameSKStringSSS
TakesFolder��	.PSMoBuAttrBlindDataSBlobSSI/��	4
BinaryDataR/p"

FolderTypeSTakess�	2PSMoBuRelationBlindDataSBlobSSIf�	
BinaryDataRpr�	MotionBuilder_SystemL0�W;SGlobal LightSe�	Properties70-�	9PSMoBuTypeNameSKStringSSS
GlobalShadingo�	4PSMoBuSubTypeNameSKStringSSSLight��	>PSMoBuObjectFullNameSKStringSSSGlobal Light�	BPS
Ambient ColorSColorSSAD����?D����?D����?W�	>PS	Fog ColorSColorSSAD�?D�?D�?��	-PS	Fog BeginSNumberSSAD@33�?��	+PSFog EndSNumberSSAD@�@�	/PSFog DensitySNumberSSAD@:�	$PSFogModeSenumSSIn�	&PS	FogEnableSboolSSI��	.PSMoBuAttrBlindDataSBlobSSI��	
BinaryDataRpX�	2PSMoBuRelationBlindDataSBlobSSIK�	
BinaryDataRp��	MotionBuilder_SystemL`�W;SRendererS��	Properties70	�	4PSMoBuTypeNameSKStringSSSRendererM�	6PSMoBuSubTypeNameSKStringSSSDefault��	DPSMoBuObjectFullNameSKStringSSSRendererRenderer��	+PSFrustumCullingSboolSSI�	*PS
DisplayNormalSboolSSIM�	/PSDisplayBoundingBoxSboolSSI��	;PSDisplayHierarchicalBoundingBoxSboolSSI��	,PSIDBufferPickingSboolSSI�	=PSIDBufferPickingAlphaSdoubleSNumberSD�?U�	,PSIDBufferDisplaySboolSSI��	.PSSelectionOverrideSboolSSI��	FPSSelectionOverrideTransparencySdoubleSNumberSD�?E�	RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?��	7PSCurrentCallbackIndexSintSIntegerSI������	1PSAdvancedMaterialModeSboolSSI<�	.PSMoBuAttrBlindDataSBlobSSI/�	
BinaryDataRp��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRp��	&MotionBuilder_SystemLؤW;SPython Tool ManagerS��	Properties70o�	4PSMoBuTypeNameSKStringSSS__FBTool��	/PSMoBuSubTypeNameSKStringSSS��	EPSMoBuObjectFullNameSKStringSSSPython Tool Manager4�	'PSCaptionScharptrSSSf�	$PSEnabledSboolSSI��	%PSReadOnlySboolSSI��	$PSVisibleSboolSSI�	'PSLeftSintSIntegerSI4�	&PSTopSintSIntegerSIj�	(PSWidthSintSIntegerSI��	)PSHeightSintSIntegerSI��	*PSAnchorsSintSIntegerSI�	(PSSkinContextSenumSSIA�	$PSHintScharptrSSSx�	)PS	HintMouseScharptrSSS��	0PS
HintMouseLeftSintSIntegerSI������	/PSHintMouseTopSintSIntegerSI����2�	1PSHintMouseWidthSintSIntegerSI����r�	2PSHintMouseHeightSintSIntegerSI������	1PSHintIsTextCompletionSboolSSI��	#PSActiveSboolSSI�	'PS
ActiveControlSobjectSSQ�	,PSBackgroundBrushSenumSSI��	.PSBorderStyleSintSIntegerSI��	+PSPositionSintSIntegerSI�	-PS
StartWSizeSintSIntegerSI�<�	-PS
StartHSizeSintSIntegerSI�u�	+PSMaxWSizeSintSIntegerSI������	+PSMaxHSizeSintSIntegerSI������	+PSMinWSizeSintSIntegerSI� �	+PSMinHSizeSintSIntegerSI����Z�	,PS	StartXPosSintSIntegerSI������	,PS	StartYPosSintSIntegerSI�����	.PSMoBuAttrBlindDataSBlobSSI��	
BinaryDataRp~�	2PSMoBuRelationBlindDataSBlobSSIq�	
BinaryDataRpg�	(MotionBuilder_SystemL8�W;SBatch Tool (scripted)SZ�	Properties70<�	4PSMoBuTypeNameSKStringSSS__FBTooly�	/PSMoBuSubTypeNameSKStringSSS��	GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)�	'PSCaptionScharptrSSS5�	$PSEnabledSboolSSIh�	%PSReadOnlySboolSSI��	$PSVisibleSboolSSI��	'PSLeftSintSIntegerSI�	&PSTopSintSIntegerSI9�	(PSWidthSintSIntegerSIp�	)PSHeightSintSIntegerSI��	*PSAnchorsSintSIntegerSI��	(PSSkinContextSenumSSI�	$PSHintScharptrSSSG�	)PS	HintMouseScharptrSSS��	0PS
HintMouseLeftSintSIntegerSI������	/PSHintMouseTopSintSIntegerSI�����	1PSHintMouseWidthSintSIntegerSI����A�	2PSHintMouseHeightSintSIntegerSI������	1PSHintIsTextCompletionSboolSSI��	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS �	,PSBackgroundBrushSenumSSI\�	.PSBorderStyleSintSIntegerSI��	+PSPositionSintSIntegerSI��	-PS
StartWSizeSintSIntegerSI�	-PS
StartHSizeSintSIntegerSImD�	+PSMaxWSizeSintSIntegerSI����}�	+PSMaxHSizeSintSIntegerSI������	+PSMinWSizeSintSIntegerSI���	+PSMinHSizeSintSIntegerSI����)�	,PS	StartXPosSintSIntegerSI����c�	,PS	StartYPosSintSIntegerSI������	.PSMoBuAttrBlindDataSBlobSSI��	
BinaryDataRpM�	2PSMoBuRelationBlindDataSBlobSSI@�	
BinaryDataRpL
3MotionBuilder_SystemLhaX;S Character Selection/Key ControlsS?
Properties70
4PSMoBuTypeNameSKStringSSS__FBToolS
/PSMoBuSubTypeNameSKStringSSS�
RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls�
'PSCaptionScharptrSSS
$PSEnabledSboolSSIM
%PSReadOnlySboolSSI
$PSVisibleSboolSSI�
'PSLeftSintSIntegerSI�
&PSTopSintSIntegerSI
(PSWidthSintSIntegerSIU
)PSHeightSintSIntegerSI�
*PSAnchorsSintSIntegerSI�
(PSSkinContextSenumSSI�
$PSHintScharptrSSS,
)PS	HintMouseScharptrSSSj
0PS
HintMouseLeftSintSIntegerSI�����
/PSHintMouseTopSintSIntegerSI�����
1PSHintMouseWidthSintSIntegerSI����&
2PSHintMouseHeightSintSIntegerSI����e
1PSHintIsTextCompletionSboolSSI�
#PSActiveSboolSSI�
'PS
ActiveControlSobjectSS
,PSBackgroundBrushSenumSSIA
.PSBorderStyleSintSIntegerSIz
+PSPositionSintSIntegerSI�
-PS
StartWSizeSintSIntegerSI��
-PS
StartHSizeSintSIntegerSIx)
+PSMaxWSizeSintSIntegerSI����b
+PSMaxHSizeSintSIntegerSI�����
+PSMinWSizeSintSIntegerSI��
+PSMinHSizeSintSIntegerSI����
,PS	StartXPosSintSIntegerSI����H
,PS	StartYPosSintSIntegerSI�����
.PSMoBuAttrBlindDataSBlobSSI�

BinaryDataRp2
2PSMoBuRelationBlindDataSBlobSSI%

BinaryDataRp
MotionBuilder_SystemL��W;S
FBX ExportS�
Properties70�
4PSMoBuTypeNameSKStringSSS__FBTool"	
/PSMoBuSubTypeNameSKStringSSSl	
<PSMoBuObjectFullNameSKStringSSS
FBX Export�	
'PSCaptionScharptrSSS�	
$PSEnabledSboolSSI

%PSReadOnlySboolSSI8

$PSVisibleSboolSSIm

'PSLeftSintSIntegerSI�

&PSTopSintSIntegerSI�

(PSWidthSintSIntegerSI
)PSHeightSintSIntegerSIF
*PSAnchorsSintSIntegerSI|
(PSSkinContextSenumSSI�
$PSHintScharptrSSS�
)PS	HintMouseScharptrSSS#
0PS
HintMouseLeftSintSIntegerSI����`
/PSHintMouseTopSintSIntegerSI�����
1PSHintMouseWidthSintSIntegerSI�����
2PSHintMouseHeightSintSIntegerSI����
1PSHintIsTextCompletionSboolSSIO
#PSActiveSboolSSI�
'PS
ActiveControlSobjectSS�
,PSBackgroundBrushSenumSSI�
.PSBorderStyleSintSIntegerSI3
+PSPositionSintSIntegerSIn
-PS
StartWSizeSintSIntegerSI^�
-PS
StartHSizeSintSIntegerSI��
+PSMaxWSizeSintSIntegerSI����
+PSMaxHSizeSintSIntegerSI����T
+PSMinWSizeSintSIntegerSI��
+PSMinHSizeSintSIntegerSI�����
,PS	StartXPosSintSIntegerSI����
,PS	StartYPosSintSIntegerSI����t
.PSMoBuAttrBlindDataSBlobSSIg

BinaryDataRp�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRp�9
 MotionBuilder_SystemL�W;S
HierarchyViewS�9
Properties70�
;PSMoBuTypeNameSKStringSSSKtHierarchyView�
/PSMoBuSubTypeNameSKStringSSS2
?PSMoBuObjectFullNameSKStringSSS
HierarchyViewT9
.PSMoBuAttrBlindDataSBlobSSI�&G9
�&
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��@�&ExpandedI�9
2PSMoBuRelationBlindDataSBlobSSI�9

BinaryDataRp)C
MotionBuilder_SystemL(X;S	TransportSC
Properties70u:
,PSMoBuTypeNameSKStringSSS�:
/PSMoBuSubTypeNameSKStringSSS�:
;PSMoBuObjectFullNameSKStringSSS	Transport0;
'PSCaptionScharptrSSSb;
$PSEnabledSboolSSI�;
%PSReadOnlySboolSSI�;
$PSVisibleSboolSSI�;
'PSLeftSintSIntegerSI0<
&PSTopSintSIntegerSIf<
(PSWidthSintSIntegerSI�<
)PSHeightSintSIntegerSI�<
*PSAnchorsSintSIntegerSI=
(PSSkinContextSenumSSI==
$PSHintScharptrSSSt=
)PS	HintMouseScharptrSSS�=
0PS
HintMouseLeftSintSIntegerSI�����=
/PSHintMouseTopSintSIntegerSI����.>
1PSHintMouseWidthSintSIntegerSI����n>
2PSHintMouseHeightSintSIntegerSI�����>
1PSHintIsTextCompletionSboolSSI�>
#PSActiveSboolSSI?
'PS
ActiveControlSobjectSSM?
,PSBackgroundBrushSenumSSI�?
.PSBorderStyleSintSIntegerSI�?
+PSPositionSintSIntegerSI�B
.PSMoBuAttrBlindDataSBlobSSIq�B
v
BinaryDataRqpdTransport Tool Settings�ZoomBar Settings�C_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2�ZoomWindowModeI�ZoomWindowTimeLLp6��5�Audio Display Settings:AudioDisplayIY
AudioClipNameSyAudioTrackNameS�AudioLeftChannelActiveI�AudioRightChannelActiveIWSettings
TimeFormatI&SnapOnFramesIJReferenceTimeIndexI����C
2PSMoBuRelationBlindDataSBlobSSIC

BinaryDataRp@K
MotionBuilder_SystemLh7X;SFCurveS3K
Properties70�C
,PSMoBuTypeNameSKStringSSS�C
/PSMoBuSubTypeNameSKStringSSS9D
8PSMoBuObjectFullNameSKStringSSSFCurvenD
'PSCaptionScharptrSSS�D
$PSEnabledSboolSSI�D
%PSReadOnlySboolSSIE
$PSVisibleSboolSSI:E
'PSLeftSintSIntegerSInE
&PSTopSintSIntegerSI�E
(PSWidthSintSIntegerSI�E
)PSHeightSintSIntegerSIF
*PSAnchorsSintSIntegerSIIF
(PSSkinContextSenumSSI{F
$PSHintScharptrSSS�F
)PS	HintMouseScharptrSSS�F
0PS
HintMouseLeftSintSIntegerSI����-G
/PSHintMouseTopSintSIntegerSI����lG
1PSHintMouseWidthSintSIntegerSI�����G
2PSHintMouseHeightSintSIntegerSI�����G
1PSHintIsTextCompletionSboolSSIH
#PSActiveSboolSSIQH
'PS
ActiveControlSobjectSS�H
,PSBackgroundBrushSenumSSI�H
.PSBorderStyleSintSIntegerSII
+PSPositionSintSIntegerSI�J
.PSMoBuAttrBlindDataSBlobSSIJ�J
O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI&K
2PSMoBuRelationBlindDataSBlobSSIK

BinaryDataRpbN
MotionBuilder_GenericLX;S
GlobalInfoSUN
Properties70�K
5PSMoBuTypeNameSKStringSSS	SceneInfo L
7PSMoBuSubTypeNameSKStringSSSUserDatauL
GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo�M
.PSMoBuAttrBlindDataSBlobSSI��M
�
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentSHN
2PSMoBuRelationBlindDataSBlobSSI;N

BinaryDataRp�
Connections�N
CSOOL�`�9L�N
CSOOLHEK;L.v)�N
CSOOLPIK;L)v)#O
CSOOLXMK;L$v)JO
CSOOL�K;L�v)qO
CSOOL�K;L�v)�O
CSOOL!K;L�v)�O
CSOOL%K;LPVv)�O
CSOOL�_X;L�[�9
P
CSOOLش�:L�3�94P
CSOOLh�:L�3�9[P
CSOOL �:L�3�9�P
CSOOL�I�:L�3�9�P
CSOOL�Q�:L�3�9�P
CSOOL�f�:L�3�9�P
CSOOL@ȅ:L�3�9Q
CSOOL(�:L�3�9EQ
CSOOLp>�:L�3�9lQ
CSOOL���:L�3�9�Q
CSOOL(>�:L�3�9�Q
CSOOL���:L�3�9�Q
CSOOLx�:L�3�9R
CSOOL���:L�3�9/R
CSOOLȦ�:L�3�9VR
CSOOL�D�:L�3�9}R
CSOOL(��:L�3�9�R
CSOOL��:L�3�9�R
CSOOL���:L�3�9�R
CSOOL���:L�3�9S
CSOOL���:L�3�9@S
CSOOLp5�:L�3�9gS
CSOOLX�:L�3�9�S
CSOOL�ۅ:L�3�9�S
CSOOL�2�:L�3�9�S
CSOOL�f�:L�3�9T
CSOOL�&�:L�3�9*T
CSOOL��:L�3�9QT
CSOOL@�:L�3�9xT
CSOOLP��9L�3�9�T
CSOOL0��9L�3�9�T
CSOOL(~�9L�3�9�T
CSOOL}�9L�3�9U
CSOOL�{�9L�3�9;U
CSOOL w�9L�3�9bU
CSOOL8q�9L�3�9�U
CSOOL�m�9L�3�9�U
CSOOLXi�9L�3�9�U
CSOOL�d�9L�3�9�U
CSOOLX`�9L�3�9%V
CSOOL(c�9L�3�9LV
CSOOL�]�9L�3�9sV
CSOOL�U�9L�3�9�V
CSOOL@T�9L�3�9�V
CSOOL�O�9L�3�9�V
CSOOL@K�9L�3�9W
CSOOLN�9L�3�96W
CSOOLpH�9L�3�9]W
CSOOL�B�9L�3�9�W
CSOOLp?�9L�3�9�W
CSOOL(Z�9L�3�9�W
CSOOL�9�9L�3�9�W
CSOOL7�9L�3�9 X
CSOOL04�9L�3�9GX
CSOOL`1�9L�3�9nX
CSOOL�,�9L�3�9�X
CSOOL*�9L�3�9�X
CSOOL@'�9L�3�9�X
CSOOL�-�9L�3�9
Y
CSOOL��9L�3�91Y
CSOOL�#�9L�3�9XY
CSOOL���9L�3�9Y
CSOOL���9L�3�9�Y
CSOOLp��9L�3�9�Y
CSOOLx��9L�3�9�Y
CSOOL���9L�3�9Z
CSOOL���9L�3�9BZ
CSOOL���9L�3�9iZ
CSOOL���9L�3�9�Z
CSOOL�V�9L�3�9�Z
CSOOL�f�9L�3�9�Z
CSOOL0a�9L�3�9[
CSOOLpQ�9L�3�9,[
CSOOL�9L�3�9S[
CSOOL0��9L�3�9z[
CSOOL8C:L�3�9�[
CSOOL���-L�`�9�[
CSOOL�e�9L�`�9�[
CSOOL��-L�e�9\
CSOOL�j�9L�e�9=\
CSOOL.�-L�j�9d\
CSOOL�o�9L�j�9�\
CSOOL`�-L�o�9�\
CSOOL�t�9L�o�9�\
CSOOL���9L�o�9]
CSOOLx�:L�o�9;]
-CSOPLش�:L�o�9SLcl Translations]
*CSOPLh�:L�o�9SLcl Rotation�]
CSOOL�Y�-L�t�9�]
CSOOL�y�9L�t�9�]
*CSOPL �:L�t�9SLcl Rotation ^
CSOOL���-L�y�9G^
CSOOL�~�9L�y�9n^
CSOOL��z:L�y�9�^
CSOOL�3;L�y�9�^
*CSOPL�I�:L�y�9SLcl Rotation�^
CSOOL���-L�~�9_
CSOOL��9L�~�9S_
*CSOPL�Q�:L�~�9SLcl Rotationz_
CSOOL��-L��9�_
CSOOL���9L��9�_
CSOOL���9L��9�_
CSOOL��9L��9`
CSOOL0,:L��9=`
CSOOL81:L��9d`
CSOOL@6:L��9�`
CSOOLH;:L��9�`
CSOOLP@:L��9�`
CSOOL��z:L��9a
CSOOL��z:L��9'a
CSOOL��z:L��9Na
CSOOL��z:L��9ua
CSOOL��z:L��9�a
CSOOL��z:L��9�a
CSOOL��z:L��9�a
CSOOL��z:L��9b
CSOOL��z:L��9Ib
*CSOPL�f�:L��9SLcl Rotationpb
CSOOL���-L���9�b
*CSOPL@ȅ:L���9SLcl Rotation�b
CSOOL��-L���9c
*CSOPL(�:L���9SLcl Rotation.c
CSOOL�*�-L��9Uc
CSOOL�:L��9|c
CSOOL:L��9�c
CSOOL:L��9�c
CSOOL:L��9�c
CSOOL:L��9d
CSOOL ":L��9?d
CSOOL(':L��9wd
*CSOPLp>�:L��9SLcl Rotation�d
CSOOL��-L�:�d
*CSOPL���:L�:SLcl Rotation�d
CSOOL#�-L:5e
*CSOPL(>�:L:SLcl Rotation\e
CSOOL���-L:�e
*CSOPL���:L:SLcl Rotation�e
CSOOL���-L:�e
*CSOPLx�:L:SLcl Rotationf
CSOOL���-L:Rf
*CSOPL���:L:SLcl Rotationyf
CSOOLH�-L ":�f
*CSOPLȦ�:L ":SLcl Rotation�f
CSOOL���-L(':g
*CSOPL�D�:L(':SLcl Rotation7g
CSOOL�l�-L0,:og
*CSOPL(��:L0,:SLcl Rotation�g
CSOOL��-L81:�g
*CSOPL��:L81:SLcl Rotation�g
CSOOLH��-L@6:-h
*CSOPL���:L@6:SLcl RotationTh
CSOOL�'�-LH;:�h
*CSOPL���:LH;:SLcl Rotation�h
CSOOL�-�-LP@:�h
*CSOPL���:LP@:SLcl Rotationi
CSOOLH��-L��z:Ji
*CSOPLp5�:L��z:SLcl Rotationqi
CSOOL��-L��z:�i
*CSOPLX�:L��z:SLcl Rotation�i
CSOOL�-L��z:j
*CSOPL�ۅ:L��z:SLcl Rotation/j
CSOOL%�-L��z:gj
*CSOPL�2�:L��z:SLcl Rotation�j
CSOOL�-L��z:�j
*CSOPL�f�:L��z:SLcl Rotation�j
CSOOLH��-L��z:%k
*CSOPL�&�:L��z:SLcl RotationLk
CSOOL<�-L��z:�k
*CSOPL��:L��z:SLcl Rotation�k
CSOOL��-L��z:�k
*CSOPL@�:L��z:SLcl Rotation
l
CSOOLH��-L��z:Bl
*CSOPLP��9L��z:SLcl Rotationil
CSOOL� �-L��z:�l
CSOOL��z:L��z:�l
*CSOPL0��9L��z:SLcl Rotation�l
CSOOLȾ�-L��z:m
CSOOL{:L��z:Nm
*CSOPL(~�9L��z:SLcl Rotationum
CSOOL�-L{:�m
CSOOL@>R:L{:�m
*CSOPL}�9L{:SLcl Rotation�m
CSOOL���-L@>R:"n
CSOOLHCR:L@>R:In
CSOOL`RR:L@>R:pn
CSOOLxaR:L@>R:�n
CSOOL�pR:L@>R:�n
CSOOL�$;L@>R:�n
*CSOPL�{�9L@>R:SLcl Rotationo
CSOOLH��-LHCR:Do
CSOOLPHR:LHCR:|o
*CSOPL w�9LHCR:SLcl Rotation�o
CSOOL���-LPHR:�o
CSOOLXMR:LPHR:p
*CSOPL8q�9LPHR:SLcl Rotation)p
CSOOL���-LXMR:ap
*CSOPL�m�9LXMR:SLcl Rotation�p
CSOOLȼ�-L`RR:�p
CSOOLhWR:L`RR:�p
*CSOPLXi�9L`RR:SLcl Rotationq
CSOOLH��-LhWR:5q
CSOOLp\R:LhWR:mq
*CSOPL�d�9LhWR:SLcl Rotation�q
CSOOLȟ�-Lp\R:�q
*CSOPLX`�9Lp\R:SLcl Rotation�q
CSOOLH��-LxaR:r
CSOOL�fR:LxaR:Rr
*CSOPL(c�9LxaR:SLcl Rotationyr
CSOOL��-L�fR:�r
CSOOL�kR:L�fR:�r
*CSOPL�]�9L�fR:SLcl Rotation�r
CSOOLH��-L�kR:7s
*CSOPL�U�9L�kR:SLcl Rotation^s
CSOOLH#�-L�pR:�s
CSOOL�uR:L�pR:�s
*CSOPL@T�9L�pR:SLcl Rotation�s
CSOOL��-L�uR:t
CSOOL�;L�uR:Ct
*CSOPL�O�9L�uR:SLcl Rotationjt
CSOOL(�-L�;�t
*CSOPL@K�9L�;SLcl Rotation�t
CSOOL��-L�$;�t
CSOOL�);L�$;(u
*CSOPLN�9L�$;SLcl RotationOu
CSOOL��-L�);vu
CSOOL�.;L�);�u
*CSOPLpH�9L�);SLcl Rotation�u
CSOOL��-L�.;
v
*CSOPL�B�9L�.;SLcl Rotation4v
CSOOL���-L�3;[v
CSOOL�8;L�3;�v
*CSOPLp?�9L�3;SLcl Rotation�v
CSOOL�O�-L�8;�v
CSOOL�=;L�8;w
*CSOPL(Z�9L�8;SLcl Rotation@w
CSOOL4�-L�=;gw
CSOOL�B;L�=;�w
*CSOPL�9�9L�=;SLcl Rotation�w
CSOOLH�-L�B;�w
CSOOL�G;L�B;x
CSOOLW;L�B;;x
CSOOL@`�9L�B;bx
CSOOLXo�9L�B;�x
CSOOLp~�9L�B;�x
*CSOPL7�9L�B;SLcl Rotation�x
CSOOLH$�-L�G;y
CSOOL�L;L�G;Gy
*CSOPL04�9L�G;SLcl Rotationny
CSOOLH��-L�L;�y
CSOOLR;L�L;�y
*CSOPL`1�9L�L;SLcl Rotation�y
CSOOLH�-LR;,z
*CSOPL�,�9LR;SLcl RotationSz
CSOOL��-LW;zz
CSOOL0V�9LW;�z
*CSOPL*�9LW;SLcl Rotation�z
CSOOLHK�-L0V�9{
CSOOL8[�9L0V�98{
*CSOPL@'�9L0V�9SLcl Rotation_{
CSOOLi�-L8[�9�{
*CSOPL�-�9L8[�9SLcl Rotation�{
CSOOLH��-L@`�9�{
CSOOLHe�9L@`�9|
*CSOPL��9L@`�9SLcl RotationD|
CSOOL�B�-LHe�9k|
CSOOLPj�9LHe�9�|
*CSOPL�#�9LHe�9SLcl Rotation�|
CSOOL���-LPj�9}
*CSOPL���9LPj�9SLcl Rotation)}
CSOOL���-LXo�9P}
CSOOL`t�9LXo�9�}
*CSOPL���9LXo�9SLcl Rotation�}
CSOOL���-L`t�9�}
CSOOLhy�9L`t�9~
*CSOPLp��9L`t�9SLcl Rotation5~
CSOOL��-Lhy�9m~
*CSOPLx��9Lhy�9SLcl Rotation�~
CSOOL���-Lp~�9�~
CSOOLx��9Lp~�9�~
*CSOPL���9Lp~�9SLcl Rotation
CSOOLH�-Lx��9A
CSOOL���9Lx��9y
*CSOPL���9Lx��9SLcl Rotation�
CSOOL��-L���9�
*CSOPL���9L���9SLcl Rotation�
CSOOL�Q�-L���9&�
CSOOL`�:L���9^�
*CSOPL���9L���9SLcl Rotation��
CSOOL��-L`�:��
CSOOLh�:L`�:�
*CSOPL�V�9L`�:SLcl Rotation�
CSOOL�\�-Lh�:2�
CSOOLp�:Lh�:j�
*CSOPL�f�9Lh�:SLcl Rotation��
CSOOL���-Lp�:Ɂ
*CSOPL0a�9Lp�:SLcl Rotation��
CSOOL��-Lx�:�
CSOOL��:Lx�:O�
*CSOPLpQ�9Lx�:SLcl Rotationv�
CSOOL�-L��:��
CSOOL�:L��:Ղ
*CSOPL�9L��:SLcl Rotation��
CSOOLH��-L�:#�
CSOOL�:L�:[�
*CSOPL0��9L�:SLcl Rotation��
CSOOL���-L�:��
*CSOPL8C:L�:SLcl Rotation�
CSOOL�3�9L��Z:�
CSOOLh��9L��Z:7�
!CSOPL��[:Lش�:Sd|Xf�
!CSOPL��[:Lش�:Sd|Y��
!CSOPL�\:Lش�:Sd|ZĄ
!CSOPL��[:Lh�:Sd|X�
!CSOPL0�[:Lh�:Sd|Y"�
!CSOPL�\:Lh�:Sd|ZQ�
!CSOPL�[:L �:Sd|X��
!CSOPL�8\:L �:Sd|Y��
!CSOPLPe\:L �:Sd|Zޅ
!CSOPL�[:L�I�:Sd|X
�
!CSOPLPn\:L�I�:Sd|Y<�
!CSOPL�W\:L�I�:Sd|Zk�
!CSOPL*\:L�Q�:Sd|X��
!CSOPL��[:L�Q�:Sd|YɆ
!CSOPL�Y\:L�Q�:Sd|Z��
!CSOPL��[:L�f�:Sd|X'�
!CSOPLЈ[:L�f�:Sd|YV�
!CSOPL\:L�f�:Sd|Z��
!CSOPLN\:L@ȅ:Sd|X��
!CSOPLP2\:L@ȅ:Sd|Y�
!CSOPLp�\:L@ȅ:Sd|Z�
!CSOPL��[:L(�:Sd|XA�
!CSOPL��[:L(�:Sd|Yp�
!CSOPL0U\:L(�:Sd|Z��
!CSOPL�u\:Lp>�:Sd|XΈ
!CSOPL�\\:Lp>�:Sd|Y��
!CSOPLp6\:Lp>�:Sd|Z,�
!CSOPLв[:L���:Sd|X[�
!CSOPL�\:L���:Sd|Y��
!CSOPLP�[:L���:Sd|Z��
!CSOPL@�[:L(>�:Sd|X�
!CSOPL��[:L(>�:Sd|Y�
!CSOPL0\:L(>�:Sd|ZF�
!CSOPLpB\:L���:Sd|Xu�
!CSOPL�[:L���:Sd|Y��
!CSOPL��[:L���:Sd|Zӊ
!CSOPL@�[:Lx�:Sd|X�
!CSOPL�3\:Lx�:Sd|Y1�
!CSOPL0�[:Lx�:Sd|Z`�
!CSOPL�[:L���:Sd|X��
!CSOPL@�[:L���:Sd|Y��
!CSOPL�j\:L���:Sd|Z�
!CSOPL�y\:LȦ�:Sd|X�
!CSOPL�7\:LȦ�:Sd|YK�
!CSOPL�*\:LȦ�:Sd|Zz�
!CSOPL��[:L�D�:Sd|X��
!CSOPL��[:L�D�:Sd|Y،
!CSOPL@�[:L�D�:Sd|Z�
!CSOPL]\:L(��:Sd|X6�
!CSOPL��[:L(��:Sd|Ye�
!CSOPL�\:L(��:Sd|Z��
!CSOPL \:L��:Sd|XÍ
!CSOPL��[:L��:Sd|Y�
!CSOPL�[:L��:Sd|Z!�
!CSOPL��[:L���:Sd|XP�
!CSOPL�\:L���:Sd|Y�
!CSOPL@c\:L���:Sd|Z��
!CSOPL��[:L���:Sd|Xݎ
!CSOPL��[:L���:Sd|Y�
!CSOPL�r\:L���:Sd|Z;�
!CSOPL��[:L���:Sd|Xj�
!CSOPL��[:L���:Sd|Y��
!CSOPL��[:L���:Sd|Zȏ
!CSOPL��[:Lp5�:Sd|X��
!CSOPL�[:Lp5�:Sd|Y&�
!CSOPL�;\:Lp5�:Sd|ZU�
!CSOPL�M\:LX�:Sd|X��
!CSOPL �[:LX�:Sd|Y��
!CSOPL7\:LX�:Sd|Z�
!CSOPL�^�-L�ۅ:Sd|X�
!CSOPL���-L�ۅ:Sd|Y@�
!CSOPLX��-L�ۅ:Sd|Zo�
!CSOPL���-L�2�:Sd|X��
!CSOPL��-L�2�:Sd|Y͑
!CSOPL��-L�2�:Sd|Z��
!CSOPLX��-L�f�:Sd|X+�
!CSOPL(��-L�f�:Sd|YZ�
!CSOPLh��-L�f�:Sd|Z��
!CSOPL���-L�&�:Sd|X��
!CSOPLh-�-L�&�:Sd|Y�
!CSOPLXI�-L�&�:Sd|Z�
!CSOPL8N�-L��:Sd|XE�
!CSOPL��-L��:Sd|Yt�
!CSOPLH��-L��:Sd|Z��
!CSOPL�V�-L@�:Sd|Xғ
!CSOPL�-L@�:Sd|Y�
!CSOPLH8�-L@�:Sd|Z0�
!CSOPL�m�-LP��9Sd|X_�
!CSOPL���-LP��9Sd|Y��
!CSOPL���-LP��9Sd|Z��
!CSOPL�Q\:L0��9Sd|X�
!CSOPL@	\:L0��9Sd|Y�
!CSOPLX��-L0��9Sd|ZJ�
!CSOPLX��-L(~�9Sd|Xy�
!CSOPLx��-L(~�9Sd|Y��
!CSOPL���-L(~�9Sd|Zו
!CSOPL�(�-L}�9Sd|X�
!CSOPLH_�-L}�9Sd|Y5�
!CSOPL��-L}�9Sd|Zd�
!CSOPL�`�-L�{�9Sd|X��
!CSOPL�
�-L�{�9Sd|Y–
!CSOPL(��-L�{�9Sd|Z�
!CSOPL���-L w�9Sd|X �
!CSOPL�@�-L w�9Sd|YO�
!CSOPLؼ�-L w�9Sd|Z~�
!CSOPL��-L8q�9Sd|X��
!CSOPLH�-L8q�9Sd|Yܗ
!CSOPLx��-L8q�9Sd|Z�
!CSOPL�3�-L�m�9Sd|X:�
!CSOPLȺ�-L�m�9Sd|Yi�
!CSOPL8��-L�m�9Sd|Z��
!CSOPL���-LXi�9Sd|Xǘ
!CSOPLh0�-LXi�9Sd|Y��
!CSOPL���-LXi�9Sd|Z%�
!CSOPL�d�-L�d�9Sd|XT�
!CSOPL��-L�d�9Sd|Y��
!CSOPLX��-L�d�9Sd|Z��
!CSOPLHM�-LX`�9Sd|X�
!CSOPLx��-LX`�9Sd|Y�
!CSOPLؿ�-LX`�9Sd|Z?�
!CSOPL���-L(c�9Sd|Xn�
!CSOPL�-L(c�9Sd|Y��
!CSOPL�x�-L(c�9Sd|Z̚
!CSOPL(��-L�]�9Sd|X��
!CSOPLH��-L�]�9Sd|Y*�
!CSOPL�x�-L�]�9Sd|ZY�
!CSOPL(��-L�U�9Sd|X��
!CSOPL�$�-L�U�9Sd|Y��
!CSOPL��-L�U�9Sd|Z�
!CSOPL8-�-L@T�9Sd|X�
!CSOPL(p�-L@T�9Sd|YD�
!CSOPLXF�-L@T�9Sd|Zs�
!CSOPL�
�-L�O�9Sd|X��
!CSOPLX��-L�O�9Sd|Yќ
!CSOPLH��-L�O�9Sd|Z�
!CSOPL�m�-L@K�9Sd|X/�
!CSOPLء�-L@K�9Sd|Y^�
!CSOPL(��-L@K�9Sd|Z��
!CSOPLح�-LN�9Sd|X��
!CSOPLȽ�-LN�9Sd|Y�
!CSOPL8~�-LN�9Sd|Z�
!CSOPL���-LpH�9Sd|XI�
!CSOPL�v�-LpH�9Sd|Yx�
!CSOPL(j�-LpH�9Sd|Z��
!CSOPLxz�-L�B�9Sd|X֞
!CSOPL�B�-L�B�9Sd|Y�
!CSOPL���-L�B�9Sd|Z4�
!CSOPL�
�-Lp?�9Sd|Xc�
!CSOPL��-Lp?�9Sd|Y��
!CSOPL���-Lp?�9Sd|Z��
!CSOPLH��-L(Z�9Sd|X�
!CSOPL���-L(Z�9Sd|Y�
!CSOPLXX�-L(Z�9Sd|ZN�
!CSOPLh��-L�9�9Sd|X}�
!CSOPL8��-L�9�9Sd|Y��
!CSOPL�W�-L�9�9Sd|Z۠
!CSOPL�M�-L7�9Sd|X
�
!CSOPLxD�-L7�9Sd|Y9�
!CSOPL؃�-L7�9Sd|Zh�
!CSOPL�-L04�9Sd|X��
!CSOPL�@�-L04�9Sd|Yơ
!CSOPLT�-L04�9Sd|Z��
!CSOPLhx�-L`1�9Sd|X$�
!CSOPL���-L`1�9Sd|YS�
!CSOPLH��-L`1�9Sd|Z��
!CSOPL��-L�,�9Sd|X��
!CSOPL�]�-L�,�9Sd|Y�
!CSOPL�'�-L�,�9Sd|Z�
!CSOPL���-L*�9Sd|X>�
!CSOPLhT�-L*�9Sd|Ym�
!CSOPLh3�-L*�9Sd|Z��
!CSOPLx��-L@'�9Sd|Xˣ
!CSOPL���-L@'�9Sd|Y��
!CSOPL�
�-L@'�9Sd|Z)�
!CSOPL��-L�-�9Sd|XX�
!CSOPL8��-L�-�9Sd|Y��
!CSOPL�t�-L�-�9Sd|Z��
!CSOPL�+�-L��9Sd|X�
!CSOPLh��-L��9Sd|Y�
!CSOPL�X�-L��9Sd|ZC�
!CSOPL�H�-L�#�9Sd|Xr�
!CSOPL8T�-L�#�9Sd|Y��
!CSOPLr�-L�#�9Sd|ZХ
!CSOPLH�-L���9Sd|X��
!CSOPL�R�-L���9Sd|Y.�
!CSOPL��-L���9Sd|Z]�
!CSOPLY�-L���9Sd|X��
!CSOPLX��-L���9Sd|Y��
!CSOPL���-L���9Sd|Z�
!CSOPL���-Lp��9Sd|X�
!CSOPLX��-Lp��9Sd|YH�
!CSOPL�)�-Lp��9Sd|Zw�
!CSOPLH��-Lx��9Sd|X��
!CSOPLM�-Lx��9Sd|Yէ
!CSOPL8W�-Lx��9Sd|Z�
!CSOPL/�-L���9Sd|X3�
!CSOPLX
�-L���9Sd|Yb�
!CSOPL�o�-L���9Sd|Z��
!CSOPL���-L���9Sd|X��
!CSOPL�5�-L���9Sd|Y�
!CSOPL'�-L���9Sd|Z�
!CSOPL(�-L���9Sd|XM�
!CSOPL�+�-L���9Sd|Y|�
!CSOPL���-L���9Sd|Z��
!CSOPLȮ�-L���9Sd|Xک
!CSOPL�r�-L���9Sd|Y	�
!CSOPLH��-L���9Sd|Z8�
!CSOPL���-L�V�9Sd|Xg�
!CSOPLP�-L�V�9Sd|Y��
!CSOPL���-L�V�9Sd|ZŪ
!CSOPL���-L�f�9Sd|X��
!CSOPL���-L�f�9Sd|Y#�
!CSOPLh��-L�f�9Sd|ZR�
!CSOPLh'�-L0a�9Sd|X��
!CSOPL��-L0a�9Sd|Y��
!CSOPL���-L0a�9Sd|Z߫
!CSOPL80�-LpQ�9Sd|X�
!CSOPL{�-LpQ�9Sd|Y=�
!CSOPLx��-LpQ�9Sd|Zl�
!CSOPLHn�-L�9Sd|X��
!CSOPL�(�-L�9Sd|Yʬ
!CSOPLh��-L�9Sd|Z��
!CSOPL�-�-L0��9Sd|X(�
!CSOPL8��-L0��9Sd|YW�
!CSOPLذ�-L0��9Sd|Z��
!CSOPLH��-L8C:Sd|X��
!CSOPL�y�-L8C:Sd|Y�
!CSOPL���-L8C:Sd|Z��
Takes_�
HCurrentSC_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2z�
HTakeSC_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2�
LFileNameSG_68_a_U1_M_P_RapidStrafeInRightTurn_FWDNtrlWide__Fb_Dia3m_No_0_PJ_2.takA�
	LocalTimeLL@�Y��m�

ReferenceTimeLL@�Y��������b�~���+��Z�j���~���u�)

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

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