人动作.FBX 779 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966
  1. ; FBX 7.4.0 project file
  2. ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
  3. ; All rights reserved.
  4. ; ----------------------------------------------------
  5. FBXHeaderExtension: {
  6. FBXHeaderVersion: 1003
  7. FBXVersion: 7400
  8. CreationTimeStamp: {
  9. Version: 1000
  10. Year: 2024
  11. Month: 2
  12. Day: 6
  13. Hour: 1
  14. Minute: 32
  15. Second: 44
  16. Millisecond: 825
  17. }
  18. Creator: "FBX SDK/FBX Plugins version 2016.1"
  19. SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
  20. Type: "UserData"
  21. Version: 100
  22. MetaData: {
  23. Version: 100
  24. Title: ""
  25. Subject: ""
  26. Author: ""
  27. Keywords: ""
  28. Revision: ""
  29. Comment: ""
  30. }
  31. Properties70: {
  32. P: "DocumentUrl", "KString", "Url", "", "C:\Users\三三\Desktop\正常人动作.FBX"
  33. P: "SrcDocumentUrl", "KString", "Url", "", "C:\Users\三三\Desktop\正常人动作.FBX"
  34. P: "Original", "Compound", "", ""
  35. P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
  36. P: "Original|ApplicationName", "KString", "", "", "3ds Max"
  37. P: "Original|ApplicationVersion", "KString", "", "", "2014"
  38. P: "Original|DateTime_GMT", "DateTime", "", "", "05/02/2024 17:32:44.825"
  39. P: "Original|FileName", "KString", "", "", "C:\Users\三三\Desktop\正常人动作.FBX"
  40. P: "LastSaved", "Compound", "", ""
  41. P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
  42. P: "LastSaved|ApplicationName", "KString", "", "", "3ds Max"
  43. P: "LastSaved|ApplicationVersion", "KString", "", "", "2014"
  44. P: "LastSaved|DateTime_GMT", "DateTime", "", "", "05/02/2024 17:32:44.825"
  45. }
  46. }
  47. }
  48. GlobalSettings: {
  49. Version: 1000
  50. Properties70: {
  51. P: "UpAxis", "int", "Integer", "",2
  52. P: "UpAxisSign", "int", "Integer", "",1
  53. P: "FrontAxis", "int", "Integer", "",1
  54. P: "FrontAxisSign", "int", "Integer", "",-1
  55. P: "CoordAxis", "int", "Integer", "",0
  56. P: "CoordAxisSign", "int", "Integer", "",1
  57. P: "OriginalUpAxis", "int", "Integer", "",2
  58. P: "OriginalUpAxisSign", "int", "Integer", "",1
  59. P: "UnitScaleFactor", "double", "Number", "",1
  60. P: "OriginalUnitScaleFactor", "double", "Number", "",1
  61. P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
  62. P: "DefaultCamera", "KString", "", "", "Producer Front"
  63. P: "TimeMode", "enum", "", "",6
  64. P: "TimeProtocol", "enum", "", "",2
  65. P: "SnapOnFrameMode", "enum", "", "",0
  66. P: "TimeSpanStart", "KTime", "Time", "",0
  67. P: "TimeSpanStop", "KTime", "Time", "",169349246000
  68. P: "CustomFrameRate", "double", "Number", "",-1
  69. P: "TimeMarker", "Compound", "", ""
  70. P: "CurrentTimeMarker", "int", "Integer", "",-1
  71. }
  72. }
  73. ; Documents Description
  74. ;------------------------------------------------------------------
  75. Documents: {
  76. Count: 1
  77. Document: 3000255088, "", "Scene" {
  78. Properties70: {
  79. P: "SourceObject", "object", "", ""
  80. P: "ActiveAnimStackName", "KString", "", "", ""
  81. }
  82. RootNode: 0
  83. }
  84. }
  85. ; Document References
  86. ;------------------------------------------------------------------
  87. References: {
  88. }
  89. ; Object definitions
  90. ;------------------------------------------------------------------
  91. Definitions: {
  92. Version: 100
  93. Count: 427
  94. ObjectType: "GlobalSettings" {
  95. Count: 1
  96. }
  97. ObjectType: "AnimationStack" {
  98. Count: 1
  99. PropertyTemplate: "FbxAnimStack" {
  100. Properties70: {
  101. P: "Description", "KString", "", "", ""
  102. P: "LocalStart", "KTime", "Time", "",0
  103. P: "LocalStop", "KTime", "Time", "",0
  104. P: "ReferenceStart", "KTime", "Time", "",0
  105. P: "ReferenceStop", "KTime", "Time", "",0
  106. }
  107. }
  108. }
  109. ObjectType: "AnimationLayer" {
  110. Count: 1
  111. PropertyTemplate: "FbxAnimLayer" {
  112. Properties70: {
  113. P: "Weight", "Number", "", "A",100
  114. P: "Mute", "bool", "", "",0
  115. P: "Solo", "bool", "", "",0
  116. P: "Lock", "bool", "", "",0
  117. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  118. P: "BlendMode", "enum", "", "",0
  119. P: "RotationAccumulationMode", "enum", "", "",0
  120. P: "ScaleAccumulationMode", "enum", "", "",0
  121. P: "BlendModeBypass", "ULongLong", "", "",0
  122. }
  123. }
  124. }
  125. ObjectType: "Model" {
  126. Count: 35
  127. PropertyTemplate: "FbxNode" {
  128. Properties70: {
  129. P: "QuaternionInterpolate", "enum", "", "",0
  130. P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
  131. P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
  132. P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
  133. P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
  134. P: "TranslationActive", "bool", "", "",0
  135. P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
  136. P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
  137. P: "TranslationMinX", "bool", "", "",0
  138. P: "TranslationMinY", "bool", "", "",0
  139. P: "TranslationMinZ", "bool", "", "",0
  140. P: "TranslationMaxX", "bool", "", "",0
  141. P: "TranslationMaxY", "bool", "", "",0
  142. P: "TranslationMaxZ", "bool", "", "",0
  143. P: "RotationOrder", "enum", "", "",0
  144. P: "RotationSpaceForLimitOnly", "bool", "", "",0
  145. P: "RotationStiffnessX", "double", "Number", "",0
  146. P: "RotationStiffnessY", "double", "Number", "",0
  147. P: "RotationStiffnessZ", "double", "Number", "",0
  148. P: "AxisLen", "double", "Number", "",10
  149. P: "PreRotation", "Vector3D", "Vector", "",0,0,0
  150. P: "PostRotation", "Vector3D", "Vector", "",0,0,0
  151. P: "RotationActive", "bool", "", "",0
  152. P: "RotationMin", "Vector3D", "Vector", "",0,0,0
  153. P: "RotationMax", "Vector3D", "Vector", "",0,0,0
  154. P: "RotationMinX", "bool", "", "",0
  155. P: "RotationMinY", "bool", "", "",0
  156. P: "RotationMinZ", "bool", "", "",0
  157. P: "RotationMaxX", "bool", "", "",0
  158. P: "RotationMaxY", "bool", "", "",0
  159. P: "RotationMaxZ", "bool", "", "",0
  160. P: "InheritType", "enum", "", "",0
  161. P: "ScalingActive", "bool", "", "",0
  162. P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
  163. P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
  164. P: "ScalingMinX", "bool", "", "",0
  165. P: "ScalingMinY", "bool", "", "",0
  166. P: "ScalingMinZ", "bool", "", "",0
  167. P: "ScalingMaxX", "bool", "", "",0
  168. P: "ScalingMaxY", "bool", "", "",0
  169. P: "ScalingMaxZ", "bool", "", "",0
  170. P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
  171. P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
  172. P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
  173. P: "MinDampRangeX", "double", "Number", "",0
  174. P: "MinDampRangeY", "double", "Number", "",0
  175. P: "MinDampRangeZ", "double", "Number", "",0
  176. P: "MaxDampRangeX", "double", "Number", "",0
  177. P: "MaxDampRangeY", "double", "Number", "",0
  178. P: "MaxDampRangeZ", "double", "Number", "",0
  179. P: "MinDampStrengthX", "double", "Number", "",0
  180. P: "MinDampStrengthY", "double", "Number", "",0
  181. P: "MinDampStrengthZ", "double", "Number", "",0
  182. P: "MaxDampStrengthX", "double", "Number", "",0
  183. P: "MaxDampStrengthY", "double", "Number", "",0
  184. P: "MaxDampStrengthZ", "double", "Number", "",0
  185. P: "PreferedAngleX", "double", "Number", "",0
  186. P: "PreferedAngleY", "double", "Number", "",0
  187. P: "PreferedAngleZ", "double", "Number", "",0
  188. P: "LookAtProperty", "object", "", ""
  189. P: "UpVectorProperty", "object", "", ""
  190. P: "Show", "bool", "", "",1
  191. P: "NegativePercentShapeSupport", "bool", "", "",1
  192. P: "DefaultAttributeIndex", "int", "Integer", "",-1
  193. P: "Freeze", "bool", "", "",0
  194. P: "LODBox", "bool", "", "",0
  195. P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
  196. P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
  197. P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
  198. P: "Visibility", "Visibility", "", "A",1
  199. P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
  200. }
  201. }
  202. }
  203. ObjectType: "NodeAttribute" {
  204. Count: 35
  205. PropertyTemplate: "FbxSkeleton" {
  206. Properties70: {
  207. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  208. P: "Size", "double", "Number", "",100
  209. P: "LimbLength", "double", "Number", "H",1
  210. }
  211. }
  212. }
  213. ObjectType: "CollectionExclusive" {
  214. Count: 6
  215. PropertyTemplate: "FbxDisplayLayer" {
  216. Properties70: {
  217. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  218. P: "Show", "bool", "", "",1
  219. P: "Freeze", "bool", "", "",0
  220. P: "LODBox", "bool", "", "",0
  221. }
  222. }
  223. }
  224. ObjectType: "AnimationCurve" {
  225. Count: 261
  226. }
  227. ObjectType: "AnimationCurveNode" {
  228. Count: 87
  229. PropertyTemplate: "FbxAnimCurveNode" {
  230. Properties70: {
  231. P: "d", "Compound", "", ""
  232. }
  233. }
  234. }
  235. }
  236. ; Object properties
  237. ;------------------------------------------------------------------
  238. Objects: {
  239. NodeAttribute: 2732824016, "NodeAttribute::", "Root" {
  240. TypeFlags: "Null", "Skeleton", "Root"
  241. }
  242. NodeAttribute: 2732823824, "NodeAttribute::", "LimbNode" {
  243. Properties70: {
  244. P: "Size", "double", "Number", "",19.9257814884186
  245. }
  246. TypeFlags: "Skeleton"
  247. }
  248. NodeAttribute: 2732818640, "NodeAttribute::", "LimbNode" {
  249. Properties70: {
  250. P: "Size", "double", "Number", "",70.3059616088867
  251. }
  252. TypeFlags: "Skeleton"
  253. }
  254. NodeAttribute: 2732824976, "NodeAttribute::", "LimbNode" {
  255. Properties70: {
  256. P: "Size", "double", "Number", "",78.3878021240234
  257. }
  258. TypeFlags: "Skeleton"
  259. }
  260. NodeAttribute: 2732819024, "NodeAttribute::", "LimbNode" {
  261. Properties70: {
  262. P: "Size", "double", "Number", "",28.6810536384583
  263. }
  264. TypeFlags: "Skeleton"
  265. }
  266. NodeAttribute: 2732827664, "NodeAttribute::", "LimbNode" {
  267. Properties70: {
  268. P: "Size", "double", "Number", "",28.5227556228638
  269. }
  270. TypeFlags: "Skeleton"
  271. }
  272. NodeAttribute: 2732824208, "NodeAttribute::", "LimbNode" {
  273. Properties70: {
  274. P: "Size", "double", "Number", "",75.5576772689819
  275. }
  276. TypeFlags: "Skeleton"
  277. }
  278. NodeAttribute: 2732826512, "NodeAttribute::", "LimbNode" {
  279. Properties70: {
  280. P: "Size", "double", "Number", "",40.1239523887634
  281. }
  282. TypeFlags: "Skeleton"
  283. }
  284. NodeAttribute: 2732821328, "NodeAttribute::", "LimbNode" {
  285. Properties70: {
  286. P: "Size", "double", "Number", "",41.4042086601257
  287. }
  288. TypeFlags: "Skeleton"
  289. }
  290. NodeAttribute: 2732819216, "NodeAttribute::", "LimbNode" {
  291. Properties70: {
  292. P: "Size", "double", "Number", "",28.3766841888428
  293. }
  294. TypeFlags: "Skeleton"
  295. }
  296. NodeAttribute: 2732819408, "NodeAttribute::", "LimbNode" {
  297. Properties70: {
  298. P: "Size", "double", "Number", "",31.6192150115967
  299. }
  300. TypeFlags: "Skeleton"
  301. }
  302. NodeAttribute: 2732819792, "NodeAttribute::", "LimbNode" {
  303. Properties70: {
  304. P: "Size", "double", "Number", "",1430.84257507324
  305. }
  306. TypeFlags: "Skeleton"
  307. }
  308. NodeAttribute: 2732821520, "NodeAttribute::", "LimbNode" {
  309. Properties70: {
  310. P: "Size", "double", "Number", "",28.5227589607239
  311. }
  312. TypeFlags: "Skeleton"
  313. }
  314. NodeAttribute: 2732830160, "NodeAttribute::", "LimbNode" {
  315. Properties70: {
  316. P: "Size", "double", "Number", "",75.5576505661011
  317. }
  318. TypeFlags: "Skeleton"
  319. }
  320. NodeAttribute: 2732819984, "NodeAttribute::", "LimbNode" {
  321. Properties70: {
  322. P: "Size", "double", "Number", "",40.1239590644836
  323. }
  324. TypeFlags: "Skeleton"
  325. }
  326. NodeAttribute: 2732820176, "NodeAttribute::", "LimbNode" {
  327. Properties70: {
  328. P: "Size", "double", "Number", "",41.4042186737061
  329. }
  330. TypeFlags: "Skeleton"
  331. }
  332. NodeAttribute: 2732820368, "NodeAttribute::", "LimbNode" {
  333. Properties70: {
  334. P: "Size", "double", "Number", "",28.3766841888428
  335. }
  336. TypeFlags: "Skeleton"
  337. }
  338. NodeAttribute: 2732820560, "NodeAttribute::", "LimbNode" {
  339. Properties70: {
  340. P: "Size", "double", "Number", "",31.6192083358765
  341. }
  342. TypeFlags: "Skeleton"
  343. }
  344. NodeAttribute: 2732830736, "NodeAttribute::", "LimbNode" {
  345. Properties70: {
  346. P: "Size", "double", "Number", "",10.6819000244141
  347. }
  348. TypeFlags: "Skeleton"
  349. }
  350. NodeAttribute: 2732824400, "NodeAttribute::", "LimbNode" {
  351. Properties70: {
  352. P: "Size", "double", "Number", "",52.7551426887512
  353. }
  354. TypeFlags: "Skeleton"
  355. }
  356. NodeAttribute: 2732826320, "NodeAttribute::", "LimbNode" {
  357. Properties70: {
  358. P: "Size", "double", "Number", "",65.1386671066284
  359. }
  360. TypeFlags: "Skeleton"
  361. }
  362. NodeAttribute: 2732820752, "NodeAttribute::", "LimbNode" {
  363. Properties70: {
  364. P: "Size", "double", "Number", "",57.2665576934814
  365. }
  366. TypeFlags: "Skeleton"
  367. }
  368. NodeAttribute: 2732820944, "NodeAttribute::", "LimbNode" {
  369. Properties70: {
  370. P: "Size", "double", "Number", "",57.2665576934814
  371. }
  372. TypeFlags: "Skeleton"
  373. }
  374. NodeAttribute: 2732821136, "NodeAttribute::", "LimbNode" {
  375. Properties70: {
  376. P: "Size", "double", "Number", "",49.0146899223328
  377. }
  378. TypeFlags: "Skeleton"
  379. }
  380. NodeAttribute: 2732821712, "NodeAttribute::", "LimbNode" {
  381. Properties70: {
  382. P: "Size", "double", "Number", "",49.0146899223328
  383. }
  384. TypeFlags: "Skeleton"
  385. }
  386. NodeAttribute: 2732821904, "NodeAttribute::", "LimbNode" {
  387. Properties70: {
  388. P: "Size", "double", "Number", "",187.4563331604
  389. }
  390. TypeFlags: "Skeleton"
  391. }
  392. NodeAttribute: 2732829968, "NodeAttribute::", "LimbNode" {
  393. Properties70: {
  394. P: "Size", "double", "Number", "",982.517440795898
  395. }
  396. TypeFlags: "Skeleton"
  397. }
  398. NodeAttribute: 2732825168, "NodeAttribute::", "LimbNode" {
  399. Properties70: {
  400. P: "Size", "double", "Number", "",75.6816053390503
  401. }
  402. TypeFlags: "Skeleton"
  403. }
  404. NodeAttribute: 2732822096, "NodeAttribute::", "LimbNode" {
  405. Properties70: {
  406. P: "Size", "double", "Number", "",56.7067518234253
  407. }
  408. TypeFlags: "Skeleton"
  409. }
  410. NodeAttribute: 2732822288, "NodeAttribute::", "LimbNode" {
  411. Properties70: {
  412. P: "Size", "double", "Number", "",46.8850250244141
  413. }
  414. TypeFlags: "Skeleton"
  415. }
  416. NodeAttribute: 2732822480, "NodeAttribute::", "LimbNode" {
  417. Properties70: {
  418. P: "Size", "double", "Number", "",18.0862801074982
  419. }
  420. TypeFlags: "Skeleton"
  421. }
  422. NodeAttribute: 2732829008, "NodeAttribute::", "LimbNode" {
  423. Properties70: {
  424. P: "Size", "double", "Number", "",75.6816053390503
  425. }
  426. TypeFlags: "Skeleton"
  427. }
  428. NodeAttribute: 2732822864, "NodeAttribute::", "LimbNode" {
  429. Properties70: {
  430. P: "Size", "double", "Number", "",56.7067584991455
  431. }
  432. TypeFlags: "Skeleton"
  433. }
  434. NodeAttribute: 2732823056, "NodeAttribute::", "LimbNode" {
  435. Properties70: {
  436. P: "Size", "double", "Number", "",46.8850283622742
  437. }
  438. TypeFlags: "Skeleton"
  439. }
  440. NodeAttribute: 2732823248, "NodeAttribute::", "LimbNode" {
  441. Properties70: {
  442. P: "Size", "double", "Number", "",18.0862767696381
  443. }
  444. TypeFlags: "Skeleton"
  445. }
  446. Model: 2988170048, "Model::Bip001", "Root" {
  447. Version: 232
  448. Properties70: {
  449. P: "InheritType", "enum", "", "",1
  450. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  451. P: "Show", "bool", "", "",0
  452. P: "DefaultAttributeIndex", "int", "Integer", "",0
  453. P: "LODBox", "bool", "", "",1
  454. P: "Lcl Translation", "Lcl Translation", "", "A+",0.476473689079285,-1.55201578140259,23.8049583435059
  455. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-2.26379318174441,13.1324834412634,-83.9003821504499
  456. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999994308037,1.00000001820983,0.999999975662261
  457. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  458. P: "mr 置换视图依赖", "Bool", "", "AU",1
  459. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  460. P: "mr 置换平滑位置", "Bool", "", "AU",1
  461. P: "mr 置换边长", "Number", "", "AU",2,2,2
  462. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  463. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  464. P: "MaxHandle", "int", "Integer", "UH",509
  465. }
  466. Shading: T
  467. Culling: "CullingOff"
  468. }
  469. Model: 2988185392, "Model::Bip001 Pelvis", "LimbNode" {
  470. Version: 232
  471. Properties70: {
  472. P: "InheritType", "enum", "", "",1
  473. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  474. P: "DefaultAttributeIndex", "int", "Integer", "",0
  475. P: "LODBox", "bool", "", "",1
  476. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-81.5288804981657,-89.9999202049958,0
  477. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000011921026,1.00000020216991,1.00000009084743
  478. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  479. P: "mr 置换视图依赖", "Bool", "", "AU",1
  480. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  481. P: "mr 置换平滑位置", "Bool", "", "AU",1
  482. P: "mr 置换边长", "Number", "", "AU",2,2,2
  483. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  484. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  485. P: "MaxHandle", "int", "Integer", "UH",511
  486. }
  487. Shading: T
  488. Culling: "CullingOff"
  489. }
  490. Model: 2988167856, "Model::Bip001 Spine", "LimbNode" {
  491. Version: 232
  492. Properties70: {
  493. P: "InheritType", "enum", "", "",1
  494. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  495. P: "DefaultAttributeIndex", "int", "Integer", "",0
  496. P: "LODBox", "bool", "", "",1
  497. P: "Lcl Translation", "Lcl Translation", "", "A+",1.95817756652832,2.0436577796936,-0.302970677614212
  498. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-18.0776498635248,-0.578709403128156,-17.524501705414
  499. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.000000103912,1.00000000298468,1.00000004282725
  500. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  501. P: "mr 置换视图依赖", "Bool", "", "AU",1
  502. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  503. P: "mr 置换平滑位置", "Bool", "", "AU",1
  504. P: "mr 置换边长", "Number", "", "AU",2,2,2
  505. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  506. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  507. P: "MaxHandle", "int", "Integer", "UH",512
  508. }
  509. Shading: T
  510. Culling: "CullingOff"
  511. }
  512. Model: 2988176624, "Model::Bip001 Spine1", "LimbNode" {
  513. Version: 232
  514. Properties70: {
  515. P: "InheritType", "enum", "", "",1
  516. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  517. P: "DefaultAttributeIndex", "int", "Integer", "",0
  518. P: "LODBox", "bool", "", "",1
  519. P: "Lcl Translation", "Lcl Translation", "", "A+",10.0437030792236,-0.00957775115966797,-0.00267505645751953
  520. P: "Lcl Rotation", "Lcl Rotation", "", "A+",15.5814334622431,-2.38686166842312,3.3801115319763
  521. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999934277588,0.999999989931362,1.00000007829068
  522. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  523. P: "mr 置换视图依赖", "Bool", "", "AU",1
  524. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  525. P: "mr 置换平滑位置", "Bool", "", "AU",1
  526. P: "mr 置换边长", "Number", "", "AU",2,2,2
  527. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  528. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  529. P: "MaxHandle", "int", "Integer", "UH",513
  530. }
  531. Shading: T
  532. Culling: "CullingOff"
  533. }
  534. Model: 2988161280, "Model::Bip001 Neck", "LimbNode" {
  535. Version: 232
  536. Properties70: {
  537. P: "InheritType", "enum", "", "",1
  538. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  539. P: "DefaultAttributeIndex", "int", "Integer", "",0
  540. P: "LODBox", "bool", "", "",1
  541. P: "Lcl Translation", "Lcl Translation", "", "A+",11.0813255310059,-1.61406350135803,-0.000134468078613281
  542. P: "Lcl Rotation", "Lcl Rotation", "", "A+",3.55662814404816,-1.55050676542847,5.86870103314291
  543. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000005878901,0.99999993325504,1.00000007735779
  544. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  545. P: "mr 置换视图依赖", "Bool", "", "AU",1
  546. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  547. P: "mr 置换平滑位置", "Bool", "", "AU",1
  548. P: "mr 置换边长", "Number", "", "AU",2,2,2
  549. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  550. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  551. P: "MaxHandle", "int", "Integer", "UH",514
  552. }
  553. Shading: T
  554. Culling: "CullingOff"
  555. }
  556. Model: 2988172240, "Model::Bip001 L Clavicle", "LimbNode" {
  557. Version: 232
  558. Properties70: {
  559. P: "InheritType", "enum", "", "",1
  560. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  561. P: "DefaultAttributeIndex", "int", "Integer", "",0
  562. P: "LODBox", "bool", "", "",1
  563. P: "Lcl Translation", "Lcl Translation", "", "A+",-2.69435119628906,0.722343683242798,3.00108337402344
  564. P: "Lcl Rotation", "Lcl Rotation", "", "A+",152.224147673746,-85.4642835769609,21.7447461508821
  565. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999961971885,1.00000001642849,1.00000002620143
  566. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  567. P: "mr 置换视图依赖", "Bool", "", "AU",1
  568. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  569. P: "mr 置换平滑位置", "Bool", "", "AU",1
  570. P: "mr 置换边长", "Number", "", "AU",2,2,2
  571. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  572. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  573. P: "MaxHandle", "int", "Integer", "UH",515
  574. }
  575. Shading: T
  576. Culling: "CullingOff"
  577. }
  578. Model: 2988191968, "Model::Bip001 L UpperArm", "LimbNode" {
  579. Version: 232
  580. Properties70: {
  581. P: "InheritType", "enum", "", "",1
  582. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  583. P: "DefaultAttributeIndex", "int", "Integer", "",0
  584. P: "LODBox", "bool", "", "",1
  585. P: "Lcl Translation", "Lcl Translation", "", "A+",4.07467842102051,2.38418579101563e-007,-3.814697265625e-006
  586. P: "Lcl Rotation", "Lcl Rotation", "", "A+",21.4376044140465,56.5267530671854,-8.75519655860196
  587. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001582254,0.999999827752905,0.999999973848528
  588. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  589. P: "mr 置换视图依赖", "Bool", "", "AU",1
  590. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  591. P: "mr 置换平滑位置", "Bool", "", "AU",1
  592. P: "mr 置换边长", "Number", "", "AU",2,2,2
  593. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  594. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  595. P: "MaxHandle", "int", "Integer", "UH",516
  596. }
  597. Shading: T
  598. Culling: "CullingOff"
  599. }
  600. Model: 2988163472, "Model::Bip001 L Forearm", "LimbNode" {
  601. Version: 232
  602. Properties70: {
  603. P: "RotationActive", "bool", "", "",1
  604. P: "RotationMinX", "bool", "", "",1
  605. P: "RotationMinY", "bool", "", "",1
  606. P: "RotationMaxX", "bool", "", "",1
  607. P: "RotationMaxY", "bool", "", "",1
  608. P: "InheritType", "enum", "", "",1
  609. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  610. P: "DefaultAttributeIndex", "int", "Integer", "",0
  611. P: "LODBox", "bool", "", "",1
  612. P: "Lcl Translation", "Lcl Translation", "", "A+",10.7939529418945,-9.5367431640625e-007,-1.9073486328125e-006
  613. P: "Lcl Rotation", "Lcl Rotation", "", "A+",1.49410387629517e-006,8.53773643597236e-006,-8.43035218707557
  614. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000310898,1.00000000310896,1
  615. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  616. P: "mr 置换视图依赖", "Bool", "", "AU",1
  617. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  618. P: "mr 置换平滑位置", "Bool", "", "AU",1
  619. P: "mr 置换边长", "Number", "", "AU",2,2,2
  620. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  621. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  622. P: "MaxHandle", "int", "Integer", "UH",517
  623. }
  624. Shading: T
  625. Culling: "CullingOff"
  626. }
  627. Model: 2988200736, "Model::Bip001 L Hand", "LimbNode" {
  628. Version: 232
  629. Properties70: {
  630. P: "InheritType", "enum", "", "",1
  631. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  632. P: "DefaultAttributeIndex", "int", "Integer", "",0
  633. P: "LODBox", "bool", "", "",1
  634. P: "Lcl Translation", "Lcl Translation", "", "A+",5.73199081420898,4.76837158203125e-007,0
  635. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-92.7127827310036,18.3551100008298,-9.29467780607238
  636. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999930325167,0.999999929797972,0.999999999497614
  637. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  638. P: "mr 置换视图依赖", "Bool", "", "AU",1
  639. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  640. P: "mr 置换平滑位置", "Bool", "", "AU",1
  641. P: "mr 置换边长", "Number", "", "AU",2,2,2
  642. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  643. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  644. P: "MaxHandle", "int", "Integer", "UH",518
  645. }
  646. Shading: T
  647. Culling: "CullingOff"
  648. }
  649. Model: 2988209504, "Model::Bip001 L Finger0", "LimbNode" {
  650. Version: 232
  651. Properties70: {
  652. P: "InheritType", "enum", "", "",1
  653. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  654. P: "DefaultAttributeIndex", "int", "Integer", "",0
  655. P: "LODBox", "bool", "", "",1
  656. P: "Lcl Translation", "Lcl Translation", "", "A+",4.90594291687012,0.427822113037109,-3.27636575698853
  657. P: "Lcl Rotation", "Lcl Rotation", "", "A+",16.947874289601,45.5321273065712,33.9068098193233
  658. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999939050873,1.00000002979089,0.999999994291912
  659. P: "MaxHandle", "int", "Integer", "UH",519
  660. }
  661. Shading: T
  662. Culling: "CullingOff"
  663. }
  664. Model: 2988205120, "Model::Bip001 L Finger1", "LimbNode" {
  665. Version: 232
  666. Properties70: {
  667. P: "InheritType", "enum", "", "",1
  668. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  669. P: "DefaultAttributeIndex", "int", "Integer", "",0
  670. P: "LODBox", "bool", "", "",1
  671. P: "Lcl Translation", "Lcl Translation", "", "A+",6.5353889465332,-1.9073486328125e-006,-7.15255737304688e-007
  672. P: "Lcl Rotation", "Lcl Rotation", "", "A+",17.1279725166508,-1.88661415595714,-0.589621653000849
  673. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001334713,0.999999965384884,0.999999821054708
  674. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  675. P: "mr 置换视图依赖", "Bool", "", "AU",1
  676. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  677. P: "mr 置换平滑位置", "Bool", "", "AU",1
  678. P: "mr 置换边长", "Number", "", "AU",2,2,2
  679. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  680. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  681. P: "MaxHandle", "int", "Integer", "UH",521
  682. }
  683. Shading: T
  684. Culling: "CullingOff"
  685. }
  686. Model: 2988213888, "Model::Bone001", "LimbNode" {
  687. Version: 232
  688. Properties70: {
  689. P: "InheritType", "enum", "", "",1
  690. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  691. P: "DefaultAttributeIndex", "int", "Integer", "",0
  692. P: "LODBox", "bool", "", "",1
  693. P: "Lcl Translation", "Lcl Translation", "", "A+",194.565704345703,62.0441207885742,8.74915409088135
  694. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-10.6895891273499,-71.8818205652341,95.8346542996659
  695. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,1.00000035762787,0.999999821186066
  696. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  697. P: "mr 置换视图依赖", "Bool", "", "AU",1
  698. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  699. P: "mr 置换平滑位置", "Bool", "", "AU",1
  700. P: "mr 置换边长", "Number", "", "AU",2,2,2
  701. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  702. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  703. P: "MaxHandle", "int", "Integer", "UH",795
  704. }
  705. Shading: T
  706. Culling: "CullingOff"
  707. }
  708. Model: 2988202928, "Model::Bip001 R Clavicle", "LimbNode" {
  709. Version: 232
  710. Properties70: {
  711. P: "InheritType", "enum", "", "",1
  712. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  713. P: "DefaultAttributeIndex", "int", "Integer", "",0
  714. P: "LODBox", "bool", "", "",1
  715. P: "Lcl Translation", "Lcl Translation", "", "A+",-2.85486221313477,0.354507207870483,-2.9172568321228
  716. P: "Lcl Rotation", "Lcl Rotation", "", "A+",109.082079069474,75.2313322726551,-76.0244934520122
  717. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999936968425,1.00000006415127,0.99999999164234
  718. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  719. P: "mr 置换视图依赖", "Bool", "", "AU",1
  720. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  721. P: "mr 置换平滑位置", "Bool", "", "AU",1
  722. P: "mr 置换边长", "Number", "", "AU",2,2,2
  723. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  724. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  725. P: "MaxHandle", "int", "Integer", "UH",523
  726. }
  727. Shading: T
  728. Culling: "CullingOff"
  729. }
  730. Model: 2988211696, "Model::Bip001 R UpperArm", "LimbNode" {
  731. Version: 232
  732. Properties70: {
  733. P: "InheritType", "enum", "", "",1
  734. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  735. P: "DefaultAttributeIndex", "int", "Integer", "",0
  736. P: "LODBox", "bool", "", "",1
  737. P: "Lcl Translation", "Lcl Translation", "", "A+",4.07467937469482,0,3.814697265625e-006
  738. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-12.4738697007438,-74.5642661147917,12.7671470368502
  739. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999935315198,0.999999855890426,1.00000002674142
  740. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  741. P: "mr 置换视图依赖", "Bool", "", "AU",1
  742. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  743. P: "mr 置换平滑位置", "Bool", "", "AU",1
  744. P: "mr 置换边长", "Number", "", "AU",2,2,2
  745. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  746. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  747. P: "MaxHandle", "int", "Integer", "UH",524
  748. }
  749. Shading: T
  750. Culling: "CullingOff"
  751. }
  752. Model: 2988216080, "Model::Bip001 R Forearm", "LimbNode" {
  753. Version: 232
  754. Properties70: {
  755. P: "RotationActive", "bool", "", "",1
  756. P: "RotationMinX", "bool", "", "",1
  757. P: "RotationMinY", "bool", "", "",1
  758. P: "RotationMaxX", "bool", "", "",1
  759. P: "RotationMaxY", "bool", "", "",1
  760. P: "InheritType", "enum", "", "",1
  761. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  762. P: "DefaultAttributeIndex", "int", "Integer", "",0
  763. P: "LODBox", "bool", "", "",1
  764. P: "Lcl Translation", "Lcl Translation", "", "A+",10.7939491271973,-1.19209289550781e-007,0
  765. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-2.13443409214583e-007,-0,-9.2758489316599
  766. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000006742541,1.00000001100205,1
  767. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  768. P: "mr 置换视图依赖", "Bool", "", "AU",1
  769. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  770. P: "mr 置换平滑位置", "Bool", "", "AU",1
  771. P: "mr 置换边长", "Number", "", "AU",2,2,2
  772. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  773. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  774. P: "MaxHandle", "int", "Integer", "UH",525
  775. }
  776. Shading: T
  777. Culling: "CullingOff"
  778. }
  779. Model: 2988218272, "Model::Bip001 R Hand", "LimbNode" {
  780. Version: 232
  781. Properties70: {
  782. P: "InheritType", "enum", "", "",1
  783. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  784. P: "DefaultAttributeIndex", "int", "Integer", "",0
  785. P: "LODBox", "bool", "", "",1
  786. P: "Lcl Translation", "Lcl Translation", "", "A+",5.73199462890625,0,0
  787. P: "Lcl Rotation", "Lcl Rotation", "", "A+",76.3459429817388,11.5332179780135,-6.48342075873461
  788. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000003623253,1.00000000057027,1.00000004597318
  789. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  790. P: "mr 置换视图依赖", "Bool", "", "AU",1
  791. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  792. P: "mr 置换平滑位置", "Bool", "", "AU",1
  793. P: "mr 置换边长", "Number", "", "AU",2,2,2
  794. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  795. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  796. P: "MaxHandle", "int", "Integer", "UH",526
  797. }
  798. Shading: T
  799. Culling: "CullingOff"
  800. }
  801. Model: 2988194160, "Model::Bip001 R Finger0", "LimbNode" {
  802. Version: 232
  803. Properties70: {
  804. P: "InheritType", "enum", "", "",1
  805. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  806. P: "DefaultAttributeIndex", "int", "Integer", "",0
  807. P: "LODBox", "bool", "", "",1
  808. P: "Lcl Translation", "Lcl Translation", "", "A+",4.90594577789307,0.427824020385742,3.27636647224426
  809. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-16.9478724791923,-45.5321225647519,33.9068151919843
  810. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000002028809,1.00000010250044,1.00000020455909
  811. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  812. P: "mr 置换视图依赖", "Bool", "", "AU",1
  813. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  814. P: "mr 置换平滑位置", "Bool", "", "AU",1
  815. P: "mr 置换边长", "Number", "", "AU",2,2,2
  816. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  817. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  818. P: "MaxHandle", "int", "Integer", "UH",527
  819. }
  820. Shading: T
  821. Culling: "CullingOff"
  822. }
  823. Model: 2988198544, "Model::Bip001 R Finger1", "LimbNode" {
  824. Version: 232
  825. Properties70: {
  826. P: "InheritType", "enum", "", "",1
  827. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  828. P: "DefaultAttributeIndex", "int", "Integer", "",0
  829. P: "LODBox", "bool", "", "",1
  830. P: "Lcl Translation", "Lcl Translation", "", "A+",6.53539180755615,0,1.19209289550781e-007
  831. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-16.3977832653483,5.35926695212577,10.9217871568798
  832. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000020403913,1.0000000662912,1.00000012221188
  833. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  834. P: "mr 置换视图依赖", "Bool", "", "AU",1
  835. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  836. P: "mr 置换平滑位置", "Bool", "", "AU",1
  837. P: "mr 置换边长", "Number", "", "AU",2,2,2
  838. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  839. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  840. P: "MaxHandle", "int", "Integer", "UH",529
  841. }
  842. Shading: T
  843. Culling: "CullingOff"
  844. }
  845. Model: 2419426368, "Model::Bone007", "LimbNode" {
  846. Version: 232
  847. Properties70: {
  848. P: "InheritType", "enum", "", "",1
  849. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  850. P: "DefaultAttributeIndex", "int", "Integer", "",0
  851. P: "LODBox", "bool", "", "",1
  852. P: "Lcl Translation", "Lcl Translation", "", "A+",115.751731872559,102.723159790039,-9.60890007019043
  853. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-21.619333282343,57.886850582064,114.32750472654
  854. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999761581421,1.00000011920929,0.99999988079071
  855. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  856. P: "mr 置换视图依赖", "Bool", "", "AU",1
  857. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  858. P: "mr 置换平滑位置", "Bool", "", "AU",1
  859. P: "mr 置换边长", "Number", "", "AU",2,2,2
  860. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  861. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  862. P: "MaxHandle", "int", "Integer", "UH",799
  863. }
  864. Shading: T
  865. Culling: "CullingOff"
  866. }
  867. Model: 2419417600, "Model::Bone003", "LimbNode" {
  868. Version: 232
  869. Properties70: {
  870. P: "InheritType", "enum", "", "",1
  871. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  872. P: "DefaultAttributeIndex", "int", "Integer", "",0
  873. P: "LODBox", "bool", "", "",1
  874. P: "Lcl Translation", "Lcl Translation", "", "A",-1.26706886291504,0.850387573242188,-5.7220458984375e-006
  875. P: "Lcl Rotation", "Lcl Rotation", "", "A",1.79292463861918e-005,1.87830209831692e-005,82.303887542926
  876. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  877. P: "mr 置换视图依赖", "Bool", "", "AU",1
  878. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  879. P: "mr 置换平滑位置", "Bool", "", "AU",1
  880. P: "mr 置换边长", "Number", "", "AU",2,2,2
  881. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  882. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  883. P: "MaxHandle", "int", "Integer", "UH",800
  884. }
  885. Shading: T
  886. Culling: "CullingOff"
  887. }
  888. Model: 2419408832, "Model::Bone004", "LimbNode" {
  889. Version: 232
  890. Properties70: {
  891. P: "InheritType", "enum", "", "",1
  892. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  893. P: "DefaultAttributeIndex", "int", "Integer", "",0
  894. P: "LODBox", "bool", "", "",1
  895. P: "Lcl Translation", "Lcl Translation", "", "A",7.53645324707031,7.62939453125e-006,0
  896. P: "Lcl Rotation", "Lcl Rotation", "", "A",-1.37090820794152,0.68256110588417,28.3725236990626
  897. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  898. P: "mr 置换视图依赖", "Bool", "", "AU",1
  899. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  900. P: "mr 置换平滑位置", "Bool", "", "AU",1
  901. P: "mr 置换边长", "Number", "", "AU",2,2,2
  902. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  903. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  904. P: "MaxHandle", "int", "Integer", "UH",801
  905. }
  906. Shading: T
  907. Culling: "CullingOff"
  908. }
  909. Model: 2419430752, "Model::Bone005", "LimbNode" {
  910. Version: 232
  911. Properties70: {
  912. P: "InheritType", "enum", "", "",1
  913. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  914. P: "DefaultAttributeIndex", "int", "Integer", "",0
  915. P: "LODBox", "bool", "", "",1
  916. P: "Lcl Translation", "Lcl Translation", "", "A",9.30552673339844,0,0
  917. P: "Lcl Rotation", "Lcl Rotation", "", "A",-0.946815662323706,8.65857087517746,-4.74742205365481
  918. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  919. P: "mr 置换视图依赖", "Bool", "", "AU",1
  920. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  921. P: "mr 置换平滑位置", "Bool", "", "AU",1
  922. P: "mr 置换边长", "Number", "", "AU",2,2,2
  923. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  924. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  925. P: "MaxHandle", "int", "Integer", "UH",802
  926. }
  927. Shading: T
  928. Culling: "CullingOff"
  929. }
  930. Model: 2419402256, "Model::Bone006", "LimbNode" {
  931. Version: 232
  932. Properties70: {
  933. P: "InheritType", "enum", "", "",1
  934. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  935. P: "DefaultAttributeIndex", "int", "Integer", "",0
  936. P: "LODBox", "bool", "", "",1
  937. P: "Lcl Translation", "Lcl Translation", "", "A",8.18093109130859,0,0
  938. P: "Lcl Rotation", "Lcl Rotation", "", "A",-0.107313684785857,4.75884596233727,-3.82646590195968
  939. P: "MaxHandle", "int", "Integer", "UH",803
  940. }
  941. Shading: T
  942. Culling: "CullingOff"
  943. }
  944. Model: 2419437328, "Model::Bone03", "LimbNode" {
  945. Version: 232
  946. Properties70: {
  947. P: "InheritType", "enum", "", "",1
  948. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  949. P: "DefaultAttributeIndex", "int", "Integer", "",0
  950. P: "LODBox", "bool", "", "",1
  951. P: "Lcl Translation", "Lcl Translation", "", "A",-1.37813758850098,-0.874114990234375,-3.814697265625e-006
  952. P: "Lcl Rotation", "Lcl Rotation", "", "A",-2.77476433889285e-005,8.53773642736341e-007,-74.9621733159174
  953. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  954. P: "mr 置换视图依赖", "Bool", "", "AU",1
  955. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  956. P: "mr 置换平滑位置", "Bool", "", "AU",1
  957. P: "mr 置换边长", "Number", "", "AU",2,2,2
  958. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  959. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  960. P: "MaxHandle", "int", "Integer", "UH",804
  961. }
  962. Shading: T
  963. Culling: "CullingOff"
  964. }
  965. Model: 2419448288, "Model::Bone002", "LimbNode" {
  966. Version: 232
  967. Properties70: {
  968. P: "InheritType", "enum", "", "",1
  969. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  970. P: "DefaultAttributeIndex", "int", "Integer", "",0
  971. P: "LODBox", "bool", "", "",1
  972. P: "Lcl Translation", "Lcl Translation", "", "A",7.00210571289063,-9.5367431640625e-007,0
  973. P: "Lcl Rotation", "Lcl Rotation", "", "A",1.97326392119479,-0.96106892539537,-18.6714016800054
  974. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  975. P: "mr 置换视图依赖", "Bool", "", "AU",1
  976. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  977. P: "mr 置换平滑位置", "Bool", "", "AU",1
  978. P: "mr 置换边长", "Number", "", "AU",2,2,2
  979. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  980. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  981. P: "MaxHandle", "int", "Integer", "UH",805
  982. }
  983. Shading: T
  984. Culling: "CullingOff"
  985. }
  986. Model: 2419439520, "Model::Bip001 Head", "LimbNode" {
  987. Version: 232
  988. Properties70: {
  989. P: "InheritType", "enum", "", "",1
  990. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  991. P: "DefaultAttributeIndex", "int", "Integer", "",0
  992. P: "LODBox", "bool", "", "",1
  993. P: "Lcl Translation", "Lcl Translation", "", "A+",2.93931579589844,1.73995685577393,0
  994. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-16.2396577126471,0.309451529986822,-8.98925205196757
  995. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000006176775,0.999999943969509,0.999999838698245
  996. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  997. P: "mr 置换视图依赖", "Bool", "", "AU",1
  998. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  999. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1000. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1001. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1002. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1003. P: "MaxHandle", "int", "Integer", "UH",531
  1004. }
  1005. Shading: T
  1006. Culling: "CullingOff"
  1007. }
  1008. Model: 2419454864, "Model::Bone02", "LimbNode" {
  1009. Version: 232
  1010. Properties70: {
  1011. P: "InheritType", "enum", "", "",1
  1012. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1013. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1014. P: "LODBox", "bool", "", "",1
  1015. P: "Lcl Translation", "Lcl Translation", "", "A+",-139.719543457031,-13.0101375579834,3.16339540481567
  1016. P: "Lcl Rotation", "Lcl Rotation", "", "A+",0.0959644012367887,-85.906571684484,-86.1367713107846
  1017. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.07740008831024,1.07740044593811,1.07740044593811
  1018. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1019. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1020. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1021. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1022. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1023. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1024. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1025. P: "MaxHandle", "int", "Integer", "UH",797
  1026. }
  1027. Shading: T
  1028. Culling: "CullingOff"
  1029. }
  1030. Model: 2419461440, "Model::Bip001 L Thigh", "LimbNode" {
  1031. Version: 232
  1032. Properties70: {
  1033. P: "InheritType", "enum", "", "",1
  1034. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1035. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1036. P: "LODBox", "bool", "", "",1
  1037. P: "Lcl Translation", "Lcl Translation", "", "A+",-1.20402336120605,-3.8868088722229,3.72699403762817
  1038. P: "Lcl Rotation", "Lcl Rotation", "", "A+",173.408385648305,-14.1952098734715,-173.739720496139
  1039. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999949383191,0.999999975132728,1.00000005393564
  1040. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1041. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1042. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1043. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1044. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1045. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1046. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1047. P: "MaxHandle", "int", "Integer", "UH",533
  1048. }
  1049. Shading: T
  1050. Culling: "CullingOff"
  1051. }
  1052. Model: 2419432944, "Model::Bip001 L Calf", "LimbNode" {
  1053. Version: 232
  1054. Properties70: {
  1055. P: "RotationActive", "bool", "", "",1
  1056. P: "RotationMinX", "bool", "", "",1
  1057. P: "RotationMinY", "bool", "", "",1
  1058. P: "RotationMaxX", "bool", "", "",1
  1059. P: "RotationMaxY", "bool", "", "",1
  1060. P: "InheritType", "enum", "", "",1
  1061. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1062. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1063. P: "LODBox", "bool", "", "",1
  1064. P: "Lcl Translation", "Lcl Translation", "", "A+",10.8116579055786,1.78813934326172e-007,0
  1065. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-2.00103234135039e-007,-0,-0.195833804291171
  1066. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999999912014,0.999999821118223,1
  1067. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1068. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1069. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1070. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1071. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1072. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1073. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1074. P: "MaxHandle", "int", "Integer", "UH",534
  1075. }
  1076. Shading: T
  1077. Culling: "CullingOff"
  1078. }
  1079. Model: 2419452672, "Model::Bip001 L Foot", "LimbNode" {
  1080. Version: 232
  1081. Properties70: {
  1082. P: "InheritType", "enum", "", "",1
  1083. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1084. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1085. P: "LODBox", "bool", "", "",1
  1086. P: "Lcl Translation", "Lcl Translation", "", "A+",8.1009635925293,2.38418579101563e-007,0
  1087. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-2.91147160726702,-14.7378376290408,0.722466958955154
  1088. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999932746381,1.00000008583696,0.999999908204656
  1089. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1090. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1091. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1092. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1093. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1094. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1095. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1096. P: "MaxHandle", "int", "Integer", "UH",535
  1097. }
  1098. Shading: T
  1099. Culling: "CullingOff"
  1100. }
  1101. Model: 2419457056, "Model::Bip001 L Toe0", "LimbNode" {
  1102. Version: 232
  1103. Properties70: {
  1104. P: "InheritType", "enum", "", "",1
  1105. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1106. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1107. P: "LODBox", "bool", "", "",1
  1108. P: "Lcl Translation", "Lcl Translation", "", "A+",4.13768005371094,5.26696825027466,0
  1109. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-1.63066393729195,0.130951679306155,80.1733462868778
  1110. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000007468884,1.00000008432703,1.00000006535169
  1111. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1112. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1113. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1114. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1115. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1116. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1117. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1118. P: "MaxHandle", "int", "Integer", "UH",536
  1119. }
  1120. Shading: T
  1121. Culling: "CullingOff"
  1122. }
  1123. Model: 2329885824, "Model::Bip001 R Thigh", "LimbNode" {
  1124. Version: 232
  1125. Properties70: {
  1126. P: "InheritType", "enum", "", "",1
  1127. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1128. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1129. P: "LODBox", "bool", "", "",1
  1130. P: "Lcl Translation", "Lcl Translation", "", "A+",-1.29357147216797,-1.13532686233521,-4.70233821868896
  1131. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-167.583777039614,11.2786927870637,178.796516954847
  1132. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999884626809,0.999999967771628,0.999999994906137
  1133. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1134. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1135. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1136. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1137. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1138. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1139. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1140. P: "MaxHandle", "int", "Integer", "UH",538
  1141. }
  1142. Shading: T
  1143. Culling: "CullingOff"
  1144. }
  1145. Model: 2329916512, "Model::Bip001 R Calf", "LimbNode" {
  1146. Version: 232
  1147. Properties70: {
  1148. P: "RotationActive", "bool", "", "",1
  1149. P: "RotationMinX", "bool", "", "",1
  1150. P: "RotationMinY", "bool", "", "",1
  1151. P: "RotationMaxX", "bool", "", "",1
  1152. P: "RotationMaxY", "bool", "", "",1
  1153. P: "InheritType", "enum", "", "",1
  1154. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1155. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1156. P: "LODBox", "bool", "", "",1
  1157. P: "Lcl Translation", "Lcl Translation", "", "A+",10.8116569519043,0,0
  1158. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-5.33608515272033e-007,1.70754727322505e-006,-13.8447235849259
  1159. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001128996,1.00000002555284,0.999999940395355
  1160. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1161. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1162. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1163. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1164. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1165. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1166. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1167. P: "MaxHandle", "int", "Integer", "UH",539
  1168. }
  1169. Shading: T
  1170. Culling: "CullingOff"
  1171. }
  1172. Model: 2329918704, "Model::Bip001 R Foot", "LimbNode" {
  1173. Version: 232
  1174. Properties70: {
  1175. P: "InheritType", "enum", "", "",1
  1176. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1177. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1178. P: "LODBox", "bool", "", "",1
  1179. P: "Lcl Translation", "Lcl Translation", "", "A+",8.10096645355225,4.76837158203125e-007,0
  1180. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-11.7982566337658,11.2167960478191,7.98342797636731
  1181. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999911635072,0.999999795632727,0.999999897979046
  1182. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1183. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1184. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1185. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1186. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1187. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1188. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1189. P: "MaxHandle", "int", "Integer", "UH",540
  1190. }
  1191. Shading: T
  1192. Culling: "CullingOff"
  1193. }
  1194. Model: 2329920896, "Model::Bip001 R Toe0", "LimbNode" {
  1195. Version: 232
  1196. Properties70: {
  1197. P: "InheritType", "enum", "", "",1
  1198. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1199. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1200. P: "LODBox", "bool", "", "",1
  1201. P: "Lcl Translation", "Lcl Translation", "", "A+",4.13767957687378,5.26696872711182,-9.5367431640625e-007
  1202. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-0.112178510227796,0.167415683535744,89.3741429229037
  1203. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000009036759,1.00000000031978,0.999999986705758
  1204. P: "mr 置换使用全局设置", "Bool", "", "AU",1
  1205. P: "mr 置换视图依赖", "Bool", "", "AU",1
  1206. P: "mr 置换方法", "Integer", "", "AU",6,6,6
  1207. P: "mr 置换平滑位置", "Bool", "", "AU",1
  1208. P: "mr 置换边长", "Number", "", "AU",2,2,2
  1209. P: "mr 置换最大置换", "Number", "", "AU",20,20,20
  1210. P: "mr 置换参数化细分级别", "Integer", "", "AU",5,5,5
  1211. P: "MaxHandle", "int", "Integer", "UH",541
  1212. }
  1213. Shading: T
  1214. Culling: "CullingOff"
  1215. }
  1216. AnimationStack: 2412912448, "AnimStack::Take 001", "" {
  1217. Properties70: {
  1218. P: "LocalStop", "KTime", "Time", "",169349246000
  1219. P: "ReferenceStop", "KTime", "Time", "",169349246000
  1220. }
  1221. }
  1222. AnimationLayer: 2321001696, "AnimLayer::BaseLayer", "" {
  1223. }
  1224. AnimationCurveNode: 2412913280, "AnimCurveNode::T", "" {
  1225. Properties70: {
  1226. P: "d|X", "Number", "", "A",0.476473689079285
  1227. P: "d|Y", "Number", "", "A",-1.55201578140259
  1228. P: "d|Z", "Number", "", "A",23.8049583435059
  1229. }
  1230. }
  1231. AnimationCurveNode: 2412903296, "AnimCurveNode::R", "" {
  1232. Properties70: {
  1233. P: "d|X", "Number", "", "A",-2.26379318174441
  1234. P: "d|Y", "Number", "", "A",13.1324834412634
  1235. P: "d|Z", "Number", "", "A",-83.9003821504499
  1236. }
  1237. }
  1238. AnimationCurveNode: 2412915568, "AnimCurveNode::S", "" {
  1239. Properties70: {
  1240. P: "d|X", "Number", "", "A",0.999999994308037
  1241. P: "d|Y", "Number", "", "A",1.00000001820983
  1242. P: "d|Z", "Number", "", "A",0.999999975662261
  1243. }
  1244. }
  1245. AnimationCurveNode: 2412913488, "AnimCurveNode::T", "" {
  1246. Properties70: {
  1247. P: "d|X", "Number", "", "A",0
  1248. P: "d|Y", "Number", "", "A",0
  1249. P: "d|Z", "Number", "", "A",0
  1250. }
  1251. }
  1252. AnimationCurveNode: 2412904128, "AnimCurveNode::R", "" {
  1253. Properties70: {
  1254. P: "d|X", "Number", "", "A",-81.5288804981657
  1255. P: "d|Y", "Number", "", "A",-89.9999202049958
  1256. P: "d|Z", "Number", "", "A",0
  1257. }
  1258. }
  1259. AnimationCurveNode: 2412913904, "AnimCurveNode::S", "" {
  1260. Properties70: {
  1261. P: "d|X", "Number", "", "A",1.00000011921026
  1262. P: "d|Y", "Number", "", "A",1.00000020216991
  1263. P: "d|Z", "Number", "", "A",1.00000009084743
  1264. }
  1265. }
  1266. AnimationCurveNode: 2412915984, "AnimCurveNode::T", "" {
  1267. Properties70: {
  1268. P: "d|X", "Number", "", "A",1.95817756652832
  1269. P: "d|Y", "Number", "", "A",2.0436577796936
  1270. P: "d|Z", "Number", "", "A",-0.302970677614212
  1271. }
  1272. }
  1273. AnimationCurveNode: 2412914736, "AnimCurveNode::R", "" {
  1274. Properties70: {
  1275. P: "d|X", "Number", "", "A",-18.0776498635248
  1276. P: "d|Y", "Number", "", "A",-0.578709403128156
  1277. P: "d|Z", "Number", "", "A",-17.524501705414
  1278. }
  1279. }
  1280. AnimationCurveNode: 2412915152, "AnimCurveNode::S", "" {
  1281. Properties70: {
  1282. P: "d|X", "Number", "", "A",1.000000103912
  1283. P: "d|Y", "Number", "", "A",1.00000000298468
  1284. P: "d|Z", "Number", "", "A",1.00000004282725
  1285. }
  1286. }
  1287. AnimationCurveNode: 2412915360, "AnimCurveNode::T", "" {
  1288. Properties70: {
  1289. P: "d|X", "Number", "", "A",10.0437030792236
  1290. P: "d|Y", "Number", "", "A",-0.00957775115966797
  1291. P: "d|Z", "Number", "", "A",-0.00267505645751953
  1292. }
  1293. }
  1294. AnimationCurveNode: 2412922224, "AnimCurveNode::R", "" {
  1295. Properties70: {
  1296. P: "d|X", "Number", "", "A",15.5814334622431
  1297. P: "d|Y", "Number", "", "A",-2.38686166842312
  1298. P: "d|Z", "Number", "", "A",3.3801115319763
  1299. }
  1300. }
  1301. AnimationCurveNode: 2412928672, "AnimCurveNode::S", "" {
  1302. Properties70: {
  1303. P: "d|X", "Number", "", "A",0.999999934277588
  1304. P: "d|Y", "Number", "", "A",0.999999989931362
  1305. P: "d|Z", "Number", "", "A",1.00000007829068
  1306. }
  1307. }
  1308. AnimationCurveNode: 2412919312, "AnimCurveNode::T", "" {
  1309. Properties70: {
  1310. P: "d|X", "Number", "", "A",11.0813255310059
  1311. P: "d|Y", "Number", "", "A",-1.61406350135803
  1312. P: "d|Z", "Number", "", "A",-0.000134468078613281
  1313. }
  1314. }
  1315. AnimationCurveNode: 2412925552, "AnimCurveNode::R", "" {
  1316. Properties70: {
  1317. P: "d|X", "Number", "", "A",3.55662814404816
  1318. P: "d|Y", "Number", "", "A",-1.55050676542847
  1319. P: "d|Z", "Number", "", "A",5.86870103314291
  1320. }
  1321. }
  1322. AnimationCurveNode: 2412929504, "AnimCurveNode::S", "" {
  1323. Properties70: {
  1324. P: "d|X", "Number", "", "A",1.00000005878901
  1325. P: "d|Y", "Number", "", "A",0.99999993325504
  1326. P: "d|Z", "Number", "", "A",1.00000007735779
  1327. }
  1328. }
  1329. AnimationCurveNode: 2412926384, "AnimCurveNode::T", "" {
  1330. Properties70: {
  1331. P: "d|X", "Number", "", "A",-2.69435119628906
  1332. P: "d|Y", "Number", "", "A",0.722343683242798
  1333. P: "d|Z", "Number", "", "A",3.00108337402344
  1334. }
  1335. }
  1336. AnimationCurveNode: 2412924928, "AnimCurveNode::R", "" {
  1337. Properties70: {
  1338. P: "d|X", "Number", "", "A",152.224147673746
  1339. P: "d|Y", "Number", "", "A",-85.4642835769609
  1340. P: "d|Z", "Number", "", "A",21.7447461508821
  1341. }
  1342. }
  1343. AnimationCurveNode: 2412916400, "AnimCurveNode::S", "" {
  1344. Properties70: {
  1345. P: "d|X", "Number", "", "A",0.999999961971885
  1346. P: "d|Y", "Number", "", "A",1.00000001642849
  1347. P: "d|Z", "Number", "", "A",1.00000002620143
  1348. }
  1349. }
  1350. AnimationCurveNode: 2412925344, "AnimCurveNode::T", "" {
  1351. Properties70: {
  1352. P: "d|X", "Number", "", "A",4.07467842102051
  1353. P: "d|Y", "Number", "", "A",2.38418579101563e-007
  1354. P: "d|Z", "Number", "", "A",-3.814697265625e-006
  1355. }
  1356. }
  1357. AnimationCurveNode: 2412917024, "AnimCurveNode::R", "" {
  1358. Properties70: {
  1359. P: "d|X", "Number", "", "A",21.4376044140465
  1360. P: "d|Y", "Number", "", "A",56.5267530671854
  1361. P: "d|Z", "Number", "", "A",-8.75519655860196
  1362. }
  1363. }
  1364. AnimationCurveNode: 2412925760, "AnimCurveNode::S", "" {
  1365. Properties70: {
  1366. P: "d|X", "Number", "", "A",1.00000001582254
  1367. P: "d|Y", "Number", "", "A",0.999999827752905
  1368. P: "d|Z", "Number", "", "A",0.999999973848528
  1369. }
  1370. }
  1371. AnimationCurveNode: 2412920560, "AnimCurveNode::T", "" {
  1372. Properties70: {
  1373. P: "d|X", "Number", "", "A",10.7939529418945
  1374. P: "d|Y", "Number", "", "A",-9.5367431640625e-007
  1375. P: "d|Z", "Number", "", "A",-1.9073486328125e-006
  1376. }
  1377. }
  1378. AnimationCurveNode: 2412925968, "AnimCurveNode::R", "" {
  1379. Properties70: {
  1380. P: "d|X", "Number", "", "A",1.49410387629517e-006
  1381. P: "d|Y", "Number", "", "A",8.53773643597236e-006
  1382. P: "d|Z", "Number", "", "A",-8.43035218707557
  1383. }
  1384. }
  1385. AnimationCurveNode: 2412927632, "AnimCurveNode::S", "" {
  1386. Properties70: {
  1387. P: "d|X", "Number", "", "A",1.00000000310898
  1388. P: "d|Y", "Number", "", "A",1.00000000310896
  1389. P: "d|Z", "Number", "", "A",1
  1390. }
  1391. }
  1392. AnimationCurveNode: 2412919936, "AnimCurveNode::T", "" {
  1393. Properties70: {
  1394. P: "d|X", "Number", "", "A",5.73199081420898
  1395. P: "d|Y", "Number", "", "A",4.76837158203125e-007
  1396. P: "d|Z", "Number", "", "A",0
  1397. }
  1398. }
  1399. AnimationCurveNode: 2412926592, "AnimCurveNode::R", "" {
  1400. Properties70: {
  1401. P: "d|X", "Number", "", "A",-92.7127827310036
  1402. P: "d|Y", "Number", "", "A",18.3551100008298
  1403. P: "d|Z", "Number", "", "A",-9.29467780607238
  1404. }
  1405. }
  1406. AnimationCurveNode: 2412926176, "AnimCurveNode::S", "" {
  1407. Properties70: {
  1408. P: "d|X", "Number", "", "A",0.999999930325167
  1409. P: "d|Y", "Number", "", "A",0.999999929797972
  1410. P: "d|Z", "Number", "", "A",0.999999999497614
  1411. }
  1412. }
  1413. AnimationCurveNode: 2412928880, "AnimCurveNode::T", "" {
  1414. Properties70: {
  1415. P: "d|X", "Number", "", "A",4.90594291687012
  1416. P: "d|Y", "Number", "", "A",0.427822113037109
  1417. P: "d|Z", "Number", "", "A",-3.27636575698853
  1418. }
  1419. }
  1420. AnimationCurveNode: 2412920144, "AnimCurveNode::R", "" {
  1421. Properties70: {
  1422. P: "d|X", "Number", "", "A",16.947874289601
  1423. P: "d|Y", "Number", "", "A",45.5321273065712
  1424. P: "d|Z", "Number", "", "A",33.9068098193233
  1425. }
  1426. }
  1427. AnimationCurveNode: 2412926800, "AnimCurveNode::S", "" {
  1428. Properties70: {
  1429. P: "d|X", "Number", "", "A",0.999999939050873
  1430. P: "d|Y", "Number", "", "A",1.00000002979089
  1431. P: "d|Z", "Number", "", "A",0.999999994291912
  1432. }
  1433. }
  1434. AnimationCurveNode: 2412927008, "AnimCurveNode::T", "" {
  1435. Properties70: {
  1436. P: "d|X", "Number", "", "A",6.5353889465332
  1437. P: "d|Y", "Number", "", "A",-1.9073486328125e-006
  1438. P: "d|Z", "Number", "", "A",-7.15255737304688e-007
  1439. }
  1440. }
  1441. AnimationCurveNode: 2412927216, "AnimCurveNode::R", "" {
  1442. Properties70: {
  1443. P: "d|X", "Number", "", "A",17.1279725166508
  1444. P: "d|Y", "Number", "", "A",-1.88661415595714
  1445. P: "d|Z", "Number", "", "A",-0.589621653000849
  1446. }
  1447. }
  1448. AnimationCurveNode: 2412929088, "AnimCurveNode::S", "" {
  1449. Properties70: {
  1450. P: "d|X", "Number", "", "A",1.00000001334713
  1451. P: "d|Y", "Number", "", "A",0.999999965384884
  1452. P: "d|Z", "Number", "", "A",0.999999821054708
  1453. }
  1454. }
  1455. AnimationCurveNode: 2412916816, "AnimCurveNode::T", "" {
  1456. Properties70: {
  1457. P: "d|X", "Number", "", "A",194.565704345703
  1458. P: "d|Y", "Number", "", "A",62.0441207885742
  1459. P: "d|Z", "Number", "", "A",8.74915409088135
  1460. }
  1461. }
  1462. AnimationCurveNode: 2412929296, "AnimCurveNode::R", "" {
  1463. Properties70: {
  1464. P: "d|X", "Number", "", "A",-10.6895891273499
  1465. P: "d|Y", "Number", "", "A",-71.8818205652341
  1466. P: "d|Z", "Number", "", "A",95.8346542996659
  1467. }
  1468. }
  1469. AnimationCurveNode: 2412919520, "AnimCurveNode::S", "" {
  1470. Properties70: {
  1471. P: "d|X", "Number", "", "A",1
  1472. P: "d|Y", "Number", "", "A",1.00000035762787
  1473. P: "d|Z", "Number", "", "A",0.999999821186066
  1474. }
  1475. }
  1476. AnimationCurveNode: 2412920352, "AnimCurveNode::T", "" {
  1477. Properties70: {
  1478. P: "d|X", "Number", "", "A",-2.85486221313477
  1479. P: "d|Y", "Number", "", "A",0.354507207870483
  1480. P: "d|Z", "Number", "", "A",-2.9172568321228
  1481. }
  1482. }
  1483. AnimationCurveNode: 2412927424, "AnimCurveNode::R", "" {
  1484. Properties70: {
  1485. P: "d|X", "Number", "", "A",109.082079069474
  1486. P: "d|Y", "Number", "", "A",75.2313322726551
  1487. P: "d|Z", "Number", "", "A",-76.0244934520122
  1488. }
  1489. }
  1490. AnimationCurveNode: 2412921808, "AnimCurveNode::S", "" {
  1491. Properties70: {
  1492. P: "d|X", "Number", "", "A",0.999999936968425
  1493. P: "d|Y", "Number", "", "A",1.00000006415127
  1494. P: "d|Z", "Number", "", "A",0.99999999164234
  1495. }
  1496. }
  1497. AnimationCurveNode: 2412919728, "AnimCurveNode::T", "" {
  1498. Properties70: {
  1499. P: "d|X", "Number", "", "A",4.07467937469482
  1500. P: "d|Y", "Number", "", "A",0
  1501. P: "d|Z", "Number", "", "A",3.814697265625e-006
  1502. }
  1503. }
  1504. AnimationCurveNode: 2412927840, "AnimCurveNode::R", "" {
  1505. Properties70: {
  1506. P: "d|X", "Number", "", "A",-12.4738697007438
  1507. P: "d|Y", "Number", "", "A",-74.5642661147917
  1508. P: "d|Z", "Number", "", "A",12.7671470368502
  1509. }
  1510. }
  1511. AnimationCurveNode: 2412920768, "AnimCurveNode::S", "" {
  1512. Properties70: {
  1513. P: "d|X", "Number", "", "A",0.999999935315198
  1514. P: "d|Y", "Number", "", "A",0.999999855890426
  1515. P: "d|Z", "Number", "", "A",1.00000002674142
  1516. }
  1517. }
  1518. AnimationCurveNode: 2412920976, "AnimCurveNode::T", "" {
  1519. Properties70: {
  1520. P: "d|X", "Number", "", "A",10.7939491271973
  1521. P: "d|Y", "Number", "", "A",-1.19209289550781e-007
  1522. P: "d|Z", "Number", "", "A",0
  1523. }
  1524. }
  1525. AnimationCurveNode: 2412928048, "AnimCurveNode::R", "" {
  1526. Properties70: {
  1527. P: "d|X", "Number", "", "A",-2.13443409214583e-007
  1528. P: "d|Y", "Number", "", "A",-0
  1529. P: "d|Z", "Number", "", "A",-9.2758489316599
  1530. }
  1531. }
  1532. AnimationCurveNode: 2412928256, "AnimCurveNode::S", "" {
  1533. Properties70: {
  1534. P: "d|X", "Number", "", "A",1.00000006742541
  1535. P: "d|Y", "Number", "", "A",1.00000001100205
  1536. P: "d|Z", "Number", "", "A",1
  1537. }
  1538. }
  1539. AnimationCurveNode: 2412921184, "AnimCurveNode::T", "" {
  1540. Properties70: {
  1541. P: "d|X", "Number", "", "A",5.73199462890625
  1542. P: "d|Y", "Number", "", "A",0
  1543. P: "d|Z", "Number", "", "A",0
  1544. }
  1545. }
  1546. AnimationCurveNode: 2412928464, "AnimCurveNode::R", "" {
  1547. Properties70: {
  1548. P: "d|X", "Number", "", "A",76.3459429817388
  1549. P: "d|Y", "Number", "", "A",11.5332179780135
  1550. P: "d|Z", "Number", "", "A",-6.48342075873461
  1551. }
  1552. }
  1553. AnimationCurveNode: 2412924512, "AnimCurveNode::S", "" {
  1554. Properties70: {
  1555. P: "d|X", "Number", "", "A",1.00000003623253
  1556. P: "d|Y", "Number", "", "A",1.00000000057027
  1557. P: "d|Z", "Number", "", "A",1.00000004597318
  1558. }
  1559. }
  1560. AnimationCurveNode: 2412922016, "AnimCurveNode::T", "" {
  1561. Properties70: {
  1562. P: "d|X", "Number", "", "A",4.90594577789307
  1563. P: "d|Y", "Number", "", "A",0.427824020385742
  1564. P: "d|Z", "Number", "", "A",3.27636647224426
  1565. }
  1566. }
  1567. AnimationCurveNode: 2412921392, "AnimCurveNode::R", "" {
  1568. Properties70: {
  1569. P: "d|X", "Number", "", "A",-16.9478724791923
  1570. P: "d|Y", "Number", "", "A",-45.5321225647519
  1571. P: "d|Z", "Number", "", "A",33.9068151919843
  1572. }
  1573. }
  1574. AnimationCurveNode: 2412918272, "AnimCurveNode::S", "" {
  1575. Properties70: {
  1576. P: "d|X", "Number", "", "A",1.00000002028809
  1577. P: "d|Y", "Number", "", "A",1.00000010250044
  1578. P: "d|Z", "Number", "", "A",1.00000020455909
  1579. }
  1580. }
  1581. AnimationCurveNode: 2412924304, "AnimCurveNode::T", "" {
  1582. Properties70: {
  1583. P: "d|X", "Number", "", "A",6.53539180755615
  1584. P: "d|Y", "Number", "", "A",0
  1585. P: "d|Z", "Number", "", "A",1.19209289550781e-007
  1586. }
  1587. }
  1588. AnimationCurveNode: 2412923264, "AnimCurveNode::R", "" {
  1589. Properties70: {
  1590. P: "d|X", "Number", "", "A",-16.3977832653483
  1591. P: "d|Y", "Number", "", "A",5.35926695212577
  1592. P: "d|Z", "Number", "", "A",10.9217871568798
  1593. }
  1594. }
  1595. AnimationCurveNode: 2412923680, "AnimCurveNode::S", "" {
  1596. Properties70: {
  1597. P: "d|X", "Number", "", "A",1.00000020403913
  1598. P: "d|Y", "Number", "", "A",1.0000000662912
  1599. P: "d|Z", "Number", "", "A",1.00000012221188
  1600. }
  1601. }
  1602. AnimationCurveNode: 2412917232, "AnimCurveNode::T", "" {
  1603. Properties70: {
  1604. P: "d|X", "Number", "", "A",115.751731872559
  1605. P: "d|Y", "Number", "", "A",102.723159790039
  1606. P: "d|Z", "Number", "", "A",-9.60890007019043
  1607. }
  1608. }
  1609. AnimationCurveNode: 2412923888, "AnimCurveNode::R", "" {
  1610. Properties70: {
  1611. P: "d|X", "Number", "", "A",-21.619333282343
  1612. P: "d|Y", "Number", "", "A",57.886850582064
  1613. P: "d|Z", "Number", "", "A",114.32750472654
  1614. }
  1615. }
  1616. AnimationCurveNode: 2412921600, "AnimCurveNode::S", "" {
  1617. Properties70: {
  1618. P: "d|X", "Number", "", "A",0.999999761581421
  1619. P: "d|Y", "Number", "", "A",1.00000011920929
  1620. P: "d|Z", "Number", "", "A",0.99999988079071
  1621. }
  1622. }
  1623. AnimationCurveNode: 2412917440, "AnimCurveNode::T", "" {
  1624. Properties70: {
  1625. P: "d|X", "Number", "", "A",2.93931579589844
  1626. P: "d|Y", "Number", "", "A",1.73995685577393
  1627. P: "d|Z", "Number", "", "A",0
  1628. }
  1629. }
  1630. AnimationCurveNode: 2412924096, "AnimCurveNode::R", "" {
  1631. Properties70: {
  1632. P: "d|X", "Number", "", "A",-16.2396577126471
  1633. P: "d|Y", "Number", "", "A",0.309451529986822
  1634. P: "d|Z", "Number", "", "A",-8.98925205196757
  1635. }
  1636. }
  1637. AnimationCurveNode: 2412922432, "AnimCurveNode::S", "" {
  1638. Properties70: {
  1639. P: "d|X", "Number", "", "A",1.00000006176775
  1640. P: "d|Y", "Number", "", "A",0.999999943969509
  1641. P: "d|Z", "Number", "", "A",0.999999838698245
  1642. }
  1643. }
  1644. AnimationCurveNode: 2412917648, "AnimCurveNode::T", "" {
  1645. Properties70: {
  1646. P: "d|X", "Number", "", "A",-139.719543457031
  1647. P: "d|Y", "Number", "", "A",-13.0101375579834
  1648. P: "d|Z", "Number", "", "A",3.16339540481567
  1649. }
  1650. }
  1651. AnimationCurveNode: 2412922640, "AnimCurveNode::R", "" {
  1652. Properties70: {
  1653. P: "d|X", "Number", "", "A",0.0959644012367887
  1654. P: "d|Y", "Number", "", "A",-85.906571684484
  1655. P: "d|Z", "Number", "", "A",-86.1367713107846
  1656. }
  1657. }
  1658. AnimationCurveNode: 2412917856, "AnimCurveNode::S", "" {
  1659. Properties70: {
  1660. P: "d|X", "Number", "", "A",1.07740008831024
  1661. P: "d|Y", "Number", "", "A",1.07740044593811
  1662. P: "d|Z", "Number", "", "A",1.07740044593811
  1663. }
  1664. }
  1665. AnimationCurveNode: 2412918064, "AnimCurveNode::T", "" {
  1666. Properties70: {
  1667. P: "d|X", "Number", "", "A",-1.20402336120605
  1668. P: "d|Y", "Number", "", "A",-3.8868088722229
  1669. P: "d|Z", "Number", "", "A",3.72699403762817
  1670. }
  1671. }
  1672. AnimationCurveNode: 2412922848, "AnimCurveNode::R", "" {
  1673. Properties70: {
  1674. P: "d|X", "Number", "", "A",173.408385648305
  1675. P: "d|Y", "Number", "", "A",-14.1952098734715
  1676. P: "d|Z", "Number", "", "A",-173.739720496139
  1677. }
  1678. }
  1679. AnimationCurveNode: 2412923056, "AnimCurveNode::S", "" {
  1680. Properties70: {
  1681. P: "d|X", "Number", "", "A",0.999999949383191
  1682. P: "d|Y", "Number", "", "A",0.999999975132728
  1683. P: "d|Z", "Number", "", "A",1.00000005393564
  1684. }
  1685. }
  1686. AnimationCurveNode: 2412923472, "AnimCurveNode::T", "" {
  1687. Properties70: {
  1688. P: "d|X", "Number", "", "A",10.8116579055786
  1689. P: "d|Y", "Number", "", "A",1.78813934326172e-007
  1690. P: "d|Z", "Number", "", "A",0
  1691. }
  1692. }
  1693. AnimationCurveNode: 2412924720, "AnimCurveNode::R", "" {
  1694. Properties70: {
  1695. P: "d|X", "Number", "", "A",-2.00103234135039e-007
  1696. P: "d|Y", "Number", "", "A",-0
  1697. P: "d|Z", "Number", "", "A",-0.195833804291171
  1698. }
  1699. }
  1700. AnimationCurveNode: 2412918480, "AnimCurveNode::S", "" {
  1701. Properties70: {
  1702. P: "d|X", "Number", "", "A",0.999999999912014
  1703. P: "d|Y", "Number", "", "A",0.999999821118223
  1704. P: "d|Z", "Number", "", "A",1
  1705. }
  1706. }
  1707. AnimationCurveNode: 2412918688, "AnimCurveNode::T", "" {
  1708. Properties70: {
  1709. P: "d|X", "Number", "", "A",8.1009635925293
  1710. P: "d|Y", "Number", "", "A",2.38418579101563e-007
  1711. P: "d|Z", "Number", "", "A",0
  1712. }
  1713. }
  1714. AnimationCurveNode: 2412918896, "AnimCurveNode::R", "" {
  1715. Properties70: {
  1716. P: "d|X", "Number", "", "A",-2.91147160726702
  1717. P: "d|Y", "Number", "", "A",-14.7378376290408
  1718. P: "d|Z", "Number", "", "A",0.722466958955154
  1719. }
  1720. }
  1721. AnimationCurveNode: 2412919104, "AnimCurveNode::S", "" {
  1722. Properties70: {
  1723. P: "d|X", "Number", "", "A",0.999999932746381
  1724. P: "d|Y", "Number", "", "A",1.00000008583696
  1725. P: "d|Z", "Number", "", "A",0.999999908204656
  1726. }
  1727. }
  1728. AnimationCurveNode: 2412930960, "AnimCurveNode::T", "" {
  1729. Properties70: {
  1730. P: "d|X", "Number", "", "A",4.13768005371094
  1731. P: "d|Y", "Number", "", "A",5.26696825027466
  1732. P: "d|Z", "Number", "", "A",0
  1733. }
  1734. }
  1735. AnimationCurveNode: 2412934288, "AnimCurveNode::R", "" {
  1736. Properties70: {
  1737. P: "d|X", "Number", "", "A",-1.63066393729195
  1738. P: "d|Y", "Number", "", "A",0.130951679306155
  1739. P: "d|Z", "Number", "", "A",80.1733462868778
  1740. }
  1741. }
  1742. AnimationCurveNode: 2412930128, "AnimCurveNode::S", "" {
  1743. Properties70: {
  1744. P: "d|X", "Number", "", "A",1.00000007468884
  1745. P: "d|Y", "Number", "", "A",1.00000008432703
  1746. P: "d|Z", "Number", "", "A",1.00000006535169
  1747. }
  1748. }
  1749. AnimationCurveNode: 2412931168, "AnimCurveNode::T", "" {
  1750. Properties70: {
  1751. P: "d|X", "Number", "", "A",-1.29357147216797
  1752. P: "d|Y", "Number", "", "A",-1.13532686233521
  1753. P: "d|Z", "Number", "", "A",-4.70233821868896
  1754. }
  1755. }
  1756. AnimationCurveNode: 2412930336, "AnimCurveNode::R", "" {
  1757. Properties70: {
  1758. P: "d|X", "Number", "", "A",-167.583777039614
  1759. P: "d|Y", "Number", "", "A",11.2786927870637
  1760. P: "d|Z", "Number", "", "A",178.796516954847
  1761. }
  1762. }
  1763. AnimationCurveNode: 2412930544, "AnimCurveNode::S", "" {
  1764. Properties70: {
  1765. P: "d|X", "Number", "", "A",0.999999884626809
  1766. P: "d|Y", "Number", "", "A",0.999999967771628
  1767. P: "d|Z", "Number", "", "A",0.999999994906137
  1768. }
  1769. }
  1770. AnimationCurveNode: 2412931376, "AnimCurveNode::T", "" {
  1771. Properties70: {
  1772. P: "d|X", "Number", "", "A",10.8116569519043
  1773. P: "d|Y", "Number", "", "A",0
  1774. P: "d|Z", "Number", "", "A",0
  1775. }
  1776. }
  1777. AnimationCurveNode: 2412935536, "AnimCurveNode::R", "" {
  1778. Properties70: {
  1779. P: "d|X", "Number", "", "A",-5.33608515272033e-007
  1780. P: "d|Y", "Number", "", "A",1.70754727322505e-006
  1781. P: "d|Z", "Number", "", "A",-13.8447235849259
  1782. }
  1783. }
  1784. AnimationCurveNode: 2412933664, "AnimCurveNode::S", "" {
  1785. Properties70: {
  1786. P: "d|X", "Number", "", "A",1.00000001128996
  1787. P: "d|Y", "Number", "", "A",1.00000002555284
  1788. P: "d|Z", "Number", "", "A",0.999999940395355
  1789. }
  1790. }
  1791. AnimationCurveNode: 2412935328, "AnimCurveNode::T", "" {
  1792. Properties70: {
  1793. P: "d|X", "Number", "", "A",8.10096645355225
  1794. P: "d|Y", "Number", "", "A",4.76837158203125e-007
  1795. P: "d|Z", "Number", "", "A",0
  1796. }
  1797. }
  1798. AnimationCurveNode: 2412930752, "AnimCurveNode::R", "" {
  1799. Properties70: {
  1800. P: "d|X", "Number", "", "A",-11.7982566337658
  1801. P: "d|Y", "Number", "", "A",11.2167960478191
  1802. P: "d|Z", "Number", "", "A",7.98342797636731
  1803. }
  1804. }
  1805. AnimationCurveNode: 2412934496, "AnimCurveNode::S", "" {
  1806. Properties70: {
  1807. P: "d|X", "Number", "", "A",0.999999911635072
  1808. P: "d|Y", "Number", "", "A",0.999999795632727
  1809. P: "d|Z", "Number", "", "A",0.999999897979046
  1810. }
  1811. }
  1812. AnimationCurveNode: 2412929920, "AnimCurveNode::T", "" {
  1813. Properties70: {
  1814. P: "d|X", "Number", "", "A",4.13767957687378
  1815. P: "d|Y", "Number", "", "A",5.26696872711182
  1816. P: "d|Z", "Number", "", "A",-9.5367431640625e-007
  1817. }
  1818. }
  1819. AnimationCurveNode: 2412931584, "AnimCurveNode::R", "" {
  1820. Properties70: {
  1821. P: "d|X", "Number", "", "A",-0.112178510227796
  1822. P: "d|Y", "Number", "", "A",0.167415683535744
  1823. P: "d|Z", "Number", "", "A",89.3741429229037
  1824. }
  1825. }
  1826. AnimationCurveNode: 2412931792, "AnimCurveNode::S", "" {
  1827. Properties70: {
  1828. P: "d|X", "Number", "", "A",1.00000009036759
  1829. P: "d|Y", "Number", "", "A",1.00000000031978
  1830. P: "d|Z", "Number", "", "A",0.999999986705758
  1831. }
  1832. }
  1833. AnimationCurve: 2736181120, "AnimCurve::", "" {
  1834. Default: 0
  1835. KeyVer: 4008
  1836. KeyTime: *111 {
  1837. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1838. }
  1839. KeyValueFloat: *111 {
  1840. a: 0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.7006748,0.8485125,0.7394829,0.5350156,0.3329035,0.1665739,0.006823838,-0.1448449,-0.2930199,-0.4429878,-0.6445775,-0.7563112,-0.6606429,-0.4833105,-0.3075629,-0.1663282,-0.02029175,0.1697001,0.3655449,0.4764737,0.5076735,0.5262656,0.5343781,0.5341388,0.5276755,0.5171161,0.5045882,0.4922203,0.4821393,0.4764737,0.4730608,0.4684755,0.4629489,0.456714,0.4500023,0.4430466,0.4360784,0.4293303,0.4230343,0.4174228,0.4127275,0.409181,0.4070152,0.4064624,0.4077548,0.4104077,0.4137483,0.4177251,0.4222876,0.4273845,0.4329656,0.4389794,0.4453747,0.4521012,0.4591081,0.4663438,0.4737576,0.4812986,0.4889164,0.4965593,0.5041765,0.5117179,0.5191314,0.5263666,0.5333728,0.540099,0.546494,0.552507,0.558087,0.5631834,0.567745,0.5717207,0.57506,0.5777117,0.579625,0.5800422,0.5783967,0.5749238,0.5698594,0.5634388,0.5558978,0.5474718,0.5383967,0.5289074,0.51924,0.5096297,0.5003127,0.4915237,0.4834992,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737,0.4764737
  1841. }
  1842. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1843. KeyAttrFlags: *1 {
  1844. a: 8456
  1845. }
  1846. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1847. KeyAttrDataFloat: *4 {
  1848. a: 0,0,218434821,0
  1849. }
  1850. KeyAttrRefCount: *1 {
  1851. a: 111
  1852. }
  1853. }
  1854. AnimationCurve: 2736181600, "AnimCurve::", "" {
  1855. Default: 0
  1856. KeyVer: 4008
  1857. KeyTime: *111 {
  1858. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1859. }
  1860. KeyValueFloat: *111 {
  1861. a: -1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.024516,-0.6491899,-0.8315184,-1.215989,-1.569035,-1.8225,-1.946594,-1.907654,-1.785139,-1.572726,-1.046304,-0.6492432,-0.8315085,-1.218658,-1.568991,-1.80119,-1.906014,-1.818779,-1.655141,-1.552016,-1.529856,-1.516794,-1.511265,-1.511704,-1.516545,-1.524224,-1.533176,-1.541835,-1.548637,-1.552016,-1.553528,-1.555682,-1.558343,-1.561375,-1.564645,-1.568017,-1.571355,-1.574525,-1.577392,-1.579821,-1.581676,-1.582823,-1.583127,-1.582451,-1.580663,-1.578006,-1.574842,-1.571213,-1.567157,-1.562716,-1.55793,-1.552839,-1.547484,-1.541905,-1.536141,-1.530235,-1.524226,-1.518154,-1.512059,-1.505983,-1.499966,-1.494047,-1.488267,-1.482667,-1.477286,-1.472166,-1.467347,-1.462868,-1.458771,-1.455096,-1.451882,-1.449171,-1.447003,-1.445417,-1.444456,-1.444853,-1.447172,-1.451193,-1.456695,-1.463457,-1.471261,-1.479886,-1.489111,-1.498717,-1.508484,-1.51819,-1.527617,-1.536543,-1.54475,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016,-1.552016
  1862. }
  1863. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1864. KeyAttrFlags: *1 {
  1865. a: 8456
  1866. }
  1867. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1868. KeyAttrDataFloat: *4 {
  1869. a: 0,0,218434821,0
  1870. }
  1871. KeyAttrRefCount: *1 {
  1872. a: 111
  1873. }
  1874. }
  1875. AnimationCurve: 2736187040, "AnimCurve::", "" {
  1876. Default: 0
  1877. KeyVer: 4008
  1878. KeyTime: *111 {
  1879. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1880. }
  1881. KeyValueFloat: *111 {
  1882. a: 23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.30787,22.97598,23.23118,23.69464,24.07534,24.20322,24.18768,24.13498,24.03754,23.85293,23.34275,22.97598,23.22703,23.69272,24.07541,24.20459,24.18576,24.0695,23.90468,23.80496,23.78123,23.76747,23.7619,23.76278,23.76834,23.77684,23.7865,23.79559,23.80232,23.80496,23.80485,23.80454,23.80404,23.80336,23.80252,23.80154,23.80042,23.79919,23.79785,23.79643,23.79493,23.79338,23.79178,23.79015,23.78851,23.78687,23.78524,23.78364,23.78209,23.78059,23.77917,23.77783,23.7766,23.77548,23.7745,23.77366,23.77298,23.77248,23.77217,23.77206,23.77217,23.77248,23.77298,23.77366,23.7745,23.77548,23.7766,23.77783,23.77917,23.78059,23.78209,23.78364,23.78524,23.78687,23.78851,23.79015,23.79178,23.79338,23.79493,23.79643,23.79785,23.79919,23.80042,23.80154,23.80252,23.80336,23.80404,23.80454,23.80485,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496,23.80496
  1883. }
  1884. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1885. KeyAttrFlags: *1 {
  1886. a: 8456
  1887. }
  1888. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1889. KeyAttrDataFloat: *4 {
  1890. a: 0,0,218434821,0
  1891. }
  1892. KeyAttrRefCount: *1 {
  1893. a: 111
  1894. }
  1895. }
  1896. AnimationCurve: 2736184000, "AnimCurve::", "" {
  1897. Default: -2.26379323005676
  1898. KeyVer: 4008
  1899. KeyTime: *111 {
  1900. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1901. }
  1902. KeyValueFloat: *111 {
  1903. a: -2.263793,-2.263793,-2.263793,-2.263793,-2.263793,-2.263793,-2.263793,-2.263793,-2.263793,-2.263793,-2.263793,-2.846664,-7.577696,-9.825722,-8.040833,-5.005661,-2.236678,0.1969224,2.27479,3.549984,4.335561,4.902884,5.630388,5.752579,4.803611,3.814552,3.044263,1.753069,0.1901161,-0.9568001,-2.062616,-2.846661,-2.263793,-2.263793,-2.263794,-2.263793,-2.263793,-2.263793,-2.263794,-2.263793,-2.263793,-2.263794,-2.263795,-2.263794,-2.263795,-2.263796,-2.263796,-2.263796,-2.263797,-2.263798,-2.263799,-2.2638,-2.2638,-2.2638,-2.263801,-2.263801,-2.263803,-2.263803,-2.263804,-2.263803,-2.263804,-2.263805,-2.263804,-2.263804,-2.263805,-2.263807,-2.263806,-2.263807,-2.263806,-2.263808,-2.263807,-2.263807,-2.263807,-2.263807,-2.263806,-2.263805,-2.263806,-2.263806,-2.263805,-2.263804,-2.263804,-2.263803,-2.263804,-2.263803,-2.263803,-2.263802,-2.2638,-2.2638,-2.2638,-2.263799,-2.263799,-2.263798,-2.263798,-2.263796,-2.263796,-2.263794,-2.263795,-2.263793,-2.263793,-2.263793,-2.263792,-2.263792,-2.263792,-2.263792,-2.263791,-2.263792,-2.263792,-2.263792,-2.263793,-2.263793,-2.263793
  1904. }
  1905. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1906. KeyAttrFlags: *1 {
  1907. a: 8456
  1908. }
  1909. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1910. KeyAttrDataFloat: *4 {
  1911. a: 0,0,218434821,0
  1912. }
  1913. KeyAttrRefCount: *1 {
  1914. a: 111
  1915. }
  1916. }
  1917. AnimationCurve: 2736184320, "AnimCurve::", "" {
  1918. Default: 13.1324834823608
  1919. KeyVer: 4008
  1920. KeyTime: *111 {
  1921. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1922. }
  1923. KeyValueFloat: *111 {
  1924. a: 13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,39.23457,38.15425,33.70345,35.96119,40.06803,43.41698,44.02546,42.89196,41.14342,38.9212,36.66654,33.86511,32.38361,34.06332,37.05494,39.68323,40.98,41.2824,42.29996,42.90454,39.23457,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13249,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13249,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13249,13.13249,13.13248,13.13249,13.13248,13.13249,13.13249,13.13249,13.13249,13.13248,13.13249,13.13249,13.13249,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248,13.13248
  1925. }
  1926. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1927. KeyAttrFlags: *1 {
  1928. a: 8456
  1929. }
  1930. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1931. KeyAttrDataFloat: *4 {
  1932. a: 0,0,218434821,0
  1933. }
  1934. KeyAttrRefCount: *1 {
  1935. a: 111
  1936. }
  1937. }
  1938. AnimationCurve: 2736179680, "AnimCurve::", "" {
  1939. Default: -83.9003829956055
  1940. KeyVer: 4008
  1941. KeyTime: *111 {
  1942. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1943. }
  1944. KeyValueFloat: *111 {
  1945. a: -83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-85.18719,-91.78623,-97.71904,-103.232,-108.4004,-111.2259,-108.1328,-102.6539,-98.90638,-95.51026,-92.6937,-91.73372,-89.86687,-83.70181,-76.05605,-70.60582,-71.64807,-75.7134,-78.98873,-82.48101,-85.18719,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90038,-83.90037,-83.96718,-84.03825,-84.11315,-84.19138,-84.27253,-84.35612,-84.44168,-84.52876,-84.6169,-84.70564,-84.79453,-84.88309,-84.97089,-85.05745,-85.14233,-85.22504,-85.30515,-85.38219,-85.45571,-85.52524,-85.59033,-85.65051,-85.70533,-85.75433,-85.79705,-85.83303,-85.86182,-85.88295,-85.89596,-85.90039,-85.89596,-85.88293,-85.86182,-85.83302,-85.79705,-85.75432,-85.70532,-85.65051,-85.59033,-85.52523,-85.4557,-85.38219,-85.30515,-85.22504,-85.14231,-85.05744,-84.97087,-84.88307,-84.79452,-84.70563,-84.61687,-84.52874,-84.44166,-84.35609,-84.27251,-84.19138,-84.11313,-84.03824,-83.96715,-83.90034,-83.90034,-83.90034,-83.90035,-83.90036,-83.90037,-83.90037,-83.90038,-83.90038,-83.90038
  1946. }
  1947. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1948. KeyAttrFlags: *1 {
  1949. a: 8456
  1950. }
  1951. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1952. KeyAttrDataFloat: *4 {
  1953. a: 0,0,218434821,0
  1954. }
  1955. KeyAttrRefCount: *1 {
  1956. a: 111
  1957. }
  1958. }
  1959. AnimationCurve: 2736181440, "AnimCurve::", "" {
  1960. Default: 0
  1961. KeyVer: 4008
  1962. KeyTime: *111 {
  1963. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1964. }
  1965. KeyValueFloat: *111 {
  1966. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999998,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1
  1967. }
  1968. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1969. KeyAttrFlags: *1 {
  1970. a: 8456
  1971. }
  1972. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1973. KeyAttrDataFloat: *4 {
  1974. a: 0,0,218434821,0
  1975. }
  1976. KeyAttrRefCount: *1 {
  1977. a: 111
  1978. }
  1979. }
  1980. AnimationCurve: 2736188960, "AnimCurve::", "" {
  1981. Default: 0
  1982. KeyVer: 4008
  1983. KeyTime: *111 {
  1984. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  1985. }
  1986. KeyValueFloat: *111 {
  1987. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999998,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1
  1988. }
  1989. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  1990. KeyAttrFlags: *1 {
  1991. a: 8456
  1992. }
  1993. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1994. KeyAttrDataFloat: *4 {
  1995. a: 0,0,218434821,0
  1996. }
  1997. KeyAttrRefCount: *1 {
  1998. a: 111
  1999. }
  2000. }
  2001. AnimationCurve: 2736183040, "AnimCurve::", "" {
  2002. Default: 0
  2003. KeyVer: 4008
  2004. KeyTime: *111 {
  2005. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2006. }
  2007. KeyValueFloat: *111 {
  2008. a: 1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1
  2009. }
  2010. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2011. KeyAttrFlags: *1 {
  2012. a: 8456
  2013. }
  2014. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2015. KeyAttrDataFloat: *4 {
  2016. a: 0,0,218434821,0
  2017. }
  2018. KeyAttrRefCount: *1 {
  2019. a: 111
  2020. }
  2021. }
  2022. AnimationCurve: 2736182080, "AnimCurve::", "" {
  2023. Default: 0
  2024. KeyVer: 4008
  2025. KeyTime: *111 {
  2026. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2027. }
  2028. KeyValueFloat: *111 {
  2029. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  2030. }
  2031. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2032. KeyAttrFlags: *1 {
  2033. a: 8456
  2034. }
  2035. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2036. KeyAttrDataFloat: *4 {
  2037. a: 0,0,218434821,0
  2038. }
  2039. KeyAttrRefCount: *1 {
  2040. a: 111
  2041. }
  2042. }
  2043. AnimationCurve: 2736186880, "AnimCurve::", "" {
  2044. Default: 0
  2045. KeyVer: 4008
  2046. KeyTime: *111 {
  2047. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2048. }
  2049. KeyValueFloat: *111 {
  2050. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  2051. }
  2052. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2053. KeyAttrFlags: *1 {
  2054. a: 8456
  2055. }
  2056. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2057. KeyAttrDataFloat: *4 {
  2058. a: 0,0,218434821,0
  2059. }
  2060. KeyAttrRefCount: *1 {
  2061. a: 111
  2062. }
  2063. }
  2064. AnimationCurve: 2736189120, "AnimCurve::", "" {
  2065. Default: 0
  2066. KeyVer: 4008
  2067. KeyTime: *111 {
  2068. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2069. }
  2070. KeyValueFloat: *111 {
  2071. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  2072. }
  2073. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2074. KeyAttrFlags: *1 {
  2075. a: 8456
  2076. }
  2077. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2078. KeyAttrDataFloat: *4 {
  2079. a: 0,0,218434821,0
  2080. }
  2081. KeyAttrRefCount: *1 {
  2082. a: 111
  2083. }
  2084. }
  2085. AnimationCurve: 2736179840, "AnimCurve::", "" {
  2086. Default: -81.5288772583008
  2087. KeyVer: 4008
  2088. KeyTime: *111 {
  2089. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2090. }
  2091. KeyValueFloat: *111 {
  2092. a: -81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-83.26122,-85.28486,-87.48826,-89.75981,-91.988,-94.06124,-95.86794,-97.29659,-98.23558,-98.57337,-98.17282,-97.07346,-95.42867,-93.39185,-91.11641,-88.75574,-86.46326,-84.39235,-82.69643,-81.52888,-80.83858,-80.43803,-80.27611,-80.30167,-80.46359,-80.71074,-80.99198,-81.25616,-81.45218,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888,-81.52888
  2093. }
  2094. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2095. KeyAttrFlags: *1 {
  2096. a: 8456
  2097. }
  2098. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2099. KeyAttrDataFloat: *4 {
  2100. a: 0,0,218434821,0
  2101. }
  2102. KeyAttrRefCount: *1 {
  2103. a: 111
  2104. }
  2105. }
  2106. AnimationCurve: 2736188640, "AnimCurve::", "" {
  2107. Default: -89.9999237060547
  2108. KeyVer: 4008
  2109. KeyTime: *111 {
  2110. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2111. }
  2112. KeyValueFloat: *111 {
  2113. a: -89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992
  2114. }
  2115. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2116. KeyAttrFlags: *1 {
  2117. a: 8456
  2118. }
  2119. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2120. KeyAttrDataFloat: *4 {
  2121. a: 0,0,218434821,0
  2122. }
  2123. KeyAttrRefCount: *1 {
  2124. a: 111
  2125. }
  2126. }
  2127. AnimationCurve: 2736180640, "AnimCurve::", "" {
  2128. Default: 0
  2129. KeyVer: 4008
  2130. KeyTime: *111 {
  2131. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2132. }
  2133. KeyValueFloat: *111 {
  2134. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  2135. }
  2136. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2137. KeyAttrFlags: *1 {
  2138. a: 8456
  2139. }
  2140. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2141. KeyAttrDataFloat: *4 {
  2142. a: 0,0,218434821,0
  2143. }
  2144. KeyAttrRefCount: *1 {
  2145. a: 111
  2146. }
  2147. }
  2148. AnimationCurve: 2736189280, "AnimCurve::", "" {
  2149. Default: 0
  2150. KeyVer: 4008
  2151. KeyTime: *111 {
  2152. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2153. }
  2154. KeyValueFloat: *111 {
  2155. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999998,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1
  2156. }
  2157. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2158. KeyAttrFlags: *1 {
  2159. a: 8456
  2160. }
  2161. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2162. KeyAttrDataFloat: *4 {
  2163. a: 0,0,218434821,0
  2164. }
  2165. KeyAttrRefCount: *1 {
  2166. a: 111
  2167. }
  2168. }
  2169. AnimationCurve: 2736180800, "AnimCurve::", "" {
  2170. Default: 0
  2171. KeyVer: 4008
  2172. KeyTime: *111 {
  2173. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2174. }
  2175. KeyValueFloat: *111 {
  2176. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1
  2177. }
  2178. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2179. KeyAttrFlags: *1 {
  2180. a: 8456
  2181. }
  2182. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2183. KeyAttrDataFloat: *4 {
  2184. a: 0,0,218434821,0
  2185. }
  2186. KeyAttrRefCount: *1 {
  2187. a: 111
  2188. }
  2189. }
  2190. AnimationCurve: 2736181760, "AnimCurve::", "" {
  2191. Default: 0
  2192. KeyVer: 4008
  2193. KeyTime: *111 {
  2194. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2195. }
  2196. KeyValueFloat: *111 {
  2197. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1
  2198. }
  2199. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2200. KeyAttrFlags: *1 {
  2201. a: 8456
  2202. }
  2203. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2204. KeyAttrDataFloat: *4 {
  2205. a: 0,0,218434821,0
  2206. }
  2207. KeyAttrRefCount: *1 {
  2208. a: 111
  2209. }
  2210. }
  2211. AnimationCurve: 2736183840, "AnimCurve::", "" {
  2212. Default: 0
  2213. KeyVer: 4008
  2214. KeyTime: *111 {
  2215. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2216. }
  2217. KeyValueFloat: *111 {
  2218. a: 1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.960665,1.960781,1.960472,1.960451,1.960606,1.960896,1.961113,1.961285,1.961224,1.961163,1.961094,1.961058,1.960949,1.96072,1.960577,1.960575,1.960587,1.960585,1.960747,1.96092,1.960665,1.958178,1.958176,1.958178,1.958178,1.958176,1.958174,1.958178,1.958176,1.958178,1.958178,1.958181,1.958191,1.958199,1.958206,1.95822,1.958225,1.958237,1.958246,1.95825,1.958258,1.958263,1.958271,1.958273,1.958273,1.958271,1.958271,1.958267,1.958261,1.958258,1.958254,1.95825,1.958246,1.958241,1.958231,1.958223,1.958214,1.95821,1.9582,1.958193,1.958187,1.958179,1.95817,1.958168,1.958158,1.958151,1.958143,1.958136,1.958132,1.958126,1.95812,1.958111,1.958109,1.958103,1.958099,1.958099,1.958097,1.958097,1.958103,1.958105,1.958107,1.958111,1.958124,1.958124,1.958136,1.958143,1.958153,1.958157,1.958164,1.95817,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178,1.958178
  2219. }
  2220. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2221. KeyAttrFlags: *1 {
  2222. a: 8456
  2223. }
  2224. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2225. KeyAttrDataFloat: *4 {
  2226. a: 0,0,218434821,0
  2227. }
  2228. KeyAttrRefCount: *1 {
  2229. a: 111
  2230. }
  2231. }
  2232. AnimationCurve: 2736185440, "AnimCurve::", "" {
  2233. Default: 0
  2234. KeyVer: 4008
  2235. KeyTime: *111 {
  2236. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2237. }
  2238. KeyValueFloat: *111 {
  2239. a: 2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043268,2.051476,2.058637,2.063533,2.065655,2.064792,2.061072,2.055552,2.049543,2.044843,2.042937,2.044985,2.050088,2.056276,2.061943,2.065487,2.065632,2.062232,2.056204,2.049178,2.043268,2.03986,2.03752,2.036546,2.036701,2.037672,2.039124,2.04073,2.042193,2.043251,2.043658,2.043658,2.043658,2.043657,2.043656,2.043655,2.043654,2.043653,2.043653,2.043653,2.043653,2.043653,2.043651,2.043652,2.043652,2.043651,2.043651,2.043652,2.043652,2.043651,2.043651,2.043652,2.043651,2.043652,2.043653,2.043653,2.043654,2.043654,2.043655,2.043654,2.043655,2.043656,2.043656,2.043656,2.043657,2.043657,2.043658,2.043659,2.043659,2.043659,2.04366,2.043661,2.04366,2.043662,2.043661,2.043661,2.043662,2.043663,2.043662,2.043662,2.043662,2.043663,2.043661,2.043661,2.043661,2.04366,2.043658,2.043659,2.043659,2.043659,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658,2.043658
  2240. }
  2241. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2242. KeyAttrFlags: *1 {
  2243. a: 8456
  2244. }
  2245. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2246. KeyAttrDataFloat: *4 {
  2247. a: 0,0,218434821,0
  2248. }
  2249. KeyAttrRefCount: *1 {
  2250. a: 111
  2251. }
  2252. }
  2253. AnimationCurve: 2736187520, "AnimCurve::", "" {
  2254. Default: 0
  2255. KeyVer: 4008
  2256. KeyTime: *111 {
  2257. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2258. }
  2259. KeyValueFloat: *111 {
  2260. a: -0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3029707,-0.3030683,-0.2412469,-0.1690067,-0.09078932,-0.01021361,0.0691368,0.1435179,0.2084038,0.259922,0.2938133,0.3061795,0.2919951,0.253067,0.1952929,0.1235746,0.04275995,-0.04199839,-0.1247396,-0.1995834,-0.260913,-0.3030682,-0.3275703,-0.3418224,-0.3475792,-0.3466704,-0.3409133,-0.3321206,-0.3221077,-0.3126945,-0.3057063,-0.3029708,-0.3029662,-0.3029613,-0.3029555,-0.3029495,-0.3029434,-0.3029369,-0.302931,-0.3029252,-0.3029195,-0.3029149,-0.302911,-0.302908,-0.3029059,-0.3029051,-0.3029056,-0.3029074,-0.3029096,-0.3029125,-0.3029156,-0.3029192,-0.3029233,-0.3029276,-0.3029324,-0.3029374,-0.3029426,-0.3029479,-0.3029533,-0.3029591,-0.3029648,-0.3029704,-0.3029763,-0.3029819,-0.3029876,-0.3029931,-0.3029984,-0.3030036,-0.3030086,-0.3030133,-0.3030177,-0.3030216,-0.3030253,-0.3030286,-0.3030314,-0.3030336,-0.3030353,-0.3030359,-0.3030353,-0.3030333,-0.3030301,-0.3030263,-0.3030216,-0.3030161,-0.3030105,-0.3030042,-0.302998,-0.3029919,-0.3029858,-0.3029802,-0.3029752,-0.3029708,-0.3029708,-0.3029708,-0.3029709,-0.3029707,-0.3029707,-0.3029705,-0.3029708,-0.3029709,-0.3029707
  2261. }
  2262. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2263. KeyAttrFlags: *1 {
  2264. a: 8456
  2265. }
  2266. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2267. KeyAttrDataFloat: *4 {
  2268. a: 0,0,218434821,0
  2269. }
  2270. KeyAttrRefCount: *1 {
  2271. a: 111
  2272. }
  2273. }
  2274. AnimationCurve: 2736183200, "AnimCurve::", "" {
  2275. Default: -18.0776500701904
  2276. KeyVer: 4008
  2277. KeyTime: *111 {
  2278. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2279. }
  2280. KeyValueFloat: *111 {
  2281. a: -18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-17.40649,-15.04867,-10.40524,-0.5741101,11.10111,21.11511,25.43129,27.22835,25.92639,24.12525,21.91942,20.62739,16.63488,6.290214,-6.444545,-17.33952,-22.43611,-23.47135,-22.3763,-19.71932,-17.40649,-18.73598,-19.11799,-19.27243,-19.24805,-19.09361,-18.85789,-18.58967,-18.33772,-18.1508,-18.07765,-18.11126,-18.15,-18.19267,-18.23804,-18.28491,-18.33207,-18.37829,-18.42236,-18.46306,-18.49917,-18.52948,-18.55277,-18.56781,-18.57339,-18.56828,-18.55531,-18.53827,-18.51746,-18.49317,-18.46569,-18.43531,-18.40232,-18.36702,-18.32968,-18.29062,-18.2501,-18.20844,-18.1659,-18.1228,-18.07941,-18.03603,-17.99294,-17.95044,-17.9088,-17.86834,-17.82932,-17.79204,-17.75679,-17.72386,-17.69353,-17.66609,-17.64184,-17.62105,-17.60402,-17.59103,-17.58587,-17.5913,-17.60613,-17.62915,-17.65916,-17.69494,-17.73529,-17.77901,-17.82487,-17.87169,-17.91825,-17.96334,-18.00574,-18.04425,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765,-18.07765
  2282. }
  2283. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2284. KeyAttrFlags: *1 {
  2285. a: 8456
  2286. }
  2287. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2288. KeyAttrDataFloat: *4 {
  2289. a: 0,0,218434821,0
  2290. }
  2291. KeyAttrRefCount: *1 {
  2292. a: 111
  2293. }
  2294. }
  2295. AnimationCurve: 2736183520, "AnimCurve::", "" {
  2296. Default: -0.578709423542023
  2297. KeyVer: 4008
  2298. KeyTime: *111 {
  2299. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2300. }
  2301. KeyValueFloat: *111 {
  2302. a: -0.5787094,-0.5787094,-0.5787094,-0.5787094,-0.5787094,-0.5787094,-0.5787094,-0.5787094,-0.5787094,-0.5787094,-0.5787089,4.99102,5.979734,4.434746,-1.397718,-8.868953,-14.10958,-13.84048,-11.55288,-11.44038,-11.31923,-10.81057,-9.858957,-7.38185,-2.044965,4.116634,8.142862,7.315898,5.156168,5.175798,5.547463,4.99102,-0.7865263,-0.9070646,-0.9557824,-0.9480901,-0.8993729,-0.8250001,-0.7403507,-0.6608201,-0.6018039,-0.5787102,-0.584079,-0.5902618,-0.5970449,-0.6042171,-0.6115744,-0.618917,-0.6260498,-0.6327854,-0.6389406,-0.644336,-0.6487958,-0.652149,-0.6542187,-0.6548274,-0.6537933,-0.6515367,-0.6486271,-0.6451072,-0.6410205,-0.6364066,-0.6313092,-0.6257685,-0.6198275,-0.6135272,-0.6069119,-0.6000264,-0.5929144,-0.5856236,-0.5781994,-0.5706914,-0.5631493,-0.5556216,-0.5481635,-0.5408257,-0.5336629,-0.5267311,-0.5200849,-0.513783,-0.5078818,-0.5024415,-0.4975179,-0.4931725,-0.489463,-0.4864492,-0.4841876,-0.4834222,-0.4847009,-0.4877879,-0.4924418,-0.4984212,-0.5054786,-0.5133737,-0.5218659,-0.5307162,-0.5396951,-0.5485736,-0.5571297,-0.5651465,-0.57241,-0.5787102,-0.5787102,-0.5787101,-0.5787101,-0.5787097,-0.57871,-0.5787101,-0.5787096,-0.5787098,-0.5787094
  2303. }
  2304. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2305. KeyAttrFlags: *1 {
  2306. a: 8456
  2307. }
  2308. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2309. KeyAttrDataFloat: *4 {
  2310. a: 0,0,218434821,0
  2311. }
  2312. KeyAttrRefCount: *1 {
  2313. a: 111
  2314. }
  2315. }
  2316. AnimationCurve: 2736184960, "AnimCurve::", "" {
  2317. Default: -17.5245018005371
  2318. KeyVer: 4008
  2319. KeyTime: *111 {
  2320. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2321. }
  2322. KeyValueFloat: *111 {
  2323. a: -17.5245,-17.5245,-17.5245,-17.5245,-17.5245,-17.5245,-17.5245,-17.5245,-17.5245,-17.5245,-17.5245,-0.2423789,0.5654151,-0.9386957,-0.2690487,-0.8576322,-2.260281,-1.561932,0.5260383,0.3382199,0.2484996,0.355943,0.6760415,1.258614,1.442193,0.1703184,-1.887437,-2.266685,-1.497562,-0.1267405,1.285275,-0.2423789,-17.51666,-17.51101,-17.5085,-17.50891,-17.5114,-17.51495,-17.51861,-17.52169,-17.52375,-17.52451,-17.47415,-17.41639,-17.35296,-17.28563,-17.21614,-17.14622,-17.07765,-17.01215,-16.95148,-16.89739,-16.85163,-16.81595,-16.7921,-16.78183,-16.78688,-16.80314,-16.82505,-16.8522,-16.88421,-16.92067,-16.9612,-17.00538,-17.05284,-17.10317,-17.15597,-17.21084,-17.2674,-17.32524,-17.38397,-17.4432,-17.50252,-17.56155,-17.61988,-17.67712,-17.73288,-17.78676,-17.83837,-17.8873,-17.93317,-17.9756,-18.01416,-18.04848,-18.07816,-18.1028,-18.12201,-18.13099,-18.12622,-18.10926,-18.08168,-18.04504,-18.00091,-17.95085,-17.89642,-17.83918,-17.7807,-17.72255,-17.66628,-17.61348,-17.5657,-17.52451,-17.52451,-17.52451,-17.52451,-17.52451,-17.52451,-17.52451,-17.52451,-17.5245,-17.5245
  2324. }
  2325. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2326. KeyAttrFlags: *1 {
  2327. a: 8456
  2328. }
  2329. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2330. KeyAttrDataFloat: *4 {
  2331. a: 0,0,218434821,0
  2332. }
  2333. KeyAttrRefCount: *1 {
  2334. a: 111
  2335. }
  2336. }
  2337. AnimationCurve: 2736185600, "AnimCurve::", "" {
  2338. Default: 0
  2339. KeyVer: 4008
  2340. KeyTime: *111 {
  2341. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2342. }
  2343. KeyValueFloat: *111 {
  2344. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999998,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1
  2345. }
  2346. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2347. KeyAttrFlags: *1 {
  2348. a: 8456
  2349. }
  2350. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2351. KeyAttrDataFloat: *4 {
  2352. a: 0,0,218434821,0
  2353. }
  2354. KeyAttrRefCount: *1 {
  2355. a: 111
  2356. }
  2357. }
  2358. AnimationCurve: 2736187840, "AnimCurve::", "" {
  2359. Default: 0
  2360. KeyVer: 4008
  2361. KeyTime: *111 {
  2362. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2363. }
  2364. KeyValueFloat: *111 {
  2365. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,0.9999998,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1
  2366. }
  2367. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2368. KeyAttrFlags: *1 {
  2369. a: 8456
  2370. }
  2371. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2372. KeyAttrDataFloat: *4 {
  2373. a: 0,0,218434821,0
  2374. }
  2375. KeyAttrRefCount: *1 {
  2376. a: 111
  2377. }
  2378. }
  2379. AnimationCurve: 2736188000, "AnimCurve::", "" {
  2380. Default: 0
  2381. KeyVer: 4008
  2382. KeyTime: *111 {
  2383. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2384. }
  2385. KeyValueFloat: *111 {
  2386. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1
  2387. }
  2388. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2389. KeyAttrFlags: *1 {
  2390. a: 8456
  2391. }
  2392. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2393. KeyAttrDataFloat: *4 {
  2394. a: 0,0,218434821,0
  2395. }
  2396. KeyAttrRefCount: *1 {
  2397. a: 111
  2398. }
  2399. }
  2400. AnimationCurve: 2736188320, "AnimCurve::", "" {
  2401. Default: 0
  2402. KeyVer: 4008
  2403. KeyTime: *111 {
  2404. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2405. }
  2406. KeyValueFloat: *111 {
  2407. a: 10.0437,10.0437,10.0437,10.0437,10.0437,10.0437,10.0437,10.0437,10.0437,10.0437,10.0437,10.04374,10.0453,10.0461,10.0449,10.04297,10.04147,10.04122,10.0414,10.04198,10.04256,10.04329,10.04472,10.04568,10.04514,10.0441,10.04326,10.04294,10.04299,10.04324,10.04357,10.04374,10.0437,10.04371,10.0437,10.0437,10.04371,10.0437,10.0437,10.0437,10.0437,10.0437,10.04369,10.04367,10.04366,10.04365,10.04362,10.04361,10.04359,10.04358,10.04356,10.04354,10.04354,10.04353,10.04352,10.04353,10.04353,10.04353,10.04353,10.04354,10.04355,10.04356,10.04357,10.04359,10.0436,10.04362,10.04363,10.04364,10.04366,10.04368,10.04369,10.04371,10.04372,10.04374,10.04375,10.04377,10.04379,10.0438,10.04382,10.04383,10.04384,10.04386,10.04387,10.04387,10.04388,10.04389,10.04389,10.04389,10.0439,10.04388,10.04388,10.04387,10.04386,10.04384,10.04382,10.04381,10.04379,10.04376,10.04375,10.04374,10.04373,10.0437,10.0437,10.04371,10.0437,10.0437,10.0437,10.0437,10.0437,10.0437,10.0437
  2408. }
  2409. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2410. KeyAttrFlags: *1 {
  2411. a: 8456
  2412. }
  2413. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2414. KeyAttrDataFloat: *4 {
  2415. a: 0,0,218434821,0
  2416. }
  2417. KeyAttrRefCount: *1 {
  2418. a: 111
  2419. }
  2420. }
  2421. AnimationCurve: 2736195360, "AnimCurve::", "" {
  2422. Default: 0
  2423. KeyVer: 4008
  2424. KeyTime: *111 {
  2425. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2426. }
  2427. KeyValueFloat: *111 {
  2428. a: -0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.00941658,-0.009291649,-0.009374619,-0.009771347,-0.00996685,-0.00978756,-0.009694099,-0.009709358,-0.009736061,-0.009709358,-0.009674072,-0.009560585,-0.009447098,-0.009691238,-0.00990963,-0.009905815,-0.009740829,-0.009552956,-0.009366035,-0.009212494,-0.00941658,-0.009577751,-0.009577751,-0.009578228,-0.009577751,-0.009577751,-0.009577751,-0.009577751,-0.009578228,-0.009578228,-0.009577751,-0.009575367,-0.009570599,-0.009565353,-0.009560108,-0.009554863,-0.009549141,-0.009543896,-0.009538651,-0.009533405,-0.009528637,-0.009524822,-0.009523392,-0.009520054,-0.009518623,-0.009520531,-0.009521961,-0.009524345,-0.009527206,-0.009530067,-0.009532452,-0.009536743,-0.009540558,-0.009545803,-0.009548664,-0.009554386,-0.009559155,-0.009563446,-0.009568691,-0.009573936,-0.009577751,-0.009582996,-0.009587288,-0.009592533,-0.009596825,-0.009600163,-0.0096035,-0.009607792,-0.00961113,-0.009614944,-0.009617805,-0.009620667,-0.009623051,-0.009624481,-0.009625435,-0.009626389,-0.009626389,-0.009626389,-0.009625435,-0.009624958,-0.009620667,-0.009615898,-0.009613037,-0.009609699,-0.009603977,-0.009600639,-0.009594917,-0.009591103,-0.009585857,-0.009580135,-0.009577751,-0.009577751,-0.009578705,-0.009578228,-0.009578228,-0.009577751,-0.009578228,-0.009577751,-0.009578228,-0.009577751
  2429. }
  2430. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2431. KeyAttrFlags: *1 {
  2432. a: 8456
  2433. }
  2434. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2435. KeyAttrDataFloat: *4 {
  2436. a: 0,0,218434821,0
  2437. }
  2438. KeyAttrRefCount: *1 {
  2439. a: 111
  2440. }
  2441. }
  2442. AnimationCurve: 2736196800, "AnimCurve::", "" {
  2443. Default: 0
  2444. KeyVer: 4008
  2445. KeyTime: *111 {
  2446. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2447. }
  2448. KeyValueFloat: *111 {
  2449. a: -0.002675056,-0.002675056,-0.002675056,-0.002675176,-0.002675176,-0.002675056,-0.002675176,-0.002675176,-0.002675056,-0.002675056,-0.002675295,0.003180504,0.002815604,0.001408815,0.0006098747,-0.0002706051,-0.001076549,-0.001434445,-0.001559258,-0.001868725,-0.002189875,-0.002369642,-0.002257347,-0.001768708,-0.0009848475,3.843009e-005,0.00109899,0.002120495,0.002851963,0.003407717,0.003761888,0.003180981,-0.002674818,-0.002674937,-0.002675056,-0.002675056,-0.002675056,-0.002675056,-0.002675056,-0.002675176,-0.002675056,-0.002674937,-0.002691627,-0.002710462,-0.002730966,-0.002753139,-0.002775788,-0.002798557,-0.002821207,-0.002842188,-0.002861977,-0.002879381,-0.002894163,-0.002905369,-0.002912521,-0.002915263,-0.00291276,-0.002906322,-0.002898216,-0.002888322,-0.002876282,-0.00286293,-0.002848148,-0.002832055,-0.002815008,-0.00279665,-0.002777696,-0.002757788,-0.002737761,-0.002717137,-0.00269568,-0.00267458,-0.00265348,-0.00263238,-0.002611637,-0.002591729,-0.002571583,-0.002552152,-0.00253427,-0.002516985,-0.002500653,-0.002485633,-0.002472281,-0.00246048,-0.002450228,-0.002442122,-0.002435446,-0.002432942,-0.002435803,-0.002443314,-0.002454638,-0.002469301,-0.002487063,-0.002507091,-0.002528429,-0.002550721,-0.002574325,-0.002596736,-0.002619028,-0.00263989,-0.002658486,-0.002675056,-0.002675295,-0.002675056,-0.002675176,-0.002675056,-0.002674937,-0.002675176,-0.002674937,-0.002675176,-0.002675056
  2450. }
  2451. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2452. KeyAttrFlags: *1 {
  2453. a: 8456
  2454. }
  2455. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2456. KeyAttrDataFloat: *4 {
  2457. a: 0,0,218434821,0
  2458. }
  2459. KeyAttrRefCount: *1 {
  2460. a: 111
  2461. }
  2462. }
  2463. AnimationCurve: 2736195200, "AnimCurve::", "" {
  2464. Default: 15.5814332962036
  2465. KeyVer: 4008
  2466. KeyTime: *111 {
  2467. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2468. }
  2469. KeyValueFloat: *111 {
  2470. a: 15.58143,15.58143,15.58143,15.58144,15.58144,15.58143,15.58144,15.58144,15.58143,15.58143,15.58144,-18.8323,-16.7629,-8.250621,-3.528484,1.558602,6.201791,8.315444,9.179105,10.97343,12.83505,13.89696,13.2999,10.39937,5.707962,-0.2229181,-6.335943,-12.42498,-17.07054,-20.53854,-22.645,-18.8323,15.58143,15.58143,15.58144,15.58144,15.58143,15.58144,15.58143,15.58143,15.58143,15.58143,15.67909,15.7917,15.91573,16.04764,16.1839,16.32098,16.45533,16.58341,16.70169,16.80661,16.89462,16.96219,17.00577,17.02181,17.00678,16.96882,16.91902,16.85822,16.78728,16.70703,16.61834,16.52204,16.41899,16.31002,16.196,16.07776,15.95615,15.83203,15.70623,15.57961,15.453,15.32726,15.20323,15.08176,14.96368,14.84984,14.74109,14.63826,14.5422,14.45375,14.37375,14.30304,14.24247,14.19287,14.15509,14.14019,14.15631,14.19991,14.26747,14.35546,14.46034,14.57858,14.70666,14.84104,14.97818,15.11454,15.24659,15.37079,15.48358,15.58143,15.58143,15.58143,15.58144,15.58144,15.58143,15.58144,15.58144,15.58143,15.58143
  2471. }
  2472. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2473. KeyAttrFlags: *1 {
  2474. a: 8456
  2475. }
  2476. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2477. KeyAttrDataFloat: *4 {
  2478. a: 0,0,218434821,0
  2479. }
  2480. KeyAttrRefCount: *1 {
  2481. a: 111
  2482. }
  2483. }
  2484. AnimationCurve: 2736197440, "AnimCurve::", "" {
  2485. Default: -2.38686156272888
  2486. KeyVer: 4008
  2487. KeyTime: *111 {
  2488. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2489. }
  2490. KeyValueFloat: *111 {
  2491. a: -2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386863,8.679502,11.68536,10.19503,6.518528,2.416163,-1.315632,-5.979347,-11.38871,-10.07537,-8.866484,-8.355767,-10.17896,-10.58563,-6.798497,-1.933602,2.733984,8.671762,12.91012,13.00674,11.51911,8.679502,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386862,-2.386863,-2.395362,-2.404871,-2.415056,-2.425598,-2.436203,-2.446603,-2.456557,-2.465853,-2.474301,-2.481733,-2.487998,-2.492947,-2.496435,-2.498299,-2.498351,-2.497092,-2.495181,-2.492639,-2.489476,-2.48571,-2.481353,-2.476418,-2.470925,-2.464891,-2.458339,-2.451298,-2.443801,-2.435883,-2.427588,-2.418967,-2.410075,-2.400974,-2.39173,-2.382417,-2.373115,-2.36391,-2.354889,-2.346147,-2.33778,-2.32989,-2.322578,-2.315947,-2.310102,-2.305141,-2.301166,-2.299047,-2.299411,-2.301953,-2.30635,-2.312257,-2.319333,-2.32724,-2.335658,-2.344285,-2.352846,-2.36109,-2.368799,-2.375774,-2.381847,-2.386862,-2.386863,-2.386863,-2.386863,-2.386863,-2.386863,-2.386863,-2.386862,-2.386862,-2.386862
  2492. }
  2493. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2494. KeyAttrFlags: *1 {
  2495. a: 8456
  2496. }
  2497. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2498. KeyAttrDataFloat: *4 {
  2499. a: 0,0,218434821,0
  2500. }
  2501. KeyAttrRefCount: *1 {
  2502. a: 111
  2503. }
  2504. }
  2505. AnimationCurve: 2736194400, "AnimCurve::", "" {
  2506. Default: 3.38011145591736
  2507. KeyVer: 4008
  2508. KeyTime: *111 {
  2509. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2510. }
  2511. KeyValueFloat: *111 {
  2512. a: 3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380114,1.378242,10.24328,16.67895,10.46332,-0.2937368,-9.208153,-11.47776,-11.40894,-8.096669,-4.756456,-0.4897503,7.6639,13.73472,11.62478,6.1779,0.9974403,-2.413495,-4.182786,-3.493316,-1.40818,1.378242,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380111,3.380113,3.299737,3.207039,3.104926,2.996312,2.884104,2.771218,2.660571,2.555085,2.457676,2.371273,2.298798,2.243176,2.20733,2.194184,2.206658,2.238039,2.279186,2.329402,2.387988,2.454242,2.527466,2.606955,2.692017,2.781945,2.87604,2.973606,3.073937,3.17634,3.280113,3.384558,3.488977,3.592674,3.694954,3.795114,3.892462,3.986305,4.075946,4.160692,4.239848,4.312726,4.378627,4.436861,4.486739,4.527561,4.558645,4.570851,4.557468,4.521399,4.465565,4.392875,4.306238,4.20857,4.102783,3.991793,3.878515,3.76587,3.656785,3.554179,3.460977,3.380114,3.380114,3.380114,3.380114,3.380114,3.380113,3.380113,3.380114,3.380112,3.380111
  2513. }
  2514. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2515. KeyAttrFlags: *1 {
  2516. a: 8456
  2517. }
  2518. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2519. KeyAttrDataFloat: *4 {
  2520. a: 0,0,218434821,0
  2521. }
  2522. KeyAttrRefCount: *1 {
  2523. a: 111
  2524. }
  2525. }
  2526. AnimationCurve: 2736192800, "AnimCurve::", "" {
  2527. Default: 0
  2528. KeyVer: 4008
  2529. KeyTime: *111 {
  2530. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2531. }
  2532. KeyValueFloat: *111 {
  2533. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999998,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999998,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,0.9999998,0.9999998,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,0.9999999
  2534. }
  2535. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2536. KeyAttrFlags: *1 {
  2537. a: 8456
  2538. }
  2539. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2540. KeyAttrDataFloat: *4 {
  2541. a: 0,0,218434821,0
  2542. }
  2543. KeyAttrRefCount: *1 {
  2544. a: 111
  2545. }
  2546. }
  2547. AnimationCurve: 2736198240, "AnimCurve::", "" {
  2548. Default: 0
  2549. KeyVer: 4008
  2550. KeyTime: *111 {
  2551. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2552. }
  2553. KeyValueFloat: *111 {
  2554. a: 1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,0.9999998,1,1,1,1,0.9999998,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,0.9999998,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1
  2555. }
  2556. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2557. KeyAttrFlags: *1 {
  2558. a: 8456
  2559. }
  2560. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2561. KeyAttrDataFloat: *4 {
  2562. a: 0,0,218434821,0
  2563. }
  2564. KeyAttrRefCount: *1 {
  2565. a: 111
  2566. }
  2567. }
  2568. AnimationCurve: 2736194080, "AnimCurve::", "" {
  2569. Default: 0
  2570. KeyVer: 4008
  2571. KeyTime: *111 {
  2572. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2573. }
  2574. KeyValueFloat: *111 {
  2575. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  2576. }
  2577. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2578. KeyAttrFlags: *1 {
  2579. a: 8456
  2580. }
  2581. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2582. KeyAttrDataFloat: *4 {
  2583. a: 0,0,218434821,0
  2584. }
  2585. KeyAttrRefCount: *1 {
  2586. a: 111
  2587. }
  2588. }
  2589. AnimationCurve: 2736196320, "AnimCurve::", "" {
  2590. Default: 0
  2591. KeyVer: 4008
  2592. KeyTime: *111 {
  2593. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2594. }
  2595. KeyValueFloat: *111 {
  2596. a: 11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08132,11.08133,11.08126,11.08126,11.0814,11.0816,11.08172,11.08172,11.08169,11.08163,11.08154,11.08146,11.08121,11.08104,11.08121,11.08151,11.0817,11.08168,11.08162,11.08151,11.08141,11.08133,11.08133,11.08133,11.08133,11.08132,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08132,11.08133,11.08133,11.08133,11.08133,11.08132,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08132,11.08133,11.08132,11.08133,11.08132,11.08133,11.08132,11.08133,11.08133,11.08132,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08132,11.08133,11.08132,11.08132,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133,11.08133
  2597. }
  2598. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2599. KeyAttrFlags: *1 {
  2600. a: 8456
  2601. }
  2602. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2603. KeyAttrDataFloat: *4 {
  2604. a: 0,0,218434821,0
  2605. }
  2606. KeyAttrRefCount: *1 {
  2607. a: 111
  2608. }
  2609. }
  2610. AnimationCurve: 2736192640, "AnimCurve::", "" {
  2611. Default: 0
  2612. KeyVer: 4008
  2613. KeyTime: *111 {
  2614. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2615. }
  2616. KeyValueFloat: *111 {
  2617. a: -1.614064,-1.614064,-1.614064,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614064,-1.614064,-1.614064,-1.614064,-1.614035,-1.613993,-1.614012,-1.614014,-1.613988,-1.613984,-1.613977,-1.613981,-1.613978,-1.613987,-1.614032,-1.614061,-1.614075,-1.614037,-1.613986,-1.613981,-1.614004,-1.614025,-1.614053,-1.614066,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614064,-1.614064,-1.614063,-1.614064,-1.614064,-1.614064,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614064,-1.614064,-1.614063,-1.614063,-1.614064,-1.614063,-1.614064,-1.614064,-1.614063,-1.614063,-1.614064,-1.614064,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614064,-1.614063,-1.614064,-1.614063,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614063,-1.614064,-1.614063,-1.614063,-1.614063,-1.614063,-1.614063,-1.614064
  2618. }
  2619. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2620. KeyAttrFlags: *1 {
  2621. a: 8456
  2622. }
  2623. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2624. KeyAttrDataFloat: *4 {
  2625. a: 0,0,218434821,0
  2626. }
  2627. KeyAttrRefCount: *1 {
  2628. a: 111
  2629. }
  2630. }
  2631. AnimationCurve: 2736199680, "AnimCurve::", "" {
  2632. Default: 0
  2633. KeyVer: 4008
  2634. KeyTime: *111 {
  2635. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2636. }
  2637. KeyValueFloat: *111 {
  2638. a: -0.0001344681,-0.0001344681,-0.0001344681,-0.0001343489,-0.0001343489,-0.0001344681,-0.0001343489,-0.0001343489,-0.0001344681,-0.0001344681,-0.0001343489,-0.0001344681,-0.0004110336,-0.0005912781,-0.0004425049,-0.0001832247,2.408028e-005,0.0001533031,0.0002727509,0.0003788471,0.0004618168,0.0005176067,0.0004448891,0.0002610683,6.020069e-005,-0.0001333952,-0.0002379417,-0.0002579689,-0.0002455711,-0.0002083778,-0.0001678467,-0.0001349449,-0.0001344681,-0.0001343489,-0.0001343489,-0.0001344681,-0.0001343489,-0.0001342297,-0.0001343489,-0.0001342297,-0.0001342297,-0.0001343489,-0.0001344681,-0.0001344681,-0.0001341105,-0.0001344681,-0.0001344681,-0.0001345873,-0.0001344681,-0.0001342297,-0.0001344681,-0.0001344681,-0.0001343489,-0.0001344681,-0.0001344681,-0.0001342297,-0.0001343489,-0.0001344681,-0.0001342297,-0.0001342297,-0.0001341105,-0.0001342297,-0.0001343489,-0.0001342297,-0.0001339912,-0.0001341105,-0.0001343489,-0.0001347065,-0.0001342297,-0.0001342297,-0.0001345873,-0.0001343489,-0.0001342297,-0.0001341105,-0.0001344681,-0.0001341701,-0.0001342893,-0.0001343489,-0.0001342893,-0.0001341701,-0.0001342297,-0.0001343489,-0.0001344085,-0.0001345873,-0.0001343489,-0.0001343489,-0.0001344085,-0.0001343489,-0.0001344085,-0.0001342893,-0.0001344681,-0.0001341701,-0.0001341701,-0.0001341701,-0.0001345873,-0.0001341105,-0.0001341105,-0.0001342297,-0.0001342297,-0.0001342297,-0.0001341105,-0.0001344681,-0.0001344681,-0.0001343489,-0.0001343489,-0.0001343489,-0.0001344681,-0.0001343489,-0.0001342297,-0.0001343489,-0.0001344681
  2639. }
  2640. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2641. KeyAttrFlags: *1 {
  2642. a: 8456
  2643. }
  2644. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2645. KeyAttrDataFloat: *4 {
  2646. a: 0,0,218434821,0
  2647. }
  2648. KeyAttrRefCount: *1 {
  2649. a: 111
  2650. }
  2651. }
  2652. AnimationCurve: 2736192000, "AnimCurve::", "" {
  2653. Default: 3.55662822723389
  2654. KeyVer: 4008
  2655. KeyTime: *111 {
  2656. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2657. }
  2658. KeyValueFloat: *111 {
  2659. a: 3.556628,3.556628,3.55663,3.556628,3.556628,3.556628,3.556628,3.556628,3.55663,3.556628,3.556628,3.556623,11.04174,16.06173,11.91631,4.86488,-0.6719059,-4.133873,-7.374697,-10.25688,-12.58956,-14.13897,-12.0583,-7.010869,-1.63044,3.543545,6.360206,6.927439,6.538048,5.563372,4.410072,3.556625,3.556628,3.556628,3.556629,3.556628,3.556628,3.556628,3.55663,3.556628,3.556628,3.556629,3.556628,3.556628,3.556629,3.556627,3.556628,3.556629,3.556629,3.556628,3.556631,3.556628,3.556629,3.556631,3.556627,3.556627,3.556628,3.556629,3.556628,3.556627,3.556628,3.556631,3.556628,3.556631,3.556632,3.556631,3.55663,3.556632,3.556634,3.556631,3.556631,3.556633,3.556633,3.556633,3.556634,3.556631,3.556631,3.556631,3.556631,3.55663,3.556632,3.55663,3.556631,3.556632,3.556631,3.556629,3.556632,3.556633,3.556634,3.556631,3.556632,3.556632,3.556631,3.556632,3.556629,3.556627,3.556627,3.556626,3.556628,3.556627,3.556627,3.556628,3.556628,3.55663,3.556631,3.55663,3.556628,3.556629,3.556629,3.556628,3.556628
  2660. }
  2661. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2662. KeyAttrFlags: *1 {
  2663. a: 8456
  2664. }
  2665. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2666. KeyAttrDataFloat: *4 {
  2667. a: 0,0,218434821,0
  2668. }
  2669. KeyAttrRefCount: *1 {
  2670. a: 111
  2671. }
  2672. }
  2673. AnimationCurve: 2736199200, "AnimCurve::", "" {
  2674. Default: -1.55050671100616
  2675. KeyVer: 4008
  2676. KeyTime: *111 {
  2677. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2678. }
  2679. KeyValueFloat: *111 {
  2680. a: -1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550503,-4.946039,-7.02329,-5.401418,-1.744399,1.832125,4.230542,6.372087,8.047978,9.114325,9.491443,7.118593,3.687461,0.438857,-3.548517,-6.114702,-6.300166,-5.436204,-4.036205,-2.59641,-1.550503,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550506,-1.550506,-1.550506,-1.550507,-1.550507,-1.550507,-1.550506,-1.550506,-1.550506,-1.550506,-1.550506,-1.550506,-1.550505,-1.550506,-1.550506,-1.550506,-1.550506,-1.550505,-1.550506,-1.550506,-1.550506,-1.550507,-1.550505,-1.550506,-1.550506,-1.550506,-1.550505,-1.550506,-1.550506,-1.550506,-1.550506,-1.550506,-1.550506,-1.550506,-1.550506,-1.550505,-1.550506,-1.550506,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550504,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550505,-1.550506,-1.550506,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507,-1.550507
  2681. }
  2682. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2683. KeyAttrFlags: *1 {
  2684. a: 8456
  2685. }
  2686. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2687. KeyAttrDataFloat: *4 {
  2688. a: 0,0,218434821,0
  2689. }
  2690. KeyAttrRefCount: *1 {
  2691. a: 111
  2692. }
  2693. }
  2694. AnimationCurve: 2736189920, "AnimCurve::", "" {
  2695. Default: 5.86870098114014
  2696. KeyVer: 4008
  2697. KeyTime: *111 {
  2698. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2699. }
  2700. KeyValueFloat: *111 {
  2701. a: 5.868701,5.868701,5.868702,5.868702,5.868702,5.868701,5.868702,5.868702,5.868702,5.868701,5.868701,5.868702,3.357953,2.283188,7.053274,13.367,16.69166,16.56675,15.22301,13.00096,10.26886,7.409283,1.477887,-2.231118,2.992849,10.8636,15.35618,15.19314,13.43486,10.80536,8.031255,5.868698,5.868701,5.868701,5.868701,5.868701,5.868701,5.8687,5.868701,5.868701,5.868701,5.868701,5.868701,5.868701,5.868702,5.868701,5.868701,5.868702,5.868701,5.868701,5.868702,5.868701,5.868701,5.868701,5.868701,5.868701,5.868702,5.868701,5.868702,5.868703,5.868701,5.868701,5.868703,5.868703,5.868703,5.868701,5.868703,5.868703,5.868703,5.868701,5.868703,5.868702,5.868704,5.868702,5.868703,5.868703,5.868703,5.868705,5.868704,5.868704,5.868703,5.868704,5.868705,5.868705,5.868703,5.868703,5.868704,5.868704,5.868703,5.868703,5.868704,5.868705,5.868705,5.868704,5.868704,5.868704,5.868703,5.868703,5.868703,5.868701,5.868701,5.8687,5.8687,5.868701,5.868701,5.868702,5.868701,5.868701,5.868701,5.868702,5.868701
  2702. }
  2703. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2704. KeyAttrFlags: *1 {
  2705. a: 8456
  2706. }
  2707. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2708. KeyAttrDataFloat: *4 {
  2709. a: 0,0,218434821,0
  2710. }
  2711. KeyAttrRefCount: *1 {
  2712. a: 111
  2713. }
  2714. }
  2715. AnimationCurve: 2736191360, "AnimCurve::", "" {
  2716. Default: 0
  2717. KeyVer: 4008
  2718. KeyTime: *111 {
  2719. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2720. }
  2721. KeyValueFloat: *111 {
  2722. a: 1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,0.9999998,1,0.9999999,1,0.9999998,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,0.9999998,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  2723. }
  2724. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2725. KeyAttrFlags: *1 {
  2726. a: 8456
  2727. }
  2728. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2729. KeyAttrDataFloat: *4 {
  2730. a: 0,0,218434821,0
  2731. }
  2732. KeyAttrRefCount: *1 {
  2733. a: 111
  2734. }
  2735. }
  2736. AnimationCurve: 2736191840, "AnimCurve::", "" {
  2737. Default: 0
  2738. KeyVer: 4008
  2739. KeyTime: *111 {
  2740. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2741. }
  2742. KeyValueFloat: *111 {
  2743. a: 0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,0.9999998,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999
  2744. }
  2745. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2746. KeyAttrFlags: *1 {
  2747. a: 8456
  2748. }
  2749. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2750. KeyAttrDataFloat: *4 {
  2751. a: 0,0,218434821,0
  2752. }
  2753. KeyAttrRefCount: *1 {
  2754. a: 111
  2755. }
  2756. }
  2757. AnimationCurve: 2736192320, "AnimCurve::", "" {
  2758. Default: 0
  2759. KeyVer: 4008
  2760. KeyTime: *111 {
  2761. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2762. }
  2763. KeyValueFloat: *111 {
  2764. a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1
  2765. }
  2766. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2767. KeyAttrFlags: *1 {
  2768. a: 8456
  2769. }
  2770. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2771. KeyAttrDataFloat: *4 {
  2772. a: 0,0,218434821,0
  2773. }
  2774. KeyAttrRefCount: *1 {
  2775. a: 111
  2776. }
  2777. }
  2778. AnimationCurve: 2736190240, "AnimCurve::", "" {
  2779. Default: 0
  2780. KeyVer: 4008
  2781. KeyTime: *111 {
  2782. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2783. }
  2784. KeyValueFloat: *111 {
  2785. a: -2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.530159,-2.419804,-2.472546,-2.590851,-2.719719,-2.840141,-2.964931,-3.076778,-3.161972,-3.211605,-3.154163,-3.007893,-2.821484,-2.529919,-2.318855,-2.31115,-2.388279,-2.503979,-2.616364,-2.694351,-2.694355,-2.694355,-2.694355,-2.694355,-2.694351,-2.694347,-2.694351,-2.694355,-2.694351,-2.694351,-2.694355,-2.694359,-2.694355,-2.694355,-2.694355,-2.694351,-2.694359,-2.694355,-2.694351,-2.694359,-2.694351,-2.694359,-2.694359,-2.694351,-2.694359,-2.694355,-2.694355,-2.694351,-2.694351,-2.694355,-2.694355,-2.694355,-2.694355,-2.694355,-2.694351,-2.694355,-2.694355,-2.694355,-2.694359,-2.694355,-2.694359,-2.694351,-2.694355,-2.694351,-2.694351,-2.694347,-2.694351,-2.694355,-2.694355,-2.694359,-2.694351,-2.694355,-2.694351,-2.694355,-2.694347,-2.694351,-2.694355,-2.694355,-2.694355,-2.694359,-2.694351,-2.694351,-2.694355,-2.694355,-2.694351,-2.694351,-2.694351,-2.694355,-2.694355,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351,-2.694351
  2786. }
  2787. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2788. KeyAttrFlags: *1 {
  2789. a: 8456
  2790. }
  2791. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2792. KeyAttrDataFloat: *4 {
  2793. a: 0,0,218434821,0
  2794. }
  2795. KeyAttrRefCount: *1 {
  2796. a: 111
  2797. }
  2798. }
  2799. AnimationCurve: 2736196000, "AnimCurve::", "" {
  2800. Default: 0
  2801. KeyVer: 4008
  2802. KeyTime: *111 {
  2803. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2804. }
  2805. KeyValueFloat: *111 {
  2806. a: 0.7223437,0.7223437,0.7223432,0.7223434,0.7223434,0.7223437,0.7223434,0.7223434,0.7223432,0.7223437,0.7223434,0.7223434,1.017191,1.255468,1.242762,1.147575,1.012653,0.8388252,0.6302013,0.4054222,0.1840992,-0.01257706,-0.2284412,-0.2017326,0.3109169,0.9663162,1.336929,1.361023,1.254925,1.073421,0.8746796,0.7223434,0.7223437,0.722343,0.7223427,0.722343,0.722343,0.722343,0.7223432,0.7223442,0.7223432,0.7223432,0.7223434,0.7223439,0.7223437,0.722343,0.7223439,0.7223437,0.7223434,0.7223434,0.7223434,0.7223439,0.7223437,0.7223439,0.7223434,0.7223437,0.7223439,0.7223437,0.7223434,0.7223439,0.7223439,0.7223434,0.7223442,0.7223439,0.7223437,0.7223437,0.7223427,0.7223442,0.7223439,0.7223434,0.7223442,0.7223439,0.7223434,0.7223432,0.7223439,0.722343,0.7223434,0.7223434,0.7223439,0.7223434,0.7223434,0.7223442,0.7223434,0.7223437,0.7223434,0.7223437,0.7223437,0.7223434,0.7223437,0.7223437,0.7223434,0.7223444,0.7223439,0.7223434,0.7223439,0.7223439,0.7223437,0.7223439,0.7223432,0.7223437,0.722343,0.7223434,0.7223434,0.7223432,0.7223432,0.7223432,0.722343,0.722343,0.722343,0.7223434,0.7223432
  2807. }
  2808. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2809. KeyAttrFlags: *1 {
  2810. a: 8456
  2811. }
  2812. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2813. KeyAttrDataFloat: *4 {
  2814. a: 0,0,218434821,0
  2815. }
  2816. KeyAttrRefCount: *1 {
  2817. a: 111
  2818. }
  2819. }
  2820. AnimationCurve: 2736190400, "AnimCurve::", "" {
  2821. Default: 0
  2822. KeyVer: 4008
  2823. KeyTime: *111 {
  2824. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2825. }
  2826. KeyValueFloat: *111 {
  2827. a: 3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.058216,3.059157,3.021935,2.959766,2.892532,2.831657,2.756711,2.674978,2.598754,2.543644,2.604384,2.774122,2.954419,3.074833,3.102581,3.097862,3.084057,3.060583,3.029532,3.001082,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001084,3.001083,3.001083,3.001084,3.001084,3.001083,3.001083,3.001083,3.001084,3.001083,3.001083,3.001083,3.001084,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001084,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001084,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001082,3.001084,3.001083,3.001083,3.001084,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083,3.001083
  2828. }
  2829. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2830. KeyAttrFlags: *1 {
  2831. a: 8456
  2832. }
  2833. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2834. KeyAttrDataFloat: *4 {
  2835. a: 0,0,218434821,0
  2836. }
  2837. KeyAttrRefCount: *1 {
  2838. a: 111
  2839. }
  2840. }
  2841. AnimationCurve: 2736191680, "AnimCurve::", "" {
  2842. Default: 152.224151611328
  2843. KeyVer: 4008
  2844. KeyTime: *111 {
  2845. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2846. }
  2847. KeyValueFloat: *111 {
  2848. a: 152.2242,152.2242,152.2241,152.2241,152.2241,152.2242,152.2241,152.2241,152.2241,152.2242,152.2242,152.2242,124.5706,119.0247,141.6051,162.4051,174.2524,192.3736,222.3469,248.5313,265.6757,270.391,236.2231,171.8144,154.2018,141.6094,133.2011,131.2747,132.4695,134.7494,139.8482,152.2242,152.2242,152.2242,152.2242,152.2241,152.2242,152.2241,152.2241,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2241,152.2242,152.2242,152.2241,152.2242,152.2242,152.2242,152.2242,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2242,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2242,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2241,152.2242
  2849. }
  2850. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2851. KeyAttrFlags: *1 {
  2852. a: 8456
  2853. }
  2854. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2855. KeyAttrDataFloat: *4 {
  2856. a: 0,0,218434821,0
  2857. }
  2858. KeyAttrRefCount: *1 {
  2859. a: 111
  2860. }
  2861. }
  2862. AnimationCurve: 2736192480, "AnimCurve::", "" {
  2863. Default: -85.4642868041992
  2864. KeyVer: 4008
  2865. KeyTime: *111 {
  2866. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2867. }
  2868. KeyValueFloat: *111 {
  2869. a: -85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-84.78846,-83.33554,-81.36327,-77.39758,-73.75323,-74.80805,-75.6376,-73.23798,-69.166,-67.72878,-76.2199,-72.61162,-68.80956,-67.09489,-66.95155,-67.23373,-69.34103,-74.52934,-80.61278,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429,-85.46429
  2870. }
  2871. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2872. KeyAttrFlags: *1 {
  2873. a: 8456
  2874. }
  2875. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2876. KeyAttrDataFloat: *4 {
  2877. a: 0,0,218434821,0
  2878. }
  2879. KeyAttrRefCount: *1 {
  2880. a: 111
  2881. }
  2882. }
  2883. AnimationCurve: 2736197920, "AnimCurve::", "" {
  2884. Default: 21.7447452545166
  2885. KeyVer: 4008
  2886. KeyTime: *111 {
  2887. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2888. }
  2889. KeyValueFloat: *111 {
  2890. a: 21.74475,21.74475,21.74475,21.74475,21.74475,21.74474,21.74475,21.74475,21.74475,21.74475,21.74473,21.74475,51.33489,57.2327,30.35413,3.721481,-11.28825,-28.68725,-56.73763,-80.49358,-95.02644,-97.03978,-57.09261,9.372374,21.15508,25.70252,29.63449,31.76537,32.59539,33.54811,31.71996,21.74472,21.74475,21.74475,21.74472,21.74473,21.74475,21.74473,21.74473,21.74475,21.74475,21.74471,21.7447,21.74473,21.74476,21.74474,21.74473,21.74473,21.74474,21.74475,21.74475,21.74473,21.74477,21.74476,21.74473,21.74479,21.74475,21.74475,21.74475,21.74475,21.74472,21.74473,21.74474,21.74475,21.74473,21.74475,21.74474,21.74476,21.74477,21.74477,21.74475,21.74475,21.74476,21.74474,21.74476,21.74474,21.74477,21.74477,21.74475,21.74477,21.74475,21.74475,21.74475,21.74474,21.74475,21.74475,21.74476,21.74475,21.74474,21.74474,21.74476,21.74476,21.74473,21.74474,21.74471,21.74474,21.74477,21.74472,21.74474,21.74475,21.74471,21.74473,21.74473,21.74473,21.74471,21.74473,21.74473,21.74471,21.7447,21.74472,21.74475
  2891. }
  2892. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2893. KeyAttrFlags: *1 {
  2894. a: 8456
  2895. }
  2896. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2897. KeyAttrDataFloat: *4 {
  2898. a: 0,0,218434821,0
  2899. }
  2900. KeyAttrRefCount: *1 {
  2901. a: 111
  2902. }
  2903. }
  2904. AnimationCurve: 2736190560, "AnimCurve::", "" {
  2905. Default: 0
  2906. KeyVer: 4008
  2907. KeyTime: *111 {
  2908. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2909. }
  2910. KeyValueFloat: *111 {
  2911. a: 0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,0.9999998,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999
  2912. }
  2913. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2914. KeyAttrFlags: *1 {
  2915. a: 8456
  2916. }
  2917. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2918. KeyAttrDataFloat: *4 {
  2919. a: 0,0,218434821,0
  2920. }
  2921. KeyAttrRefCount: *1 {
  2922. a: 111
  2923. }
  2924. }
  2925. AnimationCurve: 2736195520, "AnimCurve::", "" {
  2926. Default: 0
  2927. KeyVer: 4008
  2928. KeyTime: *111 {
  2929. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2930. }
  2931. KeyValueFloat: *111 {
  2932. a: 1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999998,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,0.9999998,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999998,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999998,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1
  2933. }
  2934. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2935. KeyAttrFlags: *1 {
  2936. a: 8456
  2937. }
  2938. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2939. KeyAttrDataFloat: *4 {
  2940. a: 0,0,218434821,0
  2941. }
  2942. KeyAttrRefCount: *1 {
  2943. a: 111
  2944. }
  2945. }
  2946. AnimationCurve: 2736195680, "AnimCurve::", "" {
  2947. Default: 0
  2948. KeyVer: 4008
  2949. KeyTime: *111 {
  2950. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2951. }
  2952. KeyValueFloat: *111 {
  2953. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999998,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999998,0.9999999,0.9999999,0.9999999,1,0.9999998,1,1,1,1,1,1,1,1,1,1,1,1
  2954. }
  2955. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2956. KeyAttrFlags: *1 {
  2957. a: 8456
  2958. }
  2959. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2960. KeyAttrDataFloat: *4 {
  2961. a: 0,0,218434821,0
  2962. }
  2963. KeyAttrRefCount: *1 {
  2964. a: 111
  2965. }
  2966. }
  2967. AnimationCurve: 2736196960, "AnimCurve::", "" {
  2968. Default: 0
  2969. KeyVer: 4008
  2970. KeyTime: *111 {
  2971. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2972. }
  2973. KeyValueFloat: *111 {
  2974. a: 4.074678,4.074678,4.074678,4.074679,4.074679,4.074678,4.074679,4.074679,4.074678,4.074678,4.074678,4.074681,4.074682,4.074679,4.074678,4.07468,4.07468,4.07468,4.07468,4.07468,4.07468,4.074679,4.074679,4.074679,4.074678,4.074678,4.07468,4.074681,4.074682,4.074678,4.074681,4.074681,4.074678,4.074678,4.07468,4.074679,4.07468,4.074679,4.07468,4.074678,4.07468,4.074679,4.07468,4.074679,4.07468,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.07468,4.074679,4.07468,4.07468,4.074681,4.074679,4.07468,4.074679,4.074679,4.074678,4.07468,4.074679,4.07468,4.07468,4.074679,4.07468,4.07468,4.074678,4.07468,4.074679,4.074679,4.074679,4.074679,4.07468,4.074679,4.07468,4.07468,4.07468,4.074679,4.074679,4.074679,4.074679,4.07468,4.07468,4.074679,4.07468,4.074678,4.074679,4.074679,4.074679,4.074679,4.074679,4.07468,4.07468,4.074679,4.074679,4.074678,4.074679,4.07468,4.074679,4.074679,4.07468,4.07468,4.074679,4.074679,4.07468,4.074679,4.074679,4.074678
  2975. }
  2976. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2977. KeyAttrFlags: *1 {
  2978. a: 8456
  2979. }
  2980. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2981. KeyAttrDataFloat: *4 {
  2982. a: 0,0,218434821,0
  2983. }
  2984. KeyAttrRefCount: *1 {
  2985. a: 111
  2986. }
  2987. }
  2988. AnimationCurve: 2736196480, "AnimCurve::", "" {
  2989. Default: 0
  2990. KeyVer: 4008
  2991. KeyTime: *111 {
  2992. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  2993. }
  2994. KeyValueFloat: *111 {
  2995. a: 2.384186e-007,2.384186e-007,2.384186e-007,2.384186e-007,4.768372e-007,2.384186e-007,4.768372e-007,4.768372e-007,2.384186e-007,2.384186e-007,4.768372e-007,-2.861023e-006,-1.907349e-006,1.907349e-006,1.907349e-006,2.861023e-006,1.907349e-006,9.536743e-007,-9.536743e-007,9.536743e-007,9.536743e-007,0,-1.907349e-006,-3.814697e-006,1.907349e-006,1.907349e-006,-3.814697e-006,-3.814697e-006,-1.907349e-006,9.536743e-007,-2.861023e-006,-1.907349e-006,2.384186e-007,2.384186e-007,0,2.384186e-007,0,4.768372e-007,2.384186e-007,2.384186e-007,-2.384186e-007,2.384186e-007,4.768372e-007,2.384186e-007,-2.384186e-007,2.384186e-007,0,-2.384186e-007,0,-2.384186e-007,2.384186e-007,2.384186e-007,0,2.384186e-007,-2.384186e-007,0,0,-4.768372e-007,2.384186e-007,0,0,0,-2.384186e-007,-2.384186e-007,0,-2.384186e-007,0,0,0,2.384186e-007,4.768372e-007,2.384186e-007,0,2.384186e-007,0,-2.384186e-007,-2.384186e-007,1.192093e-007,1.192093e-007,-1.192093e-007,0,-1.192093e-007,-4.768372e-007,0,2.384186e-007,4.768372e-007,0,0,1.192093e-007,3.576279e-007,1.192093e-007,1.192093e-007,5.960464e-007,0,2.384186e-007,2.384186e-007,2.384186e-007,2.384186e-007,4.768372e-007,2.384186e-007,-2.384186e-007,2.384186e-007,2.384186e-007,4.768372e-007,2.384186e-007,2.384186e-007,2.384186e-007,0,0,2.384186e-007,2.384186e-007
  2996. }
  2997. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  2998. KeyAttrFlags: *1 {
  2999. a: 8456
  3000. }
  3001. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3002. KeyAttrDataFloat: *4 {
  3003. a: 0,0,218434821,0
  3004. }
  3005. KeyAttrRefCount: *1 {
  3006. a: 111
  3007. }
  3008. }
  3009. AnimationCurve: 2736197120, "AnimCurve::", "" {
  3010. Default: 0
  3011. KeyVer: 4008
  3012. KeyTime: *111 {
  3013. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3014. }
  3015. KeyValueFloat: *111 {
  3016. a: -3.814697e-006,-3.814697e-006,-3.814697e-006,0,0,-3.814697e-006,0,0,-3.814697e-006,-3.814697e-006,0,0,0,3.814697e-006,0,3.814697e-006,3.814697e-006,0,0,0,0,0,0,0,0,0,-3.814697e-006,-3.814697e-006,-3.814697e-006,0,0,0,3.814697e-006,-3.814697e-006,-3.814697e-006,-3.814697e-006,-3.814697e-006,0,3.814697e-006,0,3.814697e-006,0,3.814697e-006,0,-3.814697e-006,3.814697e-006,0,0,0,0,0,3.814697e-006,0,3.814697e-006,3.814697e-006,-3.814697e-006,3.814697e-006,3.814697e-006,-3.814697e-006,0,0,-3.814697e-006,0,3.814697e-006,3.814697e-006,0,-3.814697e-006,3.814697e-006,0,0,3.814697e-006,0,0,0,0,3.814697e-006,0,3.814697e-006,0,-3.814697e-006,-3.814697e-006,-3.814697e-006,0,0,-7.629395e-006,3.814697e-006,0,0,0,0,0,0,0,3.814697e-006,3.814697e-006,-3.814697e-006,0,-3.814697e-006,0,0,0,-3.814697e-006,-3.814697e-006,-3.814697e-006,-3.814697e-006,0,0,-3.814697e-006,0,-3.814697e-006,-3.814697e-006
  3017. }
  3018. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3019. KeyAttrFlags: *1 {
  3020. a: 8456
  3021. }
  3022. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3023. KeyAttrDataFloat: *4 {
  3024. a: 0,0,218434821,0
  3025. }
  3026. KeyAttrRefCount: *1 {
  3027. a: 111
  3028. }
  3029. }
  3030. AnimationCurve: 2736191040, "AnimCurve::", "" {
  3031. Default: 21.4376049041748
  3032. KeyVer: 4008
  3033. KeyTime: *111 {
  3034. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3035. }
  3036. KeyValueFloat: *111 {
  3037. a: 21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,-15.47629,-4.555919,25.36934,52.4162,68.52066,74.34766,72.75103,67.7214,63.10109,55.66699,46.53288,28.81559,-20.26684,-67.78142,-77.75845,-74.31371,-63.4984,-48.32685,-37.29295,-27.11207,-15.47629,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,21.4376,22.00075,22.09233,22.19341,22.30145,22.41381,22.52791,22.64121,22.75114,22.85516,22.95078,23.0355,23.10687,23.16241,23.19966,23.21616,23.20947,23.18523,23.15121,23.10803,23.05639,22.99691,22.93024,22.85706,22.778,22.69374,22.60493,22.51227,22.41641,22.31802,22.2178,22.1164,22.01453,21.91288,21.81213,21.71298,21.61614,21.52228,21.43211,21.34634,21.26567,21.19081,21.12243,21.06127,21.00798,20.96331,20.9279,20.91059,20.9179,20.94708,20.99538,21.06003,21.13825,21.22731,21.3244,21.42679,21.53178,21.63662,21.73862,21.8351,21.92338,22.00083,22.00086,21.83813,21.69262,21.57029,21.47617,21.41413,21.38665,21.3947,21.4376
  3038. }
  3039. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3040. KeyAttrFlags: *1 {
  3041. a: 8456
  3042. }
  3043. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3044. KeyAttrDataFloat: *4 {
  3045. a: 0,0,218434821,0
  3046. }
  3047. KeyAttrRefCount: *1 {
  3048. a: 111
  3049. }
  3050. }
  3051. AnimationCurve: 2736198400, "AnimCurve::", "" {
  3052. Default: 56.5267524719238
  3053. KeyVer: 4008
  3054. KeyTime: *111 {
  3055. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3056. }
  3057. KeyValueFloat: *111 {
  3058. a: 56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52674,52.39875,58.24028,62.24921,58.19026,48.79401,40.34872,37.06117,37.27615,42.98947,48.89342,56.495,70.39574,79.63022,74.88386,66.08419,59.62745,59.98831,61.63544,58.39085,54.03139,52.39875,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,56.52675,54.57288,54.53183,54.49195,54.45358,54.41704,54.38258,54.35039,54.32067,54.29352,54.26908,54.24743,54.2287,54.21296,54.20033,54.1909,54.18483,54.18127,54.17927,54.17875,54.17966,54.18191,54.18551,54.19038,54.19648,54.20379,54.21226,54.22186,54.23254,54.24426,54.25696,54.2706,54.28512,54.30042,54.31646,54.33312,54.35033,54.36797,54.38595,54.40411,54.42236,54.44053,54.45849,54.47608,54.49313,54.50951,54.52502,54.53907,54.55122,54.56148,54.56984,54.57642,54.58126,54.58452,54.5863,54.58677,54.58611,54.58452,54.58218,54.57932,54.57616,54.57288,54.57286,54.78245,55.00852,55.2483,55.49852,55.7555,56.01528,56.27373,56.52675
  3059. }
  3060. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3061. KeyAttrFlags: *1 {
  3062. a: 8456
  3063. }
  3064. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3065. KeyAttrDataFloat: *4 {
  3066. a: 0,0,218434821,0
  3067. }
  3068. KeyAttrRefCount: *1 {
  3069. a: 111
  3070. }
  3071. }
  3072. AnimationCurve: 2736198720, "AnimCurve::", "" {
  3073. Default: -8.7551965713501
  3074. KeyVer: 4008
  3075. KeyTime: *111 {
  3076. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3077. }
  3078. KeyValueFloat: *111 {
  3079. a: -8.755197,-8.755197,-8.755197,-8.755194,-8.755194,-8.755195,-8.755194,-8.755194,-8.755197,-8.755197,-8.755196,-26.11585,-14.69625,12.53375,43.3872,63.9063,71.23759,66.98093,56.68932,48.25858,36.03336,24.62124,13.60622,-25.70514,-66.67301,-68.85024,-58.37003,-44.47409,-32.13977,-27.88288,-26.68214,-26.11586,-8.755197,-8.755196,-8.755198,-8.755195,-8.755196,-8.755197,-8.755194,-8.755196,-8.755196,-42.34418,-42.87247,-43.36646,-43.82693,-44.25467,-44.65041,-45.01488,-45.34875,-45.65276,-45.92748,-46.1736,-46.3917,-46.58237,-46.74623,-46.88388,-46.99592,-47.08402,-47.14999,-47.19482,-47.21945,-47.22488,-47.21203,-47.18187,-47.13535,-47.07342,-46.99707,-46.90719,-46.80474,-46.69067,-46.56591,-46.43139,-46.28801,-46.13671,-45.97842,-45.81403,-45.64446,-45.47062,-45.29338,-45.11367,-44.93237,-44.7504,-44.56863,-44.38796,-44.20931,-44.03354,-43.86158,-43.69434,-43.53267,-43.37743,-43.22956,-43.08996,-42.95949,-42.83912,-42.72972,-42.63221,-42.54742,-42.47624,-42.4195,-42.378,-42.35255,-42.34393,-42.34392,-38.58253,-34.61529,-30.48158,-26.22151,-21.87609,-17.48743,-13.09889,-8.755197
  3080. }
  3081. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3082. KeyAttrFlags: *1 {
  3083. a: 8456
  3084. }
  3085. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3086. KeyAttrDataFloat: *4 {
  3087. a: 0,0,218434821,0
  3088. }
  3089. KeyAttrRefCount: *1 {
  3090. a: 111
  3091. }
  3092. }
  3093. AnimationCurve: 2736202880, "AnimCurve::", "" {
  3094. Default: 0
  3095. KeyVer: 4008
  3096. KeyTime: *111 {
  3097. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3098. }
  3099. KeyValueFloat: *111 {
  3100. a: 1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999998,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,1,0.9999998,1,1,0.9999999,0.9999998,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,0.9999998,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1
  3101. }
  3102. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3103. KeyAttrFlags: *1 {
  3104. a: 8456
  3105. }
  3106. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3107. KeyAttrDataFloat: *4 {
  3108. a: 0,0,218434821,0
  3109. }
  3110. KeyAttrRefCount: *1 {
  3111. a: 111
  3112. }
  3113. }
  3114. AnimationCurve: 2736200480, "AnimCurve::", "" {
  3115. Default: 0
  3116. KeyVer: 4008
  3117. KeyTime: *111 {
  3118. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3119. }
  3120. KeyValueFloat: *111 {
  3121. a: 0.9999998,0.9999998,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999998,0.9999998,1,0.9999999,0.9999998,1,0.9999999,0.9999998,0.9999998,1,1,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,0.9999998
  3122. }
  3123. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3124. KeyAttrFlags: *1 {
  3125. a: 8456
  3126. }
  3127. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3128. KeyAttrDataFloat: *4 {
  3129. a: 0,0,218434821,0
  3130. }
  3131. KeyAttrRefCount: *1 {
  3132. a: 111
  3133. }
  3134. }
  3135. AnimationCurve: 2736202560, "AnimCurve::", "" {
  3136. Default: 0
  3137. KeyVer: 4008
  3138. KeyTime: *111 {
  3139. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3140. }
  3141. KeyValueFloat: *111 {
  3142. a: 1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999998,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,0.9999998,0.9999999,0.9999998,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1
  3143. }
  3144. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3145. KeyAttrFlags: *1 {
  3146. a: 8456
  3147. }
  3148. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3149. KeyAttrDataFloat: *4 {
  3150. a: 0,0,218434821,0
  3151. }
  3152. KeyAttrRefCount: *1 {
  3153. a: 111
  3154. }
  3155. }
  3156. AnimationCurve: 2736204800, "AnimCurve::", "" {
  3157. Default: 0
  3158. KeyVer: 4008
  3159. KeyTime: *111 {
  3160. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3161. }
  3162. KeyValueFloat: *111 {
  3163. a: 10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79394,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395
  3164. }
  3165. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3166. KeyAttrFlags: *1 {
  3167. a: 8456
  3168. }
  3169. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3170. KeyAttrDataFloat: *4 {
  3171. a: 0,0,218434821,0
  3172. }
  3173. KeyAttrRefCount: *1 {
  3174. a: 111
  3175. }
  3176. }
  3177. AnimationCurve: 2736200800, "AnimCurve::", "" {
  3178. Default: 0
  3179. KeyVer: 4008
  3180. KeyTime: *111 {
  3181. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3182. }
  3183. KeyValueFloat: *111 {
  3184. a: -9.536743e-007,-9.536743e-007,-9.536743e-007,-1.907349e-006,-1.907349e-006,-9.536743e-007,-1.907349e-006,-1.907349e-006,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,0,1.907349e-006,1.907349e-006,-7.629395e-006,0,3.814697e-006,3.814697e-006,0,0,-3.814697e-006,3.814697e-006,1.907349e-006,-9.536743e-007,0,1.907349e-006,9.536743e-007,-4.768372e-007,-9.536743e-007,9.536743e-007,-9.536743e-007,-1.907349e-006,-1.907349e-006,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,0,0,-9.536743e-007,9.536743e-007,0,0,-1.907349e-006,-1.907349e-006,-9.536743e-007,0,0,0,-9.536743e-007,0,-9.536743e-007,0,0,-1.907349e-006,-9.536743e-007,9.536743e-007,-1.907349e-006,-9.536743e-007,-1.907349e-006,-1.907349e-006,0,9.536743e-007,-9.536743e-007,0,0,1.907349e-006,0,-9.536743e-007,-1.907349e-006,0,-9.536743e-007,-9.536743e-007,-1.907349e-006,-9.536743e-007,0,0,0,-1.907349e-006,0,0,-1.907349e-006,0,-9.536743e-007,-1.907349e-006,9.536743e-007,9.536743e-007,-9.536743e-007,-9.536743e-007,0,-1.907349e-006,0,-1.907349e-006,-1.907349e-006,-1.907349e-006,0,0,-2.861023e-006,0,-9.536743e-007,-1.907349e-006,0,1.907349e-006,-9.536743e-007,0,-9.536743e-007,-9.536743e-007,0,-9.536743e-007
  3185. }
  3186. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3187. KeyAttrFlags: *1 {
  3188. a: 8456
  3189. }
  3190. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3191. KeyAttrDataFloat: *4 {
  3192. a: 0,0,218434821,0
  3193. }
  3194. KeyAttrRefCount: *1 {
  3195. a: 111
  3196. }
  3197. }
  3198. AnimationCurve: 2736206080, "AnimCurve::", "" {
  3199. Default: 0
  3200. KeyVer: 4008
  3201. KeyTime: *111 {
  3202. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3203. }
  3204. KeyValueFloat: *111 {
  3205. a: -1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,0,-1.907349e-006,0,0,0,0,0,0,0,-1.907349e-006,1.907349e-006,0,0,0,-1.907349e-006,1.907349e-006,0,1.907349e-006,0,3.814697e-006,0,0,-3.814697e-006,-5.722046e-006,-3.814697e-006,-3.814697e-006,-3.814697e-006,-1.907349e-006,-1.907349e-006,0,0,1.907349e-006,1.907349e-006,-1.907349e-006,-3.814697e-006,-3.814697e-006,-1.907349e-006,-3.814697e-006,-1.907349e-006,0,-1.907349e-006,0,-1.907349e-006,-1.907349e-006,-3.814697e-006,-3.814697e-006,-1.907349e-006,-1.907349e-006,-3.814697e-006,1.907349e-006,-3.814697e-006,0,-1.907349e-006,0,0,0,0,1.907349e-006,-3.814697e-006,0,0,0,0,-1.907349e-006,-1.907349e-006,-3.814697e-006,0,-1.907349e-006,-1.907349e-006,-3.814697e-006,-1.907349e-006,0,-1.907349e-006,0,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,0,0,-1.907349e-006,0,0,0,0,-1.907349e-006,-3.814697e-006,0,-1.907349e-006,0,-1.907349e-006,-1.907349e-006,-1.907349e-006,1.907349e-006,1.907349e-006,-1.907349e-006,1.907349e-006,0,-1.907349e-006,-1.907349e-006
  3206. }
  3207. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3208. KeyAttrFlags: *1 {
  3209. a: 8456
  3210. }
  3211. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3212. KeyAttrDataFloat: *4 {
  3213. a: 0,0,218434821,0
  3214. }
  3215. KeyAttrRefCount: *1 {
  3216. a: 111
  3217. }
  3218. }
  3219. AnimationCurve: 2736200000, "AnimCurve::", "" {
  3220. Default: 1.49410391259153e-006
  3221. KeyVer: 4008
  3222. KeyTime: *111 {
  3223. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3224. }
  3225. KeyValueFloat: *111 {
  3226. a: 1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,1.494104e-006,-5.122642e-006,1.28066e-006,-2.561321e-006,-1.280661e-006,1.707547e-006,-1.707547e-006,1.707547e-006,0,-8.537735e-007,8.537735e-007,0,-2.774764e-006,-3.415094e-006,1.707548e-006,-4.268868e-006,1.707547e-006,-1.707547e-006,0,1.707547e-006,5.976415e-006,-5.122641e-006,1.494104e-006,1.494104e-006,-1.067217e-006,1.494104e-006,1.494104e-006,1.494104e-006,2.774764e-006,1.494104e-006,1.494104e-006,0,-5.122642e-006,-1.707547e-006,0,-3.415095e-006,-3.415094e-006,0,-2.561321e-006,-2.561321e-006,1.707547e-006,-8.537737e-007,-5.122641e-006,-5.976415e-006,-8.537737e-007,8.537735e-007,2.561321e-006,-8.537736e-007,-8.537737e-007,0,2.561321e-006,-3.415094e-006,-4.268868e-006,-5.122642e-006,-5.122642e-006,-8.537735e-007,-5.122643e-006,-4.268868e-006,4.268868e-006,8.537737e-007,-5.976415e-006,-4.268868e-006,-4.268868e-006,-2.561321e-006,1.707547e-006,-2.561321e-006,-8.537736e-007,-2.561321e-006,-5.976416e-006,8.537735e-007,-5.976415e-006,-5.122642e-006,-2.561321e-006,-3.415094e-006,-1.707547e-006,-5.122642e-006,-4.268868e-006,-1.707547e-006,-1.707547e-006,-4.268868e-006,-2.561321e-006,-2.561321e-006,-5.976416e-006,-3.415094e-006,4.268868e-006,-8.537736e-007,-3.415095e-006,0,-4.268868e-006,-8.537737e-007,-2.561321e-006,-3.415094e-006,-2.561321e-006,-2.561321e-006,-1.707547e-006,-2.988208e-006,1.707547e-006,-4.482312e-006,1.814269e-006,2.561321e-006,1.494104e-006
  3227. }
  3228. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3229. KeyAttrFlags: *1 {
  3230. a: 8456
  3231. }
  3232. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3233. KeyAttrDataFloat: *4 {
  3234. a: 0,0,218434821,0
  3235. }
  3236. KeyAttrRefCount: *1 {
  3237. a: 111
  3238. }
  3239. }
  3240. AnimationCurve: 2736201440, "AnimCurve::", "" {
  3241. Default: 8.53773599374108e-006
  3242. KeyVer: 4008
  3243. KeyTime: *111 {
  3244. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3245. }
  3246. KeyValueFloat: *111 {
  3247. a: 8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,-6.830189e-006,2.561321e-006,4.268868e-007,5.549529e-006,-2.56132e-006,-0,8.537737e-007,-1.707548e-006,1.707547e-006,0,-1.707547e-006,1.707547e-006,-2.561321e-006,3.841982e-006,-1.173939e-006,1.067217e-006,-5.656251e-006,9.391512e-006,6.83019e-006,-6.830189e-006,-5.122642e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,8.537736e-006,6.830189e-006,8.537736e-006,8.537736e-006,3.415095e-006,-3.415096e-006,5.122643e-006,8.537738e-006,-1.707547e-006,3.415095e-006,6.830189e-006,-3.415095e-006,1.707548e-006,1.024528e-005,8.537738e-006,6.830189e-006,0,5.122643e-006,8.537737e-006,3.415095e-006,3.415095e-006,-5.122643e-006,-1.707548e-006,5.122642e-006,8.537738e-006,1.024528e-005,1.707548e-006,-3.415094e-006,-0,6.83019e-006,0,-5.122643e-006,3.415094e-006,1.707547e-006,-1.707547e-006,3.415095e-006,6.830189e-006,0,1.707548e-006,-1.707547e-006,5.122642e-006,1.707547e-006,6.830191e-006,-3.415095e-006,1.707548e-006,-1.024528e-005,1.707547e-006,-1.707547e-006,-0,-3.415094e-006,-5.122642e-006,5.122643e-006,-5.122643e-006,5.122642e-006,3.415095e-006,0,5.122641e-006,1.024529e-005,1.707547e-006,0,-3.415095e-006,1.707547e-006,-6.830189e-006,6.83019e-006,-3.415095e-006,3.415094e-006,-3.415094e-006,3.415095e-006,3.415095e-006,-3.415095e-006,-5.122642e-006,3.415095e-006,3.415094e-006,8.537736e-006
  3248. }
  3249. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3250. KeyAttrFlags: *1 {
  3251. a: 8456
  3252. }
  3253. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3254. KeyAttrDataFloat: *4 {
  3255. a: 0,0,218434821,0
  3256. }
  3257. KeyAttrRefCount: *1 {
  3258. a: 111
  3259. }
  3260. }
  3261. AnimationCurve: 2736202080, "AnimCurve::", "" {
  3262. Default: -8.43035221099854
  3263. KeyVer: 4008
  3264. KeyTime: *111 {
  3265. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3266. }
  3267. KeyValueFloat: *111 {
  3268. a: -8.430352,-8.430352,-8.430352,-8.430352,-8.430352,-8.430352,-8.430352,-8.430352,-8.430352,-8.430352,-8.430352,-65.75993,-55.71497,-37.69185,-34.35814,-34.50504,-34.74746,-32.95273,-33.50048,-38.00505,-44.49633,-53.98083,-72.19228,-90.08332,-99.63937,-105.9174,-107.3595,-96.68952,-82.60723,-78.66263,-76.52075,-65.75993,-8.430352,-8.430352,-8.430351,-8.430352,-8.430352,-8.430352,-8.430353,-8.430352,-8.430352,-41.66003,-42.18678,-42.67814,-43.13497,-43.55822,-43.94879,-44.30759,-44.63552,-44.93344,-45.20237,-45.44312,-45.65666,-45.84384,-46.00563,-46.14288,-46.25653,-46.34745,-46.41662,-46.46493,-46.49323,-46.50249,-46.49357,-46.4674,-46.4249,-46.36694,-46.29446,-46.20839,-46.10962,-45.999,-45.87751,-45.74602,-45.60546,-45.45673,-45.30074,-45.13837,-44.97058,-44.79823,-44.62225,-44.44357,-44.26303,-44.08164,-43.90021,-43.7197,-43.541,-43.36505,-43.19271,-43.02489,-42.86254,-42.70656,-42.55783,-42.41726,-42.28577,-42.16426,-42.05367,-41.95486,-41.86878,-41.7963,-41.73837,-41.69585,-41.66969,-41.66079,-41.66077,-37.86033,-33.87238,-29.74022,-25.50709,-21.21628,-16.91103,-12.63463,-8.430352
  3269. }
  3270. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3271. KeyAttrFlags: *1 {
  3272. a: 8456
  3273. }
  3274. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3275. KeyAttrDataFloat: *4 {
  3276. a: 0,0,218434821,0
  3277. }
  3278. KeyAttrRefCount: *1 {
  3279. a: 111
  3280. }
  3281. }
  3282. AnimationCurve: 2736207520, "AnimCurve::", "" {
  3283. Default: 0
  3284. KeyVer: 4008
  3285. KeyTime: *111 {
  3286. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3287. }
  3288. KeyValueFloat: *111 {
  3289. a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999998,0.9999998,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999998,0.9999999,0.9999999,1,0.9999999,1,0.9999998,0.9999998,1,0.9999998,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999997,1,0.9999999,1,0.9999998,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999998,0.9999999,1,1,0.9999999,0.9999998,0.9999999,0.9999998,1,0.9999999,0.9999999,1,1,0.9999999,0.9999998,0.9999999,1,0.9999999,1,1,0.9999998,0.9999999,0.9999999,1,0.9999999,1,0.9999998,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1
  3290. }
  3291. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3292. KeyAttrFlags: *1 {
  3293. a: 8456
  3294. }
  3295. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3296. KeyAttrDataFloat: *4 {
  3297. a: 0,0,218434821,0
  3298. }
  3299. KeyAttrRefCount: *1 {
  3300. a: 111
  3301. }
  3302. }
  3303. AnimationCurve: 2736205600, "AnimCurve::", "" {
  3304. Default: 0
  3305. KeyVer: 4008
  3306. KeyTime: *111 {
  3307. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3308. }
  3309. KeyValueFloat: *111 {
  3310. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999998,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1
  3311. }
  3312. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3313. KeyAttrFlags: *1 {
  3314. a: 8456
  3315. }
  3316. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3317. KeyAttrDataFloat: *4 {
  3318. a: 0,0,218434821,0
  3319. }
  3320. KeyAttrRefCount: *1 {
  3321. a: 111
  3322. }
  3323. }
  3324. AnimationCurve: 2736204960, "AnimCurve::", "" {
  3325. Default: 0
  3326. KeyVer: 4008
  3327. KeyTime: *111 {
  3328. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3329. }
  3330. KeyValueFloat: *111 {
  3331. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  3332. }
  3333. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3334. KeyAttrFlags: *1 {
  3335. a: 8456
  3336. }
  3337. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3338. KeyAttrDataFloat: *4 {
  3339. a: 0,0,218434821,0
  3340. }
  3341. KeyAttrRefCount: *1 {
  3342. a: 111
  3343. }
  3344. }
  3345. AnimationCurve: 2736200160, "AnimCurve::", "" {
  3346. Default: 0
  3347. KeyVer: 4008
  3348. KeyTime: *111 {
  3349. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3350. }
  3351. KeyValueFloat: *111 {
  3352. a: 5.731991,5.731991,5.731991,5.731991,5.731991,5.731991,5.731991,5.731991,5.731991,5.731991,5.731991,5.731995,5.731995,5.731995,5.731991,5.731991,5.731995,5.731994,5.731995,5.731993,5.731995,5.731991,5.731995,5.731996,5.731994,5.731997,5.731995,5.731995,5.731994,5.731997,5.731993,5.731997,5.731993,5.731993,5.731993,5.731995,5.731991,5.731993,5.731995,5.731997,5.731997,5.731998,5.731998,5.731998,5.731993,5.731993,5.731997,5.731995,5.731993,5.731995,5.731997,5.731995,5.731998,5.731993,5.731995,5.731995,5.731995,5.731993,5.731995,5.731997,5.731997,5.731995,5.731993,5.731997,5.731995,5.731997,5.731995,5.731997,5.731995,5.731995,5.731997,5.731995,5.731995,5.731995,5.731995,5.731997,5.731997,5.731995,5.731995,5.731995,5.731997,5.731997,5.731995,5.731995,5.731997,5.731993,5.731995,5.731995,5.731995,5.731998,5.731997,5.731995,5.731995,5.731997,5.731993,5.731997,5.731995,5.731997,5.731997,5.731993,5.731998,5.731995,5.731997,5.731993,5.731998,5.731997,5.731995,5.731991,5.731993,5.731995,5.731991
  3353. }
  3354. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3355. KeyAttrFlags: *1 {
  3356. a: 8456
  3357. }
  3358. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3359. KeyAttrDataFloat: *4 {
  3360. a: 0,0,218434821,0
  3361. }
  3362. KeyAttrRefCount: *1 {
  3363. a: 111
  3364. }
  3365. }
  3366. AnimationCurve: 2736205120, "AnimCurve::", "" {
  3367. Default: 0
  3368. KeyVer: 4008
  3369. KeyTime: *111 {
  3370. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3371. }
  3372. KeyValueFloat: *111 {
  3373. a: 4.768372e-007,4.768372e-007,4.768372e-007,0,0,4.768372e-007,0,0,4.768372e-007,4.768372e-007,0,-1.907349e-006,9.536743e-007,-9.536743e-007,0,1.907349e-006,0,1.907349e-006,0,3.814697e-006,0,9.536743e-007,-9.536743e-007,1.907349e-006,0,1.907349e-006,1.907349e-006,3.814697e-006,0,1.907349e-006,1.907349e-006,-1.907349e-006,0,4.768372e-007,9.536743e-007,0,0,4.768372e-007,0,0,0,3.814697e-006,2.861023e-006,3.814697e-006,1.907349e-006,2.861023e-006,1.907349e-006,0,1.907349e-006,9.536743e-007,9.536743e-007,0,4.768372e-006,0,0,0,9.536743e-007,-9.536743e-007,0,2.861023e-006,1.907349e-006,9.536743e-007,9.536743e-007,9.536743e-007,0,1.907349e-006,2.861023e-006,-9.536743e-007,1.907349e-006,-9.536743e-007,9.536743e-007,2.861023e-006,3.814697e-006,2.861023e-006,9.536743e-007,1.907349e-006,9.536743e-007,1.907349e-006,9.536743e-007,2.861023e-006,0,9.536743e-007,1.907349e-006,9.536743e-007,1.907349e-006,9.536743e-007,3.814697e-006,-9.536743e-007,2.861023e-006,9.536743e-007,1.907349e-006,1.907349e-006,1.907349e-006,9.536743e-007,1.907349e-006,1.907349e-006,9.536743e-007,9.536743e-007,9.536743e-007,1.907349e-006,1.907349e-006,1.907349e-006,2.861023e-006,-9.536743e-007,0,0,-9.536743e-007,1.192093e-006,-4.768372e-007,0,4.768372e-007
  3374. }
  3375. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3376. KeyAttrFlags: *1 {
  3377. a: 8456
  3378. }
  3379. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3380. KeyAttrDataFloat: *4 {
  3381. a: 0,0,218434821,0
  3382. }
  3383. KeyAttrRefCount: *1 {
  3384. a: 111
  3385. }
  3386. }
  3387. AnimationCurve: 2736200960, "AnimCurve::", "" {
  3388. Default: 0
  3389. KeyVer: 4008
  3390. KeyTime: *111 {
  3391. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3392. }
  3393. KeyValueFloat: *111 {
  3394. a: 0,0,0,0,0,0,0,0,0,0,0,-1.907349e-006,0,-1.907349e-006,1.907349e-006,1.907349e-006,0,0,0,0,-1.907349e-006,-1.907349e-006,1.907349e-006,-1.907349e-006,0,1.907349e-006,-1.907349e-006,0,-1.907349e-006,1.907349e-006,-1.907349e-006,0,0,3.814697e-006,3.814697e-006,0,0,3.814697e-006,3.814697e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,0,0,0,5.722046e-006,3.814697e-006,0,1.907349e-006,-1.907349e-006,1.907349e-006,0,-1.907349e-006,3.814697e-006,1.907349e-006,0,1.907349e-006,0,1.907349e-006,3.814697e-006,0,1.907349e-006,1.907349e-006,0,0,1.907349e-006,0,1.907349e-006,0,0,-1.907349e-006,0,0,0,0,1.907349e-006,1.907349e-006,1.907349e-006,0,1.907349e-006,0,0,0,1.907349e-006,0,0,1.907349e-006,1.907349e-006,1.907349e-006,0,0,-1.907349e-006,1.907349e-006,0,0,-1.907349e-006,1.907349e-006,1.907349e-006,0,1.907349e-006,0,0,0,1.907349e-006,0,1.907349e-006,1.907349e-006,0,0,1.907349e-006,0
  3395. }
  3396. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3397. KeyAttrFlags: *1 {
  3398. a: 8456
  3399. }
  3400. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3401. KeyAttrDataFloat: *4 {
  3402. a: 0,0,218434821,0
  3403. }
  3404. KeyAttrRefCount: *1 {
  3405. a: 111
  3406. }
  3407. }
  3408. AnimationCurve: 2736207200, "AnimCurve::", "" {
  3409. Default: -92.7127838134766
  3410. KeyVer: 4008
  3411. KeyTime: *111 {
  3412. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3413. }
  3414. KeyValueFloat: *111 {
  3415. a: -92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-85.81539,-88.24404,-90.99232,-88.94336,-85.39187,-82.37791,-80.87665,-80.2108,-80.13557,-80.68589,-82.21223,-86.31586,-88.14359,-85.78153,-81.75494,-75.92759,-63.16804,-54.79794,-60.53333,-72.67107,-85.81539,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-92.71278,-87.96952,-87.88463,-87.80516,-87.73104,-87.66216,-87.59844,-87.53976,-87.48599,-87.43704,-87.39278,-87.35309,-87.31783,-87.28689,-87.26011,-87.23737,-87.21852,-87.20344,-87.19196,-87.18394,-87.17924,-87.1777,-87.17918,-87.18354,-87.1906,-87.20023,-87.21225,-87.22654,-87.24292,-87.26125,-87.28136,-87.30312,-87.32634,-87.35091,-87.37664,-87.40339,-87.43102,-87.45934,-87.48824,-87.51756,-87.54713,-87.57682,-87.60648,-87.63594,-87.66508,-87.69373,-87.72176,-87.74903,-87.77538,-87.80067,-87.82477,-87.84751,-87.86877,-87.88839,-87.90624,-87.92218,-87.93605,-87.94773,-87.95706,-87.96391,-87.96812,-87.96956,-87.96957,-88.57316,-89.18964,-89.81014,-90.42648,-91.0312,-91.61762,-92.17985,-92.71278
  3416. }
  3417. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3418. KeyAttrFlags: *1 {
  3419. a: 8456
  3420. }
  3421. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3422. KeyAttrDataFloat: *4 {
  3423. a: 0,0,218434821,0
  3424. }
  3425. KeyAttrRefCount: *1 {
  3426. a: 111
  3427. }
  3428. }
  3429. AnimationCurve: 2736207840, "AnimCurve::", "" {
  3430. Default: 18.355110168457
  3431. KeyVer: 4008
  3432. KeyTime: *111 {
  3433. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3434. }
  3435. KeyValueFloat: *111 {
  3436. a: 18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,-16.37016,-16.13889,-10.0411,-8.083994,-6.694281,-5.254713,-3.224777,-0.658204,3.158744,7.3139,9.403591,5.529429,-0.5970709,-3.371449,-5.06985,-6.243223,-5.244117,-4.132878,-10.21478,-17.24469,-16.37016,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,18.35511,9.912866,9.785274,9.666466,9.556166,9.454125,9.360083,9.273806,9.195037,9.123547,9.059078,9.001415,8.950311,8.905541,8.866873,8.834077,8.806938,8.78523,8.768725,8.757206,8.750455,8.748253,8.750384,8.756626,8.766773,8.780607,8.79791,8.818465,8.842068,8.8685,8.897543,8.928991,8.962623,8.998227,9.035589,9.07449,9.11472,9.156067,9.198304,9.241224,9.284601,9.328227,9.371879,9.415333,9.458384,9.500796,9.542353,9.582857,9.622052,9.659735,9.695677,9.729666,9.761471,9.790877,9.817656,9.841584,9.862436,9.879994,9.894047,9.904347,9.910698,9.91286,9.912843,10.83968,11.82388,12.85579,13.92518,15.02131,16.1329,17.24823,18.35511
  3437. }
  3438. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3439. KeyAttrFlags: *1 {
  3440. a: 8456
  3441. }
  3442. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3443. KeyAttrDataFloat: *4 {
  3444. a: 0,0,218434821,0
  3445. }
  3446. KeyAttrRefCount: *1 {
  3447. a: 111
  3448. }
  3449. }
  3450. AnimationCurve: 2736202720, "AnimCurve::", "" {
  3451. Default: -9.294677734375
  3452. KeyVer: 4008
  3453. KeyTime: *111 {
  3454. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3455. }
  3456. KeyValueFloat: *111 {
  3457. a: -9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-14.68472,-15.89412,-14.87508,-12.03045,-7.971257,-2.550858,7.320444,15.56003,16.94383,15.52805,11.62313,1.712949,-8.46409,-12.96961,-15.97724,-19.95216,-28.59579,-34.08264,-31.41528,-23.92836,-14.68471,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294678,-9.294679,-18.40982,-18.55782,-18.69599,-18.82455,-18.94376,-19.05385,-19.15504,-19.24758,-19.33171,-19.40767,-19.47571,-19.53608,-19.58902,-19.63479,-19.67363,-19.70579,-19.73154,-19.75111,-19.76477,-19.77278,-19.77538,-19.77284,-19.76542,-19.75336,-19.73694,-19.71641,-19.69201,-19.66403,-19.63272,-19.59832,-19.5611,-19.52133,-19.47926,-19.43514,-19.38924,-19.34183,-19.29313,-19.24342,-19.19298,-19.14202,-19.09084,-19.03967,-18.98876,-18.93839,-18.8888,-18.84024,-18.79299,-18.74728,-18.70336,-18.6615,-18.62196,-18.58498,-18.55081,-18.51971,-18.49193,-18.46773,-18.44736,-18.43107,-18.41911,-18.41175,-18.40924,-18.40927,-17.34542,-16.23612,-15.0938,-13.93046,-12.75772,-11.58686,-10.42892,-9.294678
  3458. }
  3459. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3460. KeyAttrFlags: *1 {
  3461. a: 8456
  3462. }
  3463. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3464. KeyAttrDataFloat: *4 {
  3465. a: 0,0,218434821,0
  3466. }
  3467. KeyAttrRefCount: *1 {
  3468. a: 111
  3469. }
  3470. }
  3471. AnimationCurve: 2736205920, "AnimCurve::", "" {
  3472. Default: 0
  3473. KeyVer: 4008
  3474. KeyTime: *111 {
  3475. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3476. }
  3477. KeyValueFloat: *111 {
  3478. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999998,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999998,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999
  3479. }
  3480. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3481. KeyAttrFlags: *1 {
  3482. a: 8456
  3483. }
  3484. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3485. KeyAttrDataFloat: *4 {
  3486. a: 0,0,218434821,0
  3487. }
  3488. KeyAttrRefCount: *1 {
  3489. a: 111
  3490. }
  3491. }
  3492. AnimationCurve: 2736206400, "AnimCurve::", "" {
  3493. Default: 0
  3494. KeyVer: 4008
  3495. KeyTime: *111 {
  3496. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3497. }
  3498. KeyValueFloat: *111 {
  3499. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,0.9999999
  3500. }
  3501. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3502. KeyAttrFlags: *1 {
  3503. a: 8456
  3504. }
  3505. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3506. KeyAttrDataFloat: *4 {
  3507. a: 0,0,218434821,0
  3508. }
  3509. KeyAttrRefCount: *1 {
  3510. a: 111
  3511. }
  3512. }
  3513. AnimationCurve: 2736208000, "AnimCurve::", "" {
  3514. Default: 0
  3515. KeyVer: 4008
  3516. KeyTime: *111 {
  3517. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3518. }
  3519. KeyValueFloat: *111 {
  3520. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999998,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999998,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1
  3521. }
  3522. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3523. KeyAttrFlags: *1 {
  3524. a: 8456
  3525. }
  3526. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3527. KeyAttrDataFloat: *4 {
  3528. a: 0,0,218434821,0
  3529. }
  3530. KeyAttrRefCount: *1 {
  3531. a: 111
  3532. }
  3533. }
  3534. AnimationCurve: 2736203520, "AnimCurve::", "" {
  3535. Default: 0
  3536. KeyVer: 4008
  3537. KeyTime: *111 {
  3538. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3539. }
  3540. KeyValueFloat: *111 {
  3541. a: 4.905943,4.905943,4.905943,4.905943,4.905943,4.905943,4.905943,4.905943,4.905943,4.905943,4.905943,4.905942,4.905946,4.905943,4.905945,4.905945,4.905947,4.905945,4.905946,4.905946,4.905949,4.905943,4.905945,4.905945,4.905944,4.905945,4.905947,4.905947,4.905943,4.905943,4.905946,4.905945,4.905941,4.905945,4.905943,4.905941,4.905941,4.905941,4.905943,4.905941,4.905945,4.905947,4.905947,4.905945,4.905943,4.905945,4.905945,4.905945,4.905945,4.905947,4.905943,4.905943,4.905943,4.905945,4.905947,4.905943,4.905945,4.905947,4.905945,4.905945,4.905945,4.905945,4.905943,4.905945,4.905945,4.905945,4.905945,4.905945,4.905947,4.905945,4.905945,4.905949,4.905947,4.905945,4.905947,4.905945,4.905945,4.905943,4.905943,4.905945,4.905945,4.905947,4.905943,4.905943,4.905945,4.905945,4.905945,4.905945,4.905945,4.905945,4.905945,4.905945,4.905947,4.905945,4.905945,4.905945,4.905945,4.905943,4.905945,4.905947,4.905945,4.905947,4.905945,4.905947,4.905945,4.905945,4.905945,4.905943,4.905947,4.905943,4.905943
  3542. }
  3543. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3544. KeyAttrFlags: *1 {
  3545. a: 8456
  3546. }
  3547. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3548. KeyAttrDataFloat: *4 {
  3549. a: 0,0,218434821,0
  3550. }
  3551. KeyAttrRefCount: *1 {
  3552. a: 111
  3553. }
  3554. }
  3555. AnimationCurve: 2736204320, "AnimCurve::", "" {
  3556. Default: 0
  3557. KeyVer: 4008
  3558. KeyTime: *111 {
  3559. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3560. }
  3561. KeyValueFloat: *111 {
  3562. a: 0.4278221,0.4278221,0.4278221,0.4278221,0.4278221,0.4278221,0.4278221,0.4278221,0.4278221,0.4278221,0.4278221,0.427824,0.4278259,0.4278221,0.4278259,0.4278221,0.427824,0.4278259,0.4278231,0.4278221,0.4278221,0.4278231,0.4278259,0.427824,0.4278221,0.4278259,0.427824,0.4278221,0.427824,0.4278221,0.427824,0.4278221,0.427824,0.427824,0.4278221,0.4278221,0.427824,0.427824,0.427824,0.427824,0.427824,0.427824,0.427824,0.427824,0.427824,0.4278259,0.4278221,0.4278221,0.4278259,0.4278221,0.4278259,0.427824,0.4278259,0.427824,0.4278259,0.427824,0.4278259,0.4278259,0.4278259,0.4278259,0.427824,0.4278221,0.4278259,0.427824,0.4278259,0.427824,0.4278221,0.4278259,0.4278259,0.4278259,0.427824,0.4278259,0.427824,0.427824,0.427824,0.4278259,0.4278259,0.427824,0.427824,0.427824,0.427824,0.4278259,0.4278221,0.4278259,0.4278259,0.4278259,0.4278259,0.4278259,0.427824,0.4278221,0.4278221,0.4278221,0.4278259,0.427824,0.4278221,0.427824,0.4278259,0.427824,0.427824,0.4278221,0.4278221,0.427824,0.4278259,0.4278259,0.4278259,0.4278259,0.427824,0.4278221,0.427824,0.427824,0.4278221
  3563. }
  3564. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3565. KeyAttrFlags: *1 {
  3566. a: 8456
  3567. }
  3568. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3569. KeyAttrDataFloat: *4 {
  3570. a: 0,0,218434821,0
  3571. }
  3572. KeyAttrRefCount: *1 {
  3573. a: 111
  3574. }
  3575. }
  3576. AnimationCurve: 2736203840, "AnimCurve::", "" {
  3577. Default: 0
  3578. KeyVer: 4008
  3579. KeyTime: *111 {
  3580. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3581. }
  3582. KeyValueFloat: *111 {
  3583. a: -3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276365,-3.276366,-3.276365,-3.276368,-3.276369,-3.276365,-3.276369,-3.276369,-3.276367,-3.276367,-3.276364,-3.276366,-3.276367,-3.276365,-3.276363,-3.276364,-3.276367,-3.276365,-3.27637,-3.276366,-3.276363,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276366,-3.276365,-3.276366,-3.276366,-3.276369,-3.276368,-3.276366,-3.276369,-3.276369,-3.276369,-3.276365,-3.276368,-3.276365,-3.276367,-3.276368,-3.276368,-3.276365,-3.276366,-3.276368,-3.276368,-3.276368,-3.276364,-3.276366,-3.276366,-3.276367,-3.276365,-3.276368,-3.276366,-3.276364,-3.276368,-3.276366,-3.276367,-3.276367,-3.276365,-3.276365,-3.276368,-3.276368,-3.276367,-3.276369,-3.276363,-3.276368,-3.276366,-3.276367,-3.276367,-3.276367,-3.276367,-3.276367,-3.276366,-3.276366,-3.276369,-3.276367,-3.276369,-3.276366,-3.276367,-3.276365,-3.276366,-3.276366,-3.276366,-3.276368,-3.276367,-3.276367,-3.276366,-3.276369,-3.276367,-3.276366,-3.276366,-3.276367,-3.276364,-3.276366,-3.276366,-3.276367,-3.276366,-3.276366,-3.276366
  3584. }
  3585. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3586. KeyAttrFlags: *1 {
  3587. a: 8456
  3588. }
  3589. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3590. KeyAttrDataFloat: *4 {
  3591. a: 0,0,218434821,0
  3592. }
  3593. KeyAttrRefCount: *1 {
  3594. a: 111
  3595. }
  3596. }
  3597. AnimationCurve: 2736209760, "AnimCurve::", "" {
  3598. Default: 16.9478740692139
  3599. KeyVer: 4008
  3600. KeyTime: *111 {
  3601. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3602. }
  3603. KeyValueFloat: *111 {
  3604. a: 16.94787,16.94787,16.94787,16.94787,16.94787,16.94787,16.94787,16.94787,16.94787,16.94787,16.94787,16.94788,16.94787,16.94787,16.94788,16.94788,16.94788,16.94787,16.94787,16.42706,15.924,16.94788,25.09681,34.65425,29.7247,21.70759,16.94788,16.36321,16.94787,16.94787,16.94788,16.94787,16.94787,16.94787,16.94788,16.94787,16.94787,16.94787,16.94788,16.94787,16.94787,16.94789,16.94789,16.94788,16.94788,16.94788,16.94789,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94789,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94789,16.94788,16.94788,16.94788,16.94787,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94789,16.94788,16.94788,16.94788,16.94788,16.94788,16.94788,16.94787,16.94788,16.94787,16.94788,16.94787,16.94788,16.94788,16.94788,16.94787,16.94787,16.94788,16.94789,16.94788,16.94787,16.94787
  3605. }
  3606. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3607. KeyAttrFlags: *1 {
  3608. a: 8456
  3609. }
  3610. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3611. KeyAttrDataFloat: *4 {
  3612. a: 0,0,218434821,0
  3613. }
  3614. KeyAttrRefCount: *1 {
  3615. a: 111
  3616. }
  3617. }
  3618. AnimationCurve: 2736201760, "AnimCurve::", "" {
  3619. Default: 45.5321273803711
  3620. KeyVer: 4008
  3621. KeyTime: *111 {
  3622. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3623. }
  3624. KeyValueFloat: *111 {
  3625. a: 45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53212,45.53213,45.53213,45.53213,45.53213,44.91615,44.29509,45.53212,52.62955,57.4056,55.27248,50.15306,45.53213,44.83879,45.53212,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53212,45.53212,45.53212,45.53213,45.53213,45.53213,45.53212,45.53213,45.53213,45.53212,45.53213,45.53213,45.53212,45.53213,45.53212,45.53213,45.53212,45.53212,45.53212,45.53213,45.53213,45.53213,45.53212,45.53213,45.53213,45.53213,45.53213,45.53213,45.53212,45.53212,45.53212,45.53214,45.53213,45.53212,45.53213,45.53213,45.53213,45.53212,45.53213,45.53212,45.53212,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53213,45.53212,45.53213,45.53212,45.53213,45.53213,45.53212,45.53213,45.53212,45.53213,45.53212,45.53212,45.53213,45.53212,45.53213,45.53213,45.53213,45.53213,45.53213
  3626. }
  3627. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3628. KeyAttrFlags: *1 {
  3629. a: 8456
  3630. }
  3631. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3632. KeyAttrDataFloat: *4 {
  3633. a: 0,0,218434821,0
  3634. }
  3635. KeyAttrRefCount: *1 {
  3636. a: 111
  3637. }
  3638. }
  3639. AnimationCurve: 2736208160, "AnimCurve::", "" {
  3640. Default: 33.906810760498
  3641. KeyVer: 4008
  3642. KeyTime: *111 {
  3643. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3644. }
  3645. KeyValueFloat: *111 {
  3646. a: 33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90681,33.90682,33.90681,33.90681,33.90681,33.09509,32.2998,33.90681,45.56144,57.88617,51.64465,40.90413,33.90682,32.99479,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90682,33.90682,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681
  3647. }
  3648. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3649. KeyAttrFlags: *1 {
  3650. a: 8456
  3651. }
  3652. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3653. KeyAttrDataFloat: *4 {
  3654. a: 0,0,218434821,0
  3655. }
  3656. KeyAttrRefCount: *1 {
  3657. a: 111
  3658. }
  3659. }
  3660. AnimationCurve: 2736208480, "AnimCurve::", "" {
  3661. Default: 0
  3662. KeyVer: 4008
  3663. KeyTime: *111 {
  3664. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3665. }
  3666. KeyValueFloat: *111 {
  3667. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999998,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999998,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999998,0.9999998,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999
  3668. }
  3669. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3670. KeyAttrFlags: *1 {
  3671. a: 8456
  3672. }
  3673. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3674. KeyAttrDataFloat: *4 {
  3675. a: 0,0,218434821,0
  3676. }
  3677. KeyAttrRefCount: *1 {
  3678. a: 111
  3679. }
  3680. }
  3681. AnimationCurve: 2736209280, "AnimCurve::", "" {
  3682. Default: 0
  3683. KeyVer: 4008
  3684. KeyTime: *111 {
  3685. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3686. }
  3687. KeyValueFloat: *111 {
  3688. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1
  3689. }
  3690. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3691. KeyAttrFlags: *1 {
  3692. a: 8456
  3693. }
  3694. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3695. KeyAttrDataFloat: *4 {
  3696. a: 0,0,218434821,0
  3697. }
  3698. KeyAttrRefCount: *1 {
  3699. a: 111
  3700. }
  3701. }
  3702. AnimationCurve: 2736201280, "AnimCurve::", "" {
  3703. Default: 0
  3704. KeyVer: 4008
  3705. KeyTime: *111 {
  3706. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3707. }
  3708. KeyValueFloat: *111 {
  3709. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  3710. }
  3711. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3712. KeyAttrFlags: *1 {
  3713. a: 8456
  3714. }
  3715. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3716. KeyAttrDataFloat: *4 {
  3717. a: 0,0,218434821,0
  3718. }
  3719. KeyAttrRefCount: *1 {
  3720. a: 111
  3721. }
  3722. }
  3723. AnimationCurve: 2736209600, "AnimCurve::", "" {
  3724. Default: 0
  3725. KeyVer: 4008
  3726. KeyTime: *111 {
  3727. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3728. }
  3729. KeyValueFloat: *111 {
  3730. a: 6.535389,6.535389,6.535389,6.535389,6.535389,6.535389,6.535389,6.535389,6.535389,6.535389,6.535389,6.535387,6.535393,6.53539,6.535393,6.535388,6.53539,6.53539,6.53539,6.535392,6.535393,6.535389,6.535389,6.53539,6.53539,6.535389,6.535391,6.535391,6.535389,6.535389,6.535392,6.535387,6.535387,6.535389,6.535389,6.535387,6.535387,6.535387,6.535389,6.535387,6.535389,6.535391,6.535391,6.53539,6.535389,6.535391,6.535393,6.53539,6.535392,6.53539,6.535391,6.535393,6.535389,6.535389,6.535393,6.535388,6.53539,6.535393,6.53539,6.535391,6.535389,6.53539,6.535389,6.535392,6.535389,6.535392,6.535389,6.535391,6.535393,6.535391,6.535389,6.535391,6.535393,6.535389,6.535393,6.535391,6.535389,6.535391,6.53539,6.535391,6.535391,6.535391,6.535391,6.535389,6.535389,6.535391,6.535392,6.535392,6.535391,6.535389,6.535391,6.535391,6.535389,6.535391,6.53539,6.535389,6.535389,6.535389,6.535389,6.53539,6.53539,6.535391,6.535391,6.535391,6.535391,6.535393,6.535389,6.535391,6.535391,6.535393,6.535389
  3731. }
  3732. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3733. KeyAttrFlags: *1 {
  3734. a: 8456
  3735. }
  3736. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3737. KeyAttrDataFloat: *4 {
  3738. a: 0,0,218434821,0
  3739. }
  3740. KeyAttrRefCount: *1 {
  3741. a: 111
  3742. }
  3743. }
  3744. AnimationCurve: 2736211520, "AnimCurve::", "" {
  3745. Default: 0
  3746. KeyVer: 4008
  3747. KeyTime: *111 {
  3748. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3749. }
  3750. KeyValueFloat: *111 {
  3751. a: -1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,0,1.907349e-006,0,0,0,0,0,0,0,-9.536743e-007,0,1.907349e-006,0,-1.907349e-006,1.907349e-006,-1.907349e-006,-3.814697e-006,0,-1.907349e-006,0,0,0,0,0,0,-1.907349e-006,1.907349e-006,0,0,1.907349e-006,1.907349e-006,0,-1.907349e-006,1.907349e-006,1.907349e-006,0,0,0,-3.814697e-006,1.907349e-006,1.907349e-006,0,-1.907349e-006,0,0,1.907349e-006,0,0,0,0,0,0,0,0,-1.907349e-006,-1.907349e-006,0,0,1.907349e-006,0,1.907349e-006,1.907349e-006,1.907349e-006,1.907349e-006,0,3.814697e-006,-1.907349e-006,-1.907349e-006,-1.907349e-006,-3.814697e-006,0,0,0,3.814697e-006,1.907349e-006,3.814697e-006,0,0,0,0,-1.907349e-006,0,0,0,0,0,0,0,-1.907349e-006,0,1.907349e-006,0,3.814697e-006,1.907349e-006,0,1.907349e-006,0,-1.907349e-006,1.907349e-006,-1.907349e-006
  3752. }
  3753. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3754. KeyAttrFlags: *1 {
  3755. a: 8456
  3756. }
  3757. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3758. KeyAttrDataFloat: *4 {
  3759. a: 0,0,218434821,0
  3760. }
  3761. KeyAttrRefCount: *1 {
  3762. a: 111
  3763. }
  3764. }
  3765. AnimationCurve: 2736211840, "AnimCurve::", "" {
  3766. Default: 0
  3767. KeyVer: 4008
  3768. KeyTime: *111 {
  3769. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3770. }
  3771. KeyValueFloat: *111 {
  3772. a: -7.152557e-007,-7.152557e-007,-7.152557e-007,-1.192093e-006,-1.192093e-006,-7.152557e-007,-1.192093e-006,-1.192093e-006,-7.152557e-007,-7.152557e-007,-7.152557e-007,0,9.536743e-007,0,-1.907349e-006,-1.907349e-006,0,0,-3.814697e-006,0,0,9.536743e-007,-4.768372e-007,0,0,3.814697e-006,-1.907349e-006,-1.907349e-006,0,-1.907349e-006,9.536743e-007,0,0,0,-7.152557e-007,-2.384186e-007,-1.192093e-006,-4.768372e-007,-2.384186e-007,-4.768372e-007,-9.536743e-007,-9.536743e-007,-1.907349e-006,4.768372e-007,-1.907349e-006,0,-1.907349e-006,9.536743e-007,-1.907349e-006,1.907349e-006,9.536743e-007,0,-1.907349e-006,1.907349e-006,9.536743e-007,-9.536743e-007,0,-9.536743e-007,1.907349e-006,-9.536743e-007,-9.536743e-007,-9.536743e-007,9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,0,1.907349e-006,-1.907349e-006,9.536743e-007,9.536743e-007,0,-1.907349e-006,-9.536743e-007,9.536743e-007,0,9.536743e-007,-9.536743e-007,0,-1.907349e-006,-1.907349e-006,0,0,-9.536743e-007,9.536743e-007,9.536743e-007,9.536743e-007,0,-2.861023e-006,-4.768372e-007,-9.536743e-007,0,-9.536743e-007,0,-4.768372e-007,9.536743e-007,-4.768372e-007,-1.430511e-006,4.768372e-007,4.768372e-007,-9.536743e-007,0,0,0,0,9.536743e-007,-1.907349e-006,-1.907349e-006,0,4.768372e-007,-7.152557e-007
  3773. }
  3774. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3775. KeyAttrFlags: *1 {
  3776. a: 8456
  3777. }
  3778. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3779. KeyAttrDataFloat: *4 {
  3780. a: 0,0,218434821,0
  3781. }
  3782. KeyAttrRefCount: *1 {
  3783. a: 111
  3784. }
  3785. }
  3786. AnimationCurve: 2736210400, "AnimCurve::", "" {
  3787. Default: 17.1279716491699
  3788. KeyVer: 4008
  3789. KeyTime: *111 {
  3790. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3791. }
  3792. KeyValueFloat: *111 {
  3793. a: 17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.01601,16.8507,16.69546,16.5359,16.39779,16.3432,16.34849,16.29425,16.25016,16.39779,16.96208,17.20931,17.21013,17.16594,17.13868,17.2189,17.222,17.22846,17.19936,17.12798,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12798,17.12797,17.12798,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12798,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12798,17.12797,17.12797,17.12797,17.12798,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12798,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12797,17.12798,17.12798,17.12798,17.12798,17.12797
  3794. }
  3795. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3796. KeyAttrFlags: *1 {
  3797. a: 8456
  3798. }
  3799. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3800. KeyAttrDataFloat: *4 {
  3801. a: 0,0,218434821,0
  3802. }
  3803. KeyAttrRefCount: *1 {
  3804. a: 111
  3805. }
  3806. }
  3807. AnimationCurve: 2736211040, "AnimCurve::", "" {
  3808. Default: -1.88661420345306
  3809. KeyVer: 4008
  3810. KeyTime: *111 {
  3811. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3812. }
  3813. KeyValueFloat: *111 {
  3814. a: -1.886614,-1.886614,-1.886614,-1.886614,-1.886614,-1.886614,-1.886614,-1.886614,-1.886614,-1.886614,-1.886614,-1.886613,-2.73814,-3.641248,-4.314175,-4.904698,-5.359268,-5.527531,-5.51149,-5.673685,-5.801775,-5.359268,-3.063298,-0.8248866,-0.8070579,-1.489106,-1.783753,-0.5832418,0.4792236,-0.01257822,-1.016642,-1.886617,-1.886614,-1.886614,-1.886612,-1.886614,-1.886614,-1.886614,-1.886612,-1.886614,-1.886614,-1.886614,-1.886614,-1.886612,-1.886612,-1.886612,-1.886615,-1.886615,-1.886615,-1.886616,-1.886619,-1.886615,-1.886609,-1.88661,-1.886614,-1.886614,-1.88661,-1.886614,-1.886617,-1.886616,-1.886614,-1.886614,-1.886609,-1.886612,-1.886612,-1.886612,-1.886612,-1.886611,-1.886614,-1.886617,-1.886614,-1.88661,-1.886612,-1.886617,-1.886611,-1.886612,-1.886611,-1.886614,-1.886617,-1.886619,-1.886614,-1.886614,-1.886619,-1.886615,-1.886614,-1.886617,-1.886615,-1.886614,-1.886614,-1.886612,-1.886614,-1.88661,-1.886615,-1.886612,-1.886614,-1.886612,-1.886609,-1.886614,-1.886612,-1.886616,-1.886614,-1.88661,-1.886612,-1.886614,-1.886614,-1.886615,-1.886617,-1.886615,-1.886614,-1.886613,-1.886614
  3815. }
  3816. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3817. KeyAttrFlags: *1 {
  3818. a: 8456
  3819. }
  3820. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3821. KeyAttrDataFloat: *4 {
  3822. a: 0,0,218434821,0
  3823. }
  3824. KeyAttrRefCount: *1 {
  3825. a: 111
  3826. }
  3827. }
  3828. AnimationCurve: 2736210240, "AnimCurve::", "" {
  3829. Default: -0.589621663093567
  3830. KeyVer: 4008
  3831. KeyTime: *111 {
  3832. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3833. }
  3834. KeyValueFloat: *111 {
  3835. a: -0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896217,-0.5896199,2.184825,5.154998,7.392737,9.377817,10.92178,11.49718,11.44223,11.99877,12.43981,10.92179,3.250429,-4.026049,-4.083612,-1.878485,-0.9234636,-4.806042,-8.232909,-6.646723,-3.40668,-0.5896216,-0.5896217,-0.5896217,-0.5896199,-0.5896235,-0.5896217,-0.5896217,-0.5896199,-0.5896217,-0.5896216,-0.5896251,-0.5896167,-0.5896234,-0.5896217,-0.5896251,-0.5896217,-0.5896233,-0.5896183,-0.5896251,-0.5896268,-0.5896251,-0.5896268,-0.5896199,-0.5896217,-0.5896199,-0.5896183,-0.5896217,-0.5896182,-0.5896183,-0.5896183,-0.5896199,-0.5896201,-0.5896199,-0.58962,-0.5896233,-0.5896235,-0.5896183,-0.5896233,-0.58962,-0.5896235,-0.5896199,-0.5896199,-0.5896233,-0.5896235,-0.5896268,-0.5896251,-0.5896286,-0.5896285,-0.5896267,-0.5896286,-0.5896199,-0.5896217,-0.5896165,-0.5896217,-0.5896199,-0.5896268,-0.5896251,-0.5896217,-0.5896233,-0.5896199,-0.5896217,-0.5896217,-0.5896217,-0.5896183,-0.5896165,-0.58962,-0.5896218,-0.5896183,-0.5896251,-0.58962,-0.5896217,-0.5896233,-0.5896217,-0.58962,-0.5896199,-0.5896199,-0.5896217,-0.5896183,-0.5896183,-0.5896217
  3836. }
  3837. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3838. KeyAttrFlags: *1 {
  3839. a: 8456
  3840. }
  3841. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3842. KeyAttrDataFloat: *4 {
  3843. a: 0,0,218434821,0
  3844. }
  3845. KeyAttrRefCount: *1 {
  3846. a: 111
  3847. }
  3848. }
  3849. AnimationCurve: 2736211200, "AnimCurve::", "" {
  3850. Default: 0
  3851. KeyVer: 4008
  3852. KeyTime: *111 {
  3853. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3854. }
  3855. KeyValueFloat: *111 {
  3856. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999998,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999998,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,0.9999998,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999998,1,0.9999999,0.9999998,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1
  3857. }
  3858. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3859. KeyAttrFlags: *1 {
  3860. a: 8456
  3861. }
  3862. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3863. KeyAttrDataFloat: *4 {
  3864. a: 0,0,218434821,0
  3865. }
  3866. KeyAttrRefCount: *1 {
  3867. a: 111
  3868. }
  3869. }
  3870. AnimationCurve: 2736211360, "AnimCurve::", "" {
  3871. Default: 0
  3872. KeyVer: 4008
  3873. KeyTime: *111 {
  3874. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3875. }
  3876. KeyValueFloat: *111 {
  3877. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999998,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999998,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,0.9999998,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999998,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999998,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999
  3878. }
  3879. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3880. KeyAttrFlags: *1 {
  3881. a: 8456
  3882. }
  3883. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3884. KeyAttrDataFloat: *4 {
  3885. a: 0,0,218434821,0
  3886. }
  3887. KeyAttrRefCount: *1 {
  3888. a: 111
  3889. }
  3890. }
  3891. AnimationCurve: 2736212160, "AnimCurve::", "" {
  3892. Default: 0
  3893. KeyVer: 4008
  3894. KeyTime: *111 {
  3895. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3896. }
  3897. KeyValueFloat: *111 {
  3898. a: 0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,0.9999998,0.9999998,0.9999999,0.9999998,0.9999998,0.9999998,0.9999999,0.9999998,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999998
  3899. }
  3900. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3901. KeyAttrFlags: *1 {
  3902. a: 8456
  3903. }
  3904. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3905. KeyAttrDataFloat: *4 {
  3906. a: 0,0,218434821,0
  3907. }
  3908. KeyAttrRefCount: *1 {
  3909. a: 111
  3910. }
  3911. }
  3912. AnimationCurve: 2736212800, "AnimCurve::", "" {
  3913. Default: 0
  3914. KeyVer: 4008
  3915. KeyTime: *111 {
  3916. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3917. }
  3918. KeyValueFloat: *111 {
  3919. a: 194.5657,194.5657,194.5657,194.5657,194.5657,194.5657,194.5657,194.5657,194.5657,194.5657,194.5657,83.34713,149.667,188.8566,173.0242,142.2914,108.9502,69.34593,54.46493,87.66138,136.3473,182.8049,194.4106,115.8809,22.97506,-63.48166,-115.8745,-109.6666,-65.31973,-33.24245,10.95174,83.34711,194.5397,194.5246,194.5184,194.5193,194.5252,194.5344,194.545,194.555,194.5625,141.1411,139.7236,138.3863,137.1301,135.9551,134.8615,133.8489,132.917,132.0649,131.2916,130.596,129.9768,129.4324,128.9611,128.5611,128.2304,127.9667,127.7669,127.6286,127.5493,127.5264,127.5571,127.6388,127.7687,127.9439,128.1616,128.4189,128.7129,129.0409,129.3998,129.7868,130.1991,130.6337,131.0877,131.5586,132.0433,132.5393,133.0436,133.5536,134.0667,134.5801,135.0913,135.5978,136.097,136.5863,137.0635,137.5255,137.9696,138.3935,138.7952,139.1725,139.5233,139.8455,140.1369,140.3956,140.6193,140.806,140.9537,141.0602,141.1232,141.1408,141.1408,150.8851,160.1756,168.7485,176.376,182.8745,188.1121,192.014,194.5657
  3920. }
  3921. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3922. KeyAttrFlags: *1 {
  3923. a: 8456
  3924. }
  3925. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3926. KeyAttrDataFloat: *4 {
  3927. a: 0,0,218434821,0
  3928. }
  3929. KeyAttrRefCount: *1 {
  3930. a: 111
  3931. }
  3932. }
  3933. AnimationCurve: 2736158240, "AnimCurve::", "" {
  3934. Default: 0
  3935. KeyVer: 4008
  3936. KeyTime: *111 {
  3937. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3938. }
  3939. KeyValueFloat: *111 {
  3940. a: 62.04412,62.04412,62.04412,62.04412,62.04412,62.04412,62.04412,62.04412,62.04412,62.04412,62.04412,118.2222,94.95293,66.4685,60.25502,66.83316,73.96413,62.59707,47.18221,38.83025,28.56418,24.52589,48.62224,68.40108,73.82135,81.00733,94.72794,138.0312,172.4672,163.7431,137.1584,118.2222,62.06059,62.07053,62.07502,62.07514,62.07196,62.06654,62.05998,62.05334,62.04771,103.5601,104.2762,104.942,105.5591,106.1292,106.6535,107.1338,107.5716,107.9683,108.3257,108.645,108.9278,109.1757,109.39,109.5721,109.7236,109.8454,109.9384,110.0039,110.043,110.057,110.0471,110.0145,109.9602,109.8856,109.7918,109.6799,109.5512,109.4067,109.2477,109.0753,108.8907,108.695,108.4895,108.2753,108.0535,107.8253,107.5919,107.3545,107.1143,106.8724,106.6302,106.3886,106.1491,105.9128,105.6808,105.4543,105.234,105.0215,104.818,104.6249,104.4435,104.2751,104.1211,103.9829,103.8618,103.7591,103.6762,103.6145,103.5753,103.5601,103.5601,98.34636,92.87119,87.26134,81.65535,76.19678,71.02603,66.27216,62.04412
  3941. }
  3942. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3943. KeyAttrFlags: *1 {
  3944. a: 8456
  3945. }
  3946. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3947. KeyAttrDataFloat: *4 {
  3948. a: 0,0,218434821,0
  3949. }
  3950. KeyAttrRefCount: *1 {
  3951. a: 111
  3952. }
  3953. }
  3954. AnimationCurve: 2736153760, "AnimCurve::", "" {
  3955. Default: 0
  3956. KeyVer: 4008
  3957. KeyTime: *111 {
  3958. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3959. }
  3960. KeyValueFloat: *111 {
  3961. a: 8.749154,8.749154,8.749154,8.749154,8.749154,8.749154,8.749154,8.749154,8.749154,8.749154,8.749155,137.8398,89.09237,-24.50993,-92.27665,-137.1931,-165.1838,-190.6909,-199.1352,-187.0706,-154.669,-91.74585,37.73936,151.8136,187.611,176.0209,139.9933,103.4211,84.73055,112.0081,144.2773,137.8398,8.71626,8.696819,8.688534,8.68908,8.696176,8.707509,8.720784,8.733677,8.743904,106.6548,107.8418,108.9356,109.9408,110.8618,111.703,112.468,113.161,113.7851,114.3439,114.8406,115.2781,115.6593,115.987,116.2636,116.4916,116.6732,116.8106,116.9058,116.9609,116.9777,116.9581,116.9039,116.817,116.699,116.5517,116.3767,116.1757,115.9503,115.7021,115.433,115.1444,114.8381,114.5158,114.179,113.8296,113.4692,113.0998,112.723,112.3407,111.9548,111.5672,111.1798,110.7947,110.4139,110.0393,109.6731,109.3174,108.9745,108.6464,108.3354,108.0437,107.7735,107.5272,107.3069,107.1149,106.9534,106.8245,106.7304,106.6733,106.6552,106.6552,97.64139,87.43819,76.12631,63.8321,50.72537,37.01379,22.93542,8.749154
  3962. }
  3963. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3964. KeyAttrFlags: *1 {
  3965. a: 8456
  3966. }
  3967. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3968. KeyAttrDataFloat: *4 {
  3969. a: 0,0,218434821,0
  3970. }
  3971. KeyAttrRefCount: *1 {
  3972. a: 111
  3973. }
  3974. }
  3975. AnimationCurve: 2736149280, "AnimCurve::", "" {
  3976. Default: -10.6895895004272
  3977. KeyVer: 4008
  3978. KeyTime: *111 {
  3979. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  3980. }
  3981. KeyValueFloat: *111 {
  3982. a: -10.68959,-10.68959,-10.68959,-10.68959,-10.68959,-10.68959,-10.68959,-10.68959,-10.68959,-10.68959,-10.68959,-62.17774,-45.28579,0.09967679,32.3818,55.66106,71.6464,79.30453,79.03541,76.17886,71.49133,61.45351,144.6583,98.07499,92.91637,92.88493,97.9494,112.2469,121.9212,115.9644,110.4015,117.8223,169.3104,169.3104,169.3104,169.3104,169.3104,169.3104,169.3104,169.3104,169.3104,129.1357,128.6956,128.2785,127.8847,127.514,127.1667,126.8427,126.5422,126.2651,126.0113,125.7808,125.5733,125.3886,125.2265,125.0865,124.9683,124.8715,124.7954,124.7395,124.7032,124.6858,124.6865,124.7046,124.7393,124.7898,124.8551,124.9344,125.0267,125.1311,125.2466,125.3723,125.5072,125.6502,125.8001,125.9561,126.1169,126.2816,126.4491,126.6185,126.7888,126.9591,127.1285,127.296,127.4608,127.6222,127.7792,127.9312,128.0774,128.2169,128.3493,128.4737,128.5894,128.6959,128.7924,128.8783,128.953,129.0158,129.0661,129.1033,129.1267,129.1356,129.1356,132.1539,135.1356,138.1661,141.4064,145.1486,149.9549,157.0303,169.3104
  3983. }
  3984. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  3985. KeyAttrFlags: *1 {
  3986. a: 8456
  3987. }
  3988. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3989. KeyAttrDataFloat: *4 {
  3990. a: 0,0,218434821,0
  3991. }
  3992. KeyAttrRefCount: *1 {
  3993. a: 111
  3994. }
  3995. }
  3996. AnimationCurve: 2736151360, "AnimCurve::", "" {
  3997. Default: -71.8818206787109
  3998. KeyVer: 4008
  3999. KeyTime: *111 {
  4000. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4001. }
  4002. KeyValueFloat: *111 {
  4003. a: -71.88182,-71.88182,-71.88182,-71.88182,-71.88182,-71.88182,-71.88182,-71.88182,-71.88182,-71.88182,-71.88182,-14.41223,-33.37815,-48.99797,-46.84406,-40.57358,-32.46965,-18.8951,-12.58026,-21.09912,-36.38398,-57.05672,-103.8173,-137.8185,-165.4707,-189.5459,-206.7265,-211.8831,-210.1424,-201.6243,-186.0086,-165.5878,-108.1182,-108.1182,-108.1182,-108.1182,-108.1182,-108.1182,-108.1182,-108.1182,-108.1182,-171.5479,-172.5629,-173.5126,-174.3988,-175.2235,-175.9886,-176.6958,-177.347,-177.9441,-178.4886,-178.9824,-179.427,-179.8241,-180.1752,-180.4819,-180.7457,-180.9679,-181.15,-181.2934,-181.3994,-181.4692,-181.5042,-181.5056,-181.4747,-181.4125,-181.3203,-181.1992,-181.0504,-180.8751,-180.6742,-180.4491,-180.2008,-179.9311,-179.6419,-179.3349,-179.0121,-178.6754,-178.3266,-177.9676,-177.6003,-177.2267,-176.8488,-176.4685,-176.0878,-175.7087,-175.3332,-174.9634,-174.6013,-174.249,-173.9086,-173.5821,-173.2717,-172.9794,-172.7074,-172.4577,-172.2326,-172.034,-171.8641,-171.7251,-171.6189,-171.5478,-171.5478,-164.5071,-156.9442,-148.9668,-140.6945,-132.2626,-123.8346,-115.6421,-108.1182
  4004. }
  4005. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4006. KeyAttrFlags: *1 {
  4007. a: 8456
  4008. }
  4009. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4010. KeyAttrDataFloat: *4 {
  4011. a: 0,0,218434821,0
  4012. }
  4013. KeyAttrRefCount: *1 {
  4014. a: 111
  4015. }
  4016. }
  4017. AnimationCurve: 2736152640, "AnimCurve::", "" {
  4018. Default: 95.8346557617188
  4019. KeyVer: 4008
  4020. KeyTime: *111 {
  4021. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4022. }
  4023. KeyValueFloat: *111 {
  4024. a: 95.83466,95.83466,95.83466,95.83466,95.83466,95.83466,95.83466,95.83466,95.83466,95.83466,95.83466,142.1337,127.3007,88.03366,60.89922,43.54872,31.62522,21.64806,15.32508,11.4818,10.27559,17.51212,-62.53022,-13.53102,-8.098175,-4.564255,-1.504074,-2.972092,-12.40654,-21.98689,-29.88329,-37.86629,-84.16534,-84.16534,-84.16534,-84.16534,-84.16534,-84.16534,-84.16534,-84.16534,-84.16534,-57.88752,-58.02641,-58.17014,-58.31696,-58.46528,-58.61362,-58.76067,-58.90515,-59.04601,-59.1822,-59.31287,-59.43724,-59.55459,-59.66434,-59.76599,-59.85912,-59.94337,-60.0185,-60.08427,-60.14061,-60.18739,-60.22461,-60.25227,-60.27047,-60.27931,-60.27892,-60.26945,-60.2511,-60.22408,-60.18859,-60.14484,-60.09319,-60.03429,-59.96892,-59.89784,-59.82179,-59.74146,-59.65756,-59.57072,-59.48159,-59.39074,-59.29876,-59.20615,-59.11346,-59.0211,-58.92955,-58.83923,-58.75048,-58.66371,-58.57924,-58.49738,-58.41845,-58.34277,-58.27057,-58.20215,-58.13782,-58.07783,-58.02247,-57.97208,-57.92691,-57.88739,-57.88739,-57.4348,-57.47128,-58.08755,-59.42721,-61.75159,-65.58509,-72.0918,-84.16534
  4025. }
  4026. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4027. KeyAttrFlags: *1 {
  4028. a: 8456
  4029. }
  4030. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4031. KeyAttrDataFloat: *4 {
  4032. a: 0,0,218434821,0
  4033. }
  4034. KeyAttrRefCount: *1 {
  4035. a: 111
  4036. }
  4037. }
  4038. AnimationCurve: 2736158400, "AnimCurve::", "" {
  4039. Default: 0
  4040. KeyVer: 4008
  4041. KeyTime: *111 {
  4042. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4043. }
  4044. KeyValueFloat: *111 {
  4045. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999998,1,0.9999999,1,0.9999998,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999998,0.9999999,0.9999998,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999998,1,0.9999999,1,0.9999999,0.9999998,1,1,0.9999999,0.9999998,0.9999998,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,0.9999998,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999997,0.9999999,0.9999999,0.9999998,1,0.9999999,1,0.9999998,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,0.9999998,0.9999999
  4046. }
  4047. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4048. KeyAttrFlags: *1 {
  4049. a: 8456
  4050. }
  4051. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4052. KeyAttrDataFloat: *4 {
  4053. a: 0,0,218434821,0
  4054. }
  4055. KeyAttrRefCount: *1 {
  4056. a: 111
  4057. }
  4058. }
  4059. AnimationCurve: 2736154880, "AnimCurve::", "" {
  4060. Default: 0
  4061. KeyVer: 4008
  4062. KeyTime: *111 {
  4063. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4064. }
  4065. KeyValueFloat: *111 {
  4066. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  4067. }
  4068. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4069. KeyAttrFlags: *1 {
  4070. a: 8456
  4071. }
  4072. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4073. KeyAttrDataFloat: *4 {
  4074. a: 0,0,218434821,0
  4075. }
  4076. KeyAttrRefCount: *1 {
  4077. a: 111
  4078. }
  4079. }
  4080. AnimationCurve: 2736153280, "AnimCurve::", "" {
  4081. Default: 0
  4082. KeyVer: 4008
  4083. KeyTime: *111 {
  4084. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4085. }
  4086. KeyValueFloat: *111 {
  4087. a: 0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999997,0.9999999,0.9999997,0.9999999,0.9999997,0.9999994,0.9999998,0.9999998,0.9999996,0.9999996,0.9999997,0.9999997,0.9999997,0.9999998,1,0.9999997,0.9999997,0.9999998,0.9999998,0.9999997,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999998,0.9999997,0.9999996,0.9999999,0.9999996,0.9999996,0.9999999,0.9999996,0.9999996,0.9999998,0.9999996,0.9999998,0.9999998,0.9999998,0.9999997,0.9999997,0.9999998,0.9999997,0.9999998,0.9999998,0.9999996,0.9999998,0.9999996,0.9999998,0.9999998,0.9999997,0.9999997,0.9999997,0.9999996,0.9999999,0.9999998,0.9999998,0.9999997,0.9999996,0.9999998,0.9999998,0.9999998,0.9999998,0.9999996,0.9999998,0.9999998,0.9999997,0.9999998,0.9999997,0.9999998,0.9999996,0.9999999,0.9999999,0.9999996,0.9999997,0.9999998,0.9999996,0.9999996,0.9999998,0.9999999,0.9999998,0.9999998,0.9999998,0.9999997,0.9999998,0.9999997,0.9999997,0.9999997,0.9999997,0.9999996,0.9999999,0.9999996,0.9999996,0.9999998
  4088. }
  4089. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4090. KeyAttrFlags: *1 {
  4091. a: 8456
  4092. }
  4093. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4094. KeyAttrDataFloat: *4 {
  4095. a: 0,0,218434821,0
  4096. }
  4097. KeyAttrRefCount: *1 {
  4098. a: 111
  4099. }
  4100. }
  4101. AnimationCurve: 2736153120, "AnimCurve::", "" {
  4102. Default: 0
  4103. KeyVer: 4008
  4104. KeyTime: *111 {
  4105. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4106. }
  4107. KeyValueFloat: *111 {
  4108. a: -2.854862,-2.854862,-2.854862,-2.854862,-2.854862,-2.854862,-2.854862,-2.854862,-2.854862,-2.854862,-2.854858,-2.854858,-3.041592,-3.145119,-3.030937,-2.771423,-2.53006,-2.402538,-2.306572,-2.246288,-2.222321,-2.233425,-2.419056,-2.626385,-2.776051,-2.897068,-2.950714,-2.962105,-2.950253,-2.921505,-2.885082,-2.854858,-2.854858,-2.854862,-2.854858,-2.854862,-2.854858,-2.854858,-2.854858,-2.854858,-2.854858,-2.854862,-2.854858,-2.854866,-2.854862,-2.854858,-2.854862,-2.854862,-2.854862,-2.854858,-2.854858,-2.854862,-2.854858,-2.854862,-2.854862,-2.854858,-2.854862,-2.854858,-2.854862,-2.854855,-2.854858,-2.854858,-2.854862,-2.854866,-2.854862,-2.854855,-2.854858,-2.854858,-2.854862,-2.854862,-2.854866,-2.854858,-2.854858,-2.854858,-2.854862,-2.854855,-2.854858,-2.854855,-2.854858,-2.854858,-2.854862,-2.854862,-2.854858,-2.854858,-2.854858,-2.854862,-2.854851,-2.854858,-2.854862,-2.854858,-2.854862,-2.854862,-2.854858,-2.854858,-2.854862,-2.854858,-2.854855,-2.854858,-2.854858,-2.854858,-2.854858,-2.854862,-2.854862,-2.854858,-2.854862,-2.854858,-2.854862,-2.854862,-2.854858,-2.854862,-2.854862
  4109. }
  4110. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4111. KeyAttrFlags: *1 {
  4112. a: 8456
  4113. }
  4114. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4115. KeyAttrDataFloat: *4 {
  4116. a: 0,0,218434821,0
  4117. }
  4118. KeyAttrRefCount: *1 {
  4119. a: 111
  4120. }
  4121. }
  4122. AnimationCurve: 2736150720, "AnimCurve::", "" {
  4123. Default: 0
  4124. KeyVer: 4008
  4125. KeyTime: *111 {
  4126. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4127. }
  4128. KeyValueFloat: *111 {
  4129. a: 0.3545072,0.3545072,0.3545067,0.354507,0.354507,0.3545072,0.354507,0.354507,0.3545067,0.3545072,0.354507,0.3545094,-0.114666,-0.3734074,0.02337837,0.644762,1.082191,1.265293,1.386921,1.451283,1.460747,1.416618,1.001244,0.5208206,0.4797058,0.600399,0.6835499,0.6498966,0.5825539,0.4997845,0.4190369,0.3545094,0.354507,0.354507,0.354507,0.3545065,0.354507,0.3545065,0.3545067,0.3545072,0.354507,0.354507,0.354507,0.3545074,0.3545074,0.3545067,0.354507,0.3545072,0.3545072,0.354507,0.3545067,0.3545072,0.3545065,0.3545074,0.354507,0.3545067,0.3545074,0.3545072,0.3545072,0.3545067,0.3545072,0.3545067,0.3545072,0.354507,0.3545077,0.3545065,0.3545067,0.3545077,0.3545074,0.3545067,0.354507,0.354507,0.3545065,0.3545067,0.3545072,0.3545067,0.3545077,0.354507,0.3545074,0.354507,0.354507,0.3545074,0.3545065,0.3545072,0.354507,0.354507,0.354507,0.3545072,0.3545077,0.354507,0.3545067,0.3545077,0.3545074,0.3545072,0.3545072,0.354507,0.354507,0.3545072,0.3545063,0.354507,0.3545067,0.3545077,0.3545077,0.3545074,0.3545067,0.3545067,0.354507,0.3545072,0.354507,0.354507,0.3545067
  4130. }
  4131. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4132. KeyAttrFlags: *1 {
  4133. a: 8456
  4134. }
  4135. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4136. KeyAttrDataFloat: *4 {
  4137. a: 0,0,218434821,0
  4138. }
  4139. KeyAttrRefCount: *1 {
  4140. a: 111
  4141. }
  4142. }
  4143. AnimationCurve: 2736155360, "AnimCurve::", "" {
  4144. Default: 0
  4145. KeyVer: 4008
  4146. KeyTime: *111 {
  4147. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4148. }
  4149. KeyValueFloat: *111 {
  4150. a: -2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917256,-2.917255,-2.742226,-2.598449,-2.756396,-2.948058,-3.035959,-3.068719,-3.089807,-3.104665,-3.117455,-3.129835,-3.151943,-3.101266,-2.974936,-2.834407,-2.7593,-2.755203,-2.78279,-2.828764,-2.878766,-2.917256,-2.917256,-2.917257,-2.917257,-2.917256,-2.917256,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917256,-2.917257,-2.917257,-2.917256,-2.917256,-2.917256,-2.917256,-2.917257,-2.917256,-2.917257,-2.917256,-2.917257,-2.917257,-2.917256,-2.917256,-2.917256,-2.917257,-2.917257,-2.917257,-2.917257,-2.917256,-2.917257,-2.917257,-2.917257,-2.917257,-2.917256,-2.917257,-2.917256,-2.917257,-2.917257,-2.917257,-2.917256,-2.917256,-2.917256,-2.917257,-2.917257,-2.917257,-2.917256,-2.917257,-2.917257,-2.917256,-2.917257,-2.917256,-2.917257,-2.917256,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917256,-2.917257,-2.917257,-2.917257,-2.917257,-2.917257,-2.917256,-2.917257
  4151. }
  4152. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4153. KeyAttrFlags: *1 {
  4154. a: 8456
  4155. }
  4156. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4157. KeyAttrDataFloat: *4 {
  4158. a: 0,0,218434821,0
  4159. }
  4160. KeyAttrRefCount: *1 {
  4161. a: 111
  4162. }
  4163. }
  4164. AnimationCurve: 2736151680, "AnimCurve::", "" {
  4165. Default: 109.082077026367
  4166. KeyVer: 4008
  4167. KeyTime: *111 {
  4168. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4169. }
  4170. KeyValueFloat: *111 {
  4171. a: 109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,118.655,126.3531,134.1282,145.2674,154.1379,142.1569,133.0418,140.7981,151.1415,159.7032,145.7464,130.9019,125.8265,124.4164,127.6149,126.6265,121.817,118.2916,113.6263,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821,109.0821
  4172. }
  4173. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4174. KeyAttrFlags: *1 {
  4175. a: 8456
  4176. }
  4177. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4178. KeyAttrDataFloat: *4 {
  4179. a: 0,0,218434821,0
  4180. }
  4181. KeyAttrRefCount: *1 {
  4182. a: 111
  4183. }
  4184. }
  4185. AnimationCurve: 2736158720, "AnimCurve::", "" {
  4186. Default: 75.231330871582
  4187. KeyVer: 4008
  4188. KeyTime: *111 {
  4189. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4190. }
  4191. KeyValueFloat: *111 {
  4192. a: 75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,73.42303,72.54288,75.14517,79.45938,83.11452,84.3495,84.37867,84.68082,84.48733,83.67574,81.55769,79.14184,77.71944,75.88625,74.56114,74.33743,74.53488,74.98723,75.27545,75.23133,75.23133,75.23133,75.23133,75.23134,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23134,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23133,75.23134,75.23133,75.23133
  4193. }
  4194. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4195. KeyAttrFlags: *1 {
  4196. a: 8456
  4197. }
  4198. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4199. KeyAttrDataFloat: *4 {
  4200. a: 0,0,218434821,0
  4201. }
  4202. KeyAttrRefCount: *1 {
  4203. a: 111
  4204. }
  4205. }
  4206. AnimationCurve: 2736151040, "AnimCurve::", "" {
  4207. Default: -76.0244903564453
  4208. KeyVer: 4008
  4209. KeyTime: *111 {
  4210. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4211. }
  4212. KeyValueFloat: *111 {
  4213. a: -76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02449,-76.02449,-76.02448,-63.52234,-55.02678,-52.26735,-47.7304,-42.54545,-54.77561,-63.11852,-53.72908,-41.17502,-30.08307,-37.51056,-47.42715,-56.65322,-65.30438,-66.48728,-67.32233,-70.40079,-71.39565,-73.45493,-76.0245,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02448,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02449,-76.02449,-76.02449,-76.02448,-76.02448,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02449,-76.02449,-76.02448,-76.02449,-76.02449,-76.02448,-76.02448,-76.02448,-76.02449,-76.02449,-76.02449,-76.02448,-76.02448,-76.02448,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449,-76.02449,-76.02449,-76.02449,-76.02449,-76.0245,-76.02449
  4214. }
  4215. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4216. KeyAttrFlags: *1 {
  4217. a: 8456
  4218. }
  4219. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4220. KeyAttrDataFloat: *4 {
  4221. a: 0,0,218434821,0
  4222. }
  4223. KeyAttrRefCount: *1 {
  4224. a: 111
  4225. }
  4226. }
  4227. AnimationCurve: 2736148960, "AnimCurve::", "" {
  4228. Default: 0
  4229. KeyVer: 4008
  4230. KeyTime: *111 {
  4231. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4232. }
  4233. KeyValueFloat: *111 {
  4234. a: 0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999998,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999998,1,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,1,0.9999999,0.9999998,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999
  4235. }
  4236. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4237. KeyAttrFlags: *1 {
  4238. a: 8456
  4239. }
  4240. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4241. KeyAttrDataFloat: *4 {
  4242. a: 0,0,218434821,0
  4243. }
  4244. KeyAttrRefCount: *1 {
  4245. a: 111
  4246. }
  4247. }
  4248. AnimationCurve: 2736154080, "AnimCurve::", "" {
  4249. Default: 0
  4250. KeyVer: 4008
  4251. KeyTime: *111 {
  4252. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4253. }
  4254. KeyValueFloat: *111 {
  4255. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,1,0.9999999,0.9999998,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,0.9999998,1,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1
  4256. }
  4257. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4258. KeyAttrFlags: *1 {
  4259. a: 8456
  4260. }
  4261. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4262. KeyAttrDataFloat: *4 {
  4263. a: 0,0,218434821,0
  4264. }
  4265. KeyAttrRefCount: *1 {
  4266. a: 111
  4267. }
  4268. }
  4269. AnimationCurve: 2736153440, "AnimCurve::", "" {
  4270. Default: 0
  4271. KeyVer: 4008
  4272. KeyTime: *111 {
  4273. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4274. }
  4275. KeyValueFloat: *111 {
  4276. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999998,1,0.9999999,1,0.9999998,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999998,0.9999999,1,0.9999999,1,0.9999998,1,0.9999999,1,1,1,1,1,1,1,1,1,1
  4277. }
  4278. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4279. KeyAttrFlags: *1 {
  4280. a: 8456
  4281. }
  4282. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4283. KeyAttrDataFloat: *4 {
  4284. a: 0,0,218434821,0
  4285. }
  4286. KeyAttrRefCount: *1 {
  4287. a: 111
  4288. }
  4289. }
  4290. AnimationCurve: 2736152000, "AnimCurve::", "" {
  4291. Default: 0
  4292. KeyVer: 4008
  4293. KeyTime: *111 {
  4294. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4295. }
  4296. KeyValueFloat: *111 {
  4297. a: 4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.07468,4.074682,4.074678,4.074681,4.07468,4.074679,4.074678,4.074679,4.07468,4.074679,4.07468,4.07468,4.07468,4.074678,4.07468,4.074681,4.074682,4.074681,4.074682,4.07468,4.074682,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074679,4.074678,4.074679,4.07468,4.074679,4.07468,4.07468,4.074678,4.07468,4.074681,4.074679,4.07468,4.07468,4.07468,4.07468,4.074679,4.074679,4.07468,4.07468,4.074679,4.07468,4.07468,4.074681,4.07468,4.07468,4.07468,4.074679,4.07468,4.074681,4.074681,4.07468,4.074679,4.074679,4.07468,4.07468,4.07468,4.07468,4.07468,4.07468,4.074679,4.07468,4.07468,4.07468,4.074681,4.074679,4.07468,4.074679,4.07468,4.07468,4.07468,4.074679,4.074679,4.074679,4.074679,4.074678,4.07468,4.074679,4.07468,4.07468,4.07468,4.074679,4.07468,4.074678,4.07468,4.07468,4.07468,4.074679,4.07468,4.074679,4.074679,4.074679
  4298. }
  4299. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4300. KeyAttrFlags: *1 {
  4301. a: 8456
  4302. }
  4303. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4304. KeyAttrDataFloat: *4 {
  4305. a: 0,0,218434821,0
  4306. }
  4307. KeyAttrRefCount: *1 {
  4308. a: 111
  4309. }
  4310. }
  4311. AnimationCurve: 2736150400, "AnimCurve::", "" {
  4312. Default: 0
  4313. KeyVer: 4008
  4314. KeyTime: *111 {
  4315. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4316. }
  4317. KeyValueFloat: *111 {
  4318. a: 0,0,0,0,0,0,0,0,0,0,0,1.907349e-006,0,-1.907349e-006,3.814697e-006,9.536743e-007,-9.536743e-007,9.536743e-007,2.861023e-006,-1.907349e-006,-1.907349e-006,-2.861023e-006,-2.861023e-006,0,-1.907349e-006,-1.907349e-006,9.536743e-007,2.861023e-006,0,9.536743e-007,2.861023e-006,2.861023e-006,2.384186e-007,0,2.384186e-007,0,4.768372e-007,2.384186e-007,2.384186e-007,0,0,0,2.384186e-007,-2.384186e-007,0,0,-2.384186e-007,-2.384186e-007,-2.384186e-007,2.384186e-007,0,-2.384186e-007,2.384186e-007,0,0,0,-2.384186e-007,-2.384186e-007,-2.384186e-007,2.384186e-007,0,2.384186e-007,-4.768372e-007,-2.384186e-007,-2.384186e-007,-2.384186e-007,0,2.384186e-007,-2.384186e-007,-4.768372e-007,-2.384186e-007,-2.384186e-007,-2.384186e-007,0,0,-2.384186e-007,0,2.384186e-007,2.384186e-007,7.152557e-007,0,-2.384186e-007,2.384186e-007,0,4.768372e-007,4.768372e-007,2.384186e-007,0,-4.768372e-007,2.384186e-007,0,4.768372e-007,-2.384186e-007,0,4.768372e-007,-2.384186e-007,-2.384186e-007,-2.384186e-007,-7.152557e-007,-4.768372e-007,-4.768372e-007,-2.384186e-007,-2.384186e-007,-2.384186e-007,2.384186e-007,2.384186e-007,-2.384186e-007,2.384186e-007,2.384186e-007,0,0
  4319. }
  4320. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4321. KeyAttrFlags: *1 {
  4322. a: 8456
  4323. }
  4324. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4325. KeyAttrDataFloat: *4 {
  4326. a: 0,0,218434821,0
  4327. }
  4328. KeyAttrRefCount: *1 {
  4329. a: 111
  4330. }
  4331. }
  4332. AnimationCurve: 2736151200, "AnimCurve::", "" {
  4333. Default: 0
  4334. KeyVer: 4008
  4335. KeyTime: *111 {
  4336. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4337. }
  4338. KeyValueFloat: *111 {
  4339. a: 3.814697e-006,3.814697e-006,3.814697e-006,0,3.814697e-006,3.814697e-006,3.814697e-006,3.814697e-006,3.814697e-006,3.814697e-006,7.629395e-006,0,0,0,0,0,3.814697e-006,-3.814697e-006,3.814697e-006,0,0,3.814697e-006,0,0,3.814697e-006,0,0,-3.814697e-006,0,0,-3.814697e-006,0,0,0,3.814697e-006,0,0,3.814697e-006,3.814697e-006,7.629395e-006,0,3.814697e-006,0,-3.814697e-006,0,3.814697e-006,0,3.814697e-006,-3.814697e-006,-3.814697e-006,3.814697e-006,-3.814697e-006,-3.814697e-006,0,0,-3.814697e-006,0,-3.814697e-006,0,0,-3.814697e-006,0,-3.814697e-006,0,3.814697e-006,0,-3.814697e-006,0,-3.814697e-006,0,0,3.814697e-006,3.814697e-006,3.814697e-006,0,0,0,0,3.814697e-006,-3.814697e-006,0,0,0,-3.814697e-006,0,0,0,3.814697e-006,-3.814697e-006,0,3.814697e-006,3.814697e-006,3.814697e-006,0,0,0,0,3.814697e-006,-3.814697e-006,-3.814697e-006,-3.814697e-006,3.814697e-006,3.814697e-006,3.814697e-006,0,3.814697e-006,0,0,3.814697e-006,0,3.814697e-006
  4340. }
  4341. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4342. KeyAttrFlags: *1 {
  4343. a: 8456
  4344. }
  4345. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4346. KeyAttrDataFloat: *4 {
  4347. a: 0,0,218434821,0
  4348. }
  4349. KeyAttrRefCount: *1 {
  4350. a: 111
  4351. }
  4352. }
  4353. AnimationCurve: 2736150880, "AnimCurve::", "" {
  4354. Default: -12.4738693237305
  4355. KeyVer: 4008
  4356. KeyTime: *111 {
  4357. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4358. }
  4359. KeyValueFloat: *111 {
  4360. a: -12.47387,-12.47387,-12.47387,-12.47387,-12.47386,-12.47387,-12.47386,-12.47387,-12.47387,-12.47387,-12.47387,-37.3802,-18.30937,37.63662,68.20226,73.29535,68.14669,59.02423,48.44283,36.89849,25.74999,15.01218,-3.355262,-36.5781,-54.2314,-64.26674,-68.4883,-62.10284,-53.82081,-49.04596,-44.16831,-37.38018,-12.47387,-12.47387,-12.47387,-12.47387,-12.47387,-12.47387,-12.47387,-12.47387,-12.47387,-44.45613,-44.99493,-45.51129,-46.00349,-46.46987,-46.90884,-47.31889,-47.69852,-48.04626,-48.36065,-48.64021,-48.88343,-49.08886,-49.25497,-49.38025,-49.46321,-49.51025,-49.52979,-49.52322,-49.49203,-49.43759,-49.36133,-49.26461,-49.14883,-49.01535,-48.86555,-48.70079,-48.52243,-48.33183,-48.13037,-47.91941,-47.70033,-47.47451,-47.24336,-47.00822,-46.77055,-46.53175,-46.29326,-46.05649,-45.82292,-45.59401,-45.37124,-45.15611,-44.95013,-44.7548,-44.57169,-44.41092,-44.28037,-44.17827,-44.10278,-44.05207,-44.02424,-44.01731,-44.02928,-44.05802,-44.10137,-44.15705,-44.22276,-44.29614,-44.37476,-44.45618,-44.4562,-41.04318,-37.43391,-33.65185,-29.715,-25.63424,-21.41101,-17.03396,-12.47387
  4361. }
  4362. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4363. KeyAttrFlags: *1 {
  4364. a: 8456
  4365. }
  4366. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4367. KeyAttrDataFloat: *4 {
  4368. a: 0,0,218434821,0
  4369. }
  4370. KeyAttrRefCount: *1 {
  4371. a: 111
  4372. }
  4373. }
  4374. AnimationCurve: 2736155200, "AnimCurve::", "" {
  4375. Default: -74.5642623901367
  4376. KeyVer: 4008
  4377. KeyTime: *111 {
  4378. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4379. }
  4380. KeyValueFloat: *111 {
  4381. a: -74.56426,-74.56426,-74.56426,-74.56427,-74.56427,-74.56427,-74.56427,-74.56427,-74.56426,-74.56426,-74.56427,-59.401,-70.91169,-76.64861,-69.97732,-60.58019,-52.96317,-50.25444,-52.49874,-50.61869,-49.45382,-50.84625,-59.61068,-64.20232,-60.75176,-56.22142,-51.97695,-48.77907,-47.59944,-49.68232,-53.53376,-59.40101,-74.56426,-74.56426,-74.56427,-74.56427,-74.56426,-74.56427,-74.56427,-74.56426,-74.56426,-61.0866,-60.94488,-60.82168,-60.71522,-60.62371,-60.54539,-60.4785,-60.42131,-60.37214,-60.32924,-60.29103,-60.25583,-60.22204,-60.1881,-60.15236,-60.11327,-60.0733,-60.03593,-60.00114,-59.96891,-59.93924,-59.91213,-59.88758,-59.86562,-59.84626,-59.82956,-59.81554,-59.80425,-59.79571,-59.78998,-59.78711,-59.78713,-59.7901,-59.79605,-59.80502,-59.81705,-59.83217,-59.85044,-59.87184,-59.89641,-59.92416,-59.9551,-59.98924,-60.02655,-60.06704,-60.11068,-60.16093,-60.22018,-60.28685,-60.35928,-60.43584,-60.51493,-60.59496,-60.67432,-60.75149,-60.82499,-60.89332,-60.95503,-61.00874,-61.05306,-61.08662,-61.08661,-62.39753,-63.84838,-65.42767,-67.11963,-68.9044,-70.75842,-72.65487,-74.56426
  4382. }
  4383. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4384. KeyAttrFlags: *1 {
  4385. a: 8456
  4386. }
  4387. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4388. KeyAttrDataFloat: *4 {
  4389. a: 0,0,218434821,0
  4390. }
  4391. KeyAttrRefCount: *1 {
  4392. a: 111
  4393. }
  4394. }
  4395. AnimationCurve: 2736156000, "AnimCurve::", "" {
  4396. Default: 12.767147064209
  4397. KeyVer: 4008
  4398. KeyTime: *111 {
  4399. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4400. }
  4401. KeyValueFloat: *111 {
  4402. a: 12.76715,12.76715,12.76714,12.76715,12.76715,12.76715,12.76715,12.76715,12.76714,12.76715,12.76713,14.76925,2.204092,-44.58845,-73.46671,-76.0526,-69.64525,-67.27034,-64.41832,-58.57236,-50.74471,-39.34056,-10.10936,31.98257,48.90445,55.04021,54.90267,43.79251,31.3439,24.64817,18.91212,14.76926,12.76715,12.76715,12.76715,12.76715,12.76715,12.76715,12.76715,12.76715,12.76715,-6.368467,-6.610134,-6.81143,-6.977156,-7.112071,-7.220854,-7.308143,-7.378591,-7.436824,-7.487504,-7.535269,-7.58484,-7.640901,-7.708169,-7.791392,-7.895282,-8.010709,-8.124987,-8.237716,-8.348451,-8.456807,-8.562385,-8.664833,-8.763776,-8.858865,-8.949742,-9.036077,-9.117531,-9.193767,-9.264464,-9.329253,-9.387802,-9.439762,-9.484789,-9.522505,-9.552541,-9.574512,-9.588023,-9.592683,-9.588046,-9.573701,-9.549175,-9.514009,-9.467742,-9.409857,-9.33983,-9.243733,-9.111258,-8.947289,-8.756759,-8.544595,-8.315808,-8.075455,-7.828644,-7.58063,-7.336676,-7.102155,-6.882535,-6.683303,-6.510023,-6.368273,-6.368253,-3.809222,-1.188741,1.444775,4.039565,6.538987,8.879159,10.98545,12.76715
  4403. }
  4404. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4405. KeyAttrFlags: *1 {
  4406. a: 8456
  4407. }
  4408. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4409. KeyAttrDataFloat: *4 {
  4410. a: 0,0,218434821,0
  4411. }
  4412. KeyAttrRefCount: *1 {
  4413. a: 111
  4414. }
  4415. }
  4416. AnimationCurve: 2736153920, "AnimCurve::", "" {
  4417. Default: 0
  4418. KeyVer: 4008
  4419. KeyTime: *111 {
  4420. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4421. }
  4422. KeyValueFloat: *111 {
  4423. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999998,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999998,0.9999998,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999
  4424. }
  4425. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4426. KeyAttrFlags: *1 {
  4427. a: 8456
  4428. }
  4429. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4430. KeyAttrDataFloat: *4 {
  4431. a: 0,0,218434821,0
  4432. }
  4433. KeyAttrRefCount: *1 {
  4434. a: 111
  4435. }
  4436. }
  4437. AnimationCurve: 2736154400, "AnimCurve::", "" {
  4438. Default: 0
  4439. KeyVer: 4008
  4440. KeyTime: *111 {
  4441. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4442. }
  4443. KeyValueFloat: *111 {
  4444. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999
  4445. }
  4446. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4447. KeyAttrFlags: *1 {
  4448. a: 8456
  4449. }
  4450. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4451. KeyAttrDataFloat: *4 {
  4452. a: 0,0,218434821,0
  4453. }
  4454. KeyAttrRefCount: *1 {
  4455. a: 111
  4456. }
  4457. }
  4458. AnimationCurve: 2736154720, "AnimCurve::", "" {
  4459. Default: 0
  4460. KeyVer: 4008
  4461. KeyTime: *111 {
  4462. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4463. }
  4464. KeyValueFloat: *111 {
  4465. a: 1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1
  4466. }
  4467. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4468. KeyAttrFlags: *1 {
  4469. a: 8456
  4470. }
  4471. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4472. KeyAttrDataFloat: *4 {
  4473. a: 0,0,218434821,0
  4474. }
  4475. KeyAttrRefCount: *1 {
  4476. a: 111
  4477. }
  4478. }
  4479. AnimationCurve: 2736156160, "AnimCurve::", "" {
  4480. Default: 0
  4481. KeyVer: 4008
  4482. KeyTime: *111 {
  4483. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4484. }
  4485. KeyValueFloat: *111 {
  4486. a: 10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395,10.79395
  4487. }
  4488. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4489. KeyAttrFlags: *1 {
  4490. a: 8456
  4491. }
  4492. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4493. KeyAttrDataFloat: *4 {
  4494. a: 0,0,218434821,0
  4495. }
  4496. KeyAttrRefCount: *1 {
  4497. a: 111
  4498. }
  4499. }
  4500. AnimationCurve: 2736156640, "AnimCurve::", "" {
  4501. Default: 0
  4502. KeyVer: 4008
  4503. KeyTime: *111 {
  4504. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4505. }
  4506. KeyValueFloat: *111 {
  4507. a: -1.192093e-007,-1.192093e-007,2.384186e-007,-1.192093e-007,-1.192093e-007,-1.192093e-007,-1.192093e-007,-1.192093e-007,2.384186e-007,-1.192093e-007,-1.192093e-007,0,1.907349e-006,-3.814697e-006,9.536743e-007,4.768372e-007,0,-9.536743e-007,-9.536743e-007,1.907349e-006,0,0,1.907349e-006,1.907349e-006,1.907349e-006,0,-3.814697e-006,0,0,3.814697e-006,-3.814697e-006,0,0,-1.192093e-007,-1.192093e-007,-1.192093e-007,-2.384186e-007,-1.192093e-007,0,2.384186e-007,4.768372e-007,0,0,0,-1.907349e-006,0,1.907349e-006,0,-1.907349e-006,0,0,0,0,1.907349e-006,0,1.907349e-006,0,0,1.907349e-006,0,0,0,0,0,1.907349e-006,-1.907349e-006,0,0,0,-1.907349e-006,0,-1.907349e-006,0,0,1.907349e-006,0,-1.907349e-006,1.907349e-006,-3.814697e-006,0,0,0,1.907349e-006,1.907349e-006,0,0,0,0,-1.907349e-006,-1.907349e-006,0,0,-3.814697e-006,0,-1.907349e-006,0,-1.907349e-006,0,0,0,1.907349e-006,1.907349e-006,0,0,0,-9.536743e-007,0,4.768372e-007,-4.768372e-007,2.384186e-007,-1.192093e-007
  4508. }
  4509. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4510. KeyAttrFlags: *1 {
  4511. a: 8456
  4512. }
  4513. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4514. KeyAttrDataFloat: *4 {
  4515. a: 0,0,218434821,0
  4516. }
  4517. KeyAttrRefCount: *1 {
  4518. a: 111
  4519. }
  4520. }
  4521. AnimationCurve: 2736156960, "AnimCurve::", "" {
  4522. Default: 0
  4523. KeyVer: 4008
  4524. KeyTime: *111 {
  4525. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4526. }
  4527. KeyValueFloat: *111 {
  4528. a: 0,0,1.907349e-006,0,0,0,0,0,1.907349e-006,0,0,0,-1.907349e-006,1.907349e-006,1.907349e-006,0,1.907349e-006,0,-1.907349e-006,0,1.907349e-006,1.907349e-006,3.814697e-006,0,1.907349e-006,-1.907349e-006,0,0,0,0,1.907349e-006,1.907349e-006,0,0,0,-1.907349e-006,1.907349e-006,0,0,0,0,0,0,0,0,-1.907349e-006,-1.907349e-006,-1.907349e-006,1.907349e-006,0,-1.907349e-006,0,0,-1.907349e-006,0,0,-1.907349e-006,0,-1.907349e-006,1.907349e-006,-1.907349e-006,0,0,0,0,0,0,0,0,0,-1.907349e-006,1.907349e-006,0,-1.907349e-006,-1.907349e-006,0,0,-1.907349e-006,1.907349e-006,0,-1.907349e-006,0,-1.907349e-006,-1.907349e-006,0,0,1.907349e-006,0,0,1.907349e-006,0,0,0,0,0,0,1.907349e-006,0,0,0,0,-1.907349e-006,1.907349e-006,0,0,0,0,0,0,1.907349e-006,0
  4529. }
  4530. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4531. KeyAttrFlags: *1 {
  4532. a: 8456
  4533. }
  4534. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4535. KeyAttrDataFloat: *4 {
  4536. a: 0,0,218434821,0
  4537. }
  4538. KeyAttrRefCount: *1 {
  4539. a: 111
  4540. }
  4541. }
  4542. AnimationCurve: 2736157440, "AnimCurve::", "" {
  4543. Default: -2.13443414054382e-007
  4544. KeyVer: 4008
  4545. KeyTime: *111 {
  4546. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4547. }
  4548. KeyValueFloat: *111 {
  4549. a: -2.134434e-007,-2.134434e-007,8.537737e-007,-2.134434e-007,-2.134434e-007,-2.134434e-007,-2.134434e-007,-2.134434e-007,8.537737e-007,-2.134434e-007,-2.134434e-007,4.268868e-007,-4.268869e-007,-8.537735e-007,-1.707547e-006,3.415094e-006,-5.976415e-006,0,3.415094e-006,0,-1.707547e-006,-2.561321e-006,4.268868e-007,-2.134434e-007,1.707547e-006,2.561321e-006,-1.707547e-006,-3.415095e-006,-3.415094e-006,2.561321e-006,0,-1.28066e-006,-2.134434e-007,-2.134434e-007,-2.134434e-007,-2.134434e-007,-2.134434e-007,-2.134434e-007,2.134434e-007,-2.134434e-007,-2.134434e-007,-4.268868e-006,-8.537736e-007,-1.707547e-006,-3.415095e-006,-2.561321e-006,8.537736e-007,-3.415094e-006,-8.537736e-007,-6.83019e-006,1.707547e-006,-4.268868e-006,8.537737e-007,2.561321e-006,-8.537735e-007,2.56132e-006,8.537735e-007,-1.707547e-006,-3.415095e-006,0,-1.707547e-006,-2.561321e-006,0,3.415095e-006,0,8.537736e-007,8.537736e-007,0,0,-8.537737e-007,3.415094e-006,-8.537737e-007,5.122642e-006,-4.268868e-006,-1.707547e-006,3.415095e-006,-1.707547e-006,1.707547e-006,0,8.537737e-007,-4.268868e-006,-2.561321e-006,-8.537737e-007,-8.537737e-007,-8.537736e-007,-2.561321e-006,-3.415095e-006,-5.976415e-006,4.268868e-006,8.537737e-007,1.707547e-006,-3.415094e-006,4.268868e-006,-8.537736e-007,0,0,0,-3.415094e-006,0,0,2.561321e-006,1.707548e-006,8.537736e-007,-4.268868e-006,0,-2.561321e-006,-4.268868e-007,1.707547e-006,-8.537737e-007,1.067217e-006,-2.134434e-007
  4550. }
  4551. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4552. KeyAttrFlags: *1 {
  4553. a: 8456
  4554. }
  4555. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4556. KeyAttrDataFloat: *4 {
  4557. a: 0,0,218434821,0
  4558. }
  4559. KeyAttrRefCount: *1 {
  4560. a: 111
  4561. }
  4562. }
  4563. AnimationCurve: 2736161600, "AnimCurve::", "" {
  4564. Default: -0
  4565. KeyVer: 4008
  4566. KeyTime: *111 {
  4567. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4568. }
  4569. KeyValueFloat: *111 {
  4570. a: 0,0,0,0,0,0,0,0,0,0,0,-3.415095e-006,-1.707548e-006,-1.707547e-006,1.280661e-006,-2.668043e-006,-3.415095e-006,-2.828126e-006,-2.561321e-006,-2.561321e-006,-2.561321e-006,-0,1.707547e-006,1.707547e-006,-8.537736e-007,-3.415095e-006,-2.561321e-006,-0,-5.122641e-006,2.561321e-006,3.415094e-006,-3.415095e-006,-0,0,-1.707547e-006,-0,0,0,0,0,0,-1.195283e-005,-5.122643e-006,-1.707547e-006,-3.415094e-006,3.415095e-006,1.707548e-006,3.415095e-006,-6.83019e-006,6.830191e-006,0,-8.537738e-006,1.366038e-005,-1.707547e-006,-5.122642e-006,5.122643e-006,3.415094e-006,-3.415095e-006,-3.415095e-006,-8.537735e-006,-3.415095e-006,-0,-1.707548e-006,-0,-5.122643e-006,1.707547e-006,-6.830189e-006,5.122642e-006,-3.415095e-006,-0,-1.707547e-006,-3.415095e-006,6.830188e-006,6.830188e-006,3.415095e-006,-3.415095e-006,3.415095e-006,3.415095e-006,5.122642e-006,-5.122643e-006,-0,-1.536793e-005,-3.415095e-006,1.024529e-005,-6.830191e-006,-1.707548e-006,-3.415095e-006,-1.024529e-005,-0,-1.366038e-005,1.707547e-006,-3.415095e-006,-5.122643e-006,-5.122642e-006,-1.195283e-005,-3.415095e-006,1.707547e-006,-8.537737e-006,-1.195283e-005,-5.122643e-006,-3.415094e-006,-1.707547e-006,-0,5.122643e-006,1.707547e-006,3.415095e-006,1.707547e-006,-1.707548e-006,-1.707547e-006,-0,0
  4571. }
  4572. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4573. KeyAttrFlags: *1 {
  4574. a: 8456
  4575. }
  4576. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4577. KeyAttrDataFloat: *4 {
  4578. a: 0,0,218434821,0
  4579. }
  4580. KeyAttrRefCount: *1 {
  4581. a: 111
  4582. }
  4583. }
  4584. AnimationCurve: 2736162880, "AnimCurve::", "" {
  4585. Default: -9.27584934234619
  4586. KeyVer: 4008
  4587. KeyTime: *111 {
  4588. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4589. }
  4590. KeyValueFloat: *111 {
  4591. a: -9.275849,-9.275849,-9.275849,-9.275849,-9.275849,-9.275849,-9.275849,-9.275849,-9.275849,-9.275849,-9.275849,-44.44465,-70.60856,-88.63845,-95.10915,-96.28619,-95.37555,-91.52426,-84.20928,-74.72472,-64.24897,-56.30924,-56.24281,-56.72938,-50.03485,-41.29588,-34.35997,-31.9727,-32.96987,-38.15757,-44.55057,-44.44464,-9.275849,-9.275849,-9.275862,-9.275849,-9.275849,-9.275849,-9.275848,-9.275849,-9.275849,-51.95376,-52.63028,-53.26133,-53.84807,-54.39165,-54.89325,-55.35404,-55.7752,-56.15786,-56.50323,-56.81245,-57.08668,-57.32707,-57.53485,-57.71111,-57.85708,-57.97388,-58.0627,-58.12471,-58.16108,-58.17295,-58.16148,-58.12787,-58.07325,-57.99881,-57.90574,-57.79519,-57.66828,-57.52624,-57.37019,-57.2013,-57.02076,-56.82973,-56.62938,-56.42084,-56.20534,-55.98399,-55.75797,-55.52844,-55.29661,-55.0636,-54.83059,-54.59874,-54.36923,-54.14323,-53.92186,-53.70634,-53.49783,-53.29745,-53.10645,-52.9259,-52.75702,-52.60097,-52.4589,-52.33202,-52.22142,-52.12835,-52.05394,-51.99932,-51.9657,-51.95426,-51.95422,-47.07323,-41.95146,-36.64447,-31.20778,-25.69702,-20.16772,-14.67548,-9.275849
  4592. }
  4593. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4594. KeyAttrFlags: *1 {
  4595. a: 8456
  4596. }
  4597. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4598. KeyAttrDataFloat: *4 {
  4599. a: 0,0,218434821,0
  4600. }
  4601. KeyAttrRefCount: *1 {
  4602. a: 111
  4603. }
  4604. }
  4605. AnimationCurve: 2736168640, "AnimCurve::", "" {
  4606. Default: 0
  4607. KeyVer: 4008
  4608. KeyTime: *111 {
  4609. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4610. }
  4611. KeyValueFloat: *111 {
  4612. a: 1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999998,0.9999999,0.9999999,1,0.9999999,0.9999998,0.9999999,0.9999998,0.9999998,0.9999999,1,0.9999999,1,0.9999999,1,1,1,0.9999998,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999997,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999998,1,1,0.9999999,0.9999998,1,0.9999998,1,1,0.9999999,0.9999999,0.9999999,1,0.9999998,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999998,0.9999999,0.9999999,0.9999999,1,1
  4613. }
  4614. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4615. KeyAttrFlags: *1 {
  4616. a: 8456
  4617. }
  4618. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4619. KeyAttrDataFloat: *4 {
  4620. a: 0,0,218434821,0
  4621. }
  4622. KeyAttrRefCount: *1 {
  4623. a: 111
  4624. }
  4625. }
  4626. AnimationCurve: 2736165120, "AnimCurve::", "" {
  4627. Default: 0
  4628. KeyVer: 4008
  4629. KeyTime: *111 {
  4630. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4631. }
  4632. KeyValueFloat: *111 {
  4633. a: 1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999998,0.9999999,1,0.9999999,1,1
  4634. }
  4635. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4636. KeyAttrFlags: *1 {
  4637. a: 8456
  4638. }
  4639. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4640. KeyAttrDataFloat: *4 {
  4641. a: 0,0,218434821,0
  4642. }
  4643. KeyAttrRefCount: *1 {
  4644. a: 111
  4645. }
  4646. }
  4647. AnimationCurve: 2736168320, "AnimCurve::", "" {
  4648. Default: 0
  4649. KeyVer: 4008
  4650. KeyTime: *111 {
  4651. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4652. }
  4653. KeyValueFloat: *111 {
  4654. a: 1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1
  4655. }
  4656. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4657. KeyAttrFlags: *1 {
  4658. a: 8456
  4659. }
  4660. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4661. KeyAttrDataFloat: *4 {
  4662. a: 0,0,218434821,0
  4663. }
  4664. KeyAttrRefCount: *1 {
  4665. a: 111
  4666. }
  4667. }
  4668. AnimationCurve: 2736161280, "AnimCurve::", "" {
  4669. Default: 0
  4670. KeyVer: 4008
  4671. KeyTime: *111 {
  4672. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4673. }
  4674. KeyValueFloat: *111 {
  4675. a: 5.731995,5.731995,5.731997,5.731995,5.731995,5.731995,5.731995,5.731995,5.731997,5.731995,5.731995,5.731995,5.731997,5.731991,5.731994,5.731995,5.731995,5.731994,5.731993,5.731996,5.731996,5.731993,5.731991,5.731998,5.731993,5.731995,5.731995,5.731993,5.731995,5.731991,5.731997,5.731993,5.731997,5.731995,5.731995,5.731995,5.731997,5.731998,5.731995,5.731997,5.731997,5.731993,5.731997,5.731993,5.731998,5.731998,5.731998,5.731997,5.731993,5.731997,5.731997,5.731997,5.731995,5.731998,5.731995,5.731998,5.731997,5.732,5.731997,5.731997,5.731995,5.731997,5.731993,5.731995,5.731997,5.731995,5.731995,5.731993,5.731995,5.731995,5.731995,5.731995,5.731997,5.731991,5.731993,5.731997,5.731993,5.731997,5.731995,5.731995,5.731993,5.731997,5.731997,5.731995,5.731995,5.731995,5.731995,5.731995,5.731993,5.731997,5.731997,5.731993,5.731995,5.731993,5.731995,5.731997,5.731995,5.731995,5.731993,5.731995,5.731997,5.731995,5.731993,5.731998,5.731997,5.731993,5.731995,5.731995,5.731993,5.731998,5.731995
  4676. }
  4677. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4678. KeyAttrFlags: *1 {
  4679. a: 8456
  4680. }
  4681. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4682. KeyAttrDataFloat: *4 {
  4683. a: 0,0,218434821,0
  4684. }
  4685. KeyAttrRefCount: *1 {
  4686. a: 111
  4687. }
  4688. }
  4689. AnimationCurve: 2736167520, "AnimCurve::", "" {
  4690. Default: 0
  4691. KeyVer: 4008
  4692. KeyTime: *111 {
  4693. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4694. }
  4695. KeyValueFloat: *111 {
  4696. a: 0,0,4.768372e-007,0,0,0,0,0,4.768372e-007,0,0,0,0,-3.814697e-006,0,0,1.907349e-006,1.907349e-006,1.907349e-006,1.907349e-006,0,-1.907349e-006,7.152557e-007,9.536743e-007,9.536743e-007,0,0,1.907349e-006,1.907349e-006,1.907349e-006,-1.907349e-006,0,0,0,0,4.768372e-007,4.768372e-007,4.768372e-007,4.768372e-007,0,0,-3.814697e-006,-9.536743e-007,0,0,1.907349e-006,9.536743e-007,9.536743e-007,-1.907349e-006,-1.907349e-006,-2.861023e-006,9.536743e-007,-9.536743e-007,0,-1.907349e-006,0,-9.536743e-007,0,-9.536743e-007,0,0,1.907349e-006,-2.861023e-006,-9.536743e-007,0,-9.536743e-007,-1.907349e-006,-2.861023e-006,0,0,-1.907349e-006,-9.536743e-007,0,-1.907349e-006,-1.907349e-006,9.536743e-007,-1.907349e-006,-9.536743e-007,-9.536743e-007,-1.907349e-006,0,9.536743e-007,-9.536743e-007,0,0,9.536743e-007,-2.861023e-006,-1.907349e-006,-2.861023e-006,-1.907349e-006,9.536743e-007,-2.861023e-006,0,0,9.536743e-007,9.536743e-007,-1.907349e-006,-9.536743e-007,-2.861023e-006,-2.861023e-006,-9.536743e-007,-1.907349e-006,-9.536743e-007,-3.33786e-006,-1.907349e-006,-1.430511e-006,-1.66893e-006,-4.768372e-007,0,4.768372e-007,0
  4697. }
  4698. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4699. KeyAttrFlags: *1 {
  4700. a: 8456
  4701. }
  4702. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4703. KeyAttrDataFloat: *4 {
  4704. a: 0,0,218434821,0
  4705. }
  4706. KeyAttrRefCount: *1 {
  4707. a: 111
  4708. }
  4709. }
  4710. AnimationCurve: 2736163520, "AnimCurve::", "" {
  4711. Default: 0
  4712. KeyVer: 4008
  4713. KeyTime: *111 {
  4714. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4715. }
  4716. KeyValueFloat: *111 {
  4717. a: 0,0,0,0,0,0,0,0,0,0,0,0,1.907349e-006,0,-1.907349e-006,0,1.907349e-006,-1.907349e-006,1.907349e-006,3.814697e-006,0,-3.814697e-006,0,0,-1.907349e-006,0,1.907349e-006,0,0,0,0,-1.907349e-006,-1.907349e-006,0,-1.907349e-006,0,-3.814697e-006,0,-1.907349e-006,0,0,-1.907349e-006,0,-3.814697e-006,0,3.814697e-006,3.814697e-006,1.907349e-006,0,0,1.907349e-006,0,3.814697e-006,1.907349e-006,0,1.907349e-006,0,1.907349e-006,0,1.907349e-006,0,0,0,0,0,-1.907349e-006,0,0,-1.907349e-006,-1.907349e-006,0,0,0,-1.907349e-006,0,0,-1.907349e-006,1.907349e-006,-3.814697e-006,0,0,0,3.814697e-006,1.907349e-006,0,1.907349e-006,0,-1.907349e-006,-1.907349e-006,-1.907349e-006,1.907349e-006,-1.907349e-006,0,0,0,0,0,-1.907349e-006,0,0,1.907349e-006,0,0,1.907349e-006,1.907349e-006,1.907349e-006,0,0,-3.814697e-006,0,0
  4718. }
  4719. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4720. KeyAttrFlags: *1 {
  4721. a: 8456
  4722. }
  4723. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4724. KeyAttrDataFloat: *4 {
  4725. a: 0,0,218434821,0
  4726. }
  4727. KeyAttrRefCount: *1 {
  4728. a: 111
  4729. }
  4730. }
  4731. AnimationCurve: 2736166560, "AnimCurve::", "" {
  4732. Default: 76.3459396362305
  4733. KeyVer: 4008
  4734. KeyTime: *111 {
  4735. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4736. }
  4737. KeyValueFloat: *111 {
  4738. a: 76.34594,76.34594,76.34595,76.34594,76.34594,76.34594,76.34594,76.34594,76.34595,76.34594,76.34594,100.272,96.22499,88.18719,84.52802,81.18015,75.92759,63.38086,54.79796,59.88791,70.09518,79.66042,86.9511,90.98154,89.44221,85.7346,82.68404,80.70396,81.54746,88.2847,96.75658,100.272,76.34594,76.34594,76.34595,76.34594,76.34594,76.34595,76.34595,76.34594,76.34594,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.34599,76.346,76.346,76.346,76.34599,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.346,76.34601,76.346,76.346,76.34601,76.346,76.346,76.346,76.34601,76.34601,76.346,76.34601,76.34601,76.34601,76.346,76.34601,76.34601,76.34601,76.346,76.34601,76.34601,76.34603,76.34602,76.34601,76.346,76.34599,76.34598,76.34597,76.34595,76.34594
  4739. }
  4740. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4741. KeyAttrFlags: *1 {
  4742. a: 8456
  4743. }
  4744. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4745. KeyAttrDataFloat: *4 {
  4746. a: 0,0,218434821,0
  4747. }
  4748. KeyAttrRefCount: *1 {
  4749. a: 111
  4750. }
  4751. }
  4752. AnimationCurve: 2736161440, "AnimCurve::", "" {
  4753. Default: 11.5332183837891
  4754. KeyVer: 4008
  4755. KeyTime: *111 {
  4756. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4757. }
  4758. KeyValueFloat: *111 {
  4759. a: 11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,6.557718,2.739909,0.7158907,1.924437,4.369902,6.243201,5.848227,4.132877,5.07969,5.890751,4.402756,-0.923555,-5.717678,-6.388061,-5.213054,-3.389395,-1.243942,1.035102,2.353366,3.845315,6.557719,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53322,11.53319,11.53319,11.53319,11.53319,11.53319,11.53319,11.53318,11.53318,11.53319,11.53319,11.53318,11.53319,11.53319,11.53318,11.53319,11.53319,11.53318,11.53318,11.53319,11.53319,11.53319,11.53319,11.53318,11.53319,11.53318,11.53319,11.53319,11.53319,11.53318,11.53318,11.53318,11.53318,11.53318,11.53318,11.53318,11.53319,11.53318,11.53319,11.53319,11.53319,11.53318,11.53318,11.53319,11.53318,11.53318,11.53318,11.53318,11.53318,11.53318,11.53318,11.53319,11.53318,11.53318,11.53318,11.53318,11.53318,11.53318,11.53318,11.53319,11.53318,11.53319,11.53318,11.53318,11.53318,11.53319,11.5332,11.5332,11.53321,11.53321,11.53322
  4760. }
  4761. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4762. KeyAttrFlags: *1 {
  4763. a: 8456
  4764. }
  4765. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4766. KeyAttrDataFloat: *4 {
  4767. a: 0,0,218434821,0
  4768. }
  4769. KeyAttrRefCount: *1 {
  4770. a: 111
  4771. }
  4772. }
  4773. AnimationCurve: 2736161920, "AnimCurve::", "" {
  4774. Default: -6.48342084884644
  4775. KeyVer: 4008
  4776. KeyTime: *111 {
  4777. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4778. }
  4779. KeyValueFloat: *111 {
  4780. a: -6.483421,-6.483421,-6.483421,-6.483421,-6.483421,-6.483421,-6.483421,-6.483421,-6.483421,-6.483421,-6.483421,3.351701,0.3223359,-4.660059,-9.217032,-14.25313,-19.95214,-28.7964,-34.08261,-30.39638,-23.20177,-17.08377,-15.92305,-15.1584,-10.35008,-4.20845,1.585987,7.398956,10.69996,9.685454,6.919732,3.351701,-6.483421,-6.483421,-6.483419,-6.48342,-6.483421,-6.483419,-6.48342,-6.483421,-6.483421,-6.48336,-6.483357,-6.483351,-6.483345,-6.483341,-6.483336,-6.48333,-6.483326,-6.483323,-6.483317,-6.483311,-6.483309,-6.483301,-6.483298,-6.483294,-6.483288,-6.483284,-6.48328,-6.483278,-6.483273,-6.483263,-6.48326,-6.483258,-6.483254,-6.48325,-6.483247,-6.483243,-6.483238,-6.48323,-6.483232,-6.483223,-6.483217,-6.483219,-6.483214,-6.48321,-6.483205,-6.483198,-6.483196,-6.483193,-6.48319,-6.483182,-6.483181,-6.483182,-6.483171,-6.483172,-6.483166,-6.483161,-6.483163,-6.483158,-6.483152,-6.483151,-6.483144,-6.483144,-6.483143,-6.48314,-6.483137,-6.483132,-6.48313,-6.48313,-6.483126,-6.483119,-6.483186,-6.483217,-6.483247,-6.483278,-6.483303,-6.483333,-6.483358,-6.48339,-6.483421
  4781. }
  4782. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4783. KeyAttrFlags: *1 {
  4784. a: 8456
  4785. }
  4786. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4787. KeyAttrDataFloat: *4 {
  4788. a: 0,0,218434821,0
  4789. }
  4790. KeyAttrRefCount: *1 {
  4791. a: 111
  4792. }
  4793. }
  4794. AnimationCurve: 2736163680, "AnimCurve::", "" {
  4795. Default: 0
  4796. KeyVer: 4008
  4797. KeyTime: *111 {
  4798. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4799. }
  4800. KeyValueFloat: *111 {
  4801. a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999998,1,1,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1
  4802. }
  4803. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4804. KeyAttrFlags: *1 {
  4805. a: 8456
  4806. }
  4807. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4808. KeyAttrDataFloat: *4 {
  4809. a: 0,0,218434821,0
  4810. }
  4811. KeyAttrRefCount: *1 {
  4812. a: 111
  4813. }
  4814. }
  4815. AnimationCurve: 2736162080, "AnimCurve::", "" {
  4816. Default: 0
  4817. KeyVer: 4008
  4818. KeyTime: *111 {
  4819. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4820. }
  4821. KeyValueFloat: *111 {
  4822. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999998,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999998,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,0.9999998,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1
  4823. }
  4824. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4825. KeyAttrFlags: *1 {
  4826. a: 8456
  4827. }
  4828. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4829. KeyAttrDataFloat: *4 {
  4830. a: 0,0,218434821,0
  4831. }
  4832. KeyAttrRefCount: *1 {
  4833. a: 111
  4834. }
  4835. }
  4836. AnimationCurve: 2736159840, "AnimCurve::", "" {
  4837. Default: 0
  4838. KeyVer: 4008
  4839. KeyTime: *111 {
  4840. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4841. }
  4842. KeyValueFloat: *111 {
  4843. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1
  4844. }
  4845. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4846. KeyAttrFlags: *1 {
  4847. a: 8456
  4848. }
  4849. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4850. KeyAttrDataFloat: *4 {
  4851. a: 0,0,218434821,0
  4852. }
  4853. KeyAttrRefCount: *1 {
  4854. a: 111
  4855. }
  4856. }
  4857. AnimationCurve: 2736162240, "AnimCurve::", "" {
  4858. Default: 0
  4859. KeyVer: 4008
  4860. KeyTime: *111 {
  4861. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4862. }
  4863. KeyValueFloat: *111 {
  4864. a: 4.905946,4.905946,4.905943,4.905946,4.905946,4.905946,4.905946,4.905946,4.905943,4.905946,4.905946,4.905945,4.905943,4.905948,4.905944,4.905945,4.905949,4.905949,4.905945,4.905945,4.905945,4.905946,4.905947,4.905947,4.905947,4.905945,4.905945,4.905946,4.905945,4.905948,4.905945,4.905948,4.905945,4.905945,4.905942,4.905944,4.905945,4.905945,4.905944,4.905945,4.905944,4.905945,4.905943,4.905946,4.905945,4.905945,4.905943,4.905947,4.905943,4.905943,4.905945,4.905943,4.905945,4.905946,4.905943,4.905944,4.905943,4.905943,4.905947,4.905943,4.905943,4.905944,4.905945,4.905945,4.905943,4.905944,4.905947,4.905947,4.905946,4.905945,4.905947,4.905947,4.905945,4.905945,4.905943,4.905947,4.905947,4.905945,4.905943,4.905944,4.905945,4.905946,4.905944,4.905946,4.905946,4.905944,4.905945,4.905945,4.905945,4.905943,4.905945,4.905945,4.905945,4.905945,4.905945,4.905944,4.905945,4.905945,4.905946,4.905945,4.905947,4.905943,4.905947,4.905945,4.905944,4.905945,4.905945,4.905945,4.905944,4.905945,4.905946
  4865. }
  4866. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4867. KeyAttrFlags: *1 {
  4868. a: 8456
  4869. }
  4870. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4871. KeyAttrDataFloat: *4 {
  4872. a: 0,0,218434821,0
  4873. }
  4874. KeyAttrRefCount: *1 {
  4875. a: 111
  4876. }
  4877. }
  4878. AnimationCurve: 2736162400, "AnimCurve::", "" {
  4879. Default: 0
  4880. KeyVer: 4008
  4881. KeyTime: *111 {
  4882. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4883. }
  4884. KeyValueFloat: *111 {
  4885. a: 0.427824,0.427824,0.427824,0.427824,0.4278259,0.427824,0.4278259,0.427824,0.427824,0.427824,0.427824,0.4278221,0.427824,0.4278221,0.427824,0.4278259,0.4278221,0.427824,0.4278259,0.427824,0.4278221,0.4278259,0.4278259,0.4278259,0.4278259,0.427824,0.4278221,0.427824,0.4278221,0.427824,0.427824,0.4278259,0.4278259,0.4278259,0.427824,0.427824,0.4278259,0.4278259,0.4278259,0.4278259,0.4278259,0.4278221,0.4278221,0.4278221,0.4278221,0.4278259,0.4278259,0.427824,0.427824,0.427824,0.4278259,0.4278221,0.4278221,0.4278221,0.4278221,0.427824,0.427824,0.4278221,0.427824,0.4278221,0.4278221,0.4278202,0.4278259,0.427824,0.427824,0.4278259,0.427824,0.4278259,0.4278259,0.4278259,0.4278259,0.4278259,0.4278221,0.427824,0.427824,0.4278221,0.4278221,0.427824,0.4278221,0.4278221,0.427824,0.427824,0.4278221,0.427824,0.427824,0.427824,0.4278259,0.4278259,0.4278221,0.427824,0.4278259,0.4278221,0.427824,0.427824,0.4278221,0.4278221,0.4278221,0.427824,0.4278259,0.4278221,0.4278221,0.427824,0.4278259,0.427824,0.427824,0.427824,0.427824,0.427824,0.427824,0.427824,0.427824
  4886. }
  4887. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4888. KeyAttrFlags: *1 {
  4889. a: 8456
  4890. }
  4891. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4892. KeyAttrDataFloat: *4 {
  4893. a: 0,0,218434821,0
  4894. }
  4895. KeyAttrRefCount: *1 {
  4896. a: 111
  4897. }
  4898. }
  4899. AnimationCurve: 2736163360, "AnimCurve::", "" {
  4900. Default: 0
  4901. KeyVer: 4008
  4902. KeyTime: *111 {
  4903. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4904. }
  4905. KeyValueFloat: *111 {
  4906. a: 3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276366,3.276365,3.276363,3.276363,3.276369,3.276365,3.276365,3.276366,3.276363,3.276363,3.276365,3.276367,3.276366,3.276367,3.276365,3.276369,3.276365,3.276367,3.276364,3.276366,3.276366,3.276367,3.276367,3.276366,3.276366,3.276366,3.276367,3.276367,3.276367,3.276366,3.276365,3.276365,3.276365,3.276365,3.276366,3.276364,3.276366,3.276364,3.276365,3.276365,3.276365,3.276365,3.276366,3.276365,3.276366,3.276366,3.276366,3.276367,3.276365,3.276366,3.276366,3.276366,3.276366,3.276366,3.276364,3.276364,3.276365,3.276364,3.276365,3.276364,3.276365,3.276365,3.276364,3.276365,3.276364,3.276365,3.276365,3.276364,3.276364,3.276365,3.276365,3.276366,3.276363,3.276365,3.276364,3.276363,3.276364,3.276364,3.276366,3.276364,3.276363,3.276364,3.276366,3.276363,3.276366,3.276365,3.276365,3.276363,3.276365,3.276364,3.276363,3.276365,3.276364,3.276365,3.276365,3.276366,3.276366,3.276365,3.276366
  4907. }
  4908. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4909. KeyAttrFlags: *1 {
  4910. a: 8456
  4911. }
  4912. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4913. KeyAttrDataFloat: *4 {
  4914. a: 0,0,218434821,0
  4915. }
  4916. KeyAttrRefCount: *1 {
  4917. a: 111
  4918. }
  4919. }
  4920. AnimationCurve: 2736167680, "AnimCurve::", "" {
  4921. Default: -16.9478721618652
  4922. KeyVer: 4008
  4923. KeyTime: *111 {
  4924. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4925. }
  4926. KeyValueFloat: *111 {
  4927. a: -16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-25.70646,-34.65425,-29.7247,-21.70758,-16.94788,-16.36321,-16.94788,-16.94788,-16.94787,-16.94788,-16.94787,-16.94787,-16.94788,-16.94788,-16.94787,-16.94787,-16.94788,-16.94788,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94788,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94788,-16.94788,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94787,-16.94786,-16.94787,-16.94788,-16.94786,-16.94787,-16.94788,-16.94787
  4928. }
  4929. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4930. KeyAttrFlags: *1 {
  4931. a: 8456
  4932. }
  4933. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4934. KeyAttrDataFloat: *4 {
  4935. a: 0,0,218434821,0
  4936. }
  4937. KeyAttrRefCount: *1 {
  4938. a: 111
  4939. }
  4940. }
  4941. AnimationCurve: 2736166240, "AnimCurve::", "" {
  4942. Default: -45.5321235656738
  4943. KeyVer: 4008
  4944. KeyTime: *111 {
  4945. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4946. }
  4947. KeyValueFloat: *111 {
  4948. a: -45.53212,-45.53212,-45.53213,-45.53212,-45.53213,-45.53212,-45.53213,-45.53212,-45.53213,-45.53212,-45.53212,-45.53213,-53.02124,-57.40561,-55.27248,-50.15307,-45.53212,-44.83879,-45.53212,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53212,-45.53212,-45.53213,-45.53213,-45.53212,-45.53212,-45.53213,-45.53213,-45.53212,-45.53212,-45.53213,-45.53212,-45.53212,-45.53213,-45.53212,-45.53212,-45.53213,-45.53213,-45.53213,-45.53214,-45.53212,-45.53213,-45.53213,-45.53213,-45.53214,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53212,-45.53213,-45.53213,-45.53213,-45.53214,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53212,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53212,-45.53212,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53212,-45.53213,-45.53213,-45.53213,-45.53214,-45.53213,-45.53212,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53213,-45.53212,-45.53213,-45.53212,-45.53212
  4949. }
  4950. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4951. KeyAttrFlags: *1 {
  4952. a: 8456
  4953. }
  4954. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4955. KeyAttrDataFloat: *4 {
  4956. a: 0,0,218434821,0
  4957. }
  4958. KeyAttrRefCount: *1 {
  4959. a: 111
  4960. }
  4961. }
  4962. AnimationCurve: 2736160800, "AnimCurve::", "" {
  4963. Default: 33.9068145751953
  4964. KeyVer: 4008
  4965. KeyTime: *111 {
  4966. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4967. }
  4968. KeyValueFloat: *111 {
  4969. a: 33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,46.37873,57.88618,51.64465,40.90413,33.90682,32.99477,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90682,33.90681,33.90681,33.90682,33.90682,33.90681,33.90681,33.90682,33.90681,33.90681,33.90682,33.90681,33.90682,33.90682,33.90681,33.90681,33.90682,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90682,33.90682,33.90681,33.90682,33.90682,33.90681,33.90681,33.90681,33.90682,33.90681,33.90681,33.90682,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90682,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681,33.90681
  4970. }
  4971. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4972. KeyAttrFlags: *1 {
  4973. a: 8456
  4974. }
  4975. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4976. KeyAttrDataFloat: *4 {
  4977. a: 0,0,218434821,0
  4978. }
  4979. KeyAttrRefCount: *1 {
  4980. a: 111
  4981. }
  4982. }
  4983. AnimationCurve: 2736161120, "AnimCurve::", "" {
  4984. Default: 0
  4985. KeyVer: 4008
  4986. KeyTime: *111 {
  4987. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  4988. }
  4989. KeyValueFloat: *111 {
  4990. a: 1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999998,0.9999999,1,1,0.9999999,1,1,0.9999998,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1
  4991. }
  4992. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  4993. KeyAttrFlags: *1 {
  4994. a: 8456
  4995. }
  4996. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  4997. KeyAttrDataFloat: *4 {
  4998. a: 0,0,218434821,0
  4999. }
  5000. KeyAttrRefCount: *1 {
  5001. a: 111
  5002. }
  5003. }
  5004. AnimationCurve: 2736163200, "AnimCurve::", "" {
  5005. Default: 0
  5006. KeyVer: 4008
  5007. KeyTime: *111 {
  5008. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5009. }
  5010. KeyValueFloat: *111 {
  5011. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1
  5012. }
  5013. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5014. KeyAttrFlags: *1 {
  5015. a: 8456
  5016. }
  5017. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5018. KeyAttrDataFloat: *4 {
  5019. a: 0,0,218434821,0
  5020. }
  5021. KeyAttrRefCount: *1 {
  5022. a: 111
  5023. }
  5024. }
  5025. AnimationCurve: 2736165760, "AnimCurve::", "" {
  5026. Default: 0
  5027. KeyVer: 4008
  5028. KeyTime: *111 {
  5029. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5030. }
  5031. KeyValueFloat: *111 {
  5032. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999998,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,0.9999998,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1
  5033. }
  5034. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5035. KeyAttrFlags: *1 {
  5036. a: 8456
  5037. }
  5038. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5039. KeyAttrDataFloat: *4 {
  5040. a: 0,0,218434821,0
  5041. }
  5042. KeyAttrRefCount: *1 {
  5043. a: 111
  5044. }
  5045. }
  5046. AnimationCurve: 2736165440, "AnimCurve::", "" {
  5047. Default: 0
  5048. KeyVer: 4008
  5049. KeyTime: *111 {
  5050. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5051. }
  5052. KeyValueFloat: *111 {
  5053. a: 6.535392,6.535392,6.535387,6.535392,6.53539,6.535392,6.53539,6.535392,6.535387,6.535392,6.535392,6.535391,6.535389,6.53539,6.53539,6.535389,6.535389,6.535393,6.535387,6.535389,6.535391,6.535388,6.535393,6.535391,6.535393,6.535389,6.535389,6.535391,6.535391,6.535392,6.535389,6.535395,6.53539,6.53539,6.53539,6.53539,6.535391,6.535388,6.53539,6.53539,6.53539,6.535389,6.53539,6.53539,6.535391,6.53539,6.53539,6.535391,6.535389,6.535385,6.535389,6.535386,6.535389,6.53539,6.535388,6.535386,6.535389,6.535387,6.535391,6.535389,6.53539,6.535389,6.535391,6.535389,6.53539,6.535388,6.535393,6.535392,6.535392,6.535391,6.535391,6.535391,6.53539,6.53539,6.535389,6.535391,6.53539,6.53539,6.535387,6.535389,6.53539,6.535391,6.535389,6.535391,6.535391,6.53539,6.53539,6.535391,6.535389,6.535387,6.53539,6.535389,6.535391,6.535391,6.53539,6.535389,6.535393,6.53539,6.535391,6.535389,6.535393,6.53539,6.535393,6.535391,6.535391,6.535389,6.535388,6.535393,6.535391,6.535391,6.535392
  5054. }
  5055. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5056. KeyAttrFlags: *1 {
  5057. a: 8456
  5058. }
  5059. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5060. KeyAttrDataFloat: *4 {
  5061. a: 0,0,218434821,0
  5062. }
  5063. KeyAttrRefCount: *1 {
  5064. a: 111
  5065. }
  5066. }
  5067. AnimationCurve: 2736167040, "AnimCurve::", "" {
  5068. Default: 0
  5069. KeyVer: 4008
  5070. KeyTime: *111 {
  5071. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5072. }
  5073. KeyValueFloat: *111 {
  5074. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,-1.907349e-006,0,1.907349e-006,0,-1.907349e-006,0,-1.907349e-006,3.814697e-006,3.814697e-006,0,1.907349e-006,1.907349e-006,1.907349e-006,-1.907349e-006,-1.907349e-006,-3.814697e-006,1.907349e-006,0,1.907349e-006,0,0,-1.907349e-006,0,0,0,0,0,0,-1.907349e-006,0,-1.907349e-006,-1.907349e-006,0,0,0,0,0,0,-1.907349e-006,-1.907349e-006,-1.907349e-006,0,0,0,1.907349e-006,0,0,-3.814697e-006,-1.907349e-006,3.814697e-006,0,-1.907349e-006,0,0,3.814697e-006,0,1.907349e-006,-1.907349e-006,0,-1.907349e-006,1.907349e-006,1.907349e-006,-1.907349e-006,-1.907349e-006,1.907349e-006,-3.814697e-006,-3.814697e-006,0,1.907349e-006,-1.907349e-006,-1.907349e-006,1.907349e-006,0,1.907349e-006,1.907349e-006,0,1.907349e-006,1.907349e-006,0,-1.907349e-006,0,-1.907349e-006,-3.814697e-006,0,0,1.907349e-006,-1.907349e-006,0,0,0,0,1.907349e-006,0,-3.814697e-006,-1.907349e-006,3.814697e-006,0,0
  5075. }
  5076. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5077. KeyAttrFlags: *1 {
  5078. a: 8456
  5079. }
  5080. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5081. KeyAttrDataFloat: *4 {
  5082. a: 0,0,218434821,0
  5083. }
  5084. KeyAttrRefCount: *1 {
  5085. a: 111
  5086. }
  5087. }
  5088. AnimationCurve: 2736166400, "AnimCurve::", "" {
  5089. Default: 0
  5090. KeyVer: 4008
  5091. KeyTime: *111 {
  5092. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5093. }
  5094. KeyValueFloat: *111 {
  5095. a: 1.192093e-007,1.192093e-007,5.960464e-007,1.192093e-007,1.192093e-007,1.192093e-007,1.192093e-007,1.192093e-007,5.960464e-007,1.192093e-007,1.192093e-007,9.536743e-007,9.536743e-007,-1.907349e-006,0,-1.907349e-006,2.861023e-006,3.814697e-006,0,0,-1.907349e-006,-1.907349e-006,-9.536743e-007,-3.576279e-007,0,0,-1.907349e-006,0,0,1.907349e-006,-1.907349e-006,9.536743e-007,5.960464e-007,2.384186e-007,1.192093e-007,5.960464e-007,7.152557e-007,9.536743e-007,1.311302e-006,7.152557e-007,1.192093e-007,9.536743e-007,-1.907349e-006,9.536743e-007,0,0,9.536743e-007,0,0,-9.536743e-007,9.536743e-007,9.536743e-007,-1.907349e-006,-9.536743e-007,0,-9.536743e-007,9.536743e-007,9.536743e-007,9.536743e-007,1.907349e-006,-9.536743e-007,9.536743e-007,9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,-1.907349e-006,-2.861023e-006,-9.536743e-007,-1.907349e-006,1.907349e-006,-9.536743e-007,-9.536743e-007,9.536743e-007,-9.536743e-007,-9.536743e-007,-1.907349e-006,-9.536743e-007,0,0,-9.536743e-007,-9.536743e-007,0,1.907349e-006,-1.907349e-006,-9.536743e-007,0,0,9.536743e-007,-9.536743e-007,0,0,-9.536743e-007,0,1.907349e-006,-9.536743e-007,-9.536743e-007,0,0,-9.536743e-007,0,9.536743e-007,9.536743e-007,-9.536743e-007,-2.384186e-006,4.768372e-007,0,-1.192093e-006,-2.384186e-007,-2.384186e-007,1.192093e-007
  5096. }
  5097. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5098. KeyAttrFlags: *1 {
  5099. a: 8456
  5100. }
  5101. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5102. KeyAttrDataFloat: *4 {
  5103. a: 0,0,218434821,0
  5104. }
  5105. KeyAttrRefCount: *1 {
  5106. a: 111
  5107. }
  5108. }
  5109. AnimationCurve: 2736160960, "AnimCurve::", "" {
  5110. Default: -16.3977832794189
  5111. KeyVer: 4008
  5112. KeyTime: *111 {
  5113. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5114. }
  5115. KeyValueFloat: *111 {
  5116. a: -16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39779,-16.98671,-17.2093,-17.21013,-17.16594,-17.13867,-17.2189,-17.222,-17.22842,-17.20507,-17.12798,-17.00677,-16.85071,-16.69546,-16.5359,-16.39779,-16.3432,-16.34849,-16.35864,-16.37969,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39779,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39779,-16.39778,-16.39779,-16.39778,-16.39778,-16.39779,-16.39778,-16.39778,-16.39778,-16.39779,-16.39778,-16.39779,-16.39778,-16.39779,-16.39778,-16.39778,-16.39779,-16.39778,-16.39778,-16.39779,-16.39779,-16.39778,-16.39778,-16.39778,-16.39779,-16.39779,-16.39779,-16.39778,-16.39778,-16.39779,-16.39778,-16.39779,-16.39778,-16.39779,-16.39779,-16.39778,-16.39779,-16.39779,-16.39778,-16.39779,-16.39779,-16.39779,-16.39779,-16.39778,-16.39779,-16.39778,-16.39779,-16.39779,-16.39778,-16.39779,-16.39778,-16.39779,-16.39778,-16.39779,-16.39779,-16.39778,-16.39779,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778,-16.39778
  5117. }
  5118. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5119. KeyAttrFlags: *1 {
  5120. a: 8456
  5121. }
  5122. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5123. KeyAttrDataFloat: *4 {
  5124. a: 0,0,218434821,0
  5125. }
  5126. KeyAttrRefCount: *1 {
  5127. a: 111
  5128. }
  5129. }
  5130. AnimationCurve: 2736164000, "AnimCurve::", "" {
  5131. Default: 5.35926675796509
  5132. KeyVer: 4008
  5133. KeyTime: *111 {
  5134. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5135. }
  5136. KeyValueFloat: *111 {
  5137. a: 5.359267,5.359267,5.359267,5.359267,5.359267,5.359267,5.359267,5.359267,5.359267,5.359267,5.359267,5.359264,2.919413,0.8248884,0.8070588,1.489105,1.783753,0.5832433,-0.4792305,-0.04008212,0.9114872,1.886612,2.796657,3.641249,4.314183,4.904697,5.35927,5.527536,5.51149,5.480517,5.415701,5.359266,5.359267,5.359267,5.359269,5.359266,5.359267,5.359266,5.359267,5.359267,5.359267,5.359268,5.359267,5.359267,5.359271,5.359269,5.359266,5.359264,5.359269,5.359267,5.359265,5.359264,5.359265,5.359266,5.359265,5.359268,5.359265,5.359266,5.359268,5.359269,5.359269,5.359266,5.359267,5.359268,5.359264,5.359267,5.359268,5.359266,5.35927,5.359269,5.359269,5.359271,5.359265,5.359267,5.359266,5.359267,5.359267,5.359266,5.359267,5.359267,5.359266,5.359268,5.35927,5.359267,5.35927,5.359267,5.359268,5.35927,5.359268,5.359269,5.359266,5.359268,5.359268,5.359269,5.359266,5.359267,5.35927,5.359267,5.359267,5.359268,5.359268,5.359267,5.359267,5.359267,5.359266,5.359268,5.359266,5.359267,5.359268,5.359265,5.359267
  5138. }
  5139. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5140. KeyAttrFlags: *1 {
  5141. a: 8456
  5142. }
  5143. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5144. KeyAttrDataFloat: *4 {
  5145. a: 0,0,218434821,0
  5146. }
  5147. KeyAttrRefCount: *1 {
  5148. a: 111
  5149. }
  5150. }
  5151. AnimationCurve: 2736164640, "AnimCurve::", "" {
  5152. Default: 10.9217872619629
  5153. KeyVer: 4008
  5154. KeyTime: *111 {
  5155. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5156. }
  5157. KeyValueFloat: *111 {
  5158. a: 10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92178,2.778399,-4.026049,-4.083612,-1.878485,-0.9234636,-4.806044,-8.232915,-6.816523,-3.746374,-0.5896233,2.376301,5.154997,7.392735,9.377815,10.92179,11.49718,11.44223,11.33618,11.11451,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92178,10.92179,10.92179,10.92178,10.92178,10.92178,10.92179,10.92179,10.92178,10.92178,10.92179,10.92179,10.92178,10.92178,10.92178,10.92179,10.92178,10.92178,10.92178,10.92178,10.92179,10.92179,10.92179,10.92178,10.92178,10.92178,10.92178,10.92179,10.92178,10.92178,10.92179,10.92178,10.92178,10.92179,10.92179,10.92179,10.92178,10.92178,10.92179,10.92178,10.92178,10.92179,10.92179,10.92179,10.92178,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92179,10.92178,10.92179,10.92178,10.92178,10.92178,10.92178,10.92179,10.92178,10.92178,10.92178,10.92179,10.92178,10.92179,10.92178,10.92178,10.92178,10.92179,10.92178,10.92178,10.92179,10.92179
  5159. }
  5160. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5161. KeyAttrFlags: *1 {
  5162. a: 8456
  5163. }
  5164. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5165. KeyAttrDataFloat: *4 {
  5166. a: 0,0,218434821,0
  5167. }
  5168. KeyAttrRefCount: *1 {
  5169. a: 111
  5170. }
  5171. }
  5172. AnimationCurve: 2736164960, "AnimCurve::", "" {
  5173. Default: 0
  5174. KeyVer: 4008
  5175. KeyTime: *111 {
  5176. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5177. }
  5178. KeyValueFloat: *111 {
  5179. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999998,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999998,0.9999999,0.9999999,0.9999999,0.9999997,0.9999999,0.9999999,1,1,1,0.9999998,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,1,0.9999998,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999998,0.9999998,0.9999999,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,1,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,0.9999998,0.9999999,0.9999999,1,1,0.9999999,1,1
  5180. }
  5181. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5182. KeyAttrFlags: *1 {
  5183. a: 8456
  5184. }
  5185. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5186. KeyAttrDataFloat: *4 {
  5187. a: 0,0,218434821,0
  5188. }
  5189. KeyAttrRefCount: *1 {
  5190. a: 111
  5191. }
  5192. }
  5193. AnimationCurve: 2736165600, "AnimCurve::", "" {
  5194. Default: 0
  5195. KeyVer: 4008
  5196. KeyTime: *111 {
  5197. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5198. }
  5199. KeyValueFloat: *111 {
  5200. a: 1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1
  5201. }
  5202. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5203. KeyAttrFlags: *1 {
  5204. a: 8456
  5205. }
  5206. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5207. KeyAttrDataFloat: *4 {
  5208. a: 0,0,218434821,0
  5209. }
  5210. KeyAttrRefCount: *1 {
  5211. a: 111
  5212. }
  5213. }
  5214. AnimationCurve: 2736160160, "AnimCurve::", "" {
  5215. Default: 0
  5216. KeyVer: 4008
  5217. KeyTime: *111 {
  5218. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5219. }
  5220. KeyValueFloat: *111 {
  5221. a: 1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999998,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1
  5222. }
  5223. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5224. KeyAttrFlags: *1 {
  5225. a: 8456
  5226. }
  5227. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5228. KeyAttrDataFloat: *4 {
  5229. a: 0,0,218434821,0
  5230. }
  5231. KeyAttrRefCount: *1 {
  5232. a: 111
  5233. }
  5234. }
  5235. AnimationCurve: 2502510784, "AnimCurve::", "" {
  5236. Default: 0
  5237. KeyVer: 4008
  5238. KeyTime: *111 {
  5239. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5240. }
  5241. KeyValueFloat: *111 {
  5242. a: 115.7517,115.7517,115.7517,115.7517,115.7517,115.7517,115.7517,115.7517,115.7517,115.7517,115.7517,121.1246,138.5455,90.49875,27.45913,-37.2972,-82.66415,-95.01823,-75.03696,-30.3217,29.84063,84.91926,127.5819,148.714,147.5872,128.041,99.9583,78.23618,74.2852,87.21097,105.5832,121.1246,115.7553,115.7577,115.759,115.7595,115.7593,115.7584,115.757,115.7554,115.7536,102.9388,102.9969,103.0498,103.0973,103.1396,103.1769,103.2095,103.2378,103.2622,103.2833,103.3015,103.3174,103.3316,103.3445,103.3566,103.3685,103.3798,103.3897,103.3983,103.4058,103.4122,103.4175,103.4218,103.4252,103.4275,103.4288,103.4292,103.4286,103.4269,103.4243,103.4207,103.416,103.4103,103.4037,103.3959,103.3871,103.3774,103.3666,103.3549,103.3422,103.3287,103.3143,103.2991,103.2831,103.2665,103.2492,103.2305,103.2096,103.1871,103.1633,103.1388,103.1138,103.0888,103.0642,103.0405,103.018,102.9971,102.9783,102.962,102.9486,102.9385,102.9385,102.5348,102.3814,102.7068,103.7122,105.5329,108.2088,111.6721,115.7517
  5243. }
  5244. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5245. KeyAttrFlags: *1 {
  5246. a: 8456
  5247. }
  5248. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5249. KeyAttrDataFloat: *4 {
  5250. a: 0,0,218434821,0
  5251. }
  5252. KeyAttrRefCount: *1 {
  5253. a: 111
  5254. }
  5255. }
  5256. AnimationCurve: 2502511264, "AnimCurve::", "" {
  5257. Default: 0
  5258. KeyVer: 4008
  5259. KeyTime: *111 {
  5260. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5261. }
  5262. KeyValueFloat: *111 {
  5263. a: 102.7232,102.7232,102.7232,102.7232,102.7232,102.7232,102.7232,102.7232,102.7232,102.7232,102.7232,88.36022,65.42842,62.21921,64.59059,66.66376,72.60329,94.67461,118.2454,126.1871,117.5879,97.86066,67.26315,44.4905,38.5395,34.76665,32.8541,36.31984,46.01255,64.35143,81.18132,88.36023,102.6802,102.6548,102.644,102.6448,102.6542,102.669,102.6864,102.7032,102.7165,112.1642,111.8874,111.6205,111.365,111.1221,110.8925,110.6771,110.4762,110.2902,110.1191,109.9629,109.8214,109.6942,109.5807,109.4807,109.3931,109.3189,109.2589,109.213,109.1806,109.1612,109.1544,109.1596,109.1762,109.2035,109.2409,109.2878,109.3433,109.4069,109.4779,109.5554,109.639,109.7278,109.8213,109.9186,110.0191,110.1223,110.2274,110.334,110.4414,110.5491,110.6566,110.7635,110.8691,110.9733,111.0754,111.1766,111.2774,111.3769,111.4743,111.5686,111.6591,111.7449,111.8251,111.8991,111.9659,112.0248,112.0749,112.1154,112.1455,112.1642,112.1643,113.858,114.9209,115.2286,114.6758,113.1807,110.6916,107.195,102.7232
  5264. }
  5265. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5266. KeyAttrFlags: *1 {
  5267. a: 8456
  5268. }
  5269. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5270. KeyAttrDataFloat: *4 {
  5271. a: 0,0,218434821,0
  5272. }
  5273. KeyAttrRefCount: *1 {
  5274. a: 111
  5275. }
  5276. }
  5277. AnimationCurve: 2502508384, "AnimCurve::", "" {
  5278. Default: 0
  5279. KeyVer: 4008
  5280. KeyTime: *111 {
  5281. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5282. }
  5283. KeyValueFloat: *111 {
  5284. a: -9.6089,-9.6089,-9.608894,-9.6089,-9.6089,-9.6089,-9.6089,-9.6089,-9.608894,-9.6089,-9.6089,48.99657,-28.32792,-108.9646,-137.676,-135.0006,-110.7014,-79.65134,-66.53227,-82.91573,-93.52818,-80.96877,-52.62691,-11.45746,39.65335,88.87872,122.6019,137.4614,136.1207,118.8861,87.97607,48.99658,-9.596061,-9.588572,-9.585518,-9.585895,-9.58884,-9.593387,-9.598598,-9.603552,-9.607296,-37.9236,-38.67995,-39.40103,-40.08489,-40.73,-41.33515,-41.89941,-42.42215,-42.90282,-43.34137,-43.7378,-44.09236,-44.40541,-44.67778,-44.90998,-45.1031,-45.25827,-45.37677,-45.45993,-45.50904,-45.52555,-45.51091,-45.46674,-45.39453,-45.29602,-45.17295,-45.02699,-44.85975,-44.67307,-44.46865,-44.24825,-44.01361,-43.76649,-43.50861,-43.24158,-42.96724,-42.68709,-42.40279,-42.11592,-41.82809,-41.54077,-41.25539,-40.97349,-40.69641,-40.4255,-40.1621,-39.90775,-39.66372,-39.43121,-39.21137,-39.00525,-38.81393,-38.63845,-38.47974,-38.33893,-38.21686,-38.11464,-38.03326,-37.97366,-37.93697,-37.92432,-37.92433,-33.00103,-28.67133,-24.94163,-21.71532,-18.80952,-15.98588,-12.99278,-9.6089
  5285. }
  5286. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5287. KeyAttrFlags: *1 {
  5288. a: 8456
  5289. }
  5290. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5291. KeyAttrDataFloat: *4 {
  5292. a: 0,0,218434821,0
  5293. }
  5294. KeyAttrRefCount: *1 {
  5295. a: 111
  5296. }
  5297. }
  5298. AnimationCurve: 2502510144, "AnimCurve::", "" {
  5299. Default: -21.6193332672119
  5300. KeyVer: 4008
  5301. KeyTime: *111 {
  5302. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5303. }
  5304. KeyValueFloat: *111 {
  5305. a: -21.61933,-21.61933,-21.61934,-21.61933,-21.61933,-21.61933,-21.61933,-21.61933,-21.61934,-21.61933,-21.61933,-94.03925,-14.93975,39.1113,51.14587,58.99883,62.09748,56.86938,51.32462,47.8014,37.54999,22.70309,6.28193,-15.22337,-43.53566,-68.19212,-83.63895,-91.37366,-94.31652,-97.06071,-99.49297,-94.03927,-21.61933,-21.61933,-21.61932,-21.61934,-21.61933,-21.61933,-21.61934,-21.61933,-21.61933,6.04413,6.533564,6.997024,7.433709,7.842996,8.224401,8.577586,8.902349,9.198575,9.466395,9.705987,9.917684,10.10193,10.25936,10.39057,10.4964,10.57769,10.63537,10.67047,10.68405,10.67723,10.65114,10.60702,10.54602,10.46944,10.37852,10.27453,10.15865,10.03218,9.896341,9.752358,9.6014,9.44451,9.282612,9.116646,8.947581,8.77628,8.60364,8.430529,8.257817,8.086315,7.916802,7.750108,7.586983,7.42817,7.274398,7.126419,6.984914,6.850573,6.724099,6.606146,6.497393,6.398528,6.310172,6.233058,6.167795,6.115129,6.07574,6.050309,6.039599,6.044375,6.044378,2.696554,-0.3785937,-3.240815,-6.005658,-8.853935,-12.06229,-16.07057,-21.61933
  5306. }
  5307. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5308. KeyAttrFlags: *1 {
  5309. a: 8456
  5310. }
  5311. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5312. KeyAttrDataFloat: *4 {
  5313. a: 0,0,218434821,0
  5314. }
  5315. KeyAttrRefCount: *1 {
  5316. a: 111
  5317. }
  5318. }
  5319. AnimationCurve: 2502510304, "AnimCurve::", "" {
  5320. Default: 57.8868522644043
  5321. KeyVer: 4008
  5322. KeyTime: *111 {
  5323. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5324. }
  5325. KeyValueFloat: *111 {
  5326. a: 57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,60.561,73.6693,42.59732,17.66435,-4.824007,-23.46428,-37.0387,-40.97049,-30.96088,-15.2302,0.7668189,20.94382,39.52269,43.0796,36.1515,26.64408,20.64273,22.03066,31.78236,45.64661,60.56099,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,57.88685,-4.243595,-5.057586,-5.801409,-6.478334,-7.091575,-7.644225,-8.139328,-8.579808,-8.968468,-9.30803,-9.601102,-9.850184,-10.05769,-10.22593,-10.35711,-10.45338,-10.51682,-10.54939,-10.55301,-10.52959,-10.4809,-10.40873,-10.31485,-10.20097,-10.06877,-9.919934,-9.756152,-9.579074,-9.390391,-9.191781,-8.984928,-8.771381,-8.552208,-8.328244,-8.100461,-7.869772,-7.637127,-7.403474,-7.169848,-6.937234,-6.706694,-6.479221,-6.255929,-6.037877,-5.826195,-5.621974,-5.426347,-5.24051,-5.065533,-4.902648,-4.753012,-4.617786,-4.498158,-4.395319,-4.310448,-4.2447,-4.199259,-4.175289,-4.173925,-4.196305,-4.243525,-4.243511,2.302348,9.517159,17.25848,25.36876,33.67937,42.00987,50.15972,57.88685
  5327. }
  5328. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5329. KeyAttrFlags: *1 {
  5330. a: 8456
  5331. }
  5332. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5333. KeyAttrDataFloat: *4 {
  5334. a: 0,0,218434821,0
  5335. }
  5336. KeyAttrRefCount: *1 {
  5337. a: 111
  5338. }
  5339. }
  5340. AnimationCurve: 2502507264, "AnimCurve::", "" {
  5341. Default: 114.327507019043
  5342. KeyVer: 4008
  5343. KeyTime: *111 {
  5344. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5345. }
  5346. KeyValueFloat: *111 {
  5347. a: 114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,41.49463,106.5797,150.9438,156.6049,159.6185,160.3378,158.0145,149.8306,137.4743,126.925,118.1225,107.2384,91.27402,69.95103,51.61079,41.36516,38.94042,40.24878,39.52946,37.44147,41.49461,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,114.3275,122.5855,122.2243,121.8771,121.5457,121.2319,120.9372,120.6628,120.4096,120.1783,119.9694,119.7832,119.6197,119.4789,119.3604,119.2639,119.1887,119.1341,119.0994,119.0837,119.086,119.1051,119.1401,119.1897,119.2527,119.3281,119.4144,119.5105,119.6152,119.7271,119.8451,119.9681,120.0948,120.2244,120.3561,120.4892,120.6231,120.7568,120.8899,121.0216,121.1513,121.2785,121.4025,121.5229,121.6392,121.7508,121.8574,121.9585,122.0536,122.1425,122.2247,122.2998,122.3676,122.4276,122.4796,122.5231,122.5577,122.5833,122.5993,122.6053,122.6009,122.5856,122.5856,124.894,126.4963,127.3163,127.2721,126.2452,124.0347,120.2815,114.3275
  5348. }
  5349. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5350. KeyAttrFlags: *1 {
  5351. a: 8456
  5352. }
  5353. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5354. KeyAttrDataFloat: *4 {
  5355. a: 0,0,218434821,0
  5356. }
  5357. KeyAttrRefCount: *1 {
  5358. a: 111
  5359. }
  5360. }
  5361. AnimationCurve: 2502511744, "AnimCurve::", "" {
  5362. Default: 0
  5363. KeyVer: 4008
  5364. KeyTime: *111 {
  5365. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5366. }
  5367. KeyValueFloat: *111 {
  5368. a: 0.9999997,0.9999997,0.9999996,0.9999997,0.9999997,0.9999997,0.9999997,0.9999997,0.9999996,0.9999997,0.9999997,0.9999995,0.9999999,0.9999995,0.9999997,0.9999997,0.9999999,0.9999997,0.9999996,0.9999995,0.9999996,0.9999998,0.9999997,0.9999998,0.9999997,0.9999996,0.9999996,0.9999996,0.9999998,0.9999998,0.9999995,0.9999996,0.9999997,0.9999997,0.9999997,0.9999997,0.9999997,0.9999997,0.9999998,0.9999997,0.9999997,0.9999997,0.9999998,0.9999998,0.9999996,0.9999998,0.9999998,0.9999996,0.9999999,1,0.9999998,0.9999999,0.9999998,0.9999998,0.9999996,0.9999999,0.9999997,0.9999998,0.9999997,0.9999998,0.9999998,0.9999998,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,0.9999996,0.9999998,0.9999996,0.9999998,0.9999997,0.9999997,0.9999996,0.9999998,0.9999999,0.9999996,0.9999997,0.9999996,0.9999998,0.9999996,0.9999998,0.9999998,0.9999997,0.9999998,0.9999996,0.9999996,0.9999999,0.9999997,0.9999999,0.9999995,0.9999996,0.9999996,0.9999998,0.9999997,0.9999997,0.9999997,0.9999997,0.9999997,0.9999997,0.9999998,0.9999994,0.9999996,0.9999998,0.9999998,0.9999999,0.9999998,0.9999998,0.9999997,0.9999996,0.9999997
  5369. }
  5370. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5371. KeyAttrFlags: *1 {
  5372. a: 8456
  5373. }
  5374. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5375. KeyAttrDataFloat: *4 {
  5376. a: 0,0,218434821,0
  5377. }
  5378. KeyAttrRefCount: *1 {
  5379. a: 111
  5380. }
  5381. }
  5382. AnimationCurve: 2502507424, "AnimCurve::", "" {
  5383. Default: 0
  5384. KeyVer: 4008
  5385. KeyTime: *111 {
  5386. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5387. }
  5388. KeyValueFloat: *111 {
  5389. a: 1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,1,0.9999997,1,0.9999998,0.9999998,0.9999998,0.9999999,0.9999996,0.9999997,0.9999997,0.9999998,0.9999999,0.9999999,0.9999999,0.9999998,0.9999996,0.9999999,0.9999997,0.9999997,1,0.9999997,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999998,0.9999998,0.9999999,0.9999997,0.9999999,0.9999999,0.9999998,1,1,1,0.9999998,0.9999999,0.9999998,0.9999997,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999998,0.9999999,0.9999997,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,1,0.9999999,0.9999998,0.9999998,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999997,0.9999998,0.9999999,0.9999998,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,1,0.9999999,0.9999999,1
  5390. }
  5391. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5392. KeyAttrFlags: *1 {
  5393. a: 8456
  5394. }
  5395. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5396. KeyAttrDataFloat: *4 {
  5397. a: 0,0,218434821,0
  5398. }
  5399. KeyAttrRefCount: *1 {
  5400. a: 111
  5401. }
  5402. }
  5403. AnimationCurve: 2502511424, "AnimCurve::", "" {
  5404. Default: 0
  5405. KeyVer: 4008
  5406. KeyTime: *111 {
  5407. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5408. }
  5409. KeyValueFloat: *111 {
  5410. a: 0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999996,0.9999998,1,0.9999999,0.9999996,0.9999998,0.9999996,0.9999996,0.9999999,0.9999996,0.9999998,0.9999998,0.9999998,0.9999998,0.9999996,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999998,0.9999998,0.9999998,1,1,0.9999998,0.9999999,0.9999999,0.9999998,0.9999997,0.9999999,0.9999998,0.9999997,0.9999998,0.9999998,0.9999997,1,0.9999999,0.9999999,0.9999998,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,0.9999998,0.9999999,0.9999998,0.9999998,1,0.9999996,0.9999995,0.9999998,0.9999998,0.9999999,0.9999997,0.9999998,0.9999997,0.9999999,0.9999998,1,0.9999998,0.9999997,0.9999997,0.9999999,0.9999999,0.9999999,0.9999996,0.9999997,0.9999999,0.9999995,0.9999996,0.9999998,0.9999999,0.9999997,0.9999998,0.9999996,0.9999998,0.9999997,0.9999996,0.9999999,0.9999999,0.9999998,0.9999997,0.9999998,0.9999998,0.9999997,0.9999999
  5411. }
  5412. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5413. KeyAttrFlags: *1 {
  5414. a: 8456
  5415. }
  5416. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5417. KeyAttrDataFloat: *4 {
  5418. a: 0,0,218434821,0
  5419. }
  5420. KeyAttrRefCount: *1 {
  5421. a: 111
  5422. }
  5423. }
  5424. AnimationCurve: 2502496864, "AnimCurve::", "" {
  5425. Default: 0
  5426. KeyVer: 4008
  5427. KeyTime: *111 {
  5428. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5429. }
  5430. KeyValueFloat: *111 {
  5431. a: 2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.93932,2.93932,2.93932,2.93932,2.939316,2.93932,2.939316,2.939312,2.939316,2.939316,2.939312,2.939312,2.939316,2.939312,2.939312,2.93932,2.939312,2.939312,2.93932,2.93932,2.939316,2.939312,2.939312,2.939312,2.939312,2.939312,2.939316,2.939316,2.939316,2.93932,2.939316,2.939312,2.939312,2.939312,2.939316,2.939316,2.939312,2.939312,2.939316,2.939316,2.939316,2.93932,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939312,2.939316,2.939312,2.939316,2.939316,2.939312,2.939316,2.939316,2.939312,2.939312,2.939316,2.939316,2.939312,2.939312,2.939312,2.939316,2.939316,2.939312,2.939316,2.939316,2.939316,2.939312,2.939308,2.939316,2.939316,2.939312,2.939312,2.939316,2.939316,2.939316,2.939316,2.939316,2.939312,2.939316,2.939316,2.939312,2.939312,2.939316,2.939312,2.93932,2.939312,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316,2.939316
  5432. }
  5433. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5434. KeyAttrFlags: *1 {
  5435. a: 8456
  5436. }
  5437. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5438. KeyAttrDataFloat: *4 {
  5439. a: 0,0,218434821,0
  5440. }
  5441. KeyAttrRefCount: *1 {
  5442. a: 111
  5443. }
  5444. }
  5445. AnimationCurve: 2502505824, "AnimCurve::", "" {
  5446. Default: 0
  5447. KeyVer: 4008
  5448. KeyTime: *111 {
  5449. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5450. }
  5451. KeyValueFloat: *111 {
  5452. a: 1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.73996,1.739956,1.739956,1.739958,1.739962,1.739956,1.739958,1.739958,1.73996,1.739956,1.73996,1.739956,1.739956,1.739956,1.739956,1.739958,1.739958,1.73996,1.739958,1.739958,1.73996,1.739957,1.739957,1.739957,1.739956,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739956,1.739957,1.739956,1.739957,1.739957,1.739957,1.739957,1.739957,1.739958,1.739958,1.739957,1.739957,1.739957,1.739956,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739956,1.739956,1.739956,1.739958,1.739957,1.739957,1.739956,1.739957,1.739957,1.739956,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739956,1.739957,1.739957,1.739957,1.739958,1.739956,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739957,1.739956
  5453. }
  5454. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5455. KeyAttrFlags: *1 {
  5456. a: 8456
  5457. }
  5458. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5459. KeyAttrDataFloat: *4 {
  5460. a: 0,0,218434821,0
  5461. }
  5462. KeyAttrRefCount: *1 {
  5463. a: 111
  5464. }
  5465. }
  5466. AnimationCurve: 2502497504, "AnimCurve::", "" {
  5467. Default: 0
  5468. KeyVer: 4008
  5469. KeyTime: *111 {
  5470. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5471. }
  5472. KeyValueFloat: *111 {
  5473. a: 0,0,2.384186e-007,2.384186e-007,2.384186e-007,0,2.384186e-007,2.384186e-007,2.384186e-007,0,0,9.536743e-007,0,0,-2.384186e-007,0,-2.384186e-007,0,0,-2.384186e-007,0,-1.192093e-007,3.576279e-007,-2.384186e-007,3.576279e-007,-1.192093e-007,2.384186e-007,2.384186e-007,4.768372e-007,4.768372e-007,-4.768372e-007,4.768372e-007,2.384186e-007,2.384186e-007,2.384186e-007,2.384186e-007,0,2.384186e-007,-2.384186e-007,0,2.384186e-007,2.384186e-007,0,2.384186e-007,0,0,0,2.384186e-007,0,0,2.384186e-007,2.384186e-007,-2.384186e-007,2.384186e-007,-2.384186e-007,4.768372e-007,0,0,-2.384186e-007,2.384186e-007,0,2.384186e-007,2.384186e-007,0,0,-2.384186e-007,0,0,0,-2.384186e-007,0,0,0,0,2.384186e-007,0,2.384186e-007,1.192093e-007,2.384186e-007,2.384186e-007,0,2.384186e-007,-2.384186e-007,3.576279e-007,2.384186e-007,3.576279e-007,0,2.384186e-007,0,1.192093e-007,1.192093e-007,4.768372e-007,2.384186e-007,2.384186e-007,1.192093e-007,2.384186e-007,2.384186e-007,4.768372e-007,2.384186e-007,2.384186e-007,0,-2.384186e-007,2.384186e-007,0,4.768372e-007,2.384186e-007,2.384186e-007,2.384186e-007,2.384186e-007,4.768372e-007,0
  5474. }
  5475. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5476. KeyAttrFlags: *1 {
  5477. a: 8456
  5478. }
  5479. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5480. KeyAttrDataFloat: *4 {
  5481. a: 0,0,218434821,0
  5482. }
  5483. KeyAttrRefCount: *1 {
  5484. a: 111
  5485. }
  5486. }
  5487. AnimationCurve: 2502505984, "AnimCurve::", "" {
  5488. Default: -16.2396583557129
  5489. KeyVer: 4008
  5490. KeyTime: *111 {
  5491. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5492. }
  5493. KeyValueFloat: *111 {
  5494. a: -16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,19.99684,15.97513,5.208923,1.297491,-1.547102,-5.843433,-7.438854,-7.638572,-7.788838,-8.596697,-8.855435,-11.71061,-13.76578,-10.82702,-5.872318,2.119943,10.88749,16.91159,21.91882,24.45977,19.99683,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.25818,-16.28336,-16.31345,-16.34667,-16.38126,-16.41538,-16.44719,-16.47482,-16.49635,-16.50986,-16.51338,-16.50493,-16.4825,-16.44408,-16.38763,-16.3189,-16.24562,-16.16874,-16.08917,-16.00792,-15.92591,-15.84414,-15.7636,-15.6853,-15.60894,-15.53382,-15.46032,-15.38885,-15.31979,-15.25356,-15.19051,-15.13106,-15.07558,-15.02444,-14.978,-14.93663,-14.90067,-14.87045,-14.84631,-14.82856,-14.81751,-14.81346,-14.81669,-14.82748,-14.8461,-14.87944,-14.93244,-15.00247,-15.08695,-15.18326,-15.28886,-15.40116,-15.51764,-15.63575,-15.75181,-15.86315,-15.96879,-16.06762,-16.15839,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966,-16.23966
  5495. }
  5496. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5497. KeyAttrFlags: *1 {
  5498. a: 8456
  5499. }
  5500. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5501. KeyAttrDataFloat: *4 {
  5502. a: 0,0,218434821,0
  5503. }
  5504. KeyAttrRefCount: *1 {
  5505. a: 111
  5506. }
  5507. }
  5508. AnimationCurve: 2502497184, "AnimCurve::", "" {
  5509. Default: 0.309451520442963
  5510. KeyVer: 4008
  5511. KeyTime: *111 {
  5512. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5513. }
  5514. KeyValueFloat: *111 {
  5515. a: 0.3094515,0.3094515,0.3094517,0.3094526,0.3094521,0.3094515,0.3094521,0.3094519,0.3094513,0.3094515,0.3094516,1.472614,-0.3039281,-3.047937,-1.465322,0.5816159,2.752853,4.056728,5.122592,3.813805,2.891408,2.167768,1.979988,1.940027,2.609984,3.127336,1.601605,-0.9638367,-2.042306,-0.9895233,1.10782,1.472613,0.3094515,0.309452,0.3094515,0.3094513,0.309452,0.3094521,0.3094513,0.309452,0.309452,0.3094532,0.3955441,0.4907022,0.5930727,0.7008177,0.81213,0.9252333,1.038388,1.149889,1.25807,1.361296,1.457973,1.54653,1.625422,1.69312,1.748106,1.792411,1.828876,1.857161,1.87691,1.887743,1.889269,1.881069,1.862717,1.833769,1.795347,1.749239,1.696,1.636182,1.57036,1.499105,1.423008,1.342661,1.258673,1.171666,1.082269,0.9911273,0.8988925,0.8062345,0.7138275,0.6223596,0.5325255,0.4450323,0.3605886,0.279917,0.2037341,0.1359894,0.07976212,0.0344598,-0.000556447,-0.02595793,-0.04245581,-0.05080231,-0.05177582,-0.04619706,-0.01985067,0.03441305,0.1053474,0.1819644,0.2535157,0.3094541,0.3094545,0.3094541,0.3094536,0.309453,0.3094522,0.309453,0.3094513,0.3094522,0.3094515
  5516. }
  5517. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5518. KeyAttrFlags: *1 {
  5519. a: 8456
  5520. }
  5521. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5522. KeyAttrDataFloat: *4 {
  5523. a: 0,0,218434821,0
  5524. }
  5525. KeyAttrRefCount: *1 {
  5526. a: 111
  5527. }
  5528. }
  5529. AnimationCurve: 2502501824, "AnimCurve::", "" {
  5530. Default: -8.9892520904541
  5531. KeyVer: 4008
  5532. KeyTime: *111 {
  5533. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5534. }
  5535. KeyValueFloat: *111 {
  5536. a: -8.989252,-8.989252,-8.989253,-8.989254,-8.989254,-8.989252,-8.989254,-8.989254,-8.989253,-8.989252,-8.989254,-26.51898,-29.19439,-27.63644,-26.04843,-23.11302,-19.13431,-18.06103,-18.24536,-19.99508,-21.18079,-22.58562,-22.55969,-22.18344,-24.03131,-25.60126,-24.77403,-22.57494,-21.5144,-23.34818,-26.14857,-26.51899,-8.989252,-8.989252,-8.989254,-8.989252,-8.989252,-8.989252,-8.989253,-8.989252,-8.989252,-8.989249,-9.100385,-9.219143,-9.344937,-9.477178,-9.615234,-9.758481,-9.906235,-10.05783,-10.21252,-10.3696,-10.52831,-10.68787,-10.84752,-11.00647,-11.16395,-11.31656,-11.46016,-11.59302,-11.71335,-11.81941,-11.90945,-11.98173,-12.03454,-12.06611,-12.07847,-12.07531,-12.05742,-12.02562,-11.9807,-11.92347,-11.85469,-11.77518,-11.68569,-11.58699,-11.47984,-11.36501,-11.24323,-11.11525,-10.9818,-10.8436,-10.7014,-10.5559,-10.40784,-10.2579,-10.10683,-9.951885,-9.79127,-9.627067,-9.461409,-9.296421,-9.134282,-8.97716,-8.82722,-8.686665,-8.60839,-8.623159,-8.699881,-8.807326,-8.914228,-8.989248,-8.989248,-8.989248,-8.989251,-8.989253,-8.989251,-8.989253,-8.989255,-8.989253,-8.989253
  5537. }
  5538. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5539. KeyAttrFlags: *1 {
  5540. a: 8456
  5541. }
  5542. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5543. KeyAttrDataFloat: *4 {
  5544. a: 0,0,218434821,0
  5545. }
  5546. KeyAttrRefCount: *1 {
  5547. a: 111
  5548. }
  5549. }
  5550. AnimationCurve: 2502506144, "AnimCurve::", "" {
  5551. Default: 0
  5552. KeyVer: 4008
  5553. KeyTime: *111 {
  5554. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5555. }
  5556. KeyValueFloat: *111 {
  5557. a: 1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999998,1,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999998,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999998,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999998,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999998,1,1,1,1,1,1,1,1,1,1,1,1
  5558. }
  5559. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5560. KeyAttrFlags: *1 {
  5561. a: 8456
  5562. }
  5563. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5564. KeyAttrDataFloat: *4 {
  5565. a: 0,0,218434821,0
  5566. }
  5567. KeyAttrRefCount: *1 {
  5568. a: 111
  5569. }
  5570. }
  5571. AnimationCurve: 2502504544, "AnimCurve::", "" {
  5572. Default: 0
  5573. KeyVer: 4008
  5574. KeyTime: *111 {
  5575. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5576. }
  5577. KeyValueFloat: *111 {
  5578. a: 0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,1,0.9999998,1,0.9999998,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999998,0.9999999,1,0.9999999,1,1,1,0.9999999,1,0.9999998,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999
  5579. }
  5580. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5581. KeyAttrFlags: *1 {
  5582. a: 8456
  5583. }
  5584. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5585. KeyAttrDataFloat: *4 {
  5586. a: 0,0,218434821,0
  5587. }
  5588. KeyAttrRefCount: *1 {
  5589. a: 111
  5590. }
  5591. }
  5592. AnimationCurve: 2502496704, "AnimCurve::", "" {
  5593. Default: 0
  5594. KeyVer: 4008
  5595. KeyTime: *111 {
  5596. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5597. }
  5598. KeyValueFloat: *111 {
  5599. a: 0.9999998,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,0.9999998,0.9999998,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999998,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,1,1,0.9999999,0.9999999,1,0.9999999,1,0.9999998,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,0.9999998,0.9999998,1,1,0.9999998,0.9999998,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999998,1,1,1,1,0.9999999,1,1,0.9999999,0.9999998,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999998,0.9999999,0.9999998
  5600. }
  5601. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5602. KeyAttrFlags: *1 {
  5603. a: 8456
  5604. }
  5605. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5606. KeyAttrDataFloat: *4 {
  5607. a: 0,0,218434821,0
  5608. }
  5609. KeyAttrRefCount: *1 {
  5610. a: 111
  5611. }
  5612. }
  5613. AnimationCurve: 2502502144, "AnimCurve::", "" {
  5614. Default: 0
  5615. KeyVer: 4008
  5616. KeyTime: *111 {
  5617. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5618. }
  5619. KeyValueFloat: *111 {
  5620. a: -139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-131.459,-127.9898,-127.8471,-125.9011,-123.6861,-121.9791,-122.2289,-123.8586,-125.7007,-127.5551,-128.9283,-129.1867,-128.4929,-127.2009,-125.3028,-124.1713,-124.8509,-126.5412,-127.1536,-127.6781,-131.459,-139.6985,-139.6862,-139.6814,-139.6822,-139.6872,-139.6948,-139.7034,-139.7114,-139.7173,-139.7195,-139.6986,-139.6746,-139.6476,-139.6177,-139.585,-139.5496,-139.5118,-139.4718,-139.43,-139.3867,-139.3424,-139.2976,-139.2528,-139.2087,-139.1659,-139.125,-139.0867,-139.0516,-139.0206,-138.9942,-138.9731,-138.9581,-138.9497,-138.9485,-138.9539,-138.9645,-138.98,-139,-139.0241,-139.0517,-139.0826,-139.116,-139.1517,-139.189,-139.2277,-139.2673,-139.3073,-139.3474,-139.3872,-139.4264,-139.4647,-139.5019,-139.5377,-139.572,-139.6045,-139.6353,-139.6641,-139.6909,-139.7157,-139.7384,-139.7589,-139.7773,-139.7935,-139.8075,-139.8121,-139.8034,-139.7854,-139.7621,-139.7383,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7195,-139.7196,-139.7195
  5621. }
  5622. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5623. KeyAttrFlags: *1 {
  5624. a: 8456
  5625. }
  5626. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5627. KeyAttrDataFloat: *4 {
  5628. a: 0,0,218434821,0
  5629. }
  5630. KeyAttrRefCount: *1 {
  5631. a: 111
  5632. }
  5633. }
  5634. AnimationCurve: 2502499744, "AnimCurve::", "" {
  5635. Default: 0
  5636. KeyVer: 4008
  5637. KeyTime: *111 {
  5638. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5639. }
  5640. KeyValueFloat: *111 {
  5641. a: -13.01014,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014,29.02728,36.2387,38.02396,44.36015,51.15257,55.99687,55.85174,52.62708,48.59018,44.18171,40.02814,37.23887,37.32222,41.47791,47.71426,51.77071,51.24113,47.51481,43.88021,39.45382,29.02728,-12.98639,-12.9724,-12.9665,-12.967,-12.97221,-12.98046,-12.99007,-12.99933,-13.00658,-13.01014,-13.28641,-13.58665,-13.90758,-14.24593,-14.59838,-14.96164,-15.33239,-15.70733,-16.08309,-16.45637,-16.8238,-17.18202,-17.52771,-17.85747,-18.16795,-18.45619,-18.7193,-18.95411,-19.15736,-19.3259,-19.45651,-19.54598,-19.59113,-19.58875,-19.54338,-19.46306,-19.34996,-19.20622,-19.03399,-18.83544,-18.61269,-18.36791,-18.10324,-17.82079,-17.52275,-17.21122,-16.88836,-16.55632,-16.21721,-15.87319,-15.52639,-15.17894,-14.83298,-14.49061,-14.15398,-13.82559,-13.50785,-13.2027,-12.9121,-12.63797,-12.38226,-12.14695,-11.93394,-11.74522,-11.6918,-11.83695,-12.111,-12.44426,-12.76715,-13.01013,-13.01013,-13.01013,-13.01013,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014,-13.01014
  5642. }
  5643. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5644. KeyAttrFlags: *1 {
  5645. a: 8456
  5646. }
  5647. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5648. KeyAttrDataFloat: *4 {
  5649. a: 0,0,218434821,0
  5650. }
  5651. KeyAttrRefCount: *1 {
  5652. a: 111
  5653. }
  5654. }
  5655. AnimationCurve: 2502505344, "AnimCurve::", "" {
  5656. Default: 0
  5657. KeyVer: 4008
  5658. KeyTime: *111 {
  5659. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5660. }
  5661. KeyValueFloat: *111 {
  5662. a: 3.163395,3.163395,3.163394,3.163394,3.163394,3.163395,3.163394,3.163395,3.163395,3.163395,3.163395,0.04181191,-0.2043124,-0.8102067,-2.397844,-4.818164,-7.502536,-8.226056,-7.259111,-5.691189,-4.064459,-2.402673,0.09723341,1.89232,1.167655,0.399634,0.9794881,1.500486,0.8342978,0.4651099,0.572042,0.04181574,3.131486,3.112483,3.104206,3.104473,3.111104,3.121918,3.134737,3.147374,3.157654,3.163395,2.949788,2.718949,2.473434,2.215789,1.948549,1.674226,1.395319,1.114313,0.8336724,0.5558314,0.2832251,0.01825476,-0.2366808,-0.4792013,-0.7069365,-0.9180039,-1.110647,-1.282676,-1.431899,-1.556142,-1.653216,-1.720925,-1.757061,-1.759409,-1.731348,-1.678707,-1.602934,-1.505452,-1.387715,-1.251137,-1.097148,-0.9272019,-0.7427468,-0.5452393,-0.3361402,-0.1169163,0.1109661,0.3460181,0.5867698,0.8317168,1.07937,1.328213,1.576736,1.823422,2.066731,2.304832,2.535982,2.758801,2.971908,3.173909,3.36341,3.53901,3.699307,3.842882,3.899582,3.829508,3.676711,3.485328,3.299502,3.163392,3.163392,3.163393,3.16339,3.163392,3.163393,3.163391,3.163395,3.163394,3.163395
  5663. }
  5664. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5665. KeyAttrFlags: *1 {
  5666. a: 8456
  5667. }
  5668. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5669. KeyAttrDataFloat: *4 {
  5670. a: 0,0,218434821,0
  5671. }
  5672. KeyAttrRefCount: *1 {
  5673. a: 111
  5674. }
  5675. }
  5676. AnimationCurve: 2502502464, "AnimCurve::", "" {
  5677. Default: 0.0959644019603729
  5678. KeyVer: 4008
  5679. KeyTime: *111 {
  5680. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5681. }
  5682. KeyValueFloat: *111 {
  5683. a: 0.0959644,0.0959644,0.09596717,0.09596717,0.09596717,0.0959644,0.09596717,0.0959644,0.0959644,0.0959644,0.0959644,20.52345,23.23363,26.97214,38.09525,58.96684,63.60204,74.45618,90.54679,80.76237,63.64162,47.94781,37.3587,25.29995,27.26426,23.97995,25.2775,18.82176,15.49177,17.79977,18.40249,20.52342,0.0959644,0.0959644,0.09596164,0.09596164,0.0959644,0.09596164,0.09596439,0.0959644,0.0959644,0.09596479,1.279663,2.549883,3.890196,5.284078,6.714886,8.166237,9.622062,11.06679,12.48553,13.86435,15.19007,16.45073,17.6352,18.73348,19.73648,20.63595,21.42444,22.09488,22.64088,23.05623,23.33482,23.4706,23.45725,23.28835,22.98868,22.59461,22.11625,21.56267,20.94237,20.26288,19.53049,18.74894,17.92094,17.04953,16.13745,15.18776,14.20347,13.18795,12.14458,11.07726,9.989916,8.887041,7.773322,6.653895,5.53435,4.420548,3.318903,2.236171,1.179554,0.1567435,-0.8241704,-1.754672,-2.625775,-3.427996,-3.787755,-3.475158,-2.700189,-1.684764,-0.6674211,0.095993,0.095993,0.09599024,0.09600679,0.09598435,0.09597871,0.09599258,0.0959618,0.09596725,0.0959644
  5684. }
  5685. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5686. KeyAttrFlags: *1 {
  5687. a: 8456
  5688. }
  5689. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5690. KeyAttrDataFloat: *4 {
  5691. a: 0,0,218434821,0
  5692. }
  5693. KeyAttrRefCount: *1 {
  5694. a: 111
  5695. }
  5696. }
  5697. AnimationCurve: 2502502624, "AnimCurve::", "" {
  5698. Default: -85.9065704345703
  5699. KeyVer: 4008
  5700. KeyTime: *111 {
  5701. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5702. }
  5703. KeyValueFloat: *111 {
  5704. a: -85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-84.14524,-83.76857,-84.18897,-84.95041,-85.20478,-84.19716,-84.24047,-84.90147,-85.75174,-86.44571,-86.94676,-88.11355,-88.88252,-87.88638,-86.57293,-86.78386,-86.00272,-84.23926,-84.08925,-84.10143,-84.14523,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90657,-85.90659,-85.8906,-85.87244,-85.85171,-85.82806,-85.80123,-85.77106,-85.73748,-85.70052,-85.66029,-85.61699,-85.57091,-85.52242,-85.47194,-85.41992,-85.36687,-85.31334,-85.25986,-85.20692,-85.15509,-85.10483,-85.05657,-85.01073,-84.96758,-84.92739,-84.89093,-84.85913,-84.83233,-84.81085,-84.79504,-84.78523,-84.78164,-84.78395,-84.79165,-84.80431,-84.82145,-84.84265,-84.86746,-84.89549,-84.92635,-84.95968,-84.99512,-85.03239,-85.07118,-85.11125,-85.15239,-85.1944,-85.23716,-85.28053,-85.32446,-85.3689,-85.41387,-85.45937,-85.50548,-85.55226,-85.60458,-85.66505,-85.72954,-85.79359,-85.85352,-85.90661,-85.90661,-85.90661,-85.9066,-85.90659,-85.90659,-85.90659,-85.90658,-85.90658,-85.90657
  5705. }
  5706. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5707. KeyAttrFlags: *1 {
  5708. a: 8456
  5709. }
  5710. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5711. KeyAttrDataFloat: *4 {
  5712. a: 0,0,218434821,0
  5713. }
  5714. KeyAttrRefCount: *1 {
  5715. a: 111
  5716. }
  5717. }
  5718. AnimationCurve: 2502503904, "AnimCurve::", "" {
  5719. Default: -86.1367721557617
  5720. KeyVer: 4008
  5721. KeyTime: *111 {
  5722. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5723. }
  5724. KeyValueFloat: *111 {
  5725. a: -86.13677,-86.13677,-86.13678,-86.13678,-86.13678,-86.13677,-86.13678,-86.13677,-86.13677,-86.13677,-86.13677,-131.4468,-137.8802,-141.8116,-155.9258,-179.8407,-186.4758,-197.2513,-211.8172,-200.1685,-180.9351,-163.3189,-151.5182,-139.6314,-143.6998,-143.316,-146.3087,-139.4014,-134.2611,-135.3997,-134.588,-131.4468,-86.13677,-86.13677,-86.13677,-86.13677,-86.13677,-86.13677,-86.13677,-86.13677,-86.13677,-86.13676,-87.20591,-88.35175,-89.55913,-90.81287,-92.0977,-93.39854,-94.70058,-95.98971,-97.25233,-98.4758,-99.64839,-100.7594,-101.7991,-102.759,-103.6311,-104.4087,-105.0857,-105.6564,-106.1158,-106.459,-106.6814,-106.7782,-106.7446,-106.5755,-106.2938,-105.9324,-105.5006,-105.0064,-104.4576,-103.8607,-103.2211,-102.5416,-101.8241,-101.0706,-100.283,-99.46354,-98.61423,-97.73751,-96.83595,-95.91247,-94.97015,-94.01256,-93.0435,-92.06725,-91.08847,-90.11215,-89.14383,-88.18941,-87.2552,-86.34801,-85.47508,-84.64408,-83.86311,-83.14081,-82.80408,-83.05634,-83.71679,-84.59283,-85.47506,-86.1368,-86.1368,-86.1368,-86.13681,-86.1368,-86.1368,-86.1368,-86.13678,-86.13678,-86.13677
  5726. }
  5727. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5728. KeyAttrFlags: *1 {
  5729. a: 8456
  5730. }
  5731. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5732. KeyAttrDataFloat: *4 {
  5733. a: 0,0,218434821,0
  5734. }
  5735. KeyAttrRefCount: *1 {
  5736. a: 111
  5737. }
  5738. }
  5739. AnimationCurve: 2502501504, "AnimCurve::", "" {
  5740. Default: 0
  5741. KeyVer: 4008
  5742. KeyTime: *111 {
  5743. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5744. }
  5745. KeyValueFloat: *111 {
  5746. a: 1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774
  5747. }
  5748. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5749. KeyAttrFlags: *1 {
  5750. a: 8456
  5751. }
  5752. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5753. KeyAttrDataFloat: *4 {
  5754. a: 0,0,218434821,0
  5755. }
  5756. KeyAttrRefCount: *1 {
  5757. a: 111
  5758. }
  5759. }
  5760. AnimationCurve: 2502498784, "AnimCurve::", "" {
  5761. Default: 0
  5762. KeyVer: 4008
  5763. KeyTime: *111 {
  5764. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5765. }
  5766. KeyValueFloat: *111 {
  5767. a: 1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.077401,1.0774,1.0774,1.0774,1.077401,1.0774,1.077401,1.077401,1.0774,1.0774,1.077401,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.077401,1.077401,1.0774,1.0774,1.077401,1.077401,1.0774,1.077401,1.077401,1.077401,1.0774,1.077401,1.0774,1.077401,1.0774,1.077401,1.0774,1.077401,1.077401,1.0774,1.0774,1.0774,1.0774,1.077401,1.077401,1.0774,1.0774,1.077401,1.077401,1.077401,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.077401,1.0774,1.077401,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.077401,1.077401,1.0774,1.0774,1.0774,1.0774,1.077401,1.077401,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774
  5768. }
  5769. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5770. KeyAttrFlags: *1 {
  5771. a: 8456
  5772. }
  5773. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5774. KeyAttrDataFloat: *4 {
  5775. a: 0,0,218434821,0
  5776. }
  5777. KeyAttrRefCount: *1 {
  5778. a: 111
  5779. }
  5780. }
  5781. AnimationCurve: 2502497824, "AnimCurve::", "" {
  5782. Default: 0
  5783. KeyVer: 4008
  5784. KeyTime: *111 {
  5785. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5786. }
  5787. KeyValueFloat: *111 {
  5788. a: 1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.077401,1.0774,1.0774,1.077401,1.0774,1.0774,1.077401,1.077401,1.077401,1.0774,1.0774,1.0774,1.077401,1.077401,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.077401,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774,1.0774
  5789. }
  5790. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5791. KeyAttrFlags: *1 {
  5792. a: 8456
  5793. }
  5794. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5795. KeyAttrDataFloat: *4 {
  5796. a: 0,0,218434821,0
  5797. }
  5798. KeyAttrRefCount: *1 {
  5799. a: 111
  5800. }
  5801. }
  5802. AnimationCurve: 2502498144, "AnimCurve::", "" {
  5803. Default: 0
  5804. KeyVer: 4008
  5805. KeyTime: *111 {
  5806. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5807. }
  5808. KeyValueFloat: *111 {
  5809. a: -1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-2.356709,-2.45718,-2.276623,-1.8398,-1.221254,-0.7572937,-0.8226147,-1.093748,-1.106218,-1.119133,-1.164545,-1.246574,-1.451752,-1.859331,-2.271046,-2.494364,-2.432016,-2.307985,-2.366205,-2.450834,-2.356709,-1.187944,-1.178616,-1.174845,-1.17544,-1.179211,-1.184965,-1.191517,-1.19767,-1.202238,-1.204023,-1.205812,-1.207865,-1.210117,-1.212511,-1.214981,-1.217468,-1.219915,-1.222256,-1.224422,-1.22637,-1.22802,-1.229321,-1.2302,-1.2306,-1.230463,-1.229935,-1.22921,-1.228302,-1.227228,-1.225996,-1.224628,-1.223133,-1.221529,-1.21982,-1.218033,-1.216171,-1.214256,-1.212294,-1.210304,-1.208296,-1.206291,-1.204288,-1.20232,-1.200378,-1.19849,-1.196667,-1.194916,-1.193264,-1.191708,-1.190264,-1.188948,-1.187782,-1.186762,-1.185913,-1.185242,-1.1849,-1.185013,-1.185514,-1.186361,-1.187496,-1.188877,-1.190462,-1.192183,-1.194,-1.195862,-1.197718,-1.199509,-1.201193,-1.202715,-1.204023,-1.204023,-1.204025,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023,-1.204023
  5810. }
  5811. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5812. KeyAttrFlags: *1 {
  5813. a: 8456
  5814. }
  5815. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5816. KeyAttrDataFloat: *4 {
  5817. a: 0,0,218434821,0
  5818. }
  5819. KeyAttrRefCount: *1 {
  5820. a: 111
  5821. }
  5822. }
  5823. AnimationCurve: 2502501664, "AnimCurve::", "" {
  5824. Default: 0
  5825. KeyVer: 4008
  5826. KeyTime: *111 {
  5827. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5828. }
  5829. KeyValueFloat: *111 {
  5830. a: -3.886809,-3.886809,-3.886809,-3.886809,-3.886809,-3.886809,-3.886809,-3.886809,-3.886809,-3.886809,-3.886809,-3.318425,-3.11596,-2.857999,-2.118404,-1.152879,-0.3069944,0.07553482,0.2638426,0.1269102,-0.04119205,-0.2322283,-0.3348045,-0.6618843,-1.522236,-2.509789,-3.247804,-3.582481,-3.677975,-3.594854,-3.398281,-3.318425,-3.935082,-3.962998,-3.974263,-3.972485,-3.961218,-3.943999,-3.924373,-3.905905,-3.892183,-3.88681,-3.88799,-3.889355,-3.890856,-3.892452,-3.894096,-3.895745,-3.897354,-3.898881,-3.900284,-3.901521,-3.902547,-3.903323,-3.903806,-3.903953,-3.903723,-3.903213,-3.902554,-3.901757,-3.900832,-3.899789,-3.898641,-3.897395,-3.896063,-3.894655,-3.89318,-3.891651,-3.890076,-3.888468,-3.886836,-3.885191,-3.883546,-3.881909,-3.880294,-3.87871,-3.877169,-3.875681,-3.874261,-3.872917,-3.871663,-3.87051,-3.869468,-3.868551,-3.867769,-3.867134,-3.866659,-3.866497,-3.866766,-3.867413,-3.868389,-3.869648,-3.871135,-3.872806,-3.874606,-3.87649,-3.878407,-3.880308,-3.882147,-3.883875,-3.885445,-3.886809,-3.886809,-3.88681,-3.886811,-3.88681,-3.88681,-3.88681,-3.886809,-3.886809,-3.886809
  5831. }
  5832. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5833. KeyAttrFlags: *1 {
  5834. a: 8456
  5835. }
  5836. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5837. KeyAttrDataFloat: *4 {
  5838. a: 0,0,218434821,0
  5839. }
  5840. KeyAttrRefCount: *1 {
  5841. a: 111
  5842. }
  5843. }
  5844. AnimationCurve: 2502499264, "AnimCurve::", "" {
  5845. Default: 0
  5846. KeyVer: 4008
  5847. KeyTime: *111 {
  5848. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5849. }
  5850. KeyValueFloat: *111 {
  5851. a: 3.726994,3.726994,3.726994,3.726994,3.726994,3.726994,3.726994,3.726994,3.726994,3.726994,3.726994,3.726996,3.763216,3.989431,4.549771,5.003904,5.146894,5.081102,4.965838,4.922192,4.89003,4.862731,4.849303,4.793804,4.501425,3.900811,3.258947,3.064979,3.165776,3.319382,3.539662,3.726995,3.710728,3.701009,3.697024,3.697654,3.701637,3.707648,3.714396,3.720641,3.725217,3.726994,3.72518,3.723087,3.720783,3.718331,3.7158,3.713253,3.710757,3.708379,3.706182,3.704237,3.702605,3.701355,3.700552,3.700261,3.70055,3.701266,3.702203,3.703346,3.704679,3.706184,3.707848,3.709653,3.711584,3.713626,3.715763,3.717976,3.720253,3.722577,3.724931,3.7273,3.72967,3.732021,3.734341,3.736613,3.738822,3.74095,3.742982,3.744904,3.746699,3.748352,3.749845,3.751164,3.752294,3.753218,3.75392,3.754193,3.753883,3.753057,3.751781,3.750119,3.74814,3.74591,3.743496,3.740962,3.738376,3.735805,3.733314,3.730971,3.728842,3.726993,3.726993,3.726995,3.726994,3.726995,3.726995,3.726994,3.726994,3.726994,3.726994
  5852. }
  5853. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5854. KeyAttrFlags: *1 {
  5855. a: 8456
  5856. }
  5857. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5858. KeyAttrDataFloat: *4 {
  5859. a: 0,0,218434821,0
  5860. }
  5861. KeyAttrRefCount: *1 {
  5862. a: 111
  5863. }
  5864. }
  5865. AnimationCurve: 2502503744, "AnimCurve::", "" {
  5866. Default: 173.408386230469
  5867. KeyVer: 4008
  5868. KeyTime: *111 {
  5869. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5870. }
  5871. KeyValueFloat: *111 {
  5872. a: -6.591614,-6.593216,-6.593185,-6.593826,-6.593811,-6.593155,-6.59317,-6.59317,-6.593185,-6.593216,-6.59343,-5.421051,-6.494064,-6.192703,-0.01737976,7.200287,8.893219,5.569962,1.214233,-2.160202,-5.310577,-3.57869,-4.154968,-6.56308,-11.74622,-15.21185,-7.921036,-10.22374,-11.91556,-10.17828,-7.353378,-5.421051,-6.294327,-6.256638,-6.173004,-6.184357,-6.2715,-6.476242,-6.630554,-6.652344,-6.679947,11.68959,11.87985,12.06474,12.2442,12.41794,12.58546,12.7462,12.89937,13.04411,13.17944,13.30438,13.4178,13.51859,13.60559,13.67769,13.7337,13.776,13.80792,13.82974,13.84183,13.8445,13.8381,13.82297,13.7995,13.76805,13.72894,13.68262,13.62943,13.56979,13.50407,13.43269,13.35608,13.27493,13.18993,13.10175,13.01109,12.91866,12.82504,12.73094,12.63695,12.54367,12.45169,12.36159,12.27396,12.18929,12.10815,12.03352,11.96761,11.90976,11.85944,11.81609,11.77922,11.74843,11.72324,11.70331,11.68826,11.67778,11.67152,11.66917,11.67039,11.67485,11.67485,10.44456,9.003372,7.361237,5.524658,3.485291,1.197311,-1.503998,-6.591034
  5873. }
  5874. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5875. KeyAttrFlags: *1 {
  5876. a: 8456
  5877. }
  5878. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5879. KeyAttrDataFloat: *4 {
  5880. a: 0,0,218434821,0
  5881. }
  5882. KeyAttrRefCount: *1 {
  5883. a: 111
  5884. }
  5885. }
  5886. AnimationCurve: 2502504224, "AnimCurve::", "" {
  5887. Default: -14.1952095031738
  5888. KeyVer: 4008
  5889. KeyTime: *111 {
  5890. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5891. }
  5892. KeyValueFloat: *111 {
  5893. a: -165.8048,-165.8055,-165.8055,-165.8058,-165.8058,-165.8055,-165.8055,-165.8055,-165.8055,-165.8055,-165.8056,-182.1561,-184.1245,-181.2721,-178.3937,-181.3158,-188.1263,-191.5559,-193.1151,-190.8553,-189.0093,-188.014,-182.9516,-178.7338,-177.6721,-178.7136,-179.5536,-179.3776,-178.3837,-179.9131,-182.2696,-182.1561,-165.6887,-165.6762,-165.6527,-165.6584,-165.6876,-165.7622,-165.8116,-165.7981,-165.7702,-169.5629,-169.6668,-169.7475,-169.8072,-169.8486,-169.8739,-169.886,-169.8873,-169.8805,-169.8684,-169.8535,-169.8387,-169.8267,-169.8202,-169.822,-169.835,-169.8547,-169.8747,-169.8951,-169.9161,-169.9376,-169.9598,-169.9828,-170.0065,-170.0311,-170.0567,-170.0832,-170.1108,-170.1394,-170.1691,-170.1999,-170.2318,-170.2642,-170.2969,-170.3293,-170.361,-170.3915,-170.4204,-170.4472,-170.4715,-170.4927,-170.5104,-170.5242,-170.5336,-170.5381,-170.5373,-170.5238,-170.4923,-170.445,-170.3845,-170.3132,-170.2336,-170.1481,-170.0591,-169.9693,-169.881,-169.7967,-169.719,-169.6503,-169.5933,-169.5503,-169.5503,-168.3181,-167.1789,-166.1804,-165.3619,-164.7596,-164.4206,-164.4473,-165.8045
  5894. }
  5895. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5896. KeyAttrFlags: *1 {
  5897. a: 8456
  5898. }
  5899. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5900. KeyAttrDataFloat: *4 {
  5901. a: 0,0,218434821,0
  5902. }
  5903. KeyAttrRefCount: *1 {
  5904. a: 111
  5905. }
  5906. }
  5907. AnimationCurve: 2502499424, "AnimCurve::", "" {
  5908. Default: -173.739715576172
  5909. KeyVer: 4008
  5910. KeyTime: *111 {
  5911. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5912. }
  5913. KeyValueFloat: *111 {
  5914. a: 6.260284,6.266815,6.266724,6.269318,6.269287,6.266617,6.266632,6.266663,6.266724,6.266815,6.267654,-3.358871,-15.7121,-30.23137,-50.12421,-71.96386,-88.15942,-91.97771,-88.98009,-82.98814,-75.89069,-70.60868,-58.68545,-34.73691,-21.91045,-11.36491,-0.4709473,5.827087,8.366669,5.022202,-0.3097687,-3.358871,5.052109,4.8992,4.560013,4.605759,4.958893,5.790451,6.419617,6.50885,6.619858,-67.76595,-68.67593,-69.53006,-70.32909,-71.07364,-71.76408,-72.40104,-72.98489,-73.51617,-73.99515,-74.4222,-74.79765,-75.12186,-75.39497,-75.61736,-75.78928,-75.91554,-76.00203,-76.05054,-76.06297,-76.04115,-75.987,-75.90228,-75.78893,-75.64879,-75.48365,-75.2955,-75.08614,-74.85748,-74.61136,-74.34975,-74.07441,-73.78719,-73.48979,-73.18388,-72.8713,-72.55377,-72.23287,-71.91048,-71.58824,-71.26785,-70.95102,-70.63943,-70.33486,-70.03888,-69.75327,-69.48184,-69.22773,-68.99152,-68.7737,-68.57495,-68.39581,-68.23692,-68.09882,-67.98222,-67.8877,-67.81593,-67.76746,-67.74301,-67.74319,-67.76858,-67.7686,-61.35181,-54.55579,-47.4259,-39.95343,-32.04433,-23.43916,-13.38695,6.257874
  5915. }
  5916. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5917. KeyAttrFlags: *1 {
  5918. a: 8456
  5919. }
  5920. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5921. KeyAttrDataFloat: *4 {
  5922. a: 0,0,218434821,0
  5923. }
  5924. KeyAttrRefCount: *1 {
  5925. a: 111
  5926. }
  5927. }
  5928. AnimationCurve: 2502501344, "AnimCurve::", "" {
  5929. Default: 0
  5930. KeyVer: 4008
  5931. KeyTime: *111 {
  5932. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5933. }
  5934. KeyValueFloat: *111 {
  5935. a: 0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999998,1,0.9999999,0.9999999,1,0.9999999,0.9999998,0.9999996,1,1,0.9999999,1,1,0.9999998,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999998,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999998,0.9999998,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999998,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999998,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999
  5936. }
  5937. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5938. KeyAttrFlags: *1 {
  5939. a: 8456
  5940. }
  5941. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5942. KeyAttrDataFloat: *4 {
  5943. a: 0,0,218434821,0
  5944. }
  5945. KeyAttrRefCount: *1 {
  5946. a: 111
  5947. }
  5948. }
  5949. AnimationCurve: 2502501984, "AnimCurve::", "" {
  5950. Default: 0
  5951. KeyVer: 4008
  5952. KeyTime: *111 {
  5953. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5954. }
  5955. KeyValueFloat: *111 {
  5956. a: 1,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999996,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999998,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999998,0.9999999
  5957. }
  5958. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5959. KeyAttrFlags: *1 {
  5960. a: 8456
  5961. }
  5962. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5963. KeyAttrDataFloat: *4 {
  5964. a: 0,0,218434821,0
  5965. }
  5966. KeyAttrRefCount: *1 {
  5967. a: 111
  5968. }
  5969. }
  5970. AnimationCurve: 2502500544, "AnimCurve::", "" {
  5971. Default: 0
  5972. KeyVer: 4008
  5973. KeyTime: *111 {
  5974. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5975. }
  5976. KeyValueFloat: *111 {
  5977. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1
  5978. }
  5979. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  5980. KeyAttrFlags: *1 {
  5981. a: 8456
  5982. }
  5983. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  5984. KeyAttrDataFloat: *4 {
  5985. a: 0,0,218434821,0
  5986. }
  5987. KeyAttrRefCount: *1 {
  5988. a: 111
  5989. }
  5990. }
  5991. AnimationCurve: 2502500864, "AnimCurve::", "" {
  5992. Default: 0
  5993. KeyVer: 4008
  5994. KeyTime: *111 {
  5995. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  5996. }
  5997. KeyValueFloat: *111 {
  5998. a: 10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166
  5999. }
  6000. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6001. KeyAttrFlags: *1 {
  6002. a: 8456
  6003. }
  6004. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6005. KeyAttrDataFloat: *4 {
  6006. a: 0,0,218434821,0
  6007. }
  6008. KeyAttrRefCount: *1 {
  6009. a: 111
  6010. }
  6011. }
  6012. AnimationCurve: 2502501024, "AnimCurve::", "" {
  6013. Default: 0
  6014. KeyVer: 4008
  6015. KeyTime: *111 {
  6016. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6017. }
  6018. KeyValueFloat: *111 {
  6019. a: 1.788139e-007,1.192093e-007,-5.960464e-008,-1.192093e-007,5.960464e-008,-1.788139e-007,-3.576279e-007,-1.788139e-007,0,1.192093e-007,-1.192093e-007,9.536743e-007,0,2.384186e-007,0,-1.907349e-006,1.907349e-006,0,1.907349e-006,1.907349e-006,1.907349e-006,0,0,-2.384186e-007,-4.768372e-007,9.536743e-007,0,0,-1.907349e-006,0,1.907349e-006,-9.536743e-007,-5.960464e-008,1.192093e-007,0,-2.384186e-007,0,-1.788139e-007,0,-1.192093e-007,-1.192093e-007,0,0,-1.907349e-006,0,0,1.907349e-006,0,1.907349e-006,-1.907349e-006,0,0,0,0,-1.907349e-006,0,0,1.907349e-006,-1.907349e-006,1.907349e-006,0,1.907349e-006,1.907349e-006,1.907349e-006,-1.907349e-006,0,1.907349e-006,1.907349e-006,0,0,0,0,0,1.907349e-006,3.814697e-006,1.907349e-006,0,0,0,1.907349e-006,0,0,1.907349e-006,0,-1.907349e-006,1.907349e-006,0,1.907349e-006,0,0,0,1.907349e-006,0,1.907349e-006,1.907349e-006,0,1.907349e-006,0,0,0,0,0,0,1.907349e-006,1.907349e-006,1.907349e-006,0,0,-9.536743e-007,-4.768372e-007,-5.960464e-008
  6020. }
  6021. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6022. KeyAttrFlags: *1 {
  6023. a: 8456
  6024. }
  6025. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6026. KeyAttrDataFloat: *4 {
  6027. a: 0,0,218434821,0
  6028. }
  6029. KeyAttrRefCount: *1 {
  6030. a: 111
  6031. }
  6032. }
  6033. AnimationCurve: 2502511584, "AnimCurve::", "" {
  6034. Default: 0
  6035. KeyVer: 4008
  6036. KeyTime: *111 {
  6037. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6038. }
  6039. KeyValueFloat: *111 {
  6040. a: 0,9.536743e-007,9.536743e-007,0,0,1.907349e-006,9.536743e-007,0,0,9.536743e-007,0,9.536743e-007,8.34465e-007,1.192093e-007,-7.152557e-007,0,-4.768372e-007,4.768372e-007,0,4.768372e-007,-1.192093e-007,1.192093e-007,-2.384186e-007,-4.768372e-007,-4.768372e-007,4.768372e-007,4.768372e-007,0,0,4.768372e-007,-4.768372e-007,0,0,0,9.536743e-007,9.536743e-007,1.907349e-006,9.536743e-007,9.536743e-007,9.536743e-007,9.536743e-007,0,-9.536743e-007,9.536743e-007,0,0,9.536743e-007,0,0,0,0,0,0,0,9.536743e-007,0,0,0,0,0,9.536743e-007,0,-9.536743e-007,0,9.536743e-007,-9.536743e-007,0,0,0,9.536743e-007,0,0,0,9.536743e-007,9.536743e-007,0,0,0,0,0,-9.536743e-007,0,0,0,-9.536743e-007,0,0,0,0,0,0,0,9.536743e-007,0,9.536743e-007,0,0,0,0,0,-9.536743e-007,0,0,-1.907349e-006,-9.536743e-007,-9.536743e-007,0,0,0,0,0
  6041. }
  6042. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6043. KeyAttrFlags: *1 {
  6044. a: 8456
  6045. }
  6046. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6047. KeyAttrDataFloat: *4 {
  6048. a: 0,0,218434821,0
  6049. }
  6050. KeyAttrRefCount: *1 {
  6051. a: 111
  6052. }
  6053. }
  6054. AnimationCurve: 2502512064, "AnimCurve::", "" {
  6055. Default: -2.00103229985871e-007
  6056. KeyVer: 4008
  6057. KeyTime: *111 {
  6058. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6059. }
  6060. KeyValueFloat: *111 {
  6061. a: -2.001032e-007,5.069281e-007,-2.534641e-007,2.934847e-007,1.334021e-007,1.067217e-007,-5.202684e-007,-2.134434e-007,6.269901e-007,5.069281e-007,-9.471553e-007,2.134434e-007,1.707547e-006,-8.537735e-007,-4.268868e-007,-4.268868e-007,-4.268868e-007,-1.760908e-006,5.694604e-007,6.136498e-007,4.268868e-007,-2.401238e-007,-2.441259e-006,-2.988208e-006,-1.280661e-006,1.707547e-006,8.537738e-007,9.604953e-007,4.268868e-007,-1.120578e-006,0,-4.268869e-007,1.600825e-007,3.201652e-007,-3.735259e-007,-1.067217e-006,-5.336085e-008,-3.468455e-007,-2.134434e-007,1.200619e-007,2.668043e-007,4.268867e-007,-4.268869e-007,-4.268869e-007,4.268868e-007,-1.707547e-006,-1.28066e-006,1.707547e-006,4.268868e-007,4.268868e-007,-1.280661e-006,4.268869e-007,-4.268868e-007,2.561321e-006,2.134434e-006,-1.28066e-006,-4.268868e-007,-2.134434e-006,0,-4.268868e-007,-4.268868e-007,-4.268869e-007,1.707547e-006,0,-4.268869e-007,4.268868e-007,1.707547e-006,8.537737e-007,2.134434e-006,0,0,8.537737e-007,-1.707547e-006,8.537735e-007,1.28066e-006,-1.28066e-006,1.280661e-006,-1.28066e-006,-4.268868e-007,-1.28066e-006,1.280661e-006,4.268868e-007,4.268868e-007,2.988207e-006,0,-8.537737e-007,0,0,-8.537737e-007,0,-1.280661e-006,-1.707547e-006,-1.707547e-006,-1.28066e-006,2.134434e-006,-8.537736e-007,4.268868e-007,1.28066e-006,-1.707547e-006,0,0,-4.268868e-007,2.134434e-006,-8.537735e-007,0,1.707547e-006,1.707547e-006,8.537735e-007,-1.707547e-006,1.707547e-006,3.06825e-007
  6062. }
  6063. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6064. KeyAttrFlags: *1 {
  6065. a: 8456
  6066. }
  6067. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6068. KeyAttrDataFloat: *4 {
  6069. a: 0,0,218434821,0
  6070. }
  6071. KeyAttrRefCount: *1 {
  6072. a: 111
  6073. }
  6074. }
  6075. AnimationCurve: 2502506784, "AnimCurve::", "" {
  6076. Default: -0
  6077. KeyVer: 4008
  6078. KeyTime: *111 {
  6079. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6080. }
  6081. KeyValueFloat: *111 {
  6082. a: 0,2.561321e-006,-1.707547e-006,8.537737e-007,2.561321e-006,3.415094e-006,-2.561321e-006,-3.415094e-006,2.561321e-006,2.561321e-006,1.707548e-006,7.47052e-007,4.268869e-007,8.537736e-007,-2.134434e-006,1.780919e-006,-1.067217e-006,1.067217e-007,2.511295e-006,8.537737e-007,-1.28066e-006,4.268868e-007,-7.603922e-007,-2.134434e-006,8.537738e-007,-4.268868e-007,-2.134434e-007,-1.013856e-006,1.494104e-006,1.440743e-006,6.403303e-007,-4.268869e-007,-0,-4.268869e-006,-0,1.707547e-006,-1.707547e-006,-2.561321e-006,-4.268868e-006,1.707547e-006,3.415094e-006,-1.707547e-006,-0,-8.537737e-007,-8.537736e-007,8.537737e-007,-3.415094e-006,8.537738e-007,-8.537735e-007,-8.537736e-007,-1.707547e-006,-0,-8.537736e-007,-1.707547e-006,8.537737e-007,-8.537737e-007,8.537736e-007,0,1.707547e-006,-1.707547e-006,3.415094e-006,3.415095e-006,-8.537736e-007,-0,-1.707547e-006,-1.707547e-006,1.707547e-006,-2.561321e-006,-8.537735e-007,-0,2.561321e-006,-8.537736e-007,8.537736e-007,1.707547e-006,0,0,4.268869e-006,3.415094e-006,-8.537738e-007,-8.537737e-007,-2.561321e-006,-1.707547e-006,3.415094e-006,-2.561321e-006,-3.415094e-006,8.537737e-007,2.561321e-006,1.707547e-006,2.561321e-006,-8.537737e-007,1.707547e-006,0,8.537735e-007,-8.537737e-007,-2.561321e-006,-2.561321e-006,-0,-8.537738e-007,-1.707547e-006,1.707547e-006,1.707547e-006,1.707547e-006,-4.268868e-006,8.537734e-007,1.707547e-006,8.537738e-007,-3.415094e-006,-2.561321e-006,-8.537737e-007,-3.415095e-006,1.707547e-006
  6083. }
  6084. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6085. KeyAttrFlags: *1 {
  6086. a: 8456
  6087. }
  6088. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6089. KeyAttrDataFloat: *4 {
  6090. a: 0,0,218434821,0
  6091. }
  6092. KeyAttrRefCount: *1 {
  6093. a: 111
  6094. }
  6095. }
  6096. AnimationCurve: 2502512384, "AnimCurve::", "" {
  6097. Default: -0.195833802223206
  6098. KeyVer: 4008
  6099. KeyTime: *111 {
  6100. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6101. }
  6102. KeyValueFloat: *111 {
  6103. a: -0.1958338,-0.1802328,-0.1802325,-0.1735985,-0.173595,-0.1802309,-0.1802368,-0.1802357,-0.1802309,-0.1802328,-0.1802385,-77.75162,-115.9112,-133.8048,-129.766,-115.0529,-97.79963,-77.04769,-54.7453,-35.90594,-22.14847,-28.49823,-56.31689,-47.38958,-33.52752,-13.64738,-0.1453756,-2.546234,-12.84196,-37.12385,-65.48255,-77.75162,-2.850196,-3.209016,-3.886407,-3.802406,-3.106272,-1.379848,-0.1453762,-0.1453725,-0.1453716,-98.60636,-99.07137,-99.49413,-99.87858,-100.2282,-100.5459,-100.8344,-101.0963,-101.3334,-101.5475,-101.7403,-101.913,-102.0667,-102.2023,-102.3205,-102.422,-102.5077,-102.5787,-102.6355,-102.6786,-102.7086,-102.7258,-102.7305,-102.7228,-102.7032,-102.6716,-102.6283,-102.5735,-102.5072,-102.4296,-102.3409,-102.2412,-102.1312,-102.0117,-101.8832,-101.7466,-101.6027,-101.4523,-101.2962,-101.1354,-100.9707,-100.803,-100.6334,-100.4629,-100.2925,-100.1233,-99.95818,-99.79959,-99.64802,-99.50387,-99.36785,-99.24046,-99.1225,-99.01453,-98.91739,-98.83187,-98.7588,-98.69889,-98.65302,-98.62196,-98.60638,-98.60637,-94.84328,-89.8623,-83.55455,-75.77238,-66.24784,-54.39166,-38.53368,-0.2017495
  6104. }
  6105. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6106. KeyAttrFlags: *1 {
  6107. a: 8456
  6108. }
  6109. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6110. KeyAttrDataFloat: *4 {
  6111. a: 0,0,218434821,0
  6112. }
  6113. KeyAttrRefCount: *1 {
  6114. a: 111
  6115. }
  6116. }
  6117. AnimationCurve: 2502507584, "AnimCurve::", "" {
  6118. Default: 0
  6119. KeyVer: 4008
  6120. KeyTime: *111 {
  6121. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6122. }
  6123. KeyValueFloat: *111 {
  6124. a: 1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999998,1,0.9999999,1,0.9999998,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999998,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1
  6125. }
  6126. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6127. KeyAttrFlags: *1 {
  6128. a: 8456
  6129. }
  6130. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6131. KeyAttrDataFloat: *4 {
  6132. a: 0,0,218434821,0
  6133. }
  6134. KeyAttrRefCount: *1 {
  6135. a: 111
  6136. }
  6137. }
  6138. AnimationCurve: 2502509024, "AnimCurve::", "" {
  6139. Default: 0
  6140. KeyVer: 4008
  6141. KeyTime: *111 {
  6142. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6143. }
  6144. KeyValueFloat: *111 {
  6145. a: 0.9999998,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999998,0.9999998,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999998,1,0.9999999,1,1,1,1,0.9999999,0.9999998,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999998
  6146. }
  6147. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6148. KeyAttrFlags: *1 {
  6149. a: 8456
  6150. }
  6151. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6152. KeyAttrDataFloat: *4 {
  6153. a: 0,0,218434821,0
  6154. }
  6155. KeyAttrRefCount: *1 {
  6156. a: 111
  6157. }
  6158. }
  6159. AnimationCurve: 2502512544, "AnimCurve::", "" {
  6160. Default: 0
  6161. KeyVer: 4008
  6162. KeyTime: *111 {
  6163. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6164. }
  6165. KeyValueFloat: *111 {
  6166. a: 1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1
  6167. }
  6168. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6169. KeyAttrFlags: *1 {
  6170. a: 8456
  6171. }
  6172. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6173. KeyAttrDataFloat: *4 {
  6174. a: 0,0,218434821,0
  6175. }
  6176. KeyAttrRefCount: *1 {
  6177. a: 111
  6178. }
  6179. }
  6180. AnimationCurve: 2363402112, "AnimCurve::", "" {
  6181. Default: 0
  6182. KeyVer: 4008
  6183. KeyTime: *111 {
  6184. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6185. }
  6186. KeyValueFloat: *111 {
  6187. a: 8.100964,8.100967,8.100965,8.100966,8.100965,8.100965,8.100966,8.100967,8.100965,8.100967,8.100964,8.100965,8.100965,8.100965,8.100966,8.100965,8.100969,8.100965,8.100965,8.100964,8.100964,8.100965,8.100965,8.100965,8.100965,8.100964,8.100965,8.100963,8.100965,8.100965,8.100965,8.100965,8.100965,8.100967,8.100966,8.100964,8.100964,8.100968,8.100964,8.100964,8.100965,8.100964,8.100965,8.100964,8.100967,8.100964,8.100965,8.100966,8.100966,8.100965,8.100964,8.100964,8.100964,8.100966,8.100965,8.100966,8.100965,8.100965,8.100965,8.100965,8.100964,8.100965,8.100966,8.100964,8.100965,8.100965,8.100965,8.100965,8.100966,8.100963,8.100965,8.100966,8.100966,8.100967,8.100965,8.100965,8.100966,8.100967,8.100964,8.100965,8.100965,8.100964,8.100966,8.100965,8.100965,8.100965,8.100965,8.100963,8.100964,8.100965,8.100964,8.100965,8.100964,8.100965,8.100965,8.100964,8.100964,8.100965,8.100966,8.100966,8.100965,8.100964,8.100967,8.100966,8.100967,8.100965,8.100964,8.100967,8.100964,8.100964,8.100965
  6188. }
  6189. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6190. KeyAttrFlags: *1 {
  6191. a: 8456
  6192. }
  6193. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6194. KeyAttrDataFloat: *4 {
  6195. a: 0,0,218434821,0
  6196. }
  6197. KeyAttrRefCount: *1 {
  6198. a: 111
  6199. }
  6200. }
  6201. AnimationCurve: 2363405632, "AnimCurve::", "" {
  6202. Default: 0
  6203. KeyVer: 4008
  6204. KeyTime: *111 {
  6205. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6206. }
  6207. KeyValueFloat: *111 {
  6208. a: 2.384186e-007,-4.768372e-007,5.364418e-007,5.960464e-008,-5.960464e-008,2.384186e-007,5.364418e-007,-2.980232e-007,1.192093e-007,-4.768372e-007,1.192093e-007,0,-4.768372e-007,-1.907349e-006,0,-9.536743e-007,4.768372e-007,-9.536743e-007,0,0,-1.907349e-006,1.907349e-006,-4.768372e-007,0,0,-1.907349e-006,0,0,0,0,0,0,8.940697e-008,-8.940697e-008,1.192093e-007,-2.682209e-007,3.278255e-007,2.682209e-007,1.490116e-007,0,1.192093e-007,0,-9.536743e-007,-9.536743e-007,4.768372e-007,4.768372e-007,-1.430511e-006,-4.768372e-007,0,-4.768372e-007,4.768372e-007,1.430511e-006,0,-9.536743e-007,-9.536743e-007,-4.768372e-007,0,-4.768372e-007,-4.768372e-007,0,0,-9.536743e-007,4.768372e-007,1.430511e-006,4.768372e-007,4.768372e-007,9.536743e-007,0,0,-4.768372e-007,-1.907349e-006,4.768372e-007,-9.536743e-007,-9.536743e-007,9.536743e-007,-4.768372e-007,0,-4.768372e-007,-9.536743e-007,-4.768372e-007,-4.768372e-007,0,0,0,9.536743e-007,4.768372e-007,9.536743e-007,9.536743e-007,-1.430511e-006,0,4.768372e-007,-1.430511e-006,9.536743e-007,4.768372e-007,-4.768372e-007,9.536743e-007,4.768372e-007,-9.536743e-007,9.536743e-007,4.768372e-007,0,4.768372e-007,-9.536743e-007,-1.430511e-006,4.768372e-007,-4.768372e-007,4.768372e-007,4.768372e-007,-4.768372e-007,-9.536743e-007,0
  6209. }
  6210. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6211. KeyAttrFlags: *1 {
  6212. a: 8456
  6213. }
  6214. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6215. KeyAttrDataFloat: *4 {
  6216. a: 0,0,218434821,0
  6217. }
  6218. KeyAttrRefCount: *1 {
  6219. a: 111
  6220. }
  6221. }
  6222. AnimationCurve: 2363406432, "AnimCurve::", "" {
  6223. Default: 0
  6224. KeyVer: 4008
  6225. KeyTime: *111 {
  6226. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6227. }
  6228. KeyValueFloat: *111 {
  6229. a: 0,0,-1.907349e-006,0,-9.536743e-007,-1.907349e-006,-1.907349e-006,0,-9.536743e-007,0,1.907349e-006,-2.384186e-007,2.384186e-007,-3.576279e-007,4.768372e-007,0,0,-9.536743e-007,-4.768372e-007,-4.768372e-007,-2.384186e-007,-5.960464e-007,2.384186e-007,4.768372e-007,0,0,4.768372e-007,0,4.768372e-007,0,2.384186e-007,0,-9.536743e-007,-9.536743e-007,0,-1.907349e-006,0,-1.907349e-006,-9.536743e-007,-9.536743e-007,-1.907349e-006,-9.536743e-007,0,-1.907349e-006,0,-9.536743e-007,-9.536743e-007,0,-1.907349e-006,-9.536743e-007,-2.861023e-006,-9.536743e-007,0,0,-9.536743e-007,0,-9.536743e-007,0,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,0,-9.536743e-007,-1.907349e-006,-9.536743e-007,0,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,-1.907349e-006,-9.536743e-007,0,-9.536743e-007,-9.536743e-007,-9.536743e-007,-9.536743e-007,0,0,0,-1.907349e-006,0,-9.536743e-007,-9.536743e-007,0,-1.907349e-006,0,0,-9.536743e-007,0,-1.907349e-006,0,1.907349e-006,0,0,0,0,9.536743e-007,0,9.536743e-007,-9.536743e-007,9.536743e-007,0,0,-9.536743e-007,-1.907349e-006,0
  6230. }
  6231. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6232. KeyAttrFlags: *1 {
  6233. a: 8456
  6234. }
  6235. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6236. KeyAttrDataFloat: *4 {
  6237. a: 0,0,218434821,0
  6238. }
  6239. KeyAttrRefCount: *1 {
  6240. a: 111
  6241. }
  6242. }
  6243. AnimationCurve: 2363405952, "AnimCurve::", "" {
  6244. Default: -2.9114716053009
  6245. KeyVer: 4008
  6246. KeyTime: *111 {
  6247. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6248. }
  6249. KeyValueFloat: *111 {
  6250. a: -2.911472,-2.911476,-2.911477,-2.911477,-2.911477,-2.911479,-2.911476,-2.911476,-2.911477,-2.911476,-2.91147,2.713884,2.983583,3.226345,0.5173188,-2.250365,-3.374434,-3.139917,-2.359622,-0.9966012,1.384424,2.337515,8.226456,12.22937,12.6334,10.54086,3.238687,1.533789,1.147962,1.464165,1.532188,2.713885,-2.911296,-2.911214,-2.91106,-2.911066,-2.911179,-2.911397,-2.911715,-2.91212,-2.912344,-2.911422,-2.953705,-2.994233,-3.033129,-3.070634,-3.107099,-3.142933,-3.178612,-3.214658,-3.251678,-3.290235,-3.330943,-3.374446,-3.421338,-3.472226,-3.527717,-3.58624,-3.645593,-3.705485,-3.765481,-3.825194,-3.884225,-3.942105,-3.99835,-4.05252,-4.104089,-4.152525,-4.197316,-4.237869,-4.273656,-4.304067,-4.328641,-4.347246,-4.359962,-4.366766,-4.367718,-4.36286,-4.352278,-4.336027,-4.314207,-4.286921,-4.254352,-4.21663,-4.173913,-4.12641,-4.074303,-4.015963,-3.950297,-3.878329,-3.801137,-3.719704,-3.635095,-3.548301,-3.460337,-3.372171,-3.28481,-3.199237,-3.11641,-3.03729,-2.962841,-2.894046,-2.894028,-2.894988,-2.896467,-2.898394,-2.900669,-2.903219,-2.905925,-2.908703,-2.911472
  6251. }
  6252. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6253. KeyAttrFlags: *1 {
  6254. a: 8456
  6255. }
  6256. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6257. KeyAttrDataFloat: *4 {
  6258. a: 0,0,218434821,0
  6259. }
  6260. KeyAttrRefCount: *1 {
  6261. a: 111
  6262. }
  6263. }
  6264. AnimationCurve: 2363400512, "AnimCurve::", "" {
  6265. Default: -14.7378377914429
  6266. KeyVer: 4008
  6267. KeyTime: *111 {
  6268. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6269. }
  6270. KeyValueFloat: *111 {
  6271. a: -14.73784,-14.73785,-14.73785,-14.73786,-14.73786,-14.73786,-14.73786,-14.73785,-14.73785,-14.73785,-14.73784,-3.054681,-3.167085,-3.38864,-4.397309,-3.852491,-2.486718,-1.434144,-0.1438488,0.8302917,0.720373,4.571092,0.5549587,-5.300956,-7.003321,-6.915455,-2.685733,-1.215108,0.1151398,0.1690128,-1.099693,-3.05468,-14.72181,-14.71801,-14.70584,-14.70487,-14.71303,-14.72836,-14.74884,-14.77226,-14.81245,-14.73793,-14.77449,-14.81808,-14.86754,-14.9217,-14.97938,-15.03946,-15.10081,-15.1623,-15.2228,-15.28126,-15.33657,-15.38763,-15.43339,-15.47276,-15.50465,-15.53063,-15.553,-15.57168,-15.58666,-15.59785,-15.60522,-15.6087,-15.60828,-15.60389,-15.59549,-15.58305,-15.56655,-15.54599,-15.52134,-15.49261,-15.45989,-15.42353,-15.38396,-15.34162,-15.29696,-15.25043,-15.20245,-15.15351,-15.10404,-15.05448,-15.00527,-14.95686,-14.90969,-14.86419,-14.82077,-14.78261,-14.75212,-14.72862,-14.71143,-14.69984,-14.69313,-14.69059,-14.69143,-14.69494,-14.70031,-14.70676,-14.71351,-14.71974,-14.72464,-14.7274,-14.7274,-14.72988,-14.7321,-14.734,-14.73552,-14.73662,-14.73736,-14.73773,-14.73783
  6272. }
  6273. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6274. KeyAttrFlags: *1 {
  6275. a: 8456
  6276. }
  6277. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6278. KeyAttrDataFloat: *4 {
  6279. a: 0,0,218434821,0
  6280. }
  6281. KeyAttrRefCount: *1 {
  6282. a: 111
  6283. }
  6284. }
  6285. AnimationCurve: 2363407232, "AnimCurve::", "" {
  6286. Default: 0.722466945648193
  6287. KeyVer: 4008
  6288. KeyTime: *111 {
  6289. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6290. }
  6291. KeyValueFloat: *111 {
  6292. a: 0.7224669,0.7132431,0.713153,0.7090568,0.709017,0.7130458,0.7130663,0.7131029,0.7131612,0.7132431,0.7140737,-10.44399,-3.919149,2.573184,1.372372,-2.136285,-5.806277,-10.5287,-12.92946,-6.52304,0.8110626,-2.160226,33.61139,45.16008,36.94481,19.47265,-19.94844,-23.51874,-19.41552,-17.45403,-14.75475,-10.44399,2.200207,2.410345,2.758444,2.719138,2.366319,1.449133,0.8263065,0.9107676,1.014474,26.99973,26.59882,26.21818,25.8595,25.52411,25.21301,24.92682,24.66592,24.43021,24.21957,24.03352,23.87133,23.73214,23.61497,23.51847,23.44133,23.38367,23.34603,23.32763,23.32741,23.34438,23.37737,23.42525,23.4867,23.5605,23.64528,23.73966,23.84239,23.95189,24.06689,24.18593,24.30777,24.43154,24.55662,24.6824,24.80818,24.93344,25.05761,25.18013,25.30057,25.41846,25.53343,25.64508,25.7531,25.85728,25.95722,26.05664,26.15812,26.26002,26.36081,26.45903,26.55316,26.64188,26.72373,26.79741,26.86161,26.91507,26.95649,26.98452,26.99789,26.99523,26.99521,29.64904,31.40639,32.10835,31.61572,29.75688,26.20353,20.02896,0.7260479
  6293. }
  6294. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6295. KeyAttrFlags: *1 {
  6296. a: 8456
  6297. }
  6298. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6299. KeyAttrDataFloat: *4 {
  6300. a: 0,0,218434821,0
  6301. }
  6302. KeyAttrRefCount: *1 {
  6303. a: 111
  6304. }
  6305. }
  6306. AnimationCurve: 2363401632, "AnimCurve::", "" {
  6307. Default: 0
  6308. KeyVer: 4008
  6309. KeyTime: *111 {
  6310. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6311. }
  6312. KeyValueFloat: *111 {
  6313. a: 0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999998,1,0.9999998,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999998,1,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,1,0.9999998,0.9999999,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999998
  6314. }
  6315. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6316. KeyAttrFlags: *1 {
  6317. a: 8456
  6318. }
  6319. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6320. KeyAttrDataFloat: *4 {
  6321. a: 0,0,218434821,0
  6322. }
  6323. KeyAttrRefCount: *1 {
  6324. a: 111
  6325. }
  6326. }
  6327. AnimationCurve: 2363406112, "AnimCurve::", "" {
  6328. Default: 0
  6329. KeyVer: 4008
  6330. KeyTime: *111 {
  6331. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6332. }
  6333. KeyValueFloat: *111 {
  6334. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999998,1,1,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,0.9999998,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999998,1,0.9999999,1,1,0.9999998,1,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999998,1,0.9999999,0.9999999,0.9999998,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999998,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999998,0.9999998,1,1,0.9999999,1,0.9999999,0.9999999
  6335. }
  6336. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6337. KeyAttrFlags: *1 {
  6338. a: 8456
  6339. }
  6340. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6341. KeyAttrDataFloat: *4 {
  6342. a: 0,0,218434821,0
  6343. }
  6344. KeyAttrRefCount: *1 {
  6345. a: 111
  6346. }
  6347. }
  6348. AnimationCurve: 2363404352, "AnimCurve::", "" {
  6349. Default: 0
  6350. KeyVer: 4008
  6351. KeyTime: *111 {
  6352. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6353. }
  6354. KeyValueFloat: *111 {
  6355. a: 0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,1,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,1,0.9999998,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999998
  6356. }
  6357. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6358. KeyAttrFlags: *1 {
  6359. a: 8456
  6360. }
  6361. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6362. KeyAttrDataFloat: *4 {
  6363. a: 0,0,218434821,0
  6364. }
  6365. KeyAttrRefCount: *1 {
  6366. a: 111
  6367. }
  6368. }
  6369. AnimationCurve: 2363402592, "AnimCurve::", "" {
  6370. Default: 0
  6371. KeyVer: 4008
  6372. KeyTime: *111 {
  6373. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6374. }
  6375. KeyValueFloat: *111 {
  6376. a: 4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.137679,4.13768,4.137682,4.137678,4.137678,4.13768,4.13768,4.137681,4.137681,4.13768,4.13768,4.13768,4.13768,4.137679,4.13768,4.137679,4.137679,4.13768,4.137681,4.13768,4.13768,4.13768,4.13768,4.137679,4.137679,4.13768,4.137679,4.137679,4.13768,4.13768,4.137679,4.13768,4.137681,4.137681,4.13768,4.137681,4.13768,4.137681,4.137681,4.137682,4.13768,4.13768,4.137681,4.137679,4.137681,4.137682,4.137681,4.137679,4.13768,4.137681,4.137682,4.13768,4.137682,4.137681,4.137679,4.13768,4.13768,4.137681,4.137681,4.137681,4.13768,4.13768,4.137682,4.13768,4.137681,4.13768,4.137681,4.137681,4.137679,4.137681,4.137682,4.137681,4.137681,4.137679,4.137681,4.137681,4.137682,4.13768,4.137681,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.137681,4.13768,4.137681,4.13768,4.137681,4.137679,4.13768,4.137681,4.137681,4.137679,4.137679,4.13768,4.13768,4.137679,4.137679,4.13768
  6377. }
  6378. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6379. KeyAttrFlags: *1 {
  6380. a: 8456
  6381. }
  6382. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6383. KeyAttrDataFloat: *4 {
  6384. a: 0,0,218434821,0
  6385. }
  6386. KeyAttrRefCount: *1 {
  6387. a: 111
  6388. }
  6389. }
  6390. AnimationCurve: 2363400832, "AnimCurve::", "" {
  6391. Default: 0
  6392. KeyVer: 4008
  6393. KeyTime: *111 {
  6394. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6395. }
  6396. KeyValueFloat: *111 {
  6397. a: 5.266968,5.266968,5.266968,5.266968,5.266968,5.266968,5.266968,5.266968,5.266967,5.266968,5.266967,5.266969,5.266968,5.26697,5.266967,5.266969,5.266968,5.266968,5.266969,5.266968,5.266971,5.266967,5.266969,5.266968,5.266968,5.266967,5.266968,5.266968,5.266967,5.266966,5.266969,5.266969,5.266967,5.266968,5.266968,5.266967,5.266968,5.266968,5.266968,5.266968,5.266967,5.266968,5.266967,5.266968,5.266966,5.266967,5.266968,5.266968,5.266969,5.266968,5.266969,5.266968,5.266968,5.266967,5.266969,5.266969,5.266969,5.266967,5.266967,5.266968,5.266969,5.266967,5.266968,5.266968,5.266967,5.266968,5.266969,5.266968,5.266969,5.266968,5.266968,5.266967,5.266968,5.266968,5.266967,5.266968,5.266969,5.266968,5.266968,5.266969,5.26697,5.266967,5.266968,5.266968,5.266969,5.266967,5.266968,5.266968,5.266967,5.266968,5.266967,5.266966,5.266967,5.266968,5.266968,5.266967,5.266967,5.266967,5.266967,5.266969,5.266967,5.266968,5.266969,5.266967,5.266969,5.266968,5.266969,5.266968,5.266969,5.266968,5.266969
  6398. }
  6399. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6400. KeyAttrFlags: *1 {
  6401. a: 8456
  6402. }
  6403. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6404. KeyAttrDataFloat: *4 {
  6405. a: 0,0,218434821,0
  6406. }
  6407. KeyAttrRefCount: *1 {
  6408. a: 111
  6409. }
  6410. }
  6411. AnimationCurve: 2363400992, "AnimCurve::", "" {
  6412. Default: 0
  6413. KeyVer: 4008
  6414. KeyTime: *111 {
  6415. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6416. }
  6417. KeyValueFloat: *111 {
  6418. a: 0,0,1.907349e-006,9.536743e-007,9.536743e-007,1.907349e-006,9.536743e-007,9.536743e-007,1.907349e-006,0,9.536743e-007,0,-2.384186e-007,0,2.384186e-007,4.768372e-007,-9.536743e-007,0,0,2.384186e-007,5.960464e-007,-7.152557e-007,-2.384186e-007,-2.384186e-007,9.536743e-007,0,-4.768372e-007,-4.768372e-007,-9.536743e-007,0,-7.152557e-007,-4.768372e-007,9.536743e-007,0,9.536743e-007,9.536743e-007,0,0,0,-9.536743e-007,9.536743e-007,0,4.768372e-007,4.768372e-007,9.536743e-007,9.536743e-007,0,9.536743e-007,9.536743e-007,1.430511e-006,-9.536743e-007,-9.536743e-007,1.430511e-006,9.536743e-007,9.536743e-007,9.536743e-007,0,4.768372e-007,4.768372e-007,4.768372e-007,4.768372e-007,9.536743e-007,9.536743e-007,1.430511e-006,1.907349e-006,4.768372e-007,9.536743e-007,9.536743e-007,-4.768372e-007,-9.536743e-007,9.536743e-007,4.768372e-007,1.430511e-006,1.430511e-006,0,1.430511e-006,-4.768372e-007,9.536743e-007,1.430511e-006,-4.768372e-007,4.768372e-007,1.430511e-006,2.384186e-006,0,-4.768372e-007,-4.768372e-007,-4.768372e-007,0,0,-4.768372e-007,0,4.768372e-007,9.536743e-007,0,4.768372e-007,-1.907349e-006,4.768372e-007,0,0,-9.536743e-007,0,-4.768372e-007,-1.430511e-006,-2.384186e-006,1.430511e-006,-4.768372e-007,0,0,0,-9.536743e-007,-1.907349e-006
  6419. }
  6420. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6421. KeyAttrFlags: *1 {
  6422. a: 8456
  6423. }
  6424. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6425. KeyAttrDataFloat: *4 {
  6426. a: 0,0,218434821,0
  6427. }
  6428. KeyAttrRefCount: *1 {
  6429. a: 111
  6430. }
  6431. }
  6432. AnimationCurve: 2363406592, "AnimCurve::", "" {
  6433. Default: -1.63066399097443
  6434. KeyVer: 4008
  6435. KeyTime: *111 {
  6436. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6437. }
  6438. KeyValueFloat: *111 {
  6439. a: -1.630664,-1.630665,-1.630665,-1.630657,-1.630657,-1.630665,-1.630657,-1.630657,-1.630665,-1.630665,-1.630673,-1.630658,-1.585219,-1.547724,-1.557232,-1.556534,-1.546335,-1.115131,-0.6818213,1.16049,3.076451,0.1232103,-1.655207,-2.512798,-1.210382,-0.05751156,-6.205772,-4.964217,-3.599167,-3.199249,-2.21133,-1.630657,-1.630663,-1.630666,-1.63066,-1.630665,-1.630659,-1.630659,-1.63066,-1.630665,-1.630652,-1.630626,-1.630632,-1.63064,-1.630635,-1.630643,-1.630635,-1.630652,-1.630648,-1.630644,-1.630651,-1.630645,-1.63065,-1.630648,-1.630655,-1.630659,-1.630655,-1.630657,-1.630661,-1.630669,-1.630662,-1.630667,-1.630674,-1.630672,-1.630674,-1.630672,-1.630679,-1.630679,-1.630674,-1.63068,-1.630674,-1.630689,-1.630681,-1.630684,-1.63068,-1.630691,-1.63069,-1.630682,-1.630705,-1.630698,-1.63071,-1.630705,-1.630703,-1.630712,-1.630715,-1.630709,-1.630717,-1.630721,-1.630722,-1.630722,-1.630723,-1.630731,-1.630723,-1.630727,-1.630735,-1.630733,-1.630733,-1.630733,-1.630736,-1.630731,-1.630734,-1.63073,-1.630742,-1.630721,-1.630727,-1.630706,-1.630696,-1.630691,-1.630684,-1.63068,-1.630669
  6440. }
  6441. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6442. KeyAttrFlags: *1 {
  6443. a: 8456
  6444. }
  6445. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6446. KeyAttrDataFloat: *4 {
  6447. a: 0,0,218434821,0
  6448. }
  6449. KeyAttrRefCount: *1 {
  6450. a: 111
  6451. }
  6452. }
  6453. AnimationCurve: 2363401952, "AnimCurve::", "" {
  6454. Default: 0.130951672792435
  6455. KeyVer: 4008
  6456. KeyTime: *111 {
  6457. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6458. }
  6459. KeyValueFloat: *111 {
  6460. a: 0.1309517,0.1309627,0.1309627,0.130968,0.130968,0.1309627,0.130968,0.130968,0.1309627,0.1309627,0.1309682,0.1309626,-1.45437,-3.039904,-2.940203,-2.740014,-2.640384,-1.965566,-1.292213,4.099047,9.469153,-0.1593903,-1.197304,-3.035305,1.32086,5.428267,1.243004,2.164756,2.892735,2.140414,0.7542147,0.1309626,0.1309696,0.1309861,0.1309808,0.1309865,0.1309946,0.1309946,0.1309808,0.1309803,0.1309927,0.131005,0.1310042,0.1310057,0.1310138,0.1309841,0.1309998,0.1309942,0.1309937,0.1309836,0.1309835,0.130983,0.1309934,0.1309799,0.1309788,0.1309914,0.1309851,0.1309753,0.13098,0.1309896,0.130987,0.1309794,0.1309994,0.1309996,0.1309876,0.1309787,0.1309775,0.131012,0.1310095,0.1310086,0.1310089,0.130989,0.1310146,0.1310106,0.1310045,0.1310096,0.1310202,0.131001,0.1309974,0.1309981,0.1310025,0.1310202,0.131007,0.1310024,0.1310017,0.1310159,0.1310153,0.1310079,0.1310072,0.1310212,0.1310167,0.1310329,0.131025,0.1310341,0.1310119,0.1310124,0.1310127,0.1309986,0.1310042,0.1310062,0.1309878,0.1310064,0.1310322,0.1310353,0.1310129,0.1310169,0.1310087,0.1309772,0.1309695,0.1309595,0.1309543
  6461. }
  6462. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6463. KeyAttrFlags: *1 {
  6464. a: 8456
  6465. }
  6466. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6467. KeyAttrDataFloat: *4 {
  6468. a: 0,0,218434821,0
  6469. }
  6470. KeyAttrRefCount: *1 {
  6471. a: 111
  6472. }
  6473. }
  6474. AnimationCurve: 2363402272, "AnimCurve::", "" {
  6475. Default: 80.1733474731445
  6476. KeyVer: 4008
  6477. KeyTime: *111 {
  6478. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6479. }
  6480. KeyValueFloat: *111 {
  6481. a: 80.17335,80.17333,80.17333,80.17335,80.17335,80.17333,80.17335,80.17335,80.17333,80.17333,80.17332,80.17333,80.46178,80.74928,84.50933,92.0284,95.78745,95.97889,96.17535,96.73225,97.47056,87.27535,87.56059,88.19307,94.92729,104.163,83.15992,91.65706,100.1775,95.18237,85.18147,80.17333,80.17332,80.17334,80.17335,80.17334,80.17335,80.17335,80.17335,80.17335,80.17334,80.17335,80.17335,80.17335,80.17336,80.17336,80.17336,80.17335,80.17334,80.17336,80.17336,80.17336,80.17337,80.17336,80.17337,80.17336,80.17336,80.17338,80.17338,80.17337,80.17338,80.17339,80.17338,80.17338,80.17339,80.17338,80.1734,80.17339,80.17339,80.1734,80.17339,80.17339,80.17339,80.1734,80.17339,80.1734,80.17341,80.1734,80.1734,80.17341,80.17339,80.1734,80.1734,80.17342,80.17342,80.17341,80.1734,80.17341,80.17341,80.17342,80.17343,80.17343,80.17343,80.17342,80.17342,80.17343,80.17342,80.17345,80.17343,80.17345,80.17344,80.17344,80.17344,80.17342,80.17342,80.17341,80.17341,80.17339,80.17338,80.17335,80.17333
  6482. }
  6483. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6484. KeyAttrFlags: *1 {
  6485. a: 8456
  6486. }
  6487. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6488. KeyAttrDataFloat: *4 {
  6489. a: 0,0,218434821,0
  6490. }
  6491. KeyAttrRefCount: *1 {
  6492. a: 111
  6493. }
  6494. }
  6495. AnimationCurve: 2363404032, "AnimCurve::", "" {
  6496. Default: 0
  6497. KeyVer: 4008
  6498. KeyTime: *111 {
  6499. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6500. }
  6501. KeyValueFloat: *111 {
  6502. a: 1,1,1,1,1,1,1,1,1,1,0.9999998,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1
  6503. }
  6504. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6505. KeyAttrFlags: *1 {
  6506. a: 8456
  6507. }
  6508. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6509. KeyAttrDataFloat: *4 {
  6510. a: 0,0,218434821,0
  6511. }
  6512. KeyAttrRefCount: *1 {
  6513. a: 111
  6514. }
  6515. }
  6516. AnimationCurve: 2363402752, "AnimCurve::", "" {
  6517. Default: 0
  6518. KeyVer: 4008
  6519. KeyTime: *111 {
  6520. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6521. }
  6522. KeyValueFloat: *111 {
  6523. a: 1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,0.9999998,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1
  6524. }
  6525. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6526. KeyAttrFlags: *1 {
  6527. a: 8456
  6528. }
  6529. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6530. KeyAttrDataFloat: *4 {
  6531. a: 0,0,218434821,0
  6532. }
  6533. KeyAttrRefCount: *1 {
  6534. a: 111
  6535. }
  6536. }
  6537. AnimationCurve: 2363404672, "AnimCurve::", "" {
  6538. Default: 0
  6539. KeyVer: 4008
  6540. KeyTime: *111 {
  6541. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6542. }
  6543. KeyValueFloat: *111 {
  6544. a: 1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1
  6545. }
  6546. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6547. KeyAttrFlags: *1 {
  6548. a: 8456
  6549. }
  6550. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6551. KeyAttrDataFloat: *4 {
  6552. a: 0,0,218434821,0
  6553. }
  6554. KeyAttrRefCount: *1 {
  6555. a: 111
  6556. }
  6557. }
  6558. AnimationCurve: 2747963216, "AnimCurve::", "" {
  6559. Default: 0
  6560. KeyVer: 4008
  6561. KeyTime: *111 {
  6562. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6563. }
  6564. KeyValueFloat: *111 {
  6565. a: -1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.585228,-1.533381,-1.590944,-2.056087,-2.588388,-2.918972,-2.94388,-2.869646,-2.865055,-2.859589,-2.827744,-2.764885,-2.591051,-2.175743,-1.63446,-1.238344,-1.30282,-1.511045,-1.56624,-1.593597,-1.585228,-1.309654,-1.318977,-1.322748,-1.322153,-1.318384,-1.312626,-1.306078,-1.299925,-1.295361,-1.293571,-1.296192,-1.299202,-1.302504,-1.306005,-1.309616,-1.313238,-1.316792,-1.320173,-1.323294,-1.326075,-1.328415,-1.330235,-1.331434,-1.33193,-1.331633,-1.330753,-1.329578,-1.328125,-1.32642,-1.324476,-1.322319,-1.319967,-1.317442,-1.314758,-1.311947,-1.309021,-1.306005,-1.302916,-1.299776,-1.296606,-1.29343,-1.290264,-1.287142,-1.284065,-1.281069,-1.278173,-1.275391,-1.272764,-1.270296,-1.268011,-1.265932,-1.264091,-1.262499,-1.261183,-1.260164,-1.259703,-1.26001,-1.260994,-1.262558,-1.264618,-1.267094,-1.269897,-1.272934,-1.276121,-1.279371,-1.2826,-1.285715,-1.288641,-1.291286,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571,-1.293571
  6566. }
  6567. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6568. KeyAttrFlags: *1 {
  6569. a: 8456
  6570. }
  6571. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6572. KeyAttrDataFloat: *4 {
  6573. a: 0,0,218434821,0
  6574. }
  6575. KeyAttrRefCount: *1 {
  6576. a: 111
  6577. }
  6578. }
  6579. AnimationCurve: 2747958896, "AnimCurve::", "" {
  6580. Default: 0
  6581. KeyVer: 4008
  6582. KeyTime: *111 {
  6583. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6584. }
  6585. KeyValueFloat: *111 {
  6586. a: -1.135327,-1.135327,-1.135327,-1.135327,-1.135327,-1.135327,-1.135327,-1.135327,-1.135327,-1.135327,-1.135326,-0.6757956,-0.8261518,-1.261255,-2.029591,-2.83983,-3.405083,-3.621863,-3.711186,-3.673079,-3.595138,-3.483742,-3.412601,-3.179366,-2.493193,-1.517072,-0.6316528,-0.2257433,-0.1604443,-0.2328873,-0.4203053,-0.6757956,-1.087054,-1.059139,-1.047873,-1.049652,-1.060918,-1.078137,-1.097764,-1.116232,-1.129953,-1.135327,-1.131567,-1.127236,-1.122467,-1.117396,-1.112155,-1.10688,-1.101704,-1.096764,-1.092194,-1.088133,-1.084714,-1.082076,-1.080353,-1.079682,-1.080201,-1.081592,-1.083431,-1.085687,-1.088324,-1.091312,-1.094621,-1.098216,-1.102066,-1.106138,-1.1104,-1.11482,-1.119367,-1.124008,-1.128711,-1.133446,-1.13818,-1.142882,-1.14752,-1.152062,-1.156477,-1.160735,-1.164804,-1.168653,-1.17225,-1.175566,-1.178568,-1.181226,-1.183509,-1.185385,-1.186825,-1.187425,-1.186892,-1.185351,-1.182935,-1.17977,-1.175985,-1.17171,-1.167072,-1.1622,-1.157223,-1.152272,-1.147477,-1.142967,-1.138873,-1.135326,-1.135326,-1.135327,-1.135327,-1.135326,-1.135327,-1.135327,-1.135327,-1.135327,-1.135327
  6587. }
  6588. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6589. KeyAttrFlags: *1 {
  6590. a: 8456
  6591. }
  6592. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6593. KeyAttrDataFloat: *4 {
  6594. a: 0,0,218434821,0
  6595. }
  6596. KeyAttrRefCount: *1 {
  6597. a: 111
  6598. }
  6599. }
  6600. AnimationCurve: 2747963856, "AnimCurve::", "" {
  6601. Default: 0
  6602. KeyVer: 4008
  6603. KeyTime: *111 {
  6604. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6605. }
  6606. KeyValueFloat: *111 {
  6607. a: -4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702336,-4.753572,-4.706117,-4.31463,-3.593622,-2.875656,-2.694614,-2.759295,-2.894385,-3.045498,-3.217722,-3.32714,-3.632145,-4.307062,-4.887908,-5.120223,-5.064568,-4.935098,-4.846985,-4.768713,-4.702336,-4.686072,-4.676353,-4.672368,-4.672999,-4.67698,-4.682992,-4.68974,-4.695985,-4.700561,-4.702338,-4.702528,-4.702745,-4.702981,-4.703226,-4.703473,-4.703716,-4.703948,-4.704164,-4.704356,-4.704522,-4.704656,-4.704755,-4.704814,-4.704828,-4.704792,-4.70472,-4.704626,-4.704512,-4.704381,-4.704229,-4.704062,-4.703879,-4.703681,-4.703468,-4.703242,-4.703004,-4.702755,-4.702497,-4.702231,-4.701959,-4.701682,-4.701402,-4.701123,-4.700845,-4.700571,-4.700302,-4.700043,-4.699795,-4.699561,-4.699344,-4.699146,-4.69897,-4.69882,-4.698697,-4.698605,-4.698574,-4.698629,-4.698758,-4.69895,-4.699195,-4.699483,-4.699803,-4.700143,-4.700495,-4.700847,-4.701193,-4.701522,-4.701827,-4.702102,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338,-4.702338
  6608. }
  6609. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6610. KeyAttrFlags: *1 {
  6611. a: 8456
  6612. }
  6613. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6614. KeyAttrDataFloat: *4 {
  6615. a: 0,0,218434821,0
  6616. }
  6617. KeyAttrRefCount: *1 {
  6618. a: 111
  6619. }
  6620. }
  6621. AnimationCurve: 2747960976, "AnimCurve::", "" {
  6622. Default: -167.583770751953
  6623. KeyVer: 4008
  6624. KeyTime: *111 {
  6625. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6626. }
  6627. KeyValueFloat: *111 {
  6628. a: 12.41623,12.41673,12.41672,12.41664,12.4166,12.41649,12.4164,12.41632,12.41624,12.41621,12.41649,16.54828,11.63814,7.674423,16.15953,24.62152,18.09772,14.6584,12.94592,11.49976,11.85915,12.36113,12.20639,9.806137,4.040955,-1.068527,-1.343246,2.006546,5.392136,7.539642,10.33337,16.54829,12.38678,12.3848,12.36311,12.3685,12.39442,12.43468,12.48312,12.533,12.59105,-1.895355,-2.064682,-2.215897,-2.349762,-2.467224,-2.56926,-2.657074,-2.731857,-2.794922,-2.84761,-2.891357,-2.927551,-2.957672,-2.983139,-3.005417,-3.025909,-3.043564,-3.056625,-3.065414,-3.070206,-3.071274,-3.068924,-3.06337,-3.054855,-3.04361,-3.029861,-3.013809,-2.995682,-2.975647,-2.953918,-2.930679,-2.906097,-2.880173,-2.852859,-2.824188,-2.794144,-2.762741,-2.730026,-2.69603,-2.660828,-2.624512,-2.587189,-2.548935,-2.509949,-2.470352,-2.430313,-2.38826,-2.34317,-2.296051,-2.247833,-2.199524,-2.151932,-2.106003,-2.062546,-2.022385,-1.986343,-1.95517,-1.929657,-1.910568,-1.898697,-1.894791,-1.894791,-0.53862,0.8681641,2.317749,3.808594,5.349289,6.969116,8.760498,12.41623
  6629. }
  6630. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6631. KeyAttrFlags: *1 {
  6632. a: 8456
  6633. }
  6634. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6635. KeyAttrDataFloat: *4 {
  6636. a: 0,0,218434821,0
  6637. }
  6638. KeyAttrRefCount: *1 {
  6639. a: 111
  6640. }
  6641. }
  6642. AnimationCurve: 2747972336, "AnimCurve::", "" {
  6643. Default: 11.2786931991577
  6644. KeyVer: 4008
  6645. KeyTime: *111 {
  6646. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6647. }
  6648. KeyValueFloat: *111 {
  6649. a: 168.7213,168.7219,168.7219,168.7218,168.7218,168.7217,168.7216,168.7215,168.7214,168.7214,168.7214,180.6981,182.6106,180.276,180.6154,182.7526,180.9977,182.3291,182.4268,184.5466,186.6873,187.3703,185.0618,180.7758,178.528,181.4995,187.0296,189.7825,189.6659,188.1363,185.3608,180.6981,168.6563,168.6544,168.6008,168.6114,168.671,168.7652,168.8795,168.9986,169.1507,163.3575,163.4202,163.4968,163.5847,163.6815,163.7846,163.8916,164.0001,164.1075,164.2116,164.3098,164.3998,164.4792,164.5458,164.5972,164.631,164.6515,164.6646,164.6705,164.6693,164.6611,164.6462,164.6248,164.5971,164.5632,164.5235,164.478,164.4271,164.371,164.31,164.2442,164.1741,164.1003,164.0235,163.9445,163.8638,163.7824,163.7009,163.6199,163.5403,163.4627,163.3879,163.3164,163.2491,163.1865,163.1293,163.0837,163.0542,163.0392,163.0369,163.0456,163.0637,163.0894,163.1209,163.1566,163.1946,163.2332,163.2705,163.3048,163.3343,163.3572,163.3572,163.4789,163.6887,164.0013,164.4354,165.0194,165.806,166.9273,168.7213
  6650. }
  6651. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6652. KeyAttrFlags: *1 {
  6653. a: 8456
  6654. }
  6655. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6656. KeyAttrDataFloat: *4 {
  6657. a: 0,0,218434821,0
  6658. }
  6659. KeyAttrRefCount: *1 {
  6660. a: 111
  6661. }
  6662. }
  6663. AnimationCurve: 2747972176, "AnimCurve::", "" {
  6664. Default: 178.796524047852
  6665. KeyVer: 4008
  6666. KeyTime: *111 {
  6667. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6668. }
  6669. KeyValueFloat: *111 {
  6670. a: -1.203476,-1.200897,-1.200989,-1.201324,-1.20163,-1.202133,-1.202576,-1.203018,-1.203369,-1.203537,-1.20195,-71.78754,-61.92278,-29.15034,-19.33531,-10.34634,-7.113647,-0.8883514,2.875488,2.375717,-0.6016083,-6.355179,-18.07486,-33.73079,-51.42377,-70.22277,-84.52874,-89.16851,-87.78054,-84.95678,-80.32496,-71.78752,-1.334442,-1.344971,-1.436142,-1.411316,-1.29837,-1.121643,-0.9057159,-0.6797791,-0.4135895,-56.01923,-56.66698,-57.28255,-57.86539,-58.41525,-58.93159,-59.41415,-59.8626,-60.27662,-60.65593,-61.0003,-61.30942,-61.5831,-61.82104,-62.02308,-62.18887,-62.32201,-62.42684,-62.5043,-62.55537,-62.58094,-62.58208,-62.55973,-62.51482,-62.44832,-62.36121,-62.25451,-62.12914,-61.9861,-61.82634,-61.65088,-61.46073,-61.25729,-61.04201,-60.81627,-60.58155,-60.33936,-60.09106,-59.8382,-59.58218,-59.32448,-59.06659,-58.80996,-58.55612,-58.30653,-58.06269,-57.82784,-57.60467,-57.39383,-57.19585,-57.01134,-56.84073,-56.68469,-56.54361,-56.4181,-56.30863,-56.2157,-56.1398,-56.08141,-56.04109,-56.01933,-56.01933,-51.83878,-47.41327,-42.72774,-37.73602,-32.33826,-26.31622,-19.08142,-1.203491
  6671. }
  6672. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6673. KeyAttrFlags: *1 {
  6674. a: 8456
  6675. }
  6676. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6677. KeyAttrDataFloat: *4 {
  6678. a: 0,0,218434821,0
  6679. }
  6680. KeyAttrRefCount: *1 {
  6681. a: 111
  6682. }
  6683. }
  6684. AnimationCurve: 2748020816, "AnimCurve::", "" {
  6685. Default: 0
  6686. KeyVer: 4008
  6687. KeyTime: *111 {
  6688. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6689. }
  6690. KeyValueFloat: *111 {
  6691. a: 0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999998,0.9999998,0.9999998,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,0.9999998,0.9999998,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999998,0.9999999,1,0.9999999,1,1,0.9999998,1,1,0.9999998,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999998,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999
  6692. }
  6693. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6694. KeyAttrFlags: *1 {
  6695. a: 8456
  6696. }
  6697. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6698. KeyAttrDataFloat: *4 {
  6699. a: 0,0,218434821,0
  6700. }
  6701. KeyAttrRefCount: *1 {
  6702. a: 111
  6703. }
  6704. }
  6705. AnimationCurve: 2748021456, "AnimCurve::", "" {
  6706. Default: 0
  6707. KeyVer: 4008
  6708. KeyTime: *111 {
  6709. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6710. }
  6711. KeyValueFloat: *111 {
  6712. a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,0.9999997,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998,1,0.9999999,0.9999998,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999998,1,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999998
  6713. }
  6714. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6715. KeyAttrFlags: *1 {
  6716. a: 8456
  6717. }
  6718. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6719. KeyAttrDataFloat: *4 {
  6720. a: 0,0,218434821,0
  6721. }
  6722. KeyAttrRefCount: *1 {
  6723. a: 111
  6724. }
  6725. }
  6726. AnimationCurve: 2748018416, "AnimCurve::", "" {
  6727. Default: 0
  6728. KeyVer: 4008
  6729. KeyTime: *111 {
  6730. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6731. }
  6732. KeyValueFloat: *111 {
  6733. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  6734. }
  6735. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6736. KeyAttrFlags: *1 {
  6737. a: 8456
  6738. }
  6739. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6740. KeyAttrDataFloat: *4 {
  6741. a: 0,0,218434821,0
  6742. }
  6743. KeyAttrRefCount: *1 {
  6744. a: 111
  6745. }
  6746. }
  6747. AnimationCurve: 2330789568, "AnimCurve::", "" {
  6748. Default: 0
  6749. KeyVer: 4008
  6750. KeyTime: *111 {
  6751. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6752. }
  6753. KeyValueFloat: *111 {
  6754. a: 10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166,10.81166
  6755. }
  6756. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6757. KeyAttrFlags: *1 {
  6758. a: 8456
  6759. }
  6760. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6761. KeyAttrDataFloat: *4 {
  6762. a: 0,0,218434821,0
  6763. }
  6764. KeyAttrRefCount: *1 {
  6765. a: 111
  6766. }
  6767. }
  6768. AnimationCurve: 2330789888, "AnimCurve::", "" {
  6769. Default: 0
  6770. KeyVer: 4008
  6771. KeyTime: *111 {
  6772. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6773. }
  6774. KeyValueFloat: *111 {
  6775. a: 0,-4.768372e-007,-4.768372e-007,-4.768372e-007,-4.768372e-007,0,-4.768372e-007,0,-4.768372e-007,0,-4.768372e-007,9.536743e-007,0,-5.960464e-008,-9.536743e-007,-9.536743e-007,1.907349e-006,0,1.907349e-006,0,0,0,9.536743e-007,2.384186e-007,0,9.536743e-007,0,0,0,0,1.907349e-006,-9.536743e-007,4.768372e-007,-4.768372e-007,-4.768372e-007,0,0,0,4.768372e-007,-9.536743e-007,-4.768372e-007,-1.907349e-006,0,3.814697e-006,0,0,1.907349e-006,1.907349e-006,1.907349e-006,-1.907349e-006,0,1.907349e-006,1.907349e-006,1.907349e-006,0,0,3.814697e-006,1.907349e-006,0,1.907349e-006,0,0,-1.907349e-006,0,3.814697e-006,0,1.907349e-006,0,3.814697e-006,1.907349e-006,0,1.907349e-006,1.907349e-006,0,3.814697e-006,0,1.907349e-006,1.907349e-006,3.814697e-006,0,1.907349e-006,1.907349e-006,0,0,0,1.907349e-006,0,0,0,0,1.907349e-006,0,0,0,0,0,0,0,0,1.907349e-006,0,0,0,0,3.814697e-006,3.814697e-006,0,1.907349e-006,0,9.536743e-007,-4.768372e-007
  6776. }
  6777. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6778. KeyAttrFlags: *1 {
  6779. a: 8456
  6780. }
  6781. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6782. KeyAttrDataFloat: *4 {
  6783. a: 0,0,218434821,0
  6784. }
  6785. KeyAttrRefCount: *1 {
  6786. a: 111
  6787. }
  6788. }
  6789. AnimationCurve: 2330791168, "AnimCurve::", "" {
  6790. Default: 0
  6791. KeyVer: 4008
  6792. KeyTime: *111 {
  6793. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6794. }
  6795. KeyValueFloat: *111 {
  6796. a: 0,-4.768372e-007,0,0,0,0,-4.768372e-007,-9.536743e-007,-4.768372e-007,0,0,2.384186e-007,-2.384186e-007,0,0,0,-9.536743e-007,4.768372e-007,2.384186e-007,9.536743e-007,-4.768372e-007,0,0,-4.768372e-007,4.768372e-007,4.768372e-007,0,4.768372e-007,2.384186e-007,9.536743e-007,-1.192093e-007,2.384186e-007,0,4.768372e-007,-9.536743e-007,-4.768372e-007,-4.768372e-007,0,-9.536743e-007,-9.536743e-007,-4.768372e-007,0,0,0,9.536743e-007,0,0,-9.536743e-007,4.768372e-007,0,-9.536743e-007,4.768372e-007,-4.768372e-007,0,0,-9.536743e-007,-9.536743e-007,0,0,-9.536743e-007,0,0,-9.536743e-007,-9.536743e-007,-1.430511e-006,0,4.768372e-007,-9.536743e-007,-9.536743e-007,-4.768372e-007,0,0,-4.768372e-007,0,0,4.768372e-007,-4.768372e-007,-4.768372e-007,-4.768372e-007,-9.536743e-007,0,0,-9.536743e-007,0,-9.536743e-007,-9.536743e-007,0,-9.536743e-007,-4.768372e-007,0,0,-4.768372e-007,-1.430511e-006,0,-9.536743e-007,0,-4.768372e-007,0,-9.536743e-007,-9.536743e-007,-4.768372e-007,-1.430511e-006,-1.430511e-006,0,4.768372e-007,0,-4.768372e-007,-4.768372e-007,4.768372e-007,-4.768372e-007,0
  6797. }
  6798. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6799. KeyAttrFlags: *1 {
  6800. a: 8456
  6801. }
  6802. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6803. KeyAttrDataFloat: *4 {
  6804. a: 0,0,218434821,0
  6805. }
  6806. KeyAttrRefCount: *1 {
  6807. a: 111
  6808. }
  6809. }
  6810. AnimationCurve: 2330792768, "AnimCurve::", "" {
  6811. Default: -5.33608499608818e-007
  6812. KeyVer: 4008
  6813. KeyTime: *111 {
  6814. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6815. }
  6816. KeyValueFloat: *111 {
  6817. a: -5.336085e-007,5.336084e-007,-6.403303e-007,2.561321e-006,5.336084e-007,-2.134434e-007,5.336085e-007,-1.173939e-006,-6.403302e-007,-1.067217e-006,1.067217e-007,-3.681899e-006,3.14829e-006,4.268867e-007,4.268868e-007,2.134434e-006,0,-2.134434e-007,1.387382e-006,2.134434e-007,4.268867e-007,-4.268868e-007,1.28066e-006,4.268868e-007,-4.268867e-007,5.336084e-007,-1.494104e-006,-1.707547e-006,-8.004129e-007,-2.301187e-006,2.081073e-006,-2.294517e-006,2.027712e-006,2.241156e-006,-2.561321e-006,-2.241155e-006,2.134434e-007,6.403303e-007,1.387382e-006,3.308372e-006,-3.73526e-007,2.134434e-006,8.537737e-007,-4.268868e-007,-4.268868e-007,2.134434e-006,3.415094e-006,-2.988207e-006,3.415094e-006,4.695754e-006,4.268868e-007,2.988208e-006,2.134434e-006,-4.268868e-007,-2.988208e-006,-1.28066e-006,-3.415094e-006,2.134434e-006,-2.134434e-006,-4.268868e-007,5.122641e-006,3.415094e-006,0,1.280661e-006,2.134434e-006,2.988208e-006,-2.56132e-006,4.268868e-006,-1.707547e-006,4.695755e-006,2.134434e-006,-4.268868e-007,-3.415094e-006,1.28066e-006,4.268867e-007,6.830189e-006,2.561321e-006,-3.841981e-006,1.28066e-006,-4.268868e-007,2.988208e-006,7.683962e-006,-2.134434e-006,1.28066e-006,-4.268868e-007,-1.28066e-006,4.268868e-007,-1.707547e-006,-1.280661e-006,8.537737e-007,4.268868e-007,-4.268868e-007,-4.268868e-007,4.268868e-007,4.268867e-007,3.841981e-006,-2.561321e-006,8.537737e-007,-2.134434e-006,3.415094e-006,-2.134434e-006,-1.28066e-006,-8.537737e-007,2.561321e-006,-2.134434e-006,0,-1.494104e-006,-2.988208e-006,-3.628538e-006,-8.537737e-007,-8.537735e-007
  6818. }
  6819. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6820. KeyAttrFlags: *1 {
  6821. a: 8456
  6822. }
  6823. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6824. KeyAttrDataFloat: *4 {
  6825. a: 0,0,218434821,0
  6826. }
  6827. KeyAttrRefCount: *1 {
  6828. a: 111
  6829. }
  6830. }
  6831. AnimationCurve: 2330793248, "AnimCurve::", "" {
  6832. Default: 1.70754731243505e-006
  6833. KeyVer: 4008
  6834. KeyTime: *111 {
  6835. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6836. }
  6837. KeyValueFloat: *111 {
  6838. a: 1.707547e-006,0,-8.537737e-007,-1.707547e-006,-2.561321e-006,1.707547e-006,1.707547e-006,1.707547e-006,1.707547e-006,8.537737e-007,8.537737e-007,-2.134434e-006,2.50796e-006,-4.268867e-007,8.537736e-007,-8.537735e-007,1.280661e-006,8.537736e-007,-4.802476e-007,3.73526e-007,1.680867e-006,1.067217e-007,0,-4.268868e-007,3.20165e-007,1.914321e-006,-6.403303e-007,-3.415095e-006,-1.067217e-006,2.134434e-007,4.268867e-007,-3.415094e-006,1.707547e-006,0,-1.707547e-006,1.707547e-006,0,0,0,-8.537735e-007,-1.707548e-006,-3.415094e-006,-0,-4.268868e-006,-0,0,-2.561321e-006,-1.707547e-006,-3.415094e-006,-1.707547e-006,-4.268868e-006,2.561321e-006,-4.268869e-006,3.415095e-006,0,-1.707547e-006,8.537736e-007,-2.561321e-006,-2.134434e-006,-3.415095e-006,-4.695754e-006,-8.537737e-007,-3.415095e-006,8.537737e-007,8.537737e-007,-1.280661e-006,-2.988208e-006,4.268869e-007,-3.415095e-006,1.707547e-006,2.561321e-006,4.268868e-007,-8.537736e-007,8.537736e-007,2.561321e-006,-8.537737e-007,-2.561321e-006,8.537736e-007,-2.561321e-006,2.561321e-006,8.537736e-007,-4.268868e-006,-1.707547e-006,-1.707547e-006,-1.707547e-006,2.561321e-006,-2.561321e-006,-2.561321e-006,-2.561321e-006,-1.707547e-006,-3.415094e-006,-8.537737e-007,2.561321e-006,-8.537737e-007,1.707547e-006,0,-8.537736e-007,-0,-8.537737e-007,-1.707548e-006,2.561321e-006,-4.268868e-006,-3.415094e-006,-1.707547e-006,-8.537736e-007,-0,0,0,-1.707548e-006,2.56132e-006,0
  6839. }
  6840. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6841. KeyAttrFlags: *1 {
  6842. a: 8456
  6843. }
  6844. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6845. KeyAttrDataFloat: *4 {
  6846. a: 0,0,218434821,0
  6847. }
  6848. KeyAttrRefCount: *1 {
  6849. a: 111
  6850. }
  6851. }
  6852. AnimationCurve: 2503831984, "AnimCurve::", "" {
  6853. Default: -13.8447237014771
  6854. KeyVer: 4008
  6855. KeyTime: *111 {
  6856. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6857. }
  6858. KeyValueFloat: *111 {
  6859. a: -13.84472,-13.8403,-13.8403,-13.84067,-13.84097,-13.84168,-13.84226,-13.84277,-13.84322,-13.84334,-13.84052,-36.23978,-54.39305,-40.28829,-20.5566,-0.180237,-11.85121,-11.16266,-14.65215,-31.78295,-54.1491,-77.75162,-107.1957,-129.0906,-132.2133,-127.3893,-116.6976,-93.19626,-64.4279,-40.11199,-22.83133,-36.23972,-14.16293,-14.17104,-14.41276,-14.34221,-14.03533,-13.55939,-12.9824,-12.38369,-11.68731,-93.82723,-94.54955,-95.22204,-95.84635,-96.42411,-96.9565,-97.44486,-97.89036,-98.2939,-98.65638,-98.97863,-99.26139,-99.50531,-99.71089,-99.87868,-100.0092,-100.1054,-100.1714,-100.2085,-100.2182,-100.202,-100.1612,-100.0973,-100.0115,-99.90536,-99.78001,-99.63682,-99.47714,-99.30219,-99.11327,-98.91167,-98.69865,-98.47556,-98.24358,-98.0041,-97.75845,-97.50799,-97.25394,-96.99773,-96.74075,-96.48433,-96.22985,-95.97879,-95.73257,-95.49261,-95.26044,-95.04116,-94.83902,-94.65405,-94.48634,-94.33599,-94.20303,-94.08778,-93.99027,-93.91083,-93.84959,-93.80688,-93.78291,-93.77796,-93.79232,-93.82629,-93.82628,-88.45058,-82.3558,-75.46144,-67.63077,-58.61311,-47.8892,-34.07757,-13.8448
  6860. }
  6861. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6862. KeyAttrFlags: *1 {
  6863. a: 8456
  6864. }
  6865. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6866. KeyAttrDataFloat: *4 {
  6867. a: 0,0,218434821,0
  6868. }
  6869. KeyAttrRefCount: *1 {
  6870. a: 111
  6871. }
  6872. }
  6873. AnimationCurve: 2503853744, "AnimCurve::", "" {
  6874. Default: 0
  6875. KeyVer: 4008
  6876. KeyTime: *111 {
  6877. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6878. }
  6879. KeyValueFloat: *111 {
  6880. a: 1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999998,1,1,0.9999999,0.9999998,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999998,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,0.9999999,1,1
  6881. }
  6882. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6883. KeyAttrFlags: *1 {
  6884. a: 8456
  6885. }
  6886. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6887. KeyAttrDataFloat: *4 {
  6888. a: 0,0,218434821,0
  6889. }
  6890. KeyAttrRefCount: *1 {
  6891. a: 111
  6892. }
  6893. }
  6894. AnimationCurve: 2503803024, "AnimCurve::", "" {
  6895. Default: 0
  6896. KeyVer: 4008
  6897. KeyTime: *111 {
  6898. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6899. }
  6900. KeyValueFloat: *111 {
  6901. a: 1,1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999998,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1
  6902. }
  6903. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6904. KeyAttrFlags: *1 {
  6905. a: 8456
  6906. }
  6907. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6908. KeyAttrDataFloat: *4 {
  6909. a: 0,0,218434821,0
  6910. }
  6911. KeyAttrRefCount: *1 {
  6912. a: 111
  6913. }
  6914. }
  6915. AnimationCurve: 2503798864, "AnimCurve::", "" {
  6916. Default: 0
  6917. KeyVer: 4008
  6918. KeyTime: *111 {
  6919. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6920. }
  6921. KeyValueFloat: *111 {
  6922. a: 0.9999999,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1
  6923. }
  6924. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6925. KeyAttrFlags: *1 {
  6926. a: 8456
  6927. }
  6928. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6929. KeyAttrDataFloat: *4 {
  6930. a: 0,0,218434821,0
  6931. }
  6932. KeyAttrRefCount: *1 {
  6933. a: 111
  6934. }
  6935. }
  6936. AnimationCurve: 2502507904, "AnimCurve::", "" {
  6937. Default: 0
  6938. KeyVer: 4008
  6939. KeyTime: *111 {
  6940. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6941. }
  6942. KeyValueFloat: *111 {
  6943. a: 8.100966,8.100965,8.100965,8.100965,8.100962,8.100964,8.100967,8.100964,8.100966,8.100965,8.100964,8.100964,8.100965,8.100965,8.100965,8.100964,8.100965,8.100965,8.100966,8.100967,8.100966,8.100965,8.100965,8.100965,8.100965,8.100965,8.100965,8.100964,8.100965,8.100965,8.100965,8.100965,8.100967,8.100965,8.100965,8.100966,8.100963,8.100964,8.100965,8.100964,8.100963,8.100964,8.100965,8.100967,8.100965,8.100966,8.100967,8.100966,8.100964,8.100964,8.100965,8.100967,8.100965,8.100965,8.100965,8.100966,8.100965,8.100965,8.100965,8.100964,8.100965,8.100962,8.100965,8.100964,8.100967,8.100965,8.100965,8.100965,8.100964,8.100965,8.100963,8.100962,8.100964,8.100964,8.100963,8.100964,8.100963,8.100965,8.100966,8.100962,8.100965,8.100965,8.100964,8.100965,8.100965,8.100965,8.100964,8.100965,8.100964,8.100965,8.100964,8.100964,8.100965,8.100965,8.100962,8.100965,8.100965,8.100966,8.100966,8.100963,8.100964,8.100965,8.100965,8.100966,8.100966,8.100966,8.100963,8.100965,8.100964,8.100965,8.100965
  6944. }
  6945. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6946. KeyAttrFlags: *1 {
  6947. a: 8456
  6948. }
  6949. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6950. KeyAttrDataFloat: *4 {
  6951. a: 0,0,218434821,0
  6952. }
  6953. KeyAttrRefCount: *1 {
  6954. a: 111
  6955. }
  6956. }
  6957. AnimationCurve: 2502509344, "AnimCurve::", "" {
  6958. Default: 0
  6959. KeyVer: 4008
  6960. KeyTime: *111 {
  6961. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6962. }
  6963. KeyValueFloat: *111 {
  6964. a: 4.768372e-007,2.384186e-007,0,0,-4.768372e-007,-4.768372e-007,9.536743e-007,4.768372e-007,7.152557e-007,2.384186e-007,-2.384186e-007,0,-9.536743e-007,0,0,-9.536743e-007,-9.536743e-007,-1.907349e-006,0,-1.907349e-006,1.907349e-006,0,0,0,0,1.907349e-006,0,1.192093e-006,-9.536743e-007,-1.907349e-006,-1.907349e-006,1.907349e-006,2.384186e-007,0,0,0,-7.152557e-007,-4.768372e-007,4.768372e-007,4.768372e-007,4.768372e-007,4.768372e-007,-1.430511e-006,1.430511e-006,0,-1.907349e-006,0,0,4.768372e-007,9.536743e-007,9.536743e-007,-9.536743e-007,-9.536743e-007,4.768372e-007,-4.768372e-007,-2.384186e-006,-2.861023e-006,4.768372e-007,-4.768372e-007,-9.536743e-007,0,0,-4.768372e-007,4.768372e-007,-4.768372e-007,4.768372e-007,-4.768372e-007,-4.768372e-007,-9.536743e-007,4.768372e-007,-1.430511e-006,-1.430511e-006,-1.907349e-006,0,9.536743e-007,0,1.430511e-006,-1.430511e-006,-4.768372e-007,-9.536743e-007,0,1.907349e-006,0,-1.907349e-006,4.768372e-007,-1.907349e-006,-1.430511e-006,-4.768372e-007,9.536743e-007,-9.536743e-007,-4.768372e-007,9.536743e-007,-4.768372e-007,-1.430511e-006,-4.768372e-007,1.430511e-006,0,-4.768372e-007,4.768372e-007,0,-4.768372e-007,9.536743e-007,0,0,4.768372e-007,-9.536743e-007,-2.384186e-007,1.430511e-006,0,0,2.384186e-007
  6965. }
  6966. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6967. KeyAttrFlags: *1 {
  6968. a: 8456
  6969. }
  6970. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6971. KeyAttrDataFloat: *4 {
  6972. a: 0,0,218434821,0
  6973. }
  6974. KeyAttrRefCount: *1 {
  6975. a: 111
  6976. }
  6977. }
  6978. AnimationCurve: 1240545520, "AnimCurve::", "" {
  6979. Default: 0
  6980. KeyVer: 4008
  6981. KeyTime: *111 {
  6982. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  6983. }
  6984. KeyValueFloat: *111 {
  6985. a: 0,4.768372e-007,4.768372e-007,0,0,0,0,1.430511e-006,0,1.430511e-006,9.536743e-007,-5.364418e-007,0,0,0,0,0,0,2.384186e-007,0,-2.384186e-007,0,2.384186e-007,-2.384186e-007,-9.536743e-007,4.768372e-007,4.768372e-007,-2.384186e-007,-4.768372e-007,-2.384186e-007,1.192093e-007,-5.960464e-007,0,-4.768372e-007,1.430511e-006,4.768372e-007,0,0,0,4.768372e-007,0,9.536743e-007,1.430511e-006,0,4.768372e-007,0,0,4.768372e-007,-9.536743e-007,-4.768372e-007,0,4.768372e-007,4.768372e-007,0,4.768372e-007,1.430511e-006,4.768372e-007,0,-4.768372e-007,0,9.536743e-007,9.536743e-007,9.536743e-007,4.768372e-007,9.536743e-007,4.768372e-007,-4.768372e-007,0,0,4.768372e-007,-9.536743e-007,9.536743e-007,9.536743e-007,4.768372e-007,-4.768372e-007,9.536743e-007,-4.768372e-007,9.536743e-007,-4.768372e-007,4.768372e-007,0,-4.768372e-007,-9.536743e-007,0,4.768372e-007,4.768372e-007,0,1.430511e-006,9.536743e-007,1.907349e-006,9.536743e-007,9.536743e-007,1.430511e-006,4.768372e-007,4.768372e-007,4.768372e-007,4.768372e-007,4.768372e-007,9.536743e-007,1.430511e-006,4.768372e-007,9.536743e-007,4.768372e-007,0,-1.430511e-006,-9.536743e-007,0,-4.768372e-007,0,0,0
  6986. }
  6987. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  6988. KeyAttrFlags: *1 {
  6989. a: 8456
  6990. }
  6991. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  6992. KeyAttrDataFloat: *4 {
  6993. a: 0,0,218434821,0
  6994. }
  6995. KeyAttrRefCount: *1 {
  6996. a: 111
  6997. }
  6998. }
  6999. AnimationCurve: 1240546960, "AnimCurve::", "" {
  7000. Default: -11.7982568740845
  7001. KeyVer: 4008
  7002. KeyTime: *111 {
  7003. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7004. }
  7005. KeyValueFloat: *111 {
  7006. a: -11.79826,-11.79813,-11.79811,-11.79809,-11.79806,-11.79805,-11.79803,-11.79804,-11.79806,-11.79811,-11.7986,-9.976471,-10.87953,-12.52208,-17.9865,-21.18101,-10.17975,-4.742713,-1.352009,-1.024142,-0.7891389,-0.2042071,-1.695592,-3.495466,-1.966013,0.4607478,2.030011,2.113289,1.818637,3.442184,2.647852,-9.976494,-11.7981,-11.79814,-11.79795,-11.79787,-11.79788,-11.79793,-11.798,-11.7981,-11.79778,-11.7936,-11.85939,-11.92588,-11.99284,-12.06008,-12.1275,-12.19498,-12.26248,-12.32996,-12.39744,-12.46497,-12.53257,-12.60028,-12.66822,-12.73643,-12.80499,-12.87296,-12.9391,-13.00311,-13.06461,-13.12327,-13.17875,-13.23067,-13.27871,-13.32247,-13.36158,-13.39568,-13.42436,-13.44725,-13.46392,-13.47398,-13.47711,-13.47347,-13.46332,-13.44693,-13.42457,-13.39648,-13.36297,-13.3243,-13.28073,-13.23255,-13.18005,-13.12353,-13.06332,-12.9997,-12.93299,-12.86278,-12.78885,-12.7119,-12.63254,-12.55151,-12.46943,-12.38696,-12.3048,-12.2236,-12.14405,-12.0668,-11.9925,-11.92185,-11.85549,-11.79411,-11.79411,-11.71111,-11.64867,-11.60523,-11.57828,-11.56508,-11.56285,-11.56896,-11.79826
  7007. }
  7008. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7009. KeyAttrFlags: *1 {
  7010. a: 8456
  7011. }
  7012. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7013. KeyAttrDataFloat: *4 {
  7014. a: 0,0,218434821,0
  7015. }
  7016. KeyAttrRefCount: *1 {
  7017. a: 111
  7018. }
  7019. }
  7020. AnimationCurve: 1638504112, "AnimCurve::", "" {
  7021. Default: 11.2167959213257
  7022. KeyVer: 4008
  7023. KeyTime: *111 {
  7024. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7025. }
  7026. KeyValueFloat: *111 {
  7027. a: 11.2168,11.21688,11.21686,11.21683,11.21679,11.21675,11.21671,11.21669,11.21669,11.21673,11.21733,-4.130091,0.1055919,6.79026,6.715974,4.475657,0.7565998,1.094892,0.6374617,0.7129487,0.55402,1.045123,1.887151,2.366359,3.322241,3.287462,2.39083,1.354952,0.5352237,0.9838478,1.096709,-4.130094,11.2529,11.25252,11.28589,11.2807,11.24599,11.19096,11.12473,11.05622,10.96449,11.55729,11.55992,11.55336,11.53855,11.5165,11.48824,11.45479,11.41724,11.37666,11.33416,11.29088,11.2479,11.20632,11.1673,11.13196,11.10137,11.07426,11.04872,11.02492,11.00305,10.98328,10.96578,10.95071,10.93829,10.92863,10.92188,10.91823,10.91783,10.92079,10.92728,10.93745,10.95131,10.96865,10.98908,11.01235,11.03809,11.06595,11.09564,11.1268,11.15913,11.19232,11.22603,11.25992,11.29373,11.32712,11.35981,11.38962,11.4149,11.43612,11.45373,11.4683,11.48027,11.49013,11.49841,11.50563,11.51233,11.519,11.52623,11.53456,11.5446,11.55688,11.55687,11.27462,10.99695,10.72887,10.47396,10.23456,10.01202,9.806911,11.21679
  7028. }
  7029. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7030. KeyAttrFlags: *1 {
  7031. a: 8456
  7032. }
  7033. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7034. KeyAttrDataFloat: *4 {
  7035. a: 0,0,218434821,0
  7036. }
  7037. KeyAttrRefCount: *1 {
  7038. a: 111
  7039. }
  7040. }
  7041. AnimationCurve: 1638501712, "AnimCurve::", "" {
  7042. Default: 7.98342800140381
  7043. KeyVer: 4008
  7044. KeyTime: *111 {
  7045. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7046. }
  7047. KeyValueFloat: *111 {
  7048. a: 7.983428,7.98224,7.982155,7.982158,7.982105,7.982236,7.982303,7.982303,7.982327,7.982252,7.981196,3.928025,31.40809,42.22383,31.22054,12.9692,-14.5688,-19.36001,-18.40072,-16.69219,-13.75864,-10.43418,-6.064389,-2.54416,-1.623119,-1.472908,-1.842536,-4.467073,-6.15198,-1.844004,3.415314,3.927969,8.162502,8.159914,8.302877,8.25835,8.0724,7.78598,7.440505,7.084055,6.676085,35.56555,35.72337,35.86766,35.99899,36.11769,36.224,36.31793,36.39949,36.46846,36.52451,36.5673,36.59629,36.61094,36.61052,36.59432,36.56166,36.51589,36.46164,36.39987,36.33154,36.25753,36.1786,36.09563,36.00945,35.92079,35.83041,35.73901,35.64739,35.5562,35.46616,35.37798,35.29223,35.20935,35.12945,35.05288,34.97998,34.91098,34.84618,34.78582,34.73037,34.6801,34.63532,34.59649,34.56395,34.53814,34.51947,34.51434,34.5276,34.55732,34.60173,34.65901,34.72738,34.80513,34.89055,34.98198,35.07769,35.17614,35.27567,35.37462,35.47138,35.56435,35.56433,34.10376,32.157,29.66458,26.54221,22.64588,17.68243,10.87005,7.983492
  7049. }
  7050. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7051. KeyAttrFlags: *1 {
  7052. a: 8456
  7053. }
  7054. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7055. KeyAttrDataFloat: *4 {
  7056. a: 0,0,218434821,0
  7057. }
  7058. KeyAttrRefCount: *1 {
  7059. a: 111
  7060. }
  7061. }
  7062. AnimationCurve: 2317253968, "AnimCurve::", "" {
  7063. Default: 0
  7064. KeyVer: 4008
  7065. KeyTime: *111 {
  7066. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7067. }
  7068. KeyValueFloat: *111 {
  7069. a: 0.9999999,1,1,1,1,0.9999999,1,0.9999999,1,0.9999999,1,0.9999999,1,1,1,0.9999998,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999998,1,1,0.9999998,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,0.9999998,0.9999999,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999,1,0.9999998,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999998,1,1,1,1,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,1,1,0.9999999,0.9999999,1,0.9999998,1,0.9999999,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999
  7070. }
  7071. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7072. KeyAttrFlags: *1 {
  7073. a: 8456
  7074. }
  7075. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7076. KeyAttrDataFloat: *4 {
  7077. a: 0,0,218434821,0
  7078. }
  7079. KeyAttrRefCount: *1 {
  7080. a: 111
  7081. }
  7082. }
  7083. AnimationCurve: 2317255568, "AnimCurve::", "" {
  7084. Default: 0
  7085. KeyVer: 4008
  7086. KeyTime: *111 {
  7087. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7088. }
  7089. KeyValueFloat: *111 {
  7090. a: 0.9999998,0.9999999,0.9999999,0.9999998,0.9999998,0.9999999,1,0.9999998,0.9999998,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,0.9999998,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999998,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999998,0.9999998,1,0.9999999,1,1,1,1,1,0.9999999,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999
  7091. }
  7092. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7093. KeyAttrFlags: *1 {
  7094. a: 8456
  7095. }
  7096. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7097. KeyAttrDataFloat: *4 {
  7098. a: 0,0,218434821,0
  7099. }
  7100. KeyAttrRefCount: *1 {
  7101. a: 111
  7102. }
  7103. }
  7104. AnimationCurve: 1241670992, "AnimCurve::", "" {
  7105. Default: 0
  7106. KeyVer: 4008
  7107. KeyTime: *111 {
  7108. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7109. }
  7110. KeyValueFloat: *111 {
  7111. a: 0.9999999,0.9999998,0.9999999,0.9999998,0.9999998,0.9999999,1,0.9999999,1,1,1,0.9999998,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,1,1,0.9999998,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999998,0.9999999,0.9999998,1,0.9999999,1,0.9999999,0.9999998,0.9999999,0.9999999,0.9999998,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999998,0.9999998,0.9999998,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999998,1,0.9999999,0.9999999,0.9999999,0.9999998,1,1,0.9999999,0.9999998,0.9999999,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999
  7112. }
  7113. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7114. KeyAttrFlags: *1 {
  7115. a: 8456
  7116. }
  7117. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7118. KeyAttrDataFloat: *4 {
  7119. a: 0,0,218434821,0
  7120. }
  7121. KeyAttrRefCount: *1 {
  7122. a: 111
  7123. }
  7124. }
  7125. AnimationCurve: 2746990944, "AnimCurve::", "" {
  7126. Default: 0
  7127. KeyVer: 4008
  7128. KeyTime: *111 {
  7129. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7130. }
  7131. KeyValueFloat: *111 {
  7132. a: 4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.137679,4.13768,4.13768,4.13768,4.137679,4.137681,4.13768,4.137679,4.13768,4.137684,4.13768,4.13768,4.137678,4.137679,4.137679,4.137679,4.137681,4.137679,4.13768,4.13768,4.137679,4.13768,4.13768,4.13768,4.13768,4.137679,4.137679,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.137681,4.137681,4.137679,4.13768,4.137681,4.137681,4.137681,4.13768,4.137681,4.137681,4.13768,4.13768,4.137681,4.13768,4.137679,4.13768,4.137679,4.13768,4.13768,4.137681,4.137681,4.13768,4.137681,4.137679,4.137679,4.137679,4.137681,4.137681,4.137681,4.137681,4.13768,4.137681,4.13768,4.137681,4.137681,4.13768,4.137681,4.137681,4.137681,4.137681,4.137681,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.13768,4.137681,4.13768,4.137679,4.13768,4.137679,4.13768,4.137679,4.137679,4.137679,4.13768
  7133. }
  7134. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7135. KeyAttrFlags: *1 {
  7136. a: 8456
  7137. }
  7138. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7139. KeyAttrDataFloat: *4 {
  7140. a: 0,0,218434821,0
  7141. }
  7142. KeyAttrRefCount: *1 {
  7143. a: 111
  7144. }
  7145. }
  7146. AnimationCurve: 2746983584, "AnimCurve::", "" {
  7147. Default: 0
  7148. KeyVer: 4008
  7149. KeyTime: *111 {
  7150. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7151. }
  7152. KeyValueFloat: *111 {
  7153. a: 5.266969,5.266969,5.266968,5.266969,5.266968,5.266968,5.266967,5.266968,5.266968,5.266968,5.266968,5.266967,5.266968,5.266967,5.266967,5.266969,5.266968,5.266968,5.266969,5.26697,5.266968,5.266968,5.266967,5.26697,5.266968,5.266968,5.266967,5.266968,5.266967,5.266969,5.266969,5.266968,5.266966,5.26697,5.266968,5.266969,5.266968,5.266968,5.266969,5.266969,5.266967,5.266966,5.266967,5.266968,5.266967,5.266967,5.266968,5.266967,5.266968,5.266968,5.266968,5.266968,5.266968,5.266966,5.266969,5.266968,5.266969,5.266967,5.266968,5.266969,5.266969,5.266967,5.266967,5.266969,5.266968,5.266968,5.266967,5.266967,5.266968,5.266969,5.266968,5.266968,5.266969,5.266968,5.266968,5.266968,5.266969,5.266969,5.266967,5.266967,5.266967,5.266967,5.266967,5.266968,5.266968,5.266968,5.266968,5.266967,5.266966,5.266967,5.266968,5.266968,5.266967,5.266967,5.266967,5.266968,5.266968,5.266968,5.266967,5.266968,5.266967,5.266967,5.266967,5.266968,5.266968,5.266967,5.266967,5.266966,5.266967,5.266968,5.266968
  7154. }
  7155. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7156. KeyAttrFlags: *1 {
  7157. a: 8456
  7158. }
  7159. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7160. KeyAttrDataFloat: *4 {
  7161. a: 0,0,218434821,0
  7162. }
  7163. KeyAttrRefCount: *1 {
  7164. a: 111
  7165. }
  7166. }
  7167. AnimationCurve: 2746983104, "AnimCurve::", "" {
  7168. Default: 0
  7169. KeyVer: 4008
  7170. KeyTime: *111 {
  7171. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7172. }
  7173. KeyValueFloat: *111 {
  7174. a: -9.536743e-007,4.768372e-007,0,4.768372e-007,4.768372e-007,-4.768372e-007,4.768372e-007,-4.768372e-007,-4.768372e-007,-4.768372e-007,0,-2.384186e-007,0,-4.768372e-007,0,9.536743e-007,0,9.536743e-007,0,0,2.384186e-007,0,9.536743e-007,0,-4.768372e-007,-9.536743e-007,9.536743e-007,2.384186e-007,4.768372e-007,4.768372e-007,-1.072884e-006,-4.768372e-007,0,0,4.768372e-007,0,4.768372e-007,4.768372e-007,-4.768372e-007,4.768372e-007,4.768372e-007,0,0,0,-4.768372e-007,0,4.768372e-007,9.536743e-007,4.768372e-007,4.768372e-007,4.768372e-007,0,4.768372e-007,0,4.768372e-007,4.768372e-007,4.768372e-007,0,-4.768372e-007,4.768372e-007,4.768372e-007,4.768372e-007,9.536743e-007,0,4.768372e-007,0,0,4.768372e-007,9.536743e-007,0,4.768372e-007,-4.768372e-007,0,0,0,4.768372e-007,4.768372e-007,4.768372e-007,0,4.768372e-007,9.536743e-007,0,4.768372e-007,9.536743e-007,0,9.536743e-007,0,0,-4.768372e-007,0,0,-4.768372e-007,4.768372e-007,0,-4.768372e-007,0,-4.768372e-007,4.768372e-007,-9.536743e-007,-4.768372e-007,-4.768372e-007,0,0,4.768372e-007,4.768372e-007,0,0,-4.768372e-007,9.536743e-007,-4.768372e-007,0
  7175. }
  7176. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7177. KeyAttrFlags: *1 {
  7178. a: 8456
  7179. }
  7180. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7181. KeyAttrDataFloat: *4 {
  7182. a: 0,0,218434821,0
  7183. }
  7184. KeyAttrRefCount: *1 {
  7185. a: 111
  7186. }
  7187. }
  7188. AnimationCurve: 2746988064, "AnimCurve::", "" {
  7189. Default: -0.112178511917591
  7190. KeyVer: 4008
  7191. KeyTime: *111 {
  7192. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7193. }
  7194. KeyValueFloat: *111 {
  7195. a: -0.1121785,-0.1121783,-0.1121784,-0.1121783,-0.1121784,-0.1121784,-0.1121784,-0.1121784,-0.1121785,-0.1121784,-0.1121783,-0.1121786,1.275599,2.666648,2.897654,1.813142,0.6490672,2.115832,3.594941,3.238508,2.25427,1.633201,1.59063,1.547724,1.557232,1.556534,1.546335,1.115131,0.6818215,-1.519934,-3.800366,-0.1121785,-0.1121783,-0.1121784,-0.1121785,-0.1121784,-0.1121785,-0.1121784,-0.1121784,-0.1121785,-0.1121782,-0.11218,-0.1136502,-0.1150322,-0.1163057,-0.1174914,-0.1185888,-0.1195791,-0.1205018,-0.1213299,-0.1220724,-0.1227457,-0.1233557,-0.1238696,-0.1243133,-0.124706,-0.1250217,-0.1252625,-0.1254579,-0.1255981,-0.1256737,-0.1256922,-0.1256596,-0.1255936,-0.1254818,-0.1253124,-0.1251012,-0.124867,-0.1245924,-0.124279,-0.1239393,-0.1235815,-0.123179,-0.1227631,-0.1223231,-0.1218856,-0.1214245,-0.1209309,-0.1204325,-0.1199252,-0.1194299,-0.1189212,-0.1184152,-0.117897,-0.1174079,-0.1169122,-0.1164238,-0.1159597,-0.1154992,-0.1150798,-0.114637,-0.1142483,-0.1138858,-0.1135481,-0.1132303,-0.1129601,-0.1127334,-0.1125239,-0.1123574,-0.1122245,-0.1121684,-0.1121204,-0.1121286,-0.1049996,-0.1039186,-0.107475,-0.1134438,-0.1192348,-0.1222863,-0.1204026,-0.1121784
  7196. }
  7197. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7198. KeyAttrFlags: *1 {
  7199. a: 8456
  7200. }
  7201. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7202. KeyAttrDataFloat: *4 {
  7203. a: 0,0,218434821,0
  7204. }
  7205. KeyAttrRefCount: *1 {
  7206. a: 111
  7207. }
  7208. }
  7209. AnimationCurve: 2746984064, "AnimCurve::", "" {
  7210. Default: 0.167415678501129
  7211. KeyVer: 4008
  7212. KeyTime: *111 {
  7213. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7214. }
  7215. KeyValueFloat: *111 {
  7216. a: 0.1674157,0.1674155,0.1674161,0.1674159,0.1674161,0.167416,0.167416,0.1674159,0.1674161,0.1674152,0.1674156,0.1674157,1.535416,2.900981,-4.655582,-12.13923,0.5053434,-0.1696318,-0.8171927,0.2477253,2.264292,3.200362,3.120044,3.039903,2.940204,2.740014,2.640384,1.965565,1.292213,3.731624,6.103733,0.167416,0.1674156,0.1674166,0.1674162,0.1674156,0.1674156,0.1674156,0.1674157,0.1674163,0.1674162,0.1674375,0.1646068,0.1619904,0.1595496,0.1572498,0.155139,0.1532563,0.1514514,0.1498752,0.1484345,0.1471191,0.1459926,0.1449736,0.1441238,0.1433821,0.1427444,0.1422916,0.1419159,0.1416491,0.1414919,0.1414475,0.1414953,0.1416414,0.1418819,0.1421694,0.1425841,0.1430376,0.1435857,0.1441773,0.144818,0.1455138,0.146269,0.1470913,0.1479212,0.1487814,0.1496767,0.1506253,0.1515724,0.1525297,0.1534882,0.1544773,0.1554389,0.1564314,0.157382,0.1583421,0.1592591,0.1601513,0.1610238,0.1618537,0.1626879,0.16343,0.1641279,0.1648027,0.1653871,0.1659033,0.1663675,0.1667688,0.1670717,0.1673084,0.1674271,0.1675086,0.1674981,0.1811045,0.1831903,0.1764089,0.1649661,0.1538519,0.147997,0.1516069,0.167416
  7217. }
  7218. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7219. KeyAttrFlags: *1 {
  7220. a: 8456
  7221. }
  7222. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7223. KeyAttrDataFloat: *4 {
  7224. a: 0,0,218434821,0
  7225. }
  7226. KeyAttrRefCount: *1 {
  7227. a: 111
  7228. }
  7229. }
  7230. AnimationCurve: 2746991264, "AnimCurve::", "" {
  7231. Default: 89.3741455078125
  7232. KeyVer: 4008
  7233. KeyTime: *111 {
  7234. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7235. }
  7236. KeyValueFloat: *111 {
  7237. a: 89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.45765,89.57438,99.40986,109.4076,102.4405,101.3828,100.308,95.31241,85.2952,80.26826,80.50875,80.74928,84.50933,92.0284,95.78745,95.9789,96.17535,94.50034,92.72632,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37415,89.37413,89.35931,89.34548,89.33263,89.32073,89.30973,89.29964,89.29041,89.28205,89.2745,89.26769,89.2617,89.25641,89.25189,89.24802,89.24483,89.24226,89.24033,89.23897,89.23817,89.23791,89.23815,89.2389,89.24007,89.24172,89.24377,89.24618,89.24897,89.25208,89.25549,89.25919,89.26317,89.26736,89.27174,89.27631,89.28102,89.28588,89.29082,89.29585,89.30093,89.30604,89.31113,89.31624,89.32127,89.32621,89.33105,89.33577,89.34034,89.34471,89.34892,89.35287,89.35658,89.35999,89.36311,89.36588,89.36832,89.37036,89.37198,89.37319,89.37392,89.37418,89.37418,89.44554,89.45641,89.42099,89.36118,89.30301,89.27246,89.29143,89.37415
  7238. }
  7239. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7240. KeyAttrFlags: *1 {
  7241. a: 8456
  7242. }
  7243. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7244. KeyAttrDataFloat: *4 {
  7245. a: 0,0,218434821,0
  7246. }
  7247. KeyAttrRefCount: *1 {
  7248. a: 111
  7249. }
  7250. }
  7251. AnimationCurve: 2746985984, "AnimCurve::", "" {
  7252. Default: 0
  7253. KeyVer: 4008
  7254. KeyTime: *111 {
  7255. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7256. }
  7257. KeyValueFloat: *111 {
  7258. a: 1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,0.9999998,0.9999998,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,0.9999999,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1
  7259. }
  7260. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7261. KeyAttrFlags: *1 {
  7262. a: 8456
  7263. }
  7264. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7265. KeyAttrDataFloat: *4 {
  7266. a: 0,0,218434821,0
  7267. }
  7268. KeyAttrRefCount: *1 {
  7269. a: 111
  7270. }
  7271. }
  7272. AnimationCurve: 2746985824, "AnimCurve::", "" {
  7273. Default: 0
  7274. KeyVer: 4008
  7275. KeyTime: *111 {
  7276. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7277. }
  7278. KeyValueFloat: *111 {
  7279. a: 1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,1,1,0.9999999,1,1,1,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,0.9999999,0.9999999,1,0.9999999
  7280. }
  7281. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7282. KeyAttrFlags: *1 {
  7283. a: 8456
  7284. }
  7285. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7286. KeyAttrDataFloat: *4 {
  7287. a: 0,0,218434821,0
  7288. }
  7289. KeyAttrRefCount: *1 {
  7290. a: 111
  7291. }
  7292. }
  7293. AnimationCurve: 2746989504, "AnimCurve::", "" {
  7294. Default: 0
  7295. KeyVer: 4008
  7296. KeyTime: *111 {
  7297. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000,117004933600,118544472200,120084010800,121623549400,123163088000,124702626600,126242165200,127781703800,129321242400,130860781000,132400319600,133939858200,135479396800,137018935400,138558474000,140098012600,141637551200,143177089800,144716628400,146256167000,147795705600,149335244200,150874782800,152414321400,153953860000,155493398600,157032937200,158572475800,160112014400,161651553000,163191091600,164730630200,166270168800,167809707400,169349246000
  7298. }
  7299. KeyValueFloat: *111 {
  7300. a: 1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,0.9999999,0.9999999,1,1,0.9999999
  7301. }
  7302. ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent
  7303. KeyAttrFlags: *1 {
  7304. a: 8456
  7305. }
  7306. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  7307. KeyAttrDataFloat: *4 {
  7308. a: 0,0,218434821,0
  7309. }
  7310. KeyAttrRefCount: *1 {
  7311. a: 111
  7312. }
  7313. }
  7314. CollectionExclusive: 2732823440, "DisplayLayer::Blueprint_Layer", "DisplayLayer" {
  7315. Properties70: {
  7316. P: "Color", "ColorRGB", "Color", "",0.603921568627451,0.725490196078431,0.898039215686275
  7317. }
  7318. }
  7319. CollectionExclusive: 2732829200, "DisplayLayer::hongche", "DisplayLayer" {
  7320. Properties70: {
  7321. P: "Color", "ColorRGB", "Color", "",0.105882352941176,0.694117647058824,0.580392156862745
  7322. }
  7323. }
  7324. CollectionExclusive: 2732823632, "DisplayLayer::lanche", "DisplayLayer" {
  7325. Properties70: {
  7326. P: "Color", "ColorRGB", "Color", "",0.890196078431373,0.6,0.6
  7327. }
  7328. }
  7329. CollectionExclusive: 2732825360, "DisplayLayer::feiji-1", "DisplayLayer" {
  7330. Properties70: {
  7331. P: "Color", "ColorRGB", "Color", "",0.109803921568627,0.109803921568627,0.694117647058824
  7332. }
  7333. }
  7334. CollectionExclusive: 2732825552, "DisplayLayer::feiji-2", "DisplayLayer" {
  7335. Properties70: {
  7336. P: "Color", "ColorRGB", "Color", "",0.56078431372549,0.882352941176471,0.341176470588235
  7337. }
  7338. }
  7339. CollectionExclusive: 2732825744, "DisplayLayer::ren", "DisplayLayer" {
  7340. Properties70: {
  7341. P: "Color", "ColorRGB", "Color", "",0.345098039215686,0.780392156862745,0.882352941176471
  7342. }
  7343. }
  7344. }
  7345. ; Object connections
  7346. ;------------------------------------------------------------------
  7347. Connections: {
  7348. ;Model::Bip001, Model::RootNode
  7349. C: "OO",2988170048,0
  7350. ;AnimLayer::BaseLayer, AnimStack::Take 001
  7351. C: "OO",2321001696,2412912448
  7352. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7353. C: "OO",2412913280,2321001696
  7354. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7355. C: "OO",2412903296,2321001696
  7356. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7357. C: "OO",2412915568,2321001696
  7358. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7359. C: "OO",2412913488,2321001696
  7360. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7361. C: "OO",2412904128,2321001696
  7362. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7363. C: "OO",2412913904,2321001696
  7364. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7365. C: "OO",2412915984,2321001696
  7366. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7367. C: "OO",2412914736,2321001696
  7368. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7369. C: "OO",2412915152,2321001696
  7370. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7371. C: "OO",2412915360,2321001696
  7372. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7373. C: "OO",2412922224,2321001696
  7374. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7375. C: "OO",2412928672,2321001696
  7376. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7377. C: "OO",2412919312,2321001696
  7378. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7379. C: "OO",2412925552,2321001696
  7380. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7381. C: "OO",2412929504,2321001696
  7382. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7383. C: "OO",2412926384,2321001696
  7384. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7385. C: "OO",2412924928,2321001696
  7386. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7387. C: "OO",2412916400,2321001696
  7388. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7389. C: "OO",2412925344,2321001696
  7390. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7391. C: "OO",2412917024,2321001696
  7392. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7393. C: "OO",2412925760,2321001696
  7394. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7395. C: "OO",2412920560,2321001696
  7396. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7397. C: "OO",2412925968,2321001696
  7398. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7399. C: "OO",2412927632,2321001696
  7400. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7401. C: "OO",2412919936,2321001696
  7402. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7403. C: "OO",2412926592,2321001696
  7404. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7405. C: "OO",2412926176,2321001696
  7406. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7407. C: "OO",2412928880,2321001696
  7408. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7409. C: "OO",2412920144,2321001696
  7410. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7411. C: "OO",2412926800,2321001696
  7412. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7413. C: "OO",2412927008,2321001696
  7414. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7415. C: "OO",2412927216,2321001696
  7416. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7417. C: "OO",2412929088,2321001696
  7418. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7419. C: "OO",2412916816,2321001696
  7420. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7421. C: "OO",2412929296,2321001696
  7422. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7423. C: "OO",2412919520,2321001696
  7424. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7425. C: "OO",2412920352,2321001696
  7426. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7427. C: "OO",2412927424,2321001696
  7428. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7429. C: "OO",2412921808,2321001696
  7430. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7431. C: "OO",2412919728,2321001696
  7432. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7433. C: "OO",2412927840,2321001696
  7434. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7435. C: "OO",2412920768,2321001696
  7436. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7437. C: "OO",2412920976,2321001696
  7438. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7439. C: "OO",2412928048,2321001696
  7440. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7441. C: "OO",2412928256,2321001696
  7442. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7443. C: "OO",2412921184,2321001696
  7444. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7445. C: "OO",2412928464,2321001696
  7446. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7447. C: "OO",2412924512,2321001696
  7448. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7449. C: "OO",2412922016,2321001696
  7450. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7451. C: "OO",2412921392,2321001696
  7452. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7453. C: "OO",2412918272,2321001696
  7454. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7455. C: "OO",2412924304,2321001696
  7456. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7457. C: "OO",2412923264,2321001696
  7458. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7459. C: "OO",2412923680,2321001696
  7460. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7461. C: "OO",2412917232,2321001696
  7462. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7463. C: "OO",2412923888,2321001696
  7464. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7465. C: "OO",2412921600,2321001696
  7466. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7467. C: "OO",2412917440,2321001696
  7468. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7469. C: "OO",2412924096,2321001696
  7470. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7471. C: "OO",2412922432,2321001696
  7472. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7473. C: "OO",2412917648,2321001696
  7474. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7475. C: "OO",2412922640,2321001696
  7476. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7477. C: "OO",2412917856,2321001696
  7478. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7479. C: "OO",2412918064,2321001696
  7480. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7481. C: "OO",2412922848,2321001696
  7482. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7483. C: "OO",2412923056,2321001696
  7484. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7485. C: "OO",2412923472,2321001696
  7486. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7487. C: "OO",2412924720,2321001696
  7488. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7489. C: "OO",2412918480,2321001696
  7490. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7491. C: "OO",2412918688,2321001696
  7492. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7493. C: "OO",2412918896,2321001696
  7494. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7495. C: "OO",2412919104,2321001696
  7496. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7497. C: "OO",2412930960,2321001696
  7498. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7499. C: "OO",2412934288,2321001696
  7500. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7501. C: "OO",2412930128,2321001696
  7502. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7503. C: "OO",2412931168,2321001696
  7504. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7505. C: "OO",2412930336,2321001696
  7506. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7507. C: "OO",2412930544,2321001696
  7508. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7509. C: "OO",2412931376,2321001696
  7510. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7511. C: "OO",2412935536,2321001696
  7512. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7513. C: "OO",2412933664,2321001696
  7514. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7515. C: "OO",2412935328,2321001696
  7516. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7517. C: "OO",2412930752,2321001696
  7518. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7519. C: "OO",2412934496,2321001696
  7520. ;AnimCurveNode::T, AnimLayer::BaseLayer
  7521. C: "OO",2412929920,2321001696
  7522. ;AnimCurveNode::R, AnimLayer::BaseLayer
  7523. C: "OO",2412931584,2321001696
  7524. ;AnimCurveNode::S, AnimLayer::BaseLayer
  7525. C: "OO",2412931792,2321001696
  7526. ;Model::Bip001 Pelvis, Model::Bip001
  7527. C: "OO",2988185392,2988170048
  7528. ;NodeAttribute::, Model::Bip001
  7529. C: "OO",2732824016,2988170048
  7530. ;AnimCurveNode::T, Model::Bip001
  7531. C: "OP",2412913280,2988170048, "Lcl Translation"
  7532. ;AnimCurveNode::R, Model::Bip001
  7533. C: "OP",2412903296,2988170048, "Lcl Rotation"
  7534. ;AnimCurveNode::S, Model::Bip001
  7535. C: "OP",2412915568,2988170048, "Lcl Scaling"
  7536. ;Model::Bip001 Spine, Model::Bip001 Pelvis
  7537. C: "OO",2988167856,2988185392
  7538. ;NodeAttribute::, Model::Bip001 Pelvis
  7539. C: "OO",2732823824,2988185392
  7540. ;AnimCurveNode::T, Model::Bip001 Pelvis
  7541. C: "OP",2412913488,2988185392, "Lcl Translation"
  7542. ;AnimCurveNode::R, Model::Bip001 Pelvis
  7543. C: "OP",2412904128,2988185392, "Lcl Rotation"
  7544. ;AnimCurveNode::S, Model::Bip001 Pelvis
  7545. C: "OP",2412913904,2988185392, "Lcl Scaling"
  7546. ;Model::Bip001 Spine1, Model::Bip001 Spine
  7547. C: "OO",2988176624,2988167856
  7548. ;Model::Bip001 L Thigh, Model::Bip001 Spine
  7549. C: "OO",2419461440,2988167856
  7550. ;Model::Bip001 R Thigh, Model::Bip001 Spine
  7551. C: "OO",2329885824,2988167856
  7552. ;NodeAttribute::, Model::Bip001 Spine
  7553. C: "OO",2732818640,2988167856
  7554. ;AnimCurveNode::T, Model::Bip001 Spine
  7555. C: "OP",2412915984,2988167856, "Lcl Translation"
  7556. ;AnimCurveNode::R, Model::Bip001 Spine
  7557. C: "OP",2412914736,2988167856, "Lcl Rotation"
  7558. ;AnimCurveNode::S, Model::Bip001 Spine
  7559. C: "OP",2412915152,2988167856, "Lcl Scaling"
  7560. ;Model::Bip001 Neck, Model::Bip001 Spine1
  7561. C: "OO",2988161280,2988176624
  7562. ;NodeAttribute::, Model::Bip001 Spine1
  7563. C: "OO",2732824976,2988176624
  7564. ;AnimCurveNode::T, Model::Bip001 Spine1
  7565. C: "OP",2412915360,2988176624, "Lcl Translation"
  7566. ;AnimCurveNode::R, Model::Bip001 Spine1
  7567. C: "OP",2412922224,2988176624, "Lcl Rotation"
  7568. ;AnimCurveNode::S, Model::Bip001 Spine1
  7569. C: "OP",2412928672,2988176624, "Lcl Scaling"
  7570. ;Model::Bip001 L Clavicle, Model::Bip001 Neck
  7571. C: "OO",2988172240,2988161280
  7572. ;Model::Bip001 R Clavicle, Model::Bip001 Neck
  7573. C: "OO",2988202928,2988161280
  7574. ;Model::Bip001 Head, Model::Bip001 Neck
  7575. C: "OO",2419439520,2988161280
  7576. ;NodeAttribute::, Model::Bip001 Neck
  7577. C: "OO",2732819024,2988161280
  7578. ;AnimCurveNode::T, Model::Bip001 Neck
  7579. C: "OP",2412919312,2988161280, "Lcl Translation"
  7580. ;AnimCurveNode::R, Model::Bip001 Neck
  7581. C: "OP",2412925552,2988161280, "Lcl Rotation"
  7582. ;AnimCurveNode::S, Model::Bip001 Neck
  7583. C: "OP",2412929504,2988161280, "Lcl Scaling"
  7584. ;Model::Bip001 L UpperArm, Model::Bip001 L Clavicle
  7585. C: "OO",2988191968,2988172240
  7586. ;NodeAttribute::, Model::Bip001 L Clavicle
  7587. C: "OO",2732827664,2988172240
  7588. ;AnimCurveNode::T, Model::Bip001 L Clavicle
  7589. C: "OP",2412926384,2988172240, "Lcl Translation"
  7590. ;AnimCurveNode::R, Model::Bip001 L Clavicle
  7591. C: "OP",2412924928,2988172240, "Lcl Rotation"
  7592. ;AnimCurveNode::S, Model::Bip001 L Clavicle
  7593. C: "OP",2412916400,2988172240, "Lcl Scaling"
  7594. ;Model::Bip001 L Forearm, Model::Bip001 L UpperArm
  7595. C: "OO",2988163472,2988191968
  7596. ;NodeAttribute::, Model::Bip001 L UpperArm
  7597. C: "OO",2732824208,2988191968
  7598. ;AnimCurveNode::T, Model::Bip001 L UpperArm
  7599. C: "OP",2412925344,2988191968, "Lcl Translation"
  7600. ;AnimCurveNode::R, Model::Bip001 L UpperArm
  7601. C: "OP",2412917024,2988191968, "Lcl Rotation"
  7602. ;AnimCurveNode::S, Model::Bip001 L UpperArm
  7603. C: "OP",2412925760,2988191968, "Lcl Scaling"
  7604. ;Model::Bip001 L Hand, Model::Bip001 L Forearm
  7605. C: "OO",2988200736,2988163472
  7606. ;NodeAttribute::, Model::Bip001 L Forearm
  7607. C: "OO",2732826512,2988163472
  7608. ;AnimCurveNode::T, Model::Bip001 L Forearm
  7609. C: "OP",2412920560,2988163472, "Lcl Translation"
  7610. ;AnimCurveNode::R, Model::Bip001 L Forearm
  7611. C: "OP",2412925968,2988163472, "Lcl Rotation"
  7612. ;AnimCurveNode::S, Model::Bip001 L Forearm
  7613. C: "OP",2412927632,2988163472, "Lcl Scaling"
  7614. ;Model::Bip001 L Finger0, Model::Bip001 L Hand
  7615. C: "OO",2988209504,2988200736
  7616. ;Model::Bip001 L Finger1, Model::Bip001 L Hand
  7617. C: "OO",2988205120,2988200736
  7618. ;Model::Bone001, Model::Bip001 L Hand
  7619. C: "OO",2988213888,2988200736
  7620. ;NodeAttribute::, Model::Bip001 L Hand
  7621. C: "OO",2732821328,2988200736
  7622. ;AnimCurveNode::T, Model::Bip001 L Hand
  7623. C: "OP",2412919936,2988200736, "Lcl Translation"
  7624. ;AnimCurveNode::R, Model::Bip001 L Hand
  7625. C: "OP",2412926592,2988200736, "Lcl Rotation"
  7626. ;AnimCurveNode::S, Model::Bip001 L Hand
  7627. C: "OP",2412926176,2988200736, "Lcl Scaling"
  7628. ;NodeAttribute::, Model::Bip001 L Finger0
  7629. C: "OO",2732819216,2988209504
  7630. ;AnimCurveNode::T, Model::Bip001 L Finger0
  7631. C: "OP",2412928880,2988209504, "Lcl Translation"
  7632. ;AnimCurveNode::R, Model::Bip001 L Finger0
  7633. C: "OP",2412920144,2988209504, "Lcl Rotation"
  7634. ;AnimCurveNode::S, Model::Bip001 L Finger0
  7635. C: "OP",2412926800,2988209504, "Lcl Scaling"
  7636. ;NodeAttribute::, Model::Bip001 L Finger1
  7637. C: "OO",2732819408,2988205120
  7638. ;AnimCurveNode::T, Model::Bip001 L Finger1
  7639. C: "OP",2412927008,2988205120, "Lcl Translation"
  7640. ;AnimCurveNode::R, Model::Bip001 L Finger1
  7641. C: "OP",2412927216,2988205120, "Lcl Rotation"
  7642. ;AnimCurveNode::S, Model::Bip001 L Finger1
  7643. C: "OP",2412929088,2988205120, "Lcl Scaling"
  7644. ;NodeAttribute::, Model::Bone001
  7645. C: "OO",2732819792,2988213888
  7646. ;AnimCurveNode::T, Model::Bone001
  7647. C: "OP",2412916816,2988213888, "Lcl Translation"
  7648. ;AnimCurveNode::R, Model::Bone001
  7649. C: "OP",2412929296,2988213888, "Lcl Rotation"
  7650. ;AnimCurveNode::S, Model::Bone001
  7651. C: "OP",2412919520,2988213888, "Lcl Scaling"
  7652. ;Model::Bip001 R UpperArm, Model::Bip001 R Clavicle
  7653. C: "OO",2988211696,2988202928
  7654. ;NodeAttribute::, Model::Bip001 R Clavicle
  7655. C: "OO",2732821520,2988202928
  7656. ;AnimCurveNode::T, Model::Bip001 R Clavicle
  7657. C: "OP",2412920352,2988202928, "Lcl Translation"
  7658. ;AnimCurveNode::R, Model::Bip001 R Clavicle
  7659. C: "OP",2412927424,2988202928, "Lcl Rotation"
  7660. ;AnimCurveNode::S, Model::Bip001 R Clavicle
  7661. C: "OP",2412921808,2988202928, "Lcl Scaling"
  7662. ;Model::Bip001 R Forearm, Model::Bip001 R UpperArm
  7663. C: "OO",2988216080,2988211696
  7664. ;NodeAttribute::, Model::Bip001 R UpperArm
  7665. C: "OO",2732830160,2988211696
  7666. ;AnimCurveNode::T, Model::Bip001 R UpperArm
  7667. C: "OP",2412919728,2988211696, "Lcl Translation"
  7668. ;AnimCurveNode::R, Model::Bip001 R UpperArm
  7669. C: "OP",2412927840,2988211696, "Lcl Rotation"
  7670. ;AnimCurveNode::S, Model::Bip001 R UpperArm
  7671. C: "OP",2412920768,2988211696, "Lcl Scaling"
  7672. ;Model::Bip001 R Hand, Model::Bip001 R Forearm
  7673. C: "OO",2988218272,2988216080
  7674. ;NodeAttribute::, Model::Bip001 R Forearm
  7675. C: "OO",2732819984,2988216080
  7676. ;AnimCurveNode::T, Model::Bip001 R Forearm
  7677. C: "OP",2412920976,2988216080, "Lcl Translation"
  7678. ;AnimCurveNode::R, Model::Bip001 R Forearm
  7679. C: "OP",2412928048,2988216080, "Lcl Rotation"
  7680. ;AnimCurveNode::S, Model::Bip001 R Forearm
  7681. C: "OP",2412928256,2988216080, "Lcl Scaling"
  7682. ;Model::Bip001 R Finger0, Model::Bip001 R Hand
  7683. C: "OO",2988194160,2988218272
  7684. ;Model::Bip001 R Finger1, Model::Bip001 R Hand
  7685. C: "OO",2988198544,2988218272
  7686. ;Model::Bone007, Model::Bip001 R Hand
  7687. C: "OO",2419426368,2988218272
  7688. ;NodeAttribute::, Model::Bip001 R Hand
  7689. C: "OO",2732820176,2988218272
  7690. ;AnimCurveNode::T, Model::Bip001 R Hand
  7691. C: "OP",2412921184,2988218272, "Lcl Translation"
  7692. ;AnimCurveNode::R, Model::Bip001 R Hand
  7693. C: "OP",2412928464,2988218272, "Lcl Rotation"
  7694. ;AnimCurveNode::S, Model::Bip001 R Hand
  7695. C: "OP",2412924512,2988218272, "Lcl Scaling"
  7696. ;NodeAttribute::, Model::Bip001 R Finger0
  7697. C: "OO",2732820368,2988194160
  7698. ;AnimCurveNode::T, Model::Bip001 R Finger0
  7699. C: "OP",2412922016,2988194160, "Lcl Translation"
  7700. ;AnimCurveNode::R, Model::Bip001 R Finger0
  7701. C: "OP",2412921392,2988194160, "Lcl Rotation"
  7702. ;AnimCurveNode::S, Model::Bip001 R Finger0
  7703. C: "OP",2412918272,2988194160, "Lcl Scaling"
  7704. ;NodeAttribute::, Model::Bip001 R Finger1
  7705. C: "OO",2732820560,2988198544
  7706. ;AnimCurveNode::T, Model::Bip001 R Finger1
  7707. C: "OP",2412924304,2988198544, "Lcl Translation"
  7708. ;AnimCurveNode::R, Model::Bip001 R Finger1
  7709. C: "OP",2412923264,2988198544, "Lcl Rotation"
  7710. ;AnimCurveNode::S, Model::Bip001 R Finger1
  7711. C: "OP",2412923680,2988198544, "Lcl Scaling"
  7712. ;Model::Bone003, Model::Bone007
  7713. C: "OO",2419417600,2419426368
  7714. ;Model::Bone03, Model::Bone007
  7715. C: "OO",2419437328,2419426368
  7716. ;NodeAttribute::, Model::Bone007
  7717. C: "OO",2732830736,2419426368
  7718. ;AnimCurveNode::T, Model::Bone007
  7719. C: "OP",2412917232,2419426368, "Lcl Translation"
  7720. ;AnimCurveNode::R, Model::Bone007
  7721. C: "OP",2412923888,2419426368, "Lcl Rotation"
  7722. ;AnimCurveNode::S, Model::Bone007
  7723. C: "OP",2412921600,2419426368, "Lcl Scaling"
  7724. ;Model::Bone004, Model::Bone003
  7725. C: "OO",2419408832,2419417600
  7726. ;NodeAttribute::, Model::Bone003
  7727. C: "OO",2732824400,2419417600
  7728. ;Model::Bone005, Model::Bone004
  7729. C: "OO",2419430752,2419408832
  7730. ;NodeAttribute::, Model::Bone004
  7731. C: "OO",2732826320,2419408832
  7732. ;Model::Bone006, Model::Bone005
  7733. C: "OO",2419402256,2419430752
  7734. ;NodeAttribute::, Model::Bone005
  7735. C: "OO",2732820752,2419430752
  7736. ;NodeAttribute::, Model::Bone006
  7737. C: "OO",2732820944,2419402256
  7738. ;Model::Bone002, Model::Bone03
  7739. C: "OO",2419448288,2419437328
  7740. ;NodeAttribute::, Model::Bone03
  7741. C: "OO",2732821136,2419437328
  7742. ;NodeAttribute::, Model::Bone002
  7743. C: "OO",2732821712,2419448288
  7744. ;Model::Bone02, Model::Bip001 Head
  7745. C: "OO",2419454864,2419439520
  7746. ;NodeAttribute::, Model::Bip001 Head
  7747. C: "OO",2732821904,2419439520
  7748. ;AnimCurveNode::T, Model::Bip001 Head
  7749. C: "OP",2412917440,2419439520, "Lcl Translation"
  7750. ;AnimCurveNode::R, Model::Bip001 Head
  7751. C: "OP",2412924096,2419439520, "Lcl Rotation"
  7752. ;AnimCurveNode::S, Model::Bip001 Head
  7753. C: "OP",2412922432,2419439520, "Lcl Scaling"
  7754. ;NodeAttribute::, Model::Bone02
  7755. C: "OO",2732829968,2419454864
  7756. ;AnimCurveNode::T, Model::Bone02
  7757. C: "OP",2412917648,2419454864, "Lcl Translation"
  7758. ;AnimCurveNode::R, Model::Bone02
  7759. C: "OP",2412922640,2419454864, "Lcl Rotation"
  7760. ;AnimCurveNode::S, Model::Bone02
  7761. C: "OP",2412917856,2419454864, "Lcl Scaling"
  7762. ;Model::Bip001 L Calf, Model::Bip001 L Thigh
  7763. C: "OO",2419432944,2419461440
  7764. ;NodeAttribute::, Model::Bip001 L Thigh
  7765. C: "OO",2732825168,2419461440
  7766. ;AnimCurveNode::T, Model::Bip001 L Thigh
  7767. C: "OP",2412918064,2419461440, "Lcl Translation"
  7768. ;AnimCurveNode::R, Model::Bip001 L Thigh
  7769. C: "OP",2412922848,2419461440, "Lcl Rotation"
  7770. ;AnimCurveNode::S, Model::Bip001 L Thigh
  7771. C: "OP",2412923056,2419461440, "Lcl Scaling"
  7772. ;Model::Bip001 L Foot, Model::Bip001 L Calf
  7773. C: "OO",2419452672,2419432944
  7774. ;NodeAttribute::, Model::Bip001 L Calf
  7775. C: "OO",2732822096,2419432944
  7776. ;AnimCurveNode::T, Model::Bip001 L Calf
  7777. C: "OP",2412923472,2419432944, "Lcl Translation"
  7778. ;AnimCurveNode::R, Model::Bip001 L Calf
  7779. C: "OP",2412924720,2419432944, "Lcl Rotation"
  7780. ;AnimCurveNode::S, Model::Bip001 L Calf
  7781. C: "OP",2412918480,2419432944, "Lcl Scaling"
  7782. ;Model::Bip001 L Toe0, Model::Bip001 L Foot
  7783. C: "OO",2419457056,2419452672
  7784. ;NodeAttribute::, Model::Bip001 L Foot
  7785. C: "OO",2732822288,2419452672
  7786. ;AnimCurveNode::T, Model::Bip001 L Foot
  7787. C: "OP",2412918688,2419452672, "Lcl Translation"
  7788. ;AnimCurveNode::R, Model::Bip001 L Foot
  7789. C: "OP",2412918896,2419452672, "Lcl Rotation"
  7790. ;AnimCurveNode::S, Model::Bip001 L Foot
  7791. C: "OP",2412919104,2419452672, "Lcl Scaling"
  7792. ;NodeAttribute::, Model::Bip001 L Toe0
  7793. C: "OO",2732822480,2419457056
  7794. ;AnimCurveNode::T, Model::Bip001 L Toe0
  7795. C: "OP",2412930960,2419457056, "Lcl Translation"
  7796. ;AnimCurveNode::R, Model::Bip001 L Toe0
  7797. C: "OP",2412934288,2419457056, "Lcl Rotation"
  7798. ;AnimCurveNode::S, Model::Bip001 L Toe0
  7799. C: "OP",2412930128,2419457056, "Lcl Scaling"
  7800. ;Model::Bip001 R Calf, Model::Bip001 R Thigh
  7801. C: "OO",2329916512,2329885824
  7802. ;NodeAttribute::, Model::Bip001 R Thigh
  7803. C: "OO",2732829008,2329885824
  7804. ;AnimCurveNode::T, Model::Bip001 R Thigh
  7805. C: "OP",2412931168,2329885824, "Lcl Translation"
  7806. ;AnimCurveNode::R, Model::Bip001 R Thigh
  7807. C: "OP",2412930336,2329885824, "Lcl Rotation"
  7808. ;AnimCurveNode::S, Model::Bip001 R Thigh
  7809. C: "OP",2412930544,2329885824, "Lcl Scaling"
  7810. ;Model::Bip001 R Foot, Model::Bip001 R Calf
  7811. C: "OO",2329918704,2329916512
  7812. ;NodeAttribute::, Model::Bip001 R Calf
  7813. C: "OO",2732822864,2329916512
  7814. ;AnimCurveNode::T, Model::Bip001 R Calf
  7815. C: "OP",2412931376,2329916512, "Lcl Translation"
  7816. ;AnimCurveNode::R, Model::Bip001 R Calf
  7817. C: "OP",2412935536,2329916512, "Lcl Rotation"
  7818. ;AnimCurveNode::S, Model::Bip001 R Calf
  7819. C: "OP",2412933664,2329916512, "Lcl Scaling"
  7820. ;Model::Bip001 R Toe0, Model::Bip001 R Foot
  7821. C: "OO",2329920896,2329918704
  7822. ;NodeAttribute::, Model::Bip001 R Foot
  7823. C: "OO",2732823056,2329918704
  7824. ;AnimCurveNode::T, Model::Bip001 R Foot
  7825. C: "OP",2412935328,2329918704, "Lcl Translation"
  7826. ;AnimCurveNode::R, Model::Bip001 R Foot
  7827. C: "OP",2412930752,2329918704, "Lcl Rotation"
  7828. ;AnimCurveNode::S, Model::Bip001 R Foot
  7829. C: "OP",2412934496,2329918704, "Lcl Scaling"
  7830. ;NodeAttribute::, Model::Bip001 R Toe0
  7831. C: "OO",2732823248,2329920896
  7832. ;AnimCurveNode::T, Model::Bip001 R Toe0
  7833. C: "OP",2412929920,2329920896, "Lcl Translation"
  7834. ;AnimCurveNode::R, Model::Bip001 R Toe0
  7835. C: "OP",2412931584,2329920896, "Lcl Rotation"
  7836. ;AnimCurveNode::S, Model::Bip001 R Toe0
  7837. C: "OP",2412931792,2329920896, "Lcl Scaling"
  7838. ;Model::Bip001 R Toe0, DisplayLayer::ren
  7839. C: "OO",2329920896,2732825744
  7840. ;Model::Bip001 R Foot, DisplayLayer::ren
  7841. C: "OO",2329918704,2732825744
  7842. ;Model::Bip001 R Calf, DisplayLayer::ren
  7843. C: "OO",2329916512,2732825744
  7844. ;Model::Bip001 R Thigh, DisplayLayer::ren
  7845. C: "OO",2329885824,2732825744
  7846. ;Model::Bip001 L Toe0, DisplayLayer::ren
  7847. C: "OO",2419457056,2732825744
  7848. ;Model::Bip001 L Foot, DisplayLayer::ren
  7849. C: "OO",2419452672,2732825744
  7850. ;Model::Bip001 L Calf, DisplayLayer::ren
  7851. C: "OO",2419432944,2732825744
  7852. ;Model::Bip001 L Thigh, DisplayLayer::ren
  7853. C: "OO",2419461440,2732825744
  7854. ;Model::Bip001 Head, DisplayLayer::ren
  7855. C: "OO",2419439520,2732825744
  7856. ;Model::Bip001 R Finger1, DisplayLayer::ren
  7857. C: "OO",2988198544,2732825744
  7858. ;Model::Bip001 R Finger0, DisplayLayer::ren
  7859. C: "OO",2988194160,2732825744
  7860. ;Model::Bip001 R Hand, DisplayLayer::ren
  7861. C: "OO",2988218272,2732825744
  7862. ;Model::Bip001 R Forearm, DisplayLayer::ren
  7863. C: "OO",2988216080,2732825744
  7864. ;Model::Bip001 R UpperArm, DisplayLayer::ren
  7865. C: "OO",2988211696,2732825744
  7866. ;Model::Bip001 R Clavicle, DisplayLayer::ren
  7867. C: "OO",2988202928,2732825744
  7868. ;Model::Bip001 L Finger1, DisplayLayer::ren
  7869. C: "OO",2988205120,2732825744
  7870. ;Model::Bip001 L Finger0, DisplayLayer::ren
  7871. C: "OO",2988209504,2732825744
  7872. ;Model::Bip001 L Hand, DisplayLayer::ren
  7873. C: "OO",2988200736,2732825744
  7874. ;Model::Bip001 L Forearm, DisplayLayer::ren
  7875. C: "OO",2988163472,2732825744
  7876. ;Model::Bip001 L UpperArm, DisplayLayer::ren
  7877. C: "OO",2988191968,2732825744
  7878. ;Model::Bip001 L Clavicle, DisplayLayer::ren
  7879. C: "OO",2988172240,2732825744
  7880. ;Model::Bip001 Neck, DisplayLayer::ren
  7881. C: "OO",2988161280,2732825744
  7882. ;Model::Bip001 Spine1, DisplayLayer::ren
  7883. C: "OO",2988176624,2732825744
  7884. ;Model::Bip001 Spine, DisplayLayer::ren
  7885. C: "OO",2988167856,2732825744
  7886. ;Model::Bip001 Pelvis, DisplayLayer::ren
  7887. C: "OO",2988185392,2732825744
  7888. ;Model::Bip001, DisplayLayer::ren
  7889. C: "OO",2988170048,2732825744
  7890. ;AnimCurve::, AnimCurveNode::T
  7891. C: "OP",2736181120,2412913280, "d|X"
  7892. ;AnimCurve::, AnimCurveNode::T
  7893. C: "OP",2736181600,2412913280, "d|Y"
  7894. ;AnimCurve::, AnimCurveNode::T
  7895. C: "OP",2736187040,2412913280, "d|Z"
  7896. ;AnimCurve::, AnimCurveNode::R
  7897. C: "OP",2736184000,2412903296, "d|X"
  7898. ;AnimCurve::, AnimCurveNode::R
  7899. C: "OP",2736184320,2412903296, "d|Y"
  7900. ;AnimCurve::, AnimCurveNode::R
  7901. C: "OP",2736179680,2412903296, "d|Z"
  7902. ;AnimCurve::, AnimCurveNode::S
  7903. C: "OP",2736181440,2412915568, "d|X"
  7904. ;AnimCurve::, AnimCurveNode::S
  7905. C: "OP",2736188960,2412915568, "d|Y"
  7906. ;AnimCurve::, AnimCurveNode::S
  7907. C: "OP",2736183040,2412915568, "d|Z"
  7908. ;AnimCurve::, AnimCurveNode::T
  7909. C: "OP",2736182080,2412913488, "d|X"
  7910. ;AnimCurve::, AnimCurveNode::T
  7911. C: "OP",2736186880,2412913488, "d|Y"
  7912. ;AnimCurve::, AnimCurveNode::T
  7913. C: "OP",2736189120,2412913488, "d|Z"
  7914. ;AnimCurve::, AnimCurveNode::R
  7915. C: "OP",2736179840,2412904128, "d|X"
  7916. ;AnimCurve::, AnimCurveNode::R
  7917. C: "OP",2736188640,2412904128, "d|Y"
  7918. ;AnimCurve::, AnimCurveNode::R
  7919. C: "OP",2736180640,2412904128, "d|Z"
  7920. ;AnimCurve::, AnimCurveNode::S
  7921. C: "OP",2736189280,2412913904, "d|X"
  7922. ;AnimCurve::, AnimCurveNode::S
  7923. C: "OP",2736180800,2412913904, "d|Y"
  7924. ;AnimCurve::, AnimCurveNode::S
  7925. C: "OP",2736181760,2412913904, "d|Z"
  7926. ;AnimCurve::, AnimCurveNode::T
  7927. C: "OP",2736183840,2412915984, "d|X"
  7928. ;AnimCurve::, AnimCurveNode::T
  7929. C: "OP",2736185440,2412915984, "d|Y"
  7930. ;AnimCurve::, AnimCurveNode::T
  7931. C: "OP",2736187520,2412915984, "d|Z"
  7932. ;AnimCurve::, AnimCurveNode::R
  7933. C: "OP",2736183200,2412914736, "d|X"
  7934. ;AnimCurve::, AnimCurveNode::R
  7935. C: "OP",2736183520,2412914736, "d|Y"
  7936. ;AnimCurve::, AnimCurveNode::R
  7937. C: "OP",2736184960,2412914736, "d|Z"
  7938. ;AnimCurve::, AnimCurveNode::S
  7939. C: "OP",2736185600,2412915152, "d|X"
  7940. ;AnimCurve::, AnimCurveNode::S
  7941. C: "OP",2736187840,2412915152, "d|Y"
  7942. ;AnimCurve::, AnimCurveNode::S
  7943. C: "OP",2736188000,2412915152, "d|Z"
  7944. ;AnimCurve::, AnimCurveNode::T
  7945. C: "OP",2736188320,2412915360, "d|X"
  7946. ;AnimCurve::, AnimCurveNode::T
  7947. C: "OP",2736195360,2412915360, "d|Y"
  7948. ;AnimCurve::, AnimCurveNode::T
  7949. C: "OP",2736196800,2412915360, "d|Z"
  7950. ;AnimCurve::, AnimCurveNode::R
  7951. C: "OP",2736195200,2412922224, "d|X"
  7952. ;AnimCurve::, AnimCurveNode::R
  7953. C: "OP",2736197440,2412922224, "d|Y"
  7954. ;AnimCurve::, AnimCurveNode::R
  7955. C: "OP",2736194400,2412922224, "d|Z"
  7956. ;AnimCurve::, AnimCurveNode::S
  7957. C: "OP",2736192800,2412928672, "d|X"
  7958. ;AnimCurve::, AnimCurveNode::S
  7959. C: "OP",2736198240,2412928672, "d|Y"
  7960. ;AnimCurve::, AnimCurveNode::S
  7961. C: "OP",2736194080,2412928672, "d|Z"
  7962. ;AnimCurve::, AnimCurveNode::T
  7963. C: "OP",2736196320,2412919312, "d|X"
  7964. ;AnimCurve::, AnimCurveNode::T
  7965. C: "OP",2736192640,2412919312, "d|Y"
  7966. ;AnimCurve::, AnimCurveNode::T
  7967. C: "OP",2736199680,2412919312, "d|Z"
  7968. ;AnimCurve::, AnimCurveNode::R
  7969. C: "OP",2736192000,2412925552, "d|X"
  7970. ;AnimCurve::, AnimCurveNode::R
  7971. C: "OP",2736199200,2412925552, "d|Y"
  7972. ;AnimCurve::, AnimCurveNode::R
  7973. C: "OP",2736189920,2412925552, "d|Z"
  7974. ;AnimCurve::, AnimCurveNode::S
  7975. C: "OP",2736191360,2412929504, "d|X"
  7976. ;AnimCurve::, AnimCurveNode::S
  7977. C: "OP",2736191840,2412929504, "d|Y"
  7978. ;AnimCurve::, AnimCurveNode::S
  7979. C: "OP",2736192320,2412929504, "d|Z"
  7980. ;AnimCurve::, AnimCurveNode::T
  7981. C: "OP",2736190240,2412926384, "d|X"
  7982. ;AnimCurve::, AnimCurveNode::T
  7983. C: "OP",2736196000,2412926384, "d|Y"
  7984. ;AnimCurve::, AnimCurveNode::T
  7985. C: "OP",2736190400,2412926384, "d|Z"
  7986. ;AnimCurve::, AnimCurveNode::R
  7987. C: "OP",2736191680,2412924928, "d|X"
  7988. ;AnimCurve::, AnimCurveNode::R
  7989. C: "OP",2736192480,2412924928, "d|Y"
  7990. ;AnimCurve::, AnimCurveNode::R
  7991. C: "OP",2736197920,2412924928, "d|Z"
  7992. ;AnimCurve::, AnimCurveNode::S
  7993. C: "OP",2736190560,2412916400, "d|X"
  7994. ;AnimCurve::, AnimCurveNode::S
  7995. C: "OP",2736195520,2412916400, "d|Y"
  7996. ;AnimCurve::, AnimCurveNode::S
  7997. C: "OP",2736195680,2412916400, "d|Z"
  7998. ;AnimCurve::, AnimCurveNode::T
  7999. C: "OP",2736196960,2412925344, "d|X"
  8000. ;AnimCurve::, AnimCurveNode::T
  8001. C: "OP",2736196480,2412925344, "d|Y"
  8002. ;AnimCurve::, AnimCurveNode::T
  8003. C: "OP",2736197120,2412925344, "d|Z"
  8004. ;AnimCurve::, AnimCurveNode::R
  8005. C: "OP",2736191040,2412917024, "d|X"
  8006. ;AnimCurve::, AnimCurveNode::R
  8007. C: "OP",2736198400,2412917024, "d|Y"
  8008. ;AnimCurve::, AnimCurveNode::R
  8009. C: "OP",2736198720,2412917024, "d|Z"
  8010. ;AnimCurve::, AnimCurveNode::S
  8011. C: "OP",2736202880,2412925760, "d|X"
  8012. ;AnimCurve::, AnimCurveNode::S
  8013. C: "OP",2736200480,2412925760, "d|Y"
  8014. ;AnimCurve::, AnimCurveNode::S
  8015. C: "OP",2736202560,2412925760, "d|Z"
  8016. ;AnimCurve::, AnimCurveNode::T
  8017. C: "OP",2736204800,2412920560, "d|X"
  8018. ;AnimCurve::, AnimCurveNode::T
  8019. C: "OP",2736200800,2412920560, "d|Y"
  8020. ;AnimCurve::, AnimCurveNode::T
  8021. C: "OP",2736206080,2412920560, "d|Z"
  8022. ;AnimCurve::, AnimCurveNode::R
  8023. C: "OP",2736200000,2412925968, "d|X"
  8024. ;AnimCurve::, AnimCurveNode::R
  8025. C: "OP",2736201440,2412925968, "d|Y"
  8026. ;AnimCurve::, AnimCurveNode::R
  8027. C: "OP",2736202080,2412925968, "d|Z"
  8028. ;AnimCurve::, AnimCurveNode::S
  8029. C: "OP",2736207520,2412927632, "d|X"
  8030. ;AnimCurve::, AnimCurveNode::S
  8031. C: "OP",2736205600,2412927632, "d|Y"
  8032. ;AnimCurve::, AnimCurveNode::S
  8033. C: "OP",2736204960,2412927632, "d|Z"
  8034. ;AnimCurve::, AnimCurveNode::T
  8035. C: "OP",2736200160,2412919936, "d|X"
  8036. ;AnimCurve::, AnimCurveNode::T
  8037. C: "OP",2736205120,2412919936, "d|Y"
  8038. ;AnimCurve::, AnimCurveNode::T
  8039. C: "OP",2736200960,2412919936, "d|Z"
  8040. ;AnimCurve::, AnimCurveNode::R
  8041. C: "OP",2736207200,2412926592, "d|X"
  8042. ;AnimCurve::, AnimCurveNode::R
  8043. C: "OP",2736207840,2412926592, "d|Y"
  8044. ;AnimCurve::, AnimCurveNode::R
  8045. C: "OP",2736202720,2412926592, "d|Z"
  8046. ;AnimCurve::, AnimCurveNode::S
  8047. C: "OP",2736205920,2412926176, "d|X"
  8048. ;AnimCurve::, AnimCurveNode::S
  8049. C: "OP",2736206400,2412926176, "d|Y"
  8050. ;AnimCurve::, AnimCurveNode::S
  8051. C: "OP",2736208000,2412926176, "d|Z"
  8052. ;AnimCurve::, AnimCurveNode::T
  8053. C: "OP",2736203520,2412928880, "d|X"
  8054. ;AnimCurve::, AnimCurveNode::T
  8055. C: "OP",2736204320,2412928880, "d|Y"
  8056. ;AnimCurve::, AnimCurveNode::T
  8057. C: "OP",2736203840,2412928880, "d|Z"
  8058. ;AnimCurve::, AnimCurveNode::R
  8059. C: "OP",2736209760,2412920144, "d|X"
  8060. ;AnimCurve::, AnimCurveNode::R
  8061. C: "OP",2736201760,2412920144, "d|Y"
  8062. ;AnimCurve::, AnimCurveNode::R
  8063. C: "OP",2736208160,2412920144, "d|Z"
  8064. ;AnimCurve::, AnimCurveNode::S
  8065. C: "OP",2736208480,2412926800, "d|X"
  8066. ;AnimCurve::, AnimCurveNode::S
  8067. C: "OP",2736209280,2412926800, "d|Y"
  8068. ;AnimCurve::, AnimCurveNode::S
  8069. C: "OP",2736201280,2412926800, "d|Z"
  8070. ;AnimCurve::, AnimCurveNode::T
  8071. C: "OP",2736209600,2412927008, "d|X"
  8072. ;AnimCurve::, AnimCurveNode::T
  8073. C: "OP",2736211520,2412927008, "d|Y"
  8074. ;AnimCurve::, AnimCurveNode::T
  8075. C: "OP",2736211840,2412927008, "d|Z"
  8076. ;AnimCurve::, AnimCurveNode::R
  8077. C: "OP",2736210400,2412927216, "d|X"
  8078. ;AnimCurve::, AnimCurveNode::R
  8079. C: "OP",2736211040,2412927216, "d|Y"
  8080. ;AnimCurve::, AnimCurveNode::R
  8081. C: "OP",2736210240,2412927216, "d|Z"
  8082. ;AnimCurve::, AnimCurveNode::S
  8083. C: "OP",2736211200,2412929088, "d|X"
  8084. ;AnimCurve::, AnimCurveNode::S
  8085. C: "OP",2736211360,2412929088, "d|Y"
  8086. ;AnimCurve::, AnimCurveNode::S
  8087. C: "OP",2736212160,2412929088, "d|Z"
  8088. ;AnimCurve::, AnimCurveNode::T
  8089. C: "OP",2736212800,2412916816, "d|X"
  8090. ;AnimCurve::, AnimCurveNode::T
  8091. C: "OP",2736158240,2412916816, "d|Y"
  8092. ;AnimCurve::, AnimCurveNode::T
  8093. C: "OP",2736153760,2412916816, "d|Z"
  8094. ;AnimCurve::, AnimCurveNode::R
  8095. C: "OP",2736149280,2412929296, "d|X"
  8096. ;AnimCurve::, AnimCurveNode::R
  8097. C: "OP",2736151360,2412929296, "d|Y"
  8098. ;AnimCurve::, AnimCurveNode::R
  8099. C: "OP",2736152640,2412929296, "d|Z"
  8100. ;AnimCurve::, AnimCurveNode::S
  8101. C: "OP",2736158400,2412919520, "d|X"
  8102. ;AnimCurve::, AnimCurveNode::S
  8103. C: "OP",2736154880,2412919520, "d|Y"
  8104. ;AnimCurve::, AnimCurveNode::S
  8105. C: "OP",2736153280,2412919520, "d|Z"
  8106. ;AnimCurve::, AnimCurveNode::T
  8107. C: "OP",2736153120,2412920352, "d|X"
  8108. ;AnimCurve::, AnimCurveNode::T
  8109. C: "OP",2736150720,2412920352, "d|Y"
  8110. ;AnimCurve::, AnimCurveNode::T
  8111. C: "OP",2736155360,2412920352, "d|Z"
  8112. ;AnimCurve::, AnimCurveNode::R
  8113. C: "OP",2736151680,2412927424, "d|X"
  8114. ;AnimCurve::, AnimCurveNode::R
  8115. C: "OP",2736158720,2412927424, "d|Y"
  8116. ;AnimCurve::, AnimCurveNode::R
  8117. C: "OP",2736151040,2412927424, "d|Z"
  8118. ;AnimCurve::, AnimCurveNode::S
  8119. C: "OP",2736148960,2412921808, "d|X"
  8120. ;AnimCurve::, AnimCurveNode::S
  8121. C: "OP",2736154080,2412921808, "d|Y"
  8122. ;AnimCurve::, AnimCurveNode::S
  8123. C: "OP",2736153440,2412921808, "d|Z"
  8124. ;AnimCurve::, AnimCurveNode::T
  8125. C: "OP",2736152000,2412919728, "d|X"
  8126. ;AnimCurve::, AnimCurveNode::T
  8127. C: "OP",2736150400,2412919728, "d|Y"
  8128. ;AnimCurve::, AnimCurveNode::T
  8129. C: "OP",2736151200,2412919728, "d|Z"
  8130. ;AnimCurve::, AnimCurveNode::R
  8131. C: "OP",2736150880,2412927840, "d|X"
  8132. ;AnimCurve::, AnimCurveNode::R
  8133. C: "OP",2736155200,2412927840, "d|Y"
  8134. ;AnimCurve::, AnimCurveNode::R
  8135. C: "OP",2736156000,2412927840, "d|Z"
  8136. ;AnimCurve::, AnimCurveNode::S
  8137. C: "OP",2736153920,2412920768, "d|X"
  8138. ;AnimCurve::, AnimCurveNode::S
  8139. C: "OP",2736154400,2412920768, "d|Y"
  8140. ;AnimCurve::, AnimCurveNode::S
  8141. C: "OP",2736154720,2412920768, "d|Z"
  8142. ;AnimCurve::, AnimCurveNode::T
  8143. C: "OP",2736156160,2412920976, "d|X"
  8144. ;AnimCurve::, AnimCurveNode::T
  8145. C: "OP",2736156640,2412920976, "d|Y"
  8146. ;AnimCurve::, AnimCurveNode::T
  8147. C: "OP",2736156960,2412920976, "d|Z"
  8148. ;AnimCurve::, AnimCurveNode::R
  8149. C: "OP",2736157440,2412928048, "d|X"
  8150. ;AnimCurve::, AnimCurveNode::R
  8151. C: "OP",2736161600,2412928048, "d|Y"
  8152. ;AnimCurve::, AnimCurveNode::R
  8153. C: "OP",2736162880,2412928048, "d|Z"
  8154. ;AnimCurve::, AnimCurveNode::S
  8155. C: "OP",2736168640,2412928256, "d|X"
  8156. ;AnimCurve::, AnimCurveNode::S
  8157. C: "OP",2736165120,2412928256, "d|Y"
  8158. ;AnimCurve::, AnimCurveNode::S
  8159. C: "OP",2736168320,2412928256, "d|Z"
  8160. ;AnimCurve::, AnimCurveNode::T
  8161. C: "OP",2736161280,2412921184, "d|X"
  8162. ;AnimCurve::, AnimCurveNode::T
  8163. C: "OP",2736167520,2412921184, "d|Y"
  8164. ;AnimCurve::, AnimCurveNode::T
  8165. C: "OP",2736163520,2412921184, "d|Z"
  8166. ;AnimCurve::, AnimCurveNode::R
  8167. C: "OP",2736166560,2412928464, "d|X"
  8168. ;AnimCurve::, AnimCurveNode::R
  8169. C: "OP",2736161440,2412928464, "d|Y"
  8170. ;AnimCurve::, AnimCurveNode::R
  8171. C: "OP",2736161920,2412928464, "d|Z"
  8172. ;AnimCurve::, AnimCurveNode::S
  8173. C: "OP",2736163680,2412924512, "d|X"
  8174. ;AnimCurve::, AnimCurveNode::S
  8175. C: "OP",2736162080,2412924512, "d|Y"
  8176. ;AnimCurve::, AnimCurveNode::S
  8177. C: "OP",2736159840,2412924512, "d|Z"
  8178. ;AnimCurve::, AnimCurveNode::T
  8179. C: "OP",2736162240,2412922016, "d|X"
  8180. ;AnimCurve::, AnimCurveNode::T
  8181. C: "OP",2736162400,2412922016, "d|Y"
  8182. ;AnimCurve::, AnimCurveNode::T
  8183. C: "OP",2736163360,2412922016, "d|Z"
  8184. ;AnimCurve::, AnimCurveNode::R
  8185. C: "OP",2736167680,2412921392, "d|X"
  8186. ;AnimCurve::, AnimCurveNode::R
  8187. C: "OP",2736166240,2412921392, "d|Y"
  8188. ;AnimCurve::, AnimCurveNode::R
  8189. C: "OP",2736160800,2412921392, "d|Z"
  8190. ;AnimCurve::, AnimCurveNode::S
  8191. C: "OP",2736161120,2412918272, "d|X"
  8192. ;AnimCurve::, AnimCurveNode::S
  8193. C: "OP",2736163200,2412918272, "d|Y"
  8194. ;AnimCurve::, AnimCurveNode::S
  8195. C: "OP",2736165760,2412918272, "d|Z"
  8196. ;AnimCurve::, AnimCurveNode::T
  8197. C: "OP",2736165440,2412924304, "d|X"
  8198. ;AnimCurve::, AnimCurveNode::T
  8199. C: "OP",2736167040,2412924304, "d|Y"
  8200. ;AnimCurve::, AnimCurveNode::T
  8201. C: "OP",2736166400,2412924304, "d|Z"
  8202. ;AnimCurve::, AnimCurveNode::R
  8203. C: "OP",2736160960,2412923264, "d|X"
  8204. ;AnimCurve::, AnimCurveNode::R
  8205. C: "OP",2736164000,2412923264, "d|Y"
  8206. ;AnimCurve::, AnimCurveNode::R
  8207. C: "OP",2736164640,2412923264, "d|Z"
  8208. ;AnimCurve::, AnimCurveNode::S
  8209. C: "OP",2736164960,2412923680, "d|X"
  8210. ;AnimCurve::, AnimCurveNode::S
  8211. C: "OP",2736165600,2412923680, "d|Y"
  8212. ;AnimCurve::, AnimCurveNode::S
  8213. C: "OP",2736160160,2412923680, "d|Z"
  8214. ;AnimCurve::, AnimCurveNode::T
  8215. C: "OP",2502510784,2412917232, "d|X"
  8216. ;AnimCurve::, AnimCurveNode::T
  8217. C: "OP",2502511264,2412917232, "d|Y"
  8218. ;AnimCurve::, AnimCurveNode::T
  8219. C: "OP",2502508384,2412917232, "d|Z"
  8220. ;AnimCurve::, AnimCurveNode::R
  8221. C: "OP",2502510144,2412923888, "d|X"
  8222. ;AnimCurve::, AnimCurveNode::R
  8223. C: "OP",2502510304,2412923888, "d|Y"
  8224. ;AnimCurve::, AnimCurveNode::R
  8225. C: "OP",2502507264,2412923888, "d|Z"
  8226. ;AnimCurve::, AnimCurveNode::S
  8227. C: "OP",2502511744,2412921600, "d|X"
  8228. ;AnimCurve::, AnimCurveNode::S
  8229. C: "OP",2502507424,2412921600, "d|Y"
  8230. ;AnimCurve::, AnimCurveNode::S
  8231. C: "OP",2502511424,2412921600, "d|Z"
  8232. ;AnimCurve::, AnimCurveNode::T
  8233. C: "OP",2502496864,2412917440, "d|X"
  8234. ;AnimCurve::, AnimCurveNode::T
  8235. C: "OP",2502505824,2412917440, "d|Y"
  8236. ;AnimCurve::, AnimCurveNode::T
  8237. C: "OP",2502497504,2412917440, "d|Z"
  8238. ;AnimCurve::, AnimCurveNode::R
  8239. C: "OP",2502505984,2412924096, "d|X"
  8240. ;AnimCurve::, AnimCurveNode::R
  8241. C: "OP",2502497184,2412924096, "d|Y"
  8242. ;AnimCurve::, AnimCurveNode::R
  8243. C: "OP",2502501824,2412924096, "d|Z"
  8244. ;AnimCurve::, AnimCurveNode::S
  8245. C: "OP",2502506144,2412922432, "d|X"
  8246. ;AnimCurve::, AnimCurveNode::S
  8247. C: "OP",2502504544,2412922432, "d|Y"
  8248. ;AnimCurve::, AnimCurveNode::S
  8249. C: "OP",2502496704,2412922432, "d|Z"
  8250. ;AnimCurve::, AnimCurveNode::T
  8251. C: "OP",2502502144,2412917648, "d|X"
  8252. ;AnimCurve::, AnimCurveNode::T
  8253. C: "OP",2502499744,2412917648, "d|Y"
  8254. ;AnimCurve::, AnimCurveNode::T
  8255. C: "OP",2502505344,2412917648, "d|Z"
  8256. ;AnimCurve::, AnimCurveNode::R
  8257. C: "OP",2502502464,2412922640, "d|X"
  8258. ;AnimCurve::, AnimCurveNode::R
  8259. C: "OP",2502502624,2412922640, "d|Y"
  8260. ;AnimCurve::, AnimCurveNode::R
  8261. C: "OP",2502503904,2412922640, "d|Z"
  8262. ;AnimCurve::, AnimCurveNode::S
  8263. C: "OP",2502501504,2412917856, "d|X"
  8264. ;AnimCurve::, AnimCurveNode::S
  8265. C: "OP",2502498784,2412917856, "d|Y"
  8266. ;AnimCurve::, AnimCurveNode::S
  8267. C: "OP",2502497824,2412917856, "d|Z"
  8268. ;AnimCurve::, AnimCurveNode::T
  8269. C: "OP",2502498144,2412918064, "d|X"
  8270. ;AnimCurve::, AnimCurveNode::T
  8271. C: "OP",2502501664,2412918064, "d|Y"
  8272. ;AnimCurve::, AnimCurveNode::T
  8273. C: "OP",2502499264,2412918064, "d|Z"
  8274. ;AnimCurve::, AnimCurveNode::R
  8275. C: "OP",2502503744,2412922848, "d|X"
  8276. ;AnimCurve::, AnimCurveNode::R
  8277. C: "OP",2502504224,2412922848, "d|Y"
  8278. ;AnimCurve::, AnimCurveNode::R
  8279. C: "OP",2502499424,2412922848, "d|Z"
  8280. ;AnimCurve::, AnimCurveNode::S
  8281. C: "OP",2502501344,2412923056, "d|X"
  8282. ;AnimCurve::, AnimCurveNode::S
  8283. C: "OP",2502501984,2412923056, "d|Y"
  8284. ;AnimCurve::, AnimCurveNode::S
  8285. C: "OP",2502500544,2412923056, "d|Z"
  8286. ;AnimCurve::, AnimCurveNode::T
  8287. C: "OP",2502500864,2412923472, "d|X"
  8288. ;AnimCurve::, AnimCurveNode::T
  8289. C: "OP",2502501024,2412923472, "d|Y"
  8290. ;AnimCurve::, AnimCurveNode::T
  8291. C: "OP",2502511584,2412923472, "d|Z"
  8292. ;AnimCurve::, AnimCurveNode::R
  8293. C: "OP",2502512064,2412924720, "d|X"
  8294. ;AnimCurve::, AnimCurveNode::R
  8295. C: "OP",2502506784,2412924720, "d|Y"
  8296. ;AnimCurve::, AnimCurveNode::R
  8297. C: "OP",2502512384,2412924720, "d|Z"
  8298. ;AnimCurve::, AnimCurveNode::S
  8299. C: "OP",2502507584,2412918480, "d|X"
  8300. ;AnimCurve::, AnimCurveNode::S
  8301. C: "OP",2502509024,2412918480, "d|Y"
  8302. ;AnimCurve::, AnimCurveNode::S
  8303. C: "OP",2502512544,2412918480, "d|Z"
  8304. ;AnimCurve::, AnimCurveNode::T
  8305. C: "OP",2363402112,2412918688, "d|X"
  8306. ;AnimCurve::, AnimCurveNode::T
  8307. C: "OP",2363405632,2412918688, "d|Y"
  8308. ;AnimCurve::, AnimCurveNode::T
  8309. C: "OP",2363406432,2412918688, "d|Z"
  8310. ;AnimCurve::, AnimCurveNode::R
  8311. C: "OP",2363405952,2412918896, "d|X"
  8312. ;AnimCurve::, AnimCurveNode::R
  8313. C: "OP",2363400512,2412918896, "d|Y"
  8314. ;AnimCurve::, AnimCurveNode::R
  8315. C: "OP",2363407232,2412918896, "d|Z"
  8316. ;AnimCurve::, AnimCurveNode::S
  8317. C: "OP",2363401632,2412919104, "d|X"
  8318. ;AnimCurve::, AnimCurveNode::S
  8319. C: "OP",2363406112,2412919104, "d|Y"
  8320. ;AnimCurve::, AnimCurveNode::S
  8321. C: "OP",2363404352,2412919104, "d|Z"
  8322. ;AnimCurve::, AnimCurveNode::T
  8323. C: "OP",2363402592,2412930960, "d|X"
  8324. ;AnimCurve::, AnimCurveNode::T
  8325. C: "OP",2363400832,2412930960, "d|Y"
  8326. ;AnimCurve::, AnimCurveNode::T
  8327. C: "OP",2363400992,2412930960, "d|Z"
  8328. ;AnimCurve::, AnimCurveNode::R
  8329. C: "OP",2363406592,2412934288, "d|X"
  8330. ;AnimCurve::, AnimCurveNode::R
  8331. C: "OP",2363401952,2412934288, "d|Y"
  8332. ;AnimCurve::, AnimCurveNode::R
  8333. C: "OP",2363402272,2412934288, "d|Z"
  8334. ;AnimCurve::, AnimCurveNode::S
  8335. C: "OP",2363404032,2412930128, "d|X"
  8336. ;AnimCurve::, AnimCurveNode::S
  8337. C: "OP",2363402752,2412930128, "d|Y"
  8338. ;AnimCurve::, AnimCurveNode::S
  8339. C: "OP",2363404672,2412930128, "d|Z"
  8340. ;AnimCurve::, AnimCurveNode::T
  8341. C: "OP",2747963216,2412931168, "d|X"
  8342. ;AnimCurve::, AnimCurveNode::T
  8343. C: "OP",2747958896,2412931168, "d|Y"
  8344. ;AnimCurve::, AnimCurveNode::T
  8345. C: "OP",2747963856,2412931168, "d|Z"
  8346. ;AnimCurve::, AnimCurveNode::R
  8347. C: "OP",2747960976,2412930336, "d|X"
  8348. ;AnimCurve::, AnimCurveNode::R
  8349. C: "OP",2747972336,2412930336, "d|Y"
  8350. ;AnimCurve::, AnimCurveNode::R
  8351. C: "OP",2747972176,2412930336, "d|Z"
  8352. ;AnimCurve::, AnimCurveNode::S
  8353. C: "OP",2748020816,2412930544, "d|X"
  8354. ;AnimCurve::, AnimCurveNode::S
  8355. C: "OP",2748021456,2412930544, "d|Y"
  8356. ;AnimCurve::, AnimCurveNode::S
  8357. C: "OP",2748018416,2412930544, "d|Z"
  8358. ;AnimCurve::, AnimCurveNode::T
  8359. C: "OP",2330789568,2412931376, "d|X"
  8360. ;AnimCurve::, AnimCurveNode::T
  8361. C: "OP",2330789888,2412931376, "d|Y"
  8362. ;AnimCurve::, AnimCurveNode::T
  8363. C: "OP",2330791168,2412931376, "d|Z"
  8364. ;AnimCurve::, AnimCurveNode::R
  8365. C: "OP",2330792768,2412935536, "d|X"
  8366. ;AnimCurve::, AnimCurveNode::R
  8367. C: "OP",2330793248,2412935536, "d|Y"
  8368. ;AnimCurve::, AnimCurveNode::R
  8369. C: "OP",2503831984,2412935536, "d|Z"
  8370. ;AnimCurve::, AnimCurveNode::S
  8371. C: "OP",2503853744,2412933664, "d|X"
  8372. ;AnimCurve::, AnimCurveNode::S
  8373. C: "OP",2503803024,2412933664, "d|Y"
  8374. ;AnimCurve::, AnimCurveNode::S
  8375. C: "OP",2503798864,2412933664, "d|Z"
  8376. ;AnimCurve::, AnimCurveNode::T
  8377. C: "OP",2502507904,2412935328, "d|X"
  8378. ;AnimCurve::, AnimCurveNode::T
  8379. C: "OP",2502509344,2412935328, "d|Y"
  8380. ;AnimCurve::, AnimCurveNode::T
  8381. C: "OP",1240545520,2412935328, "d|Z"
  8382. ;AnimCurve::, AnimCurveNode::R
  8383. C: "OP",1240546960,2412930752, "d|X"
  8384. ;AnimCurve::, AnimCurveNode::R
  8385. C: "OP",1638504112,2412930752, "d|Y"
  8386. ;AnimCurve::, AnimCurveNode::R
  8387. C: "OP",1638501712,2412930752, "d|Z"
  8388. ;AnimCurve::, AnimCurveNode::S
  8389. C: "OP",2317253968,2412934496, "d|X"
  8390. ;AnimCurve::, AnimCurveNode::S
  8391. C: "OP",2317255568,2412934496, "d|Y"
  8392. ;AnimCurve::, AnimCurveNode::S
  8393. C: "OP",1241670992,2412934496, "d|Z"
  8394. ;AnimCurve::, AnimCurveNode::T
  8395. C: "OP",2746990944,2412929920, "d|X"
  8396. ;AnimCurve::, AnimCurveNode::T
  8397. C: "OP",2746983584,2412929920, "d|Y"
  8398. ;AnimCurve::, AnimCurveNode::T
  8399. C: "OP",2746983104,2412929920, "d|Z"
  8400. ;AnimCurve::, AnimCurveNode::R
  8401. C: "OP",2746988064,2412931584, "d|X"
  8402. ;AnimCurve::, AnimCurveNode::R
  8403. C: "OP",2746984064,2412931584, "d|Y"
  8404. ;AnimCurve::, AnimCurveNode::R
  8405. C: "OP",2746991264,2412931584, "d|Z"
  8406. ;AnimCurve::, AnimCurveNode::S
  8407. C: "OP",2746985984,2412931792, "d|X"
  8408. ;AnimCurve::, AnimCurveNode::S
  8409. C: "OP",2746985824,2412931792, "d|Y"
  8410. ;AnimCurve::, AnimCurveNode::S
  8411. C: "OP",2746989504,2412931792, "d|Z"
  8412. }
  8413. ;Takes section
  8414. ;----------------------------------------------------
  8415. Takes: {
  8416. Current: ""
  8417. Take: "Take 001" {
  8418. FileName: "Take_001.tak"
  8419. LocalTime: 0,169349246000
  8420. ReferenceTime: 0,169349246000
  8421. }
  8422. }