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
Kaydara FBX Binary  �FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteI%WSecondItMillisecondI��'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\_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2.fbx��PSSrcDocumentUrlSKStringSUrlSS�C:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2.fbx�$PSOriginalSCompoundSS BPSOriginal|ApplicationVendorSKStringSSSAutodesksEPSOriginal|ApplicationNameSKStringSSS
MotionBuilder�?PSOriginal|ApplicationVersionSKStringSSS2013MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 20:37:21.708Z1PSOriginal|FileNameSKStringSSS�%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk2FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder�@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 20:37:21.708+FileIdR*�(�#�̶��(�-��`CreationTimeS2012-11-08 15:37:21:713�6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105(
GlobalSettings�VersionI�
Properties70.	)PSUpAxisSintSIntegerSIi	-PS
UpAxisSignSintSIntegerSI�	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI
,PS	CoordAxisSintSIntegerSIY
0PS
CoordAxisSignSintSIntegerSI�
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI!8PSUnitScaleFactorSdoubleSNumberSD�?o@PSOriginalUnitScaleFactorSdoubleSNumberSD�?�HPSAmbientColorSColorRGBSColorSD����?D����?D����?APS
DefaultCameraSKStringSSSProducer PerspectiveG%PSTimeModeSenumSSI�3PS
TimeSpanStartSKTimeSTimeSL�2PSTimeSpanStopSKTimeSTimeSL�9`S
8PSCustomFrameRateSdoubleSNumberSD��	DocumentsU
CountI�!DocumentLx}�S	KFbxSceneSScenedProperties70�
&PSSourceObjectSobjectSSWqPSActiveAnimStackNameSKStringSSS>_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2�	RootNodeL�
ReferencesDDefinitions�VersionIdCountI�V
ObjectTypeSGlobalSettingsICountI�
ObjectTypeSMotionBuilder_System�CountIM#

ObjectTypeSModel�CountIV@#PropertyTemplateSFbxNode3#Properties70d2PSQuaternionInterpolateSenumSSI�KPSRotationOffsetSVector3DSVectorSDDDJPS
RotationPivotSVector3DSVectorSDDDmJPS
ScalingOffsetSVector3DSVectorSDDD�IPSScalingPivotSVector3DSVectorSDDD.PSTranslationActiveSboolSSIYKPSTranslationMinSVector3DSVectorSDDD�KPSTranslationMaxSVector3DSVectorSDDD�,PSTranslationMinXSboolSSI&,PSTranslationMinYSboolSSI`,PSTranslationMinZSboolSSI�,PSTranslationMaxXSboolSSI�,PSTranslationMaxYSboolSSI,PSTranslationMaxZSboolSSIF*PS
RotationOrderSenumSSI�6PSRotationSpaceForLimitOnlySboolSSI�;PSRotationStiffnessXSdoubleSNumberSD;PSRotationStiffnessYSdoubleSNumberSDe;PSRotationStiffnessZSdoubleSNumberSD�0PSAxisLenSdoubleSNumberSD$@�HPSPreRotationSVector3DSVectorSDDDPIPSPostRotationSVector3DSVectorSDDD�+PSRotationActiveSboolSSI�HPSRotationMinSVector3DSVectorSDDD5HPSRotationMaxSVector3DSVectorSDDDl)PSRotationMinXSboolSSI�)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI)PSRotationMaxXSboolSSIH)PSRotationMaxYSboolSSI)PSRotationMaxZSboolSSI�(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSIBGPS
ScalingMinSVector3DSVectorSDDD�GPS
ScalingMaxSVector3DSVectorSD�?D�?D�?�(PSScalingMinXSboolSSI(PSScalingMinYSboolSSI9(PSScalingMinZSboolSSIo(PSScalingMaxXSboolSSI�(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSI:QPSGeometricTranslationSVector3DSVectorSDDD�NPSGeometricRotationSVector3DSVectorSDDD�MPSGeometricScalingSVector3DSVectorSD�?D�?D�?56PS
MinDampRangeXSdoubleSNumberSDy6PS
MinDampRangeYSdoubleSNumberSD�6PS
MinDampRangeZSdoubleSNumberSD6PS
MaxDampRangeXSdoubleSNumberSDE6PS
MaxDampRangeYSdoubleSNumberSD�6PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSD9PSMinDampStrengthYSdoubleSNumberSD^9PSMinDampStrengthZSdoubleSNumberSD�9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD39PSMaxDampStrengthZSdoubleSNumberSDx7PSPreferedAngleXSdoubleSNumberSD�7PSPreferedAngleYSdoubleSNumberSD 7PSPreferedAngleZSdoubleSNumberSD8 (PSLookAtPropertySobjectSSp *PSUpVectorPropertySobjectSS� !PSShowSboolSSI� 8PSNegativePercentShapeSupportSboolSSI+!8PSDefaultAttributeIndexSintSIntegerSI����\!#PSFreezeSboolSSI�!#PSLODBoxSboolSSI�!NPSLcl TranslationSLcl TranslationSSADDD?"HPSLcl RotationSLcl RotationSSADDD�"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?�"2PS
VisibilityS
VisibilitySSAD�?&#EPSVisibility InheritanceSVisibility InheritanceSSIf>
ObjectTypeS
NodeAttribute�#CountIVY>PropertyTemplateS	FbxCameraL>Properties70$>PSPositionSVectorSSADDDI�i$>PSUpVectorSVectorSSADD�?D�$FPSInterestPositionSVectorSSADDD�$&PSRollSRollSSAD9%:PSOpticalCenterXSOpticalCenterXSSAD�%:PSOpticalCenterYSOpticalCenterYSSAD�%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?&-PS	TurnTableSNumberSSADM&1PSDisplayTurnTableIconSboolSSI�&*PS
UseMotionBlurSboolSSI�&2PSUseRealTimeMotionBlurSboolSSI'9PSMotion Blur IntensitySNumberSSAD�?F',PSAspectRatioModeSenumSSI�'4PSAspectWidthSdoubleSNumberSDt@�'5PSAspectHeightSdoubleSNumberSDi@(9PSPixelAspectRatioSdoubleSNumberSD�?O(/PSFilmOffsetXSNumberSSAD�(/PSFilmOffsetYSNumberSSAD�(2PS	FilmWidthSdoubleSNumberSD�&1��?
)3PS
FilmHeightSdoubleSNumberSD/�$���?S)8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?�)9PSFilmSqueezeRatioSdoubleSNumberSD�?�),PSFilmFormatIndexSenumSSI*,PSPreScaleSNumberSSAD�?N*2PSFilmTranslateXSNumberSSAD�*2PSFilmTranslateYSNumberSSAD�*2PSFilmRollPivotXSNumberSSAD+2PSFilmRollPivotYSNumberSSADM+1PS
FilmRollValueSNumberSSAD�+*PS
FilmRollOrderSenumSSI�+)PSApertureModeSenumSSI�+$PSGateFitSenumSSI0,4PSFieldOfViewSFieldOfViewSSAD�p9@t,6PSFieldOfViewXSFieldOfViewXSSADD@�,6PSFieldOfViewYSFieldOfViewYSSADD@�,/PSFocalLengthSNumberSSAD&��VrA@,-)PSCameraFormatSenumSSId-*PS
UseFrameColorSboolSSI�-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?�-%PSShowNameSboolSSI&.-PSShowInfoOnMovingSboolSSIY.%PSShowGridSboolSSI�..PSShowOpticalCenterSboolSSI�.'PS
ShowAzimutSboolSSI/)PSShowTimeCodeSboolSSI5/&PS	ShowAudioSboolSSI�/GPS
AudioColorSVector3DSVectorSDD�?D�/2PS	NearPlaneSdoubleSNumberSD$@	01PSFarPlaneSdoubleSNumberSD@�@H01PSAutoComputeClipPanesSboolSSI�0/PSViewCameraToLookAtSboolSSI�04PSViewFrustumNearFarPlaneSboolSSI
15PSViewFrustumBackPlaneModeSenumSSIM15PSBackPlaneDistanceSNumberSSAD@�@�12PSBackPlaneDistanceModeSenumSSI�16PSViewFrustumFrontPlaneModeSenumSSI26PSFrontPlaneDistanceSNumberSSAD$@V23PSFrontPlaneDistanceModeSenumSSI�2%PSLockModeSboolSSI�23PSLockInterestNavigationSboolSSI3.PSBackPlateFitImageSboolSSI>3*PS
BackPlateCropSboolSSIx3,PSBackPlateCenterSboolSSI�3/PSBackPlateKeepRatioSboolSSI4@PSBackgroundAlphaTresholdSdoubleSNumberSD�?;4*PS
ShowBackplateSboolSSI}44PSBackPlaneOffsetXSNumberSSAD�44PSBackPlaneOffsetYSNumberSSAD55PSBackPlaneRotationSNumberSSADC53PSBackPlaneScaleXSNumberSSAD�?�53PSBackPlaneScaleYSNumberSSAD�?�5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI46+PSFrontPlateCropSboolSSIo6-PSFrontPlateCenterSboolSSI�60PSFrontPlateKeepRatioSboolSSI�6;PSForeground OpacitySdoubleSNumberSD�?/7+PSShowFrontplateSboolSSIr75PSFrontPlaneOffsetXSNumberSSAD�75PSFrontPlaneOffsetYSNumberSSAD�76PSFrontPlaneRotationSNumberSSAD;84PSFrontPlaneScaleXSNumberSSAD�?}84PSFrontPlaneScaleYSNumberSSAD�?�8,PSForeground TextureSobjectSS�8,PSDisplaySafeAreaSboolSSI394PSDisplaySafeAreaOnRenderSboolSSIr91PSSafeAreaDisplayStyleSenumSSI�9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?�9/PSUse2DMagnifierZoomSboolSSI<:5PS2D Magnifier ZoomSNumberSSADY@|:2PS2D Magnifier XSNumberSSADI@�:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI;;2PS	OrthoZoomSdoubleSNumberSD�?y;0PSUseRealTimeDOFAndAASboolSSI�;,PSUseDepthOfFieldSboolSSI�;(PSFocusSourceSenumSSI*<3PS
FocusAngleSdoubleSNumberSD@n<6PS
FocusDistanceSdoubleSNumberSDi@�<,PSUseAntialiasingSboolSSI�<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?1=/PSAntialiasingMethodSenumSSIq=2PSUseAccumulationBufferSboolSSI�=5PSFrameSamplingCountSintSIntegerSI�=.PSFrameSamplingTypeSenumSSI?>APSColorSColorRGBSColorSD�������?D�������?D�������?�>
ObjectTypeSMotionBuilder_Generic�>CountIxA
ObjectTypeSAnimationLayer�>CountIkAPropertyTemplateSFbxAnimLayer^AProperties70{?*PSWeightSNumberSSADY@�?!PSMuteSboolSSI�?!PSSoloSboolSSI@!PSLockSboolSSIW@APSColorSColorRGBSColorSD�������?D�������?D�������?�@&PS	BlendModeSenumSSI�@5PSRotationAccumulationModeSenumSSIA2PSScaleAccumulationModeSenumSSIQA5PSBlendModeBypassS	ULongLongSSL^C
ObjectTypeSAnimationStack�ACountIQCPropertyTemplateSFbxAnimStackDCProperties709B+PSDescriptionSKStringSSSwB0PS
LocalStartSKTimeSTimeSL�B/PS	LocalStopSKTimeSTimeSL�B4PSReferenceStartSKTimeSTimeSL7C3PS
ReferenceStopSKTimeSTimeSL�C
ObjectTypeSAnimationCurveNode�CCountIL�C
ObjectTypeSAnimationCurve�CCountI���Objects�H<
NodeAttributeL`�;S#Producer PerspectiveNodeAttributeSCamera�GProperties70�D>PSPositionSVectorSSADD b@D�r@.EFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@D�EDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�E1PSDisplayTurnTableIconSboolSSI�E,PSFilmFormatIndexSenumSSI;F4PSFieldOfViewSFieldOfViewSSADD@xF/PSFocalLengthSNumberSSAD �Z5@�F<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?G5PS2D Magnifier ZoomSNumberSSADEG2PS2D Magnifier XSNumberSSAD�G2PS2D Magnifier YSNumberSSAD�G	TypeFlagsSCamera�GGeometryVersionI|HPositionDD b@D�r@.HUpDD�?D\HLookAtD1�ʧ�U�<D�����V@D~HShowInfoOnMovingI�H	ShowAudioI�H
AudioColorDD�?D�H	CameraOrthoZoomD�?�N6
NodeAttributeL �;SProducer FrontNodeAttributeSCamera(MProperties70�I>PSPositionSVectorSSADD�V@DL�@JFPSInterestPositionSVectorSSADD�V@DXJDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�J1PSDisplayTurnTableIconSboolSSI�J,PSFilmFormatIndexSenumSSIK4PSFieldOfViewSFieldOfViewSSADD@PK/PSFocalLengthSNumberSSAD �Z5@�K2PS	NearPlaneSdoubleSNumberSD�?�K1PSFarPlaneSdoubleSNumberSDL�@L<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?\L5PS2D Magnifier ZoomSNumberSSAD�L2PS2D Magnifier XSNumberSSAD�L2PS2D Magnifier YSNumberSSADM1PSCameraProjectionTypeSenumSSIIM	TypeFlagsSCamerajMGeometryVersionI|�MPositionDD�V@DL�@�MUpDD�?D�MLookAtDD�V@DNShowInfoOnMovingI/N	ShowAudioIaN
AudioColorDD�?D�N	CameraOrthoZoomD�?(T5
NodeAttributeLX�;SProducer BackNodeAttributeSCamera�RProperties70GO>PSPositionSVectorSSADD�V@DL���OFPSInterestPositionSVectorSSADD�V@D�ODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?,P1PSDisplayTurnTableIconSboolSSIfP,PSFilmFormatIndexSenumSSI�P4PSFieldOfViewSFieldOfViewSSADD@�P/PSFocalLengthSNumberSSAD �Z5@%Q2PS	NearPlaneSdoubleSNumberSD�?dQ1PSFarPlaneSdoubleSNumberSDL�@�Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�Q5PS2D Magnifier ZoomSNumberSSAD1R2PS2D Magnifier XSNumberSSADqR2PS2D Magnifier YSNumberSSAD�R1PSCameraProjectionTypeSenumSSI�R	TypeFlagsSCamera�RGeometryVersionI|/SPositionDD�V@DL��YSUpDD�?D�SLookAtDD�V@D�SShowInfoOnMovingI�S	ShowAudioI�S
AudioColorDD�?DT	CameraOrthoZoomD�?�Y6
NodeAttributeLh�;SProducer RightNodeAttributeSCameraSXProperties70�T>PSPositionSVectorSSADL�@D�V@D1UFPSInterestPositionSVectorSSADD�V@D�UDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�U1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSI>V4PSFieldOfViewSFieldOfViewSSADD@{V/PSFocalLengthSNumberSSAD �Z5@�V2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@DW<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�W5PS2D Magnifier ZoomSNumberSSAD�W2PS2D Magnifier XSNumberSSADX2PS2D Magnifier YSNumberSSADFX1PSCameraProjectionTypeSenumSSItX	TypeFlagsSCamera�XGeometryVersionI|�XPositionDL�@D�V@D�XUpDD�?DYLookAtDD�V@D?YShowInfoOnMovingIZY	ShowAudioI�Y
AudioColorDD�?D�Y	CameraOrthoZoomD�?S_5
NodeAttributeLp�;SProducer LeftNodeAttributeSCamera�]Properties70rZ>PSPositionSVectorSSADL��D�V@D�ZFPSInterestPositionSVectorSSADD�V@D[DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?W[1PSDisplayTurnTableIconSboolSSI�[,PSFilmFormatIndexSenumSSI�[4PSFieldOfViewSFieldOfViewSSADD@\/PSFocalLengthSNumberSSAD �Z5@P\2PS	NearPlaneSdoubleSNumberSD�?�\1PSFarPlaneSdoubleSNumberSDL�@�\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?]5PS2D Magnifier ZoomSNumberSSAD\]2PS2D Magnifier XSNumberSSAD�]2PS2D Magnifier YSNumberSSAD�]1PSCameraProjectionTypeSenumSSI	^	TypeFlagsSCamera*^GeometryVersionI|Z^PositionDL��D�V@D�^UpDD�?D�^LookAtDD�V@D�^ShowInfoOnMovingI�^	ShowAudioI!_
AudioColorDD�?DF_	CameraOrthoZoomD�?3e4
NodeAttributeLx�;SProducer TopNodeAttributeSCamera�cProperties70`>PSPositionSVectorSSADDy�@DR`>PSUpVectorSVectorSSADDD�`FPSInterestPositionSVectorSSADD�V@D�`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?7a1PSDisplayTurnTableIconSboolSSIqa,PSFilmFormatIndexSenumSSI�a4PSFieldOfViewSFieldOfViewSSADD@�a/PSFocalLengthSNumberSSAD �Z5@0b2PS	NearPlaneSdoubleSNumberSD�?ob1PSFarPlaneSdoubleSNumberSDL�@�b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSAD<c2PS2D Magnifier XSNumberSSAD|c2PS2D Magnifier YSNumberSSAD�c1PSCameraProjectionTypeSenumSSI�c	TypeFlagsSCamera
dGeometryVersionI|:dPositionDDy�@DddUpDDD�dLookAtDD�V@D�dShowInfoOnMovingI�d	ShowAudioIe
AudioColorDD�?D&e	CameraOrthoZoomD�?k7
NodeAttributeL��;SProducer BottomNodeAttributeSCamera�iProperties70�e>PSPositionSVectorSSADD��D5f>PSUpVectorSVectorSSAD�D�D�?�fFPSInterestPositionSVectorSSADD�V@D�fDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?g1PSDisplayTurnTableIconSboolSSITg,PSFilmFormatIndexSenumSSI�g4PSFieldOfViewSFieldOfViewSSADD@�g/PSFocalLengthSNumberSSAD �Z5@h2PS	NearPlaneSdoubleSNumberSD�?Rh1PSFarPlaneSdoubleSNumberSDL�@�h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�h5PS2D Magnifier ZoomSNumberSSADi2PS2D Magnifier XSNumberSSAD_i2PS2D Magnifier YSNumberSSAD�i1PSCameraProjectionTypeSenumSSI�i	TypeFlagsSCamera�iGeometryVersionI|jPositionDD��DGjUpD�D�D�?ujLookAtDD�V@D�jShowInfoOnMovingI�j	ShowAudioI�j
AudioColorDD�?D	k	CameraOrthoZoomD�?tl?
NodeAttributeL�G�:SCamera SwitcherNodeAttributeSCameraSwitcher�kProperties70�k-PSCamera IndexSIntegerSSAI�kVersionIelNameSCamera SwitcherModel/lCameraIdIKl
CameraNameIdglCameraIndexNameIm*
NodeAttributeLXA�:SNodeAttributeSLimbNodemProperties70m-PSSizeSdoubleSNumberSD�r@<m
	TypeFlagsSSkeletonn*
NodeAttributeL��:SNodeAttributeSLimbNode�mProperties70�m-PSSizeSdoubleSNumberSD�r@n
	TypeFlagsSSkeleton�n*
NodeAttributeLX�:SNodeAttributeSLimbNode�nProperties70�n-PSSizeSdoubleSNumberSD�r@�n
	TypeFlagsSSkeletongo*
NodeAttributeL���:SNodeAttributeSLimbNodeZo
	TypeFlagsSSkeleton�o*
NodeAttributeLXi�:SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonOp*
NodeAttributeL�:SNodeAttributeSLimbNodeBp
	TypeFlagsSSkeleton�p*
NodeAttributeL��:SNodeAttributeSLimbNode�p
	TypeFlagsSSkeleton7q*
NodeAttributeLX�:SNodeAttributeSLimbNode*q
	TypeFlagsSSkeleton�q*
NodeAttributeL�
�:SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletonr*
NodeAttributeL��:SNodeAttributeSLimbNoder
	TypeFlagsSSkeleton�r*
NodeAttributeL��:SNodeAttributeSLimbNode�r
	TypeFlagsSSkeletons*
NodeAttributeL��:SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton{s*
NodeAttributeL��:SNodeAttributeSLimbNodens
	TypeFlagsSSkeleton�s*
NodeAttributeLX��:SNodeAttributeSLimbNode�s
	TypeFlagsSSkeletonct*
NodeAttributeL��:SNodeAttributeSLimbNodeVt
	TypeFlagsSSkeleton�t*
NodeAttributeL�
�:SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletonKu*
NodeAttributeL���:SNodeAttributeSLimbNode>u
	TypeFlagsSSkeleton�u*
NodeAttributeL��:SNodeAttributeSLimbNode�u
	TypeFlagsSSkeleton3v*
NodeAttributeLX@�:SNodeAttributeSLimbNode&v
	TypeFlagsSSkeleton�v*
NodeAttributeL-�:SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonw*
NodeAttributeLX�:SNodeAttributeSLimbNodew
	TypeFlagsSSkeleton�w*
NodeAttributeL.�:SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonx*
NodeAttributeL�-�:SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonwx*
NodeAttributeLؒ�:SNodeAttributeSLimbNodejx
	TypeFlagsSSkeleton�x*
NodeAttributeL���:SNodeAttributeSLimbNode�x
	TypeFlagsSSkeleton_y*
NodeAttributeLF�:SNodeAttributeSLimbNodeRy
	TypeFlagsSSkeleton�y*
NodeAttributeLE�:SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonGz*
NodeAttributeLXU�:SNodeAttributeSLimbNode:z
	TypeFlagsSSkeleton�z*
NodeAttributeL��:SNodeAttributeSLimbNode�z
	TypeFlagsSSkeleton/{*
NodeAttributeLؓ�:SNodeAttributeSLimbNode"{
	TypeFlagsSSkeleton�{*
NodeAttributeLؑ�:SNodeAttributeSLimbNode�{
	TypeFlagsSSkeleton|*
NodeAttributeL��:SNodeAttributeSLimbNode
|
	TypeFlagsSSkeleton�|*
NodeAttributeL���:SNodeAttributeSLimbNode~|
	TypeFlagsSSkeleton�|*
NodeAttributeLؕ�:SNodeAttributeSLimbNode�|
	TypeFlagsSSkeletons}*
NodeAttributeL�?�:SNodeAttributeSLimbNodef}
	TypeFlagsSSkeleton�}*
NodeAttributeLX�:SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton[~*
NodeAttributeL���:SNodeAttributeSLimbNodeN~
	TypeFlagsSSkeleton�~*
NodeAttributeLآ�:SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletonC*
NodeAttributeL���:SNodeAttributeSLimbNode6
	TypeFlagsSSkeleton�*
NodeAttributeLX��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton+�*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�|�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeLX��:SNodeAttributeSLimbNodez�
	TypeFlagsSSkeleton��*
NodeAttributeLء�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletono�*
NodeAttributeL���:SNodeAttributeSLimbNodeb�
	TypeFlagsSSkeleton�*
NodeAttributeL���:SNodeAttributeSLimbNodeւ
	TypeFlagsSSkeletonW�*
NodeAttributeLX��:SNodeAttributeSLimbNodeJ�
	TypeFlagsSSkeleton˃*
NodeAttributeLع�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton?�*
NodeAttributeLX��:SNodeAttributeSLimbNode2�
	TypeFlagsSSkeleton��*
NodeAttributeLغ�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton'�*
NodeAttributeL���:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLX��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���:SNodeAttributeSLimbNodev�
	TypeFlagsSSkeleton��*
NodeAttributeLj�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonk�*
NodeAttributeLX��:SNodeAttributeSLimbNode^�
	TypeFlagsSSkeleton߇*
NodeAttributeL���:SNodeAttributeSLimbNode҇
	TypeFlagsSSkeletonS�*
NodeAttributeL��:SNodeAttributeSLimbNodeF�
	TypeFlagsSSkeletonLj*
NodeAttributeL��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton;�*
NodeAttributeLX��:SNodeAttributeSLimbNode.�
	TypeFlagsSSkeleton��*
NodeAttributeLؽ�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton#�*
NodeAttributeL���:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLX��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL��:SNodeAttributeSLimbNoder�
	TypeFlagsSSkeleton�*
NodeAttributeLؿ�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletong�*
NodeAttributeLX��:SNodeAttributeSLimbNodeZ�
	TypeFlagsSSkeletonی*
NodeAttributeLX��:SNodeAttributeSLimbNodeΌ
	TypeFlagsSSkeletonO�*
NodeAttributeL���:SNodeAttributeSLimbNodeB�
	TypeFlagsSSkeletonÍ*
NodeAttributeLX��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton7�*
NodeAttributeL��:SNodeAttributeSLimbNode*�
	TypeFlagsSSkeleton��*
NodeAttributeL���:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL���:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL���:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton{�*
NodeAttributeL���:SNodeAttributeSLimbNoden�
	TypeFlagsSSkeleton�*
NodeAttributeL���:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton8�4ModelL�v)SProducer PerspectiveModelSCameraN�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI1�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD b@D�r@�HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V��,PS	MultiTakeSintSIntegerSIX�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI3�-PSPivotsVisibilitySenumSSIv�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI?�3PSRotationAxisVisibilitySboolSSI~�1PSScalingRefVisibilitySboolSSIŕ9PSHierarchicalCenterVisibilitySboolSSI	�6PSGeometricCenterVisibilitySboolSSIO�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIӖ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI>�*PS
TransformableSboolSSIt�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI&�0PSAspectWSdoubleSNumberSD�?d�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSIƘ!PSCropSboolSSI��#PSCenterSboolSSI+�&PS	KeepRatioSboolSSIk�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI�ShadingCW+�CullingS
CullingOff{�.ModelL.v)SProducer FrontModelSCamera��VersionI�5�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?.�!PSShowSboolSSIt�8PSDefaultAttributeIndexSintSIntegerSIЛNPSLcl TranslationSLcl TranslationSSADD�V@DL�@&�HPSLcl RotationSLcl RotationSSADD�V@D`�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD;�/PSSetPreferedAngleSActionSSIv�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIA�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIL�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@՟5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSII�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI+�+PSResolutionModeSenumSSIi�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ڡ%PSFitImageSboolSSI	�!PSCropSboolSSI:�#PSCenterSboolSSIn�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI(�*PSResetCameraSActionSSIK�ShadingCWn�CullingS
CullingOff��-ModelL)v)SProducer BackModelSCameraӣVersionI�w�Properties70A�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?p�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADD�V@DL��h�HPSLcl RotationSLcl RotationSSAD�D�V�D��,PS	MultiTakeSintSIntegerSIݥ-PSManipulationModeSenumSSI@�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD}�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIC�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIħ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIJ�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIԨ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIX�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIé*PS
TransformableSboolSSI��(PSCullingModeSenumSSI4�-PSShowTrajectoriesSboolSSIm�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSIK�!PSCropSboolSSI|�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI2�4PSDisplay2DMagnifierFrameSboolSSIj�*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff�.ModelL$v)SProducer RightModelSCamera�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSIU�NPSLcl TranslationSLcl TranslationSSADL�@D�V@D��HPSLcl RotationSLcl RotationSSAD�f@D�D�f@�,PS	MultiTakeSintSIntegerSI �-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI>�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIư2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIF�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIѱ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@Z�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIβ%PSPickableSboolSSI�*PS
TransformableSboolSSI<�(PSCullingModeSenumSSIw�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?,�0PSAspectHSdoubleSNumberSD�?_�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSI3�2PSForegroundTransparentSboolSSIu�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSIеShadingCW�CullingS
CullingOff�-ModelL�v)SProducer LeftModelSCameraX�VersionI���Properties70ƶGPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI;�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADL��D�V@Dѷ,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 TopModelSCameraC�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI&�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADDy�@D��HPSLcl RotationSLcl RotationSSAD�V�D�D�V��,PS	MultiTakeSintSIntegerSIM�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI(�-PSPivotsVisibilitySenumSSIk�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI4�3PSRotationAxisVisibilitySboolSSIs�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSID�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI3�*PS
TransformableSboolSSIi�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?Y�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI �&PS	KeepRatioSboolSSI`�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW �CullingS
CullingOffq�/ModelLHQv)SProducer BottomModelSCamera��VersionI�+�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?$�!PSShowSboolSSIj�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD��D�HPSLcl RotationSLcl RotationSSAD�V@D�D�V@V�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD1�/PSSetPreferedAngleSActionSSIl�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI7�2PSRotationRefVisibilitySboolSSIx�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIB�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI?�%PSPickableSboolSSIw�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI!�+PSResolutionModeSenumSSI_�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI0�#PSCenterSboolSSId�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSIA�ShadingCWd�CullingS
CullingOff��7ModelL�A�:SCamera SwitcherModelSCameraSwitcher��VersionI���Properties70A�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?p�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI��,PS	MultiTakeSintSIntegerSI+�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSII�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIQ�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI"�8PSReferentialSizeSdoubleSNumberSD(@e�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIG�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��ShadingCW��CullingS
CullingOffW�+ModelL�F�:SReferenceModelSLimbNode+�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�V@D�D��+PSRotationActiveSboolSSI	�(PSInheritTypeSenumSSI^�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��EPSVisibility InheritanceSVisibility InheritanceSSI1�,PS	MultiTakeSintSIntegerSIl�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIG�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIS�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIc�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIR�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�3PSlockInfluenceWeightsSBoolSSAUI'�ShadingCYJ�CullingS
CullingOff��'ModelL�K�:SPivotModelSLimbNode��VersionI�y�Properties70��+PSRotationActiveSboolSSI1�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�EPSVisibility InheritanceSVisibility InheritanceSSIY�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD4�/PSSetPreferedAngleSActionSSIo�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI:�2PSRotationRefVisibilitySboolSSI{�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIE�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIB�%PSPickableSboolSSIz�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIl�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff|�&ModelL�P�:SRootModelSLimbNode�VersionI�6�Properties70b�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD3�8PSDefaultAttributeIndexSintSIntegerSI��HPSLcl RotationSLcl RotationSSAD�V�D`�m�9D������EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIQ�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI,�-PSPivotsVisibilitySenumSSIo�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI8�3PSRotationAxisVisibilitySboolSSIw�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIH�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI7�*PS
TransformableSboolSSIm�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI)�CPSLimbLength 1SNumberSSAUD�?DDY@L�ShadingCYo�CullingS
CullingOff��&ModelL�U�:SHipsModelSLimbNode��VersionI�Q�Properties70�+PSRotationActiveSboolSSIU�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIM�OPSLcl TranslationSLcl TranslationSSA+D �N@D�̰W@D���5���IPSLcl RotationSLcl RotationSSA+D���D��@D`K����EPSVisibility InheritanceSVisibility InheritanceSSI1�,PS	MultiTakeSintSIntegerSIl�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIG�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIS�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIc�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIR�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUID�CPSLimbLength 1SNumberSSAUD�?DDY@g�ShadingCY��CullingS
CullingOff��'ModelL[�:SSpineModelSLimbNode��VersionI�l�Properties70;�+PSRotationActiveSboolSSIq�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIh�NPSLcl TranslationSLcl TranslationSSAD�D�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D`��@D�6���D�#��EPSVisibility InheritanceSVisibility InheritanceSSIL�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD'�/PSSetPreferedAngleSActionSSIb�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI-�2PSRotationRefVisibilitySboolSSIn�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI8�6PSGeometricCenterVisibilitySboolSSI~�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI5�%PSPickableSboolSSIm�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI_�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�'ModelL`�:SChestModelSLimbNode�VersionI��Properties70V�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD'8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADDA0@D�2ſ�IPSLcl RotationSLcl RotationSSA+DD�a�<D-EPSVisibility InheritanceSVisibility InheritanceSSIg,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDB/PSSetPreferedAngleSActionSSI}-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIH2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIS6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIP%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI)"PSliwSBoolSSAUIzCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�&ModelLe�:SNeckModelSLimbNodeVersionI��Properties70p+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDA8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD(=D���9@D <�	��IPSLcl RotationSLcl RotationSSA+D@�/�?Djj�D �>�?G	EPSVisibility InheritanceSVisibility InheritanceSSI�	,PS	MultiTakeSintSIntegerSI�	-PSManipulationModeSenumSSI
UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD\
/PSSetPreferedAngleSActionSSI�
-PSPivotsVisibilitySenumSSI�
5PSRotationLimitsVisibilitySboolSSI":PSLocalTranslationRefVisibilitySboolSSIb2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI)9PSHierarchicalCenterVisibilitySboolSSIm6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI7
3PSDefaultKeyingGroupEnumSenumSSIj
%PSPickableSboolSSI�
*PS
TransformableSboolSSI�
(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIC"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff&ModelLj�:SHeadModelSLimbNode8VersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDD[8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADG=D 4� @D s�?IPSLcl RotationSLcl RotationSSA+D��u�D�}6��D�#�@aEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI9UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDv/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI<:PSLocalTranslationRefVisibilitySboolSSI|2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIC9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIQ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI--PSShowTrajectoriesSboolSSI]"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff)ModelL o�:SLeftEyeModelSLimbNodeUVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI2GPS
ScalingMaxSVector3DSVectorSDDDx8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@+IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<~EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIVUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIY:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSI`9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@-5PSDefaultKeyingGroupSintSIntegerSIn3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIJ-PSShowTrajectoriesSboolSSIz"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOfft'*ModelL(t�:SRightEyeModelSLimbNodesVersionI�.'Properties70�*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI3 (PSInheritTypeSenumSSI� GPS
ScalingMaxSVector3DSVectorSDDD� 8PSDefaultAttributeIndexSintSIntegerSI*!NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@�!IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<�!EPSVisibility InheritanceSVisibility InheritanceSSI",PS	MultiTakeSintSIntegerSII"-PSManipulationModeSenumSSI�"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�"/PSSetPreferedAngleSActionSSI$#-PSPivotsVisibilitySenumSSIg#5PSRotationLimitsVisibilitySboolSSI�#:PSLocalTranslationRefVisibilitySboolSSI�#2PSRotationRefVisibilitySboolSSI0$3PSRotationAxisVisibilitySboolSSIo$1PSScalingRefVisibilitySboolSSI�$9PSHierarchicalCenterVisibilitySboolSSI�$6PSGeometricCenterVisibilitySboolSSI@%8PSReferentialSizeSdoubleSNumberSD(@�%5PSDefaultKeyingGroupSintSIntegerSI�%3PSDefaultKeyingGroupEnumSenumSSI�%%PSPickableSboolSSI/&*PS
TransformableSboolSSIe&(PSCullingModeSenumSSI�&-PSShowTrajectoriesSboolSSI�&"PSliwSBoolSSAUI!'CPSLimbLength 1SNumberSSAUD�?DDY@D'ShadingCYg'CullingS
CullingOff�/%ModelL0y�:S
JawModelSLimbNode�'VersionI��/Properties70(+PSRotationActiveSboolSSIL((PSInheritTypeSenumSSI�(GPS
ScalingMaxSVector3DSVectorSDDD�(7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@,)8PSDefaultAttributeIndexSintSIntegerSI�)NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?�)IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<2*EPSVisibility InheritanceSVisibility InheritanceSSIl*,PS	MultiTakeSintSIntegerSI�*-PSManipulationModeSenumSSI
+UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDG+/PSSetPreferedAngleSActionSSI�+-PSPivotsVisibilitySenumSSI�+5PSRotationLimitsVisibilitySboolSSI
,:PSLocalTranslationRefVisibilitySboolSSIM,2PSRotationRefVisibilitySboolSSI�,3PSRotationAxisVisibilitySboolSSI�,1PSScalingRefVisibilitySboolSSI-9PSHierarchicalCenterVisibilitySboolSSIX-6PSGeometricCenterVisibilitySboolSSI�-8PSReferentialSizeSdoubleSNumberSD(@�-5PSDefaultKeyingGroupSintSIntegerSI".3PSDefaultKeyingGroupEnumSenumSSIU.%PSPickableSboolSSI�.*PS
TransformableSboolSSI�.(PSCullingModeSenumSSI�.-PSShowTrajectoriesSboolSSI./"PSliwSBoolSSAUI/CPSLimbLength 1SNumberSSAUD�?DDY@�/ShadingCY�/CullingS
CullingOff�7,ModelL��:STongueBackModelSLimbNode)0VersionI��7Properties70{0+PSRotationActiveSboolSSI�0(PSInheritTypeSenumSSI1GPS
ScalingMaxSVector3DSVectorSDDDL18PSDefaultAttributeIndexSintSIntegerSI�1NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?�1IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<R2EPSVisibility InheritanceSVisibility InheritanceSSI�2,PS	MultiTakeSintSIntegerSI�2-PSManipulationModeSenumSSI*3UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDg3/PSSetPreferedAngleSActionSSI�3-PSPivotsVisibilitySenumSSI�35PSRotationLimitsVisibilitySboolSSI-4:PSLocalTranslationRefVisibilitySboolSSIm42PSRotationRefVisibilitySboolSSI�43PSRotationAxisVisibilitySboolSSI�41PSScalingRefVisibilitySboolSSI459PSHierarchicalCenterVisibilitySboolSSIx56PSGeometricCenterVisibilitySboolSSI�58PSReferentialSizeSdoubleSNumberSD(@65PSDefaultKeyingGroupSintSIntegerSIB63PSDefaultKeyingGroupEnumSenumSSIu6%PSPickableSboolSSI�6*PS
TransformableSboolSSI�6(PSCullingModeSenumSSI7-PSShowTrajectoriesSboolSSIN7"PSliwSBoolSSAUI�7CPSLimbLength 1SNumberSSAUD�?DDY@�7ShadingCY�7CullingS
CullingOff@+ModelL� �:STongueTipModelSLimbNodeH8VersionI��?Properties70�8+PSRotationActiveSboolSSI�8(PSInheritTypeSenumSSI%9GPS
ScalingMaxSVector3DSVectorSDDDk98PSDefaultAttributeIndexSintSIntegerSI�9NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@:IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<q:EPSVisibility InheritanceSVisibility InheritanceSSI�:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSII;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�;/PSSetPreferedAngleSActionSSI�;-PSPivotsVisibilitySenumSSI<5PSRotationLimitsVisibilitySboolSSIL<:PSLocalTranslationRefVisibilitySboolSSI�<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI=1PSScalingRefVisibilitySboolSSIS=9PSHierarchicalCenterVisibilitySboolSSI�=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@ >5PSDefaultKeyingGroupSintSIntegerSIa>3PSDefaultKeyingGroupEnumSenumSSI�>%PSPickableSboolSSI�>*PS
TransformableSboolSSI?(PSCullingModeSenumSSI=?-PSShowTrajectoriesSboolSSIm?"PSliwSBoolSSAUI�?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY@CullingS
CullingOff3H.ModelL�%�:SLeftLipLowerModelSLimbNodej@VersionI��GProperties70�@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSIGAGPS
ScalingMaxSVector3DSVectorSDDD�A8PSDefaultAttributeIndexSintSIntegerSI�ANPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @@BIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSIC-PSManipulationModeSenumSSIkCUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSI&D5PSRotationLimitsVisibilitySboolSSInD:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSI�D3PSRotationAxisVisibilitySboolSSI.E1PSScalingRefVisibilitySboolSSIuE9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSI�E8PSReferentialSizeSdoubleSNumberSD(@BF5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSI�F*PS
TransformableSboolSSI$G(PSCullingModeSenumSSI_G-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@HShadingCY&HCullingS
CullingOff�P(ModelL�*�:S
JawENDModelSLimbNode�HVersionI�APProperties70�H*PS
RotationOrderSenumSSII+PSRotationActiveSboolSSIFI(PSInheritTypeSenumSSI�IGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSI=JNPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�JIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<�JEPSVisibility InheritanceSVisibility InheritanceSSI!K,PS	MultiTakeSintSIntegerSI\K-PSManipulationModeSenumSSI�KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�K/PSSetPreferedAngleSActionSSI7L-PSPivotsVisibilitySenumSSIzL5PSRotationLimitsVisibilitySboolSSI�L:PSLocalTranslationRefVisibilitySboolSSIM2PSRotationRefVisibilitySboolSSICM3PSRotationAxisVisibilitySboolSSI�M1PSScalingRefVisibilitySboolSSI�M9PSHierarchicalCenterVisibilitySboolSSI
N6PSGeometricCenterVisibilitySboolSSISN8PSReferentialSizeSdoubleSNumberSD(@�N5PSDefaultKeyingGroupSintSIntegerSI�N3PSDefaultKeyingGroupEnumSenumSSI
O%PSPickableSboolSSIBO*PS
TransformableSboolSSIxO(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSI�O"PSliwSBoolSSAUI4PCPSLimbLength 1SNumberSSAUD�?DDY@WPShadingCYzPCullingS
CullingOff�X/ModelL�/�:SRightLipLowerModelSLimbNode�PVersionI�dXProperties703Q+PSRotationActiveSboolSSIiQ(PSInheritTypeSenumSSI�QGPS
ScalingMaxSVector3DSVectorSDDDR8PSDefaultAttributeIndexSintSIntegerSI`RNPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @�RIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<
SEPSVisibility InheritanceSVisibility InheritanceSSIDS,PS	MultiTakeSintSIntegerSIS-PSManipulationModeSenumSSI�SUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDT/PSSetPreferedAngleSActionSSIZT-PSPivotsVisibilitySenumSSI�T5PSRotationLimitsVisibilitySboolSSI�T:PSLocalTranslationRefVisibilitySboolSSI%U2PSRotationRefVisibilitySboolSSIfU3PSRotationAxisVisibilitySboolSSI�U1PSScalingRefVisibilitySboolSSI�U9PSHierarchicalCenterVisibilitySboolSSI0V6PSGeometricCenterVisibilitySboolSSIvV8PSReferentialSizeSdoubleSNumberSD(@�V5PSDefaultKeyingGroupSintSIntegerSI�V3PSDefaultKeyingGroupEnumSenumSSI-W%PSPickableSboolSSIeW*PS
TransformableSboolSSI�W(PSCullingModeSenumSSI�W-PSShowTrajectoriesSboolSSIX"PSliwSBoolSSAUIWXCPSLimbLength 1SNumberSSAUD�?DDY@zXShadingCY�XCullingS
CullingOff�`0ModelL�4�:SRightLipCornerModelSLimbNodeYVersionI��`Properties70WY+PSRotationActiveSboolSSI�Y(PSInheritTypeSenumSSI�YGPS
ScalingMaxSVector3DSVectorSDDD(Z8PSDefaultAttributeIndexSintSIntegerSI�ZNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@�ZIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<.[EPSVisibility InheritanceSVisibility InheritanceSSIh[,PS	MultiTakeSintSIntegerSI�[-PSManipulationModeSenumSSI\UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDC\/PSSetPreferedAngleSActionSSI~\-PSPivotsVisibilitySenumSSI�\5PSRotationLimitsVisibilitySboolSSI	]:PSLocalTranslationRefVisibilitySboolSSII]2PSRotationRefVisibilitySboolSSI�]3PSRotationAxisVisibilitySboolSSI�]1PSScalingRefVisibilitySboolSSI^9PSHierarchicalCenterVisibilitySboolSSIT^6PSGeometricCenterVisibilitySboolSSI�^8PSReferentialSizeSdoubleSNumberSD(@�^5PSDefaultKeyingGroupSintSIntegerSI_3PSDefaultKeyingGroupEnumSenumSSIQ_%PSPickableSboolSSI�_*PS
TransformableSboolSSI�_(PSCullingModeSenumSSI�_-PSShowTrajectoriesSboolSSI*`"PSliwSBoolSSAUI{`CPSLimbLength 1SNumberSSAUD�?DDY@�`ShadingCY�`CullingS
CullingOff�h/ModelL:�:SLeftLipCornerModelSLimbNode(aVersionI��hProperties70za+PSRotationActiveSboolSSI�a(PSInheritTypeSenumSSIbGPS
ScalingMaxSVector3DSVectorSDDDKb8PSDefaultAttributeIndexSintSIntegerSI�bNPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@�bIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<QcEPSVisibility InheritanceSVisibility InheritanceSSI�c,PS	MultiTakeSintSIntegerSI�c-PSManipulationModeSenumSSI)dUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDfd/PSSetPreferedAngleSActionSSI�d-PSPivotsVisibilitySenumSSI�d5PSRotationLimitsVisibilitySboolSSI,e:PSLocalTranslationRefVisibilitySboolSSIle2PSRotationRefVisibilitySboolSSI�e3PSRotationAxisVisibilitySboolSSI�e1PSScalingRefVisibilitySboolSSI3f9PSHierarchicalCenterVisibilitySboolSSIwf6PSGeometricCenterVisibilitySboolSSI�f8PSReferentialSizeSdoubleSNumberSD(@g5PSDefaultKeyingGroupSintSIntegerSIAg3PSDefaultKeyingGroupEnumSenumSSItg%PSPickableSboolSSI�g*PS
TransformableSboolSSI�g(PSCullingModeSenumSSIh-PSShowTrajectoriesSboolSSIMh"PSliwSBoolSSAUI�hCPSLimbLength 1SNumberSSAUD�?DDY@�hShadingCY�hCullingS
CullingOffq.ModelL?�:SLeftLipUpperModelSLimbNodeJiVersionI��pProperties70�i+PSRotationActiveSboolSSI�i(PSInheritTypeSenumSSI'jGPS
ScalingMaxSVector3DSVectorSDDDmj8PSDefaultAttributeIndexSintSIntegerSI�jNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@ kIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<skEPSVisibility InheritanceSVisibility InheritanceSSI�k,PS	MultiTakeSintSIntegerSI�k-PSManipulationModeSenumSSIKlUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�l/PSSetPreferedAngleSActionSSI�l-PSPivotsVisibilitySenumSSIm5PSRotationLimitsVisibilitySboolSSINm:PSLocalTranslationRefVisibilitySboolSSI�m2PSRotationRefVisibilitySboolSSI�m3PSRotationAxisVisibilitySboolSSIn1PSScalingRefVisibilitySboolSSIUn9PSHierarchicalCenterVisibilitySboolSSI�n6PSGeometricCenterVisibilitySboolSSI�n8PSReferentialSizeSdoubleSNumberSD(@"o5PSDefaultKeyingGroupSintSIntegerSIco3PSDefaultKeyingGroupEnumSenumSSI�o%PSPickableSboolSSI�o*PS
TransformableSboolSSIp(PSCullingModeSenumSSI?p-PSShowTrajectoriesSboolSSIop"PSliwSBoolSSAUI�pCPSLimbLength 1SNumberSSAUD�?DDY@�pShadingCYqCullingS
CullingOff4y-ModelLD�:SLeftNostrilModelSLimbNodekqVersionI��xProperties70�q+PSRotationActiveSboolSSI�q(PSInheritTypeSenumSSIHrGPS
ScalingMaxSVector3DSVectorSDDD�r8PSDefaultAttributeIndexSintSIntegerSI�rNPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@AsIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<�sEPSVisibility InheritanceSVisibility InheritanceSSI�s,PS	MultiTakeSintSIntegerSI	t-PSManipulationModeSenumSSIltUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�t/PSSetPreferedAngleSActionSSI�t-PSPivotsVisibilitySenumSSI'u5PSRotationLimitsVisibilitySboolSSIou:PSLocalTranslationRefVisibilitySboolSSI�u2PSRotationRefVisibilitySboolSSI�u3PSRotationAxisVisibilitySboolSSI/v1PSScalingRefVisibilitySboolSSIvv9PSHierarchicalCenterVisibilitySboolSSI�v6PSGeometricCenterVisibilitySboolSSIw8PSReferentialSizeSdoubleSNumberSD(@Cw5PSDefaultKeyingGroupSintSIntegerSI�w3PSDefaultKeyingGroupEnumSenumSSI�w%PSPickableSboolSSI�w*PS
TransformableSboolSSI%x(PSCullingModeSenumSSI`x-PSShowTrajectoriesSboolSSI�x"PSliwSBoolSSAUI�xCPSLimbLength 1SNumberSSAUD�?DDY@yShadingCY'yCullingS
CullingOffS�+ModelLI�:SLeftCheekModelSLimbNode�yVersionI�
�Properties70�y+PSRotationActiveSboolSSIz(PSInheritTypeSenumSSIgzGPS
ScalingMaxSVector3DSVectorSDDD�z8PSDefaultAttributeIndexSintSIntegerSI	{NPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@`{IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<�{EPSVisibility InheritanceSVisibility InheritanceSSI�{,PS	MultiTakeSintSIntegerSI(|-PSManipulationModeSenumSSI�|UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�|/PSSetPreferedAngleSActionSSI}-PSPivotsVisibilitySenumSSIF}5PSRotationLimitsVisibilitySboolSSI�}:PSLocalTranslationRefVisibilitySboolSSI�}2PSRotationRefVisibilitySboolSSI~3PSRotationAxisVisibilitySboolSSIN~1PSScalingRefVisibilitySboolSSI�~9PSHierarchicalCenterVisibilitySboolSSI�~6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@b5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSID�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@#�ShadingCYF�CullingS
CullingOffx�1ModelL N�:SLeftEyelidLowerModelSLimbNode��VersionI�2�Properties70�+PSRotationActiveSboolSSI7�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD҂8PSDefaultAttributeIndexSintSIntegerSI.�NPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@��IPSLcl RotationSLcl RotationSSA+D�D`��<D e|�<؃EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIM�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI(�-PSPivotsVisibilitySenumSSIk�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI4�3PSRotationAxisVisibilitySboolSSIs�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSID�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIȇ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI3�*PS
TransformableSboolSSIi�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIԈ"PSliwSBoolSSAUI%�CPSLimbLength 1SNumberSSAUD�?DDY@H�ShadingCYk�CullingS
CullingOff��1ModelL(S�:SLeftEyelidUpperModelSLimbNodeԉVersionI�W�Properties70&�+PSRotationActiveSboolSSI\�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIS�NPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @��IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<��EPSVisibility InheritanceSVisibility InheritanceSSI7�,PS	MultiTakeSintSIntegerSIr�-PSManipulationModeSenumSSIՌUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIM�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI؍:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIY�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIߎ9PSHierarchicalCenterVisibilitySboolSSI#�6PSGeometricCenterVisibilitySboolSSIi�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI �%PSPickableSboolSSIX�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIɐ-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIJ�CPSLimbLength 1SNumberSSAUD�?DDY@m�ShadingCY��CullingS
CullingOff��/ModelLi:SLeftInnerBrowModelSLimbNode��VersionI�z�Properties70I�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIԒGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIv�NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@͓IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�< �EPSVisibility InheritanceSVisibility InheritanceSSIZ�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD5�/PSSetPreferedAngleSActionSSIp�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI;�2PSRotationRefVisibilitySboolSSI|�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIF�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ϗ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIC�%PSPickableSboolSSI{�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIm�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�0ModelL n:SLeftIOuterBrowModelSLimbNode�VersionI�֡Properties70l�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSIۚ(PSInheritTypeSenumSSI0�GPS
ScalingMaxSVector3DSVectorSDDDv�8PSDefaultAttributeIndexSintSIntegerSIқNPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@)�IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<|�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIT�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI̝-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIW�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI؞3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI^�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@+�5PSDefaultKeyingGroupSintSIntegerSIl�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIנ*PS
TransformableSboolSSI
�(PSCullingModeSenumSSIH�-PSShowTrajectoriesSboolSSIx�"PSliwSBoolSSAUIɡCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff@�0ModelL(s:SRightInnerBrowModelSLimbNodew�VersionI���Properties70ɢ+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIT�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@M�IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<��EPSVisibility InheritanceSVisibility InheritanceSSIڤ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIx�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI3�5PSRotationLimitsVisibilitySboolSSI{�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI;�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIƧ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@O�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIè%PSPickableSboolSSI��*PS
TransformableSboolSSI1�(PSCullingModeSenumSSIl�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY3�CullingS
CullingOff��1ModelL0x:SRightIOuterBrowModelSLimbNode��VersionI�W�Properties70�*PS
RotationOrderSenumSSI&�+PSRotationActiveSboolSSI\�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIS�NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@��IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<��EPSVisibility InheritanceSVisibility InheritanceSSI7�,PS	MultiTakeSintSIntegerSIr�-PSManipulationModeSenumSSIխUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIM�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIخ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIY�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI߯9PSHierarchicalCenterVisibilitySboolSSI#�6PSGeometricCenterVisibilitySboolSSIi�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI �%PSPickableSboolSSIX�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIɱ-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIJ�CPSLimbLength 1SNumberSSAUD�?DDY@m�ShadingCY��CullingS
CullingOffú2ModelL8}:SRightEyelidUpperModelSLimbNode��VersionI�}�Properties70L�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI׳GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIy�NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @дIPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<#�EPSVisibility InheritanceSVisibility InheritanceSSI]�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD8�/PSSetPreferedAngleSActionSSIs�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI>�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSII�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@Ҹ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIF�%PSPickableSboolSSI~�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIp�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��2ModelL@�:SRightEyelidLowerModelSLimbNode �VersionI���Properties70r�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDC�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@��IPSLcl RotationSLcl RotationSSA+D�D`��<D e|�<I�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI!�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD^�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIܾ5PSRotationLimitsVisibilitySboolSSI$�:PSLocalTranslationRefVisibilitySboolSSId�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI+�9PSHierarchicalCenterVisibilitySboolSSIo�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI9�3PSDefaultKeyingGroupEnumSenumSSIl�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIE�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff	�,ModelLH�:SRightCheekModelSLimbNode@�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDc�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@�IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<i�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIA�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD~�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSID�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIK�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIY�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI5�-PSShowTrajectoriesSboolSSIe�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff+�.ModelLP�:SRightNostrilModelSLimbNodeb�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI?�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@8�IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIc�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIf�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI&�1PSScalingRefVisibilitySboolSSIm�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@:�5PSDefaultKeyingGroupSintSIntegerSI{�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIW�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOffN�/ModelLX�:SRightLipUpperModelSLimbNode��VersionI��Properties70��+PSRotationActiveSboolSSI
�(PSInheritTypeSenumSSIb�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@[�IPSLcl RotationSLcl RotationSSA+D ܥ�<D`��<D e|�<��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI#�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIA�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI
�3PSRotationAxisVisibilitySboolSSII�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@]�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI	�*PS
TransformableSboolSSI?�(PSCullingModeSenumSSIz�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYA�CullingS
CullingOff��/ModelL`�:SRightShoulderModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc�P�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD!�8PSDefaultAttributeIndexSintSIntegerSI}�NPSLcl TranslationSLcl TranslationSSAD����D@�)6@D@
M����IPSLcl RotationSLcl RotationSSA+D`�	�D�=@D�³�?'�EPSVisibility InheritanceSVisibility InheritanceSSIa�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD<�/PSSetPreferedAngleSActionSSIw�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIB�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI	�9PSHierarchicalCenterVisibilitySboolSSIM�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIJ�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI#�"PSliwSBoolSSAUIt�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff;�*ModelLh�:SRightArmModelSLimbNode�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIO�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��$@D �\0�D`��վH�IPSLcl RotationSLcl RotationSSA+Ds�/�D�`[��D��S@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIs�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI.�5PSRotationLimitsVisibilitySboolSSIv�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI6�1PSScalingRefVisibilitySboolSSI}�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@J�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI,�(PSCullingModeSenumSSIg�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY.�CullingS
CullingOff��.ModelLp�:SRightForeArmModelSLimbNode��VersionI�m�Properties70�HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?<�+PSRotationActiveSboolSSIr�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD
�8PSDefaultAttributeIndexSintSIntegerSIi�NPSLcl TranslationSLcl TranslationSSAD`�W9�D �<�?D`,�����IPSLcl RotationSLcl RotationSSA+D�\rB@D�e@D@��@�EPSVisibility InheritanceSVisibility InheritanceSSIM�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD(�/PSSetPreferedAngleSActionSSIc�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI.�2PSRotationRefVisibilitySboolSSIo�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI9�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI6�%PSPickableSboolSSIn�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI`�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��+ModelL��:SRightHandModelSLimbNode	�VersionI���Properties70[�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD,�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D����D`U|�?D1�$�2�EPSVisibility InheritanceSVisibility InheritanceSSIl�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDG�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI
�:PSLocalTranslationRefVisibilitySboolSSIM�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIX�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI"�3PSDefaultKeyingGroupEnumSenumSSIU�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI.�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffM1ModelL��:SRightHandPinky1ModelSLimbNode.�VersionI�Properties70��HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q����+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIa�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD����D�K�ɿD�ۚ�Z�IPSLcl RotationSLcl RotationSSA+D��P	�D�L�+@D���:@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI"-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI@5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI	3PSRotationAxisVisibilitySboolSSIH1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@\5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSI>(PSCullingModeSenumSSIy-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY@CullingS
CullingOff�
1ModelL��:SRightHandPinky2ModelSLimbNode�VersionI��
Properties70HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?Q+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD"8PSDefaultAttributeIndexSintSIntegerSI~NPSLcl TranslationSLcl TranslationSSAD���D�(���D`���IPSLcl RotationSLcl RotationSSA+D n�D ��?D@��;@(EPSVisibility InheritanceSVisibility InheritanceSSIb,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD=	/PSSetPreferedAngleSActionSSIx	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI
:PSLocalTranslationRefVisibilitySboolSSIC
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI
9PSHierarchicalCenterVisibilitySboolSSIN6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIK%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI$
"PSliwSBoolSSAUIu
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOff�1ModelL��:SRightHandPinky3ModelSLimbNode$VersionI��Properties70v+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDG8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD�8$�D��V��D �@��IPSLcl RotationSLcl RotationSSA+D�|�D���@D`0�B@MEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI%UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDb/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI(:PSLocalTranslationRefVisibilitySboolSSIh2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI/9PSHierarchicalCenterVisibilitySboolSSIs6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI=3PSDefaultKeyingGroupEnumSenumSSIp%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSII"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOffg0ModelL��:SRightHandRing1ModelSLimbNodeHVersionI�!Properties70�HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c��+PSRotationActiveSboolSSI&(PSInheritTypeSenumSSI{GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD�H=�Djs�?D �m�tIPSLcl RotationSLcl RotationSSA+DzؿD��<@D�J:@�EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSI<-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIZ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI#3PSRotationAxisVisibilitySboolSSIb1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI38PSReferentialSizeSdoubleSNumberSD(@v5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI"*PS
TransformableSboolSSIX(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@7ShadingCYZCullingS
CullingOff�&0ModelL�:SRightHandRing2ModelSLimbNode�VersionI��&Properties701HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{�j+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD; 8PSDefaultAttributeIndexSintSIntegerSI� NPSLcl TranslationSLcl TranslationSSAD�'�D ښ��D`K�߿� IPSLcl RotationSLcl RotationSSA+DQ��D��?D@�<@A!EPSVisibility InheritanceSVisibility InheritanceSSI{!,PS	MultiTakeSintSIntegerSI�!-PSManipulationModeSenumSSI"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDV"/PSSetPreferedAngleSActionSSI�"-PSPivotsVisibilitySenumSSI�"5PSRotationLimitsVisibilitySboolSSI#:PSLocalTranslationRefVisibilitySboolSSI\#2PSRotationRefVisibilitySboolSSI�#3PSRotationAxisVisibilitySboolSSI�#1PSScalingRefVisibilitySboolSSI#$9PSHierarchicalCenterVisibilitySboolSSIg$6PSGeometricCenterVisibilitySboolSSI�$8PSReferentialSizeSdoubleSNumberSD(@�$5PSDefaultKeyingGroupSintSIntegerSI1%3PSDefaultKeyingGroupEnumSenumSSId%%PSPickableSboolSSI�%*PS
TransformableSboolSSI�%(PSCullingModeSenumSSI
&-PSShowTrajectoriesSboolSSI=&"PSliwSBoolSSAUI�&CPSLimbLength 1SNumberSSAUD�?DDY@�&ShadingCY�&CullingS
CullingOff/0ModelL �:SRightHandRing3ModelSLimbNode<'VersionI��.Properties70�'+PSRotationActiveSboolSSI�'(PSInheritTypeSenumSSI(GPS
ScalingMaxSVector3DSVectorSDDD_(8PSDefaultAttributeIndexSintSIntegerSI�(NPSLcl TranslationSLcl TranslationSSAD@���D�
��D��ݿ)IPSLcl RotationSLcl RotationSSA+D��y�D ��?D�EC@e)EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSI=*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDz*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI�*5PSRotationLimitsVisibilitySboolSSI@+:PSLocalTranslationRefVisibilitySboolSSI�+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI,1PSScalingRefVisibilitySboolSSIG,9PSHierarchicalCenterVisibilitySboolSSI�,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@-5PSDefaultKeyingGroupSintSIntegerSIU-3PSDefaultKeyingGroupEnumSenumSSI�-%PSPickableSboolSSI�-*PS
TransformableSboolSSI�-(PSCullingModeSenumSSI1.-PSShowTrajectoriesSboolSSIa."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY�.CullingS
CullingOff�72ModelL%�:SRightHandMiddle1ModelSLimbNodeb/VersionI�;7Properties70�/HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�
0+PSRotationActiveSboolSSI@0(PSInheritTypeSenumSSI�0GPS
ScalingMaxSVector3DSVectorSDDD�08PSDefaultAttributeIndexSintSIntegerSI71NPSLcl TranslationSLcl TranslationSSAD�QB�D<��?D@��?�1IPSLcl RotationSLcl RotationSSA+D@�D�?D��t�D��7@�1EPSVisibility InheritanceSVisibility InheritanceSSI2,PS	MultiTakeSintSIntegerSIV2-PSManipulationModeSenumSSI�2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�2/PSSetPreferedAngleSActionSSI13-PSPivotsVisibilitySenumSSIt35PSRotationLimitsVisibilitySboolSSI�3:PSLocalTranslationRefVisibilitySboolSSI�32PSRotationRefVisibilitySboolSSI=43PSRotationAxisVisibilitySboolSSI|41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI56PSGeometricCenterVisibilitySboolSSIM58PSReferentialSizeSdoubleSNumberSD(@�55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI6%PSPickableSboolSSI<6*PS
TransformableSboolSSIr6(PSCullingModeSenumSSI�6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI.7CPSLimbLength 1SNumberSSAUD�?DDY@Q7ShadingCYt7CullingS
CullingOff�?2ModelL*�:SRightHandMiddle2ModelSLimbNode�7VersionI��?Properties70M8HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9��8+PSRotationActiveSboolSSI�8(PSInheritTypeSenumSSI9GPS
ScalingMaxSVector3DSVectorSDDDW98PSDefaultAttributeIndexSintSIntegerSI�9NPSLcl TranslationSLcl TranslationSSAD`��D���?D@��?
:IPSLcl RotationSLcl RotationSSA+D`ګ�?D泿D`�M<@]:EPSVisibility InheritanceSVisibility InheritanceSSI�:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSI5;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDr;/PSSetPreferedAngleSActionSSI�;-PSPivotsVisibilitySenumSSI�;5PSRotationLimitsVisibilitySboolSSI8<:PSLocalTranslationRefVisibilitySboolSSIx<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI�<1PSScalingRefVisibilitySboolSSI?=9PSHierarchicalCenterVisibilitySboolSSI�=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@>5PSDefaultKeyingGroupSintSIntegerSIM>3PSDefaultKeyingGroupEnumSenumSSI�>%PSPickableSboolSSI�>*PS
TransformableSboolSSI�>(PSCullingModeSenumSSI)?-PSShowTrajectoriesSboolSSIY?"PSliwSBoolSSAUI�?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY�?CullingS
CullingOff#H2ModelL /�:SRightHandMiddle3ModelSLimbNodeZ@VersionI��GProperties70�@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSI7AGPS
ScalingMaxSVector3DSVectorSDDD}A8PSDefaultAttributeIndexSintSIntegerSI�ANPSLcl TranslationSLcl TranslationSSAD >u
�D@�&�D�I��?0BIPSLcl RotationSLcl RotationSSA+D��?D�ЊҿD�F@�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSI�B-PSManipulationModeSenumSSI[CUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSID5PSRotationLimitsVisibilitySboolSSI^D:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSI�D3PSRotationAxisVisibilitySboolSSIE1PSScalingRefVisibilitySboolSSIeE9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSI�E8PSReferentialSizeSdoubleSNumberSD(@2F5PSDefaultKeyingGroupSintSIntegerSIsF3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSI�F*PS
TransformableSboolSSIG(PSCullingModeSenumSSIOG-PSShowTrajectoriesSboolSSIG"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@�GShadingCYHCullingS
CullingOff�P1ModelL(4�:SRightHandIndex1ModelSLimbNodeHVersionI�XPProperties70�HHPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��'I+PSRotationActiveSboolSSI]I(PSInheritTypeSenumSSI�IGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSITJNPSLcl TranslationSLcl TranslationSSAD�e��D`zҿ�D��y@�JIPSLcl RotationSLcl RotationSSA+D �7ӿD �&�D m�.@�JEPSVisibility InheritanceSVisibility InheritanceSSI8K,PS	MultiTakeSintSIntegerSIsK-PSManipulationModeSenumSSI�KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDL/PSSetPreferedAngleSActionSSINL-PSPivotsVisibilitySenumSSI�L5PSRotationLimitsVisibilitySboolSSI�L:PSLocalTranslationRefVisibilitySboolSSIM2PSRotationRefVisibilitySboolSSIZM3PSRotationAxisVisibilitySboolSSI�M1PSScalingRefVisibilitySboolSSI�M9PSHierarchicalCenterVisibilitySboolSSI$N6PSGeometricCenterVisibilitySboolSSIjN8PSReferentialSizeSdoubleSNumberSD(@�N5PSDefaultKeyingGroupSintSIntegerSI�N3PSDefaultKeyingGroupEnumSenumSSI!O%PSPickableSboolSSIYO*PS
TransformableSboolSSI�O(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSI�O"PSliwSBoolSSAUIKPCPSLimbLength 1SNumberSSAUD�?DDY@nPShadingCY�PCullingS
CullingOffY1ModelL09�:SRightHandIndex2ModelSLimbNode�PVersionI��XProperties70iQHPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\��Q+PSRotationActiveSboolSSI�Q(PSInheritTypeSenumSSI-RGPS
ScalingMaxSVector3DSVectorSDDDsR8PSDefaultAttributeIndexSintSIntegerSI�RNPSLcl TranslationSLcl TranslationSSAD���
�D���?D�!C�?&SIPSLcl RotationSLcl RotationSSA+D l@D��	��D�F�;@ySEPSVisibility InheritanceSVisibility InheritanceSSI�S,PS	MultiTakeSintSIntegerSI�S-PSManipulationModeSenumSSIQTUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�T/PSSetPreferedAngleSActionSSI�T-PSPivotsVisibilitySenumSSIU5PSRotationLimitsVisibilitySboolSSITU:PSLocalTranslationRefVisibilitySboolSSI�U2PSRotationRefVisibilitySboolSSI�U3PSRotationAxisVisibilitySboolSSIV1PSScalingRefVisibilitySboolSSI[V9PSHierarchicalCenterVisibilitySboolSSI�V6PSGeometricCenterVisibilitySboolSSI�V8PSReferentialSizeSdoubleSNumberSD(@(W5PSDefaultKeyingGroupSintSIntegerSIiW3PSDefaultKeyingGroupEnumSenumSSI�W%PSPickableSboolSSI�W*PS
TransformableSboolSSI
X(PSCullingModeSenumSSIEX-PSShowTrajectoriesSboolSSIuX"PSliwSBoolSSAUI�XCPSLimbLength 1SNumberSSAUD�?DDY@�XShadingCYYCullingS
CullingOff>a1ModelL�P�9SRightHandIndex3ModelSLimbNodeuYVersionI��`Properties70�Y+PSRotationActiveSboolSSI�Y(PSInheritTypeSenumSSIRZGPS
ScalingMaxSVector3DSVectorSDDD�Z8PSDefaultAttributeIndexSintSIntegerSI�ZNPSLcl TranslationSLcl TranslationSSAD�.�D��߿D@���?K[IPSLcl RotationSLcl RotationSSA+D�Up�?D�Ω��D@�Y?@�[EPSVisibility InheritanceSVisibility InheritanceSSI�[,PS	MultiTakeSintSIntegerSI\-PSManipulationModeSenumSSIv\UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�\/PSSetPreferedAngleSActionSSI�\-PSPivotsVisibilitySenumSSI1]5PSRotationLimitsVisibilitySboolSSIy]:PSLocalTranslationRefVisibilitySboolSSI�]2PSRotationRefVisibilitySboolSSI�]3PSRotationAxisVisibilitySboolSSI9^1PSScalingRefVisibilitySboolSSI�^9PSHierarchicalCenterVisibilitySboolSSI�^6PSGeometricCenterVisibilitySboolSSI
_8PSReferentialSizeSdoubleSNumberSD(@M_5PSDefaultKeyingGroupSintSIntegerSI�_3PSDefaultKeyingGroupEnumSenumSSI�_%PSPickableSboolSSI�_*PS
TransformableSboolSSI/`(PSCullingModeSenumSSIj`-PSShowTrajectoriesSboolSSI�`"PSliwSBoolSSAUI�`CPSLimbLength 1SNumberSSAUD�?DDY@aShadingCY1aCullingS
CullingOff�i1ModelL�U�9SRightHandThumb1ModelSLimbNode�aVersionI�siProperties70	bHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D	��*�Bb+PSRotationActiveSboolSSIxb(PSInheritTypeSenumSSI�bGPS
ScalingMaxSVector3DSVectorSDDDc8PSDefaultAttributeIndexSintSIntegerSIocNPSLcl TranslationSLcl TranslationSSAD�~��D����D��@�cIPSLcl RotationSLcl RotationSSA+D@h��?D���D@��̿dEPSVisibility InheritanceSVisibility InheritanceSSISd,PS	MultiTakeSintSIntegerSI�d-PSManipulationModeSenumSSI�dUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD.e/PSSetPreferedAngleSActionSSIie-PSPivotsVisibilitySenumSSI�e5PSRotationLimitsVisibilitySboolSSI�e:PSLocalTranslationRefVisibilitySboolSSI4f2PSRotationRefVisibilitySboolSSIuf3PSRotationAxisVisibilitySboolSSI�f1PSScalingRefVisibilitySboolSSI�f9PSHierarchicalCenterVisibilitySboolSSI?g6PSGeometricCenterVisibilitySboolSSI�g8PSReferentialSizeSdoubleSNumberSD(@�g5PSDefaultKeyingGroupSintSIntegerSI	h3PSDefaultKeyingGroupEnumSenumSSI<h%PSPickableSboolSSIth*PS
TransformableSboolSSI�h(PSCullingModeSenumSSI�h-PSShowTrajectoriesSboolSSIi"PSliwSBoolSSAUIfiCPSLimbLength 1SNumberSSAUD�?DDY@�iShadingCY�iCullingS
CullingOff�q1ModelL�Z�9SRightHandThumb2ModelSLimbNodejVersionI��qProperties70gj+PSRotationActiveSboolSSI�j(PSInheritTypeSenumSSI�jGPS
ScalingMaxSVector3DSVectorSDDD8k8PSDefaultAttributeIndexSintSIntegerSI�kNPSLcl TranslationSLcl TranslationSSAD`�2��D`���D��@�kIPSLcl RotationSLcl RotationSSA+D j�?D@f��D��z�?>lEPSVisibility InheritanceSVisibility InheritanceSSIxl,PS	MultiTakeSintSIntegerSI�l-PSManipulationModeSenumSSImUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDSm/PSSetPreferedAngleSActionSSI�m-PSPivotsVisibilitySenumSSI�m5PSRotationLimitsVisibilitySboolSSIn:PSLocalTranslationRefVisibilitySboolSSIYn2PSRotationRefVisibilitySboolSSI�n3PSRotationAxisVisibilitySboolSSI�n1PSScalingRefVisibilitySboolSSI o9PSHierarchicalCenterVisibilitySboolSSIdo6PSGeometricCenterVisibilitySboolSSI�o8PSReferentialSizeSdoubleSNumberSD(@�o5PSDefaultKeyingGroupSintSIntegerSI.p3PSDefaultKeyingGroupEnumSenumSSIap%PSPickableSboolSSI�p*PS
TransformableSboolSSI�p(PSCullingModeSenumSSI
q-PSShowTrajectoriesSboolSSI:q"PSliwSBoolSSAUI�qCPSLimbLength 1SNumberSSAUD�?DDY@�qShadingCY�qCullingS
CullingOffYz1ModelL�_�9SRightHandThumb3ModelSLimbNode:rVersionI�zProperties70�rHPSPreRotationSVector3DSVectorSD$�rOϸ>DD�r+PSRotationActiveSboolSSIs(PSInheritTypeSenumSSImsGPS
ScalingMaxSVector3DSVectorSDDD�s8PSDefaultAttributeIndexSintSIntegerSItNPSLcl TranslationSLcl TranslationSSAD@5^�D@�r�D@��@ftIPSLcl RotationSLcl RotationSSA+D@I�@D�#%�D@rп�tEPSVisibility InheritanceSVisibility InheritanceSSI�t,PS	MultiTakeSintSIntegerSI.u-PSManipulationModeSenumSSI�uUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�u/PSSetPreferedAngleSActionSSI	v-PSPivotsVisibilitySenumSSILv5PSRotationLimitsVisibilitySboolSSI�v:PSLocalTranslationRefVisibilitySboolSSI�v2PSRotationRefVisibilitySboolSSIw3PSRotationAxisVisibilitySboolSSITw1PSScalingRefVisibilitySboolSSI�w9PSHierarchicalCenterVisibilitySboolSSI�w6PSGeometricCenterVisibilitySboolSSI%x8PSReferentialSizeSdoubleSNumberSD(@hx5PSDefaultKeyingGroupSintSIntegerSI�x3PSDefaultKeyingGroupEnumSenumSSI�x%PSPickableSboolSSIy*PS
TransformableSboolSSIJy(PSCullingModeSenumSSI�y-PSShowTrajectoriesSboolSSI�y"PSliwSBoolSSAUIzCPSLimbLength 1SNumberSSAUD�?DDY@)zShadingCYLzCullingS
CullingOffт.ModelL�d�9SLeftShoulderModelSLimbNode�zVersionI���Properties70!{HPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9�Z{+PSRotationActiveSboolSSI�{(PSInheritTypeSenumSSI�{GPS
ScalingMaxSVector3DSVectorSDDD+|8PSDefaultAttributeIndexSintSIntegerSI�|NPSLcl TranslationSLcl TranslationSSAD��@D@�)6@D@
M���|IPSLcl RotationSLcl RotationSSA+D�u"�?D �-�D@���?1}EPSVisibility InheritanceSVisibility InheritanceSSIk},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI	~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDF~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIL2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIW�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI!�3PSDefaultKeyingGroupEnumSenumSSIT�%PSPickableSboolSSI��*PS
TransformableSboolSSI(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI-�"PSliwSBoolSSAUI~�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYĂCullingS
CullingOffD�)ModelL�i�9SLeftArmModelSLimbNode%�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@̓+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIX�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��$@D��3~>D�kqT�Q�IPSLcl RotationSLcl RotationSSA+D;p�D��e�D���S���EPSVisibility InheritanceSVisibility InheritanceSSIޅ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI|�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI7�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI?�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIʈ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@S�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIlj%PSPickableSboolSSI��*PS
TransformableSboolSSI5�(PSCullingModeSenumSSIp�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY7�CullingS
CullingOff��-ModelLo�9SLeftForeArmModelSLimbNode��VersionI�u�Properties70�HPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?D�+PSRotationActiveSboolSSIz�(PSInheritTypeSenumSSIόGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIq�NPSLcl TranslationSLcl TranslationSSAD��g9@D�F�D�~G>ȍIPSLcl RotationSLcl RotationSSA+D `H@D��� �D@���EPSVisibility InheritanceSVisibility InheritanceSSIU�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD0�/PSSetPreferedAngleSActionSSIk�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI6�2PSRotationRefVisibilitySboolSSIw�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIA�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ʑ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI>�%PSPickableSboolSSIv�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIh�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffٛ*ModelLt�9SLeftHandModelSLimbNode�VersionI���Properties70b�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD3�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���8@D�)H�D�h>�IPSLcl RotationSLcl RotationSSA+D��d�D����?D�;�9�EPSVisibility InheritanceSVisibility InheritanceSSIs�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDN�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI̗5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIT�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIԘ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI_�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI)�3PSDefaultKeyingGroupEnumSenumSSI\�%PSPickableSboolSSI��*PS
TransformableSboolSSIʚ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI5�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY̛CullingS
CullingOffS�0ModelLy�9SLeftHandPinky1ModelSLimbNode4�VersionI�
�Properties70��HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@Dd�Z~Q��ܜ+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIg�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI	�NPSLcl TranslationSLcl TranslationSSAD �C@D�S
�D@�	�`�IPSLcl RotationSLcl RotationSSA+D@c!@D��-�D��<���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI(�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDȟ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIF�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIΠ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIN�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI١6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@b�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI֢%PSPickableSboolSSI�*PS
TransformableSboolSSID�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@#�ShadingCYF�CullingS
CullingOffͬ0ModelL~�9SLeftHandPinky2ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?V�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD'�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���@D`�Ji�D`�¿ڦIPSLcl RotationSLcl RotationSSA+D�=@D�Bb�?D �K<�-�EPSVisibility InheritanceSVisibility InheritanceSSIg�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDB�/PSSetPreferedAngleSActionSSI}�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIH�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIȩ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIS�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ܪ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIP�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI)�"PSliwSBoolSSAUIz�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�0ModelL ��9SLeftHandPinky3ModelSLimbNode(�VersionI���Properties70z�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDK�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD@�s@D��D�D�p��>��IPSLcl RotationSLcl RotationSSA+D��.@D�j��?D��q;�Q�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIƯ-PSManipulationModeSenumSSI)�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI,�:PSLocalTranslationRefVisibilitySboolSSIl�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI3�9PSHierarchicalCenterVisibilitySboolSSIw�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIA�3PSDefaultKeyingGroupEnumSenumSSIt�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIM�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOffj�/ModelL(��9SLeftHandRing1ModelSLimbNodeK�VersionI�$�Properties70��HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c��+PSRotationActiveSboolSSI)�(PSInheritTypeSenumSSI~�GPS
ScalingMaxSVector3DSVectorSDDDĶ8PSDefaultAttributeIndexSintSIntegerSI �NPSLcl TranslationSLcl TranslationSSAD��@D�P�׿D EB�w�IPSLcl RotationSLcl RotationSSA+D@��?D���D`	�9�ʷEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI?�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD߸/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI]�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI&�3PSRotationAxisVisibilitySboolSSIe�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI6�8PSReferentialSizeSdoubleSNumberSD(@y�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI%�*PS
TransformableSboolSSI[�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIƼ"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@:�ShadingCY]�CullingS
CullingOff��/ModelL���:SLeftHandRing2ModelSLimbNodeĽVersionI���Properties703�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{�l�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD=�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD A@D�Ua�D`;�̿�IPSLcl RotationSLcl RotationSSA+D�F��?D@ݥ�?D`�S<�C�EPSVisibility InheritanceSVisibility InheritanceSSI}�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDX�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI^�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI%�9PSHierarchicalCenterVisibilitySboolSSIi�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI3�3PSDefaultKeyingGroupEnumSenumSSIf�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI?�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�/ModelL���:SLeftHandRing3ModelSLimbNode=�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD`�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@DJQ>D@��IPSLcl RotationSLcl RotationSSA+D�ew�?D�/��?D@ �;�f�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI>�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD{�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIA�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIH�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIV�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI2�-PSShowTrajectoriesSboolSSIb�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelL���:SLeftHandMiddle1ModelSLimbNodeb�VersionI�;�Properties70��HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--�
�+PSRotationActiveSboolSSI@�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI7�NPSLcl TranslationSLcl TranslationSSAD�h@D`5!ȿD�9�?��IPSLcl RotationSLcl RotationSSA+D�Y��D��!�?D�O�9���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIV�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI1�-PSPivotsVisibilitySenumSSIt�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI=�3PSRotationAxisVisibilitySboolSSI|�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIM�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI<�*PS
TransformableSboolSSIr�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI.�CPSLimbLength 1SNumberSSAUD�?DDY@Q�ShadingCYt�CullingS
CullingOff��1ModelL���:SLeftHandMiddle2ModelSLimbNode��VersionI���Properties70L�HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDV�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD Q�@D+s??D��ǥ�	�IPSLcl RotationSLcl RotationSSA+D ��D�H�ӿD���>�\�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI4�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDq�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI7�:PSLocalTranslationRefVisibilitySboolSSIw�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI>�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIL�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI(�-PSShowTrajectoriesSboolSSIX�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff!�1ModelL���:SLeftHandMiddle3ModelSLimbNodeX�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI5�GPS
ScalingMaxSVector3DSVectorSDDD{�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD �+@D`�p��D9,�>.�IPSLcl RotationSLcl RotationSSA+D@<
�D@�[ԿD�Ì@���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIY�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI\�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIc�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@0�5PSDefaultKeyingGroupSintSIntegerSIq�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIM�-PSShowTrajectoriesSboolSSI}�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��0ModelL���:SLeftHandIndex1ModelSLimbNode|�VersionI�U�Properties70��HPSPreRotationSVector3DSVectorSD(�t�c�D���PNk"�Dʴ	A��$�+PSRotationActiveSboolSSIZ�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIQ�NPSLcl TranslationSLcl TranslationSSAD��@D���D�B
@��IPSLcl RotationSLcl RotationSSA+D��J�D`�#@D@�1���EPSVisibility InheritanceSVisibility InheritanceSSI5�,PS	MultiTakeSintSIntegerSIp�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIK�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIW�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI!�6PSGeometricCenterVisibilitySboolSSIg�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIV�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIH�CPSLimbLength 1SNumberSSAUD�?DDY@k�ShadingCY��CullingS
CullingOff�0ModelL���:SLeftHandIndex2ModelSLimbNode��VersionI���Properties70e�HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI)�GPS
ScalingMaxSVector3DSVectorSDDDo�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�{�@D`�ft?D`�Z�?"�IPSLcl RotationSLcl RotationSSA+D����D``A��D`p�=�u�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIM�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIP�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIW�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@$�5PSDefaultKeyingGroupSintSIntegerSIe�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIA�-PSShowTrajectoriesSboolSSIq�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff90ModelL���:SLeftHandIndex3ModelSLimbNodep�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIM�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��_@D����D��վF�IPSLcl RotationSLcl RotationSSA+Dg��D ��׿D`�
3���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIq�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI,�5PSRotationLimitsVisibilitySboolSSIt�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI4�1PSScalingRefVisibilitySboolSSI{�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@H�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI*�(PSCullingModeSenumSSIe�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@	ShadingCY,CullingS
CullingOff�0ModelL���:SLeftHandThumb1ModelSLimbNode�VersionI�mProperties70HPSPreRotationSVector3DSVectorSDD��t[��?D2��*�<+PSRotationActiveSboolSSIr(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD
8PSDefaultAttributeIndexSintSIntegerSIiNPSLcl TranslationSLcl TranslationSSAD���?D���D��l@�IPSLcl RotationSLcl RotationSSA+D�	1)@D@��@D�7�EPSVisibility InheritanceSVisibility InheritanceSSIM,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD(/PSSetPreferedAngleSActionSSIc-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI.2PSRotationRefVisibilitySboolSSIo3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI96PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI6%PSPickableSboolSSIn*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUI`CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelLȸ�:SLeftHandThumb2ModelSLimbNode	VersionI��Properties70`	+PSRotationActiveSboolSSI�	(PSInheritTypeSenumSSI�	GPS
ScalingMaxSVector3DSVectorSDDD1
8PSDefaultAttributeIndexSintSIntegerSI�
NPSLcl TranslationSLcl TranslationSSAD`�2�?D`���D`
�@�
IPSLcl RotationSLcl RotationSSA+D ���?D�0� @D����?7EPSVisibility InheritanceSVisibility InheritanceSSIq,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDL/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI
:PSLocalTranslationRefVisibilitySboolSSIR
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSI]6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI'3PSDefaultKeyingGroupEnumSenumSSIZ%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSI3"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOffQ0ModelLн�:SLeftHandThumb3ModelSLimbNode2VersionI�Properties70�HPSPreRotationSVector3DSVectorSD��cܥ�>DD�+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIeGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD@5^@D �r�D@��@^IPSLcl RotationSLcl RotationSSA+D@C@D�99@D@�s@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI&-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSID5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI
3PSRotationAxisVisibilitySboolSSIL1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@`5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSIB(PSCullingModeSenumSSI}-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@!ShadingCYDCullingS
CullingOffq!,ModelL�•:SRightUpLegModelSLimbNode�VersionI�+!Properties70�+PSRotationActiveSboolSSI0(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI'NPSLcl TranslationSLcl TranslationSSAD@.�D �C�D�~IPSLcl RotationSLcl RotationSSA+D��C"�D ��#�D��s
��EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSIF-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI!-PSPivotsVisibilitySenumSSId5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI-3PSRotationAxisVisibilitySboolSSIl1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI=8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI, *PS
TransformableSboolSSIb (PSCullingModeSenumSSI� -PSShowTrajectoriesSboolSSI� "PSliwSBoolSSAUI!CPSLimbLength 1SNumberSSAUD�?DDY@A!ShadingCYd!CullingS
CullingOff�)*ModelL�:SRightLegModelSLimbNode�!VersionI�I)Properties70"+PSRotationActiveSboolSSIN"(PSInheritTypeSenumSSI�"GPS
ScalingMaxSVector3DSVectorSDDD�"8PSDefaultAttributeIndexSintSIntegerSIE#NPSLcl TranslationSLcl TranslationSSAD`�p�D@�tD�D@�e���#IPSLcl RotationSLcl RotationSSA+D�B' @D@��D@7��#EPSVisibility InheritanceSVisibility InheritanceSSI)$,PS	MultiTakeSintSIntegerSId$-PSManipulationModeSenumSSI�$UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD%/PSSetPreferedAngleSActionSSI?%-PSPivotsVisibilitySenumSSI�%5PSRotationLimitsVisibilitySboolSSI�%:PSLocalTranslationRefVisibilitySboolSSI
&2PSRotationRefVisibilitySboolSSIK&3PSRotationAxisVisibilitySboolSSI�&1PSScalingRefVisibilitySboolSSI�&9PSHierarchicalCenterVisibilitySboolSSI'6PSGeometricCenterVisibilitySboolSSI['8PSReferentialSizeSdoubleSNumberSD(@�'5PSDefaultKeyingGroupSintSIntegerSI�'3PSDefaultKeyingGroupEnumSenumSSI(%PSPickableSboolSSIJ(*PS
TransformableSboolSSI�((PSCullingModeSenumSSI�(-PSShowTrajectoriesSboolSSI�("PSliwSBoolSSAUI<)CPSLimbLength 1SNumberSSAUD�?DDY@_)ShadingCY�)CullingS
CullingOff�1+ModelL:SRightFootModelSLimbNode�)VersionI�h1Properties707*+PSRotationActiveSboolSSIm*(PSInheritTypeSenumSSI�*GPS
ScalingMaxSVector3DSVectorSDDD+8PSDefaultAttributeIndexSintSIntegerSId+NPSLcl TranslationSLcl TranslationSSAD`V}�D@e(E�D |��+IPSLcl RotationSLcl RotationSSA+D[c@D��y�?D��]@,EPSVisibility InheritanceSVisibility InheritanceSSIH,,PS	MultiTakeSintSIntegerSI�,-PSManipulationModeSenumSSI�,UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD#-/PSSetPreferedAngleSActionSSI^--PSPivotsVisibilitySenumSSI�-5PSRotationLimitsVisibilitySboolSSI�-:PSLocalTranslationRefVisibilitySboolSSI).2PSRotationRefVisibilitySboolSSIj.3PSRotationAxisVisibilitySboolSSI�.1PSScalingRefVisibilitySboolSSI�.9PSHierarchicalCenterVisibilitySboolSSI4/6PSGeometricCenterVisibilitySboolSSIz/8PSReferentialSizeSdoubleSNumberSD(@�/5PSDefaultKeyingGroupSintSIntegerSI�/3PSDefaultKeyingGroupEnumSenumSSI10%PSPickableSboolSSIi0*PS
TransformableSboolSSI�0(PSCullingModeSenumSSI�0-PSShowTrajectoriesSboolSSI
1"PSliwSBoolSSAUI[1CPSLimbLength 1SNumberSSAUD�?DDY@~1ShadingCY�1CullingS
CullingOff�9+ModelL:SRightToesModelSLimbNode2VersionI��9Properties70V2+PSRotationActiveSboolSSI�2(PSInheritTypeSenumSSI�2GPS
ScalingMaxSVector3DSVectorSDDD'38PSDefaultAttributeIndexSintSIntegerSI�3NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@�3IPSLcl RotationSLcl RotationSSA+D �q�<D����D ܥ�<-4EPSVisibility InheritanceSVisibility InheritanceSSIg4,PS	MultiTakeSintSIntegerSI�4-PSManipulationModeSenumSSI5UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDB5/PSSetPreferedAngleSActionSSI}5-PSPivotsVisibilitySenumSSI�55PSRotationLimitsVisibilitySboolSSI6:PSLocalTranslationRefVisibilitySboolSSIH62PSRotationRefVisibilitySboolSSI�63PSRotationAxisVisibilitySboolSSI�61PSScalingRefVisibilitySboolSSI79PSHierarchicalCenterVisibilitySboolSSIS76PSGeometricCenterVisibilitySboolSSI�78PSReferentialSizeSdoubleSNumberSD(@�75PSDefaultKeyingGroupSintSIntegerSI83PSDefaultKeyingGroupEnumSenumSSIP8%PSPickableSboolSSI�8*PS
TransformableSboolSSI�8(PSCullingModeSenumSSI�8-PSShowTrajectoriesSboolSSI)9"PSliwSBoolSSAUIz9CPSLimbLength 1SNumberSSAUD�?DDY@�9ShadingCY�9CullingS
CullingOff�A+ModelL:SLeftUpLegModelSLimbNode#:VersionI��AProperties70u:+PSRotationActiveSboolSSI�:(PSInheritTypeSenumSSI;GPS
ScalingMaxSVector3DSVectorSDDDF;8PSDefaultAttributeIndexSintSIntegerSI�;NPSLcl TranslationSLcl TranslationSSAD`.@D��C�D=�;IPSLcl RotationSLcl RotationSSA+D��{ҿD@w�%@D�T���L<EPSVisibility InheritanceSVisibility InheritanceSSI�<,PS	MultiTakeSintSIntegerSI�<-PSManipulationModeSenumSSI$=UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDa=/PSSetPreferedAngleSActionSSI�=-PSPivotsVisibilitySenumSSI�=5PSRotationLimitsVisibilitySboolSSI'>:PSLocalTranslationRefVisibilitySboolSSIg>2PSRotationRefVisibilitySboolSSI�>3PSRotationAxisVisibilitySboolSSI�>1PSScalingRefVisibilitySboolSSI.?9PSHierarchicalCenterVisibilitySboolSSIr?6PSGeometricCenterVisibilitySboolSSI�?8PSReferentialSizeSdoubleSNumberSD(@�?5PSDefaultKeyingGroupSintSIntegerSI<@3PSDefaultKeyingGroupEnumSenumSSIo@%PSPickableSboolSSI�@*PS
TransformableSboolSSI�@(PSCullingModeSenumSSIA-PSShowTrajectoriesSboolSSIHA"PSliwSBoolSSAUI�ACPSLimbLength 1SNumberSSAUD�?DDY@�AShadingCY�ACullingS
CullingOff	J)ModelL:SLeftLegModelSLimbNode@BVersionI��IProperties70�B+PSRotationActiveSboolSSI�B(PSInheritTypeSenumSSICGPS
ScalingMaxSVector3DSVectorSDDDcC8PSDefaultAttributeIndexSintSIntegerSI�CNPSLcl TranslationSLcl TranslationSSAD�p@D �tD�D@�e��DIPSLcl RotationSLcl RotationSSA+D��/@D���
@D �a�?iDEPSVisibility InheritanceSVisibility InheritanceSSI�D,PS	MultiTakeSintSIntegerSI�D-PSManipulationModeSenumSSIAEUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD~E/PSSetPreferedAngleSActionSSI�E-PSPivotsVisibilitySenumSSI�E5PSRotationLimitsVisibilitySboolSSIDF:PSLocalTranslationRefVisibilitySboolSSI�F2PSRotationRefVisibilitySboolSSI�F3PSRotationAxisVisibilitySboolSSIG1PSScalingRefVisibilitySboolSSIKG9PSHierarchicalCenterVisibilitySboolSSI�G6PSGeometricCenterVisibilitySboolSSI�G8PSReferentialSizeSdoubleSNumberSD(@H5PSDefaultKeyingGroupSintSIntegerSIYH3PSDefaultKeyingGroupEnumSenumSSI�H%PSPickableSboolSSI�H*PS
TransformableSboolSSI�H(PSCullingModeSenumSSI5I-PSShowTrajectoriesSboolSSIeI"PSliwSBoolSSAUI�ICPSLimbLength 1SNumberSSAUD�?DDY@�IShadingCY�ICullingS
CullingOff'R*ModelL ":SLeftFootModelSLimbNode^JVersionI��QProperties70�J+PSRotationActiveSboolSSI�J(PSInheritTypeSenumSSI;KGPS
ScalingMaxSVector3DSVectorSDDD�K8PSDefaultAttributeIndexSintSIntegerSI�KNPSLcl TranslationSLcl TranslationSSAD`V}�?D@e(E�D |�4LIPSLcl RotationSLcl RotationSSA+D�)�D�j��D����?�LEPSVisibility InheritanceSVisibility InheritanceSSI�L,PS	MultiTakeSintSIntegerSI�L-PSManipulationModeSenumSSI_MUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�M/PSSetPreferedAngleSActionSSI�M-PSPivotsVisibilitySenumSSIN5PSRotationLimitsVisibilitySboolSSIbN:PSLocalTranslationRefVisibilitySboolSSI�N2PSRotationRefVisibilitySboolSSI�N3PSRotationAxisVisibilitySboolSSI"O1PSScalingRefVisibilitySboolSSIiO9PSHierarchicalCenterVisibilitySboolSSI�O6PSGeometricCenterVisibilitySboolSSI�O8PSReferentialSizeSdoubleSNumberSD(@6P5PSDefaultKeyingGroupSintSIntegerSIwP3PSDefaultKeyingGroupEnumSenumSSI�P%PSPickableSboolSSI�P*PS
TransformableSboolSSIQ(PSCullingModeSenumSSISQ-PSShowTrajectoriesSboolSSI�Q"PSliwSBoolSSAUI�QCPSLimbLength 1SNumberSSAUD�?DDY@�QShadingCYRCullingS
CullingOffEZ*ModelL(':SLeftToesModelSLimbNode|RVersionI��YProperties70�R+PSRotationActiveSboolSSIS(PSInheritTypeSenumSSIYSGPS
ScalingMaxSVector3DSVectorSDDD�S8PSDefaultAttributeIndexSintSIntegerSI�SNPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@RTIPSLcl RotationSLcl RotationSSA+D@���D�y@�<D���Ѽ�TEPSVisibility InheritanceSVisibility InheritanceSSI�T,PS	MultiTakeSintSIntegerSIU-PSManipulationModeSenumSSI}UUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�U/PSSetPreferedAngleSActionSSI�U-PSPivotsVisibilitySenumSSI8V5PSRotationLimitsVisibilitySboolSSI�V:PSLocalTranslationRefVisibilitySboolSSI�V2PSRotationRefVisibilitySboolSSIW3PSRotationAxisVisibilitySboolSSI@W1PSScalingRefVisibilitySboolSSI�W9PSHierarchicalCenterVisibilitySboolSSI�W6PSGeometricCenterVisibilitySboolSSIX8PSReferentialSizeSdoubleSNumberSD(@TX5PSDefaultKeyingGroupSintSIntegerSI�X3PSDefaultKeyingGroupEnumSenumSSI�X%PSPickableSboolSSIY*PS
TransformableSboolSSI6Y(PSCullingModeSenumSSIqY-PSShowTrajectoriesSboolSSI�Y"PSliwSBoolSSAUI�YCPSLimbLength 1SNumberSSAUD�?DDY@ZShadingCY8ZCullingS
CullingOffm[\AnimationStackL�:SI_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2AnimStackS`[Properties70[/PS	LocalStopSKTimeSTimeSL�9`SS[3PS
ReferenceStopSKTimeSTimeSL�9`SE^jAnimationLayerL���9SW_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2:BaseAnimationAnimLayerS8^Properties70Z\APSColorSColorRGBSColorSD�������?DD�������?�\5PSBlendModeBypassS	ULongLongSSL�\,PS	MultiTakeSintSIntegerSI]+PSmLayerIDSintSIntegerSIG])PSMutedForSoloSboolSSI]*PS
MutedByParentSboolSSI�]+PSLockedByParentSboolSSI�]5PSParentCollapseVisibilitySboolSSI+^"PSEmptySboolSSIagAnimationLayerL��9ST_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2:AnimLayer1AnimLayerS
aProperties70/_APSColorSColorRGBSColorSD�������?DD�������?r_5PSBlendModeBypassS	ULongLongSSL�_,PS	MultiTakeSintSIntegerSI�_+PSmLayerIDSintSIntegerSI`)PSMutedForSoloSboolSSIT`*PS
MutedByParentSboolSSI�`+PSLockedByParentSboolSSI�`5PSParentCollapseVisibilitySboolSSIa"PSEmptySboolSSIYb#AnimationCurveNodeL�6�:STAnimCurveNodeSLbProperties70�aPSdSCompoundSS�a'PSd|XSNumberSSAD
b'PSd|YSNumberSSAD?b'PSd|ZSNumberSSAD�c#AnimationCurveNodeL���:SRAnimCurveNodeS�cProperties70�bPSdSCompoundSSc'PSd|XSNumberSSAD���Ic'PSd|YSNumberSSAD��@~c'PSd|ZSNumberSSAD`K���d#AnimationCurveNodeL`��:SRAnimCurveNodeS�dProperties70dPSdSCompoundSSSd'PSd|XSNumberSSAD`��@�d'PSd|YSNumberSSAD�6����d'PSd|ZSNumberSSAD�#�f#AnimationCurveNodeL�…:SRAnimCurveNodeS	fProperties70]ePSdSCompoundSS�e'PSd|XSNumberSSAD�e'PSd|YSNumberSSAD�a�<�e'PSd|ZSNumberSSADUg#AnimationCurveNodeL�s�:SRAnimCurveNodeSHgProperties70�fPSdSCompoundSS�f'PSd|XSNumberSSAD@�/�?g'PSd|YSNumberSSADjj�;g'PSd|ZSNumberSSAD �>�?�h#AnimationCurveNodeL���:SRAnimCurveNodeS�hProperties70�gPSdSCompoundSSh'PSd|XSNumberSSAD��u�Eh'PSd|YSNumberSSAD�}6��zh'PSd|ZSNumberSSAD�#�@�i#AnimationCurveNodeL�:SRAnimCurveNodeS�iProperties70iPSdSCompoundSSOi'PSd|XSNumberSSAD ܥ�<�i'PSd|YSNumberSSAD`��<�i'PSd|ZSNumberSSAD e|�<k#AnimationCurveNodeL��:SRAnimCurveNodeSkProperties70YjPSdSCompoundSS�j'PSd|XSNumberSSAD ܥ�<�j'PSd|YSNumberSSAD`��<�j'PSd|ZSNumberSSAD e|�<Ql#AnimationCurveNodeL��:SRAnimCurveNodeSDlProperties70�kPSdSCompoundSS�k'PSd|XSNumberSSAD ܥ�<l'PSd|YSNumberSSAD`��<7l'PSd|ZSNumberSSAD e|�<�m#AnimationCurveNodeL�х:SRAnimCurveNodeS�mProperties70�lPSdSCompoundSSm'PSd|XSNumberSSAD ܥ�<Am'PSd|YSNumberSSAD`��<vm'PSd|ZSNumberSSAD e|�<�n#AnimationCurveNodeL�o�:SRAnimCurveNodeS�nProperties70nPSdSCompoundSSKn'PSd|XSNumberSSAD ܥ�<�n'PSd|YSNumberSSAD`��<�n'PSd|ZSNumberSSAD e|�<p#AnimationCurveNodeL�Dž:SRAnimCurveNodeSpProperties70UoPSdSCompoundSS�o'PSd|XSNumberSSAD ܥ�<�o'PSd|YSNumberSSAD`��<�o'PSd|ZSNumberSSAD e|�<Mq#AnimationCurveNodeL��:SRAnimCurveNodeS@qProperties70�pPSdSCompoundSS�p'PSd|XSNumberSSAD ܥ�<�p'PSd|YSNumberSSAD`��<3q'PSd|ZSNumberSSAD e|�<�r#AnimationCurveNodeLؽ�:SRAnimCurveNodeSrProperties70�qPSdSCompoundSSr'PSd|XSNumberSSAD ܥ�<=r'PSd|YSNumberSSAD`��<rr'PSd|ZSNumberSSAD e|�<�s#AnimationCurveNodeL@څ:SRAnimCurveNodeS�sProperties70sPSdSCompoundSSGs'PSd|XSNumberSSAD ܥ�<|s'PSd|YSNumberSSAD`��<�s'PSd|ZSNumberSSAD e|�<
u#AnimationCurveNodeL���:SRAnimCurveNodeS�tProperties70QtPSdSCompoundSS�t'PSd|XSNumberSSAD ܥ�<�t'PSd|YSNumberSSAD`��<�t'PSd|ZSNumberSSAD e|�<Iv#AnimationCurveNodeL���:SRAnimCurveNodeS<vProperties70�uPSdSCompoundSS�u'PSd|XSNumberSSAD ܥ�<�u'PSd|YSNumberSSAD`��</v'PSd|ZSNumberSSAD e|�<�w#AnimationCurveNodeL��:SRAnimCurveNodeS{wProperties70�vPSdSCompoundSSw'PSd|XSNumberSSAD ܥ�<9w'PSd|YSNumberSSAD`��<nw'PSd|ZSNumberSSAD e|�<�x#AnimationCurveNodeLx��:SRAnimCurveNodeS�xProperties70xPSdSCompoundSSCx'PSd|XSNumberSSAD ܥ�<xx'PSd|YSNumberSSAD`��<�x'PSd|ZSNumberSSAD e|�<z#AnimationCurveNodeL���:SRAnimCurveNodeS�yProperties70MyPSdSCompoundSS�y'PSd|XSNumberSSAD��y'PSd|YSNumberSSAD`��<�y'PSd|ZSNumberSSAD e|�<E{#AnimationCurveNodeLh��:SRAnimCurveNodeS8{Properties70�zPSdSCompoundSS�z'PSd|XSNumberSSAD ܥ�<�z'PSd|YSNumberSSAD`��<+{'PSd|ZSNumberSSAD e|�<�|#AnimationCurveNodeL0��:SRAnimCurveNodeSw|Properties70�{PSdSCompoundSS|'PSd|XSNumberSSAD ܥ�<5|'PSd|YSNumberSSAD`��<j|'PSd|ZSNumberSSAD e|�<�}#AnimationCurveNodeL0{�:SRAnimCurveNodeS�}Properties70
}PSdSCompoundSS?}'PSd|XSNumberSSAD ܥ�<t}'PSd|YSNumberSSAD`��<�}'PSd|ZSNumberSSAD e|�<#AnimationCurveNodeLȔ�:SRAnimCurveNodeS�~Properties70I~PSdSCompoundSS~~'PSd|XSNumberSSAD ܥ�<�~'PSd|YSNumberSSAD`��<�~'PSd|ZSNumberSSAD e|�<A�#AnimationCurveNodeLH	�:SRAnimCurveNodeS4�Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD ܥ�<�'PSd|YSNumberSSAD`��<'�'PSd|ZSNumberSSAD e|�<��#AnimationCurveNodeLXM�:SRAnimCurveNodeSs�Properties70ǀPSdSCompoundSS��'PSd|XSNumberSSAD ܥ�<1�'PSd|YSNumberSSAD`��<f�'PSd|ZSNumberSSAD e|�<��#AnimationCurveNodeLpY�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS;�'PSd|XSNumberSSAD�p�'PSd|YSNumberSSAD`��<��'PSd|ZSNumberSSAD e|�<��#AnimationCurveNodeL��e:SRAnimCurveNodeS�Properties70E�PSdSCompoundSSz�'PSd|XSNumberSSAD ܥ�<��'PSd|YSNumberSSAD`��<�'PSd|ZSNumberSSAD e|�<=�#AnimationCurveNodeL�nf:SRAnimCurveNodeS0�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD ܥ�<�'PSd|YSNumberSSAD`��<#�'PSd|ZSNumberSSAD e|�<|�#AnimationCurveNodeL�if:SRAnimCurveNodeSo�Properties70ÅPSdSCompoundSS��'PSd|XSNumberSSAD ܥ�<-�'PSd|YSNumberSSAD`��<b�'PSd|ZSNumberSSAD e|�<��#AnimationCurveNodeL�df:SRAnimCurveNodeS��Properties70�PSdSCompoundSS7�'PSd|XSNumberSSAD`�	�l�'PSd|YSNumberSSAD�=@��'PSd|ZSNumberSSAD�³�?��#AnimationCurveNodeL�`f:SRAnimCurveNodeS�Properties70A�PSdSCompoundSSv�'PSd|XSNumberSSADs�/���'PSd|YSNumberSSAD�`[����'PSd|ZSNumberSSAD��S@9�#AnimationCurveNodeL�[f:SRAnimCurveNodeS,�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�\rB@�'PSd|YSNumberSSAD�e@�'PSd|ZSNumberSSAD@��@x�#AnimationCurveNodeL�Vf:SRAnimCurveNodeSk�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD����)�'PSd|YSNumberSSAD`U|�?^�'PSd|ZSNumberSSAD1�$���#AnimationCurveNodeL�Rf:SRAnimCurveNodeS��Properties70��PSdSCompoundSS3�'PSd|XSNumberSSAD��P	�h�'PSd|YSNumberSSAD�L�+@��'PSd|ZSNumberSSAD���:@��#AnimationCurveNodeL�Mf:SRAnimCurveNodeS�Properties70=�PSdSCompoundSSr�'PSd|XSNumberSSAD n���'PSd|YSNumberSSAD ��?܍'PSd|ZSNumberSSAD@��;@5�#AnimationCurveNodeLpHf:SRAnimCurveNodeS(�Properties70|�PSdSCompoundSS��'PSd|XSNumberSSAD�|��'PSd|YSNumberSSAD���@�'PSd|ZSNumberSSAD`0�B@t�#AnimationCurveNodeL�Df:SRAnimCurveNodeSg�Properties70��PSdSCompoundSS��'PSd|XSNumberSSADzؿ%�'PSd|YSNumberSSAD��<@Z�'PSd|ZSNumberSSAD�J:@��#AnimationCurveNodeLp?f:SRAnimCurveNodeS��Properties70��PSdSCompoundSS/�'PSd|XSNumberSSADQ��d�'PSd|YSNumberSSAD��?��'PSd|ZSNumberSSAD@�<@�#AnimationCurveNodeL`:f:SRAnimCurveNodeS�Properties709�PSdSCompoundSSn�'PSd|XSNumberSSAD��y���'PSd|YSNumberSSAD ��?ؒ'PSd|ZSNumberSSAD�EC@1�#AnimationCurveNodeLp6f:SRAnimCurveNodeS$�Properties70x�PSdSCompoundSS��'PSd|XSNumberSSAD@�D�?�'PSd|YSNumberSSAD��t��'PSd|ZSNumberSSAD��7@p�#AnimationCurveNodeL`1f:SRAnimCurveNodeSc�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD`ګ�?!�'PSd|YSNumberSSAD泿V�'PSd|ZSNumberSSAD`�M<@��#AnimationCurveNodeLP,f:SRAnimCurveNodeS��Properties70��PSdSCompoundSS+�'PSd|XSNumberSSAD��?`�'PSd|YSNumberSSAD�Њҿ��'PSd|ZSNumberSSAD�F@�#AnimationCurveNodeL`(f:SRAnimCurveNodeS�Properties705�PSdSCompoundSSj�'PSd|XSNumberSSAD �7ӿ��'PSd|YSNumberSSAD �&�ԗ'PSd|ZSNumberSSAD m�.@-�#AnimationCurveNodeLP#f:SRAnimCurveNodeS �Properties70t�PSdSCompoundSS��'PSd|XSNumberSSAD l@ޘ'PSd|YSNumberSSAD��	���'PSd|ZSNumberSSAD�F�;@l�#AnimationCurveNodeL@f:SRAnimCurveNodeS_�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�Up�?�'PSd|YSNumberSSAD�Ω��R�'PSd|ZSNumberSSAD@�Y?@��#AnimationCurveNodeLPf:SRAnimCurveNodeS��Properties70�PSdSCompoundSS'�'PSd|XSNumberSSAD@h��?\�'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD@��̿�#AnimationCurveNodeL@f:SRAnimCurveNodeSݜProperties701�PSdSCompoundSSf�'PSd|XSNumberSSAD j�?��'PSd|YSNumberSSAD@f��М'PSd|ZSNumberSSAD��z�?)�#AnimationCurveNodeL8~e:SRAnimCurveNodeS�Properties70p�PSdSCompoundSS��'PSd|XSNumberSSAD@I�@ڝ'PSd|YSNumberSSAD�#%��'PSd|ZSNumberSSAD@rпh�#AnimationCurveNodeL��e:SRAnimCurveNodeS[�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�u"�?�'PSd|YSNumberSSAD �-�N�'PSd|ZSNumberSSAD@���?��#AnimationCurveNodeLЎe:SRAnimCurveNodeS��Properties70�PSdSCompoundSS#�'PSd|XSNumberSSAD;p�X�'PSd|YSNumberSSAD��e���'PSd|ZSNumberSSAD���S��#AnimationCurveNodeL��e:SRAnimCurveNodeS١Properties70-�PSdSCompoundSSb�'PSd|XSNumberSSAD `H@��'PSd|YSNumberSSAD��� �̡'PSd|ZSNumberSSAD@��%�#AnimationCurveNodeL`�e:SRAnimCurveNodeS�Properties70l�PSdSCompoundSS��'PSd|XSNumberSSAD��d�֢'PSd|YSNumberSSAD����?�'PSd|ZSNumberSSAD�;�d�#AnimationCurveNodeL8�e:SRAnimCurveNodeSW�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD@c!@�'PSd|YSNumberSSAD��-�J�'PSd|ZSNumberSSAD��<���#AnimationCurveNodeL�e:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�=@T�'PSd|YSNumberSSAD�Bb�?��'PSd|ZSNumberSSAD �K<��#AnimationCurveNodeL�e:SRAnimCurveNodeSզProperties70)�PSdSCompoundSS^�'PSd|XSNumberSSAD��.@��'PSd|YSNumberSSAD�j��?Ȧ'PSd|ZSNumberSSAD��q;�!�#AnimationCurveNodeL��e:SRAnimCurveNodeS�Properties70h�PSdSCompoundSS��'PSd|XSNumberSSAD@��?ҧ'PSd|YSNumberSSAD����'PSd|ZSNumberSSAD`	�9�`�#AnimationCurveNodeL��e:SRAnimCurveNodeSS�Properties70��PSdSCompoundSSܨ'PSd|XSNumberSSAD�F��?�'PSd|YSNumberSSAD@ݥ�?F�'PSd|ZSNumberSSAD`�S<���#AnimationCurveNodeLp�e:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�ew�?P�'PSd|YSNumberSSAD�/��?��'PSd|ZSNumberSSAD@ �;�ޫ#AnimationCurveNodeLH�e:SRAnimCurveNodeSѫProperties70%�PSdSCompoundSSZ�'PSd|XSNumberSSAD�Y����'PSd|YSNumberSSAD��!�?ī'PSd|ZSNumberSSAD�O�9��#AnimationCurveNodeL �e:SRAnimCurveNodeS�Properties70d�PSdSCompoundSS��'PSd|XSNumberSSAD ��ά'PSd|YSNumberSSAD�H�ӿ�'PSd|ZSNumberSSAD���>�\�#AnimationCurveNodeL��e:SRAnimCurveNodeSO�Properties70��PSdSCompoundSSح'PSd|XSNumberSSAD@<
�
�'PSd|YSNumberSSAD@�[ԿB�'PSd|ZSNumberSSAD�Ì@���#AnimationCurveNodeL�f:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD��J�L�'PSd|YSNumberSSAD`�#@��'PSd|ZSNumberSSAD@�1�ڰ#AnimationCurveNodeL�ve:SRAnimCurveNodeSͰProperties70!�PSdSCompoundSSV�'PSd|XSNumberSSAD������'PSd|YSNumberSSAD``A����'PSd|ZSNumberSSAD`p�=��#AnimationCurveNodeL�f:SRAnimCurveNodeS�Properties70`�PSdSCompoundSS��'PSd|XSNumberSSADg��ʱ'PSd|YSNumberSSAD ��׿��'PSd|ZSNumberSSAD`�
3�X�#AnimationCurveNodeL(�e:SRAnimCurveNodeSK�Properties70��PSdSCompoundSSԲ'PSd|XSNumberSSAD�	1)@	�'PSd|YSNumberSSAD@��@>�'PSd|ZSNumberSSAD�7���#AnimationCurveNodeL��e:SRAnimCurveNodeS��Properties70޳PSdSCompoundSS�'PSd|XSNumberSSAD ���?H�'PSd|YSNumberSSAD�0� @}�'PSd|ZSNumberSSAD����?ֵ#AnimationCurveNodeL�f:SRAnimCurveNodeSɵProperties70�PSdSCompoundSSR�'PSd|XSNumberSSAD@C@��'PSd|YSNumberSSAD�99@��'PSd|ZSNumberSSAD@�s@�#AnimationCurveNodeL�f:SRAnimCurveNodeS�Properties70\�PSdSCompoundSS��'PSd|XSNumberSSAD��C"�ƶ'PSd|YSNumberSSAD ��#���'PSd|ZSNumberSSAD��s
�T�#AnimationCurveNodeL�f:SRAnimCurveNodeSG�Properties70��PSdSCompoundSSз'PSd|XSNumberSSAD�B' @�'PSd|YSNumberSSAD@��:�'PSd|ZSNumberSSAD@7���#AnimationCurveNodeL nf:SRAnimCurveNodeS��Properties70ڸPSdSCompoundSS�'PSd|XSNumberSSAD[c@D�'PSd|YSNumberSSAD��y�?y�'PSd|ZSNumberSSAD��]@Һ#AnimationCurveNodeL�gf:SRAnimCurveNodeSźProperties70�PSdSCompoundSSN�'PSd|XSNumberSSAD �q�<��'PSd|YSNumberSSAD���󼸺'PSd|ZSNumberSSAD ܥ�<�#AnimationCurveNodeL`f:SRAnimCurveNodeS�Properties70X�PSdSCompoundSS��'PSd|XSNumberSSAD��{ҿ»'PSd|YSNumberSSAD@w�%@��'PSd|ZSNumberSSAD�T���P�#AnimationCurveNodeL�Yf:SRAnimCurveNodeSC�Properties70��PSdSCompoundSS̼'PSd|XSNumberSSAD��/@�'PSd|YSNumberSSAD���
@6�'PSd|ZSNumberSSAD �a�?��#AnimationCurveNodeLRf:SRAnimCurveNodeS��Properties70ֽPSdSCompoundSS�'PSd|XSNumberSSAD�)�@�'PSd|YSNumberSSAD�j��u�'PSd|ZSNumberSSAD����?ο#AnimationCurveNodeL�Kf:SRAnimCurveNodeS��Properties70�PSdSCompoundSSJ�'PSd|XSNumberSSAD@����'PSd|YSNumberSSAD�y@�<��'PSd|ZSNumberSSAD���Ѽ��AnimationCurveL �[:SAnimCurveS$�	DefaultD<�KeyVerI�6��KeyTimel��x%�qP���_":ThB�
ԑ��f:h��F
J8ӡ��D�B��,8�����7��p��N���ĝHL��(dBZ��z��<����p�:�wor�k�a����ꆞ���i�~����C��]�q>�n�������g�k���'�/���©����ϻ����&䎬��Iڷ�UA���!���%�H��F��
y��2���
Mg��^��,������mP�e
�M2wvh�q��(�};���-G���GP�&I�'=ק����$w�
 ݲ�sPw50�uR$�+����+�:)'�M
.q�A�x�	��֥sI~b�:.��5+�V�\K{��J����
A$g�m?^|�T	��C���n�)��G*�ު����h6)�IEtX=dNz��ߒB�[��ˋ��!
�F7A٢���}Iț��+��'�n@�|k�[��x�!(
�AW�_b(Y��i��c�q蜗�Fj�B�@~P?k>�8ڔ5��6ȭ�- ����@u��6��V�.$m_�@k�!dWYVr�N��&�< ��,߬p�\ao�
���m�ٟ^�/�@yYw�l(���'�y�K���õP?���K�V�H�XL����"O��ҵ��<��|�lc�C��נ����'���
�(���[�H��__�C
T煥F��`+���D����M��1��7�.��n�	YΒМ%�z�Tܙ:�L�h�L�!����7
i=�XR֣3AOJ&K@�C�xM���6�.!u��{��
�6t%=�y���d:�C�
W
Im��	����:V����X$m����iﰫ�zYM䴧s��6aPT���K���γ9�P���KE�9����^A&2v}alk���s?$��J���E	נ��� =�.-ԟ���RD��x@ԅ�>��������n����|IA�+:�Z,P�5�#��m�N�`��5�m�b���Ah�=�����KH�a��X_�
UUR�J�=c�	v虙D*}�n���L+43�ЏI���ݐy���e�cV��)�a�-}<
^�DJ���O@ϸ�ԗLd�&�Y��]\>GF�<��킮Q��5d����P�4�.t	�I�������:Fr�)�&?�r~	�y��TR�*j��M�sג���mP����K����	Z�t2�!볮���N�wP���2�R�1��(w�O� �iٹ��f��T׼OHOwK1ԯ������u�(\����
KeyValueFloatf���uB��sB�rB~qBc�pB��oB��nB\MnB��mBr�mB�YmB�AmB6mB<mB�3mBsmB�mB��lBB�lBa�lB�BlB��kB�kBkBfZjB�|iBThBo	gB[�eB��cBE�aB�6_Bj�\BFZYB�UBrQBa�LB�GGB�ABLl:B�;3B;�*BK B�XB�P	BH�A�c�A���A�
�A�0�A~
�A�?TAawA�}�@�k�?�?��x����@�8��2�����������1��]<��~�	´��-��&�3�/³9¤�?���C�u�D��C�y?�f9�Ag3��-�2&������[�½E�����������'�V�^���������b@��@g�<A��A+��A��A��A4�Bl�B��%B�1B�e;Bp�CB��JB��OB�LTB<iXB�]B��aB.YeBEgBb�fB�)dB�Q^B�CVBr6MBAJDB/;Bm1BK�'B-B��B��B��AP�A�A:�UAeA��@��%?p�P�_��ɽ@��݆�7��`{��*���
�
�d���X(��83¾><��XC�c�H�A@M�ưP�o�S�L�V���Y�|[��Z��XˆS���K—B¾J7��m,�P�!��Z�E
�q>������&{���Z���9`���u���P�5�Yoh@�O�@79A:vA�;�A�c�A���A�B�A��B�Bv&B��0Bx�9B=�@B��EBWOIBf�KBE�MB
PB�RB�UB�VB[�WBhXBoXB�VBETB��PB�NBgKB�HBf�FB�EBkTDB�DBBPDB1EB��FB�HBp�IBL�IB`�GBX�CB��<B�k3B�)B�DBҚBBgB��B{,�A٩�AK�AX�A�9A��1A��@���?G�y��^��J��S���KeyAttrFlagsi!Y�KeyAttrDataFloatf

��KeyAttrRefCounti�i�AnimationCurveL \:SAnimCurveS��	DefaultD�KeyVerI���KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8I���YpNq�;o����N���ĝHL��(dBZ��z��<�����q���ڡwOr�k�q2`;���ꆞ�ڈi�a��J�C�q>�~�������g�k|I��׏t����ɲ�PP82�t<�y'�T܄����3H�f�J��>�y�Di\�չ!�!g�^�?ٱ��T���I����C�]�
*��a�H��v-4����cg�^��4����ӤI���IhH�OBI��,6閧�������I����������p)�����a'�u�,�C
���q1�w�]>�*��Yۚ�]\�/Դǯ"�K�vh��r��ZT�
r�%w�!;b.�:{k?d��
@�YL*��� sz�M���R�R`�^~�/�4���[/@��%!o��x'������:��"��+Aq�l���C�*nO=ӏC��̌0RWr
��Y�H���|��l�A^
?l>ix�j�ͷ!w�&vi�Zt�Y!�Һ�Gv��7B��$d��e�����V�d��&�}���2�
T�������2h,�qB���d��5\
�-O���h�t��4C}��+(���� ]�J���wH�Vft>�|
�
+�R�N����%�$y�u��>��@M^Xj�u
�@[n�O4�(�9�.��{������,�-Y��H坩����|M�	1�"CV�7�ǡ1�GK�{�f�I�d	ICwH>������I�l�n(�¿
]I�c�'�.�C�T�:;E+D�.q��d}��?]Bj��Vȋ�������P���r��yKI�(����݅��
�ed�ٜ��	
Yg�eb�mj���E� �.�0���AE��9��S�_@�„kP���^�NVއ��)�x�}�]���Ϡ��.%�tq�[`ձ0�DR�ʅ��f+�m	��|�:8�@mMk��䱿<���P3�x)�=�i�6�WCu�L���L�i�zf$�*���!�"�Zn�Ǥr_�.ȼj셦�M1+I��0��>�F�Y*#�5'�g\�J&2W�����..�-'�����uAר}�j�jk�(|�~:�Dɤ���
lix#9�R��y�
���<Sv*�q�A���9kH���V��p�9����Ȏ�T9����Yײt�r��;��Ly���a���*u�2HoZv.4��Y�<�5����\
���@�=*r-��L�����
KeyValueFloatf��d��B]��BJ��Bk��B��B�ϽB�ݽB��Bu�Bp��B	�B��B1�B`�B��B��B4�B���Bl�B$�BսB���B��Bԋ�Bri�B 8�B8��B���B�E�B
һB;Y�BӺB�-�Bp�BU��B�BシB���B�|�B}��B�B�Z�B��B�B�H�Be�BU۴BdR�B�˸Ba�B��B��B�+�BIY�B��B�s�B���B���B���B�T�Br
�B��Ba{�B��BZ�Bh?�B/�BҐ�B���B�ݱBPx�B�;�B-k�B�L�B���B8��B��BX�BA�B5�B�x�BlY�B�̤B~Y�ByťB�p�B09�Bn,�B:@�B��B��B��B8ʧB�|�B��B�/�B���B6űB�/�B���B
�B�٨B�b�B��B`�B8�B�	�BP�B�&�B �B��Bpq�B�*�B�M�B�
�B�-�B-�B��B�B�.�B%�B�۫Bȗ�Bc��B�BS�BdU�B/}�B�ٴBT�B�ЯB7.�BB�ЫB�3�BR�Bx�B
=�Bu�B��BPz�B줧B0ؤBeŤBҵ�BC�B��B�p�B�F�B���B|L�B/h�B{l�B�P�B���Bb&�B���B���BP�B�[�B��Bm��BJ�Bߐ�B��B^��B��B�.�Bn�Bs�B��B3�B���B�ܨB/�B��B(1�B��B�"�B��Bx��B��B ��BJ��B|�B-�BF�B�+�BP�BP߱Bł�B�B'B�B �B\r�B���B$��Bz��Bz�B}��B���B���B��B7F�B\3�B���B��B�ҫB;�B�6�Bc*�B�תBt�BBt�BbԭB���B/q�B�~�B~�B� �B�v�B�ɤBeŤB�ħB&s�B·�BG�B�z�Bߣ�B�a�B)éB��B��KeyAttrFlagsi!/�KeyAttrDataFloatf

\�KeyAttrRefCounti�H�AnimationCurveLo\:SAnimCurveS��	DefaultD��KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf��'���MҬ����݅���6���L��ġ�腠�ǡ�� ۞��/�����DE��j��"t���������"��D��3���k��Nǔ��ϒ� ������`���D��#�������!y�Fcn��a�UR�RvB���0����ZQ���������fK�b���S՗?J�^@d��@b�AM�2AH�bA��A���Av*�Az3�A+��Aɖ�AU�B��B1HB��B+�B��B��B�&B�Bҙ
B�	B��B�	�Ao�A�h�A�3�A�ۀA^OA'eAs�@
�J@/-K��/|��"�LO�S^�� s�����������	�ލ—�!…3,��k5�,>��E¡6L�J�R�Y�Y��_Œ�c£�d�:�b�i;^�lW��HO�G=G��B?Žf6��-�A�$�?	�x�„z���o������k\����E����w�{���6��o@�7A�QA�R�A7�A[��A���AKd
B�TB�:$B^�/B]:B�CBN�JBa
QB|WBZ
^B�HdB��hB
}kB��kB,�hB�cBn\Bv2TB/�KB>�CB2%;B�M2B�7)B�0B�k
BB!�A���A+��A�;�A=�;A�.�@��D@����:7���!�نn��f���"������ߛ›�"
$��&/�9I8���?��F���J�ۃN��NR¾�V¡+[��^�a^���[�SRV•N�EqC���7���+·�ˆ4“��Yy���/����0�����f�Г �������@ ؿ@��A�;AgUYA��nAp�AT�AȌA�H�A���A�~�AҞ�At�A�gA.DA��A�?�@��@f��;,��wK#���^��p���������}���C}¼!€ �a�0›|=��G�0�N�M:V�S�^�Ig���n�2Hu�mey˜�y��*x���KeyAttrFlagsi!�KeyAttrDataFloatf

;�KeyAttrRefCounti�'�AnimationCurveL�\:SAnimCurveS��	DefaultD�����KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf��'\�t�]��[\�վX��oS��>I�F':���-��n�p�}�������ɿ����M¥��f���Ր��΋��
���3���ہ���z�'�f���E��d��������=��?���? ��?��@��!@w8=@9m@���@�ϖ@d �@���@9��@[-�@���@��@)¢@���@Gݰ@M҄@�n<@���?�UR?pV�J�4���Pc���?�B��P�����I��Žp�¤k�������ÿ>��Uï�!��#�Ym$Å�%Ëi'�
�)Õf+�C�,�s�-�b�.� /���/�21Ù�2�C�4�l:7�bi9���:�<�T=Ò�>��$@�ݒGÑ�Q�0�[��kl�r�à֑Ý��h��?�����I���� �þ���e��m2�Ï�Ê&�æɮÄ�å�����lC��]���H��x���۔�����DY�Ï���k��F��å������Ú'�� =��U����#μ�����������x)�éU�����>��vg��_��÷j��{��dĖ���/��|�����N�M���Īe�GU�0N�T�u�4�İB���*��@��Ħ��b��W���ē�ĄI	��
���
�NĚ��3j�a:Ė4ľI!��&��))�݇+�Y7-ġ1.ğ/���/��0��^0��0�/1Ļ�1�1�1�_;2ĺ�2�b�2�v�2���2�U3ĠB3Ă�3��-4�G�4ėZ5ę�5��5Đ6��
6�6Ĩ6�Q6Ĉ�5��5Ĭ6�6ğ�5��5�h�5���5��5�ê5��z5�H^5Ļ85�k�4Ěm4Į�3�9<3�^�2���1�5�1Į2�D�0�g�/���.�l�,���*�*V)��(��W&�b/"�(4�X��SRij�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLp`\:SAnimCurveS}�	DefaultD��@��KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��h��
KeyValueFloatf���m�@��@N��@�9�@X˹@Y,�@��@6��@�N�@��@G<�@���@T��@蔹@���@:�@���@C��@3�@Ze�@g1�@��@��@wr�@�Ǎ@��@�Ns@Ei\@��D@ig*@��@��?�?��&=�ǿ�.O�M���#����K������@��l�@���g����.���(k��/��4�&‘^:¦K�X�Z�a�j��v{‡��~��‹v�ºw��@�����ƒؙ�x���'i��(���u�|�;a�8C�g�(�C�
�YI������m��i�D����U$J?�A�@˦A�fA�*�A&��A��AvM�A�B�B��,B-�CB�XB��eB5�~B��B@�B���B���BS��BT��B���B��BIVzB*WdB�hTB��IB�`=Bl�.B��BIXB���A�`�A�`�A0;AA�A1�W@�Կ������F�;��������������ۑ¹;& �5 �G���[�R[s��2��E���sL��Gq�±��+��…
��=���o��ua���2����&�v��`»OP���C��5�}�%�f]‚6��e���{K��Fac�ˤ����d����u2@���@�LAL�A��A?��A�_�AfJB�B��,B.;BnJLB�_B&�qB�k�B&�B\��BpɚB�`�B	��B�P�B6�B�YrB2�aB��TB.�EB4�2BA!B�
B�,Bf��A���A#ʸAV�A�TA��AE�@犎?0����V�����5	�$o@��=s�Cԅ�V֏�>���+���<���C���7|�(x��uy�P-i�,K��5�!%�����������p���)¿u�@<�@��A+�~A��A|��A��Bd)BjP@B��CBz�QBLlB��B3��B�i�B�x�B��B��B��BϟB���B��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL�>\:SAnimCurveS\�	DefaultD`K��t�KeyVerI�|��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��G��
KeyValueFloatf��[Z��`����"ɿ��տ�3�c$������ݶ�����i���[�޿�ݿ�Rٿ�,տڊؿ�0޿���J�8�)������R��C;����s��'տ�ٺ�y����0g��%-��I��M��\��o�'>�2=��=d�>�F�?�1�?��?���?W�?pZ�?��@Sj�@Q��@.}�@/�	Af�,AF�YA�GzAIS�A���AM�A[�#B
�BW��B�n�B�eCbNCuAC�!C�]Cd(!C��"C#d$C@I&C4�'C��(Cd)C�*CH:+C�Z,C�-C��,C_X+C�t)C'�'CB&C�2%CQ$C$|#Cz\"C�C��C�fChXCl�Cd��B�Q�B�zB�d,B��A:)�AA|+�Apx�A��A��Ai��A�2A�_A�3PA��KA�RA��PA7>A�8A��8Ah7A�4A�*A�
 A$�A��(A�AA��YA�dkA)��A�ێA��A�Y�AU��AkB��5B֧fB�
�BᠧB8s�B�l�B�eC�GC��C]<C�6C6[ C�) C�xC�HC� C�0"CUe$Cs�%C�:&C�%C�%CY�%C�n&C[&CR{&C�4&Cۆ&Cg�'CdN)C)C�(C��&C�$CO�"C'!C� C�CTC��C�n�B��B]F�B�^GB^lB51�Aō�A0I�A��A1�fASA2IAjDAf?A�7A��-A'8A�	Ag�Az�
A�Af�A��A��A�~A�yA!A��
A3�AX�@8P�@�P�@���@oe�@^4�@d)�@	[�@���@H��@���@�
�@���@���@-��@�1�@s��@^�@���@v�
A�#A�>A)?SA�uaA��eAA�hAG��A�t�A&-�AF�
BH�+B\�?B5�OB�AhB���B�!�B_��B���Bq�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL@c\:SAnimCurveS;�	DefaultD`��@S�KeyVerI�[�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��&�
KeyValueFloatf����@��@Z�@���@�׬@���@ڡ@���@vl�@�F�@tt�@�v�@X~�@�O�@��@),�@��@�%�@N|�@*̘@�ə@�ٛ@�9�@���@Z��@#�@�U�@�S�@��@1��@��@$��@>��@��@4��@���@��@u٫@���@���@�H�@kR�@3�@v1�@6��@2AcA3\�@�=�@��@�r�@+�
A��A�A"�A'A�H*AR�A�AP7�@ַ�@O�A2�A��%A�PAdA ,Aߝ�@Se�@���@A�XAW�A��(A��9A�5AE�&A=ZAN	A��A��A��ApXA21"A�3,A3UA�H�@'�@j�@z��@7�@/'
A"A
lA''"A��%AJSAoFA��AHAA�A�}A��/A:�7A˻*A_�AkC�@U@�@p��@LAx)A&�A��.AaV8A��5A!�!A��ASwA|RAA$�A�>A�ANKA��A:g�@-��@(�@'��@KdA!�A�a&A��0A�14AD1A=�!A�5A�>Ar'	A��A#�A,VA�A\�/A�A��A̵�@�d�@���@���@�Q
A>�A�A��(A�D/A�F!A�9AH�A�AA;
AȷA��)Aی1A0�A��A��
A7��@���@�<�@b�A��Ai�A�(A��2AqO1A� #A�/A�vAm�A
�Ax�A�6A�.A
�4AL�)AΈA�
A���@"A=lA��&A�,;A��HA:�IAnyLA�7KA�gBA�6A�X-A�f'A��,A��<A��=A"�6A�u4A��1Af$,A@� A��ApAn�.Af6A��'A��A
A2�A�KA�A?>A(�7A�[!A��A{U$Ah�%AQA�_A"�A�YA6%A��:AYA.�4APKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS	DefaultD�6���2KeyVerI�:
�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���
KeyValueFloatf���!��ƿ<|ԿAӿJ$˿��Ϳ��Ͽ�ɿD�Ϳ�׿�'�Ab�~�����m�
�5�d��2 �="�<y$�b�#�+
�?��؀!�]$�9*���1�EN<���M�R�^���x�$q���(�����t����������m�������-�(��0��2��0�:H/�l��vN����⿜Ԁ?��P@aڋ@S"�@���@��:@g�>&ۿ��Q�5��})��g��4x��!��!�	i�,
�|����0C��-��X�7@4C�@|#�@?	�@,��@�U@�%?�,<�1O������aB��%��5���@�����O+���$���>t��t����ř?yK�@3<�@���@ٟ�@��l@ǒ?��%����o��������J��p��ҹ�E���m����_���̿�{�?}t@su�@R�@Sn�@-f�@��@��]@�>m�J��4�����wT��q��}\����͜��1��qt��q�<�>��@=��@-yL@	�@@
�<@�q@I�
@����1������\�!���3"��u'�H����
�C4��b����|Q�0����?�7Y@q��@��@�'�@q��@+b@�[?������
��kg��32���Y�����ɔ���C����~~����N���[>��B@��@�Y�@O$�@�ކ@ø$@/�+>�q$�����ӷ�����������N�����㬺��ƀ�2R���L�
��?Hsc@�˦@�
�@��@;��@���@P�@��@AN�@�!�@<�@�@�S~@%�'@� �?���?a�@�?b�ξ����H�����M���3����X�ϓL�l21���E�'�?J��@߷�@�t�@m��@�ݸ@p��@�$�@D�@�@��~�����߿Ͳ8��H���)�wB��!�@�I+A/KeyAttrFlagsi!iKeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLPA\:SAnimCurveS�	DefaultD�#�KeyVerI��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf��qh���� >�!>a�>�)Y?��?gp�?C�?�4@�8@��@��@ӌ$@��)@lY+@�/@��2@><5@D�5@�.6@��7@��8@��9@�g9@��8@Y5@y0@i�'@�@��@d7@��@��
@�@�9@��A@Yh@�@�@�@�@	͕@�{�@���@���@G�AU�@FW�@J�7@�@��?X�y�biɿ�ߩ���Q�YU��_���*K?@KE�� ����_�A���r\<>�@��?��J?����GW������2���]���>�^���ڐ����=��i?0� ? ��i�ؿ�{�Λ��5N���|�q�x?5t�?K��?�#(?YԿ�-�9�P�n7|�}�]�Q�F�:����H�1
�>���;�Z�靿�]���y��]w�����=��?-��?5?�տ<�I��uD��{������a���Z��9s���#���ӿ��̿�"�9��������۷�*��w?h��?�m?�<������s��+�d�*����q�������(��BO�����F���=�Je�'
h��1���0�4uu?n��?���?.����,T��D]�%g�|ۉ�7͊��
���-��EM�i\��.s����^#��>ο�ѿ�-��,PK�C��?�@��3?��濢=M���f�A������(�h�2$ ��������|��6>X�?>a��>sM?[î?N�@{�\@;x�@P4q@wz@�6>�/��l��{�wc࿳@��2��EQP�96�>��@��K@��J@5#4@k�e@訙@�R�@§@���@&�@�.�@�P�@��@Ҫb@��M@r�z@u��@n��@W![@2@?�;ڿT�s��^���T� ���C��=�1̿��9��')�A�������m�*�I���%�?�5T@(M@�g@KeyAttrFlagsi!HKeyAttrDataFloatf

uKeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS�	DefaultD�KeyVerI�KeyTimelD
KeyValueFloatfnKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiBAnimationCurveL�[:SAnimCurveS8	DefaultD�a�<PKeyVerI�yKeyTimel�
KeyValueFloatf�3&�KeyAttrFlagsi!KeyAttrDataFloatf

5KeyAttrRefCounti�AnimationCurveL\:SAnimCurveS�	DefaultD�KeyVerI��KeyTimel
KeyValueFloatf.KeyAttrFlagsi!hKeyAttrDataFloatf

�KeyAttrRefCounti�&AnimationCurveL�[:SAnimCurveS�	DefaultD@�/�?KeyVerI�"�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���%�
KeyValueFloatf���~�=e����Ƚ� <��B>�w�><��>��>P�>���>�!�>|,J=_uG����#8�x�Y��Հ�hu�����ލ��s��M��������J����ͿD�s��9~
�D��B�0��N�:�j��sp��#k�渂���������w���#����w���2��m��Ț���O��dc�������
���ڜ�wՕ��Q��ؔ������Ī�G]���3��3d���1��3j@�%��`�ſ˾��>�4�n������D��i'��&�'�"�ZD �^�!� �4��K/��K�Ix4��E��;�*��[V������A���q���y������1}$�u�>�qE��rC�]`>�?�>�"�D�=	Q�V�K��=�
6L��Q�clP��^7�!���� ��MW������)���P�c�S���H���8�9(�w+�Cj:���D�q7>��F��mb��l�Qk�^W�f;��T!����;I��	�M�+��{O��LK�r�=�+o/��+�Gp0�R_7�[�<�$�4��N6���H��G�*8��<�g�����������e����������5��U���P���>��#-��'��k)�\/.�kc3��>��JH���;��.3��*�
�x:��6��VP����������!��������
��S��}���
�*�)�
v5��/B��T��/Z�|�V��TE�=�4��z(�����l���
���$�
BB�xB���8���)����л�4P	�v�
��o����'���D�����������`g���'����-��M��������ƻ�.��h�����V�.-���0̾Y��ɲn��ߚ�L����s��p��D��en����ݞ�����:4��wn�����uҾ��a?kF�?S9??�=)?L�??
�ϻ5JA��=P�
&KeyAttrFlagsi!G&KeyAttrDataFloatf

t&KeyAttrRefCounti�`0AnimationCurveL�\:SAnimCurveS�&	DefaultDjj��&KeyVerI��+�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���/�
KeyValueFloatf��PS3��3^�x}��[���M��᳷�B*ƿ�ֿU�࿋8㿠�࿑�ٿHHҿƎʿ9�¿(պ��s��3���㨿е�������v���—�����1����u���c��pS�b�8�6# �n��=��+
��L/��`^�>ߍ�`�����ݿ�@�V���3�N�Q�#;p�0`���!���0���6��J���\��9w��Ee��b��������������v���
��Ca��Fߢ��@��~���ʰ���k��@9��Ӧ��ȿ������H
���
��	���p���c���2���D��]���y��o~�*�^���L�|G�2�R��h�}p�Ѐy�Ȭ�� ��������������#��!6��~O��_���.��뿕�d�|��P�H�0����wi�Á��-�d��x�$�V�.��
4��8��=�.3�7���
�	���ڿm�����恿��n�ܼ��G;������g'���3���2��z9���B�D[�'V��c��&ؔ��=��B����lv�EMZ�hOW�� P�O�6�D�#��]��a����������O�"�V*;���d�Ẉ�Р��=�����������rj����/1���"z�'�d��SG�|�6�@�7�[�A��X�$(g�Sa��Zd��0g���h���v�
Ӌ�ܠ���0��妔�pb���Xt��Gc�c�X��,A����>������
�hj�l��E�A�	�������R���������I����+��Eb �34�<?�X�?M�?�
@d�@��
@�@e�@��!@Z�B@b^f@�0�@��@C��@��@( �@��@Cp�@���@���@v��@rB�@/[�@p�@L��@ �@{�@-�@W]�@0��@�A��A�{A�A��
A��
A��A@ A_�A�/KeyAttrFlagsi!&0KeyAttrDataFloatf

S0KeyAttrRefCounti�?:AnimationCurveLЬ[:SAnimCurveS�0	DefaultD �>�?�0KeyVerI��5�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��9�
KeyValueFloatf��!�>��>tj)?�|t?�;�?x��?)��?��?I��?>��?�~�?{�?�ܶ?�?Z}�?*��?	"�?K�?1a�?G΅?9n�?�G�?×�?��?���?,�?H�?�d�?,#�?�D�?`Q�?�"�?�ܟ?���?�R�?Lף?QĠ?��?�?1�W?ʋ�>^`�-b��ǿ3����ο�eӾ�5	>�I?��? @���?��>z�?�(�?��r<�" �,����'��_��r�z���x���Z�������x��b�Q�X�l?�h�?��-?W��<��*����}ၿ�St�P-��E��n��X��^ �IRT��������t����.������I��$�D>6�?`|�=q��iJ��UAʿPW�B�jʿ �ҿ�;	�t���}��6A���T��$~��fk�2��B���Wh�����`�0TI��\��1m���̿�ο�ڗ���e�|����=Йs<��&'	��+M��l�����I1��R�VWͿ��]�VվG���+l=SM9>�P�����"��=LV��p.I����C��F��K��ˤ�J���X��룿s|���@���ϯ>�LJ>P��>W�>�1��d$�eKA���dٵ�?
 �#w�Yф�k
��0YB���y��	R��V
�@�տ��~�����)g�2tz�1$Q��3���2�s@0���UZ�9���]Xf��>��������T���h9t�qK�9������������E���9"�3�Q�;d�ʶj�(K��t���"�������I���@߷�6���P�������������V���������5B��Lf���G��m�����������|���> ���Z��*����S��up���k�������d��8���L��g���R������;���9KeyAttrFlagsi!:KeyAttrDataFloatf

2:KeyAttrRefCounti�DAnimationCurveLp�[:SAnimCurveS�:	DefaultD��u��:KeyVerI��?�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��C�
KeyValueFloatf��M���9�����^͎�	j��y
���؛������.���"���M��И��q�������	���ȁ��+y��^r�Nos��v��nv�kv�Fy��u��`t���u�(Cx�AF}�}W���ۄ�I���Q�u�
Lq��4o�tW���)�fV�(^㿀��F����s�Q�
g��K�G�7��01���"�X���`��u���C��ʠ���0$��L�NV��4t��a����q�״H�0XG�dBZ���^�y5�I�)���P��� ���f�.�YGx��Ղ��^=e�)�,l�����躱��.�ao ��B$�������
"��=H��SK�F�.���ؿ�F���@	��h�=%��>L�3?$I�>�"߾�K����ݾ����o�[i����ʿϖڿ��������a�g�/邿w!W�P�߾�>O�m�?t�?�o�?G	?�?,1�?IO|?�{?$�}?r`^?�A5?�yx>��N���b�o�M�>hv���C�2�=>o�N?�r�?j��?�¼?�-#?�
4��H>��>f�g=�\��ྏ��/L�T���߾��񚟿�w��k+�>�B>�o>�7?}�?���?��8?��>wT�>�5>>F�[��]��1H�[ަ��
ֿE�ҿB����K���q�'zʿ�f��,e�w��Z���޾�r
%�&�,�Ht8���d�1v�FF��vLJ�P�j��(��Q:��FH���ף�
,+�A�.��^Ѿ�[�tܐ>�	�>�7
?�4?e+?Qf?��?���>�N�=�D�>�<<*��������gJ��+�ӿp$�#�A��/7�3�6�РT��{���I��ac�	�I�=o<��E�1��ֈ��
�^���Z��C:>6��|�]��뎿����пJ���>
��=������
�"�.�ʑ/�|q���y���CKeyAttrFlagsi!�CKeyAttrDataFloatf

DKeyAttrRefCounti��MAnimationCurveLp0\:SAnimCurveStD	DefaultD�}6���DKeyVerI��I�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��_M�
KeyValueFloatf��쳡��C��Qj���K���~ǿQ5ѿL�ۿ� �̓�3���z��a)�DF�P�⿝�޿h�ٿ�>տ(�ѿ�IοLgʿ);ƿ�Hÿک��tզ�us�����������v��W���@��<���S�� x�. ��Cȿ�F��a�f,��IF�s�g��?��kܝ�1��%����^�����')��`��O������
��
�o�U��
����l���������h�����������Q��B��s��HA��#�/*��+���&�ӕ����4��|���]��.1���C��=���������B��1������á��wG������u���]��#�������K���[+�������� ����e��De��/0���v�`o�Q�o��w�xHp�O���������Y������ԅ��v�b�l�c�]�V�F���6���*�������k�L�?�y[�Ɔ~����[2��x ��d���%���(���s��������J���ý��Χ�����d��K���F��q�e�A]��Ob�.�q�i��#H��������
������7Q�����]j�������w����m��F���ތ�����sA������<����j���3��훣����{ ��ر������P��s+�����@���jM��sj��#����������p}�x�_�W}Z�S�`�4+r�Ϟ��G������n�������>{���x�s�p���`�>J���+����U����Q����L��>)"?Y-5?��?�`�>�g3?��?���?�@j>=@�in@Mo�@�ȡ@M
�@� �@C�@�i�@��@���@�$�@�`@�O@�9_@
t@���@՞@���@

�@6��@���@?��@���@�@���@+�@���@���@�MKeyAttrFlagsi!�MKeyAttrDataFloatf

�MKeyAttrRefCounti��WAnimationCurveL@�[:SAnimCurveSSN	DefaultD�#�@kNKeyVerI�sS�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��>W�
KeyValueFloatf��a@��
@�K@+*@���?ʙ�?-Q�?��?*�?Rc�?R�?8?�?���?뿍?�x�?c�?8��?p(�?E�?4��?���?Tt�?J�?~�?>��?T�?�?�?��?5��?��?^r�?��?��?���?�q�?�i�?Pi@ǒ@�@�K@p	'@�5:@k�K@B�X@o@癅@�@2j@/�l@zm@�`W@1�Z@��@��@5?�@XɊ@���@�֐@��p@�KR@��M@͠T@�C]@��@Q��@��@��v@]Oi@^�v@�^@�^@�?�@=Վ@B��@�e�@?�@���@��^@<@G�.@s�!@0$@��2@�M@2.v@�l�@�a@�jP@`U@0TS@��V@NJm@T�@z��@��@��@��h@��;@n@�@)@�[
@�@VO@��6@9�G@�A@�]N@pV@|Y@^d@S�{@(��@��@Kv�@FQu@H�B@‚@�s@�7�?P�?^�&@��B@'�f@yZ�@+��@�g@�8P@��W@m�X@�M@mU@��b@�e@�]I@nTN@��0@�@���?�#@E>@g{%@��I@1g@B�@W�@h��@g��@���@��p@�R@�I[@Ģo@��@��@O��@=�d@x�=@�q)@�L'@V�@9$@��D@�!o@Q@�@�j�@�@�ˀ@NV�@8��@���@�2�@ǯ�@0>�@��@LK�@�kd@�rA@351@x%@J�4@��_@�[@��@S@��@�{�@,��@�o�@��@!n�@^p�@�܃@��@�w@&r@��g@z�X@�M@�N<@��-@?>"@AF@=u@��@md@&�@uG�?�^�?�=?N�F?�@R?�A�?���?��$@�+#@
�	@3D@'�@��?ߌ?,�?��,?&	F?��$?�ݗ>�-=�
<ɂ�=��T=��>�H�?�	@hWKeyAttrFlagsi!�WKeyAttrDataFloatf

�WKeyAttrRefCounti�<YAnimationCurveL�[:SAnimCurveS2X	DefaultD ܥ�<JXKeyVerI�sXKeyTimel�X
KeyValueFloatf�.e&�XKeyAttrFlagsi!YKeyAttrDataFloatf

/YKeyAttrRefCounti�ZAnimationCurveL�a\:SAnimCurveS�Y	DefaultD`��<�YKeyVerI��YKeyTimel�Y
KeyValueFloatf��&(ZKeyAttrFlagsi!bZKeyAttrDataFloatf

�ZKeyAttrRefCounti�[AnimationCurveL�\:SAnimCurveS�Z	DefaultD e|�<
[KeyVerI�3[KeyTimel^[
KeyValueFloatf)�%�[KeyAttrFlagsi!�[KeyAttrDataFloatf

�[KeyAttrRefCounti\]AnimationCurveL@\:SAnimCurveSR\	DefaultD ܥ�<j\KeyVerI��\KeyTimel�\
KeyValueFloatf�.e&�\KeyAttrFlagsi!"]KeyAttrDataFloatf

O]KeyAttrRefCounti�^AnimationCurveL�!\:SAnimCurveS�]	DefaultD`��<�]KeyVerI��]KeyTimel^
KeyValueFloatf��&H^KeyAttrFlagsi!�^KeyAttrDataFloatf

�^KeyAttrRefCounti`AnimationCurveL��[:SAnimCurveS_	DefaultD e|�<*_KeyVerI�S_KeyTimel~_
KeyValueFloatf)�%�_KeyAttrFlagsi!�_KeyAttrDataFloatf

`KeyAttrRefCounti|aAnimationCurveLP\:SAnimCurveSr`	DefaultD ܥ�<�`KeyVerI��`KeyTimel�`
KeyValueFloatf�.e&aKeyAttrFlagsi!BaKeyAttrDataFloatf

oaKeyAttrRefCounti�bAnimationCurveLa\:SAnimCurveS�a	DefaultD`��<�aKeyVerI�bKeyTimel>b
KeyValueFloatf��&hbKeyAttrFlagsi!�bKeyAttrDataFloatf

�bKeyAttrRefCounti<dAnimationCurveL�[:SAnimCurveS2c	DefaultD e|�<JcKeyVerI�scKeyTimel�c
KeyValueFloatf)�%�cKeyAttrFlagsi!dKeyAttrDataFloatf

/dKeyAttrRefCounti�eAnimationCurveL��[:SAnimCurveS�d	DefaultD ܥ�<�dKeyVerI��dKeyTimel�d
KeyValueFloatf�.e&(eKeyAttrFlagsi!beKeyAttrDataFloatf

�eKeyAttrRefCounti�fAnimationCurveL�\:SAnimCurveS�e	DefaultD`��<
fKeyVerI�3fKeyTimel^f
KeyValueFloatf��&�fKeyAttrFlagsi!�fKeyAttrDataFloatf

�fKeyAttrRefCounti\hAnimationCurveL�\:SAnimCurveSRg	DefaultD e|�<jgKeyVerI��gKeyTimel�g
KeyValueFloatf)�%�gKeyAttrFlagsi!"hKeyAttrDataFloatf

OhKeyAttrRefCounti�iAnimationCurveL��[:SAnimCurveS�h	DefaultD ܥ�<�hKeyVerI��hKeyTimeli
KeyValueFloatf�.e&HiKeyAttrFlagsi!�iKeyAttrDataFloatf

�iKeyAttrRefCountikAnimationCurveL�8\:SAnimCurveSj	DefaultD`��<*jKeyVerI�SjKeyTimel~j
KeyValueFloatf��&�jKeyAttrFlagsi!�jKeyAttrDataFloatf

kKeyAttrRefCounti|lAnimationCurveL�/\:SAnimCurveSrk	DefaultD e|�<�kKeyVerI��kKeyTimel�k
KeyValueFloatf)�%lKeyAttrFlagsi!BlKeyAttrDataFloatf

olKeyAttrRefCounti�mAnimationCurveL��[:SAnimCurveS�l	DefaultD ܥ�<�lKeyVerI�mKeyTimel>m
KeyValueFloatf�.e&hmKeyAttrFlagsi!�mKeyAttrDataFloatf

�mKeyAttrRefCounti<oAnimationCurveL�[:SAnimCurveS2n	DefaultD`��<JnKeyVerI�snKeyTimel�n
KeyValueFloatf��&�nKeyAttrFlagsi!oKeyAttrDataFloatf

/oKeyAttrRefCounti�pAnimationCurveLЗ[:SAnimCurveS�o	DefaultD e|�<�oKeyVerI��oKeyTimel�o
KeyValueFloatf)�%(pKeyAttrFlagsi!bpKeyAttrDataFloatf

�pKeyAttrRefCounti�qAnimationCurveL��[:SAnimCurveS�p	DefaultD ܥ�<
qKeyVerI�3qKeyTimel^q
KeyValueFloatf�.e&�qKeyAttrFlagsi!�qKeyAttrDataFloatf

�qKeyAttrRefCounti\sAnimationCurveL`�[:SAnimCurveSRr	DefaultD`��<jrKeyVerI��rKeyTimel�r
KeyValueFloatf��&�rKeyAttrFlagsi!"sKeyAttrDataFloatf

OsKeyAttrRefCounti�tAnimationCurveL`=\:SAnimCurveS�s	DefaultD e|�<�sKeyVerI��sKeyTimelt
KeyValueFloatf)�%HtKeyAttrFlagsi!�tKeyAttrDataFloatf

�tKeyAttrRefCountivAnimationCurveLi\:SAnimCurveSu	DefaultD ܥ�<*uKeyVerI�SuKeyTimel~u
KeyValueFloatf�.e&�uKeyAttrFlagsi!�uKeyAttrDataFloatf

vKeyAttrRefCounti|wAnimationCurveL�[:SAnimCurveSrv	DefaultD`��<�vKeyVerI��vKeyTimel�v
KeyValueFloatf��&wKeyAttrFlagsi!BwKeyAttrDataFloatf

owKeyAttrRefCounti�xAnimationCurveL �[:SAnimCurveS�w	DefaultD e|�<�wKeyVerI�xKeyTimel>x
KeyValueFloatf)�%hxKeyAttrFlagsi!�xKeyAttrDataFloatf

�xKeyAttrRefCounti<zAnimationCurveL�f\:SAnimCurveS2y	DefaultD ܥ�<JyKeyVerI�syKeyTimel�y
KeyValueFloatf�.e&�yKeyAttrFlagsi!zKeyAttrDataFloatf

/zKeyAttrRefCounti�{AnimationCurveL��[:SAnimCurveS�z	DefaultD`��<�zKeyVerI��zKeyTimel�z
KeyValueFloatf��&({KeyAttrFlagsi!b{KeyAttrDataFloatf

�{KeyAttrRefCounti�|AnimationCurveL )\:SAnimCurveS�{	DefaultD e|�<
|KeyVerI�3|KeyTimel^|
KeyValueFloatf)�%�|KeyAttrFlagsi!�|KeyAttrDataFloatf

�|KeyAttrRefCounti\~AnimationCurveL0�[:SAnimCurveSR}	DefaultD ܥ�<j}KeyVerI��}KeyTimel�}
KeyValueFloatf�.e&�}KeyAttrFlagsi!"~KeyAttrDataFloatf

O~KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�~	DefaultD`��<�~KeyVerI��~KeyTimel
KeyValueFloatf��&HKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL�|\:SAnimCurveS�	DefaultD e|�<*�KeyVerI�S�KeyTimel~�
KeyValueFloatf)�%��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti|�AnimationCurveLpB\:SAnimCurveSr�	DefaultD ܥ�<��KeyVerI���KeyTimelށ
KeyValueFloatf�.e&�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCounti܃AnimationCurveL ,\:SAnimCurveS҂	DefaultD`��<�KeyVerI��KeyTimel>�
KeyValueFloatf��&h�KeyAttrFlagsi!��KeyAttrDataFloatf

σKeyAttrRefCounti<�AnimationCurveL�O\:SAnimCurveS2�	DefaultD e|�<J�KeyVerI�s�KeyTimel��
KeyValueFloatf)�%ȄKeyAttrFlagsi!�KeyAttrDataFloatf

/�KeyAttrRefCounti��AnimationCurveL�}\:SAnimCurveS��	DefaultD ܥ�<��KeyVerI�ӅKeyTimel��
KeyValueFloatf�.e&(�KeyAttrFlagsi!b�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL`�[:SAnimCurveS�	DefaultD`��<
�KeyVerI�3�KeyTimel^�
KeyValueFloatf��&��KeyAttrFlagsi!‡KeyAttrDataFloatf

�KeyAttrRefCounti\�AnimationCurveL�[:SAnimCurveSR�	DefaultD e|�<j�KeyVerI���KeyTimel��
KeyValueFloatf)�%�KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD ܥ�<ʉKeyVerI��KeyTimel�
KeyValueFloatf�.e&H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�"\:SAnimCurveS�	DefaultD`��<*�KeyVerI�S�KeyTimel~�
KeyValueFloatf��&��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti|�AnimationCurveL��[:SAnimCurveSr�	DefaultD e|�<��KeyVerI���KeyTimelތ
KeyValueFloatf)�%�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCounti܎AnimationCurveL`m\:SAnimCurveSҍ	DefaultD��KeyVerI��KeyTimel>�
KeyValueFloatf��h�KeyAttrFlagsi!��KeyAttrDataFloatf

ώKeyAttrRefCounti<�AnimationCurveL��[:SAnimCurveS2�	DefaultD`��<J�KeyVerI�s�KeyTimel��
KeyValueFloatf��&ȏKeyAttrFlagsi!�KeyAttrDataFloatf

/�KeyAttrRefCounti��AnimationCurveL�*\:SAnimCurveS��	DefaultD e|�<��KeyVerI�ӐKeyTimel��
KeyValueFloatf)�%(�KeyAttrFlagsi!b�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�[\:SAnimCurveS�	DefaultD ܥ�<
�KeyVerI�3�KeyTimel^�
KeyValueFloatf�.e&��KeyAttrFlagsi!’KeyAttrDataFloatf

�KeyAttrRefCounti\�AnimationCurveL �[:SAnimCurveSR�	DefaultD`��<j�KeyVerI���KeyTimel��
KeyValueFloatf��&�KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCounti��AnimationCurveL �[:SAnimCurveS��	DefaultD e|�<ʔKeyVerI��KeyTimel�
KeyValueFloatf)�%H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�-\:SAnimCurveS�	DefaultD ܥ�<*�KeyVerI�S�KeyTimel~�
KeyValueFloatf�.e&��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti|�AnimationCurveL@�[:SAnimCurveSr�	DefaultD`��<��KeyVerI���KeyTimelޗ
KeyValueFloatf��&�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCountiܙAnimationCurveL �[:SAnimCurveSҘ	DefaultD e|�<�KeyVerI��KeyTimel>�
KeyValueFloatf)�%h�KeyAttrFlagsi!��KeyAttrDataFloatf

ϙKeyAttrRefCounti<�AnimationCurveL�6\:SAnimCurveS2�	DefaultD ܥ�<J�KeyVerI�s�KeyTimel��
KeyValueFloatf�.e&ȚKeyAttrFlagsi!�KeyAttrDataFloatf

/�KeyAttrRefCounti��AnimationCurveL�[:SAnimCurveS��	DefaultD`��<��KeyVerI�ӛKeyTimel��
KeyValueFloatf��&(�KeyAttrFlagsi!b�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLp�[:SAnimCurveS�	DefaultD e|�<
�KeyVerI�3�KeyTimel^�
KeyValueFloatf)�%��KeyAttrFlagsi!KeyAttrDataFloatf

�KeyAttrRefCounti\�AnimationCurveLК[:SAnimCurveSR�	DefaultD ܥ�<j�KeyVerI���KeyTimel��
KeyValueFloatf�.e&�KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCounti��AnimationCurveL�)\:SAnimCurveS��	DefaultD`��<ʟKeyVerI��KeyTimel�
KeyValueFloatf��&H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL &\:SAnimCurveS�	DefaultD e|�<*�KeyVerI�S�KeyTimel~�
KeyValueFloatf)�%��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti|�AnimationCurveL�[:SAnimCurveSr�	DefaultD ܥ�<��KeyVerI���KeyTimelޢ
KeyValueFloatf�.e&�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCountiܤAnimationCurveL�[:SAnimCurveSң	DefaultD`��<�KeyVerI��KeyTimel>�
KeyValueFloatf��&h�KeyAttrFlagsi!��KeyAttrDataFloatf

ϤKeyAttrRefCounti<�AnimationCurveL��[:SAnimCurveS2�	DefaultD e|�<J�KeyVerI�s�KeyTimel��
KeyValueFloatf)�%ȥKeyAttrFlagsi!�KeyAttrDataFloatf

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

��KeyAttrRefCounti��AnimationCurveL`�[:SAnimCurveS�	DefaultD`��<
�KeyVerI�3�KeyTimel^�
KeyValueFloatf��&��KeyAttrFlagsi!¨KeyAttrDataFloatf

�KeyAttrRefCounti\�AnimationCurveL�\:SAnimCurveSR�	DefaultD e|�<j�KeyVerI���KeyTimel��
KeyValueFloatf)�%�KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCounti��AnimationCurveL�"\:SAnimCurveS��	DefaultD�ʪKeyVerI��KeyTimel�
KeyValueFloatf��H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD`��<*�KeyVerI�S�KeyTimel~�
KeyValueFloatf��&��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti|�AnimationCurveL�D\:SAnimCurveSr�	DefaultD e|�<��KeyVerI���KeyTimelޭ
KeyValueFloatf)�%�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCountiܯAnimationCurveL�[:SAnimCurveSҮ	DefaultD ܥ�<�KeyVerI��KeyTimel>�
KeyValueFloatf�.e&h�KeyAttrFlagsi!��KeyAttrDataFloatf

ϯKeyAttrRefCounti<�AnimationCurveL@�[:SAnimCurveS2�	DefaultD`��<J�KeyVerI�s�KeyTimel��
KeyValueFloatf��&ȰKeyAttrFlagsi!�KeyAttrDataFloatf

/�KeyAttrRefCounti��AnimationCurveLP\:SAnimCurveS��	DefaultD e|�<��KeyVerI�ӱKeyTimel��
KeyValueFloatf)�%(�KeyAttrFlagsi!b�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�
\:SAnimCurveS�	DefaultD ܥ�<
�KeyVerI�3�KeyTimel^�
KeyValueFloatf�.e&��KeyAttrFlagsi!³KeyAttrDataFloatf

�KeyAttrRefCounti\�AnimationCurveL`�[:SAnimCurveSR�	DefaultD`��<j�KeyVerI���KeyTimel��
KeyValueFloatf��&�KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCounti��AnimationCurveL�i\:SAnimCurveS��	DefaultD e|�<ʵKeyVerI��KeyTimel�
KeyValueFloatf)�%H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLPe\:SAnimCurveS�	DefaultD ܥ�<*�KeyVerI�S�KeyTimel~�
KeyValueFloatf�.e&��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti|�AnimationCurveL 5\:SAnimCurveSr�	DefaultD`��<��KeyVerI���KeyTimel޸
KeyValueFloatf��&�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCountiܺAnimationCurveL�[:SAnimCurveSҹ	DefaultD e|�<�KeyVerI��KeyTimel>�
KeyValueFloatf)�%h�KeyAttrFlagsi!��KeyAttrDataFloatf

ϺKeyAttrRefCounti��AnimationCurveL�4\:SAnimCurveS2�	DefaultD`�	�J�KeyVerI�M��KeyTimel��x�aP��C�&$�@�h���LGm�s2��DC���p(�8'��r1��).�b��9��ݴ�)��s:1q'�@�F.
����>S��
�xy������F���cY��^읬�~�6�RVa�D�oسs(��֏�4`Qi�_��,f�?]S2f‚1��*.Saݓ�1�h:|�|��N�-���9��bg��-��X3|}����L�6��	��Ÿc���@ڲ��V���E3s�_`�]�
+��#gӌ;۵شN�+V�=��C��#�xs�#,K������'�An����#���G�q믆�A���E���xפ�F�h�%�^������m�\��\��΋q`���!4��ي�����+qC(�^��¶�.��I���%�u.�[���h��[�13�a�ە	a�26�3Ny��ךN+�
M�����i㩱MX�����P�m��vb����3���6�?^u�"�����Aװ�XpL?�]�2#i]}��`Χ�G����ن9u���=��n��m��ٳ5�i�7�#X͜|�Y�֕�PٌU$S���E���;��Q��ؗQ�M/C�`EE?g�j����\��8K��]#u�0���ˊWsi�x\+֗���"o��h�]R~׌%��K�1J����kXWT���<O�~�,���[��S�P���J/��G��i�{�
��Z�bi�`�&��ȿ�-���ޣU9;0�Uv��E��i�郘��������hE���nN`c�CO��v�g1��7���tc���%�^�y7]�����q�5��c�D����+��.y���l}��+*?[Jk���I���w��X����;38�h�0�����Ŭ%M���lnV�E=��3#Rm�5�`���W��>�2��wbE���ѾS�_b㢤kX��஠��6������D�s<��#��aQS�<�v�s�pͱH�dZ��î�V+օn
���}�߁��?X[�#�9�_��Z����o��f�6`����Z�XI�f�jǖ��)����̬���f;�Z�o`f�j�æ��q�h�4�0��?�F_�DJ�vkN`��6�Mf���[��SZ9GF�5m���1��5tͶ�=X�4�.v�
Si���[����;Gs�rZ[Ղ9�����|SN�qwb����ki���6��xގY��iKN��\����y���|��{�̒?Ì��re���+�
�gҾ��<ltDZ�,�=�S���Z�
k�:��ΏYG�7����
KeyValueFloatf���O���O���P�StP���O�y�O�� O���O�p�N��L��
K���J�H�J�D{L�l�J�%�I�?~J��NN�wAH�
5F� �C���B�T�A�]@��>�;=�e�;�!t;���=���@��oE��FL���U���[�W���L���E���B�\k0�CE�U��+�� 
� ���s׿�����׏�]o�Y-�+�E���dѿ�����"���'�́��5��&�U���%��~׿�ا��ힿ�>��)�����ſ��¿#���߬���2���0�}�$~2�0{;��K'�s�,��7�w76�|�$��W���c����T��%�
�9�����yҿ�n���%��%h����O� ���-����{��"�Ha�������R�߁�bt��������쿭�Կ����Sx���Cٿ���Մ"�k(���9�K9%�\S��/���������ٽ����c쿞��\���ֿ$���{�э+��. ��k�gf��d�ϿY!��
�����տL��Zο�(��	�=� OͿ^�ƿˌ��"s������Ԥ��	v����RC��
���<ݿ��9���3��9 � ���U�|� �f�,�w;-�	,�����5
��~��ӿG켿����
z���(���lſ["�w��@��T����dl+�֗&�c.���;��@+�F���d*�/�2�p�/���!�jZ���'�r�!�Yu$��2<�Re��*��Oʊ�����5a��L�y���w���r��h��FY�kQ�ĎY��N\� �]��d�h��{�;�������wy�cJV�.>�#p/��2�7$/��������!��&<���V�s8X���D�;�U�U��q�Ք�������i���f�v�I�9H�>�KeyAttrFlagsi!x�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL\:SAnimCurveS�	DefaultD�=@ �KeyVerI�(��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�����
KeyValueFloatf���y�@�P�@?s�@n�@�ا@S�@���@�#�@�L�@�̪@�٩@Ǩ@U��@�x�@�Q�@�s�@GJ�@�B�@��@<�@��@�>�@��@n�@N3�@S�@�ʙ@8��@�g�@]�@�I�@���@�J�@֡�@�Ϭ@7��@舦@X��@��@Tj�@���@'Б@N�@RU@��9@�@�@�?���?�
�?nH�?i]�?vm�?�+@h3]@_pm@$�f@�{@�Տ@2,�@q��@Qd�@mt�@�a9@�@X�?L]@'�(@�*@�"@c�@�� @�!R@�y@�@:�@=�@��@$��@g�@:H�@���@�_�@Ga�@��N@\�U@�K@�)E@U�C@�/ @t�@�;�?��$@qP@ˣf@5Gn@1^@�Ow@M�@sb�@��@��@ ��@��}@z�:@A�D@"�D@J|?@�@;@xU@\�(@�CR@��o@�@Άt@ �@8$}@S#u@��@���@c��@��@&�u@�!@@�3@�!@��@F$�?o�?��q?�Ӆ?���?6�@�,@̟>@:b5@�4@�ne@Ju@?M}@�t�@�R�@��q@��C@*�@ws�?�V@��	@�P�?�V�?s��?R�@�NX@��L@	�X@�Ӏ@fn@3҄@�-�@9�@nո@�B�@;��@X�z@�GG@(%2@`�&@
@X�@X<�?s��?��@yF/@��?@�YM@ �X@�gZ@
��@���@}Ԭ@+l�@=Ʒ@h�@��@�x@�{@�D}@�p@•o@A΂@S�@5.�@���@8��@P`�@�4�@�`�@8�@e��@�:�@}r�@�ű@yr�@�Т@���@XR�@Ў�@|l�@H��@w��@=��@"��@?��@���@9�@`~�@g�@Ks�@�>�@�m�@oQ�@�@n&�@̙�@���@%�@#v�@.\�@��@�)�@���@{��@�ٟ@GD�@�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�p�AnimationCurveLp]\:SAnimCurveS��	DefaultD�³�?��KeyVerI���KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�����
KeyValueFloatf����>���>�(�>t�>�/�>���>W�>	"�>�?��!?�w2?l9?��:?:;?ۨ=?�\:?�2?�/'?J�??�K?��?��?.E�>/H�>�W?��	?>g?8c
?��?���>���>F�>��=T����I,>!&�>��??��?��?c �?���?��?�> ^���>0?�d?A��?�l�?�F�?]ֆ?��?�9?䬫��r����>:�@,@D@Q�|@5��@
4�@��>@5��?�,(?�qC?��?���?T<�?P��?�}�?�!�?�J?
�>C#�n�=̓�?��@\,=@�}@j�@Ш_@Ր
@��6?�����t�������<<�
?��?
��?�7�?7�"?�K��܆��P2����??#@/�f@���@]B�@t�a@:@F~?X&=�L�>��S?���?��@i�@��@kS�?�S�>X8Ͼ�}¾b��=�p�?|�4@b�{@�q@|�1@�@�[?Fe����X���"�:[��>k�t?��?w%�?�^�?s�?P�>�o�='��?�\&@A�u@��@P��@��@j�o@6�@��?[O?��H?ߝ�?�U@~�*@�{@@{L5@5@Ωw?����2v4��I�m��?�@�	@@�c@�9@i��?�s?�`3�_��,<��k>	?9@g?K]�?��?8�?�Nt?�@Ҽ#��1}�<���?�'@�OJ@�O@H%@���?a�4?�>ξs�`�^6������=f�`>du�>�T�>��=3C4��M��ߞ�x�6���ʔ���ja�d0��OܾN��7����8">~��>��L?	��?��?��@��?,�?�	h?V��=�⳾�A��1D=f.h>�i�?�i@V�?Up�>�ځ��qῌ:���e��k�>�d?���?��y?4�!?y��>	H
>��<��KeyAttrFlagsi!6�KeyAttrDataFloatf

c�KeyAttrRefCounti�O�AnimationCurveL`�[:SAnimCurveS��	DefaultDs�/���KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf������"z�5Ju�!�o���h��`�0MX��fT�ҶS�b#T���T��#V���Y�Rb]�� b�e�h��j���l��zl�x�l�-l���l��im��8m�"Cl��j��h�=e�ȕc�S�a�>`�—]�4)V��cA����-���u�M�2��;��2@��v@]Z'@&��?H��?� @��o@��@�9IAHˎA�\�A�B�A��AX�A�_A�A�@��A_A>
�AG��A[{�AG[�A��zA��?A�6+A�6SA�v�AS��Aq��A��Ayy�A�i�A�c�A�3A48�@�A��4AψzA*n�A,��A��A(�A9̓A2v\A".A��8A�}{A�e�AZ��A���Af��AW��A:9�AПNAAa�:AwjvA)
�A���A�T�A@��A��Ay�A��YA6O1ACSA�X�A�A:}�A�7�AH`�A^��A+?�A��EA�A�a4A})xA&J�A���Aj��AyɣA:�Ae7�A�\NAC�4A�dA
,�Aí�A=��A�j�A��AL�A�q�A�7A��A�&A��\A�V�A<¦A��A�@�A)�A��{A��mA��_AԀAoM�AL+�A���A͚�A��A�=�A�3yA�}%APDA��/A�
yA%�A���A���AEáAa8�AS�}A��NA5�EAr%A�S�A�j�AP!�A�#�A���A���A�:_A<>�@�E�@�T�@��*A7�\A�yAD}pAZ
]A[A)|VA�~@A��7A�dA�=�A���A�2�A���A��A'`�A��A��=A�m"A��A�� A�&"A�A��A�o	A��
A���@;Q�@a!�@G;�@<�@�AͣA�ASp�@8�@�U�@�ܵ@}��@�.A���AmٮAD��AJ��A�hA'A<"�@=(�@HUAذ8A
miAl�A�vA�&HA��A7,A�x*A��KeyAttrFlagsi!�KeyAttrDataFloatf

B�KeyAttrRefCounti�.�AnimationCurveL�+\:SAnimCurveS��	DefaultD�`[����KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf��۲���g�a�򾧖��=e�>��?�^?��?�^�?�?W�?f)�?�'Q?{�?V��>�=#���mþ���
�*���H��RN��wO���J��6�`���J	�(>�j@�;V�=.1��kn�c��(���m<������ƛ�V�"��?��a�jhu��Mo�w�O�E3�Fi(�T1���I���b�o���q�\�y�`�������|��n��|̹�����
���� ���A���xV�����"��!����O��E�� ���E���"D��{	���ٍ�y���D���dX��B��U�¶
"�I�!�(�	��������n���a�! s�wM�������H}���z��w��Ak��ǀ�:Y�����o������c� �/#�
f�������Ӓ��ځ��ǃ����>e��P���Š�����c��Ē�P��CZ��2����Ÿ�kP"–~�ߩ�����Z��5-�����+��ܿ���.���-���í�/���a��G&���ة�;4��/�����
���¯� ˜�@J�E	�����ހ��Ht�}�����zJ�������*��z�����Ս�����7:��8�����	©R�"�%¨�#�M���������i?������5��3���y����[��OR������.���
����
������^�����G�
2¡d
�y����ݨ���� ����`��g@������R����ٯ����*���JY�����l"�����k��������&����@���`|�jo��k"������.���������/�	–���i!��P~��fp�^X�Oa�(�r��qy�ڜ~�
x~��v�Q����������A������;�Pk�>���9�������c����KeyAttrFlagsi!��KeyAttrDataFloatf

!�KeyAttrRefCounti�
�AnimationCurveL��[:SAnimCurveS��	DefaultD��S@��KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��o��
KeyValueFloatf���ОB%��B���B���Bu��B���B�o�B�$�B��B���B�p�B]�B1��BBt�BJ�Bx%�B��B��B�H�BOg�B��B(ٜB'�B�8�B�R�B�j�B���BR��B�ŝB�$�BY��B��BL�B��BҰ�Bx�B�ĜB���Bz&�Bj.�B��BMo�B*��B:$�Bh��B�˘B��BѸ�BH�B?C�B�@�B[�B�4�B���B�+�B���B�
�BS��B�h�B~��BC��B��B!k�BP��B
�B���Bi�B�2�B׃�B�F�B��Bd@�B�L�B9�B�a�B6��B��BP�B=��B���BhЋB�Q�B���B�ĎB�z�B]#�B���B	��B���B꥚BU1�B�O�B���B:'�B�֜B��B�v�B��B�ԐB��B�r�B5��B
{�B+��Bd�BuƟB�9�BI��B�k�BB�B
��B�?�BU��Bc��B�f�B]�B��B���Bl�B�3�B�$�B鄍BGI�B���BQ��B���B��B�v�B��B���B��B%ĘB�s�B�H�B���B9�BR5�Bw��B�;�B�B�u�B�ҎBT��B;��B�BBߞB8\�B��B6s�B���B��B�:�B��B#��Bvj�B'��B[��B�A�B�BH�B��BN��B�?�B�ÓB-��Bzd�B4žB+�B̓�BF��BX��Bց�ByךBַ�B�L�B�<�B�B G�B�k�B�{�B�z�B`L�B�c�B�q�B�d�Bu�B��B�B�ݛB���B�B�B
8�B�P�B�F�B�V�B�U�B@s�B�B�]�B(	�B���B�ˑB��B�L�B$��B�
�B}�B	܅Bɗ�BAm�B-��B�ݏBP�BCu�B!~�B��B��B,�B7\�B�$�B�	�B��B���B��B�B���B��B�Bec�B�ԏB<6�Be�Bǟ�B��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti���AnimationCurveL��\:SAnimCurveSc�	DefaultD�\rB@{�KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��N��
KeyValueFloatf���B)�B;�B�6B	TBWBѢBN�B2mBe<B��B�Bu�B�hB��B��BOOB�mB*�Bf�B΄B�B<
B3{B�1B�=B
$BW�BEfB:B@xB��BSQBm�B�	B�@	B��B��B��B6�B��BM�B��B�-$Bń(B5} B8�BPw�����BZ�aB�VB�vTB���B���A�w�A�Q�A���A�F�A2��AO5^A��A��ALayA�)�A�
yAHw�����Ž����8������Õ����MIóg�JB�>d�]���!��(���-���0Ý�0�<.��z(üA'�n�m�����&��íԚ���Þ���Fz����Ý�Á,��=��������r�����_\���A�Ï��ã������T����x���s��,b��X��b�����p��j�������
����['ĸFě	��f������ĥY�5ļ��^"ij�%�ء&Ē�&�~
'ċ�&�@�#��[5Ĺ-�g�,�R-�V�-�!�.�>�/�d�0Ĺ�1�b�2�
�3�7�5���C�HS�ܱT��T��]TĒ�TĴ�T�8BT�� Cčm-�,�,�w�-�&�.�!0��1�̨3� �4�oJ4�	�1��0Ľ�3�o�ĐG%�KV&�˥&��'��{'��>&�:��J-��,� -��-��.Ĝ�.ċ�.� f.ĝ_.č�-ĺt-��3.���4�0�!Ĥ�%�J�&Ŀb'���'�ю&� � ��=4�V�/�L'0��1ĩ)1�A�0�;�/�oN/��B.�)-�*v,�,�XU+�(�*�b>*��}*��*Ċ2+�k�*�5*��)ľ�)�FY+ļD2��F�՝G�Df2�
�,ē2+Ī+Į�+�	�+���+�5',�Z�,���,�R�,�o+,��B,��,�x�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��	AnimationCurveL�[:SAnimCurveSB	DefaultD�e@ZKeyVerI�b�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��-	�
KeyValueFloatf��|(�@�
A��AK�!A�*A�B1A�Q5Ae�6AY@7AR%6A��3A\1A+�-A$?)A`n$A+�A�A��AA�yA3�AW�A�A�A҄AlLA�^A��A�xA�w%A��+A'�0Aڇ6A�d>Ab�LA��cA�Z�A[L�AgK�A�!�AA�BRNBw�2B�_GB�4dBŏ�B1H�B�8�B�}�B	M�B'��B��BL�B�o�B�:�B�[vB�wB���B3A�B5�Bu�B��B=՛B�F�B���B�:�B�)�B���By�B���B��B0M�B"�B���B�B��B���B���B�H�B`��B�6�BF��B�;�BA��Bc�B�y�BŤ�B�^�B�#�B���B���B�B�{�B�`�B
`�B�b�B˲�Bt��B�,�Brt�B��BV��Bz�B��B�/�B�@�B ՙB4ŏB*�B��B��B5�B�X�B��B��Bt�Bݛ�Bp��B�>�B��BNe�B�_�B�x�BB��B��B[4�BY1�B���B�=�BOL�B�o�B�O�B���B�R�B6Bq7rB_EyBz�B�y�BPr�B8u�B7��B2�B._�B<�B��B��B�x�B��B^3�B�BלB�Bs[�B�8�B�r�B>\�Bk��B͘B�ɞBQ�B��B���B��B�:�B��Br/�B_Z�B�W�B�<�By<�B��B�f�B�ʔB��Bp8wBS~Bȇ�B���B0��Bh4�BX��B2r�B��B0#�BI̬B���B<�B
\�B�;�B�(�B*��BW3�B�+�BmC�B=ޡB���B$H�B��B���B7I�Ba�B��B�UeByXDBK]0B��)B�/BZ/>B� PB	�^B�ngB�7oB�r~B�:�BD6�B�W�B-
�B�c�BA��B���B��uB��LB�j>BL9B��AB�YTB`piB5�{B
�BF�B��B��BW	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti��AnimationCurveL`U\:SAnimCurveS!
	DefaultD@��@9
KeyVerI�A�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���
KeyValueFloatf��U�@wG�@���@fH�@:i�@;i�@���@���@�/�@x2�@���@���@]��@���@���@f�@$U�@�@�I�@C�@� �@���@G�@;��@+y�@��@���@�M�@2��@��@P�@$��@&��@Pg�@���@�m�@L"�@΁�@d��@���@-
A�IA̤A<�A�cAi��@�6@���T�B���A`U�A`��Ah�@B@�6�^DA��A0��@���@���>D�����~9�����Yuf���!������T����R��ǔñK�G9Ë�]�+8/�J�,�@�-�ȉ/�F�3��9�$�?��
Cþ�C�<�B�Ȼ?�s@��
�ðc��I����ƥ�����`����Íd��Rp�����ڲ�1���Ր���j��`���,����û���΀�ù7�\�Ğ��4�Đ���Ĉa�����wđ'Ľ\������ąm�I�����J�3&Đ��R��X��	'+�>-,��X,ľW,Ġ�+Ā�(�U�:�g2��1�7�1İ[2�E93�[O4��5�e�5��7�c�8�,�;ę"J��<YįqZĒeZ��MZ�1Z�9+Z��mY�EH�m�2��1�t2ĻK3ĺp4���5�R�7���8ě�8��p6�v5�L9��2%���*Ĭ,��X,��,�f�,Ĉ7+�F?��y2Ħ�1ĭ2īq2��3�_3��3�m�2ĩ3��3�3���3�/#:��)'�
+���+��o,��,�Dc+��%���9��d5Ě�5�ML6ą�6��6��b5�n�4�
�3��2�2��1�J�1Ĕ�1���1��1��1��1��72�4k2��2�U�2�I�3Ĥ%:��N��M�58Ċ|2�I1�-1���0��0�ƭ0�	�0�1�Q�1�r2�f}2�S�2��[3�6KeyAttrFlagsi!pKeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�y\:SAnimCurveS	DefaultD����KeyVerI� �KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf�����r���Pi��2��u���T̹�3ּ�\��'���µ������O��1H���g��nШ��������%˭��s���Я�P������Ÿ��^��Д��)������3����ޞ��T��JS���(�����Z�������;����#>���t��5U�����FO������������_����r��s:�5��ѿ��@.�Xyr�p������}��7؟��H���k\�l1K���f�,����m����Х�����^X[��8�������v��H�����]:��*���;���V��-U�ޚ"��A.��LR�����8>��e����8����f��*���翩����	i��翔�[�=)��#�������D��,5���o�y�>�ɨH�.��Kb��]�������D,��T|��wM��\�i��@���.��=I�Aʎ�9��u����r��)n��(”�\vi���A��.<�%�b��������h���9��
����xX���%���Ք5���f��/�������C]��BD��pq��Ƈ���m��d����?�������� ���N��|,q��3=��L�IW濴�t��	^��x��ٹ��ʱ������諥�=$x�/F7��6����8���vX���a��I�y�'�e�ƿI7��S��5�̿�&��w��T��_#���X�������7����l��QV���e��A���a���Ӳ��E������^`S����z��'�SS&��s8�-S]��݋�VO������ے����^��W�v�y��҅�a���?������4�Q
��@��������x��)-������	�ٙ����f����%��q��wHl�7fx�~����W��"����ܗ�W����[��9�OwH�D�������s��KeyAttrFlagsi!OKeyAttrDataFloatf

|KeyAttrRefCounti�h'AnimationCurveLл[:SAnimCurveS�	DefaultD`U|�?�KeyVerI��"�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���&�
KeyValueFloatf�����?p�@�+@�M@��d@`x@x��@B��@	��@C��@L��@�`�@�9y@�_l@��d@�w]@@�Q@r9?@3+@��@U�@�;"@�,@3a8@�E@H�R@�_b@gs@��@��@ʷ�@Q�@�:�@�'�@^��@�A�'"A�n;AE�NA�FAn.A���@+��@�_�@ia�@���@�f�@���@w��@�ز@��@4"�@�L�@=��@$�A؟A%"A�aA��@���@**�@@��@%�@�v�@��@�ɪ@���@�Y�@���@і�@�m�@-��@��@�l�@l�
Av�A0�A��A���@�a�@s��@0��@���@���@&,�@jq�@���@N�@D"�@�]�@mT�@��@�g�@�M�@eO�@��A�A��@��@���@[f�@�)�@�@�@�2�@�E�@�0�@%Ϭ@f��@�ɰ@ڻ�@�;�@���@�$�@*��@9y�@�.A�oA��	A���@k\�@���@���@���@弥@fL�@dp�@�޻@��@���@���@,<�@���@z��@	�@�A�A��A"A���@
e�@���@"�@4�@ѫ�@f'�@+�@���@��@#�@���@�*�@G;�@Z��@���@���@d��@�A�`�@_�@q��@�f�@]��@^�@�Y�@J��@��@!�@���@W-�@xJ�@���@�W�@<��@��@*�@$�	Aـ	AZA��@K��@��@�޷@��@B��@�
�@�^�@�@�^�@���@���@m��@���@���@ţ�@`�@�n�@�lA�K�@X�@`��@T@A�@A�?
A%AIA��@B�@�P�@䫴@��@
0�@B��@R{�@�l�@�ݸ@���@��@F��@޶�@�(�@�u�@���@��AC~A��ApA��A��A�y�@4��@���@ކAc7A�&KeyAttrFlagsi!.'KeyAttrDataFloatf

['KeyAttrRefCounti�G1AnimationCurveL �[:SAnimCurveS�'	DefaultD1�$��'KeyVerI��,�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��0�
KeyValueFloatf����'���,���2�,�6���8�,�:�~�=��F@�Ϻ@�z@�z�?���?�q1@��r@�Rd@�Y�@�ֲ@��\?�v�;��8��R7��A8��:�!�;���<�]�>�xf@��B�D�F�z�K�ƶP���T��U�W�Q��"O�)�R���Z��"b��`��{K��:$�W��2�B�)��;�ǹB�eeC�(�E�ՃD�b�>�b�2���-�":�r@^�����������\�r�|]X�UC���:��G��Lg��m}�����8yy�zl��7\�p�I��P5��,��p7�.UK�8�q��{������g��a<j��F�M3��j2�P�>���\�uP~��H��⛀��j��>Y�YB�*P.�_�0���G�w�]�|�����3��,�������@bi��KH���5���@��]�Uw���������\�n�8�X�]/I�v
F��8R�|�j����ޘ������z��W�8LB��N8��2��x7�|�U�k�x�3ڂ��~��ۂx��B^���A��:�UD���K�`,S��q�����4���e���Yg��_M�A�!B�R=M�WE_���n�T�p�ph�x�^���M�0�>�3�<���=�;,=���E�v
h�""�����X���/u�J_[�QD��A=���R�`�s�����Z4v�G�h��c��U��G��A���A��4C�#�C�+!P���_���^�l�K�/;2��� ��m ��*��9��N���_��{e��vb��F\�lR���C���1�t($�;�"��60�a�O��e��Eg��Jg�݊i���i���i���n�R6y�����=؊������\z��[�͏<�v+������c���%�2tl��6�����WZ��D�������Q���Q�v���~�n5��f���X���(��"�v��K\���D���>��1b��d���<��>u���0KeyAttrFlagsi!
1KeyAttrDataFloatf

:1KeyAttrRefCounti�8AnimationCurveL��[:SAnimCurveS�1	DefaultD��P	��1KeyVerI�v5�KeyTimelt���}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�p���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)Sm7�
KeyValueFloatft�E�J�E�J�HI�E�A�;U�>�J�uP��������5��%�m�8,_��{�a���A������h\�6	&���<�g&D�f�A���I�4�X�$�a�F	d�F	d�H	d��c�*j��|k��@c�?_�R�_�H	d�*5g��!l�!�k���i� �m��gc�ϺB��P�0���_>
�d��Ϧ�Ϧ����ͦ�)�����e����·����V�}G �����
�� �������3�Ϧ���$�+�$��0!��t�U��̫�Cz�Ϧ�Ϧ�Ϧ�\�(�Ϧ��I�,���eS�V�R���3�s��Φ�Ҧ�Ϧ�Ϧ��X#��F6��.�Φ����6&�+�6�(e-�Φ�	&�Φ�q���Φ����G|�8�>��ѻ�Ϧ���	����x
��
��G�-�	����L����Ҁ��7KeyAttrFlagsi!�7KeyAttrDataFloatf

�7KeyAttrRefCountit�>AnimationCurveL �\:SAnimCurveSa8	DefaultD�L�+@y8KeyVerI�:<�KeyTimelt���}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�p���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S1>�
KeyValueFloatft�e�]Ae�]AD�\Ag�YA��_Af�]A�_Ac�NAX�6A��oA�fA��`A%f`A�dA�iA�XoA��vA��~AO��A|:sAb�BAF�(A��,AHn/A
0A
0A
0A</.A429A��>AV�3A-Ai�+A
0Ac�7At�CA�BAe?A�NAD\AOiA�"xA�^�AB�A6<�AB_�Ay"�Ay"�A�"�Az"�AL�AU��As�A�W�A�a�Ā�A���A�ޔA[��AR&�A^ԇAWʆA�>�Az��Ay"�A��A$�A7Z�A2_�A�m�A���A���Ay"�Ay"�Ay"�A���Ay"�A�R�A���A�u�AR#�AR+�A�%�Az"�Az"�Ay"�Ay"�A�~�A���Ad��Ay"�A�ϢAf�Aۘ�A���Az"�A;mAz"�A5v�Ay"�A@��A���A�q�A�K�Au.�Ay"�A���AR��AވA��A�T�A���A��A���AA��A��A[>KeyAttrFlagsi!�>KeyAttrDataFloatf

�>KeyAttrRefCountit�EAnimationCurveL��[:SAnimCurveS%?	DefaultD���:@=?KeyVerI��B�KeyTimelt���}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�p���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�D�
KeyValueFloatft���A��A��A���A(��A��Al+�A�o�A�X�A[�A��A���A�V�AT��AE�Bh�B��BO2)B��6B{�1B��B��Bo5B[� Bn�!Bn�!Bn�!B�"BE B�B�Bu�B�9Bn�!B�F)B�B3B9�>B�bHB�SMB�yCB:9#B4��Av��A4�A�{�A
M�A�J�A�J�AK�A�J�Av
�AEa�A[X�A��ABx�A3��A���A�=�AS��A�L�A�A.W�A��A��A�J�AJ��Af��A��A�}�AHf�A���A���A�J�A�J�A�J�A�A�J�A4>�Apx�A��AQ�AE޸A\=�A�J�A�J�A�J�A�J�An��A]ѻAt�A�J�A�}�AOx�A�ܭAQ@�A�J�A:��A�J�A��A�J�Ai�A���Ac��A[�A�8�A�J�A�s�A0��A��AT��As[�AVn�A���A_�A<�A�k�AEKeyAttrFlagsi!YEKeyAttrDataFloatf

�EKeyAttrRefCountit�HAnimationCurveL �[:SAnimCurveS�E	DefaultD n�FKeyVerI�ZGEKeyTimel'8�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�H�
KeyValueFloatf'��p���p���������>
�z�1���_�o��XG��`<���]����2�.����E���&��&��&��l�
���=�����j���&�5R'�\,C���h�s҇����u��Iz��A�aı��ܿ����e,��
r��r��GHKeyAttrFlagsi!�HKeyAttrDataFloatf

�HKeyAttrRefCounti'�KAnimationCurveL`�[:SAnimCurveSI	DefaultD ��?)IKeyVerI��JEKeyTimel'8�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�EK�
KeyValueFloatf'��]�?�]�?�O�?��?��j?j.J?�]7?��:?�Y?��?4I@O(�@,�@4�@���@3]�@2]�@/]�@�j�@�+�@�lj@p��@Kh�@z{�@/]�@cz�@$��@^f�@ֈ�@�n�@ź�@��n@��,@���??�8ľ�\���w���w��oKKeyAttrFlagsi!�KKeyAttrDataFloatf

�KKeyAttrRefCounti'OAnimationCurveL�B\:SAnimCurveS9L	DefaultD@��;@QLKeyVerI��MEKeyTimel'8�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�mN�
KeyValueFloatf'�Z
�AZ
�Al��A��A'��ABnjBBi�*B�8B��ABdJBP�RB�}ZB�+_B�O`B�O`B�O`B��aB��aB-�TB{UPBu�QB�9XB�O`B�cB�gB�^uB8�}Bt�zB�hB#�?B��B���Az��A���A���A���A���A�NKeyAttrFlagsi!�NKeyAttrDataFloatf

�NKeyAttrRefCounti'GVAnimationCurveL S\:SAnimCurveSaO	DefaultD�|�yOKeyVerI��S�KeyTimel~��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?���C`�cC�T�C�DX�vD���DHwp�F��3�F�t�TG@�G�q~H�U
KeyValueFloatf~���������	e��U}����������q����8�E��;
�V���.���7L	���=z+����iS�"*���
�k��|
�.U	����iS��/�=��������������p���ո�B}������Ѵ��������6���i���	[���������ų��}��֥�������@���7��������������	�������)���q���("������������z���%������JC��e?�Խ�j���s�����4.�r�h�l�����QY��	���8������F����F��nԸ�͠��<���'�������[�%�Y���w�B�G��)'�OQ������������'����R���q���)���7���B���h��v���w������>��q������r��-����ļ�!��]���f�������������������/���������������i���������UKeyAttrFlagsi!
VKeyAttrDataFloatf

:VKeyAttrRefCounti~�]AnimationCurveL0y\:SAnimCurveS�V	DefaultD���@�VKeyVerI��Z�KeyTimel~��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?���C`�cC�T�C�DX�vD���DHwp�F��3�F�t�TG@�G�q~H�\
KeyValueFloatf~��o@�o@��@2�@��@n��?Z@�%^@��|@�o�@��@r�F@ϓ8@
Y_@��@���@h�@U�]@�r@�O�@���@<C�@��@��g@T�]@nlb@�ui@gkn@��k@�dj@�K@�6@���?4,�?M|�?!�?���?�e�?�c�?���??��?��?f�?�Q�?���?mV�?��@��	@)�@!��?��?��?܌�?�-�?���?���?��?�e�?�]�?�e�?���?@��?���?j�,?��>���=��=���=a��=��j>�?xԟ?^<!@!o'@LU@Or�?�e�?��?i��?�N�?��?��@0@�ȣ?D^�>(K�>��?��>�V>b��>��R?x
�?�%�?�e�?p�?�%�?E��?H��?�~�?���?���?�n�?6��?�1@��@��@�e�?�n�?���?��?�(�?�'�?S��?�e�?f�?�e�?�e�?z��?��?�e�?�e�?�e�?f�?3�?�e�?�e�?]KeyAttrFlagsi!I]KeyAttrDataFloatf

v]KeyAttrRefCounti~�dAnimationCurveL`F\:SAnimCurveS�]	DefaultD`0�B@�]KeyVerI�
bKeyTimel��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?���C`�cC�T�C�DX�vD���DHwp�F��3�F�t�TG@�G�q~H-d	
KeyValueFloatf���B��Bm�B,�B_�B�B"$BL�GBq�TB�4bB��WB��9B��0B�(OB���B�B�B��lB��=B�J>BL�OB�MVB��SB�KBҿAB��=B�p?ByABB�:DB>�BB�?BB�4:B�� BB8B�s�A��A���Ay�B;#B�RB�B�/	B�
B;#B�B��A�KB�B7MB{
B>B��B��	BXWB�B�4B�B1?B;#B'#B#B;#B�BW�B	B+��AbAA�.A��)A!)A*�AAiAjA��A�t�AKZ#B<)&B��B(B;#B_4B�B P�A�2B�B)	B�A
�A�A
��A�<�AKi`AA;�A�ٿA���A�B;#B���AzO�A���A���A�	B��
B�qB�!B��B��BK�B�\B;#B�A\H�A�BQ�	BщB��B;#B;#B;#B;#B��A%-�A;#B;#B;#B;#B��B;#B;#BWdKeyAttrFlagsi!�dKeyAttrDataFloatf

�dKeyAttrRefCounti�kAnimationCurveL��[:SAnimCurveS!e	DefaultDzؿ9eKeyVerI��h�KeyTimelt���}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�p���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�j�
KeyValueFloatft�8�þ8�þmr��|�V��(�.�þ�����
?��@�uͿӄ�������M=<�?���?�e@�6@v*k@�x�@�}`?���1�/���-���+�u�+�u�+�w�+��<,���5�S�=��w<���9��^4�x�+����4V	������y���{E�/s̿�L���.�=�J�|�s����>1�1?�~S?�~S?�)S?�S?��M?�??��)?�?���>gÒ>sL>]`O���~?O�?6�?5��?P��?�2�?�~S?�b��"|��×��-:>���>%� ?1cE?
SS?�~S?�~S?�ξ�~S?�F:>b�d?ì@��tD��R�����>�~S?�~S?�~S?�~S?�3-��訿ebE?�~S?��i?�.���8��G9��~S?K ��~S?�1@�~S?"B?��E?�J?��N?�R?�~S?�P�?Κ�?�~�?���?9�?�O�?K��?N�@���?�V?kKeyAttrFlagsi!UkKeyAttrDataFloatf

�kKeyAttrRefCountitSrAnimationCurveL��[:SAnimCurveS�k	DefaultD��<@�kKeyVerI��o�KeyTimelt���}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�p���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�q�
KeyValueFloatft����@���@���@���@sY�@���@{�@pq�@	Yq@���@���@9x�@7�@��@X��@���@)��@R��@HD�@ZX�@Y�t@�RB@�v@�-�@�	�@�	�@�	�@��@�g�@u�@��@{i�@���@�	�@���@���@l!�@�n}@!͑@�Ė@��@�ɤ@���@#�@:A<a
A֢
A֢
A0�
A��
A��
A��A��A��A��AznA�A�A�8
A}�A�L�@Զ�@��@"�A֢
A��!A��!Am�A<XAHA�@A�Ar�
A֢
A֢
A}fOA֢
As�Au�~A�Q�A��A]�IA��A֢
A֢
A֢
A֢
A�,"A�W>A�$-A֢
A�8A��bAb�wAf�{A֢
A�y@>֢
A^�JA֢
AX�A��A�WA�A��
A֢
A;AO��@��A3fAX�A�-A%T�@hY�@�l�@Jr
A�qKeyAttrFlagsi!rKeyAttrDataFloatf

FrKeyAttrRefCountityAnimationCurveL�A\:SAnimCurveS�r	DefaultD�J:@�rKeyVerI��v�KeyTimelt���}�HNAC
���
�K��
@ʋV�HO���8F�i�ę��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�p���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)Syx�
KeyValueFloatft�W��AW��A�s�A��A���AW��A���Ab��A4f�A���A1��A���AZ��AȊ�A��	BlB��,BO�?B�uRB��HB��&BN�Bٖ#Bԑ)B=+B=+B=+B�+B.R)B��!B�3Bn_B�BB=+B�A4B�@B{�NB'[B��cB�/ZB>�3B��BM��A���AM�A�{�A���A���AN��A/��A~�A2��A�'�A��A���A~��A7%�Ak��A��A$,�A?t�A�l�AE��A�|�A���A��A"�A$.�A؊�A���A��A�*�Az��A���A���A,�A���A�Z�A~U�A璽AO.�A'��AT��A���A���A���A���A	��A���Azu�A���A���A���A���A�1�A���A~��A���A���A���A���A��A�L�A�{�A.��A���A�-�A�A���A���AN�A�'�A+��A���A�/�A���A�xKeyAttrFlagsi!�xKeyAttrDataFloatf


yKeyAttrRefCountit?|AnimationCurveLP�[:SAnimCurveSmy	DefaultDQ���yKeyVerI��zEKeyTimel'8�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb��{�
KeyValueFloatf'��J��J�QD��tN�����?���}��P/)�-�K��m�ϙ;��Q��m�@�5�￟$#���-���-���-��)��@�%��9��@(῁2���-�)�k�����6����m
�O�(���,��7�B��>>�F6���x�l���ԙ��ԙ��{KeyAttrFlagsi!|KeyAttrDataFloatf

2|KeyAttrRefCounti'gAnimationCurveL��[:SAnimCurveS�|	DefaultD��?�|KeyVerI�~EKeyTimel'8�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb��~�
KeyValueFloatf'�0X>/X>�q�>(V�>��0?��?_տ?"^@N)@�R@�g@Ra5@���?�#�?v�?4S�?5S�?5S�?|�?���?��w?]_?A�a?�x�?5S�?�F�?3�?J\@�PB@}�]@&�g@C�?@ن�?@n?��}�z����F�Ӥ_�Ҥ_��~KeyAttrFlagsi!-KeyAttrDataFloatf

ZKeyAttrRefCounti'��AnimationCurveL�[:SAnimCurveS�	DefaultD@�<@�KeyVerI�.�EKeyTimel'8�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb���
KeyValueFloatf'�"��A"��A���A��A���A\B�B�r'Bj�6BQPFBNDB�4B(�/B��8B��=BNA?BNA?BNA?Bɬ@B�?B��1B��,B;6.B�q5BNA?B�FEB 6MB��_B�9mB,pB�nbB�*<B�+B��A���Ar �AuM�A�A�A�KeyAttrFlagsi!U�KeyAttrDataFloatf

��KeyAttrRefCounti'��AnimationCurveL��[:SAnimCurveS�	DefaultD��y���KeyVerI���KeyTimel}��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?���C`�cC�T�C�DX�vD���DHwp�F��3�F�t�TG@�G�q~H!�
KeyValueFloatf}��3��3�[�0��'��'��Qÿ�լ�0���Egq�����kG�ݿ��*�P�Q�0�s�����:O�+b ��9$��89�1�B�?DB��:9��A,�#b ���U�^�K���&��pn�ro���/˿��+��vX��]��1�������过��h��J��Bd��y濚����v�
�9X�T�@������!���������+����3t�0������h��T���܉�@���w�q��Y��S�e������(e�<�̿$�������l%�8����8D�U���N����M���(п��O�Y6L�=G~�n�.��H�f}>��(��5w�I��1��f�޿��ؿ�
ҿ�e�f���"���`�V)����%+��%����3��,�Ϳۦ˿Ȳ�o��l���C/��3��q��/��4�����z �4��+��,��,����-��,��K�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti}��AnimationCurveL0d\:SAnimCurveS�	DefaultD ��?-�KeyVerI����KeyTimelv��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>���C`�cC�T�C�DX�vD���D���
KeyValueFloatfv��?��?DZ?M�8?#�5?�$@?#\�?��?�j�?�<@���?x*3?.��>�i
?�~�?U%�?~s�?��`?��?�?Ҷ�?@6�?~�?,c?��`?`�w?���?��?�V�?
;�?�?�-$?^UN>HO
>���>�N?�?�ۥ?gΰ?曱?_Z�? ��?�ۥ?�?�X�?��?�ַ?�r�?;�?N��?�V�?k��?A�?�V�?�է?L��?�N�?�ۥ?`W�?���?���?��s?ƈK?=bH?(VG?_�F?�J?@EQ?=�e?m�?���?#�?)��?��?�ۥ?E��?6�?�l�?W�?�'�?���?�˓?z`?O)_?Tl?8Y?VP?uU]?�?���?2��?�ۥ?y��?�Ø?�ƕ?�
�?ݪ?ʬ?�ڮ?i�?�ܲ?���?챵?�C�?�ۥ?L��?g��?��?*y�?y��?ԝ�?�ۥ?�ۥ?�ۥ??RE�?�ۥ?�ۥ?'�KeyAttrFlagsi!a�KeyAttrDataFloatf

��KeyAttrRefCountiv�AnimationCurveLK\:SAnimCurveS�	DefaultD�EC@	�KeyVerI�"�KeyTimel��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?���C`�cC�T�C�DX�vD���DHwp�F��3�F�t�TG@�G�q~HE�	
KeyValueFloatf��(B�(Bh�B7� Bo�B�hB��'BMLB60ZB�	hB{3WB��+B��B�$4Ba�fB��B��TB,�%Bt&B��7BVg>BCo;BOb2B81)B,�%BO)B�-B�2B�43BW5B}U0B\RB.��Ač�AW��AB�-	B�!B�BtB��B�SB�!B�	B&�B�J
B^�B�B=IB�nBqB�BiB~'B
:Bl�B�>B"B"B�!B�!BU�BB\(Bx�A��_A~�LA�GA�GA=*`A0��A���A���A��,B'�/BF�#B>VB�!B.
B~B�B�B�c#B�t&B�k�AT��A��A3��A�A�/A��AȀ�A*KBi�B�!B��B��BD��A�BD/B��B��B�KB�B�2B�%B4�B�!B�t�Af��An�
B�B(�Bb�B�!B�!B�!B�!B=�B�qB�!B�!B�!B�!BR�B�!B�!Bo�KeyAttrFlagsi!��KeyAttrDataFloatf

֗KeyAttrRefCountiĞAnimationCurveLP\:SAnimCurveS9�	DefaultD@�D�?Q�KeyVerI���JKeyTimel�=x�}H�	�JX\ښ�+W=V�Z5W3[T�%����;ϛ�i!6Qlv����q�*�%mQ�Z��qSΔu�����"��Le���qy���~���GO�[�0�!W�M��_��lnk����a��;�$1�h�~��\�؞^�(�U�ٓ��N���ߞ����U:p�o�غs:CB���4�߰�w��XZ���b�_$Kh�������q�*f]]���&,R�N`o�i�RڴQ֊��/�!����y��8���/�ݷ�J�aM�=,ܨ�_F;YͯX{��^ѯXN;��vk��pȵ -��K.����|\A���]�����t�B[���1{>I�����aKK�,�������Q��f��[,n��a龨�6\��n��E&��&������4s�X�;�Hq^����̹����dž����O��Ι��X[[��D���쨙��5BϾut���.�O풬�UUL5�?<x�m�IrZ�j���	l}�X��f�Z/a�I��C�-
�l����yi�Dy	P��}ϧ�n�K���a_;����f:/_�Rґ�3؝�K�
G'�D*�9_�����8<Ԗ��v���P�{�V�~��,V�,o1߯ޣ�mi�װ��g���s
m��0�#*z��rflIm��#�J�ձ
��=���\Qo�
u�kzZ�Q���قZ�����ƅ�!��Xs4j���U�����V}4>�|E�:�������#W>���b}6m-K���ד_0w��(���*{��$y�^�?1]���rX<^�6��+�må<��~�n��O�/bSA�8�[t0�vd>l�	��HÞ��<�ZN��'�;|�@&�]
KeyValueFloatf�P�%�?�%�?G�$@�@��?�%�?�?@�K�@���@d�/����>a��?�R@��/@�Y@�؄@j�@�@u�@���@��@@�'f?� @��@�A�TA�/�?��	����k�\� [�=���<��>�/�?H'@8��@�"�@=�.A�t1A8�(A��A�@�}@^�?FP?q�>Z����Ywվ���	D��Y������E�un1�ڊ��O���޹��N�{���^>��M?"�z?�^�?B�?�J?Z��6H
�hFS�S.�;�}ε��P\�=��Z��Z��Z��O�4>Z����r�Mm��J)���{��>�w�^ĩ�Z��Z��d�T�<M��.U���Q��a@���;��v=���
�%ǿ6`��[���,��.���4��;����ž�tվ0Z����a�U
��pʿZ���+5������m��~׾j%�����Z��Z��yq����?u�?4|?�Y����H��������Z��=匿�'B��\��r>j�Z���A@�Y���}v?Z��E�'?�9?=��>;A=-6Z�Z��tM���6��=6�����=�H?yz�>�A��P�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveLN\:SAnimCurveS�	DefaultD��t�2�KeyVerI���JKeyTimel�=x�}H�	�JX\ښ�+W=V�Z5W3[T�%����;ϛ�i!6Qlv����q�*�%mQ�Z��qSΔu�����"��Le���qy���~���GO�[�0�!W�M��_��lnk����a��;�$1�h�~��\�؞^�(�U�ٓ��N���ߞ����U:p�o�غs:CB���4�߰�w��XZ���b�_$Kh�������q�*f]]���&,R�N`o�i�RڴQ֊��/�!����y��8���/�ݷ�J�aM�=,ܨ�_F;YͯX{��^ѯXN;��vk��pȵ -��K.����|\A���]�����t�B[���1{>I�����aKK�,�������Q��f��[,n��a龨�6\��n��E&��&������4s�X�;�Hq^����̹����dž����O��Ι��X[[��D���쨙��5BϾut���.�O풬�UUL5�?<x�m�IrZ�j���	l}�X��f�Z/a�I��C�-
�l����yi�Dy	P��}ϧ�n�K���a_;����f:/_�Rґ�3؝�K�
G'�D*�9_�����8<Ԗ��v���P�{�V�~��,V�,o1߯ޣ�mi�װ��g���s
m��0�#*z��rflIm��#�J�ձ
��=���\Qo�
u�kzZ�Q���قZ�����ƅ�!��Xs4j���U�����V}4>�|E�:�������#W>���b}6m-K���ד_0w��(���*{��$y�^�?1]���rX<^�6��+�må<��~�n��O�/bSA�8�[t0�vd>l�	��HÞ��<�ZN��'�;|�@�]
KeyValueFloatf�P,��,��~H�V�C���	�0���	���������յ�����@4�����+����.ݿ41ÿ�k��$�������ѿ����,�
����g�Zn���8��-�>_>W�6�gnƿ��ǿ=�׿�8��1���V�vĎ�0=��Þ�Nj���]8��$�'�˿���+����°�榚����k���c���3��㦚��r�i�Q��Hl�Q�����.��#���J�=���g@��)��x!�6�%���妚��O�>��?�[?Zߗ>�DŽ��=�o?��⦚�ᦚ�⦚��T�@榚�P>
&AA�A��`A4e�@�@�?ᦚ�ᦚ�b>9�U������̤��i���E����RѾ���>��.��s�������ɛ����������E��d���禚�/r.�Ń?d�⦚��W���/���!�1
����������⦚�⦚�`ʿ���;�T�5�즚�7@ћ@`��?禚�;A�@�'(AǀHA/�KA禚��L��馚�7u�@覚���	�:;�S5��ȿ����ᦚ�����흚�۝���Rο˳��(�ɠ��1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL`�[:SAnimCurveS��	DefaultD��7@�KeyVerI�q�JKeyTimel�=x�}H�	�JX\ښ�+W=V�Z5W3[T�%����;ϛ�i!6Qlv����q�*�%mQ�Z��qSΔu�����"��Le���qy���~���GO�[�0�!W�M��_��lnk����a��;�$1�h�~��\�؞^�(�U�ٓ��N���ߞ����U:p�o�غs:CB���4�߰�w��XZ���b�_$Kh�������q�*f]]���&,R�N`o�i�RڴQ֊��/�!����y��8���/�ݷ�J�aM�=,ܨ�_F;YͯX{��^ѯXN;��vk��pȵ -��K.����|\A���]�����t�B[���1{>I�����aKK�,�������Q��f��[,n��a龨�6\��n��E&��&������4s�X�;�Hq^����̹����dž����O��Ι��X[[��D���쨙��5BϾut���.�O풬�UUL5�?<x�m�IrZ�j���	l}�X��f�Z/a�I��C�-
�l����yi�Dy	P��}ϧ�n�K���a_;����f:/_�Rґ�3؝�K�
G'�D*�9_�����8<Ԗ��v���P�{�V�~��,V�,o1߯ޣ�mi�װ��g���s
m��0�#*z��rflIm��#�J�ձ
��=���\Qo�
u�kzZ�Q���قZ�����ƅ�!��Xs4j���U�����V}4>�|E�:�������#W>���b}6m-K���ד_0w��(���*{��$y�^�?1]���rX<^�6��+�må<��~�n��O�/bSA�8�[t0�vd>l�	��HÞ��<�ZN��'�;|�@�]
KeyValueFloatf�P�A�A�`�A�m�A*X�A�A~d�A7��A���AL˱A:�AOʾAv�A#��A~�A{:B�!B��3B�@FBF�=B��B�q�A���A���A�aB)(	B2��A�/�A+�A;��Aj��A���A���A2��A�YB�B�Be'BˁLB�\\B��@B��BŠ�A���A<�ADo�A���A�;�A��A�׭A��A���ABA�AK��Az��A&
�Ax��A�8�A^��AL
�AkA�A��AA�A�d�A	��A땲A���A�ߥA�0�A�q�AN�A�i�A}H�AdA�A���A���A���A���A���A��A���AMu�A�̚A�<�A��A���A���Aڡ�A�K�A���A���A���A���AX�Aں�A���Al3�A���A~��A��A���A���A���A�Z�A���AQ�A�:�A�m�A���A�u�A��A���A�S�Ay��As��A���A���A�A�̱AP�A?x�A���AGA�A�ΤAس�A���A8�A#b�Aț�A��A���A22�A���A!��A���A���A�"�A�ڳA���AӸ�A���A���A���A���A���AQ��A%�A���A�KeyAttrFlagsi!L�KeyAttrDataFloatf

y�KeyAttrRefCounti��AnimationCurveL��\:SAnimCurveSܬ	DefaultD`ګ�?��KeyVerI���}KeyTimelnp0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�Od��
KeyValueFloatfn��^%?fz'?��.?�A;?�xK?B�^?t?�&�?:�?��?��o?LW,?�
?p�'?��9?P�I?�&I?>6?��-?�3?�j7?ױ8?o�=?�&I?ƤS?|�`?�(x?�?�ؙ?��?:Љ?ȴ]?�7?�:6?�h6?�M3?�-?�p*?GH/?�D4??�2?�-?��)?��*??W4?�??]�<?�I:?j�7?J�5?B�3?,�1?ep0?I/?p.?�-?�-?�?��?�?BK$?�-?�-?
�-?`?�?�b�>��>E�?�?�u?�h-? �-?$�-?+�-?"?M�&?%�-?X�?(��>3T�>��%?�?ԛ�>ix?1�#?�-?�-?�-?�`/?bN3?(�7?�x;?�-?O�(?F.?;$2?,/?�$/?��/?��/? r)?�-?�Q;?��X?֐J?��<?�1?�-?��-?��KeyAttrFlagsi!ȲKeyAttrDataFloatf

��KeyAttrRefCountinָAnimationCurveL�[:SAnimCurveSX�	DefaultD泿p�KeyVerI���
KeyTimel`�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"P|� #h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{Ip�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�O8��
KeyValueFloatf`�0��8����ǽ4z�����kSS����/汾&Ȧ�m'D�������
�����Ds^��iؽ9�	������뽎|������7����E�	������8�Y�q�P⤾<)ܾ-��屖���shнURֽF8ֽ��н Ӿ����g$��Gֽ����N���3�2
�)�ڽ=�ӽ�XȽ@Ӿ�cӾ��A���"�W?w�?���cӾ�Ӿ��Ҿ��쇽��#��t���t�s�	�t
F��������Ҿ��Ҿ��Ҿ��&��[)���Ҿ�gp���߻Qt��Ť�[�f�6��J�M���� Ӿ�EӾ�6Ӿ�mĽ�ҽ
��9�=Ӿ��
��W�������I��HӾ����5��x�z�Ӟ̽9Ӿ�b�KeyAttrFlagsi!��KeyAttrDataFloatf

ɸKeyAttrRefCounti`��AnimationCurveL�:\:SAnimCurveS,�	DefaultD`�M<@D�KeyVerI���KeyTimelt��C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37Hwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O���
KeyValueFloatft��n�A�n�AF��A���A�B	B�B��-B��>B�iOB�sJB)$B�J�A�q�AV��A0�A��Bc�B��A���A���Aa��A�3�A �Ac�B�RB�Bl�"Ba::B��SBo�\B8�DB�pB�
�A���A-��A���A��A i�A%\�A]s�Aˬ�A��A���Af��A	��A�(B�,B.��A)M�A�A�A���A~8�AzD�AI��A���Az��AS��AJ��A��A��A[��A�K�A��A4��A��A��A��A?`�AK��AMT�AjӏAI��A1��A&�A�9�A��A��A��A��A%�A)g�A��A��AP5�AV��Aw��A���A�I�A���A�"�A��A��A��A��AL��AzY�A���AW~�A��A���A���A#��AO��AR��A���A���A�}�A��A���AߠBa�
BƛB���A��A��A&�KeyAttrFlagsi!`�KeyAttrDataFloatf

��KeyAttrRefCountit4�AnimationCurveL0�[:SAnimCurveS�	DefaultD��?�KeyVerI����KeyTimel��x%�}P���_:ThBŠ�3�Qc6ӑ@�䜀0�h��C
�a8�����T�r1��).�b��sx!�im�xNN1q'��aj䢐)i}?���כa��Z}a%N�ronψ~��������]00�?�4oU�@�h�oпe09�4�k����?��i²P�X6l��a{h�-��@��砠d<v"���-������_�8�������+C�SdJc���几�0�d��
'+�OB����$������:�ƝB277UB�rɯP��,i*T9�C˵�2[�A���������_�s�.EE�NJ}%���t�W�b����+��W�i� ��{Ή~��G�D�<g{�H��B]G��h�3���.D�Aj%�e�}:�:đ��Iͩ� K�8�6ur�N�6B��`Z-Y�����
�|a(��^�������o�f�t��
�3\·H�ᚽP�����8���n�⃦Q蝞��%

�'� ��5��9мV�׺!���}��D<�uu��3E�4�t#�����]�\�#a��P�[��B��g��]�6�f�"�!��9%��2�"TU��f��MUТ_�� o�2��^=4��>����%|�?"j���WPh_O���g�q8%�]R��)���.CCI-_@
���gHH uE�,!��
�BwaKH"�(^٫�g���p�{���m3dy+�B{�T�>��9�2y����[�*"U��&�>
-�ݪ$R�m��@fKL��b�C��~�_j��K�k�A�E�
�K$��4���b����$�$�!m���|{V6��t�� /9,�C����B���N�i���'ݒ�*�=�w���, �V�C�h��:yO!%��cP}��d�V$�֑v��?3�#2x\�%��N����B2��4@���;P�v�4���l���ާPz�13��q
Z�� 7$���
����	
�b>&�	7��ݰ��-AF�"��=uһP7�9���2C7�뿡�V�ZD�'N�A���I�&��:Ȫ�sA;É��T���
�Wͽ�Z�V��T�������}h	��
R�MwF%ϡ�b,o	)��i����J��k�tSX'�
{f.%��C�[�[-� 
��o���Z�E�|�퐳&i�2�=0�jW��@v�~N6�(H5@���Y�w.�!�7k���̧����"���?BUO�\2�]P-�\'Tf��J�Zʡy�n(����\�����
KeyValueFloatf�����?�@�?�"�?_)�?'��?*݆?< �?⛈?���?K)�?-3�?�[�?���?:��?ٜ�?X��?��?Kj�?Yk�?х�?��?�D�?�~�?Q`�?�	�?�I�?���?B��?с�?�ގ?]��?>��?x�?��i?�~Q?0�W?x:v?���?���?2��?���?���?���?x�?
�?�u�?TZ�?��?��h?�^^?%�m?$Շ?|�?I�?���?��n?[?��?ZU/?r7F?�>?��4?�D@?�mS?��Y?5HT?F?�8?��4?ֿ<?�I?N�[?[�r?>�?���?�J�?myn?�P?�*R?��W?
[?b�[?`vZ?��[?`�`?�b?�[?��R?�L?۵M?�W?+�g?s�y?PG�?ހ?�qy?��q?
#k?=pe?��`?&�]?�[?D�]?��c?��l?2�r?�a?TX?��Y?�[?
*O?�[?~
[?��[?�\?�~^?�Va?(�[?{�6?*?	�?[��>���>Z?q>���>}��>t��>��>�?��-?p%_?P�j?�Rh?	�a?�Z?��\?wUa?ɻ^?�
d?e�{?,�?�GX?�,?^�*?��.?OX?
�?��?WM5?%�V?ʒm?&�[?!^O?�K?�#J?��X?��h?Siz?5��?���?]�?�Ï?6Ԍ?
m�?&�[?Y�;?��)?�(?t�6?�R?T�b?#�[?��D?U^3?��4?��E?�bP?�T?!�]?K�a?�[?�O>?d�,?�C.?Xb?q�?�5?�7?h?��?��|?mv?�m?H�c?,�[?��W?��_?|�f?�Z`?}�Y?j
Y?O�]?\�f?"�[?#�[?V[?��Z?�R?��Z?�lc?��Y?�pJ?�4H?)�N?$�[?�@n?
)y?8?#|�?�6?��}?-|?yz?��u?�ag?��KeyAttrFlagsi!��KeyAttrDataFloatf

'�KeyAttrRefCounti���AnimationCurveL�E\:SAnimCurveS��	DefaultD�Њҿ��KeyVerI�s��KeyTimel��x%�}P���_:Tք��3�Qc6�	�I�	*#���S�a8�t����-�b��S\��Λ��Bv��N�(b�N$�����E!S��~��?�7������r��Şvޖ�
i{��F�ǐ�-�(N�
7�G���#
�-/���,�$�e�v(tFF���
-4>�s�JFƒ�~�
�5W�����q�o]�	��\��k,Y�;��ԭJx
y�7�I���P{sM�x�S$�:o�PS�H�@2�7�}��W��y�6��������P�D�C�.E���}�\2��;	-b������:�Cs��i<RzV���w���i�5�e�Z`����0whA,)p�5C[�/Էg,�#���v���\�k�Nf*���9��%�&O&�'��IC?t:4��&5�2�B�.j^�@�[��0,G�I����P5��4�P��:i������e���AZ��l��4Fg%�f~W#��C���$�X�p���8SHo�
�Io����[���q
�'�Ӧ�ޯe���3r�L�y�U����!'"�p���k��6�-�ّW�/b�CuU�`:~�Xm�+�P̚A��ܭ����P^Q�@H�$��R>����e�d���4fľMJ70e����Eh,1	E�(��vs����U6��ZĤwUsD*��/^
y+ħ���`�;���u��+.Cg!+~��\�
��mh�ɔ��|e#_���%]�4R�eq�PnGJZ;>��}�Д8��(�n��y�5�~(y�4�u�R��>�{d�d�1k���~��V2�4��P��>�k��~vm��	f�^Y\ԝ�y3�搮+�V2�1���dIg���+}	���e鄽e�
��OM����ڦg^��#�p.t��������f����zhI�y�
��d�_����"�Hi|`��7��1n}����;�&�����ZS䤀��n�eoC��2$��
�����:�R=��]]�Imķ� ����?�#R��od^6�@{�Z�|R=*�Õ�A[ءP����C04,{�#H�_n'�WOT���BٍQ00蛺�4o�����n@I�,�4{���5��E�>P����&-&��C�n�)��U�XB��2�P�gnAΧs�H�u��PS��2׸�jž��#Tw7��'U��?&C���кp}���)K����ׯ��
KeyValueFloatf�t�V���8%�� ����랾	I�����y5��S���4J��,�¾\�Ǿ�Ⱦ�/Ⱦ��ȾZ�̾�ھ���SK���㾖�ᾁ����۾ظ׾cҾ�+Ӿ!�Ӿp<Ǿ����I��nQ������|�M��p��Y&�D�p��V���V���"���V��|���쟩�o����߾������7k��b�E�J+�E	O��)��~���K��u��5�S��T���w=�">�=�
�<��ɽ��F��X��Z���l�_�U�"��4��ɽ�O�9�
���4�A�m������侐�����B�V������%&���+���-���0��X8�
P;���,�0m��F�n��n��9D���s�+������e^s���^��M�RL@�i46�a�/���,�1��!?�DcT�9mc��+8���$��(��,�����,��*��',�}�-�ɟ6���9��,���ĽV��۾ݼ��7<B�<1s	=R�
=�o=/=�<ܴ|�+�ռG���d*��	H�m$F��=�T 4�Խ2��2��,5�r4A�H�}��儾��$��_���^��X����Lv�CT@�/&u�\b���8 �1V��,�w��w��j�‚'��M�7{�ʦ�l
ȾZ_˾����*��X[���,��нI���J���)f������8�#�,�����˞Ž=P˽}���E��^�1�К:��,�vH὏������܄o��4��I�I'��|nE��/���}�y�j��S��
>�ݗ,�9�$�`�7�p�G���@���7�}_3��7�4�C���,��,��x1�X2�-�&��]3��=� k'����E�Yl���,�`CX��(u����?ㄾ&(}���x�4sk��$G�8�KeyAttrFlagsi!r�KeyAttrDataFloatf

��KeyAttrRefCounti�`�AnimationCurveL0�[:SAnimCurveS�	DefaultD�F@�KeyVerI���KeyTimel��x%�}P���_:ThBŠ�3
�1��H�MrN@I4|����0J�N�I�r1��).�b��9�nZ�)��s:1q'��aj䢐)i}?���כa��Zsa%N�ro'nό~�������=00�?�4oU�B�h�oпe0%�4�k����?��i²P�X>l��a[h�-�TC��砠t<v"�y��XUR{
��/N�D�օ�v�����Y�sp�!�)�}����ɮ��'��vq�d�U���n��PU�ƝB277UA�r�P��,y*T��C˵�"G�A���Ҟ���_�{�.EE�NJ�}����t3V�b����+��zG�i� ��=焿ê�#K�H����$���3ue4ə�tB�O�� 5bC9d���]�������]�%l��6UJ�J�6B��`Z-ٱ����
���Pi9>�*f����*c�$�<�(=:~�g8�"M�k�BI�|�����H#��EM��;=?�K�bOBAt?k�9мV��:!���}�tE<��um7 g�6y&��F�jXc �`_�#��j��z��d���"m�\�P��E�C2;sK��e�E�����&�/���E��A޼9d`�zhm}��eK��D�M#��$б"�����@�pjԻ�h#S��/\��R_@
�����$rVݿ.I y��kH��bnv"��
�BgQKH�(Y٫�®��1����͐孼
m���I���=��w܅���4!�̓7���Qh�q+�I���Y�,i�]�K���9n.i���%�7�/���x�mɴ��!^$&��cG��g�s�YX��<��.k�����IW�K���!�#�7�t�����t�-Ȟ{H���:������@��{r	iK���e� ���"����t@e��i���/�ev�e�8���^����@��Y�T�8���z�BɡƬ4��)l�ƃܐtR�+�ކ;�Go���|��z��aU}{���E~���$w�v�?�2���a�N��C�A�\D�'Nn�]�ݓ2Huȁu�U��6��	��ٿ2��{��z�p1���Aݣ��l��I�6�?��ʱ�%��/�
�+j�*HS@���Ma��7욹�4n��EOroAoi�8�������bka6���u@Κ�i�H���F�Yu����99dWa�������{A.i�i���B�Fd���������	yd0��Z�\;Td��JzZ*�y�7�����3�����
KeyValueFloatf��� 0B~J<B!v:B�.1B7)4By4B$�4B��6B�8B�#<BM.ABJ�FBf�HB��HB��IBoIB�KB��QB	�XB�ZB�8VB�6UB��UB�9RB8 PBJjMB�MB	NB��HB0�@B��8B��4B�,B��B�B��Bە!B� 0B� 0B� 0B� 0B͊3B�Z<BijHB��UB�e_B��bB�I6B]�B�B��B�.6B�R[BĦ{Bk�iB� BT��A�?�A!L�AsB��A�A��A3
BB�R	B���AQ�A�A��A��B�TB�OB��?B��ZB��HBy�"B6�B�B�B�r
BM>B��
BI�B,�B�BA>B�$B�[B�CBg9B�xB�H&B/�3B�,BL&B  B��B�>B��B��BA>B�YB��B�tB��B��BN�B�BA>B!qBA>Bi�
B>B&B��
B
B�B��Bh�BA>B6�A��An?�A��xA��,A#A��-A�*KAo9�A���A\R�A���A��B�LB&5BYnB�>B��B�qB)�B�B|1%Bk�(B�_BlN�A�|�A8��Ao��A�ԺA!�A#(�AÈ
B�BA>B�HB�B�nBK�B��BU�#B��8B��GB^0IB�@BT�;B�/BA>Bͱ�Asn�A���A��A̤	Bu<BA>B��A3��A���As�AzB��B_�BLBA>B�x�AqX�A���Ad��A#��A�8�A�D�A�BB�+ByU'B��!B�
BBA>BfB'�B2BɃB�>BBʌB%�BA>BA>Bq>Bz>B(t
B�>B0�Bu�B�B�qB��BA>B(~B��#B�6(BXg)Bt"(B"�&B��%B��$B�� BvB��KeyAttrFlagsi!&�KeyAttrDataFloatf

S�KeyAttrRefCounti�?�AnimationCurveLp�[:SAnimCurveS��	DefaultD �7ӿ��KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf��������>l�>���o�=U��>da?�U5?8�:?�TU?��p?9{�?�'�?��?��?�?��?��?�}�?/��?���?���?�o�?$��?�I�?���?�s�?Յ�?��?Zq?��!?��'? �T?�3?H�P>U/�<��������@e]�?�+��������>� �@]yA�y@���5�e9���?�2*@ۗ@��@|AJ�BAoiA�'ZA��A�nD@w�?a]@;F@;�e@�d�@k�@&T�@^�@ԩ�@D&�@�]�@�d�@���@W��@E[�@�AU�4A>QeAbE^A2��@�?��;��/������B%#�0H�����i|�����@��g��^������`���s���a��l�<�3@���0��!�NU�v*�4袿���P������t��s��5���g؇��O���T������2@��.V���{������������	����{�s�t���&���("��s�t�Ʃ1��f"�s.D�elj��X��˽��������j�v��gS�~/����<�*���Q��)��&	���ѿ[{9�������q0�8t�^¡�{"���G^�ء=������+��.��%?�#��d�
��Q�Wa'���#��}��z��RG�����
E��]��Qe�N�_�Ad�}ٿ���I$�����l���`׿
��������w�$��g *�pg��ҍ���9��bϿ���п���0⿯2'�Q��;J�p����'���Y�R��a
>����������Qb�����f�Pv������-ۛ���n������*��� �Oc��7�i
��i����NZ�'��G�
��m��p�ֿ�ӿ�<�$������5����KeyAttrFlagsi!�KeyAttrDataFloatf

2�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD �&���KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf����4�*7��
7���5��6��G8�t�:�^j<�w�<��#>���?�uA��C��C��D�?�C�(9E�k�H�+IL��M���K�BDJ��H�&�E���D� ,D���D��E���B��?��[;�1;���<�;>���=���<�r	9���4�G�W�#:M��Y5���4�S�:�Yid�;N���:�����,���/�ZO*�P
$��B�7���A�����G�w��k�m���������l?c^��!��)��y�(�&},��&����X7���+���v���������q��
4(�2�?�G�0�(��"��
���S���
�� �׎�)�S�P	�������S]�������W��A�����--��Q3�j"1��?0��m*����S��y��`[��pP��
��G�������~�S�s�J�S�
`�?S�h����9�@nh�A?k�A���@�eQ�S��78��[�/(u�j܂����_,������;��`�p�;�_���M�6^;�6,�ī�5�͇�S�h�\���!�KX����p����U#�!5���
�����P�DI��
�D

��S�� �F�����L�
�2
��
�V����
�|��{&��'�t��S�7!����T���-e���L��'��S�5�	���/��<�����������<�S�,����.��N$�@P�l��(�I:���8��7�7;�[��S�t����/��A�b:�S�2�?��������S�u킿�A�-8A�'AS�8�+�S�)��S�"��	�����������S����z[���#��-'��)��\'�U,!�aL#��i�Ce���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti���AnimationCurveL��[:SAnimCurveSt�	DefaultD m�.@��KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��_��
KeyValueFloatf��i+vA�)�A���AEɁAH�A+H�A�ҝA�c�A�{�A��A�Z�A�A�W�Aq��A���Ab��A��A
�A�ԢAN(�Aj��AP�A��A�*�AYܠA#��A�ՠA��A�D�A�\�AX�Av�AO��Al�tAf�-A��A_MAk+vA	`�A��Ag�~Am+vA�_tAZcoA�[bA�xA5�qA��{Am�A'֝A)k�A��A
��A�
B� B�EB���AywAӍ�@�{�@+��@(A*�PAŐqA��|A�wA�tmA�n^A_EQA)�PAl�\A!�wA�t�A�t�A�=�A	Bt��A�V�AP^�A銗A*v�A���AR;�AH�Aw��A��A�<�AR;�A�x�A�j�AEݪA���Ai�A�z�A�+�AK��A-t�A�"�An��A���AO�A��AR;�Ad��A�AI�Ao=�Agf�A8˯Aj�AR;�Ab�AR;�A��AT;�A�)�A���A��A�2�A̟�A���AR;�A+~'A�@��ƾ)m�?d�h@��Ax50A�aA��n@$��=§��'���=A��FA��A���AR;�A��A��AkλA6+�Aav�Ao��A>��AN��@��A��A) YA'��@H�+A�yA뭕A6X�AR;�A���AW�A��A��A��A�V�A+��A�|�AI(�AYq�A2)�AGQ�AR;�Ak��A⺳A�,�A�ЮA�$�A�`�AR;�A�>�A���A
<�A���Aѐ�A*��A� �A��AS;�A!3�A˱A��A�S�A�]�AnT�A�j�A���A�"�A�2�Az�A^�A��AT;�A��A�H�A��A�v�AR;�At��A$k�A��AT;�A���A`X�AR��A�E�AR;�A�AR;�A�L�AQ;�A3ܶA��B�-Bm_B���AR;�A.��ANϗA�$�A]b�A��A�~�A�r�A,ǹAo7�A�еA��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveSS�	DefaultD l@k�KeyVerI�Q��KeyTimel��x%�qP���_:ThBŠ�#�
(��t$�&9' �$)8�p�SIlj8I�R.f�98�^�y/��;�sr�Sw"1	tj䢐	i}�����0��Y*/��)^h��]iᯐ扐-P^~���kL!M;�UP2�+�nH ��MuP���O�y�*�4l�@�-0�t�������PP29�t=�y;�W]����q�H�`=�^��Bc
�t�n���g��7;��X�x
��O'Yy�ϡ����V����E-�E�@Eﳄ��_a?��w?��Lij�x�ҝP�}(7��ʳ�@���WICj~4�^��nɐ�:[�")�F�:�;�.]F��m��).�jړք���L;t�x1�5R-�o��3iݰC�`6�:}c/d���C�U�A*�u�99��AsF$�h)�@??6�C�O����y�������IO�J�O^��9��o�ƣU�8J6=��)Q���S�G�c�=;'�K�j#OAAxk�:�X���ȫ�s�$�!�vBM��&���$�%_�A5k�d���xdGPe#T�N@V@Pn4i��l�J�:�-�ٓU-/�.AE�m�<�?Q_���n(���'};�j�i��	4�$��M
71�����+PW��H�7m/t��C��
q�+����A�j
��$�3��q���xd��=;�D�C��Z�A�����c�%��&�C&��>��V%Ǔ�lY=�_���E)�1Z�/=�%$MݑEP���z/7F-$���;���&��>��4\��B��tw���H]��1(�����V~���ڥ����>�lw��fqu�e��QxT��}�6�����k�*>�	d���I[��	*O���LL�g���e�
*����?Q�4�K��M)��u������.N"�GCk�1��)7ԥ'�N^4����Ot�6ۡ.|cć����m����jkZc$$/����Y-�53�I�����&�`}�7T�e�e${�t+���3-�T�YU9���p�>"�{�v@�ec/�T��_N*&�����04��R)ߩ9}c���T6�����e�A��ʙr�蓪�xKP�8�$
��wAᓬ;�].J#u���@�Ɔ��5�/K'�E�M�����,��e�Oi�K���t�n��g���W>?���K�A���Y�v-�"m���AeN�S��MW�����U7%��g�@s��������дrc�8ccV���c�?�
KeyValueFloatf���`�@-�@?�@���@[	�@�H�@�<�@:�@L��@��@oL�@;Q�@���@���@c��@�m�@���@Ƚ�@p�@�m�@]�@`��@f��@���@�
�@~ݿ@q��@+R�@!��@�L�@%=�@Y��@�+�@�̓@Ҥo@�|_@�-{@�`�@�@.�@K'�@�`�@�`�@�`�@�`�@��@y�@x4�@*�@���@��@g&�@կA'y�@��@�/@���?�%_@�X�@���@�kf@��V@w�U@eCT@K4R@O�^@��i@�kf@J[@��F@rZ @��?�?��M@�l�@�v@�}�@��@V��@���@*T�@X��@��@��@[L�@)T�@v��@���@H��@���@ٍ�@4�@a�@���@�g�@Ҹ�@*��@6b�@�~�@h�@T�@!T�@(T�@*T�@�[�@*T�@ֳ�@*T�@��@��@/�@��@3��@���@*T�@Kّ@|ie@?�)@0k@a��@x
�@��@���@���@�h@��*@��@�S@�W�@
�@�o�@-T�@�?�@{^�@d��@L��@&`�@6��@q~�@Hb@���@�)�@uЫ@��@��@/
�@���@�O�@*T�@}��@���@���@��@�Z�@B�@0"�@��@<q�@��@{e�@��@*T�@
��@���@�y�@��@M��@�\�@*T�@�=�@�z�@�F�@I��@?��@�4�@�?�@r�@*T�@f��@P�@��@�A��@Ȳ�@���@aRAچ�@��@nx�@���@���@)T�@�@���@�KAo�@)T�@��@�!�@�s�@*T�@�!�@��@�n�@��@*T�@��@*T�@�@*T�@���@y�
ADMA�A���@*T�@J�@J��@��@��@MH�@�"�@���@>��@f��@;`�@*KeyAttrFlagsi!dKeyAttrDataFloatf

�KeyAttrRefCounti�6
AnimationCurveL�@\:SAnimCurveS�	DefaultD��	��KeyVerI���KeyTimel��x%�qP���_:ThBŠ�3��Q0��H��9'CI4Rq(�8L���q�
)����/v���Mk;�srN'��Db���E!�������a��3�_Z�S�<���"_#Mca[���f��Λ@w�*�t$�W��їD���d[���,vU0Y�e�EC���S\���'�.@A�x�D����PWXq���M"�C+���Z?��RX��ou��E?���{Y��uM�i���:�d��?���>T�r����:h^-�*��'L%J�ah����g�.#�ׂO@��9�]�s�I�<�,4\��]��a����-����bt_����� y��f蔔��Ik"I�B�:~���Wn��i]�*
�7�T������z��U�E��u�9��fAsz4�l)4�_�!M'��C������}I����'��'ƯC���-�p�� ������>4%�����az�ggqI}m�i(��a� �G����y5|�L��x�V�ނ�)ڄY��k�a�a�>��J�Ri
)o����c��3���s�AS�6���,������o�/���u(��%�;j�q��)�J�x�mf�@ϓKW����/ ��}�]�u�7%�$���:�U~���I���:��HMo�z�^+<�����%չm�!�SrZr$��H����ɶ?����xR�%����#Д�R&�r����,i�.�ҕ=v��3�4�6삒��[л�q��d���CP��}=v�R1�O=?�^@���O�:[j�%��}@:;��]X�	9홼��CY5g�܅��
�E��̺�����N�$�%��U��_A&6�D��2����M���,���$_��&�����:��x��>��TH�H߱�Zh��~%
u�d���m�UG�A)�(ʛ=��6�����|+���?\PW�+%y�_��j����OR*�9d7B뫿��R�\J�'Nn����I�HuБ��U�m�����۳2����lC�rR9�?���)К*#廴ǡD�KF�W�ҿl��V>UN��(��	�C�Y+ɪ�ջ��i�]�)���zߝo�`S��\'S����M����K��7禓Zoq;�O���t�o���眐�S:7���&���܇�O;e��ە�AU��dn�+��9���t�M�"�y���ڠ<�;�c��ռ
WnrA�S���k5���
KeyValueFloatf��5N���Aҿ#�ѿz���&п*��i�������������������Y��3�����[j��
��<�Q&������ԣ��O�o��FG	����r'	� �	�~=����� ��\w�1�ۿ����ײ��ࡅ�ev��6N���q濆aԿJ-��6N��0N��6N���丿~���I�¿��Ͽ��������j1�xR����=R��>s�+?��A?+_?̰>v�>r�>T��=�
�=�h>�3�=%i+=l�>TP�>Aw?5�S?�{�?'ה?�ߎ>m���8g�Ie��[�Ͽ���������	����#��������R�ڿ��ܿN��b)
�Ɔ"���+��8+��+�(#�&�����n�
�~8����������]���2�ῥ�
�T�	�C��1��qt$�;���Lp��L>F����,�I��u��7�����׿	�ĿLN���E��d�"���a�+���k߷�t�翠����_�`��/�;�]���RڿH�G�D���mF�$ڳ�C�o�b���L¾���ڿnP���^����z�D��7�2�]����O��\����
�G\��������t�ٿCNֿ�ۿ.6տZC翥��x��v���&���+��/"���}��0<����� ��/&9�"�J���(�k_���%��>�aS�:����T
���������pR%�)�@�[:+�����¿n�������vb2�75,��p+�O�/���	c&���i�������I�ӹ_��D�^����/��|X	������������l
��+��:��KeyAttrFlagsi!�KeyAttrDataFloatf

)
KeyAttrRefCounti��AnimationCurveL@�[:SAnimCurveS�
	DefaultD�F�;@�
KeyVerI���KeyTimel��x%�qP���_:ThBŠ�#�
(��t$�&9' �$)8�p�SIlj8I�R.f�98�^�y/��;�sr�Sw"1	tj䢐	i}�����0��Y*/��)^h��]iᯐ扐-P^~���kL!M;�UP2�+�nH ��MuP���O�y�*�4l�@�-0�t�������PP29�t=�y;�W]����q�H�`=�^��Bc
�t�n���g��7;��X�x
��O'Yy�ϡ����V����E-�E�@Eﳄ��_a?��w?��Lij�x�ҝP�}(7��ʳ�@���WICj~4�^��nɐ�:[�")�F�:�;�.]F��m��).�jړք���L;t�x1�5R-�o��3iݰC�`6�:}c/d���C�U�A*�u�99��AsF$�h)�@??6�C�O����y�������IO�J�O^��9��o�ƣU�8J6=��)Q���S�G�c�=;'�K�j#OAAxk�:�X���ȫ�s�$�!�vBM��&���$�%_�A5k�d���xdGPe#T�N@V@Pn4i��l�J�:�-�ٓU-/�.AE�m�<�?Q_���n(���'};�j�i��	4�$��M
71�����+PW��H�7m/t��C��
q�+����A�j
��$�3��q���xd��=;�D�C��Z�A�����c�%��&�C&��>��V%Ǔ�lY=�_���E)�1Z�/=�%$MݑEP���z/7F-$���;���&��>��4\��B��tw���H]��1(�����V~���ڥ����>�lw��fqu�e��QxT��}�6�����k�*>�	d���I[��	*O���LL�g���e�
*����?Q�4�K��M)��u������.N"�GCk�1��)7ԥ'�N^4����Ot�6ۡ.|cć����m����jkZc$$/����Y-�53�I�����&�`}�7T�e�e${�t+���3-�T�YU9���p�>"�{�v@�ec/�T��_N*&�����04��R)ߩ9}c���T6�����e�A��ʙr�蓪�xKP�8�$
��wAᓬ;�].J#u���@�Ɔ��5�/K'�E�M�����,��e�Oi�K���t�n��g���W>?���K�A���Y�v-�"m���AeN�S��MW�����U7%��g�@s��������дrc�8ccV���c�?9�
KeyValueFloatf��7b�A=��A���A�,�A�\�Aֶ�A�_B�gB?�B�AB�B��	B��BW~B�
B��B�cB��BZB�B�_B͏B��B@>B�
Bn
B��
B�B+xBj�B�
B!�B{�A���A�ɺA7��A�#�A7b�A�1B�)�A���A7b�A7b�A7b�A7b�A��A|��A�X�A�DB�B� B�~-B��:B��
Bky�A�Y
AZ��@�A�8A�.A�zAA^�OA��SA.�RA�VNA��FA�OAA�zAA�:GA�QA@#_AZapA��A�<�A
{�A���A��AB.}
B��B��B��Bg�B��B�:B��B�yB��BWBEe
BB�$B�b)B)�(BY3(B��#B�EBB�5B��B��B��B��B��B�(B��B*B��B�dB�bBPSB�TB�V!B\�,B��B�+�A��A�}rA[СAX�AK��A?�B��A�
�A���A3�sA&^WAC�AϺ�A�Ay�B��B�.BtB��B��B�BTWB��B��A�I�A*�Bb�A�^�A$��Aef�A�BY?
B��B�9B��B�B"�B��BB]�
B~�
BQkB��BB"+B��B˖B՚B��B��B�BB��B��B��BH}"B	�$B��BNRBVB9�
B��B�	B�yB�,B�4B�r$B@�B��"B$[/BНBq�B)�B9xB�B��BDB�j!B�^.B�t#B��BMa�A���A���A��B�&B�#B�>#BB�&B��B �B��B�.�A��B��B�GB��VB&/HB�}(B��B�wB9)Bv�B�B�BtrB	�B��B�B�iBcKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�� AnimationCurveL0\:SAnimCurveS-	DefaultD�Up�?EKeyVerI�M�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�� �
KeyValueFloatf����{?���?C�?
Px?Nj�?��?�e�?�$�?-z�?u>�?���?��?Ϻ�?�K�?�0@�?@>�@��@�-@��2@��&@�&$@R5$@c@�W@W
@��
@�w@\l�?�?��?�"�?–u?��>+�ɾ���x>��{?���?#N�?���?��{?Uӝ?{��?��5@��b@@H3@*��?Н�?���?a�O@H �@�>�@9=AL�Aq�@h��=�r��8��3�}y
?OO�?�	@�D @��@��@��?n��?JO�?I@
I@���@���@��AI2A��@�
\@Oq?�i$?�|?��>
g�>TZ�>מ�>�n?�?�f�>%F;��žU
'�$;���#��'����$�0a�>U�?�?H��>r��>�?7�?�g�>hQd=IF㾏M�K��ܲ@����|1<g�>��=
g�>�[X?g�>�8?|]?9Z�J�>���>Ĝ�?g�>��9�����f�ӿ窵�m�ͿSx��10��B{ſu�9�ֻ]��N��h��6>�>?F&?�?�f�>���>|x�>Ž?��=?�8�?o^�?�=?�/T���i�T����1'3�1�4�ɊھkӒ>�Bn?g�>�<�^N�Q����=>�c=?���?��@�qR@7lX@`j<@Ǎ*@,��?g�>?p
��;���R��m1`���k=M(?g�>>���������\G����@�:=`o�>u� ?
g�>'=����)贿}����������d?��?x|�?��?{&9?�2?g�>�(�>�H?�>�?��r?g�>����˿P��g�>�µ?+�?[��?�Q�?g�>��5�
g�>�0��g�>!�?���>?=�馃����g�>��?��
@��#@K,@�&@q
@�
@I@�?�?@�>?B KeyAttrFlagsi!| KeyAttrDataFloatf

� KeyAttrRefCounti��*AnimationCurveL�1\:SAnimCurveS!	DefaultD�Ω��$!KeyVerI�,&�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���)�
KeyValueFloatf��uNݿ�]���
���ܿ��	R࿡
�_q翞.�����f����N����s0��9�d��l$���0��4�%,�C *�]**��"������?����
������I���ܿ�������Ƚ������uNݿNQ�b��'��uNݿ�2�H��-+�u�O�i�
�W*���㿷��<�ȿ����z�#�p�W�D���<�d���4�G�>���>d\U?��t?W_?qv�<|�����ZTҾ�9��C��ꊻ�u�<��r�N4�h�ʾ�Ł��3��l��z�=�<Dɿ�Lƿ�ο�g̿+.ɿ�ſ�kĿ��ǿB�Ϳ,Ͽ�ſ����쥿�Q��U
��I/���ѕ�:���q��v꼿�������JcĿ��ǿ�Aɿ��ſ�>��M]��6�����<��ڠ�� [���ſ&I���ſ6�Կ�ſf^пM�˿r���⻿Mſ#uۿ�ſ�T��h����͝��l��A����1��������������ѳ�cH��������ǿ��̿I1ʿ�ſ�ƿɿ�q˿!Pѿz��Pe��ȿ�����G���@��'���Rx������鮿����2ؿ�ſ����I���&8���w���1ҿ�C�|*��-���0�-"��)�����ſ����J���뎿�W���ۯ��-ɿ�ſ����]���ᦿ h���q��=M��N6ȿ(�Ϳ�ſVW��9n��}(���*���t��쯕�쎞�<�ſj���/��0ؿz�ο�ɿ�ſ?;ɿ��ڿUT鿀P��ſ�*��k��1n���ſ�E�O
쿧��թ��ſ�����ſb��݈ſ�޿�Cſ�������d^���ſ$A��Q	�I��t��E���k����٦�����dп!*KeyAttrFlagsi![*KeyAttrDataFloatf

�*KeyAttrRefCounti�t4AnimationCurveL7\:SAnimCurveS�*	DefaultD@�Y?@+KeyVerI�0�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���3�
KeyValueFloatf�����A~�B<�BuD�Ag�A���A�
�A4�B�B��Be�
BF�BgUB3�BR6B�;B �B��BU$BS1&Bv�!B/� B�� BK�B�SBSvB�Bf�B��B�tBb�B�B.	�A8��A¨�A�W�A%�A���A��
ByB=RB���A/dB�B�1B��BBzJB��(B��B::�A�%BI�Bn)1B�OB��pB7�eB���A,$~@��i�T���Q�'��U�?lEA)�BA��RA&:HAr
-AY�AɤAkEA�S6A��tA*��A8�A_7BT�lB�kOB��BO��Al]�A��A���A���A\~�A�AU��A���A���A��A�C~A�dnA�lA��wA_��A帏ANv�A�c�A���A�ڢA3�A�*�A�<�A���AᗎA�}A�wA��yA�lA�3xA�G�A���AٌA���A<�A���A�ƦA��A���A�ʐA&�A�h�A���AV[Ax�>A��A-2%A5�A2G�@ޫ�@�A��[AS݁A�
�A��lA�u�AtٞA��A�8�A���A���A��A4�ABu�A�#�A���A[��AA;�A�p�A:�qAn5dA��]A:']A��rA�w�A�"�A���AE�A�"�A�lAR)�A��A��AIS�A�B��	BQaB�A��A���A=�kA˫BAq<AgYAf�A��A���AeA�s)A�X*A�aA��A#�A�B�A���A���A�ZAh�.A�.'Aq��@>O�@-%ADA(��A��A���A���A�O�As@�A���A���A♦A���A�}�A���A�OqA�F,A@3A���AL��A펵AD@�A��A���A���A���Aa4:A���Axw�A^��AFpZAr�CA�JhA���A4��A�M�AR$�A���A��A#��A2$�AL�A�ؿA��A4KeyAttrFlagsi!:4KeyAttrDataFloatf

g4KeyAttrRefCounti�S>AnimationCurveL�[:SAnimCurveS�4	DefaultD@h��?�4KeyVerI��9�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��=�
KeyValueFloatf��B�?�4@A�?�<?#}?о[?H̤?�=�?���?@��?��
@>B"@3�4@ED<@�G@�G@g(X@�‚@���@F�@��@l�w@�`@1@�#@���?���?mC�?+u�?�pZ?�?>4e���;���S�4�ʾ�3}8�B�?�@�ã?1z�><�?��6@ͥ
Ab��A&WAQހ@>�@��?�cT?�q@��	AV�?A�YA�F@G`�?�"@M�@]�@�ػ@vv�@�/�@��@@��@���@�0A�*�@@��@r�@��@���@mjk@$Hv@K4�@�J�@B�@�<AO�8AUQIA��FAxEA&eFABJA�PA�YA�_AߣZABJA[q7A�w'A�A�A%A��(A��0A�#@AU*LAqPOA��OASA��VA��UA BJAc-4A�$!A8�#A2�0A��6A�@A��LA BJA�^;A BJA�JABJAO#JAk+?A��1A�@>AJ�EA>�WA BJA�7=A�Y<A A���@��@G��@>@�@���@u��@�
�@��@K.
A;�=A��FAOIAxJA BJAn�RA��^A��]A�aA��A�O�A��UA��A�l	AxA�x�@j߮@�[�@T�A��8A.�_A BJA�]8ATD2A��/A<6AA�.UA�mA�F�A���A�|�Ae�A��A�ABJA"�AKO�@��@���@��*AmRA BJAz?%A��
A0aAu2/A�>A�
DA��PA66WA BJA�4A�#AL�A�A5��@���@��&A�5jA�l�AwA��oA_�`AUABJA�vBA%�PA`A�sSA BJAT�FA4�?AmD9A BJA�6SA��aAU�_Ah�(ABJAK�dABJAu�[ABJAoxFA�*OAݝQA
OA�lKA BJAW�LAjOA�SA�XA�[A�o]A� aAC�cA�k]A�GRA�=KeyAttrFlagsi!>KeyAttrDataFloatf

F>KeyAttrRefCounti�2HAnimationCurveL��[:SAnimCurveS�>	DefaultD����>KeyVerI��C�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��G�
KeyValueFloatf�������`����s���m������m}��H��"��,���x,���d�����T[����	6������j!�n����U�'�ϼ(��=&��n �#� ��z"�����u�^o�����:���c΄��B?�LUp�x��������Ѫ��9�����&}A����:X������^���+�����wտ�p�@�RAs�=A|A�������zο3��@��@�F�@yZ�@��@���@��A��(A��+A)aA
�	AA�@���@
�@��@���?�]@=�@�Ư@y��?I9������M��� ���A�e��3v��p��.k�f�j�e��.]���O��"=���'�Þ
�A�����F��&6��NF�'R��`��)h��i�e��Q��qA�~�S���d��h]�/_���b�e��h�e���M�e��2�U��d@�@Z��H��e�K�����(��2��<-0>>�@��@�y?0�;��1���&_�^b���6���$��9������e��zc��r�繃�p��"���'����Φ�a����k��.��V+�w@���C���`��������e����������������%�)�Lh�=/���H�������
���f���^��e�2F��"�|&
�s���p�KJ��e�g���p�[���>������������Z�����e����$+��t�ҿ�A$?�9X��c�A����5C����j�����[|��
��e�~M�^�P�إK�q�T�e�̰q���R��e�pQ��̣�@��1Aus�@e�����e�ˣS�e�����5�n���d�������'�e������_������1��o���E���[����Ք� O���ʅ��GKeyAttrFlagsi!�GKeyAttrDataFloatf

%HKeyAttrRefCounti�RAnimationCurveL��[:SAnimCurveS�H	DefaultD@��̿�HKeyVerI��M�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��sQ�
KeyValueFloatf���me���c?�B"?0������>ei\?��?I0�?Z��?{\�?"�?���?6��?���?���?6G@�?-@�TE@�G@A�.@��@�
�?��7?to>/A��|���w˾��+��|v��˿X��(��y�@��4������V�%��me����?f߰?�/??�me���?��w��

��r�����[��n�>�~f@1�AJrA��A$GA���@�u@o�/@��@��@[Ǿ@`�@��@+?�@d��@���@,(A�6A���@�4�@+?�@���@��@Oq�@i,�@uAv�A��A�#�@�@�@�z�@�|@�[@U�9@��)@�D@!q@?t@V�9@$��?'�)?�?�֤?�d*@���@
]�@u8�@X��@���@��@���@���@E(�@V�9@CX�?T��������&��,"����F?��
@V�9@�I.@V�9@�V?V�9@࿲@@�5@��=�*F?q?�?1[w@Y�9@�a@Ʌ#@NL1?�����.��}��J��9�.y��a	��3ƿjI�>/�i@�Oq@�V@{UA@V�9@3\@:�@��@��@K�@mZ�@GK@)ե�_N����X�}T*�tF��F�]�}�Ϳ�X?%6F@X�9@\)@,(@�Q)@v\_@Į�@���@���@��@�T�@�W�@�5�@���@T�9@H�}��g�	5���8v� �?V�9@R�)@�e@��@@�d�@�Ԛ@��@�r@��W@Y�9@cw<>	����@��?�D@��a��?�"�@�ŝ@L�l@w�@c�t@�VV@U�9@�P7@[U�@?�@
F�@V�9@2躮n����V�9@z�gAj�A(T�A4�SAY�9@��c@Y�9@��@W�9@'U@�@�=�@�L�@��@Y�9@��?���?�@��F@\�f@8�y@��z@��j@S8K@O�3@�QKeyAttrFlagsi!�QKeyAttrDataFloatf

RKeyAttrRefCounti��TAnimationCurveL0�[:SAnimCurveSgR	DefaultD j�?RKeyVerI��SKeyTimel!�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.�����_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�ST�
KeyValueFloatf!�Q�`?L�`?�e?��s?�'�?̋�?v��?9o�?Tn�?��?��?1�}?��1?`�K?ۤ[?��_?��_?��_?��_?l�f?V{?�d�?א�?-�?��?{��?��?k��?��?{��?~@N@N@}TKeyAttrFlagsi!�TKeyAttrDataFloatf

�TKeyAttrRefCounti!�WAnimationCurveLl\:SAnimCurveSGU	DefaultD@f��_UKeyVerI��VKeyTimel!�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.�����_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�3W�
KeyValueFloatf!�2#\�2#\�:c�pP|��I���u��_!��&�������\�ʼ�tԢ���g��J��$��������������C����ʧ�8л�!.��@[���1��k�.D��cJ���
���m&�����]WKeyAttrFlagsi!�WKeyAttrDataFloatf

�WKeyAttrRefCounti!�ZAnimationCurveL0�[:SAnimCurveS'X	DefaultD��z�??XKeyVerI�hYKeyTimel!�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.�����_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb�Z�
KeyValueFloatf!���?��?=X?g��>&%{>!D�<��r��n���V�~�����
d�n�lG�׬3�t�9�u�9�u�9�u�9�@��SQ���k��+���Q���ϗ��\��[�rq�ޣ�^�ܾ+�i��i��=ZKeyAttrFlagsi!wZKeyAttrDataFloatf

�ZKeyAttrRefCounti!y]AnimationCurveL 2\:SAnimCurveS[	DefaultD@I�@[KeyVerI�8\KeyTimel�0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb��\�
KeyValueFloatf|J�.@�.@s/@�0@t~2@T�4@\�7@j�:@/<>@�$@���?D߯?�ձ?z�?�k�?�k�?�k�?��?��?S��?�a�?O��?×$@}�t@���@���@o&�@D_�@���@p�@p�@]KeyAttrFlagsi!?]KeyAttrDataFloatf

l]KeyAttrRefCountiY`AnimationCurveL�\\:SAnimCurveS�]	DefaultD�#%��]KeyVerI�_KeyTimel!�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.�����_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb��_�
KeyValueFloatf!�A(�A(�&)�P,�.d1���7���?�~8H�Q���Y�JA@�����������h���mW��mW��nW��nW�����+��@t��\�!�¥D�������������p���|��͔��͔���_KeyAttrFlagsi!`KeyAttrDataFloatf

L`KeyAttrRefCounti!9cAnimationCurveL��[:SAnimCurveS�`	DefaultD@rп�`KeyVerI��aKeyTimel!�C]!0� }�@�����4(>k�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.�����_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb��b�
KeyValueFloatf!������������+���;i�O9�?]u�<ޛ��¾���ῑ�Ϳ����&�l�:���f���go��ho��io��ho������y&���t��j���۩Կ4+��`�2TF��+j��
z�����r��?���>����bKeyAttrFlagsi!�bKeyAttrDataFloatf

,cKeyAttrRefCounti!mAnimationCurveL��[:SAnimCurveS�c	DefaultD�u"�?�cKeyVerI��h�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��zl�
KeyValueFloatf����?S��?mh�?�>�?��?
��?��?1��?��?�4�?4�?���?r��?f�?b�?~:�?z
�?gv�?��?�6�?֊�?�!�?b��?���?_��?���?�-�?���?4R�?�p�?��?YN�?�+�?���?D��?)�?���?��?Չ�?zR�?g�h?��S?��M?	g?�a�?x�o?�~2?f�>�-�>��:?�$�?Y�?L��?�y?e?a�:?ku>[�'=��۽VN��p�J�^�>?�� ?q?~3�>�HC>��W>���>�P8?��M?r9?0�7?�?�u8?t�?7�>���\����=�Y!>�[�>�m-?��?��7?�K?om�>�gn>2/�>�[Q?���?���?	��?��?}w?M��>5���Ӡ��%���&�W��gW�b~>j\o>�<�>	�>�g�L0о���3���>"]	?I�?a��>��>9q>!vQ�ĕ-�,7>�
>��݆��2C�׸=@t=�~�>�5�>�8�=*�a>��>-Y?#��?yI�?k�b?��>?*�y?c�R?�s3>�~���=��`>eլ>Ҧ�>��>���>R�>��2�R/��0q��(p���>B�#?L_?��>#�
?]�>�¼�9L�YC������
W���;O�b>�a�>���>.|�>)!�y�d�>
�;=�)>ہ�>u��>Ԋ?|�0?��>���=�P>��s>�xg>�>���>ұ�>æ�>~D�>^L^>�ͼ�������a�H>�6�>��>˕=��=};�=뮻���#�:��յ�!�d>�9?�9�?5�?q�?x��?�5p?�?�͠>�r=
����>��?�b
?7��>���>��2?�n�?2�?-�@{��?ٜ�?��.?�N.?�)?ټ>��)�$Ҿ�����˾	�g�I��>�o?�G@?�lKeyAttrFlagsi!�lKeyAttrDataFloatf

mKeyAttrRefCounti��vAnimationCurveL��[:SAnimCurveSnm	DefaultD �-��mKeyVerI��r�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��Yv�
KeyValueFloatf���n!���#�~�!��
!��#�H�)�Ub0��z:��\C��	I���N�j#Q��BS��=T���S�JQ�!O�t�L��L�1�H��UH�+�L�ުJ��$H�GqI�S�K�8�I��F�;>?�3�A�T�>��0���)�.r ��T%��>���2����6��¿��|������!���"��1��!�]�ǡ������8���Z���D��~ٿ��z���8�%�=]�W>v[5>e߈>O}��(�(�&�P�U�	�
��Du���	����/����违|���N̿�Ĭ��"�
��K��D��=�<=��J�����?�>K���R�������Ӿ��7���������m���ҿ����O�׿�C�Lۍ=&u�=��?�)?YL?�^?X�?
�n<BQq��Z�u�ʽ;�O>�	?B�T?�7�>�"/�tS9�i��Zds��ʘ�1B�=�V�>[^	?�>us�>��H>o,I>c��<3A�>��_?�
,?<}*?lf'?j\�<��(�2ʶ�����Ѐ��H��n��4�u=�U��>�K�>��3�cb�(�8�`2����=��8?���>�F�>)�?Ȏ?�>>�ݾ�d��#A���xl�����ӄ{�8�b��f~>ل�>�t�>�	P>��L��RK�)D�<|�J�4g�=��>��L?�AJ?<�>��k�����vV���c�����a_��R����I�̞���6���l�M�Z9x�|
��~�+妾/�<���>�0�>Ê�=l6�}�m�h[��h�1"/��&��q�=�A~> ��>p~>��9�GT�����Tؿ���z濸qʿʩ�̪��w�������6�KƏ��>/�l2>#|�>O�g!��xq�!c��$1�ֿƈ¾��-=k/>Q��>w,}?vy�?�)�?t�?kF?�=D �����vKeyAttrFlagsi!�vKeyAttrDataFloatf

�vKeyAttrRefCounti�րAnimationCurveL��[:SAnimCurveSMw	DefaultD@���?ewKeyVerI�m|�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��8��
KeyValueFloatf��"5?�4?Y�2?��@?�\?uq?�y?�?M�?�?���?al�?��?x�?*��?Q+�?=�?�Ά?M�?;��?Jт?'d�?&`�?���?J�?d_�?]c�?d�q?��H?��;?�V;?�+?1�	?�>�>�>�2?.t!?5nG?��r?�2�?cz�?zw�?�=�?Ć�?�sP?�5?b��?�)@T^E@�X@ӣz@��@�bN@���?���=X`>���>��q?���?n�-@i�I@f�5@�շ?Qb>՝<�G>A�w?�%	@��&@wgH@>�E@�"@��?ҏ�>k1ܾ.��=Q�]?��@�1@%�?@��C@�^/@��?c �>b�;���!��>л?���?�
@��	@��?lW�?������b�[���>�׼?��
@��,@�pH@Y�4@8��?�&?[�>���>�l?u��?�@b\@�D @I
@+��?��>���(̂>z�?mս?qy�?�&@Wl%@���?t��>���E��h����K�]
?/Q�?N6�?M��?y��?uJ?E�8��×���X���<��?&t�?oj@�Z@���?�=T?�y��I1��[>��?E;�?�%@��B@��C@-G"@���?�е>������>Pϕ?�5@�"@U�.@i�9@��@G?�*��q���������?�t�?7@��?���?/�?˿���..�\t/?R�?�^�?��@��@%i@V�?�%�?o0?]?�A?f#C?�]�?݋�?(�@b2@*�@>�@��?���?���?m��?1�?�}�?@�?��>��=���d�/.�>pH�?�@�7>@3pF@��F@zb/@@E�?�+y?a^e�Oy��_�Y����?Ǥ@�N�?{��>^���t$�u���׿����WH��p��>V�?w��>�vڽ�QN��i��b�KeyAttrFlagsi!��KeyAttrDataFloatf

ɀKeyAttrRefCounti���AnimationCurveLPh\:SAnimCurveS,�	DefaultD;p�D�KeyVerI�L��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf��؁C��iɾ��>�"(?y��?´�?=�@y�1@yP@A�a@�l@x�p@�[m@W�e@I:W@��C@��1@>�@�b@-�?>��?1��?���?0Ӵ?���?�G�?���?E�?$��?�J�?�?��!@��S@'f�@nm�@HA�n2A?&pA=UwAݹ�A��A��A\��AZX�ABZ�A#�Aj��A�w�A�9�AA�A��A7�A�{�AٕuA��5A�#A�6)A��RA��A���A&��A���A+W�A-�A|�A��A<�A�Z�A���AP��A0g�A��AJ��AY��Ak�YAΖA���@�dAw�?A��AԊ�A��AcW�A��A慠AZۧA�j�A� �A7u�A4(�A��A���A(��A�A�fAI1,A�&A�,6ABmkAɕA�A{�AN�A=¿A�̴Ah��A2S�A���A�zB�~B���AR��A/��A'�A52XAb�!A�A>A�c�A?��A�5�A���A�1�A��A{ÛAwˤAE˺AYC�A�R�A���AF��AYV�ApM�A�lA�rAT��@7A��;A��iARG�A>��A_��A�8�A���A[��A�h�A���A�B'�B�qB8�A]W�A)�A)@�AWA(�'A�C'A0�KAGb�A<��A���AS��AT��AJ�A��A/��A_%�A9�A$��A0^�A��A�_�A8��A�lArTA��`@)�5>�-=>�v@�EA�gA�4�A�&�A��AJh�A{��A�*�A�F�A_
�A�]�ADq�A�ѷAjɫA���A���AY��A�T�A���AM�AX�A���A#}�A���A�nvA$�dAk(\A,HdAJ��A�c�Aʞ�A��A��A�w�AJ^�A�+�AO��A�E�A�ѯA��Av �Ar�A�Y�A�E�A��Aa<�A���A���A�3B��
B&B%dB�^�A\��AA�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL0�[:SAnimCurveS�	DefaultD��e�#�KeyVerI�+��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�����
KeyValueFloatf���,��O2������e��s���I��h���c���8����)��v���Ĵ���X���^��i���l���Q~���e��/���K�������~��GJ���a������ij����sij�������wu��/.��ۼ������������'��������4��V	�[��?��!@^�s@�Ǫ@;}�@L�?A,��ASC�A��A���A��B'��Ax��A���A�>aA�C+A|�A�A��"Ar#Ao~+Aҵ4A2�6A��6A�sZA��A#��A���A/��AvB{f�AJ#�A�!�AD�AE�GA\mAeA�A��Ar<A�]A��A��(AE�/A�AA+vAx��As��A� �A�B��B@�A���A���AՆ>A$�A��A��@���@���@�l�@��@�A�S*A FA���AU�AQ?�A���AoeBg��As�A�Z�A�=NA���@��@���@���@#��@�p�@�OA��%A�2A�
/AV4DA��A1�A���A�A���A͚�A_H�A��AF�GA��@R%�@�A�@�$�@>D�@�Ͽ@���@�b�@SA�$A(uBAҒA#«AG]�A���A���A��A���A�A�bA��A���@Y�@���@Y��@g��@�kA�}AIxA�-A��A��YA5��A�t�A���At��A���Av��A��A6�NAکA�2�@h��@���@�Ae�A�'A@+A��)AQ.A0�.A�cQAD��A��A6�A��A�c�A��ANG�A���A�DtA�*dA�QiA�prA@rmA��VA��1A���@�$@l��+�S�:'��=�v��/W���0�d�ݿ��>��0@&��@�
�@��3AO\�A�!�Aݡ�A^,�A���APNA�.�@w&R@�y�?e�=c���s�����>w>�?�p_@Gk�@V�@��EA �KeyAttrFlagsi!Z�KeyAttrDataFloatf

��KeyAttrRefCounti�s�AnimationCurveL�[:SAnimCurveS�	DefaultD���S��KeyVerI�
��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��՝�
KeyValueFloatf�����8F���~�‚��h͟�_���TD���£���H/��,��ž������S���z�‘>�����n���h8�����<͡“���	������”֡������¸���sT�����P��”Ϡ�}���������˟�Пˆʝ��=����¤���;��ʯ�¬��’K��f5�¡R��r����F��|�y��5wƒ�v�w���{�Vق‰��!B�����8��Y�����fE�‰,����������������9E{�ty��"w�u���u�^nx¥��h#����Š���g��?Y�³���r���I���+����˜��@�����–&|¥�wœ�s½Es�;�w�3�}�}��<�”���Ӓ«%����—����1�����7d�§���=&��H5��fX��
�~�g{|�8�y�z�M�}�꤃Ž؋����ˆp�´6��x;��꟏��C�­����¥i��{�����۪�¤�}�I�y��Uv�`?u�\Yt��s�g`�@8���W��4S��(��¢z�‹k�«��t�½%��
)���/��w��ž]w�J�q��p�fFp“�p‚�q�`�w����s����6���›��~����t��J��¾��fm���y��Ճ����n!~�Q�{‰�vµ�s��t��;x¡?�ª��œ����z��8����q��7���m���?�’Ȍ§���zD��Z���K�ŽK{�>rwµ/u�PtušEy�&����³���3���I���_�™"���6��:���
�¿���݆�,���އ‹ن‹Ӆ�.���v��D���VҐ�X`���<�����6���gs�p~­V~�鵀��d��{d��2��x���������ˆ��rW��J]���}���:���g����KeyAttrFlagsi!9�KeyAttrDataFloatf

f�KeyAttrRefCounti�R�AnimationCurveL`�[:SAnimCurveSɞ	DefaultD `H@�KeyVerI���KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�􍴧�
KeyValueFloatf���@B֖AB]�CB�@B��<B�#9B-�7BQ�5B��4B��4B��4B"w5B�W5B�c5B^'6B��6BM�7Bb9B83:B
;BY;Be�:BP;B<;B�:;BrN;Bi4;B<�:B�E9B~�7B��5B�3B�0B��*B0�Bd<B.�B�J�A�:�A;��A�S�AҪ�AB$�A�َA'��A�`�A4�~A��WA_�#A�2�@��@4��?fv�@�0A��AH�A�m�@��Y�<͕B��HBU:Bp�<B��bB^�C��/C�H1CLX.C��'Co�C@2C��
C(�Cw�)CB5C�b7C׆7CXD.C��B<MOB�
'BP�B2#BP�@B݆�BTm-C�!5C"�1C��(C.�C<�C�VCӜ
CA�%C�4C��7Cb�5C�-CH_�B4�MB B4�B��B|�&B��eBėC(+CwC>�B~��Bʵ�Bl��BZm�BE&C��9C�:C�7C�-*C���BP�-B��"B�B�B83SB�C�,9C�;8C�`3Cz�,C�X&C�CG�C��'C�R5C��7C
�2C�]5C��1C�^�BRDB��#BЋB�6B�`5B��BaYC��*C�{(C�C!yC��
C�DCC��-C�>Cs�>CU�9Cv(*C���B8�1B�}B�<Bh�B�RRBlG��xgBA�49A.8	Az~�@t�A��@���@�A8[A��A��A��sA&�*A�8�>�7�� ��½��;���&���8��#�9����/i�.&�p�,���I�a��.�ü�Ò��d��h��(0ý��مëA��É��Nn���)���hî0�âϔ�5#��!���EHá%��#ìU �&à�(��6*�4�(�]o%�H"�7�"�-�)�=9C�f҅�:��ú��Ä4��\ʓ��]q��c$�*��ާKeyAttrFlagsi!�KeyAttrDataFloatf

E�KeyAttrRefCounti�1�AnimationCurveL|\:SAnimCurveS��	DefaultD��� ���KeyVerI�ȭ�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�􍓱�
KeyValueFloatf��������%�>n3��?���I��P�
�S�4V��nW���W�"�W��=W���T�`!Q���L���J�r�H�Y!G�FE�h[C��!C�]tC��dC��B�5xA�l@�}�?�1�?�4B���D��iH���Q��c�Z���ޗ�BU���1���=¥$k�����ؐ�D����O�������(q���o�;�y�9��°�����4�šȋ»�z�Bf�O;w´���^���~�����¶H�����r��}��5
����������†��ŽC�����S��§D���
�¬��Mj��!L�»j����JL�šV�‚������D��º������7������2�—W������e�¨{��n��‘v�žs������7��CZ������%���>��D���1��쮿�Hc��J���k�±���]��J"���;������
#��<5�„y�����†X��
����:��j���I�„���m���������V���<n�®��Œ���k����D������"R�Œ��>I�½;�����k������6h��T��|=��ܦ��F3��}�� ��{��±����~��U����^�š��ƒ�������n��5Q���r�ª��Ž������,�‡�����-��kl���|��2�’��
����Ί����b�n†�Q�N
R���o�����-�����‰������3�’���|��J����������ig��!��$g�����^��¢��tn�˜1�%��Ž�¦���Z��»���'y������&����h���u��z���x)�§^��ށ�������m������s:��'��µW�°��‡���{T������~��x��«0�ƒ�²L��w���}��‚K������N��-�����¡�½�KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL0m\:SAnimCurveS��	DefaultD@����KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��r��
KeyValueFloatf��j?������G�����c���L���o��V�������S���a���<��9���J�������&���������������h��������'�����������G��ԅ��G�������^�����(���LK��}
���Q���-��k����8���6������+�C��������������
��-Ks���7�?�V@4z�@� �?�mK�4�����-����?t;�A;��P4¸}�T��|�,�*���*��8.�1Z,Å�&�(~�X
Å��	�^v)�k�2�v�3È�0�F^'�M{��`+�@����������п��Փ”�$ð�0�p�.�p�&ØH�3oÎ�×��$ä�2��<5��2âE(����xZ.�H��P���������<��Q��YÿL�(�����<?��:�·�� �@2�24�ES0�V$!���¤	¨��8�������8�.�r��µ�0��4��2�&�,���%Ú	��5�W�%Å�1���6ä{6�5<3��o*�I���`��P��h
��C���f–]a���p3(��'Î ��L�XW����eY�Ak&��`3Ã�4Ñc0�� �!�¨¸�������@���p+¹�Bb��������ё��=�O��{��M#�&�
�q2���?��p7��y�ѿy�@3�WAg��B�C�C=CU&�BYJCk2Cp-C5�+C++C�+Cj�+Cb>,C��,Cj�+C��*C:`+C��+C��,CŘ-C�-C�%-C��,C["-C*�-C��.C.�0C>5C&BC�C�ÜC��Cr�C�C��^C)4C��/C@1C��4C�'9C��:CNn9C�a6C�3C�X4CB9;C��VC)5�C�$�C:�C�9�CV3�C���C�;C}3C��KeyAttrFlagsi!ֻKeyAttrDataFloatf

�KeyAttrRefCounti���AnimationCurveL�a\:SAnimCurveSf�	DefaultD��d�~�KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��Q��
KeyValueFloatf��&S���G���W�=`;��K*�Ѓ%�s
(���"�#��W$��(�S�8�za1�4&�A�Vg��2�x� �p�(�@�/�%-�@)��k3���1��5��7C��=L���P���K�3�B���6��m$����NO�p#�k�۾���� ��N�þ��оt������S��1kl��
i>~&L?H��?�?�g?�gG?fp	?D��>���>N7\?�P?��j>��a���'
��]������[x��lᾷP?TH�?�ܝ?)W�?�?�]5?�G?|�>O��>_Y�?6"�?�_�?�h�>�>�Y��^����J��\Z���;��򧾙��>�?���?��?=�Q?�=?��>'&F>>JP>�&?���?�j�?��>r���R�	�a�R��NM�����~N��J�E��=��T?B��?`�?�5�>�%Z��D��c��,�վ5��>�q?]	?+�d�d,Q�x����t���z��lYɿj���\�2⼇�B?CIn?2?��4=���
&��p�4��v&�ZR�=��?�����j�����`"�Dj���x�1a��L�p��=�v?���?��?�f�?�;�?��(?�p)=���O<=��`?��?�]�?�FU?c4�>��<ە�^���-�?�@�ワ9�==�5?0�?p��?��?���?�'"?Ք�>y��>į�>��Q?B8e?�\�=����<���]�����o�п�%ƿ����CE�_C���G��Ӿ�W����
	���'�������/^��z�2����Š�w���|9���,�������p����v��ԁ��B������U㘿�h¿G�ۿ3�����l�۔��	�
9���p�Z��ܾý���!վ�Ɲ�n{��p{��?�=%2�=�
������RU��ނ�-���8謿�d�������>��?{�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL �[:SAnimCurveSE�	DefaultD����?]�KeyVerI�e��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��0��
KeyValueFloatf��M�->ڗ!��n�����D.G�D l�)ӂ�����Y��E��;z��Wϓ�����C���!��˗���:��2����|�I�q�9|m�ݒl��$c���`�)W\���N�_pB��?;�q>�f�G�NZ��s{�����F�������s����<��1�!ʽ�Ae�_¿^�%��xοliZ�ٱ����&�)�j���\���	t�B���5*������ʔd�1&E���S�����D�H$I�ե?6��>�������������f���a��o���V(�:{ܾM���]����-��4V�1�:��A��t����>�L&��4E?F��>� ʿ�[��7.�5��i$���:2�!�q�2��;bD�>LPA��ۋ�k�'� �M���%�������������24�>]���?:v��*��P>�����mȢ�n��%��=}<�?�'�?�/��N��>�2���Q�-�$�E�������h���X?��?��������JK��{
�����#߿���>��?߳�?
���'���S:%��+�_������ݒ��̆��
����j�����8A��ܿ��e�IO����q�O϶�?�z�?�T�ɭ���8�n�_�B�9��!�"M����H��v��|+>응�&�j�AM���!�	�����I��-q���0���R���F��Y��{\��]��	*��4���������J�׽v�Z?�.v?���j����C����\����E����=?�C�>5����P�q��"T��jC��&����G�uA6���c��|��c����3.� I��2�v���ij��kY�)}��Oj�~�=ξֿD'��4T��F�9L������OU�=�ɿ�
$����P���~��������q1�[y���3?��?aؗ��T������.�Z�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL0a\:SAnimCurveS$�	DefaultD�;�<�KeyVerI�D��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf���)��ο‡�R�R�-�4����鮾��`�������[=���=A�>�ɫ=�2F;)�g��ᙽ�0����
�428��b������D��턾^=��v���GX��$|���#��V1�K^;��O)��e��/g��1>�5?�i�?�`C@�}'@3�?��
<��r����_��?�>�@�Q�@��Z@H�?w�?��ھͶ��CL^�ڴ=f{(@d��@�`�@��z@{�%@c�?'�?�8F��\l�u�X?ZN$@Z�k@�6�?�������aN�����T�w~�c����1@�]@0��@C;@��?qc?;n�;Ub�s���0��o?�B@�;@@*>l�ٿ	(9�\�Y��DX�`	9�ǻ��ze�?|/n@�V@fD@}S�?��@?�?�t��"<?�>�? DB@;�[@0?g�[�@(ؿ8�%�ўS�R��(�h�7���q@�R�@{��@�EX@""@
��?o�D?�H �UiV�H�H>:+@�$�@�:@޴�>ײ˿&�$��s8�~H�'��@��ȂA@�S�@�ؑ@S�X@�)@/�z?��@��-?�*��D��=��@��@i2�?q=�p2�B�U����;_i��P(��=�7h@�;�@���@+I7@R�?�,#?��`�u���Ϻ˿Ϯ���@��^@�w�?&Yp�N���S.�}�N���;�8�Կ��?D��@� �@x�@���@/�U@FF-@���?��>"1U?�Ұ?��@�֊@&]�@�!@^+�>;k���7���ҿ'����?��@j��@��@��V@[@b��?c�?#,@o�@T��@��AȃA'	Aa��@���@��@�&�@�w@�Հ@���@:I�@���@�^^@,�?
���2��_Ľ�?:�u@\��@5@�@�V^@oY4@�@5�?��"?�	?�U@UW�@P
�@9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti�
�AnimationCurveL@T\:SAnimCurveS�	DefaultD@c!@�KeyVerI�D�KeyTimelo�
KeyValueFloatf	@��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveL@�[:SAnimCurveSc�	DefaultD��-�{�KeyVerI���KeyTimel��
KeyValueFloatf$�l���KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti��AnimationCurveL�?\:SAnimCurveS��	DefaultD��<���KeyVerI��KeyTimel/�
KeyValueFloatf`��Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti-�AnimationCurveL�
\:SAnimCurveS#�	DefaultD�=@;�KeyVerI�d�KeyTimel��
KeyValueFloatfP�@��KeyAttrFlagsi!��KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL`�[:SAnimCurveS��	DefaultD�Bb�?��KeyVerI���KeyTimel��
KeyValueFloatf�?�KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�\\:SAnimCurveS��	DefaultD �K<���KeyVerI�$�KeyTimelO�
KeyValueFloatf^��y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiM�AnimationCurveL@�[:SAnimCurveSC�	DefaultD��.@[�KeyVerI���KeyTimel��
KeyValueFloatf�u�@��KeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCounti��AnimationCurveL �[:SAnimCurveS��	DefaultD�j��?��KeyVerI���KeyTimel�
KeyValueFloatfU;�?9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti
�AnimationCurveL��[:SAnimCurveS�	DefaultD��q;��KeyVerI�D�KeyTimelo�
KeyValueFloatf�����KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveLP�[:SAnimCurveSc�	DefaultD@��?{�KeyVerI���KeyTimel��
KeyValueFloatf�p�?��KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�����KeyVerI��KeyTimel/�
KeyValueFloatf����Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti-�AnimationCurveL\:SAnimCurveS#�	DefaultD`	�9�;�KeyVerI�d�KeyTimel��
KeyValueFloatfK�����KeyAttrFlagsi!��KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL�\:SAnimCurveS��	DefaultD�F��?��KeyVerI���KeyTimel��
KeyValueFloatf6��?�KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLP�[:SAnimCurveS��	DefaultD@ݥ�?��KeyVerI�$�KeyTimelO�
KeyValueFloatf�.M?y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiM�AnimationCurveLP_\:SAnimCurveSC�	DefaultD`�S<�[�KeyVerI���KeyTimel��
KeyValueFloatf������KeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCounti��AnimationCurveLP�[:SAnimCurveS��	DefaultD�ew�?��KeyVerI���KeyTimel�
KeyValueFloatf/��?9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti
�AnimationCurveL�[:SAnimCurveS�	DefaultD�/��?�KeyVerI�D�KeyTimelo�
KeyValueFloatf�??��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveL�^\:SAnimCurveSc�	DefaultD@ �;�{�KeyVerI���KeyTimel��
KeyValueFloatfQ����KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti��AnimationCurveL�_\:SAnimCurveS��	DefaultD�Y����KeyVerI��KeyTimel/�
KeyValueFloatf͂�Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti-�AnimationCurveL`�[:SAnimCurveS#�	DefaultD��!�?;�KeyVerI�d�KeyTimel��
KeyValueFloatfO1?��KeyAttrFlagsi!��KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveS��	DefaultD�O�9���KeyVerI���KeyTimel��
KeyValueFloatfb���KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL0\:SAnimCurveS��	DefaultD ����KeyVerI�$�KeyTimelO�
KeyValueFloatfA]@�y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiM�AnimationCurveL��[:SAnimCurveSC�	DefaultD�H�ӿ[�KeyVerI���KeyTimel��
KeyValueFloatfDꟾ��KeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCounti��AnimationCurveLP�[:SAnimCurveS��	DefaultD���>���KeyVerI���KeyTimel�
KeyValueFloatf����9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti
�AnimationCurveL`\:SAnimCurveS�	DefaultD@<
��KeyVerI�D�KeyTimelo�
KeyValueFloatf�Q@���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveL�h\:SAnimCurveSc�	DefaultD@�[Կ{�KeyVerI���KeyTimel��
KeyValueFloatf�ܢ���KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti��AnimationCurveLp�[:SAnimCurveS��	DefaultD�Ì@���KeyVerI��KeyTimel/�
KeyValueFloatff�Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti-AnimationCurveL \:SAnimCurveS#�	DefaultD��J�;�KeyVerI�d�KeyTimel��
KeyValueFloatf�U����KeyAttrFlagsi!��KeyAttrDataFloatf

 KeyAttrRefCounti�AnimationCurveLP�[:SAnimCurveS�	DefaultD`�#@�KeyVerI��KeyTimel�
KeyValueFloatf��AKeyAttrFlagsi!SKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL�[:SAnimCurveS�	DefaultD@�1��KeyVerI�$KeyTimelO
KeyValueFloatfbw��yKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiMAnimationCurveL��[:SAnimCurveSC	DefaultD����[KeyVerI��KeyTimel�
KeyValueFloatf�D���KeyAttrFlagsi!KeyAttrDataFloatf

@KeyAttrRefCounti�AnimationCurveL`�[:SAnimCurveS�	DefaultD``A���KeyVerI��KeyTimel
KeyValueFloatf��9KeyAttrFlagsi!sKeyAttrDataFloatf

�KeyAttrRefCounti
AnimationCurveL�\:SAnimCurveS	DefaultD`p�=�KeyVerI�DKeyTimelo
KeyValueFloatf����KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountimAnimationCurveL��[:SAnimCurveSc	DefaultDg��{KeyVerI��KeyTimel�
KeyValueFloatf8+���KeyAttrFlagsi!3KeyAttrDataFloatf

`KeyAttrRefCounti�	AnimationCurveL�}\:SAnimCurveS�	DefaultD ��׿�KeyVerI�	KeyTimel/	
KeyValueFloatf���Y	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti-AnimationCurveL��[:SAnimCurveS#
	DefaultD`�
3�;
KeyVerI�d
KeyTimel�

KeyValueFloatfCV���
KeyAttrFlagsi!�
KeyAttrDataFloatf

 KeyAttrRefCounti�AnimationCurveL��[:SAnimCurveS�	DefaultD�	1)@�KeyVerI��KeyTimel�
KeyValueFloatfL�IAKeyAttrFlagsi!SKeyAttrDataFloatf

�KeyAttrRefCounti�
AnimationCurveL�\:SAnimCurveS�	DefaultD@��@�KeyVerI�$
KeyTimelO

KeyValueFloatf2��@y
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCountiMAnimationCurveL�\:SAnimCurveSC	DefaultD�7�[KeyVerI��KeyTimel�
KeyValueFloatf�����KeyAttrFlagsi!KeyAttrDataFloatf

@KeyAttrRefCounti�AnimationCurveL�[:SAnimCurveS�	DefaultD ���?�KeyVerI��KeyTimel
KeyValueFloatfI�?9KeyAttrFlagsi!sKeyAttrDataFloatf

�KeyAttrRefCounti
AnimationCurveL�g\:SAnimCurveS	DefaultD�0� @KeyVerI�DKeyTimelo
KeyValueFloatf�A�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountimAnimationCurveL`�[:SAnimCurveSc	DefaultD����?{KeyVerI��KeyTimel�
KeyValueFloatf=M>�KeyAttrFlagsi!3KeyAttrDataFloatf

`KeyAttrRefCounti�AnimationCurveL \:SAnimCurveS�	DefaultD@C@�KeyVerI�KeyTimel/
KeyValueFloatf��@YKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti-AnimationCurveL+\:SAnimCurveS#	DefaultD�99@;KeyVerI�dKeyTimel�
KeyValueFloatf]��A�KeyAttrFlagsi!�KeyAttrDataFloatf

 KeyAttrRefCounti�AnimationCurveL�y\:SAnimCurveS�	DefaultD@�s@�KeyVerI��KeyTimel�
KeyValueFloatf�s@KeyAttrFlagsi!SKeyAttrDataFloatf

�KeyAttrRefCountil!AnimationCurveLW\:SAnimCurveS�	DefaultD��C"��KeyVerI��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��� �
KeyValueFloatf�����:���
�/
�g3����8	��
�!��7]��:�Q������n����� ���#�B�%�B(��)�87,���/�R�3�M;���D�DP��D_��(q�#��潊�������R���R���������3e������7��{���X����J���a���)��q���*��{_��P�i�Ŀ�����@�����xH������_‘
�>�«���S��������������?׬�n���m):�&�����?��^@��]���]Z�S��=���Մ
��\�˫���¬S³8���=�������������إ��q�q���eտ�?5@���?R�����<�����
��u�‚�¿I��P
�m���0���8��+O����;��y����A�����p;�?|H,@��M�A*��d���v���h��fQ�ض��4�?
�L����������Ϩ��Ŧ��Y������j���迧�@.�@�v��q����&Q�M������N��Ÿw�sq›����j���=���P���&��Z)������8��4��F�@�u�@ �(@z��iQC��ך��w���f�I��A}¥B���������[W����������®��?���#�-i׿�P�?N;@_�M�� �[h��Q5��8f�����ZN��V���Y;�9u��{����b������?P���{E������{N�����f��ڷ-�	�x��������	¸��N7�Z~����t
����p�¡�#���,�c�3�O�3���-�$� ¬�¤�†4#�m�/�}�2��6)�"�¸<���	��:Ia�1h�s���������c�������FK����������X„F�F���U�AC�J���� KeyAttrFlagsi!2!KeyAttrDataFloatf

_!KeyAttrRefCounti�K+AnimationCurveLPq\:SAnimCurveS�!	DefaultD ��#��!KeyVerI��&�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��*�
KeyValueFloatf��m�n�"�#�2A!�K��;�������"��D"�'��\��T�v>�C��<����R�����D��
�$���	�-���9�����c���<���t�������|������!*��Z�Y�3�D�r�������l����*���+��>�j5�����U�
.�z��?��A�A�=A+D�@0�@��?�J`��~��R��������#����������d��� .��~�m�Bx��*�>G��@��:A�KLA��8A�QA���@b�/@;�wC�gd��������������t��K6�����J�"���ȿ�����?'
�@В�@^�@ΥA�dA�k�@ê@�R@ڡ?�o���!h�ck���؅��Õ�<����RĿ�Q�?ψ�?�QD�Vwn@qN�@mAp,A��A��n@~@���?$���r(�H���������-�����9���1��z�?�(Z@>h�@}	A/jNAd�JAql]A�IA��AA��@F��?�->�\;���D��k�������Z\��q���.�������"'��
)@��A3A2�AN��Am��A.o�AI5A�Z�?���
V�����(�!��h.����J���������ԗ�J4�<ZTS@���@�� A�_~A7�AsL�AȘ[A�>�@@�Ӿ4���������>��
�
%��Kd������>��R?w��@��A�L3A�LcA@�~A�hA�,A�)f@6�o�3���]*���B��*��+6���J��!}���I��`r������.P4��WW�s�d��xi�,D]�>NH���%���+�qf��/��&�ګ	��?�����w6{��X�w\���4���--G�ل�T�����Mљ�6����$O��B��QI�����=8$��*KeyAttrFlagsi!+KeyAttrDataFloatf

>+KeyAttrRefCounti�*5AnimationCurveL`�[:SAnimCurveS�+	DefaultD��s
��+KeyVerI��0�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��4�
KeyValueFloatf��L�k��P�
�:�>�)�Q��S
	�dN��ٿ��Ϳ<�ѿƁӿ�;ؿ1�ٿvؿE0ۿ��߿�Eݿ�jڿbdӿ�οMW̿�Tſ@/�� �������Uȿ�Ͽ�lݿB���6q�4���c���#�޿%<������m�@�n@�%�@;w�@���@ҕA��A�O0A�$5A��(A�<A�A�P�@Sq�@�o�@疂@�u@�Ӕ@�ѯ@?�@'�!A'A�'.AP�@A��GAơUA	emA�j�AL�pA8@fA�aA��TA�ZIA�(A��
A�q�@#�@`�A��AKp;AɿPAѹZAj]A��^A��dAxfaA�7hA�L�A��A�uAP�kA�PWA��CA�2AuA-7A(��@���@��A�6)A7�+A�-EA�TA=	`A��WA^�ZA�[�A���A�*qA��nAA�aA�]A��[AV�EA�h#A�6A��Aل	AE�A��#A�^0A��?A�GA֍IA��LA9�GA�\AΖpA+AdAf�ZA��AA�1AG�A�R�@��@�8�@�<�@"]�@O^A��%A!16A6GA�:bA\,bA�WAaA^�hA�vA�>wA�kbA!)\A��[A��TA;�7A��AhAAb�A�gA&9A�[AϓZA9NZA%�mA;\�AJ+�A��A@��A�1�A���Ap�|AQIsA:<dA��LA��)AmU	A,V�@��ATOA�e<AcZA7n]A��VAL@PA�QAF�YA&�UA� aA�qdA$�^AtZAǃSA�xIA�7<A�,A�C	A��@��@�M�@���@�Z�@p��@f��@b}M@��?���?]�U@=��@���@���@���@p��@�1�@^�@#}@��<@3==@H�'@��	@IZ�?oR<@h�@HAo�JAM��Ar4�A튀A���A�ȑA8ŁA@�lAw�|Ar�ZAbU(A��A�R�@��@��@�4KeyAttrFlagsi!�4KeyAttrDataFloatf

5KeyAttrRefCounti�	?AnimationCurveL��[:SAnimCurveS�5	DefaultD�B' @�5KeyVerI��:�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��k>�
KeyValueFloatf��:A�AөA�A=x�@�_�@G+A���@>�@2V�@��@���@pG�@��@���@�XA�AQ�A�A�A+4A�m&AN�.AԹ7A�[FA\�UAhA�~A2֌A���A�A�
�AU��A���A�4B>&B8�B�JB@�B*"B�?B�c!B8,B[�/B T*B�[B���A�>�Ak�AF4�A��'Bx]bB�(�B�!�B���B��Bf {B)"HBذB���A;��A��BGZB�D"BH6B�u	B�0�A�\�A7��AyHB�LNB{��B���B&�B�o�BW��B�4mB]�7B�UB���Ai��A��A
By�"B��"B�
Be��A���A[�ABBx�EB�T}B�K�B\��B%�BԍB�	oBN�7BBu�A��A���A��B�IB_�B�.B��A>`�A#:�A�BQ�SBq�B�BທBWX�BdZ�BM�OB��Be$�A�޺A��A<��A��A�fB��B��AϹ�AVڹA��A��B�>VBO5�B�K�B�^�Bw�BƝ�BE�`B{z(B+E�A�#�Am>�A���A6��A)B_hB��AO��A�ajAH	SA?�A��=B��yBՒB$_�B9O�B�e�B�jB�,B�5�A"ϮAI �A��A��B'B�/B_��A��A���A�R�A�?,B�7fB�V�B��B�>�B�	�B��B�L^Bu-B`
B!�A�o�AO/BLkB|�$B]B?	B�Aq��A2aB=S+Bu�fB;�Bi��B���B=��B�ڒB��}BC,QB+B^Bf�BM�$B7Bo=DBh�GBz6@B�S*B��Bwm�A�!�A�BERB,I�B@m�B���B�G�B��B�SfB��6B�B��A��BBt�B�%B�%�Aג�A�v�A2
BW�MB�S�B�4�BP5�B�>KeyAttrFlagsi!�>KeyAttrDataFloatf

�>KeyAttrRefCounti��HAnimationCurveL`�[:SAnimCurveS_?	DefaultD@��w?KeyVerI�D�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��JH�
KeyValueFloatf��j��4��́������m��m���`������D����⤥�����N���ڪ��������g���P���˪�G֫�<ǩ�*��ץ��������'���A��;:������ĭ�0N���ұ��r��Bc��Y`�4�����y�:������Z��d-�= ������N�������ӿCjM@Q!�?@�����9�Q�	�!��0������D
�e[�nN��1%��5�������R�g������`���Y�$�c{�?��@B;�@�N?c�E��?r���񿈎��_���E����;��V���#P���b��f?��H��\4�7���a#���X��[�?���?Y�c@F@�W��OE�����9ᾗ����T��(��ǹ�-c���_^��?��F����k)?i��>�\?<��@��@���@l�@ѹ�?+Q��8�^��M��::5�X���E�������m�����s������X����$�U���P@�V�@��@X��@P�?Vÿ;��i�B�I.G>,�����V�Z���k��\>f�����o�ɩ��P��������Ժ������������:���Y���5���?��?_��?�?�#�>M#���E���O��X~����[V�)�,��� ���8�RA��a��b���i��H9��\�n��>\Å>�>�y�
�E_��h���J2��a������=;��<
���������)��6b�������4������b��<�;�1E>һ�,�=���M`�OJ��R�f��S����s�O��A�nZ�������5ſ��ֿ����Tv��<���[3��=��*�h7x�%]��5�>��|?�Ʊ�u�.���e��TG���
��վ7g��9������I��V;��Pڤ�F0����v��C����tHKeyAttrFlagsi!�HKeyAttrDataFloatf

�HKeyAttrRefCounti��RAnimationCurveL0.\:SAnimCurveS>I	DefaultD@7�VIKeyVerI�^N�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��)R�
KeyValueFloatf��z�q�����z�.�q��_�_�A�v9�U2�߲#��2���6�P�#�0N$�� ��s"�2Z"�1&���(�z�1��y0�8�!�#q�w��Jw�!�
���Z�Ͼ��g�+=�%7U��D�;�y)���Ҿg�A��0l��7��FK��$0�?�bs@�@�K2@$e�Y��8?W	�?r��?]�Q@���@��	@���?���?��4��g����`�x�&����?�0@ڦU@�m@���?
�m?m1C�//Կ=a���?!.1@*M�@�]@�X@{^@}짿L����t9����O	�Ѹ�C����k�?Ko�@Zd@��������� �p�=L\@�5w@YS$@-2@D%(@�?���v���g���ʵ��G��!
>�D�?TU@*�w@�%�?us?�E�?˻	@q<�@yo�@u��@��@[aO@W6@O��?��*�2��jm��s=t���\ws���?P�@���@Ir@��?y�Q@��l@�@	@�@"��@��@�LS@�vG@b�x?����F������(���b0�kz?\F�?��>@JYD@�?��֕J?��C?�/7?�@&2�@}ݨ@�ّ@YI�@_}}@|�F�n��F�
���Ч���?�%�@��@'�@p�?�w�?!{W?n=�?�X@�ۄ@8�@�ܕ@�ev@}�@H��������zK���R�����%�%�Oo��Q*?��?���>q���SVc?��?�Z�?ݛA@0hE@��@@˳E@N�@�af>�:N�&����}���{��� �����㙎��C�-B�g�Ͽ���E@� ����=:f?��?�??9A[�j	"��' �9F�࣓�0������4��^@\��@J��@l�@��@��{@���@�K@�����տ����*{|�͋���	�rAw��n���h��SRKeyAttrFlagsi!�RKeyAttrDataFloatf

�RKeyAttrRefCounti��\AnimationCurveL�o\:SAnimCurveSS	DefaultD[c@5SKeyVerI�=X�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��\�
KeyValueFloatf����@���@3�@5�@A��@���@�Ɇ@�H�@ Z�@�@�D~@�C}@}/z@kpy@�Jv@b�n@@U`@<�K@n\8@42%@�_@[<�?��?�m�?���>ukI��z�����z�G�K����j��>2��/��R�/u��6�¥P��h�J�y��<���ُ�å�ܑ��)���L���9��^����������3�����������TB���\���p���z�/Gw�c�c�k@�+�,�ZwJ��
}�ې�L�������B�yh����
�Wp��9�d����r���0�9MK��0e�5r�a҇�bA������;y�3(Y�����������4<��{ݜ��j��
�Q�:��%��5<�%_��7��.1��I��b�
q��Em��Y�	�(�M���>���s[�IFn��&e���+��#��Rx�����?g�
@6���`��.����c�E*>�N�]�q��Vz����F���3�S���N�WF�����sԆ�ƳT������@�!��=QV�A"/�`���ݟ��y2�ْM���e�!�s��r�Df��zN����Z�#���h������-}�U�;�
���
ٽ�O@S��@�Z�?����*#v��2���٥4�A�S���b���F��K��<��r1@�w�'���'���?D������
�S	@�@#Uh���������<�/��!Q�<j���u�(-v���r�@^9�=����]���������7��F��$�4������пm@�B@�s�E�����#�@�f)6����	�C���+@6��@f�g@2��?��4?C�v?L+2@h�@kFAM��A^��A[iA"�!?�6��͑
����2B�����������+t���_�Qj��w��#�����@��E��nK�@�i@j�v�̟��H�����m0��2\KeyAttrFlagsi!l\KeyAttrDataFloatf

�\KeyAttrRefCounti��fAnimationCurveL@x\:SAnimCurveS�\	DefaultD��y�?]KeyVerI�b�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���e�
KeyValueFloatf����?=�?��>Fm?��?Qc?�?��??��%?��?=Y	? 5?4��>�t�>���>���>���>z �>�8�>��>c��>�K�>_9c>�0>�3�>�:�>�
(���x�^���J5�$�"��\%�lԿ�����_)���0�!�@��>y��������?s��
��U�:���V�]g��M���\�L�b��f�����k���<����׺� ��uԼ�SУ��Y������C���u��Ch�.>��oa��q���o��x���h��S%����E&��n#�A���iy��Ł�Y��������k��X����t���!Z�;9#��+���L�݉m�xR��������B�O������?g��bp�3f�)���H_i�!;���k��bW���o�����ty��!���i#�K�J���_�k�a�J`6������`Hɾc�>WϾ����������-V�<�V�u z���S�[��Я�$��H7)��QB���W���r���\��2�-�����@�m>��Si����t�04��+ғ����Y���c����������>��~��7��4X�-V�&~a��|?�����W�{L�>��/?;}u?Y���S����u>��t�z۔�RԜ�	����.��%E��B��Ĥ6��J���X�{^��uK�<V!��g���g��]@`��?�҉���K��	�������ʡ��w��������|���mP
��?���E�mI���K��=;�Q�����ͩ>��P@<S�?�,��Ÿ��@��^�`�ຉ��@���<{������L����(�����7��B��a��3��P\�$�a�s�d�We'�G��8������
῿�c�n��^�����
�'�Bdj��M���[w��[�G5�Əd��3������zO���	�]�����fKeyAttrFlagsi!KfKeyAttrDataFloatf

xfKeyAttrRefCounti�dpAnimationCurveLp�[:SAnimCurveS�f	DefaultD��]@�fKeyVerI��k�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���o�
KeyValueFloatf�����@ș�@ީ@�@�ݏ@͏�@"��@څ�@-|@��u@P-t@�p@��o@�j@#e@��e@l
n@��y@)e~@�~@�L{@v@<�m@t�c@�f@tb@��W@��L@Y�K@�>J@I]5@��@���?r��?m6�?W�W>.�>�>Q����߿����;�o�"�5B������)���>�5w�JX�����8`k��N��.�/F!��������*��~ށ�q����o���-/������ڹ����������������<����������=|�LM>��|6�M�A��;��{
��N�������'��������I�߇�����������J���&��W���I������,���;�����h��:��9�^�2�0���D��d)������ʺ
��>�j��*���m���m����e��=�µ�V-������鱮��,��{��^����\/� S*�a���n�������������}������y������m��\+��B��=���я��� ����R���C���U��X�o�7�
	������BU"���>������������ �������$	�JO
�$v��������vZ���9���F���b��e_�Y�>�Ӯ�+Z�l57�駦��p��<������5}�����Dn��Q­����	��Tݟ����8�H��@�w\��K
�y��tO�]^���e�����c�������������j'������|p���n��S���}���{�������)�
�3�PR�ڙ����7��J�xW���8���O�Jze��<t��}�/z���h��+�����i%��ǃ�W������N��Ժ�-Y��W���o܀�����I������������E���x�������΋�Ex�1���~����������oKeyAttrFlagsi!*pKeyAttrDataFloatf

WpKeyAttrRefCounti��qAnimationCurveL@K\:SAnimCurveS�p	DefaultD �q�<�pKeyVerI��pKeyTimel&q
KeyValueFloatf)�['PqKeyAttrFlagsi!�qKeyAttrDataFloatf

�qKeyAttrRefCounti$sAnimationCurveL`1\:SAnimCurveSr	DefaultD����2rKeyVerI�[rKeyTimel�r
KeyValueFloatf�ǝ��rKeyAttrFlagsi!�rKeyAttrDataFloatf

sKeyAttrRefCounti�tAnimationCurveLpi\:SAnimCurveSzs	DefaultD ܥ�<�sKeyVerI��sKeyTimel�s
KeyValueFloatf�.�%tKeyAttrFlagsi!JtKeyAttrDataFloatf

wtKeyAttrRefCountic~AnimationCurveL�H\:SAnimCurveS�t	DefaultD��{ҿ�tKeyVerI��y�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7���}�
KeyValueFloatf��Uܓ���!�@�U�/�=�8>!�>�<ҥ�Zx����o������u-��� �s�"���ؽ�ꉽ�[
<0��<m�=��>
��>�?�g?�� ?��?]�
?L��>�}>������jt�߽��;��w���4G¾[$���ʿp֗�d���nJ��ĕ�<���"��:p������Y
�b�S���+!��3���0)���:��]x��0G���]�y1
��-������E����2�Q_��x�����EL��Vm�p�±����<���0?��ke��4��� I������5��W��������S�����	�!�S��M������O����º´�	�[�+µT�q~��X���hm���w����F��ZV2���������#�g|x�|\���]������Hh·1���a��������S�����8P�����D[M�����	=^匾r�A���� �XS��iz��X��
���xn����^��X��)��������+������'%��W��K3�ȁ���������n�
���m�f��v���`���L�B�š,�y������9���vM���k�������N�jK�����k���8������;i��������������3����������������^���g?��?x��}Y]�Q�������/�L���X�D���`�-������ �������5�_�C�^e��T�Š

������ ���K��F�������U��nb��0/���
�'`��q���a���pN���v���^u���W�,�G��T�9u�E��V���.t����������w���6�ff�����m��#����>��\�����r��V]�X�T�ZI��oP��\9��9���}KeyAttrFlagsi!)~KeyAttrDataFloatf

V~KeyAttrRefCounti�B�AnimationCurveL /\:SAnimCurveS�~	DefaultD@w�%@�~KeyVerI�ك�KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�􍤇�
KeyValueFloatf���3,Ap�/A�3A^�2A_�3A�2AVn-A02)AD)A�J,A\-AS-A��+Abo+A��%A��(A�'A`(Ay�'A.z*AL�)AO�(A��%A5�!A�%%A�'A�+A0k/A��1A�7Ao<A�4DA��RAbiiA�ÄA4|�A�.�A۵�AEʩA�W�A�͉A_�mA��5A���@��羱+2��h5��
��N���ʆ��lG��^%���ɞ@#�tA�6�A��A��Aߛ�Al4�A�Z�A~��A�?QA��4A�,�@о?q羟�H��\|��"���/���V�'�p�C.@�p?A�:}A���AI�A?J�A�ΩAx<�Ays�A�0AqA��@�$�?��Կ�-��g���rT���Q��Uc��<~��d�S@FLA5�A;`�A��A��A�ГAY:rA��8A��ABA���@ˉ
�BG��_8���?����&A��<��ܖ�>H�@�&FA�MA4�sA��A�ܟA�R�Awq�AњIA��"A?�!A���@��'@	
.�ȎG?m@q�
@n��?D)@���@zFA��A��A|�A�ռA�c�A͠�A'ħA���A��jA�*VAT�A4�@��?�V�?�Q/?�����W��煿~�A=o�@�FA��oAC�A��AџAy��A�1|A��JA��:Ai�A�@n�%?�Da�󉴿Ga�gC;��d���M=dsf@��AG�bA�-zA�
�A"��A'J�A��A��iA�l3A=��@z2�@8�@�^�c"L�={d��|R�{�m��?A�lɃ�7������_��`�$?��w�$����Ŝ�	���GQZ��˅?yy'@�#�?�/S?��>?���?�W@�-@ozU@Ȭ�?9���]��X���YN���	���)�A7���1�]+���1�������Q30������@a�@�M�@3s�@���?-K8�@���@·KeyAttrFlagsi!�KeyAttrDataFloatf

5�KeyAttrRefCounti�!�AnimationCurveL�`\:SAnimCurveS��	DefaultD�T�����KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�􍃑�
KeyValueFloatf�������h�>��??��t?�$�?��?�ް?���?�º?�d�?!�?�?��?}�?��?�8�?�\�?ℳ?�?��?F��?`��?Ơ�?.��?���?>�?>m�?���?@�?��?M��?v��?�J@$^	@��?@��%@2�8@FG@��2@("h@�Ĕ@(��@��@)5�@�݊@��9@�C+@�\�@�"�@G��@���@�b�@l��@˽@T��@�!Ae�A>�A��)A�(A"�'AIA$A�'A��	A��@N�@S��@��@��@�E�@_��@u�Al�AD Aod)A�$ A�GA�+A��
AUuA��A̧AZ�@+��@��@�7�@�ݿ@f��@�r�@5ɪ@%�@���@AP�@�R�@y�@i�@��@��@���@��@���@�@X��@�E�@��@_+�@���@��@�S�@� `@ n@<�l@��G@v�m@g�U@�@�%�?v�@�M@��w@E�@<��@�Ʃ@�v�@�o�@��@;�@���@��@}f]@��@
V�@�?�@�^�@���@s�@4�@�R�@t��@��@_T�@���@T��@��@uo�@'��@	g�@�ۀ@�VB@�!@�h3@ٱ@���?|�c@I��@;m�@���@f��@_��@m��@�?�@ޫ�@�A`A���@��@oC�@��@�'�@}��@|,�@��@�f�@{9�@<:�@昘@�#�@n��@�Ҟ@Lw�@��@]��@�@E�@�p�@{_�@hN@�@s��>
.�����չ?<��+2���v�c��?�\@y-�?!Q@��"@�f@G�@��\@���@m�@1m�@��t@��%@�9@n[:@��@���@��@kj�@0G�@t/�@���@��;?+�2>V^�@-4�@Qx	A��A�>A'�A���@���@q�@� �@HH�@a�@�Y�@��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��[:SAnimCurveSw�	DefaultD��/@��KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��b��
KeyValueFloatf��@-~A�bA%�A�(A��}A/}Aّ{A
�xA��uA�KpAR-kAeAw;`A

]A�1[ATiXAWA�'VA��WApWA�.VA�VA��VAc�VA��VA�VA��VA��WA�ZA9\aA��fA�jAB�pA�zA�4�AD��Aj��A��Al��Al�A��!B��RB%�{B��B���B�g�BJ
�B�mBNK8BSkB��AR��A?��A��
B(�B?�BԠB&Bh�B�L;B��\B�|B&��B!��B�ŠB�|�B��]B�/B4$�A'�A���A�I�Ao�	BD�#B��)B�;B7�B�h�AwB�T)BmgIBV�jBϵ�BQ�B��Bi��B+;kB�<B5	B���A^/�A��ArrB/o%B$'B�B���A��A;�
B�:-BstUBַrBU��BR��Bc��B�HyB~�VB�K'BcI�A[e�AZ��A���ALBBҽ+B#	#B�Bx��A��A�FBm�-B4�UB��pB�ÁB�M�B�
�B�\mB�ZGB7�B�A�A�U�A(?�A1�Bt!B* BH�B���A���A��B�/*Bm"RBoB%$�B��Bb
�B�CnBMB�"B���A��AQ��A� �A
B*(B��!B�3B++BX�BO�B=i>B�gBO�B�B�q�BՉ�BY ~B*NRB�PB̎�A�:�A;4�A7��A��BG�$B��!Bc�B���A��A?B�1B�WB��{B�Y�B��B�ЊBZa{B�RB'�Bz��AЕ�A�k�A���A�B�5B�SEBѬEB��=B��3B��-B�-B�:B��WB��}B�k�B�w�Bc�Bj��Bh��B&T�BrxBWAaB#�SB],IB<�9Br�'B�B�c�A���A���A>?B�aOBV�pBƀBK��B�f�B�|B��pB�]B�}LB�;B��-B�=!B"�&B��KeyAttrFlagsi!ƛKeyAttrDataFloatf

�KeyAttrRefCounti�ߥAnimationCurveL`@\:SAnimCurveSV�	DefaultD���
@n�KeyVerI�v��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7��A��
KeyValueFloatf����l@��=@D@4��?���?��?�=@�@�}@�1	@��@��@��@��@��*@�l#@�s,@�'@
�1@�+@��2@�C@�HZ@�px@�Gz@�y@$�z@�@Bg�@��@��@3Y|@@�]@�XF@��)@q�@�&@֦@P9U@Z�@q�@-��@�׿?!�g���#��Na�#���գ=������@�s���d�)r�?o6�!՚�C�*��\?<�@m�@��K@��?o<1?FI ��2�\`��Z�3���.�5?��Ł�K����$�΢�[K�$\f�Q%��6M��>F3�@ϵ@�5@��X�"�?�b�?����ò����/�<T%�4ڿ�}u�Y������.��[���M��/�k��C��@�@���?�Ƭ�9a>���?�������W@�� a*�v)
�v�:�6���B����������9���l���������m�@3|�>�_���x7@�d@�N?����S-�6L��J��i�Ζ��2A������;��y���X����Y�5�?z�@�kb@��y?� a�K�F?.�u?Ux;?�Z��|Ү�˿�/��B�����ʗ�/,8��v�����v���0������?i�
�>�#��)������6O?�a���E��~������b&�0p��)�h�1E���>�������U���诀�W@�,�@���@��@'����o?���>�);����s���	��{���ۿ,���������b$�Ͱ���@����EQ�����,���,Z���r�:��>����9��d���ە������<�~�翾nÿ�<�;*e�*��������i�LP���_��� ����f	C�e �� �E_��Z��4�����;��̍�G���_���Y ��98�k�KeyAttrFlagsi!��KeyAttrDataFloatf

ҥKeyAttrRefCounti���AnimationCurveL }\:SAnimCurveS5�	DefaultD �a�?M�KeyVerI�U��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�� ��
KeyValueFloatf����?fG�?BN�?	��?^1�?��?a��?,��?�2�?�\�?�?=�?؈�?��?/��?HA�?d��?�Ͷ?��?ׂ�?4R�?�?���?`f�?�q�?
��?e��?���?���?���?�^�?Vx�?*��?<
�?��?-@�|'@$]@�̔@RF�@�)A�q.A��Ac��@9��@�An�BAw0Al&@Kn���ɾ/�{?��@���Ө+�7Z�f�>@���@�D�@�E�@mk@���@v��@�AYn�@G�@'5�?7|}��|�]oӿP�ھ��?#�m=��S�~jd�W���|7@{9�@���@��@�@�Dw@���@a�AWA�Q�@"�`@A.@{<��0�7����)¾R, ��-��
s��^h8�|T@J��@bz9@x�]=�~@�V�@[A�.AhH�@��@/@@6���S �Y5���
��˼����������濿�&@��@��R@oc�����-��@�.TAg?^A�5A���@�m@;�Q?D�c�da�{�
>�]�?M�AV�&@��و�X$n@@'�@���@-m@ފ@��@�A��*A��Ak��@c�-@B��>�̽��
���쿟"��7�Q�	
��)S��]�����?��u@�G@����
̱�\z@�mA�3*A��Av��@��@ƙ@F��=�~/�D4�>f?�}-�Dj��]�M��G���@q>�@_�@Q�@O�I@1>�@��A��7A���@nօ@[)@�݅?A{�;�
D�肙�r�����������Q��:���7������>D�2|�?�>@ʇ*@R7>@��%@���>T[X���ܾ�ْ>:Gǿ���5�������e��c���k��Q���E[@| �@>/�>�A2@�A��AI�@�E�����<ς�c ���п戌�~����F$�J�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL�p\:SAnimCurveS�	DefaultD�)�,�KeyVerI�4��KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�����
KeyValueFloatf����H�EK�рM��M��_N�p�N�^O���N�m�M�7�K���I��G��F�K�E�3�E���D�F�E��uF�OH���I���K��EN�\.Q��.T��OW���Z��W_�QYd���j�xjs�)�|�W���i�����}E��'���͠��������wڏ�
�p�l��g��@%�1A�g�@���?�5]�R��ޡ���-�u�P����@�c�&����t7�`�Q�N|>��c��Ͳ��ޣ�@�-A��@��\@��&?PmL�U
������P���K��n�I����Q�̧,��v��I����������6��Յ�d`�@�CA�YA���@lK?��D�]�������������?J��;T�H��N2����O����}��;T������/�&R�@���@,@EƏ>nT��#վ��&������7�θY��dw���k�E�=��q~�ٞ��SS��z��������7�"�x���@���@���?����f��h��^����#� �(��'�5A�%#S��:����F��k���g��m*���q��"@��	A)@�@w�I@�:�>�<�Eܰ�~N���)�?�&��{>�ڷH����v��Tu��Ρ������z��&m����1�����MsA��A�G�@!L@"�Q�&�J����n������G�aVF�3�V��'���b����������3��8a����?�4���X@�A�&�@� �@�A�=̽Q�"����������".��"��X��ӂ��ۜ?�N���d��b��@���ޅ��u)�������%��b��v��d���J���6����;M���|���!�⤅��Ѱ��B���G���V���XN���#���@�$l�s(��C/��²��#�O�bP?�@̅@$@JSU@�(Ӿ�I�Vř�����D��)�KeyAttrFlagsi!c�KeyAttrDataFloatf

��KeyAttrRefCounti�|�AnimationCurveL@\:SAnimCurveS�	DefaultD�j���KeyVerI���KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7�����
KeyValueFloatf��TS��r91�"����p��Ҕ���6�>�X>d}@>�F>jA�=���=�����`�Q�1eӽ��_�E�;�`�2�%�A�7I@�j �Q�H�G�L�	�G�P�5�����^kR;i[m��	K��f���c��0��=Գ�>X�?�k$<��<�}2��/��8_�rH:�r���b���c��r	��G8?�k�:™>�W�?xC�H���0�Z?�2�}�K ��Eܿj�)��O��{m��1��T����TC�3��?w�y@��@�XW@[�?N�m?-�U?7�g?(��?m{�?�&2?�W�>�R�>�s�E:���z��c�USN��G��xtK���>�{z@J߉@�@;\Q@���>5����r�/�&���� ������-���<9��X������������B���Wɿ�@��l@`��@ؓ�@мw@5)�?ǩc=
x���ڿ�;$�8���'=y�?dD�>���D�s�
s�n�]��3��Fk�A�
@	��@�Z�@�f@�:@��>��L�E�E�*T4>�$$�2���?������� ��dz�co�������<��{����пۣ@wim@o��@��@V�U@i��?z��:dB��k����s�[��{)������*�t���?�����@I��w���0�h�_;��lI@���@�eV@�s�?/	�?��ѿ�'�G#�?�:
@FT��Pb���d������0\�����Q=��Fy���~�����T��?��(@���@�@Q$c@G�"@2Vj��.@�l�@��>A����y}>�Ͱ?Jc@��@C1�?��������-M2?J@�4Y@�P@@bc:@l@
8Y?���\���%��}Mh�A?
�y��?�\�?���k?���`��>,����R��0�?F1�?W�@$�@�B>�����ɿ�������ר�z^��?^���7��D���KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCounti�[�AnimationCurveLp�[:SAnimCurveS��	DefaultD����?��KeyVerI����KeyTimel��x%�qP���_:Tք��#
(��t$�&9' �$*8�p�CIlj8H���YpNq�;��p�b�xNNtb�N$&�N�\2!��{=�|��?S��8��Cг71�5�8��Kn�@�dm�Ұ[Y%��B׮�/R?�T�EyB��u�dU�	
���>���XuOV\���頙���ϻ�6��&䍮��Eڶ�VB���a���dzH�����z9���|�΍�g��^��l�����ﺬP��2�d���B�z�/P��<z.�QX�@��}��<E��G��{���$����`�.y�9����~���󡳻�
�J�
��K�}�!q@]W˲y� �@��~�ڕ�k�I�����%�BMG�������/��A�E���s.�v
�a�I��[�U7ͭʘ@RR��Cnh4'���<��#������f(_�v��/z�4�Ļ����
�Z���?^q��e��Y�LVq{��~:槧���ڠ3P0�Z@ڏ6�B-g��j�!I���=PS�zr�h��֯EG��5�r*-�xd�OY#T�NA��OF(i.��A%S��6��O͇���W�������L՗BcI��=�eKH��h�hy
%�k��k<���_A��}C�,,9��b��!�ۙB�xr���W����X�y�A��%'y�u��6�tCMNHr�u�@kv�W$���9�".��{c�̶���(����H�郐I�zM}qQ�"MV=7}'�1�WM�{��Н������\(Y;�]W���zٖ=P|�:G�OV]j=�R�C�������P����,�t��H� /�����aSC���n�mO�-'���R�>�r�6�V��g�j�**�)d���Is��	*O��Lx���2�a��}HzN�|���Ay�_I�y�:h8YyJ&�cI�qv-��=�↺�8���l�U�B��Ia�3:j�-P�-�#R�m�Nh����5m����� �U�@͜b�$�p�ZY_�
Օ2�*�3sv+�<�;+�Ty�
Y�]��p�?&��vC�Uc4�n�ZM*�������(4zZ�2R�Gs�'D/��x2}
)��b�����rR�x�O7t���%��W�§�w�#?@�H�\��@���'�>�%K"���M����Kh�1e&�gA;�n������o��M�m�3P�$��̌�A���Y�u�H%�w*�����g���NR�����^7#���dfCco�ʓ��?!�=�Eаv[/��"�ד�7����
KeyValueFloatf����?7��?h7�?]�?���?�s�?���?���?ӳ�?��?6�?�6�?��?&ݳ?K��?���?F΢?�˚?�
�?W��?b�l?s[H?;,?���>�
o>�r=<�-����I�x^����¿�S�Q��9���M:���e��0��_���o��P+��K�)�U�tW��@�@D��@���@_A^A;�@/j�@Q�?��>�l�PwI��]��Ll�H���*j��g��G����2'��4��aT@�@AH�Al|:Ag�IA2��@��;��\X�	,�9�!�%߈��ѐ�����Ԛ�./��PF������0��p�����z@��Ƞ@��A�E(A�A�st@c^@+��n����i�D��j'}���u�����;������B����J�4�kl���J@�.-A�xA�A%�@I�(>2������i��S]�0�n�>P� �H�^?X���u��<���#���eb��*�����7Q�?��@�%A���@��b@��6@��m@v�@�Ԝ��W�����v���S��^I��PA��m���a����4m�D� �^�����?/�@ӻA-U1Ar��@m��?R��Qb���k���p��f�
�Q�e[S��j�j���?���ۚ��5U��L:������j�"r�@�bA;C
A�~@^�W@G@qV���>�֟��֞������P��Z`��N���p_��24��M;f����~�=� �g@�6Ah,AI�AI͵@s�e@�UA��������M�.��fn���/��q�L��[��t(�H���\��s`h��V0������Z
�S��_����"U�����9{�����0F�����p�nZ��<,��cB�0Hj�+�����7���i��`S+?�K�@:�fA�
9@=מ���&�k}W�x5Z��WP�~R[��gE��8���KeyAttrFlagsi!!�KeyAttrDataFloatf

N�KeyAttrRefCounti���AnimationCurveL�\:SAnimCurveS��	DefaultD@�����KeyVerI���KeyTimel�
KeyValueFloatf�ϰ�G�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�\:SAnimCurveS�	DefaultD�y@�<)�KeyVerI�R�KeyTimel}�
KeyValueFloatf��'��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti{�AnimationCurveL�[:SAnimCurveSq�	DefaultD���Ѽ��KeyVerI���KeyTimel��
KeyValueFloatfM=���KeyAttrFlagsi!A�KeyAttrDataFloatf

n�KeyAttrRefCounti��#MotionBuilder_SystemLpC�:SKTimeWarpManagerS��Properties70�/PSMoBuTypeNameSKStringSSSBoxR�/PSMoBuSubTypeNameSKStringSSS��BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager�.PSMoBuAttrBlindDataSBlobSSI�
BinaryDataRp��2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp��/MotionBuilder_GenericL�I�:SFaceTime HD Camera (Display)S{�Properties70O�1PSMoBuTypeNameSKStringSSSVideo��3PSMoBuSubTypeNameSKStringSSSLive��UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Video���PS
RecordPathScharptrSSS�C:\Users\bOb\Documents/_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2-FaceTime HD Camera (Display)-VideoRecording.avi��#PSOnlineSboolSSI�)PSResolutionFRSenumSSIO�)PSRecordToFileSboolSSI��(PSRecordAudioSboolSSI��'PS
CompressorSenumSSI��.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineIn�2PSMoBuRelationBlindDataSBlobSSIa�
BinaryDataRpm�0MotionBuilder_GenericL��:SFaceTime HD Camera (Built-in)S`�Properties702�1PSMoBuTypeNameSKStringSSSVideos�3PSMoBuSubTypeNameSKStringSSSLive��VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video���PS
RecordPathScharptrSSS�C:\Users\bOb\Documents/_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2-FaceTime HD Camera (Built-in)-VideoRecording.avi��#PSOnlineSboolSSI��)PSResolutionFRSenumSSI4�)PSRecordToFileSboolSSIj�(PSRecordAudioSboolSSI��'PS
CompressorSenumSSI��.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineIS�2PSMoBuRelationBlindDataSBlobSSIF�
BinaryDataRp��!MotionBuilder_GenericLX-�:SVideo Output 1S��Properties70�1PSMoBuTypeNameSKStringSSSVideoK�5PSMoBuSubTypeNameSKStringSSSOutput��GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video��%PSDrawModeSenumSSIa�.PSMoBuAttrBlindDataSBlobSSI)T�.
BinaryDataR)p	UseMipMapI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��!MotionBuilder_SystemL�)�:SKVideoRendererS��Properties70��2PSMoBuTypeNameSKStringSSSObject��=PSMoBuSubTypeNameSKStringSSSKVideoRenderer&�@PSMoBuObjectFullNameSKStringSSSKVideoRenderer3�.PSMoBuAttrBlindDataSBlobSSI�&��
BinaryDataR�p�
RendererTools4VersionIgP	StartTimeS0kStopTimeS0�StepTimeS1�OutputFormatSAVI�
OutputPathSc:\temp\Output.avi�FormatSFrom Camera	FieldModeI,QualityIORendererAntialingIk
ModelsOnlyI�ViewingModeI�StereoDisplayModeI
�RenderAudioI�AudioFormatI ShowCameraLabelI$ShowTimeCodeIBShowSafeAreaIeGlobalViewingModeI�GlobalStereoDisplayModeI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRpH�!MotionBuilder_SystemL�|�:SKSerialManagerS;�Properties70g�:PSMoBuTypeNameSKStringSSSKSerialManager��/PSMoBuSubTypeNameSKStringSSS��@PSMoBuObjectFullNameSKStringSSSKSerialManager��.PSMoBuAttrBlindDataSBlobSSI`��e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI.�2PSMoBuRelationBlindDataSBlobSSI!�
BinaryDataRp��#MotionBuilder_SystemL�b�:SKCharacterHelperS��Properties70��0PSMoBuTypeNameSKStringSSSTool)�8PSMoBuSubTypeNameSKStringSSS	Charactery�BPSMoBuObjectFullNameSKStringSSSKCharacterHelper��.PSMoBuAttrBlindDataSBlobSSI��
BinaryDataRp��2PSMoBuRelationBlindDataSBlobSSID��I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEIA�MotionBuilder_SystemL�m�:SKNLEManagerS4�Properties70P�7PSMoBuTypeNameSKStringSSSKNLEManager��/PSMoBuSubTypeNameSKStringSSS��=PSMoBuObjectFullNameSKStringSSSKNLEManager��.PSMoBuAttrBlindDataSBlobSSIs��x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5'�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp��MotionBuilder_SystemLho�:SConstraintsS��Properties70��2PSMoBuTypeNameSKStringSSSFolder�7PSMoBuSubTypeNameSKStringSSSCategoryq�EPSMoBuObjectFullNameSKStringSSSConstraintsFolder�.PSMoBuAttrBlindDataSBlobSSI5��:
BinaryDataR5p(
FolderTypeSConstraints��2PSMoBuRelationBlindDataSBlobSSIu�
BinaryDataRp�� MotionBuilder_SystemL��:S
KAudioManagerS��Properties70=�9PSMoBuTypeNameSKStringSSS
KAudioManagerz�/PSMoBuSubTypeNameSKStringSSS��?PSMoBuObjectFullNameSKStringSSS
KAudioManager@�.PSMoBuAttrBlindDataSBlobSSI3�
BinaryDataRp�
AudioInputHNameSMicrophone (Display Audio)`FormatI xOnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD�
AudioInputK.NameS)Microphone (Cirrus Logic CS4206A (AB 29))cFormatI {OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD
AudioInputZ:NameS5Digital Audio (S/PDIF) (Cirrus Logic CS4206A (AB 29))rFormatI �OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp4�(MotionBuilder_SystemLX��:SKMotionTriggerManagerS'�Properties70��APSMoBuTypeNameSKStringSSSKMotionTriggerManager��/PSMoBuSubTypeNameSKStringSSS�GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager��.PSMoBuAttrBlindDataSBlobSSI*��/
BinaryDataR*p
KEEPACTIVEI�2PSMoBuRelationBlindDataSBlobSSI
�
BinaryDataRp�MotionBuilder_SystemL��:S
Story rootS�Properties70��5PSMoBuTypeNameSKStringSSS	TimelineX�/PSMoBuSubTypeNameSKStringSSS_�FPSMoBuObjectFullNameSKStringSSSStory rootTimeline��"PSMutedSboolSSI��#PSSoloedSboolSSI��.PSRecordClipPathScharptrSSS*� PSTracksSobjectSS[�#PS	TimelinesSobjectSS��2PSQuaternionInterpolateSboolSSI��JPSRotationOffsetSColorRGBSColorSDDDJ�IPS
RotationPivotSColorRGBSColorSDDD��IPS
ScalingOffsetSColorRGBSColorSDDD��HPSScalingPivotSColorRGBSColorSDDD3�.PSTranslationActiveSboolSSI��JPSTranslationMinSColorRGBSColorSDDD��JPSTranslationMaxSColorRGBSColorSDDD�,PSTranslationMinXSboolSSIW�,PSTranslationMinYSboolSSI��,PSTranslationMinZSboolSSI��,PSTranslationMaxXSboolSSI,PSTranslationMaxYSboolSSI?,PSTranslationMaxZSboolSSIw*PS
RotationOrderSenumSSI�6PSRotationSpaceForLimitOnlySboolSSI;PSRotationStiffnessXSdoubleSNumberSDM;PSRotationStiffnessYSdoubleSNumberSD�;PSRotationStiffnessZSdoubleSNumberSD�0PSAxisLenSdoubleSNumberSD$@)GPSPreRotationSColorRGBSColorSDDDHPSPostRotationSColorRGBSColorSDDD�+PSRotationActiveSboolSSI
GPSRotationMinSColorRGBSColorSDDDbGPSRotationMaxSColorRGBSColorSDDD�)PSRotationMinXSboolSSI�)PSRotationMinYSboolSSI)PSRotationMinZSboolSSI>)PSRotationMaxXSboolSSIu)PSRotationMaxYSboolSSI�)PSRotationMaxZSboolSSI�(PSInheritTypeSenumSSI*PS
ScalingActiveSboolSSInFPS
ScalingMinSColorRGBSColorSDDD�FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�(PSScalingMinXSboolSSI.(PSScalingMinYSboolSSId(PSScalingMinZSboolSSI�(PSScalingMaxXSboolSSI�(PSScalingMaxYSboolSSI(PSScalingMaxZSboolSSIdPPSGeometricTranslationSColorRGBSColorSDDD�MPSGeometricRotationSColorRGBSColorSDDDLPSGeometricScalingSColorRGBSColorSD�?D�?D�?]6PS
MinDampRangeXSdoubleSNumberSD�6PS
MinDampRangeYSdoubleSNumberSD�6PS
MinDampRangeZSdoubleSNumberSD)	6PS
MaxDampRangeXSdoubleSNumberSDm	6PS
MaxDampRangeYSdoubleSNumberSD�	6PS
MaxDampRangeZSdoubleSNumberSD�	9PSMinDampStrengthXSdoubleSNumberSD?
9PSMinDampStrengthYSdoubleSNumberSD�
9PSMinDampStrengthZSdoubleSNumberSD�
9PSMaxDampStrengthXSdoubleSNumberSD9PSMaxDampStrengthYSdoubleSNumberSD[9PSMaxDampStrengthZSdoubleSNumberSD�7PSPreferedAngleXSdoubleSNumberSD�7PSPreferedAngleYSdoubleSNumberSD*7PSPreferedAngleZSdoubleSNumberSDY!PSShowSboolSSI�8PSNegativePercentShapeSupportSboolSSI�KPSLcl TranslationSColorRGBSColorSDDDN
HPSLcl RotationSColorRGBSColorSDDD�
GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�
3PS
VisibilitySdoubleSNumberSD�?.PSMoBuAttrBlindDataSBlobSSI��
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp*%MotionBuilder_SystemLPn�:S	Edit rootS%Properties70I5PSMoBuTypeNameSKStringSSS	TimelineX�/PSMoBuSubTypeNameSKStringSSS�EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline	"PSMutedSboolSSI:#PSSoloedSboolSSIv.PSRecordClipPathScharptrSSS� PSTracksSobjectSS�#PS	TimelinesSobjectSS2PSQuaternionInterpolateSboolSSImJPSRotationOffsetSColorRGBSColorSDDD�IPS
RotationPivotSColorRGBSColorSDDDIPS
ScalingOffsetSColorRGBSColorSDDDqHPSScalingPivotSColorRGBSColorSDDD�.PSTranslationActiveSboolSSIJPSTranslationMinSColorRGBSColorSDDD]JPSTranslationMaxSColorRGBSColorSDDD�,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI,PSTranslationMinZSboolSSIE,PSTranslationMaxXSboolSSI,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSI56PSRotationSpaceForLimitOnlySboolSSI~;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD;PSRotationStiffnessZSdoubleSNumberSDN0PSAxisLenSdoubleSNumberSD$@�GPSPreRotationSColorRGBSColorSDDD�HPSPostRotationSColorRGBSColorSDDD2+PSRotationActiveSboolSSI�GPSRotationMinSColorRGBSColorSDDD�GPSRotationMaxSColorRGBSColorSDDD)PSRotationMinXSboolSSIJ)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI&)PSRotationMaxZSboolSSI\(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSI�FPS
ScalingMinSColorRGBSColorSDDD<FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?r(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI(PSScalingMaxXSboolSSIJ(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSI�PPSGeometricTranslationSColorRGBSColorSDDD9MPSGeometricRotationSColorRGBSColorSDDD�LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD6PS
MinDampRangeYSdoubleSNumberSD_6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD+6PS
MaxDampRangeZSdoubleSNumberSDr9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD 9PSMinDampStrengthZSdoubleSNumberSDG 9PSMaxDampStrengthXSdoubleSNumberSD� 9PSMaxDampStrengthYSdoubleSNumberSD� 9PSMaxDampStrengthZSdoubleSNumberSD!7PSPreferedAngleXSdoubleSNumberSD_!7PSPreferedAngleYSdoubleSNumberSD�!7PSPreferedAngleZSdoubleSNumberSD�!!PSShowSboolSSI"8PSNegativePercentShapeSupportSboolSSIr"KPSLcl TranslationSColorRGBSColorSDDD�"HPSLcl RotationSColorRGBSColorSDDD#GPSLcl ScalingSColorRGBSColorSD�?D�?D�?^#3PS
VisibilitySdoubleSNumberSD�?�$.PSMoBuAttrBlindDataSBlobSSI��$�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI%2PSMoBuRelationBlindDataSBlobSSI%
BinaryDataRpB($MotionBuilder_SystemL���:SKTimelineXManagerS5(Properties70�%=PSMoBuTypeNameSKStringSSSKTimelineXManager&/PSMoBuSubTypeNameSKStringSSSa&CPSMoBuObjectFullNameSKStringSSSKTimelineXManager�'.PSMoBuAttrBlindDataSBlobSSI��'�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5((2PSMoBuRelationBlindDataSBlobSSI(
BinaryDataRp�*MotionBuilder_SystemL�H�:SPosesS~*Properties70�(2PSMoBuTypeNameSKStringSSSFolder)7PSMoBuSubTypeNameSKStringSSSCategoryf)?PSMoBuObjectFullNameSKStringSSS
PosesFolder�).PSMoBuAttrBlindDataSBlobSSI/�)4
BinaryDataR/p"

FolderTypeSPosesq*2PSMoBuRelationBlindDataSBlobSSId*
BinaryDataRp�,MotionBuilder_SystemL��:STakesS�,Properties70+2PSMoBuTypeNameSKStringSSSFolderb+7PSMoBuSubTypeNameSKStringSSSCategory�+?PSMoBuObjectFullNameSKStringSSS
TakesFolderC,.PSMoBuAttrBlindDataSBlobSSI/6,4
BinaryDataR/p"

FolderTypeSTakes�,2PSMoBuRelationBlindDataSBlobSSI�,
BinaryDataRp�0MotionBuilder_SystemLx��:SGlobal LightS�0Properties70t-9PSMoBuTypeNameSKStringSSS
GlobalShading�-4PSMoBuSubTypeNameSKStringSSSLight.>PSMoBuObjectFullNameSKStringSSSGlobal LightR.BPS
Ambient ColorSColorSSAD����?D����?D����?�.>PS	Fog ColorSColorSSAD�?D�?D�?�.-PS	Fog BeginSNumberSSAD@33�?/+PSFog EndSNumberSSAD@�@O//PSFog DensitySNumberSSAD@�/$PSFogModeSenumSSI�/&PS	FogEnableSboolSSI(0.PSMoBuAttrBlindDataSBlobSSI0
BinaryDataRp�02PSMoBuRelationBlindDataSBlobSSI�0
BinaryDataRp6MotionBuilder_SystemLxy�:SRendererS6Properties70P14PSMoBuTypeNameSKStringSSSRenderer�16PSMoBuSubTypeNameSKStringSSSDefault�1DPSMoBuObjectFullNameSKStringSSSRendererRenderer2+PSFrustumCullingSboolSSIW2*PS
DisplayNormalSboolSSI�2/PSDisplayBoundingBoxSboolSSI�2;PSDisplayHierarchicalBoundingBoxSboolSSI3,PSIDBufferPickingSboolSSIb3=PSIDBufferPickingAlphaSdoubleSNumberSD�?�3,PSIDBufferDisplaySboolSSI�3.PSSelectionOverrideSboolSSI,4FPSSelectionOverrideTransparencySdoubleSNumberSD�?�4RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?�47PSCurrentCallbackIndexSintSIntegerSI����51PSAdvancedMaterialModeSboolSSI�5.PSMoBuAttrBlindDataSBlobSSIv5
BinaryDataRp�52PSMoBuRelationBlindDataSBlobSSI�5
BinaryDataRp�>&MotionBuilder_SystemLp5�:SPython Tool ManagerS�>Properties70�64PSMoBuTypeNameSKStringSSS__FBTool�6/PSMoBuSubTypeNameSKStringSSSF7EPSMoBuObjectFullNameSKStringSSSPython Tool Manager{7'PSCaptionScharptrSSS�7$PSEnabledSboolSSI�7%PSReadOnlySboolSSI8$PSVisibleSboolSSIG8'PSLeftSintSIntegerSI{8&PSTopSintSIntegerSI�8(PSWidthSintSIntegerSI�8)PSHeightSintSIntegerSI 9*PSAnchorsSintSIntegerSIV9(PSSkinContextSenumSSI�9$PSHintScharptrSSS�9)PS	HintMouseScharptrSSS�90PS
HintMouseLeftSintSIntegerSI����::/PSHintMouseTopSintSIntegerSI����y:1PSHintMouseWidthSintSIntegerSI�����:2PSHintMouseHeightSintSIntegerSI�����:1PSHintIsTextCompletionSboolSSI);#PSActiveSboolSSI^;'PS
ActiveControlSobjectSS�;,PSBackgroundBrushSenumSSI�;.PSBorderStyleSintSIntegerSI
<+PSPositionSintSIntegerSIH<-PS
StartWSizeSintSIntegerSI��<-PS
StartHSizeSintSIntegerSI��<+PSMaxWSizeSintSIntegerSI�����<+PSMaxHSizeSintSIntegerSI����.=+PSMinWSizeSintSIntegerSI�g=+PSMinHSizeSintSIntegerSI�����=,PS	StartXPosSintSIntegerSI�����=,PS	StartYPosSintSIntegerSI����N>.PSMoBuAttrBlindDataSBlobSSIA>
BinaryDataRp�>2PSMoBuRelationBlindDataSBlobSSI�>
BinaryDataRp�G(MotionBuilder_SystemL��:SBatch Tool (scripted)S�GProperties70�?4PSMoBuTypeNameSKStringSSS__FBTool�?/PSMoBuSubTypeNameSKStringSSS@GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)J@'PSCaptionScharptrSSS|@$PSEnabledSboolSSI�@%PSReadOnlySboolSSI�@$PSVisibleSboolSSIA'PSLeftSintSIntegerSIJA&PSTopSintSIntegerSI�A(PSWidthSintSIntegerSI�A)PSHeightSintSIntegerSI�A*PSAnchorsSintSIntegerSI%B(PSSkinContextSenumSSIWB$PSHintScharptrSSS�B)PS	HintMouseScharptrSSS�B0PS
HintMouseLeftSintSIntegerSI����	C/PSHintMouseTopSintSIntegerSI����HC1PSHintMouseWidthSintSIntegerSI�����C2PSHintMouseHeightSintSIntegerSI�����C1PSHintIsTextCompletionSboolSSI�C#PSActiveSboolSSI-D'PS
ActiveControlSobjectSSgD,PSBackgroundBrushSenumSSI�D.PSBorderStyleSintSIntegerSI�D+PSPositionSintSIntegerSIE-PS
StartWSizeSintSIntegerSIRE-PS
StartHSizeSintSIntegerSIm�E+PSMaxWSizeSintSIntegerSI�����E+PSMaxHSizeSintSIntegerSI�����E+PSMinWSizeSintSIntegerSI�6F+PSMinHSizeSintSIntegerSI����pF,PS	StartXPosSintSIntegerSI�����F,PS	StartYPosSintSIntegerSI����G.PSMoBuAttrBlindDataSBlobSSIG
BinaryDataRp�G2PSMoBuRelationBlindDataSBlobSSI�G
BinaryDataRp�P3MotionBuilder_SystemL��:S Character Selection/Key ControlsS�PProperties70]H4PSMoBuTypeNameSKStringSSS__FBTool�H/PSMoBuSubTypeNameSKStringSSS�HRPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls/I'PSCaptionScharptrSSSaI$PSEnabledSboolSSI�I%PSReadOnlySboolSSI�I$PSVisibleSboolSSI�I'PSLeftSintSIntegerSI/J&PSTopSintSIntegerSIeJ(PSWidthSintSIntegerSI�J)PSHeightSintSIntegerSI�J*PSAnchorsSintSIntegerSI
K(PSSkinContextSenumSSI<K$PSHintScharptrSSSsK)PS	HintMouseScharptrSSS�K0PS
HintMouseLeftSintSIntegerSI�����K/PSHintMouseTopSintSIntegerSI����-L1PSHintMouseWidthSintSIntegerSI����mL2PSHintMouseHeightSintSIntegerSI�����L1PSHintIsTextCompletionSboolSSI�L#PSActiveSboolSSIM'PS
ActiveControlSobjectSSLM,PSBackgroundBrushSenumSSI�M.PSBorderStyleSintSIntegerSI�M+PSPositionSintSIntegerSI�M-PS
StartWSizeSintSIntegerSI�7N-PS
StartHSizeSintSIntegerSIxpN+PSMaxWSizeSintSIntegerSI�����N+PSMaxHSizeSintSIntegerSI�����N+PSMinWSizeSintSIntegerSI�O+PSMinHSizeSintSIntegerSI����UO,PS	StartXPosSintSIntegerSI�����O,PS	StartYPosSintSIntegerSI����P.PSMoBuAttrBlindDataSBlobSSI�O
BinaryDataRpyP2PSMoBuRelationBlindDataSBlobSSIlP
BinaryDataRpLYMotionBuilder_SystemLp<�:S
FBX ExportS?YProperties70,Q4PSMoBuTypeNameSKStringSSS__FBTooliQ/PSMoBuSubTypeNameSKStringSSS�Q<PSMoBuObjectFullNameSKStringSSS
FBX Export�Q'PSCaptionScharptrSSSR$PSEnabledSboolSSIMR%PSReadOnlySboolSSIR$PSVisibleSboolSSI�R'PSLeftSintSIntegerSI�R&PSTopSintSIntegerSIS(PSWidthSintSIntegerSIUS)PSHeightSintSIntegerSI�S*PSAnchorsSintSIntegerSI�S(PSSkinContextSenumSSI�S$PSHintScharptrSSS,T)PS	HintMouseScharptrSSSjT0PS
HintMouseLeftSintSIntegerSI�����T/PSHintMouseTopSintSIntegerSI�����T1PSHintMouseWidthSintSIntegerSI����&U2PSHintMouseHeightSintSIntegerSI����eU1PSHintIsTextCompletionSboolSSI�U#PSActiveSboolSSI�U'PS
ActiveControlSobjectSSV,PSBackgroundBrushSenumSSIAV.PSBorderStyleSintSIntegerSIzV+PSPositionSintSIntegerSI�V-PS
StartWSizeSintSIntegerSI^�V-PS
StartHSizeSintSIntegerSI�)W+PSMaxWSizeSintSIntegerSI����bW+PSMaxHSizeSintSIntegerSI�����W+PSMinWSizeSintSIntegerSI��W+PSMinHSizeSintSIntegerSI����X,PS	StartXPosSintSIntegerSI����HX,PS	StartYPosSintSIntegerSI�����X.PSMoBuAttrBlindDataSBlobSSI�X
BinaryDataRp2Y2PSMoBuRelationBlindDataSBlobSSI%Y
BinaryDataRp,� MotionBuilder_SystemL@�:S
HierarchyViewS�Properties70�Y;PSMoBuTypeNameSKStringSSSKtHierarchyView,Z/PSMoBuSubTypeNameSKStringSSSyZ?PSMoBuObjectFullNameSKStringSSS
HierarchyView��.PSMoBuAttrBlindDataSBlobSSI�&���&
BinaryDataR�&p�&
HierarchyView5ShowGridI�&ObjectsAttributes�NameSReferenceModel�	XDO@�	YD�p@�ExpandedIENameSPivotModel	XDO@	YD�s@8ExpandedI�NameSRootModel}	XDO@�	YD�v@�ExpandedI1NameSHipsModel�	XDO@
	YDz@$ExpandedI�NameSSpineModelj	XD�u��	YD }@�ExpandedINameSChestModel�	XD@x��	YD �@ExpandedI�NameSNeckModelW	XDd��n	YD��@�ExpandedINameSHeadModel�	XD����	YD@�@�ExpandedI�NameSLeftEyeModelF	XD��]	YDP�@wExpandedI�NameSRightEyeModel�	XDl���	YDЄ@�ExpandedIsNameS
JawModel5	XD~��L	YDP�@fExpandedI�NameSTongueBackModel�	XD֧��	YD��@�ExpandedIjNameSTongueTipModel,	XD@��C	YD`�@]ExpandedI�NameSLeftLipLowerModel�	XD����	YD��@�ExpandedI`NameS
JawENDModel"	XD��9	YD`�@SExpandedI�NameSRightLipLowerModel�	XD~���	YD��@�ExpandedI_NameSRightLipCornerModel!	XD��8	YD`�@RExpandedI�NameSLeftLipCornerModel�	XDR���	YD��@�ExpandedI\	NameSLeftLipUpperModel		XD���5		YDЄ@O	ExpandedI�	NameSLeftNostrilModel�		XD����		YDP�@�	ExpandedIT
NameSLeftCheekModel
	XDd��-
	YDЄ@G
ExpandedI�
NameSLeftEyelidLowerModel�
	XD��
	YDP�@�
ExpandedIVNameSLeftEyelidUpperModel	XD8��/	YDЄ@IExpandedI�NameSLeftInnerBrowModel�	XDD���	YDP�@�ExpandedIUNameSLeftIOuterBrowModel	XD��.	YDЄ@HExpandedI�NameSRightInnerBrowModel�	XD���	YDP�@�ExpandedIV
NameSRightIOuterBrowModel
	XD���/
	YDЄ@I
ExpandedI�
NameSRightEyelidUpperModel�
	XD����
	YDP�@�
ExpandedIZNameSRightEyelidLowerModel	XDh��3	YDЄ@MExpandedI�NameSRightCheekModel�	XD<���	YDP�@�ExpandedITNameSRightNostrilModel	XD��-	YDЄ@GExpandedI�NameSRightLipUpperModel�	XD���	YDP�@�ExpandedIRNameSRightShoulderModel	XD�m�+	YD0�@EExpandedI�NameSRightArmModel�	XD@q��	YD��@�ExpandedIJNameSRightForeArmModel	XD�s�#	YDP�@=ExpandedI�NameSRightHandModel�	XD�u��	YD��@�ExpandedIFNameSRightHandPinky1Model	XD���	YDp�@9ExpandedI�NameSRightHandPinky2Model�	XD���	YD�@�ExpandedIHNameSRightHandPinky3Model
	XD���!	YD��@;ExpandedI�NameSRightHandRing1Model�	XD����	YD��@�ExpandedIHNameSRightHandRing2Model
	XD���!	YD��@;ExpandedI�NameSRightHandRing3Model�	XD؇��	YD�@�ExpandedIJNameSRightHandMiddle1Model	XD@x�#	YDp�@=ExpandedI�NameSRightHandMiddle2Model�	XD�z��	YD�@�ExpandedINNameSRightHandMiddle3Model	XD�|�'	YD��@AExpandedI�NameSRightHandIndex1Model�	XDV��	YD��@�ExpandedIPNameSRightHandIndex2Model	XD�_�)	YD��@CExpandedI�NameSRightHandIndex3Model�	XD`d��	YD�@�ExpandedIRNameSRightHandThumb1Model	XD�j@+	YDp�@EExpandedI�NameSRightHandThumb2Model�	XD�e@�	YD�@�ExpandedITNameSRightHandThumb3Model	XD a@-	YD��@GExpandedI�NameSLeftShoulderModel�	XD��@�	YD0�@�ExpandedIKNameSLeftArmModel
	XD��@$	YD��@>ExpandedI�NameSLeftForeArmModel�	XDh�@�	YDP�@�ExpandedIBNameSLeftHandModel	XDЗ@	YD��@5ExpandedI�NameSLeftHandPinky1Model�	XD��@�	YDp�@�ExpandedIBNameSLeftHandPinky2Model	XD��@	YD�@5ExpandedI�NameSLeftHandPinky3Model�	XD`�@�	YD��@�ExpandedIANameSLeftHandRing1Model	XD��@	YD��@4ExpandedI�NameSLeftHandRing2Model�	XD��@�	YD��@�ExpandedI?NameSLeftHandRing3Model	XD`�@	YD�@2ExpandedI�NameSLeftHandMiddle1Model�	XD<�@�	YDp�@�ExpandedIANameSLeftHandMiddle2Model	XD��@	YD�@4ExpandedI�NameSLeftHandMiddle3Model�	XD�@�	YD��@�ExpandedIB NameSLeftHandIndex1Model 	XD�@ 	YD��@5 ExpandedI� NameSLeftHandIndex2Model� 	XDT�@� 	YD��@� ExpandedIB!NameSLeftHandIndex3Model!	XD��@!	YD�@5!ExpandedI�!NameSLeftHandThumb1Model�!	XDN�@�!	YDp�@�!ExpandedIB"NameSLeftHandThumb2Model"	XD�@"	YD�@5"ExpandedI�"NameSLeftHandThumb3Model�"	XDp�@�"	YD��@�"ExpandedI>#NameSRightUpLegModel#	XDޥ@#	YD ~@1#ExpandedI�#NameSRightLegModelz#	XD��@�#	YD��@�#ExpandedI3$NameSRightFootModel�#	XDH�@$	YD0�@&$ExpandedI�$NameSRightToesModelp$	XD��@�$	YD��@�$ExpandedI)%NameSLeftUpLegModel�$	XDb�@%	YD ~@%ExpandedI�%NameSLeftLegModeld%	XD�@{%	YD��@�%ExpandedI&NameSLeftFootModel�%	XD̨@�%	YD0�@&ExpandedI�&NameSLeftToesModelX&	XD��@o&	YD��@�&ExpandedI�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRpk�MotionBuilder_SystemL(��:S	TransportS^�Properties70��,PSMoBuTypeNameSKStringSSS��/PSMoBuSubTypeNameSKStringSSSB�;PSMoBuObjectFullNameSKStringSSS	Transportw�'PSCaptionScharptrSSS��$PSEnabledSboolSSI܃%PSReadOnlySboolSSI�$PSVisibleSboolSSIC�'PSLeftSintSIntegerSIw�&PSTopSintSIntegerSI��(PSWidthSintSIntegerSI�)PSHeightSintSIntegerSI�*PSAnchorsSintSIntegerSIR�(PSSkinContextSenumSSI��$PSHintScharptrSSS��)PS	HintMouseScharptrSSS��0PS
HintMouseLeftSintSIntegerSI����6�/PSHintMouseTopSintSIntegerSI����u�1PSHintMouseWidthSintSIntegerSI������2PSHintMouseHeightSintSIntegerSI�����1PSHintIsTextCompletionSboolSSI%�#PSActiveSboolSSIZ�'PS
ActiveControlSobjectSS��,PSBackgroundBrushSenumSSIЇ.PSBorderStyleSintSIntegerSI	�+PSPositionSintSIntegerSIڊ.PSMoBuAttrBlindDataSBlobSSIl͊q
BinaryDataRlp_Transport Tool Settings�ZoomBar Settings�>_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2�ZoomWindowModeI�ZoomWindowTimeLLp6��5�Audio Display Settings5AudioDisplayIT
AudioClipNameStAudioTrackNameS�AudioLeftChannelActiveI�AudioRightChannelActiveIRSettings
TimeFormatI!SnapOnFramesIEReferenceTimeIndexI����Q�2PSMoBuRelationBlindDataSBlobSSID�
BinaryDataRp��MotionBuilder_SystemLXl�:SFCurveSu�Properties70��,PSMoBuTypeNameSKStringSSS5�/PSMoBuSubTypeNameSKStringSSS{�8PSMoBuObjectFullNameSKStringSSSFCurve��'PSCaptionScharptrSSS�$PSEnabledSboolSSI�%PSReadOnlySboolSSIG�$PSVisibleSboolSSI|�'PSLeftSintSIntegerSI��&PSTopSintSIntegerSI�(PSWidthSintSIntegerSI�)PSHeightSintSIntegerSIU�*PSAnchorsSintSIntegerSI��(PSSkinContextSenumSSI��$PSHintScharptrSSS�)PS	HintMouseScharptrSSS2�0PS
HintMouseLeftSintSIntegerSI����o�/PSHintMouseTopSintSIntegerSI������1PSHintMouseWidthSintSIntegerSI�����2PSHintMouseHeightSintSIntegerSI����-�1PSHintIsTextCompletionSboolSSI^�#PSActiveSboolSSI��'PS
ActiveControlSobjectSS͐,PSBackgroundBrushSenumSSI	�.PSBorderStyleSintSIntegerSIB�+PSPositionSintSIntegerSI�.PSMoBuAttrBlindDataSBlobSSIJ�O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveIh�2PSMoBuRelationBlindDataSBlobSSI[�
BinaryDataRp��MotionBuilder_GenericL���:S
GlobalInfoS��Properties70�5PSMoBuTypeNameSKStringSSS	SceneInfob�7PSMoBuSubTypeNameSKStringSSSUserData��GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo�.PSMoBuAttrBlindDataSBlobSSI���
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS��2PSMoBuRelationBlindDataSBlobSSI}�
BinaryDataRp3�Connections�CSOOL�F�:L�CSOOL`�;L�v)>�CSOOL �;L.v)e�CSOOLX�;L)v)��CSOOLh�;L$v)��CSOOLp�;L�v)ڗCSOOLx�;L�v)�CSOOL��;LHQv)(�CSOOL�G�:L�A�:O�CSOOL�6�:L���9v�CSOOL���:L���9��CSOOL`��:L���9ĘCSOOL�…:L���9�CSOOL�s�:L���9�CSOOL���:L���99�CSOOL�:L���9`�CSOOL��:L���9��CSOOL��:L���9��CSOOL�х:L���9ՙCSOOL�o�:L���9��CSOOL�Dž:L���9#�CSOOL��:L���9J�CSOOLؽ�:L���9q�CSOOL@څ:L���9��CSOOL���:L���9��CSOOL���:L���9�CSOOL��:L���9
�CSOOLx��:L���94�CSOOL���:L���9[�CSOOLh��:L���9��CSOOL0��:L���9��CSOOL0{�:L���9ЛCSOOLȔ�:L���9��CSOOLH	�:L���9�CSOOLXM�:L���9E�CSOOLpY�:L���9l�CSOOL��e:L���9��CSOOL�nf:L���9��CSOOL�if:L���9�CSOOL�df:L���9�CSOOL�`f:L���9/�CSOOL�[f:L���9V�CSOOL�Vf:L���9}�CSOOL�Rf:L���9��CSOOL�Mf:L���9˝CSOOLpHf:L���9�CSOOL�Df:L���9�CSOOLp?f:L���9@�CSOOL`:f:L���9g�CSOOLp6f:L���9��CSOOL`1f:L���9��CSOOLP,f:L���9ܞCSOOL`(f:L���9�CSOOLP#f:L���9*�CSOOL@f:L���9Q�CSOOLPf:L���9x�CSOOL@f:L���9��CSOOL8~e:L���9ƟCSOOL��e:L���9�CSOOLЎe:L���9�CSOOL��e:L���9;�CSOOL`�e:L���9b�CSOOL8�e:L���9��CSOOL�e:L���9��CSOOL�e:L���9נCSOOL��e:L���9��CSOOL��e:L���9%�CSOOLp�e:L���9L�CSOOLH�e:L���9s�CSOOL �e:L���9��CSOOL��e:L���9��CSOOL�f:L���9�CSOOL�ve:L���9�CSOOL�f:L���96�CSOOL(�e:L���9]�CSOOL��e:L���9��CSOOL�f:L���9��CSOOL�f:L���9ҢCSOOL�f:L���9��CSOOL nf:L���9 �CSOOL�gf:L���9G�CSOOL`f:L���9n�CSOOL�Yf:L���9��CSOOLRf:L���9��CSOOL�Kf:L���9�CSOOLXA�:L�F�:
�CSOOL�K�:L�F�:1�CSOOL��:L�K�:X�CSOOL�P�:L�K�:�CSOOLX�:L�P�:��CSOOL�U�:L�P�:ͤCSOOL���:L�U�:��CSOOL[�:L�U�:�CSOOL�•:L�U�:B�CSOOL:L�U�:}�-CSOPL�6�:L�U�:SLcl Translation��*CSOPL���:L�U�:SLcl RotationܥCSOOLXi�:L[�:�CSOOL`�:L[�:;�*CSOPL`��:L[�:SLcl Rotationb�CSOOL�:L`�:��CSOOLe�:L`�:��CSOOL`�:L`�:צCSOOL�d�9L`�:�*CSOPL�…:L`�:SLcl Rotation6�CSOOL��:Le�:]�CSOOLj�:Le�:��*CSOPL�s�:Le�:SLcl Rotation��CSOOLX�:Lj�:�CSOOL o�:Lj�:
�CSOOL(t�:Lj�:1�CSOOL0y�:Lj�:X�CSOOL?�:Lj�:�CSOOLD�:Lj�:��CSOOLI�:Lj�:ͨCSOOL N�:Lj�:��CSOOL(S�:Lj�:�CSOOLi:Lj�:B�CSOOL n:Lj�:i�CSOOL(s:Lj�:��CSOOL0x:Lj�:��CSOOL8}:Lj�:ީCSOOL@�:Lj�:�CSOOLH�:Lj�:,�CSOOLP�:Lj�:S�CSOOLX�:Lj�:��*CSOPL���:Lj�:SLcl Rotation��CSOOL�
�:L o�:�*CSOPL�:L o�:SLcl Rotation�CSOOL��:L(t�:I�*CSOPL��:L(t�:SLcl Rotationp�CSOOL��:L0y�:��CSOOL��:L0y�:��CSOOL� �:L0y�:�CSOOL�%�:L0y�:�CSOOL�*�:L0y�:3�CSOOL�/�:L0y�:Z�CSOOL�4�:L0y�:��CSOOL:�:L0y�:��*CSOPL��:L0y�:SLcl Rotation�CSOOL��:L��:�*CSOPL�х:L��:SLcl Rotation?�CSOOL��:L� �:w�*CSOPL�o�:L� �:SLcl Rotation��CSOOLX��:L�%�:֭*CSOPL�Dž:L�%�:SLcl Rotation��CSOOL��:L�*�:5�*CSOPL��:L�*�:SLcl Rotation\�CSOOL�
�:L�/�:��*CSOPLؽ�:L�/�:SLcl Rotation��CSOOL���:L�4�:�*CSOPL@څ:L�4�:SLcl Rotation�CSOOL��:L:�:R�*CSOPL���:L:�:SLcl Rotationy�CSOOLX@�:L?�:��*CSOPL���:L?�:SLcl RotationدCSOOL-�:LD�:�*CSOPL��:LD�:SLcl Rotation7�CSOOLX�:LI�:o�*CSOPLx��:LI�:SLcl Rotation��CSOOL.�:L N�:ΰ*CSOPL���:L N�:SLcl Rotation��CSOOL�-�:L(S�:-�*CSOPLh��:L(S�:SLcl RotationT�CSOOLؒ�:Li:��*CSOPL0��:Li:SLcl Rotation��CSOOL���:L n:�*CSOPL0{�:L n:SLcl Rotation�CSOOLF�:L(s:J�*CSOPLȔ�:L(s:SLcl Rotationq�CSOOLE�:L0x:��*CSOPLH	�:L0x:SLcl RotationвCSOOLXU�:L8}:�*CSOPLXM�:L8}:SLcl Rotation/�CSOOL��:L@�:g�*CSOPLpY�:L@�:SLcl Rotation��CSOOLؓ�:LH�:Ƴ*CSOPL��e:LH�:SLcl Rotation�CSOOLؑ�:LP�:%�*CSOPL�nf:LP�:SLcl RotationL�CSOOL��:LX�:��*CSOPL�if:LX�:SLcl Rotation��CSOOL���:L`�:ҴCSOOLh�:L`�:
�*CSOPL�df:L`�:SLcl Rotation1�CSOOLؕ�:Lh�:X�CSOOLp�:Lh�:��*CSOPL�`f:Lh�:SLcl Rotation��CSOOL�?�:Lp�:޵CSOOL��:Lp�:�*CSOPL�[f:Lp�:SLcl Rotation=�CSOOLX�:L��:d�CSOOL��:L��:��CSOOL��:L��:��CSOOL%�:L��:ٶCSOOL(4�:L��:�CSOOL�U�9L��:8�*CSOPL�Vf:L��:SLcl Rotation_�CSOOL���:L��:��CSOOL��:L��:��*CSOPL�Rf:L��:SLcl Rotation�CSOOLآ�:L��:�CSOOL��:L��:D�*CSOPL�Mf:L��:SLcl Rotationk�CSOOL���:L��:��*CSOPLpHf:L��:SLcl RotationʸCSOOLX��:L��:�CSOOL�:L��:)�*CSOPL�Df:L��:SLcl RotationP�CSOOL��:L�:w�CSOOL �:L�:��*CSOPLp?f:L�:SLcl RotationֹCSOOL��:L �:�*CSOPL`:f:L �:SLcl Rotation5�CSOOL�|�:L%�:\�CSOOL*�:L%�:��*CSOPLp6f:L%�:SLcl Rotation��CSOOLX��:L*�:�CSOOL /�:L*�:�*CSOPL`1f:L*�:SLcl RotationA�CSOOLء�:L /�:y�*CSOPLP,f:L /�:SLcl Rotation��CSOOL���:L(4�:ǻCSOOL09�:L(4�:��*CSOPL`(f:L(4�:SLcl Rotation&�CSOOL���:L09�:M�CSOOL�P�9L09�:��*CSOPLP#f:L09�:SLcl Rotation��CSOOLX��:L�P�9�*CSOPL@f:L�P�9SLcl Rotation�CSOOLع�:L�U�92�CSOOL�Z�9L�U�9j�*CSOPLPf:L�U�9SLcl Rotation��CSOOLX��:L�Z�9��CSOOL�_�9L�Z�9�*CSOPL@f:L�Z�9SLcl Rotation�CSOOLغ�:L�_�9O�*CSOPL8~e:L�_�9SLcl Rotationv�CSOOL���:L�d�9��CSOOL�i�9L�d�9վ*CSOPL��e:L�d�9SLcl Rotation��CSOOL���:L�i�9#�CSOOLo�9L�i�9[�*CSOPLЎe:L�i�9SLcl Rotation��CSOOLX��:Lo�9��CSOOLt�9Lo�9�*CSOPL��e:Lo�9SLcl Rotation�CSOOL���:Lt�9/�CSOOLy�9Lt�9V�CSOOL(��9Lt�9}�CSOOL���:Lt�9��CSOOL���:Lt�9��CSOOL���:Lt�9�*CSOPL`�e:Lt�9SLcl Rotation*�CSOOLj�:Ly�9Q�CSOOL~�9Ly�9��*CSOPL8�e:Ly�9SLcl Rotation��CSOOLX��:L~�9��CSOOL ��9L~�9�*CSOPL�e:L~�9SLcl Rotation6�CSOOL���:L ��9n�*CSOPL�e:L ��9SLcl Rotation��CSOOL��:L(��9��CSOOL���:L(��9��*CSOPL��e:L(��9SLcl Rotation�CSOOL��:L���:B�CSOOL���:L���:z�*CSOPL��e:L���:SLcl Rotation��CSOOLX��:L���:��*CSOPLp�e:L���:SLcl Rotation�CSOOLؽ�:L���:'�CSOOL���:L���:_�*CSOPLH�e:L���:SLcl Rotation��CSOOL���:L���:��CSOOL���:L���:��*CSOPL �e:L���:SLcl Rotation�CSOOL��:L���:D�*CSOPL��e:L���:SLcl Rotationk�CSOOLX��:L���:��CSOOL���:L���:��*CSOPL�f:L���:SLcl Rotation��CSOOL��:L���:�CSOOL���:L���:P�*CSOPL�ve:L���:SLcl Rotationw�CSOOLؿ�:L���:��*CSOPL�f:L���:SLcl Rotation��CSOOLX��:L���:��CSOOLȸ�:L���:5�*CSOPL(�e:L���:SLcl Rotation\�CSOOLX��:Lȸ�:��CSOOLн�:Lȸ�:��*CSOPL��e:Lȸ�:SLcl Rotation��CSOOL���:Lн�:�*CSOPL�f:Lн�:SLcl RotationA�CSOOLX��:L�•:h�CSOOL�:L�•:��*CSOPL�f:L�•:SLcl Rotation��CSOOL��:L�:��CSOOL:L�:&�*CSOPL�f:L�:SLcl RotationM�CSOOL���:L:t�CSOOL:L:��*CSOPL nf:L:SLcl Rotation��CSOOL���:L:�*CSOPL�gf:L:SLcl Rotation2�CSOOL��:L:Y�CSOOL:L:��*CSOPL`f:L:SLcl Rotation��CSOOL���:L:��CSOOL ":L:�*CSOPL�Yf:L:SLcl Rotation>�CSOOL���:L ":e�CSOOL(':L ":��*CSOPLRf:L ":SLcl Rotation��CSOOL���:L(':��*CSOPL�Kf:L(':SLcl Rotation#�CSOOL���9L�:J�CSOOL��9L�:y�!CSOPL �[:L�6�:Sd|X��!CSOPL \:L�6�:Sd|Y��!CSOPLo\:L�6�:Sd|Z�!CSOPL�\:L���:Sd|X5�!CSOPLp`\:L���:Sd|Yd�!CSOPL�>\:L���:Sd|Z��!CSOPL@c\:L`��:Sd|X��!CSOPL��[:L`��:Sd|Y��!CSOPLPA\:L`��:Sd|Z �!CSOPL��[:L�…:Sd|XO�!CSOPL�[:L�…:Sd|Y~�!CSOPL\:L�…:Sd|Z��!CSOPL�[:L�s�:Sd|X��!CSOPL�\:L�s�:Sd|Y�!CSOPLЬ[:L�s�:Sd|Z:�!CSOPLp�[:L���:Sd|Xi�!CSOPLp0\:L���:Sd|Y��!CSOPL@�[:L���:Sd|Z��!CSOPL�[:L�:Sd|X��!CSOPL�a\:L�:Sd|Y%�!CSOPL�\:L�:Sd|ZT�!CSOPL@\:L��:Sd|X��!CSOPL�!\:L��:Sd|Y��!CSOPL��[:L��:Sd|Z��!CSOPLP\:L��:Sd|X�!CSOPLa\:L��:Sd|Y?�!CSOPL�[:L��:Sd|Zn�!CSOPL��[:L�х:Sd|X��!CSOPL�\:L�х:Sd|Y��!CSOPL�\:L�х:Sd|Z��!CSOPL��[:L�o�:Sd|X*�!CSOPL�8\:L�o�:Sd|YY�!CSOPL�/\:L�o�:Sd|Z��!CSOPL��[:L�Dž:Sd|X��!CSOPL�[:L�Dž:Sd|Y��!CSOPLЗ[:L�Dž:Sd|Z�!CSOPL��[:L��:Sd|XD�!CSOPL`�[:L��:Sd|Ys�!CSOPL`=\:L��:Sd|Z��!CSOPLi\:Lؽ�:Sd|X��!CSOPL�[:Lؽ�:Sd|Y�!CSOPL �[:Lؽ�:Sd|Z/�!CSOPL�f\:L@څ:Sd|X^�!CSOPL��[:L@څ:Sd|Y��!CSOPL )\:L@څ:Sd|Z��!CSOPL0�[:L���:Sd|X��!CSOPL��[:L���:Sd|Y�!CSOPL�|\:L���:Sd|ZI�!CSOPLpB\:L���:Sd|Xx�!CSOPL ,\:L���:Sd|Y��!CSOPL�O\:L���:Sd|Z��!CSOPL�}\:L��:Sd|X�!CSOPL`�[:L��:Sd|Y4�!CSOPL�[:L��:Sd|Zc�!CSOPL��[:Lx��:Sd|X��!CSOPL�"\:Lx��:Sd|Y��!CSOPL��[:Lx��:Sd|Z��!CSOPL`m\:L���:Sd|X�!CSOPL��[:L���:Sd|YN�!CSOPL�*\:L���:Sd|Z}�!CSOPL�[\:Lh��:Sd|X��!CSOPL �[:Lh��:Sd|Y��!CSOPL �[:Lh��:Sd|Z
�!CSOPL�-\:L0��:Sd|X9�!CSOPL@�[:L0��:Sd|Yh�!CSOPL �[:L0��:Sd|Z��!CSOPL�6\:L0{�:Sd|X��!CSOPL�[:L0{�:Sd|Y��!CSOPLp�[:L0{�:Sd|Z$�!CSOPLК[:LȔ�:Sd|XS�!CSOPL�)\:LȔ�:Sd|Y��!CSOPL &\:LȔ�:Sd|Z��!CSOPL�[:LH	�:Sd|X��!CSOPL�[:LH	�:Sd|Y�!CSOPL��[:LH	�:Sd|Z>�!CSOPL �[:LXM�:Sd|Xm�!CSOPL`�[:LXM�:Sd|Y��!CSOPL�\:LXM�:Sd|Z��!CSOPL�"\:LpY�:Sd|X��!CSOPL��[:LpY�:Sd|Y)�!CSOPL�D\:LpY�:Sd|ZX�!CSOPL�[:L��e:Sd|X��!CSOPL@�[:L��e:Sd|Y��!CSOPLP\:L��e:Sd|Z��!CSOPL�
\:L�nf:Sd|X�!CSOPL`�[:L�nf:Sd|YC�!CSOPL�i\:L�nf:Sd|Zr�!CSOPLPe\:L�if:Sd|X��!CSOPL 5\:L�if:Sd|Y��!CSOPL�[:L�if:Sd|Z��!CSOPL�4\:L�df:Sd|X.�!CSOPL\:L�df:Sd|Y]�!CSOPLp]\:L�df:Sd|Z��!CSOPL`�[:L�`f:Sd|X��!CSOPL�+\:L�`f:Sd|Y��!CSOPL��[:L�`f:Sd|Z�!CSOPL��\:L�[f:Sd|XH�!CSOPL�[:L�[f:Sd|Yw�!CSOPL`U\:L�[f:Sd|Z��!CSOPL�y\:L�Vf:Sd|X��!CSOPLл[:L�Vf:Sd|Y�!CSOPL �[:L�Vf:Sd|Z3�!CSOPL��[:L�Rf:Sd|Xb�!CSOPL �\:L�Rf:Sd|Y��!CSOPL��[:L�Rf:Sd|Z��!CSOPL �[:L�Mf:Sd|X��!CSOPL`�[:L�Mf:Sd|Y�!CSOPL�B\:L�Mf:Sd|ZM�!CSOPL S\:LpHf:Sd|X|�!CSOPL0y\:LpHf:Sd|Y��!CSOPL`F\:LpHf:Sd|Z��!CSOPL��[:L�Df:Sd|X	�!CSOPL��[:L�Df:Sd|Y8�!CSOPL�A\:L�Df:Sd|Zg�!CSOPLP�[:Lp?f:Sd|X��!CSOPL��[:Lp?f:Sd|Y��!CSOPL�[:Lp?f:Sd|Z��!CSOPL��[:L`:f:Sd|X#�!CSOPL0d\:L`:f:Sd|YR�!CSOPLK\:L`:f:Sd|Z��!CSOPLP\:Lp6f:Sd|X��!CSOPLN\:Lp6f:Sd|Y��!CSOPL`�[:Lp6f:Sd|Z�!CSOPL��\:L`1f:Sd|X=�!CSOPL�[:L`1f:Sd|Yl�!CSOPL�:\:L`1f:Sd|Z��!CSOPL0�[:LP,f:Sd|X��!CSOPL�E\:LP,f:Sd|Y��!CSOPL0�[:LP,f:Sd|Z(�!CSOPLp�[:L`(f:Sd|XW�!CSOPL��[:L`(f:Sd|Y��!CSOPL��[:L`(f:Sd|Z��!CSOPL��[:LP#f:Sd|X��!CSOPL�@\:LP#f:Sd|Y�!CSOPL@�[:LP#f:Sd|ZB�!CSOPL0\:L@f:Sd|Xq�!CSOPL�1\:L@f:Sd|Y��!CSOPL7\:L@f:Sd|Z��!CSOPL�[:LPf:Sd|X��!CSOPL��[:LPf:Sd|Y-�!CSOPL��[:LPf:Sd|Z\�!CSOPL0�[:L@f:Sd|X��!CSOPLl\:L@f:Sd|Y��!CSOPL0�[:L@f:Sd|Z��!CSOPL 2\:L8~e:Sd|X�!CSOPL�\\:L8~e:Sd|YG�!CSOPL��[:L8~e:Sd|Zv�!CSOPL��[:L��e:Sd|X��!CSOPL��[:L��e:Sd|Y��!CSOPL��[:L��e:Sd|Z�!CSOPLPh\:LЎe:Sd|X2�!CSOPL0�[:LЎe:Sd|Ya�!CSOPL�[:LЎe:Sd|Z��!CSOPL`�[:L��e:Sd|X��!CSOPL|\:L��e:Sd|Y��!CSOPL0m\:L��e:Sd|Z�!CSOPL�a\:L`�e:Sd|XL�!CSOPL �[:L`�e:Sd|Y{�!CSOPL0a\:L`�e:Sd|Z��!CSOPL@T\:L8�e:Sd|X��!CSOPL@�[:L8�e:Sd|Y�!CSOPL�?\:L8�e:Sd|Z7�!CSOPL�
\:L�e:Sd|Xf�!CSOPL`�[:L�e:Sd|Y��!CSOPL�\\:L�e:Sd|Z��!CSOPL@�[:L�e:Sd|X��!CSOPL �[:L�e:Sd|Y"�!CSOPL��[:L�e:Sd|ZQ�!CSOPLP�[:L��e:Sd|X��!CSOPL��[:L��e:Sd|Y��!CSOPL\:L��e:Sd|Z��!CSOPL�\:L��e:Sd|X
�!CSOPLP�[:L��e:Sd|Y<�!CSOPLP_\:L��e:Sd|Zk�!CSOPLP�[:Lp�e:Sd|X��!CSOPL�[:Lp�e:Sd|Y��!CSOPL�^\:Lp�e:Sd|Z��!CSOPL�_\:LH�e:Sd|X'�!CSOPL`�[:LH�e:Sd|YV�!CSOPL��[:LH�e:Sd|Z��!CSOPL0\:L �e:Sd|X��!CSOPL��[:L �e:Sd|Y��!CSOPLP�[:L �e:Sd|Z�!CSOPL`\:L��e:Sd|XA�!CSOPL�h\:L��e:Sd|Yp�!CSOPLp�[:L��e:Sd|Z��!CSOPL \:L�f:Sd|X��!CSOPLP�[:L�f:Sd|Y��!CSOPL�[:L�f:Sd|Z,�!CSOPL��[:L�ve:Sd|X[�!CSOPL`�[:L�ve:Sd|Y��!CSOPL�\:L�ve:Sd|Z��!CSOPL��[:L�f:Sd|X��!CSOPL�}\:L�f:Sd|Y�!CSOPL��[:L�f:Sd|ZF�!CSOPL��[:L(�e:Sd|Xu�!CSOPL�\:L(�e:Sd|Y��!CSOPL�\:L(�e:Sd|Z��!CSOPL�[:L��e:Sd|X�!CSOPL�g\:L��e:Sd|Y1�!CSOPL`�[:L��e:Sd|Z`�!CSOPL \:L�f:Sd|X��!CSOPL+\:L�f:Sd|Y��!CSOPL�y\:L�f:Sd|Z��!CSOPLW\:L�f:Sd|X�!CSOPLPq\:L�f:Sd|YK�!CSOPL`�[:L�f:Sd|Zz�!CSOPL��[:L�f:Sd|X��!CSOPL`�[:L�f:Sd|Y��!CSOPL0.\:L�f:Sd|Z�!CSOPL�o\:L nf:Sd|X6�!CSOPL@x\:L nf:Sd|Ye�!CSOPLp�[:L nf:Sd|Z��!CSOPL@K\:L�gf:Sd|X��!CSOPL`1\:L�gf:Sd|Y��!CSOPLpi\:L�gf:Sd|Z!�!CSOPL�H\:L`f:Sd|XP�!CSOPL /\:L`f:Sd|Y�!CSOPL�`\:L`f:Sd|Z��!CSOPL��[:L�Yf:Sd|X��!CSOPL`@\:L�Yf:Sd|Y�!CSOPL }\:L�Yf:Sd|Z;�!CSOPL�p\:LRf:Sd|Xj�!CSOPL@\:LRf:Sd|Y��!CSOPLp�[:LRf:Sd|Z��!CSOPL�\:L�Kf:Sd|X��!CSOPL�\:L�Kf:Sd|Y&�!CSOPL�[:L�Kf:Sd|Z��Takes��CCurrentS>_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2��CTakeS>_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2L�GFileNameSB_20_a_U1_M_P_JogForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_2.takt�	LocalTimeLL�9`S��
ReferenceTimeLL�9`S���
���`�~���%z��Z�j���~���u�)

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/Raw Mocap Data/Animations/Running/Turning/JogForwardTurnRight_NtrlShort.fbx

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