| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524 |
- ; FBX 7.5.0 project file
- ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
- ; All rights reserved.
- ; ----------------------------------------------------
- FBXHeaderExtension: {
- FBXHeaderVersion: 1003
- FBXVersion: 7500
- CreationTimeStamp: {
- Version: 1000
- Year: 2021
- Month: 4
- Day: 5
- Hour: 13
- Minute: 32
- Second: 27
- Millisecond: 516
- }
- Creator: "FBX SDK/FBX Plugins version 2016.1.2"
- SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
- Type: "UserData"
- Version: 100
- MetaData: {
- Version: 100
- Title: ""
- Subject: ""
- Author: ""
- Keywords: ""
- Revision: ""
- Comment: ""
- }
- Properties70: {
- P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Wall_Thick_Curved_Crenelation_01.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Wall_Thick_Curved_Crenelation_01.fbx"
- P: "Original", "Compound", "", ""
- P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "Original|ApplicationName", "KString", "", "", "Maya LT"
- P: "Original|ApplicationVersion", "KString", "", "", "2016"
- P: "Original|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:32:27.516"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Wall_Thick_Curved_Crenelation_01.fbx"
- P: "LastSaved", "Compound", "", ""
- P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
- P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
- P: "LastSaved|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:32:27.516"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_10_Unity_EXPORT.mlt"
- }
- }
- }
- GlobalSettings: {
- Version: 1000
- Properties70: {
- P: "UpAxis", "int", "Integer", "",1
- P: "UpAxisSign", "int", "Integer", "",1
- P: "FrontAxis", "int", "Integer", "",2
- P: "FrontAxisSign", "int", "Integer", "",1
- P: "CoordAxis", "int", "Integer", "",0
- P: "CoordAxisSign", "int", "Integer", "",1
- P: "OriginalUpAxis", "int", "Integer", "",1
- P: "OriginalUpAxisSign", "int", "Integer", "",1
- P: "UnitScaleFactor", "double", "Number", "",1
- P: "OriginalUnitScaleFactor", "double", "Number", "",1
- P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
- P: "DefaultCamera", "KString", "", "", "Producer Perspective"
- P: "TimeMode", "enum", "", "",6
- P: "TimeProtocol", "enum", "", "",2
- P: "SnapOnFrameMode", "enum", "", "",0
- P: "TimeSpanStart", "KTime", "Time", "",1539538600
- P: "TimeSpanStop", "KTime", "Time", "",92372316000
- P: "CustomFrameRate", "double", "Number", "",-1
- P: "TimeMarker", "Compound", "", ""
- P: "CurrentTimeMarker", "int", "Integer", "",-1
- }
- }
- ; Documents Description
- ;------------------------------------------------------------------
- Documents: {
- Count: 1
- Document: 2271771985072, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 49
- ObjectType: "GlobalSettings" {
- Count: 1
- }
- ObjectType: "AnimationStack" {
- Count: 1
- PropertyTemplate: "FbxAnimStack" {
- Properties70: {
- P: "Description", "KString", "", "", ""
- P: "LocalStart", "KTime", "Time", "",0
- P: "LocalStop", "KTime", "Time", "",0
- P: "ReferenceStart", "KTime", "Time", "",0
- P: "ReferenceStop", "KTime", "Time", "",0
- }
- }
- }
- ObjectType: "AnimationLayer" {
- Count: 1
- PropertyTemplate: "FbxAnimLayer" {
- Properties70: {
- P: "Weight", "Number", "", "A",100
- P: "Mute", "bool", "", "",0
- P: "Solo", "bool", "", "",0
- P: "Lock", "bool", "", "",0
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BlendMode", "enum", "", "",0
- P: "RotationAccumulationMode", "enum", "", "",0
- P: "ScaleAccumulationMode", "enum", "", "",0
- P: "BlendModeBypass", "ULongLong", "", "",0
- }
- }
- }
- ObjectType: "NodeAttribute" {
- Count: 2
- PropertyTemplate: "FbxNull" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "Size", "double", "Number", "",100
- P: "Look", "enum", "", "",1
- }
- }
- }
- ObjectType: "Model" {
- Count: 15
- PropertyTemplate: "FbxNode" {
- Properties70: {
- P: "QuaternionInterpolate", "enum", "", "",0
- P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "TranslationActive", "bool", "", "",0
- P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMinX", "bool", "", "",0
- P: "TranslationMinY", "bool", "", "",0
- P: "TranslationMinZ", "bool", "", "",0
- P: "TranslationMaxX", "bool", "", "",0
- P: "TranslationMaxY", "bool", "", "",0
- P: "TranslationMaxZ", "bool", "", "",0
- P: "RotationOrder", "enum", "", "",0
- P: "RotationSpaceForLimitOnly", "bool", "", "",0
- P: "RotationStiffnessX", "double", "Number", "",0
- P: "RotationStiffnessY", "double", "Number", "",0
- P: "RotationStiffnessZ", "double", "Number", "",0
- P: "AxisLen", "double", "Number", "",10
- P: "PreRotation", "Vector3D", "Vector", "",0,0,0
- P: "PostRotation", "Vector3D", "Vector", "",0,0,0
- P: "RotationActive", "bool", "", "",0
- P: "RotationMin", "Vector3D", "Vector", "",0,0,0
- P: "RotationMax", "Vector3D", "Vector", "",0,0,0
- P: "RotationMinX", "bool", "", "",0
- P: "RotationMinY", "bool", "", "",0
- P: "RotationMinZ", "bool", "", "",0
- P: "RotationMaxX", "bool", "", "",0
- P: "RotationMaxY", "bool", "", "",0
- P: "RotationMaxZ", "bool", "", "",0
- P: "InheritType", "enum", "", "",0
- P: "ScalingActive", "bool", "", "",0
- P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
- P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
- P: "ScalingMinX", "bool", "", "",0
- P: "ScalingMinY", "bool", "", "",0
- P: "ScalingMinZ", "bool", "", "",0
- P: "ScalingMaxX", "bool", "", "",0
- P: "ScalingMaxY", "bool", "", "",0
- P: "ScalingMaxZ", "bool", "", "",0
- P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
- P: "MinDampRangeX", "double", "Number", "",0
- P: "MinDampRangeY", "double", "Number", "",0
- P: "MinDampRangeZ", "double", "Number", "",0
- P: "MaxDampRangeX", "double", "Number", "",0
- P: "MaxDampRangeY", "double", "Number", "",0
- P: "MaxDampRangeZ", "double", "Number", "",0
- P: "MinDampStrengthX", "double", "Number", "",0
- P: "MinDampStrengthY", "double", "Number", "",0
- P: "MinDampStrengthZ", "double", "Number", "",0
- P: "MaxDampStrengthX", "double", "Number", "",0
- P: "MaxDampStrengthY", "double", "Number", "",0
- P: "MaxDampStrengthZ", "double", "Number", "",0
- P: "PreferedAngleX", "double", "Number", "",0
- P: "PreferedAngleY", "double", "Number", "",0
- P: "PreferedAngleZ", "double", "Number", "",0
- P: "LookAtProperty", "object", "", ""
- P: "UpVectorProperty", "object", "", ""
- P: "Show", "bool", "", "",1
- P: "NegativePercentShapeSupport", "bool", "", "",1
- P: "DefaultAttributeIndex", "int", "Integer", "",-1
- P: "Freeze", "bool", "", "",0
- P: "LODBox", "bool", "", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
- P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
- P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
- P: "Visibility", "Visibility", "", "A",1
- P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
- }
- }
- }
- ObjectType: "Geometry" {
- Count: 13
- PropertyTemplate: "FbxMesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
- P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
- P: "Primary Visibility", "bool", "", "",1
- P: "Casts Shadows", "bool", "", "",1
- P: "Receive Shadows", "bool", "", "",1
- }
- }
- }
- ObjectType: "Material" {
- Count: 4
- PropertyTemplate: "FbxSurfacePhong" {
- Properties70: {
- P: "ShadingModel", "KString", "", "", "Phong"
- P: "MultiLayer", "bool", "", "",0
- P: "EmissiveColor", "Color", "", "A",0,0,0
- P: "EmissiveFactor", "Number", "", "A",1
- P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
- P: "AmbientFactor", "Number", "", "A",1
- P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
- P: "DiffuseFactor", "Number", "", "A",1
- P: "Bump", "Vector3D", "Vector", "",0,0,0
- P: "NormalMap", "Vector3D", "Vector", "",0,0,0
- P: "BumpFactor", "double", "Number", "",1
- P: "TransparentColor", "Color", "", "A",0,0,0
- P: "TransparencyFactor", "Number", "", "A",0
- P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "DisplacementFactor", "double", "Number", "",1
- P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "VectorDisplacementFactor", "double", "Number", "",1
- P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
- P: "SpecularFactor", "Number", "", "A",1
- P: "ShininessExponent", "Number", "", "A",20
- P: "ReflectionColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",1
- }
- }
- }
- ObjectType: "Texture" {
- Count: 6
- PropertyTemplate: "FbxFileTexture" {
- Properties70: {
- P: "TextureTypeUse", "enum", "", "",0
- P: "Texture alpha", "Number", "", "A",1
- P: "CurrentMappingType", "enum", "", "",0
- P: "WrapModeU", "enum", "", "",0
- P: "WrapModeV", "enum", "", "",0
- P: "UVSwap", "bool", "", "",0
- P: "PremultiplyAlpha", "bool", "", "",1
- P: "Translation", "Vector", "", "A",0,0,0
- P: "Rotation", "Vector", "", "A",0,0,0
- P: "Scaling", "Vector", "", "A",1,1,1
- P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "CurrentTextureBlendMode", "enum", "", "",1
- P: "UVSet", "KString", "", "", "default"
- P: "UseMaterial", "bool", "", "",0
- P: "UseMipMap", "bool", "", "",0
- }
- }
- }
- ObjectType: "Video" {
- Count: 6
- PropertyTemplate: "FbxVideo" {
- Properties70: {
- P: "ImageSequence", "bool", "", "",0
- P: "ImageSequenceOffset", "int", "Integer", "",0
- P: "FrameRate", "double", "Number", "",0
- P: "LastFrame", "int", "Integer", "",0
- P: "Width", "int", "Integer", "",0
- P: "Height", "int", "Integer", "",0
- P: "Path", "KString", "XRefUrl", "", ""
- P: "StartFrame", "int", "Integer", "",0
- P: "StopFrame", "int", "Integer", "",0
- P: "PlaySpeed", "double", "Number", "",0
- P: "Offset", "KTime", "Time", "",0
- P: "InterlaceMode", "enum", "", "",0
- P: "FreeRunning", "bool", "", "",0
- P: "Loop", "bool", "", "",0
- P: "AccessMode", "enum", "", "",0
- }
- }
- }
- }
- ; Object properties
- ;------------------------------------------------------------------
- Objects: {
- NodeAttribute: 2267387865856, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2268362751104, "NodeAttribute::", "LodGroup" {
- Properties70: {
- P: "WorldSpace", "bool", "", "",1
- P: "Thresholds|Level0", "Distance", "", "",100, "cm"
- P: "Thresholds|Level1", "Distance", "", "",100, "cm"
- P: "DisplayLevels|Level0", "enum", "", "",1
- P: "DisplayLevels|Level1", "enum", "", "",1
- P: "DisplayLevels|Level2", "enum", "", "",1
- }
- }
- Geometry: 2267733796000, "Geometry::", "Mesh" {
- Vertices: *7611 {
- a: -406.7265625,53.7265625,0,-231.71484375,53.59130859375,-444.27734375,-490.44921875,53.7265625,0,-279.3447265625,53.59130859375,-513.133422851563,-490.6953125,140.325439453125,-91.5888671875,-406.96875,140.325439453125,-91.5888671875,-484.3984375,140.325439453125,-188.251953125,-401.748046875,140.325439453125,-174.87939453125,-459.5986328125,49.5048828125,-281.77001953125,-381.18359375,49.5048828125,-252.42626953125,-415.05078125,142.378173828125,-371.566040039063,-344.2451171875,142.378173828125,-326.886962890625,-354.390625,140.325439453125,-449.1591796875,-293.9462890625,140.325439453125,-391.228637695313,-293.9462890625,52.365234375,-391.228637695313,-344.2451171875,52.365234375,-326.886962890625,-401.748046875,52.365234375,-174.87939453125,-406.96875,52.365234375,-91.5888671875,-490.6953125,52.365234375,-91.5888671875,-484.3984375,52.365234375,-188.251953125,-415.05078125,52.365234375,-371.566040039063,-354.390625,52.365234375,-449.1591796875,-231.71484375,-80.247314453125,-444.27734375,-293.9462890625,-80.247314453125,-391.228637695313,-344.2451171875,-80.247314453125,-326.886962890625,-381.18359375,-80.247314453125,-252.42626953125,-401.748046875,-80.247314453125,-174.87939453125,-406.96875,-80.247314453125,-91.5888671875,-406.7265625,-80.247314453125,0,-438.328125,52.365234375,-330.4033203125,-363.5478515625,52.365234375,-292.75390625,-363.5478515625,-80.247314453125,-292.75390625,-474.5302734375,52.365234375,-234.79248046875,-393.5654296875,52.365234375,-213.471435546875,-406.96875,52.365234375,-49.060302734375,-490.6953125,52.365234375,-49.060302734375,-406.96875,-80.247314453125,-49.060302734375,-321.650390625,52.365234375,-480.31298828125,-266.7919921875,52.365234375,-417.06201171875,-321.650390625,140.325439453125,-480.31298828125,-266.7919921875,140.325439453125,-417.06201171875,-266.7919921875,-80.247314453125,-417.06201171875,-474.5302734375,137.759521484375,-234.79248046875,-393.5654296875,137.759521484375,-213.471435546875,-393.5654296875,-80.247314453125,-213.471435546875,-436.9736328125,140.325439453125,-333.074462890625,
- -362.423828125,140.325439453125,-294.968994140625,-406.96875,138.272705078125,-49.060302734375,-490.6953125,138.272705078125,-49.060302734375,-190.5302734375,140.119384765625,-561.843627929688,-158.068359375,140.119384765625,-484.668701171875,-107.41015625,140.325439453125,-588.383911132813,-89.14453125,140.325439453125,-506.676391601563,0.2265625,53.7265625,-600.19482421875,0.109375,53.7265625,-516.470336914063,-82.380859375,52.365234375,-508.128295898438,-160.3154296875,52.365234375,-483.715698242188,-193.2392578125,52.365234375,-560.6943359375,-99.25390625,52.365234375,-590.134765625,0.109375,-80.247314453125,-516.470336914063,-82.380859375,-80.247314453125,-508.128295898438,-160.3154296875,-80.247314453125,-483.715698242188,-52.244140625,54.69287109375,-597.451049804688,-43.396484375,54.69287109375,-514.195068359375,-41.2265625,-80.247314453125,-514.420043945313,-194.892578125,52.365234375,-466.952392578125,-234.9345703125,52.365234375,-540.478515625,-194.892578125,-80.247314453125,-466.952392578125,-52.244140625,140.325439453125,-597.451049804688,-43.396484375,140.325439453125,-514.195068359375,-43.396484375,-80.247314453125,-514.195068359375,-194.892578125,138.579833984375,-466.952392578125,-234.9345703125,138.579833984375,-540.478515625,-294.2216796875,171.75048828125,-448.6875,-324.16796875,171.75048828125,-420.193969726563,-379.6494140625,173.80322265625,-349.2265625,-399.701171875,171.75048828125,-314.021728515625,-434.0458984375,169.1845703125,-224.1318359375,-443.0732421875,171.75048828125,-181.56591796875,-448.828125,171.75048828125,-91.5888671875,-448.828125,169.69775390625,-49.060302734375,-47.822265625,171.75048828125,-555.823120117188,-98.27734375,171.75048828125,-547.530151367188,-174.3017578125,171.54443359375,-523.256225585938,-214.9130859375,170.0048828125,-503.715454101563,-389.67578125,-73.922607421875,-416.725219726563,-392.005859375,-74.403564453125,-416.537719726563,-390.4189453125,-72.585693359375,-415.492309570313,-319.0439453125,-72.3671875,-358.813354492188,-317.6962890625,-74.070556640625,-358.362915039063,
- -319.6474609375,-74.443115234375,-361.15625,-318.943359375,-108.157470703125,-360.767211914063,-320.08203125,-109.638671875,-360.015502929688,-317.3876953125,-108.138671875,-357.779541015625,-390.1396484375,-109.0537109375,-416.657470703125,-391.400390625,-110.8583984375,-413.87158203125,-392.2724609375,-109.1162109375,-415.846435546875,-406.2890625,-112.9609375,-0.585205078125,-404.279296875,-111.419677734375,-0.585205078125,-406.2890625,-111.419677734375,0.7470703125,-496.390625,-110.170166015625,1.25732421875,-500.8203125,-110.121337890625,-0.585205078125,-497.7978515625,-112.790283203125,-0.585205078125,-407.419921875,-72.570556640625,-1.6142578125,-405.421875,-74.860595703125,0.336181640625,-483.7841796875,-75.052734375,1.0341796875,-498.359375,-78.67236328125,-0.585205078125,-494.65234375,-78.91552734375,1.02197265625,-497.7978515625,-72.591552734375,-6.344482421875,-500.1396484375,-74.7802734375,-2.4755859375,-484.3544921875,-72.8349609375,-0.60107421875,-403.6083984375,-74.94970703125,-2.97021484375,-495.8193359375,-107.59619140625,-163.3173828125,-493.2451171875,-109.905517578125,-163.039794921875,-403.9501953125,-109.538330078125,-153.419921875,-401.3740234375,-108.01171875,-153.142578125,-406.5419921875,-76.788818359375,-154.125,-489.232421875,-75.956787109375,-163.125,-491.384765625,-78.003173828125,-163.35498046875,-495.228515625,-109.0751953125,-85.299072265625,-411.33984375,-109.33056640625,-84.8564453125,-407.359375,-78.27587890625,-85.30712890625,-410.3994140625,-77.20458984375,-85.31103515625,-493.744140625,-76.000244140625,-85.30712890625,-492.6591796875,-111.35400390625,-85.299072265625,-468.650390625,-106.845947265625,-260.767578125,-390.1044921875,-106.180908203125,-235.46630859375,-465.9658203125,-75.716796875,-259.73876953125,-470.7021484375,-104.787109375,-261.42822265625,-387.5458984375,-104.69580078125,-234.64111328125,-387.677734375,-74.775634765625,-234.55224609375,-389.6923828125,-72.847900390625,-235.201171875,-435.6103515625,-107.114990234375,-338.604248046875,-361.8515625,-100.5283203125,-299.455322265625,
- -438.3759765625,-78.532470703125,-340.0712890625,-437.494140625,-105.067138671875,-339.59375,-359.0126953125,-98.924072265625,-297.966796875,-362.8857421875,-73.06103515625,-300.0087890625,-364.50390625,-71.104248046875,-300.858642578125,-436.6171875,-76.519775390625,-339.15380859375,-468.4482421875,-72.60009765625,-262.89013671875,-474.451171875,-108.014404296875,-264.837890625,-472.2314453125,-110.244384765625,-264.11279296875,-386.2080078125,-109.513916015625,-236.003662109375,-383.42578125,-107.90185546875,-235.09375,-383.53125,-71.574462890625,-235.14013671875,-385.7060546875,-69.483154296875,-235.857666015625,-469.9921875,-75.6015625,-258.09912109375,-476.40625,-111.435546875,-261.49755859375,-474.1728515625,-113.53857421875,-260.78662109375,-387.1552734375,-112.864013671875,-233.07861328125,-384.3701171875,-111.346923828125,-232.193359375,-384.79296875,-74.642578125,-231.220703125,-386.9912109375,-72.6708984375,-231.9189453125,-406.3857421875,-76.785888671875,-155.44970703125,-406.6357421875,-75.052490234375,-153.268310546875,-499.6669921875,-70.544189453125,-89.90966796875,-501.9140625,-72.656982421875,-89.90576171875,-502.40625,-109.650390625,-88.406005859375,-499.6142578125,-112.122802734375,-88.406005859375,-500.4365234375,-110.373046875,-83.83544921875,-497.642578125,-112.85205078125,-83.83544921875,-495.2578125,-76.243408203125,-82.335693359375,-464.0078125,-69.622802734375,-261.44921875,-468.890625,-69.636474609375,-274.376953125,-470.177734375,-71.711669921875,-276.88525390625,-473.556640625,-82.6953125,-264.53173828125,-470.6787109375,-85.546142578125,-261.23193359375,-474.669921875,-87.447021484375,-261.125244140625,-478.2109375,-74.7802734375,-255.291259765625,-476.248046875,-72.8125,-254.61669921875,-464.88671875,-72.79931640625,-256.49755859375,-461.5,-72.974365234375,-258.3056640625,-405.4326171875,-69.44970703125,-139.140625,-402.5234375,-71.5986328125,-138.3935546875,-401.1806640625,-80.29736328125,-153.53466796875,-400.078125,-73.787109375,-162.49560546875,-402.8466796875,-71.681884765625,-162.885498046875,
- -414.263671875,-74.20166015625,-154.972900390625,-367.5263671875,-73.197021484375,-302.85009765625,-354.32421875,-72.391357421875,-306.380859375,-352.732421875,-74.213134765625,-305.611083984375,-359.2021484375,-86.8369140625,-298.0458984375,-358.94921875,-71.421630859375,-293.98486328125,-362.2509765625,-69.458740234375,-291.643310546875,-418.0009765625,-73.603515625,-82.31982421875,-423.814453125,-74.98046875,-85.31103515625,-423.7216796875,-72.490966796875,-86.2802734375,-406.7900390625,-72.475341796875,-96.68212890625,-403.556640625,-74.69921875,-96.669921875,-403.6533203125,-82.498291015625,-86.26025390625,-407.4345703125,-82.460205078125,-85.291015625,-403.630859375,-82.71337890625,-83.831298828125,-403.568359375,-75.857666015625,-73.69287109375,-406.9267578125,-73.598388671875,-74.291015625,-483.609375,-73.648193359375,-82.31982421875,-497.7001953125,-73.65673828125,-78.7421875,-499.953125,-75.773681640625,-78.0322265625,-498.65234375,-84.537841796875,-83.8271484375,-494.8896484375,-85.735595703125,-85.287109375,-482.2451171875,-75.01953125,-85.31103515625,-440.82421875,-100.636474609375,-341.344970703125,-434.9638671875,-108.9072265625,-352.058959960938,-432.9462890625,-110.806884765625,-351.3681640625,-421.3154296875,-105.031005859375,-331.092041015625,-442.826171875,-109.2958984375,-334.716552734375,-444.8798828125,-107.232666015625,-335.41259765625,-484.951171875,-74.279296875,-162.66357421875,-494.0380859375,-71.783203125,-171.47412109375,-496.0078125,-73.822998046875,-173.11669921875,-495.53125,-85.772705078125,-163.78369140625,-499.8359375,-71.595703125,-153.882568359375,-497.720703125,-69.541748046875,-153.0703125,-403.8916015625,-104.58642578125,-83.83544921875,-404.013671875,-111.23583984375,-71.74658203125,-406.287109375,-112.77294921875,-71.032470703125,-414.8037109375,-112.748779296875,-83.83544921875,-416.66015625,-111.2548828125,-85.299072265625,-416.1748046875,-112.01611328125,-88.406005859375,-406.2861328125,-110.450439453125,-104.666748046875,-403.8974609375,-108.91943359375,-104.34765625,
- -403.9052734375,-105.521484375,-88.406005859375,-407.6796875,-103.23779296875,-85.299072265625,-437.3408203125,-72.574462890625,-343.74755859375,-438.9853515625,-74.46435546875,-344.85888671875,-443.8720703125,-71.662841796875,-337.42529296875,-441.7080078125,-69.646240234375,-337.29345703125,-497.0244140625,-111.989501953125,-170.2509765625,-493.8642578125,-114.884521484375,-169.36083984375,-403.5,-114.203125,-157.425048828125,-400.9111328125,-112.67822265625,-157.134765625,-499.57421875,-108.353759765625,-160.129150390625,-497.00390625,-110.671875,-159.66650390625,-404.19140625,-110.314453125,-151.111328125,-401.64453125,-108.787841796875,-150.69677734375,-357.6513671875,-109.841796875,-302.579833984375,-354.822265625,-108.333984375,-301.0341796875,-358.8505859375,-106.706298828125,-293.44384765625,-361.4775390625,-108.30908203125,-295.3095703125,1.88671875,-71.98583984375,-605.537475585938,0.30859375,-72.46728515625,-607.256225585938,0.4609375,-70.6494140625,-605.363891601563,-0.30078125,-70.42919921875,-514.22412109375,0.17578125,-72.1337890625,-512.8837890625,1.173828125,-72.505126953125,-516.138793945313,1.30078125,-106.220703125,-515.344848632813,0.005859375,-107.701904296875,-515.780517578125,-0.095703125,-106.202392578125,-512.279663085938,1.548828125,-107.11572265625,-605.859252929688,-1.419921875,-108.921630859375,-605.13818359375,-0.40234375,-107.179443359375,-607.04248046875,-319.83984375,-112.66552734375,-360.339965820313,-318.2578125,-111.12353515625,-359.098510742188,-320.5810546875,-111.12353515625,-359.392944335938,-391.9990234375,-109.87451171875,-414.326049804688,-394.236328125,-109.82568359375,-418.663940429688,-391.8564453125,-112.494384765625,-416.797119140625,-320.15625,-72.2744140625,-361.769775390625,-319.6708984375,-74.564453125,-359.150146484375,-381.9013671875,-74.7578125,-406.779418945313,-392.296875,-78.376220703125,-417.142944335938,-390.470703125,-78.620849609375,-413.465209960938,-387.8955078125,-72.296630859375,-421.78369140625,-392.4013671875,-74.484375,-419.892700195313,-381.265625,-72.538818359375,-408.516235351563,
- -316.4072265625,-74.654296875,-360.36474609375,-263.1826171875,-104.31005859375,-533.287109375,-261.8125,-106.619384765625,-531.0849609375,-214.4521484375,-106.25244140625,-454.775634765625,-213.091796875,-104.725830078125,-452.575561523438,-215.4921875,-73.5029296875,-457.251708984375,-259.27734375,-72.670654296875,-527.973510742188,-260.421875,-74.717041015625,-529.813232421875,-325.794921875,-108.779296875,-482.720825195313,-270.9345703125,-109.03466796875,-419.251953125,-268.0087890625,-77.97998046875,-416.5234375,-270.0068359375,-75.915771484375,-418.816650390625,-324.8076171875,-75.007568359375,-481.605712890625,-324.1044921875,-111.057861328125,-480.783569335938,-169.642578125,-107.280517578125,-571.830200195313,-141.2568359375,-106.615966796875,-494.344482421875,-168.802734375,-77.70166015625,-569.080078125,-170.3837890625,-105.223388671875,-573.853515625,-140.333984375,-105.130859375,-491.817749023438,-140.484375,-75.210693359375,-491.869750976563,-141.21484375,-73.282958984375,-493.85888671875,-87.95703125,-105.1787109375,-593.677124023438,-73.431640625,-102.3125,-511.444946289063,-88.498046875,-76.59619140625,-596.758422851563,-88.3359375,-103.131103515625,-595.77001953125,-72.859375,-100.70849609375,-508.291137695313,-73.630859375,-74.845458984375,-512.598876953125,-73.958984375,-72.888427734375,-514.399536132813,-88.140625,-74.5830078125,-594.809814453125,-167.8466796875,-76.3212890625,-572.97607421875,-170.0029296875,-111.7353515625,-578.906127929688,-169.2099609375,-113.96533203125,-576.710815429688,-138.439453125,-113.236083984375,-491.604736328125,-137.4404296875,-111.62255859375,-488.849609375,-137.4697265625,-75.295166015625,-488.963012695313,-138.240234375,-73.205322265625,-491.117309570313,-172.57421875,-72.315673828125,-571.245849609375,-173.8388671875,-108.149658203125,-578.392700195313,-173.0263671875,-110.252685546875,-576.195190429688,-141.3251953125,-109.578125,-490.548828125,-140.3134765625,-108.060791015625,-487.812377929688,-141.3369140625,-71.3564453125,-487.544921875,-142.1396484375,-69.385009765625,-489.709106445313,
- -214.3544921875,-73.5,-457.947021484375,-216.2265625,-75.052490234375,-456.799560546875,-324.8388671875,-70.544189453125,-489.411865234375,-326.302734375,-72.656982421875,-491.115844726563,-327.89453125,-109.650390625,-490.399536132813,-326.072265625,-112.122802734375,-488.2841796875,-330.443359375,-110.078125,-485.574462890625,-328.5966796875,-112.55615234375,-483.472900390625,-328.2578125,-75.947509765625,-480.588989257813,-166.2490234375,-73.343994140625,-568.590942382813,-159.0615234375,-73.35888671875,-580.393676757813,-157.876953125,-75.433837890625,-582.951538085938,-169.6923828125,-86.417236328125,-578.01318359375,-170.525390625,-85.981201171875,-573.713745117188,-173.0634765625,-84.1611328125,-576.794799804688,-179.841796875,-71.494384765625,-575.994995117188,-179.1650390625,-69.5263671875,-574.034545898438,-170.6943359375,-69.51318359375,-566.235961914063,-167.185546875,-73.409423828125,-564.676513671875,-226.6201171875,-69.44970703125,-447.157836914063,-225.4208984375,-71.5986328125,-444.40673828125,-212.658203125,-77.011474609375,-452.6611328125,-204.916015625,-70.501220703125,-457.306640625,-206.3154296875,-68.39599609375,-459.730102539063,-219.578125,-70.915771484375,-463.862182617188,-74.24609375,-71.2607421875,-518.0068359375,-63.34375,-70.45458984375,-509.773681640625,-62.970703125,-72.275634765625,-508.044067382813,-72.912109375,-88.62109375,-508.489135742188,-75.958984375,-75.142578125,-505.793701171875,-79.833984375,-73.1796875,-506.953735351563,-277.08984375,-73.30810546875,-422.7109375,-278.828125,-73.98828125,-428.926025390625,-278.078125,-72.490966796875,-429.45361328125,-259.80859375,-72.475341796875,-422.753051757813,-257.751953125,-74.69921875,-420.257202148438,-264.9296875,-82.498291015625,-414.2939453125,-268.0732421875,-82.460205078125,-416.57177734375,-266.556640625,-82.417236328125,-412.844360351563,-273.2666015625,-75.562255859375,-406.722412109375,-275.1416015625,-73.30224609375,-409.559814453125,-320.5576171875,-73.353271484375,-471.853759765625,-332.8466796875,-73.360595703125,-479.776733398438,
- -334.9384765625,-75.477783203125,-480.925170898438,-329.26953125,-84.24169921875,-484.224243164063,-325.5771484375,-85.440673828125,-482.454711914063,-317.2431640625,-74.02734375,-472.946044921875,-89.00390625,-98.698486328125,-599.47509765625,-76.953125,-106.9697265625,-601.4443359375,-76.255859375,-108.869384765625,-599.430541992188,-85.080078125,-103.09423828125,-577.78466796875,-95.458984375,-113.018310546875,-596.973266601563,-96.17578125,-110.954345703125,-599.019653320313,-257.0078125,-70.9931640625,-524.31591796875,-255.654296875,-68.4970703125,-536.900512695313,-255.5712890625,-70.537109375,-539.461547851563,-262.6318359375,-82.486572265625,-533.34521484375,-273.0888671875,-71.595703125,-530.6455078125,-272.4267578125,-69.541748046875,-528.480346679688,-266.720703125,-104.29052734375,-413.040771484375,-274.8544921875,-110.940185546875,-405.866333007813,-276.8740234375,-112.476806640625,-407.094970703125,-273.923828125,-112.45263671875,-421.23974609375,-274.1328125,-110.958984375,-423.526000976563,-271.6416015625,-112.01611328125,-425.042602539063,-253.8984375,-110.450439453125,-426.915893554688,-252.630859375,-108.91943359375,-424.86962890625,-263.63671875,-105.521484375,-415.741333007813,-268.2236328125,-103.23779296875,-416.759643554688,-84.966796875,-70.6376953125,-598.205932617188,-85.1015625,-72.527587890625,-600.188110351563,-93.96875,-75.385009765625,-599.465942382813,-92.73828125,-73.367431640625,-597.67724609375,-258.455078125,-108.70361328125,-538.504150390625,-257.212890625,-111.5986328125,-535.46337890625,-211.017578125,-110.9169921875,-456.884033203125,-209.6591796875,-109.39208984375,-454.665893554688,-268.00390625,-108.353759765625,-534.283935546875,-266.7861328125,-110.671875,-531.974731445313,-216.423828125,-110.314453125,-453.54638671875,-215.1796875,-108.787841796875,-451.281860351563,-68.3828125,-107.905029296875,-510.056274414063,-67.865234375,-106.397216796875,-506.875610351563,-76.32421875,-110.4287109375,-505.38134765625,-76.470703125,-112.03125,-508.599487304688,-490.6953125,-80.247314453125,-49.060302734375,
- -474.5302734375,-80.247314453125,-234.79248046875,-321.650390625,-80.247314453125,-480.31298828125,-52.244140625,-80.247314453125,-597.451049804688,-49.626953125,-80.247314453125,-597.722412109375,-490.44921875,-80.247314453125,0,-279.3447265625,-80.247314453125,-513.133422851563,-234.9345703125,-80.247314453125,-540.478515625,0.2265625,-80.247314453125,-600.19482421875,-490.6953125,-80.247314453125,-91.5888671875,-484.3984375,-80.247314453125,-188.251953125,-459.5986328125,-80.247314453125,-281.77001953125,-438.34765625,-80.247314453125,-330.3720703125,-415.05078125,-80.247314453125,-371.566040039063,-354.390625,-80.247314453125,-449.1591796875,-193.2392578125,-80.247314453125,-560.6943359375,-99.25390625,-80.247314453125,-590.134765625,-41.861328125,-103.4970703125,-591.380004882813,-39.591796875,-104.971435546875,-591.494873046875,-42.126953125,-104.744140625,-593.283325195313,-40.0234375,-127.368408203125,-592.202758789063,-42.470703125,-127.826904296875,-593.841918945313,-39.2109375,-105.543212890625,-533.0205078125,-37.15625,-105.52978515625,-535.154174804688,-39,-103.9306640625,-534.426879882813,-79.18359375,-103.186279296875,-588.003540039063,-79.26953125,-104.43994140625,-589.923950195313,-81.48828125,-104.620361328125,-587.703735351563,-81.912109375,-127.02392578125,-588.380004882813,-79.7890625,-127.522216796875,-590.435791015625,-71.875,-105.235107421875,-530.04345703125,-72.048828125,-103.61328125,-531.426635742188,-74.296875,-105.1748046875,-531.769653320313,-38.03125,-183.325927734375,-535.182495117188,-39.953125,-183.3037109375,-533.178466796875,-40.07421875,-184.7646484375,-535.080322265625,-72.763671875,-184.46240234375,-532.04833984375,-72.49609375,-183.00146484375,-530.161254882813,-74.77734375,-182.9853515625,-531.775024414063,-39.267578125,-183.3916015625,-562.788452148438,-41.5390625,-184.64208984375,-563.474487304688,-78.62109375,-183.04931640625,-559.1396484375,-76.533203125,-184.339111328125,-560.228881835938,-165.7109375,-106.260009765625,-567.16748046875,-163.4921875,-107.7158203125,-567.854614257813,
- -166.4052734375,-107.508544921875,-568.9560546875,-163.888671875,-130.115234375,-568.493774414063,-166.6572265625,-130.5927734375,-569.4794921875,-148.7587890625,-108.30810546875,-511.257690429688,-147.271484375,-108.274658203125,-513.8408203125,-148.9052734375,-106.693115234375,-512.671752929688,-201.2626953125,-106.254150390625,-554.587524414063,-201.791015625,-107.506591796875,-556.439575195313,-203.4140625,-107.70703125,-553.729248046875,-203.7900390625,-130.1123046875,-554.361938476563,-202.2119140625,-130.591552734375,-556.8896484375,-179.904296875,-108.303466796875,-500.209716796875,-180.427734375,-106.681884765625,-501.501586914063,-182.6953125,-108.26318359375,-501.275512695313,-147.49609375,-186.075927734375,-513.846557617188,-148.8798828125,-186.072509765625,-511.427001953125,-149.4501953125,-187.533447265625,-513.245239257813,-180.630859375,-187.533447265625,-502.183349609375,-179.921875,-186.072509765625,-500.4140625,-182.533203125,-186.0751953125,-501.416748046875,-155.466796875,-186.140380859375,-540.306274414063,-157.83203125,-187.41015625,-540.413818359375,-192.9619140625,-186.14013671875,-527.0068359375,-191.177734375,-187.41064453125,-528.587768554688,-276.0546875,-103.146484375,-509.404174804688,-274.1552734375,-104.578369140625,-510.827514648438,-277.3369140625,-104.396728515625,-510.833740234375,-274.52734375,-126.978271484375,-511.456665039063,-277.529296875,-127.48046875,-511.408447265625,-241.0166015625,-105.197265625,-462.654663085938,-240.4501953125,-105.137939453125,-465.613037109375,-241.634765625,-103.578857421875,-463.9345703125,-305.75,-103.5322265625,-485.219848632813,-306.8984375,-104.782958984375,-486.761108398438,-307.50390625,-105.00927734375,-483.674072265625,-307.869140625,-127.4140625,-484.319458007813,-307.2333984375,-127.868896484375,-487.233032226563,-267.017578125,-105.58203125,-441.488525390625,-267.9501953125,-103.960693359375,-442.5205078125,-270.0283203125,-105.567626953125,-441.531616210938,-239.96484375,-182.936767578125,-466.059204101563,-240.5029296875,-182.957275390625,-463.288330078125,
- -241.6298828125,-184.418212890625,-464.825439453125,-267.7080078125,-184.806396484375,-443.682739257813,-266.4658203125,-183.345458984375,-442.236083984375,-269.2783203125,-183.372314453125,-442.291870117188,-287.7021484375,-183.4384765625,-462.88720703125,-286.515625,-184.684326171875,-465.000854492188,-372.38671875,-106.649169921875,-426.373168945313,-370.9404296875,-108.10498046875,-428.191162109375,-373.9931640625,-107.897705078125,-427.42724609375,-371.63671875,-130.50439453125,-428.485717773438,-374.501953125,-130.98193359375,-427.707641601563,-326.66015625,-108.697265625,-390.011596679688,-326.87890625,-108.663818359375,-392.994506835938,-327.578125,-107.082275390625,-391.096923828125,-394.7021484375,-106.643310546875,-395.902465820313,-396.2060546875,-107.895751953125,-397.099609375,-395.9951171875,-108.09619140625,-393.985595703125,-396.671875,-130.50146484375,-394.283813476563,-396.8115234375,-130.980712890625,-397.228393554688,-346.21875,-108.692626953125,-363.317749023438,-347.376953125,-107.071044921875,-364.091430664063,-349.1171875,-108.65234375,-362.633422851563,-327.060546875,-186.465087890625,-392.876220703125,-326.8583984375,-186.461669921875,-390.08349609375,-328.34765625,-187.922607421875,-391.268432617188,-347.919921875,-187.922607421875,-364.548828125,-346.3447265625,-186.461669921875,-363.478271484375,-349.060546875,-186.46435546875,-362.84619140625,-348.572265625,-186.529541015625,-410.22509765625,-350.59375,-187.79931640625,-408.972778320313,-372.1142578125,-186.529296875,-378.08349609375,-371.53515625,-187.7998046875,-380.386352539063,-437,-103.542236328125,-318.21044921875,-435.97265625,-104.930419921875,-320.362060546875,-438.7802734375,-104.794677734375,-318.929931640625,-436.361328125,-127.32373046875,-321.2275390625,-438.9814453125,-127.869873046875,-319.8349609375,-384.3427734375,-105.596435546875,-292.915283203125,-385.220703125,-105.491455078125,-295.780029296875,-385.498046875,-103.972900390625,-293.72998046875,-452.015625,-104.628173828125,-283.26904296875,-453.7265625,-105.87548828125,-284.144287109375,
- -452.8330078125,-106.1474609375,-281.13427734375,-444.650390625,-129.614501953125,-278.44482421875,-454.1806640625,-115.80712890625,-285.533203125,-397.474609375,-106.678466796875,-262.343994140625,-398.791015625,-105.057861328125,-262.7939453125,-400.15625,-106.7099609375,-261.00341796875,-384.302734375,-183.259521484375,-297.828125,-383.4912109375,-183.322998046875,-295.14990234375,-385.1875,-184.783203125,-296.020263671875,-398.5107421875,-185.86572265625,-265.486328125,-396.7548828125,-184.40576171875,-264.7470703125,-399.271484375,-184.475341796875,-263.517333984375,-409.0673828125,-183.320068359375,-310.09228515625,-410.7587890625,-184.658203125,-308.44970703125,-425.103515625,-184.5439453125,-273.33740234375,-425.01953125,-185.7451171875,-275.76611328125,-486.5751953125,-105.4345703125,-78.167724609375,-486.498046875,-106.87841796875,-80.3056640625,-488.4931640625,-106.683837890625,-78.095947265625,-487.2265625,-129.278564453125,-80.28564453125,-489.0625,-129.76806640625,-78.163818359375,-428.2080078125,-107.48388671875,-75.69482421875,-430.1494140625,-107.437744140625,-78.072021484375,-429.5888671875,-105.8671875,-76.0419921875,-487.8583984375,-105.620361328125,-43.344970703125,-489.765625,-106.8720703125,-43.576171875,-487.943359375,-107.0849609375,-41.215087890625,-488.6669921875,-129.490478515625,-41.2548828125,-490.3466796875,-129.957763671875,-43.5244140625,-429.4853515625,-107.669921875,-41.047607421875,-430.8818359375,-106.048583984375,-41.08740234375,-431.6005859375,-107.642333984375,-38.842041015625,-430.2109375,-185.239013671875,-78.29931640625,-428.3916015625,-185.247314453125,-76.0859375,-430.294921875,-186.708251953125,-76.16943359375,-431.5712890625,-186.8984375,-41.64599609375,-429.66796875,-185.4375,-41.566162109375,-431.646484375,-185.451904296875,-39.5,-457.8212890625,-185.302734375,-79.48388671875,-458.701171875,-186.58447265625,-77.322265625,-459.2646484375,-185.517578125,-40.44921875,-459.9853515625,-186.77587890625,-42.68701171875,0.166015625,78.086181640625,-558.332641601563,-47.822265625,81.120849609375,-555.823120117188,
- -448.5859375,78.086181640625,0,-448.828125,76.724853515625,-49.060302734375,-440.677734375,152.346435546875,-327.343994140625,-440.01953125,153.799560546875,-342.166259765625,-441.17578125,151.212646484375,-341.4541015625,-443.36328125,146.161376953125,-328.670654296875,-436.02734375,159.96826171875,-325.048828125,-316.3291015625,139.250244140625,-484.05029296875,-317.9990234375,139.67919921875,-486.032104492188,-391.177734375,138.716552734375,-405.294921875,-396.9853515625,149.415283203125,-409.849853515625,-392.9921875,139.48974609375,-406.692626953125,-396.9599609375,151.92333984375,-409.139526367188,-320.40625,151.606201171875,-488.87646484375,-320.8974609375,149.849853515625,-489.46142578125,-440.5498046875,140.433349609375,-327.28173828125,-441.720703125,151.99609375,-329.2294921875,-441.6513671875,152.128662109375,-329.1962890625,-443.712890625,146.010986328125,-330.21875,-437.2626953125,159.914794921875,-327.01318359375,-440.892578125,139.599365234375,-328.8193359375,-438.74609375,139.846923828125,-327.750244140625,-399.15234375,154.2021484375,-408.852905273438,-399.3369140625,151.533447265625,-409.0546875,-360.671875,137.6572265625,-442.969116210938,-358.974609375,137.49072265625,-441.197875976563,-363.767578125,149.75634765625,-445.528076171875,-364.205078125,147.59619140625,-445.968872070313,-425.4345703125,149.0380859375,-368.5,-418.2958984375,140.14306640625,-364.64306640625,-421.0830078125,139.750732421875,-366.333251953125,-424.9228515625,151.584228515625,-368.189331054688,-415.185546875,138.112548828125,-370.238891601563,-417.2333984375,138.476318359375,-371.364013671875,-421.576171875,138.419189453125,-364.25732421875,-419.5517578125,138.172119140625,-363.066040039063,-412.6904296875,143.266845703125,-360.971923828125,-319.1484375,137.8955078125,-485.484008789063,-317.4287109375,137.449462890625,-483.452880859375,-322.6357421875,150.064697265625,-489.591064453125,-322.126953125,151.880859375,-488.992431640625,-366.85546875,150.73388671875,-445.956298828125,-367.4150390625,147.5966796875,-446.247802734375,
- -363.2275390625,136.156494140625,-442.717529296875,-361.2822265625,135.528076171875,-441.209716796875,-364.33203125,150.981689453125,-448.689086914063,-364.9501953125,147.63427734375,-448.9404296875,-361.185546875,136.140625,-444.951293945313,-359.2998046875,135.523681640625,-443.35986328125,-339.7841796875,155.065185546875,-425.292114257813,-426.396484375,153.38232421875,-367.478637695313,-426.5927734375,150.145263671875,-367.81689453125,-424.4833984375,152.736572265625,-370.214111328125,-425.17578125,150.187744140625,-370.208129882813,-420.2705078125,139.4794921875,-367.407958984375,-417.6337890625,139.70751953125,-365.841918945313,-289.712890625,169.3203125,-452.527099609375,-402.466796875,185.32763671875,-308.475830078125,-402.466796875,171.137939453125,-308.475830078125,-357.7890625,168.76416015625,-380.760009765625,-289.712890625,185.857177734375,-452.527099609375,-401.9736328125,169.662353515625,-309.47705078125,-383.3935546875,168.375732421875,-343.1591796875,-329.7119140625,169.32080078125,-414.27392578125,-290.56640625,167.710693359375,-451.802612304688,-330.93359375,165.859619140625,-412.94873046875,-328.2041015625,165.899658203125,-415.896484375,-329.306640625,168.19189453125,-414.711547851563,-358.3828125,170.99658203125,-379.979858398438,-364.2841796875,152.346435546875,-289.62158203125,-353.798828125,153.799560546875,-296.6162109375,-353.6201171875,151.212646484375,-295.4638671875,-361.6015625,146.161376953125,-288.296630859375,-368.93359375,159.96826171875,-291.916748046875,-263.11328125,139.250244140625,-421.027709960938,-261.4384765625,139.67919921875,-419.0458984375,-325.1005859375,138.716552734375,-355.347534179688,-319.1474609375,149.415283203125,-350.98291015625,-323.265625,139.48974609375,-353.98388671875,-319.7783203125,151.92333984375,-350.90234375,-259.0400390625,151.606201171875,-416.201538085938,-258.5439453125,149.849853515625,-415.616577148438,-364.4150390625,140.433349609375,-289.683837890625,-362.25,151.99609375,-289.73828125,-362.3154296875,152.128662109375,-289.771484375,-360.26171875,146.010986328125,-288.749267578125,
- -366.7119140625,159.914794921875,-291.95458984375,-363.07421875,139.599365234375,-290.148681640625,-365.2275390625,139.846923828125,-291.2177734375,-319.2607421875,154.2021484375,-348.9560546875,-319.0205078125,151.533447265625,-348.83056640625,-298.7060546875,137.6572265625,-385.684326171875,-300.5888671875,137.49072265625,-387.251098632813,-295.8837890625,149.75634765625,-382.827392578125,-295.4150390625,147.59619140625,-382.421752929688,-341.5849609375,149.0380859375,-317.48779296875,-348.3271484375,140.14306640625,-321.9970703125,-345.5478515625,139.750732421875,-320.29296875,-342.0966796875,151.584228515625,-317.798583984375,-345.2734375,138.112548828125,-326.36279296875,-343.357421875,138.476318359375,-325.02880859375,-346.9765625,138.419189453125,-319.20751953125,-348.97265625,138.172119140625,-320.439697265625,-354.142578125,143.266845703125,-325.32177734375,-262.0048828125,137.8955078125,-418.145141601563,-263.724609375,137.449462890625,-420.17626953125,-258.517578125,150.064697265625,-414.0380859375,-259.0263671875,151.880859375,-414.63671875,-294.9697265625,150.73388671875,-380.035400390625,-294.61328125,147.5966796875,-379.526977539063,-298.51953125,136.156494140625,-383.361938476563,-300.212890625,135.528076171875,-385.145141601563,-292.939453125,150.981689453125,-382.232055664063,-292.615234375,147.63427734375,-381.666381835938,-296.8212890625,136.140625,-385.177856445313,-298.560546875,135.523681640625,-386.926513671875,-318.0126953125,155.065185546875,-405.064208984375,-341.90234375,153.38232421875,-316.394775390625,-341.533203125,150.145263671875,-316.34912109375,-340.6943359375,152.736572265625,-318.78662109375,-340.34765625,150.187744140625,-318.22998046875,-345.0888671875,139.4794921875,-321.30126953125,-347.681640625,139.70751953125,-322.93505859375,-329.3466796875,185.066162109375,-416.755859375,-327.271484375,185.065673828125,-414.816162109375,-331.0625,182.3017578125,-414.910766601563,-328.9677734375,182.30126953125,-412.982666015625,-383.1474609375,186.325439453125,-346.275390625,-380.73046875,186.324951171875,-344.78125,
- -384.63671875,183.310791015625,-343.84765625,-382.20703125,183.310302734375,-342.36865234375,-289.646484375,186.32763671875,-450.718505859375,-291.4873046875,186.328125,-452.88671875,-385.4404296875,187.056640625,-342.52099609375,-383.009765625,187.05615234375,-341.05029296875,-359.17578125,186.390380859375,-381.2880859375,-356.904296875,186.389892578125,-379.570190429688,-360.046875,187.918701171875,-380.128784179688,-357.7705078125,187.918212890625,-378.418212890625,-332.8955078125,184.703857421875,-412.90869140625,-330.7939453125,184.70361328125,-410.993286132813,-400.6953125,186.7841796875,-308.84423828125,-403.244140625,186.784912109375,-310.10986328125,-391.43359375,148.796142578125,-218.543212890625,-388.33984375,150.249267578125,-206.08154296875,-387.4365234375,147.662353515625,-206.845703125,-388.5439453125,142.611083984375,-217.741455078125,-396.4267578125,156.41796875,-219.930419921875,-407.5888671875,137.954345703125,-42.515380859375,-404.998046875,138.38330078125,-42.515380859375,-406.1875,137.602783203125,-141.57568359375,-398.837890625,148.301513671875,-140.896240234375,-403.9072265625,138.3759765625,-141.3798828125,-399.25,150.8095703125,-141.38037109375,-401.2734375,150.310302734375,-42.515380859375,-400.5078125,148.553955078125,-42.515380859375,-391.56640625,136.883056640625,-218.5810546875,-389.9970703125,148.44580078125,-217.07763671875,-390.0673828125,148.578369140625,-217.09716796875,-387.85546875,142.460693359375,-216.48828125,-394.8017578125,156.364501953125,-218.398193359375,-390.88671875,136.049072265625,-217.322021484375,-393.2021484375,136.296630859375,-217.958984375,-397.5703125,153.08837890625,-142.52392578125,-397.3115234375,150.419677734375,-142.456298828125,-406.6396484375,140.85009765625,-86.4755859375,-409.0849609375,140.68359375,-86.619140625,-402.6279296875,152.94921875,-86.68310546875,-402.0087890625,150.7890625,-86.6591796875,-392.2265625,147.038330078125,-187.13134765625,-400.24609375,138.143310546875,-188.3505859375,-397.0478515625,137.7509765625,-187.72998046875,-392.8125,149.58447265625,-187.2470703125,
- -400.96484375,136.11279296875,-182.940185546875,-398.650390625,136.4765625,-182.63525390625,-397.3564453125,136.41943359375,-189.532470703125,-399.666015625,136.17236328125,-189.97265625,-406.78125,141.26708984375,-189.82666015625,-404.671875,136.599609375,-43.66796875,-407.3359375,136.153564453125,-43.66796875,-399.287109375,148.768798828125,-43.66796875,-400.0712890625,150.5849609375,-43.66796875,-400.068359375,153.9267578125,-88.334228515625,-399.455078125,150.78955078125,-88.48583984375,-404.9287109375,139.349365234375,-88.2705078125,-407.3818359375,138.720947265625,-88.0830078125,-400.068359375,154.174560546875,-84.88427734375,-399.4404296875,150.8271484375,-85.107421875,-404.9130859375,139.33349609375,-85.442626953125,-407.3779296875,138.716552734375,-85.3310546875,-433.974609375,158.258056640625,-85.283203125,-391.72265625,151.382568359375,-188.178466796875,-391.41796875,148.1455078125,-187.962890625,-392.45703125,150.73681640625,-185.53466796875,-391.822265625,148.18798828125,-185.71875,-397.39453125,137.479736328125,-186.647216796875,-400.408203125,137.707763671875,-187.193359375,-448.8447265625,168.0244140625,-42.515380859375,-432.490234375,181.77734375,-229.947265625,-432.490234375,167.587646484375,-229.947265625,-447.5361328125,167.650390625,-144.220458984375,-448.8447265625,184.561279296875,-42.515380859375,-432.7958984375,166.112060546875,-228.84716796875,-440.4296875,166.3759765625,-196.4169921875,-448.84765625,172.513671875,-86.531494140625,-448.8447265625,166.414794921875,-43.66796875,-448.84765625,169.052490234375,-88.382080078125,-448.84765625,169.092529296875,-84.258056640625,-448.84765625,171.384765625,-85.92138671875,-447.4599609375,169.112060546875,-145.21923828125,-473.521484375,148.796142578125,-241.3427734375,-482.9873046875,150.249267578125,-229.53955078125,-483.3701171875,147.662353515625,-230.86669921875,-476.404296875,142.611083984375,-242.1435546875,-468.5244140625,156.41796875,-239.95556640625,-490.0732421875,137.954345703125,-42.515380859375,-492.66796875,138.38330078125,-42.515380859375,
- -488.767578125,137.602783203125,-148.0126953125,-496.134765625,148.301513671875,-148.454345703125,-491.046875,138.3759765625,-148.16845703125,-495.6416015625,150.8095703125,-148.97705078125,-496.392578125,150.310302734375,-42.515380859375,-497.158203125,148.553955078125,-42.515380859375,-473.384765625,136.883056640625,-241.30517578125,-475.5654296875,148.44580078125,-240.6083984375,-475.4912109375,148.578369140625,-240.5888671875,-477.70703125,142.460693359375,-241.19775390625,-470.7607421875,156.364501953125,-239.287841796875,-474.67578125,136.049072265625,-240.3642578125,-472.3564453125,136.296630859375,-239.72705078125,-497.0927734375,153.08837890625,-150.68701171875,-497.3603515625,150.419677734375,-150.651611328125,-491.0263671875,140.85009765625,-86.4755859375,-488.580078125,140.68359375,-86.619140625,-495.037109375,152.94921875,-86.68310546875,-495.6611328125,150.7890625,-86.6591796875,-488.5244140625,147.038330078125,-206.1025390625,-480.65234375,138.143310546875,-204.118408203125,-483.8515625,137.7509765625,-204.7548828125,-487.9384765625,149.58447265625,-205.98681640625,-482.1650390625,136.11279296875,-197.738525390625,-484.4345703125,136.4765625,-198.2939453125,-482.8056640625,136.41943359375,-206.665283203125,-480.509765625,136.17236328125,-206.17822265625,-474.04296875,141.26708984375,-203.04833984375,-492.9931640625,136.599609375,-43.66796875,-490.330078125,136.153564453125,-43.66796875,-498.37890625,148.768798828125,-43.66796875,-497.59375,150.5849609375,-43.66796875,-497.6015625,153.9267578125,-88.334228515625,-498.2099609375,150.78955078125,-88.48583984375,-492.7373046875,139.349365234375,-88.2705078125,-490.283203125,138.720947265625,-88.0830078125,-497.6015625,154.174560546875,-84.88427734375,-498.2255859375,150.8271484375,-85.107421875,-492.751953125,139.33349609375,-85.442626953125,-490.287109375,138.716552734375,-85.3310546875,-463.6904296875,158.258056640625,-85.283203125,-488.5390625,151.382568359375,-207.53564453125,-488.9091796875,148.1455078125,-207.416015625,-488.9873046875,150.73681640625,-204.14794921875,
- -489.4931640625,148.18798828125,-204.62744140625,-483.9853515625,137.479736328125,-203.37890625,-480.982421875,137.707763671875,-202.75439453125,-447.427734375,188.259033203125,-84.41357421875,-450.271484375,188.258544921875,-84.41357421875,-447.427734375,185.49462890625,-86.990234375,-450.271484375,185.494140625,-86.990234375,-439.5751953125,184.32568359375,-193.3564453125,-442.3662109375,184.3251953125,-193.88720703125,-439.0244140625,181.31103515625,-196.201171875,-441.81640625,181.310546875,-196.75,-450.2685546875,185.03173828125,-43.66796875,-447.4248046875,185.0322265625,-43.66796875,-438.7158203125,185.056884765625,-197.74853515625,-441.505859375,185.056396484375,-198.30712890625,-446.0849609375,184.505859375,-144.53466796875,-448.923828125,184.50537109375,-144.7548828125,-445.970703125,186.0341796875,-146.00439453125,-448.8046875,186.03369140625,-146.234130859375,-447.427734375,187.896728515625,-89.77001953125,-450.271484375,187.896484375,-89.77001953125,-434.166015625,183.23388671875,-229.22412109375,-431.42578125,183.234619140625,-228.47021484375,-37.5234375,150.665283203125,-514.036254882813,-48.1171875,152.118408203125,-506.722045898438,-47.076171875,149.531494140625,-506.147216796875,-37.24609375,144.480224609375,-511.055541992188,-37.994140625,158.287109375,-519.197631835938,-200.5595703125,137.569091796875,-464.516845703125,-199.279296875,137.998046875,-462.258056640625,-114.115234375,139.975341796875,-500.720336914063,-112.15234375,150.674072265625,-493.605346679688,-113.490234375,140.74853515625,-498.519165039063,-111.845703125,153.18212890625,-494.163818359375,-197.453125,149.925048828125,-459.016967773438,-197.076171875,148.168701171875,-458.349731445313,-37.53515625,138.752197265625,-514.17919921875,-38.38671875,150.31494140625,-512.177001953125,-38.392578125,150.447509765625,-512.24853515625,-38.177734375,144.329833984375,-509.964233398438,-38.8515625,158.233642578125,-517.133544921875,-38.470703125,137.918212890625,-513.092407226563,-38.69921875,138.165771484375,-515.484619140625,-110.173828125,155.4609375,-492.9970703125,
- -110.146484375,152.792236328125,-492.729125976563,-162.4755859375,139.51123046875,-482.42138671875,-163.333984375,139.3447265625,-484.717529296875,-160.7060546875,151.6103515625,-478.815673828125,-160.4794921875,149.4501953125,-478.2392578125,-73.517578125,148.78076171875,-502.516967773438,-75.345703125,139.8857421875,-510.419677734375,-74.740234375,139.493408203125,-507.214965820313,-73.625,151.326904296875,-503.104125976563,-80.65625,137.855224609375,-509.083740234375,-80.083984375,138.218994140625,-506.819091796875,-73.17578125,138.161865234375,-508.172729492188,-73.6171875,137.914794921875,-510.477416992188,-76.38671875,143.009521484375,-517.036010742188,-198.2177734375,136.21435546875,-462.486694335938,-199.5205078125,135.768310546875,-464.809326171875,-195.58203125,148.383544921875,-457.789184570313,-195.96484375,150.19970703125,-458.47314453125,-158.330078125,152.587890625,-477.052124023438,-157.9658203125,149.45068359375,-476.544067382813,-160.306640625,138.010498046875,-481.495239257813,-161.435546875,137.382080078125,-483.6806640625,-161.15625,152.835693359375,-475.826904296875,-160.720703125,149.48828125,-475.334350585938,-162.6455078125,137.99462890625,-480.464233398438,-163.7236328125,137.377685546875,-482.682983398438,-174.44140625,156.919189453125,-507.028564453125,-72.34765625,153.125,-502.43359375,-72.44140625,149.887939453125,-502.0703125,-75.087890625,152.479248046875,-502.136352539063,-74.68359375,149.930419921875,-501.617797851563,-75.87890625,139.22216796875,-507.136596679688,-76.484375,139.4501953125,-510.139526367188,-220.8349609375,167.63916015625,-500.449829101563,-41.4140625,183.646484375,-556.4736328125,-41.4140625,169.456787109375,-556.4736328125,-126.240234375,170.02294921875,-540.343139648438,-220.8349609375,184.176025390625,-500.449829101563,-42.5546875,167.981201171875,-556.367553710938,-82.701171875,168.118408203125,-550.740112304688,-179.2646484375,171.1748046875,-521.150634765625,-219.83203125,166.029541015625,-501.015380859375,-177.5634765625,167.713623046875,-521.886108398438,
- -181.34765625,167.753662109375,-520.238403320313,-179.826171875,170.0458984375,-520.906127929688,-125.271484375,171.484619140625,-540.624267578125,-45.302734375,150.665283203125,-598.877563476563,-59.744140625,152.118408203125,-603.539916992188,-58.63671875,149.531494140625,-604.3701171875,-45.578125,144.480224609375,-601.857788085938,-44.830078125,158.287109375,-593.715698242188,-241.0986328125,137.569091796875,-536.353515625,-242.375,137.998046875,-538.611938476563,-137.25,139.975341796875,-580.25634765625,-139.435546875,150.674072265625,-587.30419921875,-137.9072265625,140.74853515625,-582.446411132813,-138.7705078125,153.18212890625,-587.02978515625,-244.2060546875,149.925048828125,-541.853515625,-244.58203125,148.168701171875,-542.520629882813,-45.2890625,138.752197265625,-598.734619140625,-46.71875,150.31494140625,-600.524169921875,-46.712890625,150.447509765625,-600.453125,-46.927734375,144.329833984375,-602.736938476563,-46.25390625,158.233642578125,-595.567626953125,-46.634765625,137.918212890625,-599.609252929688,-46.40625,138.165771484375,-597.216552734375,-137.677734375,155.4609375,-588.991943359375,-137.802734375,152.792236328125,-589.2314453125,-196.1396484375,139.51123046875,-559.8046875,-195.0205078125,139.3447265625,-557.622192382813,-197.5341796875,151.6103515625,-563.57470703125,-197.802734375,149.4501953125,-564.132080078125,-91.474609375,148.78076171875,-599.005859375,-90.408203125,139.8857421875,-590.960205078125,-91.001953125,139.493408203125,-594.16796875,-91.3671875,151.326904296875,-598.418701171875,-96.916015625,137.855224609375,-590.003051757813,-97.23828125,138.218994140625,-592.317749023438,-88.828125,138.161865234375,-593.900390625,-88.43359375,137.914794921875,-591.587158203125,-88.9609375,143.009521484375,-584.41943359375,-241.4296875,136.21435546875,-539.514526367188,-240.1259765625,135.768310546875,-537.192016601563,-244.0615234375,148.383544921875,-544.211669921875,-243.677734375,150.19970703125,-543.528198242188,-196.869140625,152.587890625,-566.65087890625,-196.955078125,149.45068359375,-567.278686523438,
- -195.01171875,138.010498046875,-562.157958984375,-194.234375,137.382080078125,-559.821655273438,-200.3759765625,152.835693359375,-565.125122070313,-200.400390625,149.48828125,-565.796630859375,-197.869140625,137.99462890625,-560.934814453125,-196.9892578125,137.377685546875,-558.626342773438,-186.3623046875,156.919189453125,-534.242431640625,-90.138671875,153.125,-599.55126953125,-90.390625,149.887939453125,-599.851440429688,-93.46484375,152.479248046875,-598.7158203125,-93.20703125,149.930419921875,-599.359985351563,-92.330078125,139.22216796875,-593.780883789063,-91.8046875,139.4501953125,-590.762573242188,-180.630859375,186.920166015625,-518.998779296875,-181.7783203125,186.919677734375,-521.6025390625,-178.279296875,184.15576171875,-520.02783203125,-179.412109375,184.1552734375,-522.6376953125,-85.236328125,186.068115234375,-548.810424804688,-85.775390625,186.067626953125,-551.60400390625,-82.380859375,183.053466796875,-549.352783203125,-82.904296875,183.052978515625,-552.149291992188,-220.5244140625,184.646484375,-502.255859375,-219.1376953125,184.64697265625,-499.7744140625,-80.822265625,186.79931640625,-549.64013671875,-81.33203125,186.798828125,-552.43896484375,-125.431640625,186.87841796875,-539.09619140625,-126.23046875,186.8779296875,-541.827880859375,-124.009765625,188.40673828125,-539.50830078125,-124.794921875,188.40625,-542.24267578125,-175.728515625,186.557861328125,-521.123291015625,-176.8447265625,186.5576171875,-523.740600585938,-42.689453125,185.10302734375,-557.78369140625,-42.423828125,185.103759765625,-554.951049804688,-267.3701171875,50.580810546875,-417.382690429688,-265.666015625,51.010009765625,-415.424194335938,-195.6201171875,50.567626953125,-468.906982421875,-192.3125,60.847900390625,-462.6357421875,-194.5849609375,51.310546875,-466.9697265625,-192.16796875,63.2578125,-463.205932617188,-263.2294921875,62.93701171875,-412.613891601563,-262.7255859375,61.1806640625,-412.035400390625,-231.921875,52.67578125,-443.727783203125,-233.22265625,52.50927734375,-445.806884765625,-229.5,64.77490234375,-440.52587890625,
- -229.1640625,62.61474609375,-440.0048828125,-264.7421875,49.226318359375,-415.799926757813,-266.4833984375,48.780029296875,-417.81494140625,-261.2197265625,61.3955078125,-411.724609375,-261.7333984375,63.211669921875,-412.31787109375,-226.9296875,65.75244140625,-439.188232421875,-226.4853515625,62.615234375,-438.753173828125,-229.732421875,51.1748046875,-443.160888671875,-231.2509765625,50.54638671875,-445.09423828125,-229.23828125,66,-437.58837890625,-228.7353515625,62.65283203125,-437.17919921875,-231.6376953125,51.1591796875,-441.823120117188,-233.1220703125,50.5419921875,-443.795166015625,-257.638671875,80.91796875,-477.256713867188,-294.4189453125,80.651123046875,-448.538818359375,-215.0791015625,79.43994140625,-503.643920898438,-294.392578125,97.58984375,-448.562377929688,-214.7529296875,96.616943359375,-503.82080078125,-255.5888671875,98.32958984375,-478.685424804688,-256.1669921875,83.77490234375,-478.282348632813,-293.6259765625,79.041748046875,-449.226196289063,-254.54296875,80.87841796875,-479.40576171875,-321.44921875,50.580810546875,-479.669677734375,-323.1494140625,51.010009765625,-481.627807617188,-233.6416015625,50.567626953125,-538.831787109375,-237.123046875,60.847900390625,-545.008422851563,-234.7080078125,51.310546875,-540.75390625,-236.486328125,63.2578125,-544.863525390625,-325.5859375,62.93701171875,-484.4384765625,-326.09375,61.1806640625,-485.016967773438,-280.013671875,52.67578125,-513.072143554688,-278.501953125,52.50927734375,-511.14208984375,-282.134765625,64.77490234375,-516.486450195313,-282.5087890625,62.61474609375,-516.980346679688,-322.4873046875,49.226318359375,-482.626831054688,-320.7470703125,48.780029296875,-480.61181640625,-326.0107421875,61.3955078125,-486.701904296875,-325.4970703125,63.211669921875,-486.10888671875,-282.208984375,65.75244140625,-519.54541015625,-282.4306640625,62.615234375,-520.134155273438,-279.5126953125,51.1748046875,-515.501098632813,-278.2734375,50.54638671875,-513.373901367188,-285.0810546875,66,-517.553588867188,-285.2548828125,62.65283203125,-518.19482421875,
- -281.849609375,51.1591796875,-513.901123046875,-280.5283203125,50.5419921875,-511.81494140625,-192.697265625,62.357177734375,-460.74365234375,-239.1826171875,62.357177734375,-545.566284179688,-239.8291015625,59.822998046875,-545.731201171875,-237.294921875,49.834228515625,-541.296752929688,-236.1826171875,49.067138671875,-539.290161132813,-216.685546875,79.126708984375,-502.76416015625,-196.31640625,49.067138671875,-466.679809570313,-195.2177734375,49.834228515625,-464.665649414063,-192.8193359375,59.822998046875,-460.154174804688,-44.341796875,55.135498046875,-514.71630859375,-44.060546875,55.472900390625,-512.1376953125,-43.53125,68.527587890625,-507.255126953125,-43.447265625,67.147216796875,-506.474609375,0.44140625,54.529296875,-516.13818359375,0.5859375,54.3984375,-518.585083007813,0.623046875,67.71875,-510.97021484375,0.59765625,66.021484375,-510.335571289063,-43.005859375,54.071533203125,-511.926025390625,-43.287109375,53.720947265625,-514.574340820313,-42.310546875,67.316162109375,-505.337890625,-42.392578125,68.743408203125,-506.137084960938,-1.017578125,68.681640625,-508.347290039063,-0.8125,66.05126953125,-507.706420898438,-0.515625,53.33740234375,-514.41162109375,-0.615234375,52.8525390625,-516.8779296875,-0.67578125,68.20703125,-543.47705078125,-48.7890625,78.762939453125,-555.736572265625,-48.7890625,95.724365234375,-555.736572265625,1.0859375,93.9541015625,-558.347534179688,0.59765625,79.408203125,-558.348876953125,-47.658203125,77.497802734375,-555.857666015625,-1.73828125,76.7197265625,-558.348266601563,-0.033203125,78.52099609375,-558.349853515625,-53.232421875,55.135498046875,-596.723266601563,-53.513671875,55.472900390625,-599.301391601563,-54.041015625,68.527587890625,-604.183959960938,-54.126953125,67.147216796875,-604.964477539063,0.630859375,54.529296875,-600.526123046875,0.78125,54.3984375,-598.078002929688,0.873046875,67.71875,-605.693115234375,0.845703125,66.021484375,-606.327880859375,-52.30859375,54.071533203125,-599.755859375,-52.025390625,53.720947265625,-597.107666015625,-53.00390625,67.316162109375,-606.344116210938,
- -52.916015625,68.743408203125,-605.544799804688,-1.162109375,68.681640625,-608.318359375,-0.904296875,66.05126953125,-608.959228515625,-0.53125,53.33740234375,-602.2548828125,-0.6484375,52.8525390625,-599.7880859375,-0.6953125,68.20703125,-573.188842773438,-47.77734375,96.001708984375,-556.96337890625,-47.5390625,96.002197265625,-554.751586914063,-1.53515625,95.6591796875,-559.460571289063,-1.529296875,95.659912109375,-557.236450195313,-258.341796875,100.0810546875,-478.516479492188,-256.69921875,100.08154296875,-476.165649414063,-294.564453125,97.64990234375,-450.311645507813,-292.6875,97.650146484375,-448.140747070313,-254.330078125,99.713623046875,-481.29150390625,-252.708984375,99.714111328125,-478.923095703125,-216.994140625,96.055419921875,-504.232299804688,-215.6103515625,96.055908203125,-501.717529296875,-394.2275390625,51.046875,-213.377685546875,-391.7236328125,51.47607421875,-212.71875,-364.7236328125,50.87841796875,-295.00537109375,-358.4453125,61.15869140625,-291.711669921875,-362.7685546875,51.621337890625,-293.997314453125,-358.64453125,63.568603515625,-292.272705078125,-388.1201171875,63.403076171875,-211.7734375,-387.37890625,61.646728515625,-211.57861328125,-379.974609375,48.58935546875,-254.6923828125,-382.21875,48.4228515625,-255.67626953125,-376.1640625,60.6884765625,-253.42236328125,-375.58984375,58.5283203125,-253.181640625,-391.162109375,49.6923828125,-213.5654296875,-393.73828125,49.24609375,-214.248046875,-385.9580078125,61.861572265625,-212.18505859375,-386.7158203125,63.677734375,-212.3857421875,-373.27734375,61.666015625,-253.789306640625,-372.6640625,58.52880859375,-253.68505859375,-377.833984375,47.08837890625,-255.485595703125,-380.1787109375,46.4599609375,-256.22021484375,-374.2998046875,61.91357421875,-251.121337890625,-373.6474609375,58.56640625,-251.07275390625,-378.6630859375,47.07275390625,-253.26904296875,-381.0048828125,46.45556640625,-254.05517578125,-434.13671875,81.1171875,-223.859375,-400.453125,79.750732421875,-312.57958984375,-434.1298828125,98.046875,-223.88623046875,
- -400.4560546875,96.97509765625,-312.57275390625,-419.23828125,94.2431640625,-270.18359375,-419.396484375,80.2529296875,-269.7822265625,-433.8671875,79.5078125,-224.8896484375,-418.7763671875,76.7919921875,-271.3896484375,-420.14453125,76.83154296875,-267.807861328125,-419.5947265625,79.1240234375,-269.2509765625,-474.0146484375,51.046875,-234.33251953125,-476.517578125,51.47607421875,-234.9912109375,-435.68359375,50.87841796875,-331.05419921875,-442.05859375,61.15869140625,-334.163818359375,-437.6533203125,51.621337890625,-332.033935546875,-441.4453125,63.568603515625,-334.41796875,-480.1220703125,63.403076171875,-235.93701171875,-480.86328125,61.646728515625,-236.131591796875,-458.8193359375,48.58935546875,-284.763671875,-456.482421875,48.4228515625,-284.02490234375,-462.4921875,60.6884765625,-286.39013671875,-463.0830078125,58.5283203125,-286.58642578125,-476.53125,49.6923828125,-236.205078125,-473.9599609375,49.24609375,-235.5224609375,-481.7392578125,61.861572265625,-237.5859375,-480.9814453125,63.677734375,-237.384765625,-464.275390625,61.666015625,-288.896240234375,-464.787109375,58.52880859375,-289.260498046875,-459.7646484375,47.08837890625,-287.08154296875,-457.54296875,46.4599609375,-286.020263671875,-465.5390625,61.91357421875,-285.57666015625,-466.0478515625,58.56640625,-286.011962890625,-460.8095703125,47.07275390625,-284.39599609375,-458.54296875,46.45556640625,-283.416015625,-357.6962890625,62.66796875,-289.91943359375,-444.08203125,62.66796875,-333.4365234375,-444.7099609375,60.1337890625,-333.200927734375,-440.1044921875,50.14501953125,-330.985595703125,-438.0546875,49.3779296875,-329.962890625,-401.2890625,79.4375,-310.91845703125,-364.046875,49.3779296875,-292.754150390625,-361.99609375,50.14501953125,-291.71728515625,-357.4677734375,60.1337890625,-289.359619140625,-407.5859375,54.37890625,0.220458984375,-404.9951171875,54.7158203125,0.220458984375,-400.083984375,67.77099609375,0.220458984375,-399.298828125,66.390625,0.220458984375,-406.6357421875,53.493896484375,-49.630615234375,-409.083984375,53.363037109375,-49.7744140625,
- -401.4697265625,66.683349609375,-49.84619140625,-400.8359375,64.986083984375,-49.81396484375,-404.6708984375,53.314453125,-0.916259765625,-407.333984375,52.9638671875,-0.916259765625,-398.0419921875,66.5595703125,-0.916259765625,-398.8486328125,67.98681640625,-0.916259765625,-447.4931640625,94.490478515625,-47.56884765625,-398.8447265625,67.646240234375,-47.99951171875,-398.205078125,65.015869140625,-48.226806640625,-404.9091796875,52.302001953125,-48.56982421875,-407.375,51.817138671875,-48.4580078125,-448.8447265625,75.684326171875,-47.34912109375,-448.8447265625,78.005859375,0.220458984375,-448.8447265625,94.9912109375,0.1923828125,-448.8447265625,93.049072265625,-50.109375,-448.8447265625,78.372802734375,-49.6865234375,-448.8447265625,76.7412109375,-0.916259765625,-490.07421875,54.37890625,0.220458984375,-492.6689453125,54.7158203125,0.220458984375,-497.580078125,67.77099609375,0.220458984375,-498.365234375,66.390625,0.220458984375,-491.0244140625,53.493896484375,-49.630615234375,-488.576171875,53.363037109375,-49.7744140625,-496.1904296875,66.683349609375,-49.84619140625,-496.828125,64.986083984375,-49.81396484375,-492.9931640625,53.314453125,-0.916259765625,-490.330078125,52.9638671875,-0.916259765625,-499.6142578125,66.5595703125,-0.916259765625,-498.8115234375,67.98681640625,-0.916259765625,-450.203125,94.48974609375,-47.56884765625,-498.8154296875,67.646240234375,-47.99951171875,-499.4580078125,65.015869140625,-48.226806640625,-492.7509765625,52.302001953125,-48.56982421875,-490.2841796875,51.817138671875,-48.4580078125,-435.2841796875,98.090576171875,-225.26611328125,-432.4443359375,98.091064453125,-224.51318359375,-421.4619140625,95.9697265625,-268.466796875,-418.7138671875,95.97021484375,-267.431640625,-419.689453125,95.602294921875,-273.1015625,-416.94921875,95.602783203125,-272.035888671875,-402.404296875,96.34130859375,-311.972412109375,-399.7783203125,96.341796875,-310.653076171875,-450.203125,95.109375,-0.916259765625,-447.4931640625,95.109619140625,-0.916259765625,-482.9033203125,-107.13671875,-158.57421875,
- -483.0546875,-108.605712890625,-156.2861328125,-484.8037109375,-108.38427734375,-158.861328125,-483.759765625,-131.003662109375,-156.67822265625,-485.361328125,-131.467529296875,-159.1435546875,-424.5869140625,-109.183349609375,-155.07275390625,-426.75390625,-109.1640625,-153.037353515625,-425.998046875,-107.5703125,-154.87939453125,-478.9658203125,-106.91650390625,-195.97607421875,-480.884765625,-108.169677734375,-196.08349609375,-478.6318359375,-108.356201171875,-198.27294921875,-479.3115234375,-130.76025390625,-198.64892578125,-481.396484375,-131.253173828125,-196.541259765625,-421.1162109375,-108.96533203125,-187.81591796875,-422.4990234375,-107.34375,-188.01318359375,-422.8076171875,-108.9111328125,-190.2802734375,-426.78125,-186.96240234375,-153.719970703125,-424.751953125,-186.94580078125,-155.62255859375,-426.6513671875,-188.40673828125,-155.769775390625,-423.13671875,-188.1943359375,-188.54248046875,-421.2529296875,-186.7333984375,-188.25390625,-422.8359375,-186.722900390625,-190.557373046875,-454.369140625,-187.027587890625,-155.3525390625,-455.0205078125,-188.283935546875,-157.629638671875,-450.14453125,-186.787109375,-194.781494140625,-451.265625,-188.071044921875,-192.697509765625,-452.888671875,-114.74462890625,-281.064208984375,-450.5634765625,-128.78369140625,-294.9697265625,-446.521484375,-144.1845703125,-283.284912109375,-445.0029296875,-144.4296875,-278.81298828125,-447.369140625,-136.3740234375,-291.81591796875,-264.1357421875,-158.87646484375,-498.306762695313,-266.1015625,-161.73779296875,-497.085571289063,-270.5146484375,-184.457275390625,-478.41943359375,-269.654296875,-167.85888671875,-490.334594726563,-249.3349609375,-184.36181640625,-475.204711914063,-247.0537109375,-182.964111328125,-475.745849609375,-255.1962890625,-184.43310546875,-471.854614257813,-255.884765625,-164.65478515625,-487.259765625,-408.533203125,51.35791015625,2.97509765625,-448.5859375,74.664794921875,2.97509765625,-488.6416015625,51.35791015625,2.97509765625,-488.6416015625,-76.825927734375,2.97509765625,-408.533203125,-76.825927734375,2.97509765625,
- 380.029296875,53.59130859375,-253.11669921875,458.392578125,53.59130859375,-282.6025390625,99.083984375,140.325439453125,-589.985595703125,82.0859375,140.325439453125,-508.004638671875,193.021484375,140.325439453125,-560.40576171875,159.982421875,140.325439453125,-483.476440429688,277.720703125,49.5048828125,-513.638427734375,230.212890625,49.5048828125,-444.696044921875,354.015625,142.378173828125,-448.623657226563,293.4765625,142.378173828125,-390.784545898438,414.552734375,140.325439453125,-370.938842773438,343.681640625,140.325439453125,-326.36669921875,343.681640625,52.365234375,-326.36669921875,293.4765625,52.365234375,-390.784545898438,159.982421875,52.365234375,-483.476440429688,82.0859375,52.365234375,-508.004638671875,99.083984375,52.365234375,-589.985595703125,193.021484375,52.365234375,-560.40576171875,354.015625,52.365234375,-448.623657226563,414.552734375,52.365234375,-370.938842773438,380.029296875,-80.247314453125,-253.11669921875,343.681640625,-80.247314453125,-326.36669921875,293.4765625,-80.247314453125,-390.784545898438,230.212890625,-80.247314453125,-444.696044921875,159.982421875,-80.247314453125,-483.476440429688,82.0859375,-80.247314453125,-508.004638671875,319.73046875,52.365234375,-481.198852539063,265.052734375,52.365234375,-417.796508789063,265.052734375,-80.247314453125,-417.796508789063,235.775390625,52.365234375,-539.531982421875,195.431640625,52.365234375,-466.16748046875,44.134765625,52.365234375,-514.018676757813,53.3203125,52.365234375,-597.23828125,44.134765625,-80.247314453125,-514.018676757813,436.826171875,52.365234375,-331.61181640625,362.1484375,52.365234375,-293.75634765625,436.826171875,140.325439453125,-331.61181640625,362.1484375,140.325439453125,-293.75634765625,362.1484375,-80.247314453125,-293.75634765625,235.775390625,137.759521484375,-539.531982421875,195.431640625,137.759521484375,-466.16748046875,195.431640625,-80.247314453125,-466.16748046875,321.994140625,140.325439453125,-479.235717773438,266.927734375,140.325439453125,-416.168701171875,44.134765625,138.272705078125,-514.018676757813,
- 53.3203125,138.272705078125,-597.23828125,484.078125,140.119384765625,-184.62158203125,401.33203125,140.119384765625,-171.868896484375,489.802734375,140.325439453125,-98.56640625,406.076171875,140.325439453125,-98.56640625,490.466796875,53.7265625,0,406.740234375,53.7265625,0,406.076171875,52.365234375,-90.91259765625,400.953125,52.365234375,-174.27978515625,483.623046875,52.365234375,-187.52880859375,489.802734375,52.365234375,-90.91259765625,406.740234375,-80.247314453125,0,406.076171875,-80.247314453125,-90.91259765625,400.953125,-80.247314453125,-174.27978515625,489.802734375,54.69287109375,-47.24755859375,406.076171875,54.69287109375,-47.24755859375,406.076171875,-80.247314453125,-44.83056640625,393.08984375,52.365234375,-211.8896484375,474.1328125,52.365234375,-232.884765625,393.08984375,-80.247314453125,-211.8896484375,489.802734375,140.325439453125,-47.24755859375,406.076171875,140.325439453125,-47.24755859375,406.076171875,-80.247314453125,-47.24755859375,393.08984375,138.579833984375,-211.8896484375,474.1328125,138.579833984375,-232.884765625,399.486328125,171.75048828125,-312.68408203125,379.119140625,171.75048828125,-348.65283203125,323.74609375,173.80322265625,-419.7041015625,294.4609375,171.75048828125,-447.7021484375,215.60546875,169.1845703125,-502.849731445313,176.501953125,171.75048828125,-521.941040039063,90.583984375,171.75048828125,-548.9951171875,48.728515625,169.69775390625,-555.628540039063,447.935546875,171.75048828125,-47.24755859375,447.935546875,171.75048828125,-98.56640625,442.705078125,171.54443359375,-178.2451171875,433.611328125,170.0048828125,-222.38720703125,391.66015625,-73.922607421875,-413.044311523438,392.04296875,-74.403564453125,-415.346923828125,390.640625,-72.585693359375,-414.063720703125,318.330078125,-72.3671875,-358.585815429688,317.564453125,-74.070556640625,-357.386962890625,320.748046875,-74.443115234375,-358.599365234375,320.19921875,-108.157470703125,-358.01123046875,319.744140625,-109.638671875,-359.299072265625,316.92578125,-108.138671875,-357.226806640625,391.705078125,-109.0537109375,-413.508056640625,
- 389.310546875,-110.8583984375,-415.406616210938,391.43359375,-109.1162109375,-415.775146484375,0.408203125,-112.9609375,-515.791625976563,0.404296875,-111.419677734375,-513.779418945313,-0.791015625,-111.419677734375,-515.792358398438,-1.4296875,-110.170166015625,-605.89013671875,0.61328125,-110.121337890625,-610.325073242188,0.60546875,-112.790283203125,-607.299194335938,1.34765625,-72.570556640625,-516.91943359375,-0.419921875,-74.860595703125,-514.9228515625,-1.166015625,-75.052734375,-593.28564453125,0.607421875,-78.67236328125,-607.859741210938,-1.169921875,-78.91552734375,-604.1552734375,6.97265625,-72.591552734375,-607.244995117188,2.70703125,-74.7802734375,-609.633056640625,0.595703125,-72.8349609375,-593.855346679688,2.544921875,-74.94970703125,-513.100219726563,171.609375,-107.59619140625,-577.540771484375,170.7109375,-109.905517578125,-575.1083984375,139.69921875,-109.538330078125,-490.822143554688,138.802734375,-108.01171875,-488.39208984375,141.01171875,-76.788818359375,-493.163818359375,169.8203125,-75.956787109375,-571.1943359375,170.56640625,-78.003173828125,-573.228393554688,93.220703125,-109.0751953125,-595.785034179688,76.94140625,-109.33056640625,-513.48876953125,76.591796875,-78.27587890625,-509.502075195313,77.173828125,-77.20458984375,-512.486938476563,92.9453125,-76.000244140625,-594.322509765625,92.736328125,-111.35400390625,-593.26025390625,259.54296875,-106.845947265625,-527.521484375,215.927734375,-106.180908203125,-457.469116210938,257.892578125,-75.716796875,-525.166381835938,260.68359375,-104.787109375,-529.350708007813,214.5078125,-104.69580078125,-455.184814453125,214.455078125,-74.775634765625,-455.337768554688,215.5703125,-72.847900390625,-457.136596679688,327.029296875,-107.114990234375,-476.56982421875,271.140625,-100.5283203125,-414.523803710938,329.123046875,-78.532470703125,-478.894653320313,328.443359375,-105.067138671875,-478.156127929688,269.0078125,-98.924072265625,-412.13134765625,271.927734375,-73.06103515625,-415.390502929688,273.1484375,-71.104248046875,-416.75634765625,
- 327.806640625,-76.519775390625,-477.414306640625,261.5546875,-72.60009765625,-526.809204101563,264.904296875,-108.014404296875,-532.1591796875,263.66015625,-110.244384765625,-530.1826171875,215.50390625,-109.513916015625,-453.560180664063,213.94140625,-107.90185546875,-451.079711914063,214.015625,-71.574462890625,-451.1728515625,215.2421875,-69.483154296875,-453.106201171875,257.28125,-75.6015625,-529.471069335938,262.1328125,-111.435546875,-534.867553710938,260.90234375,-113.53857421875,-532.874145507813,212.89453125,-112.864013671875,-455.185668945313,211.361328125,-111.346923828125,-452.703369140625,210.517578125,-74.642578125,-453.347045898438,211.732421875,-72.6708984375,-455.312133789063,142.2578125,-76.785888671875,-492.695190429688,140.205078125,-75.052490234375,-493.464233398438,99.08203125,-70.544189453125,-599.151245117188,99.5234375,-72.656982421875,-601.352661132813,97.98046875,-109.650390625,-602.164916992188,97.43359375,-112.122802734375,-599.427978515625,92.60546875,-110.373046875,-601.206787109375,92.087890625,-112.85205078125,-598.458251953125,90.021484375,-76.243408203125,-596.417602539063,259.076171875,-69.622802734375,-522.85400390625,272.8046875,-69.636474609375,-524.450561523438,275.552734375,-71.711669921875,-525.08984375,264.384765625,-82.6953125,-531.3662109375,260.486328125,-85.546142578125,-529.375122070313,261.349609375,-87.447021484375,-533.2734375,256.5546875,-74.7802734375,-538.123168945313,255.423828125,-72.8125,-536.385375976563,254.486328125,-72.79931640625,-524.907592773438,255.421875,-72.974365234375,-521.180297851563,126.20703125,-69.44970703125,-495.726806640625,124.775390625,-71.5986328125,-493.088500976563,139.13671875,-80.29736328125,-488.105102539063,147.560546875,-73.787109375,-484.86083984375,148.61328125,-71.681884765625,-487.453491210938,143.708984375,-74.20166015625,-500.451049804688,275.8125,-73.197021484375,-419.2041015625,276.033203125,-72.391357421875,-405.54150390625,274.8984375,-74.213134765625,-404.182983398438,269.1328125,-86.8369140625,-412.2958984375,265.12890625,-71.421630859375,-413.039672851563,
- 263.662109375,-69.458740234375,-416.80908203125,75.880859375,-73.603515625,-520.467651367188,79.708984375,-74.98046875,-525.662109375,80.591796875,-72.490966796875,-525.3955078125,86.55078125,-72.475341796875,-506.869995117188,85.84765625,-74.69921875,-503.7138671875,76.73046875,-82.498291015625,-505.702270507813,76.591796875,-82.460205078125,-509.580078125,74.58984375,-82.71337890625,-506.091186523438,65.626953125,-75.857666015625,-507.61865234375,66.712890625,-73.598388671875,-510.841674804688,87.876953125,-73.648193359375,-584.970581054688,86.560546875,-73.65673828125,-599.532470703125,86.1796875,-75.773681640625,-601.888427734375,92.267578125,-84.537841796875,-599.450073242188,93.14453125,-85.735595703125,-595.452026367188,90.775390625,-75.01953125,-583.032104492188,330.955078125,-100.636474609375,-480.964233398438,339.923828125,-108.9072265625,-472.673583984375,338.763671875,-110.806884765625,-470.886108398438,316.26953125,-105.031005859375,-464.52490234375,325.0078125,-109.2958984375,-484.513793945313,326.181640625,-107.232666015625,-486.336059570313,168.333984375,-74.279296875,-567.154541015625,179.087890625,-71.783203125,-573.830688476563,181.158203125,-73.822998046875,-575.33984375,171.9921875,-85.772705078125,-577.146118164063,163.427734375,-71.595703125,-583.724853515625,162.130859375,-69.541748046875,-581.872680664063,74.638671875,-104.58642578125,-506.344360351563,63.98046875,-111.23583984375,-508.341430664063,63.705078125,-112.77294921875,-510.68798828125,76.66796875,-112.748779296875,-517.067260742188,78.34765625,-111.2548828125,-518.635986328125,81.072265625,-112.01611328125,-517.60791015625,93.46875,-110.450439453125,-504.774780273438,92.634765625,-108.91943359375,-502.514770507813,78.666015625,-105.521484375,-505.57421875,76.64453125,-103.23779296875,-509.8173828125,332.439453125,-72.574462890625,-476.999755859375,333.919921875,-74.46435546875,-478.327514648438,327.892578125,-71.662841796875,-484.872680664063,327.23828125,-69.646240234375,-482.80322265625,178.625,-111.989501953125,-577.027465820313,
- 176.99609375,-114.884521484375,-574.175659179688,143.474609375,-114.203125,-489.411499023438,142.564453125,-112.67822265625,-486.97216796875,169.42578125,-108.353759765625,-581.955810546875,168.353515625,-110.671875,-579.576782226563,137.51953125,-110.314453125,-491.617919921875,136.49609375,-108.787841796875,-489.24560546875,273.154296875,-109.841796875,-409.6904296875,270.96875,-108.333984375,-407.321899414063,264.583984375,-106.706298828125,-413.073608398438,267.02734375,-108.30908203125,-415.167846679688,495.8125,-71.98583984375,1.50341796875,497.53125,-72.46728515625,0.067626953125,495.638671875,-70.6494140625,0.207275390625,404.4921875,-70.42919921875,-0.454833984375,403.158203125,-72.1337890625,0.07568359375,406.4140625,-72.505126953125,1.180419921875,405.6171875,-106.220703125,1.323974609375,406.052734375,-107.701904296875,-0.11181640625,402.548828125,-106.202392578125,-0.2236328125,496.134765625,-107.11572265625,1.1962890625,495.41015625,-108.921630859375,-1.499755859375,497.3125,-107.179443359375,-0.574462890625,320.00390625,-112.66552734375,-358.988159179688,318.41796875,-111.12353515625,-357.75341796875,319.265625,-111.12353515625,-359.936157226563,389.892578125,-109.87451171875,-415.87744140625,394.6484375,-109.82568359375,-416.997192382813,392.2578125,-112.494384765625,-415.140380859375,321.46875,-72.2744140625,-358.9462890625,318.80859375,-74.564453125,-359.109008789063,380.123046875,-74.7578125,-407.912841796875,392.703125,-78.376220703125,-415.484375,388.6875,-78.620849609375,-414.603393554688,396.134765625,-72.296630859375,-410.087036132813,395.39453125,-74.484375,-414.916870117188,381.65234375,-72.538818359375,-406.877319335938,319.1953125,-74.654296875,-355.6513671875,474.017578125,-104.31005859375,-262.029541015625,471.548828125,-106.619384765625,-261.238525390625,386.0234375,-106.25244140625,-233.8251953125,383.55859375,-104.725830078125,-233.03466796875,388.677734375,-73.5029296875,-234.230712890625,467.916015625,-72.670654296875,-259.533203125,469.978515625,-74.717041015625,-260.19677734375,
- 440.169921875,-108.779296875,-335.04736328125,365.275390625,-109.03466796875,-297.242431640625,361.919921875,-77.97998046875,-295.06494140625,364.6328125,-75.915771484375,-296.44482421875,438.84375,-75.007568359375,-334.36279296875,437.880859375,-111.057861328125,-333.87744140625,488.697265625,-107.280517578125,-161.932861328125,406.63671875,-106.615966796875,-153.2119140625,485.822265625,-77.70166015625,-161.78466796875,490.837890625,-105.223388671875,-162.16064453125,403.95703125,-105.130859375,-152.927734375,404.046875,-75.210693359375,-153.06396484375,406.154296875,-73.282958984375,-153.28857421875,491.1328125,-105.1787109375,-80.1318359375,407.62890625,-102.3125,-80.514892578125,494.263671875,-76.59619140625,-80.1201171875,493.26171875,-103.131103515625,-80.1318359375,404.423828125,-100.70849609375,-80.514892578125,408.798828125,-74.845458984375,-80.5029296875,410.630859375,-72.888427734375,-80.5029296875,492.279296875,-74.5830078125,-80.115966796875,489.369140625,-76.3212890625,-159.910400390625,495.646484375,-111.7353515625,-160.56396484375,493.32421875,-113.96533203125,-160.326904296875,403.29296875,-113.236083984375,-151.141357421875,400.380859375,-111.62255859375,-150.843994140625,400.494140625,-75.295166015625,-150.84521484375,402.771484375,-73.205322265625,-151.0703125,488.837890625,-72.315673828125,-164.916259765625,496.078125,-108.149658203125,-164.410400390625,493.75,-110.252685546875,-164.15478515625,402.97265625,-109.578125,-154.19775390625,400.068359375,-108.060791015625,-153.87939453125,400.05859375,-71.3564453125,-154.93896484375,402.353515625,-69.385009765625,-155.193115234375,389.076171875,-73.5,-232.95849609375,388.416015625,-75.052490234375,-235.052490234375,446.42578125,-70.544189453125,-332.49853515625,448.435546875,-72.656982421875,-333.50390625,448.12890625,-109.650390625,-335.2197265625,445.630859375,-112.122802734375,-333.967041015625,444.064453125,-110.078125,-338.86572265625,441.578125,-112.55615234375,-337.5849609375,438.69921875,-75.947509765625,-337.95751953125,484.7265625,-73.343994140625,-159.42822265625,
- 494.43359375,-73.35888671875,-149.59033203125,496.62890625,-75.433837890625,-147.819091796875,494.705078125,-86.417236328125,-160.481201171875,490.734375,-85.981201171875,-162.33056640625,494.345703125,-84.1611328125,-164.04638671875,495.212890625,-71.494384765625,-170.814453125,493.146484375,-69.5263671875,-170.63623046875,483.5234375,-69.51318359375,-164.310546875,481.158203125,-73.409423828125,-161.283203125,381.5859375,-69.44970703125,-247.478515625,378.62890625,-71.5986328125,-246.98291015625,383.537109375,-77.011474609375,-232.59619140625,386.1640625,-70.501220703125,-223.9580078125,388.853515625,-68.39599609375,-224.72509765625,396.08203125,-70.915771484375,-236.587890625,414.232421875,-71.2607421875,-80.112060546875,404.29296875,-70.45458984375,-69.81396484375,402.52734375,-72.275634765625,-69.7021484375,404.626953125,-88.62109375,-80.53466796875,402.537109375,-75.142578125,-84.41943359375,404.41796875,-73.1796875,-88.407958984375,370.126953125,-73.30810546875,-302.37158203125,376.578125,-73.98828125,-302.548828125,376.908203125,-72.490966796875,-301.693115234375,365.970703125,-72.475341796875,-285.59619140625,363.052734375,-74.69921875,-284.2080078125,359.01171875,-82.498291015625,-292.6181640625,361.984375,-82.460205078125,-295.112548828125,357.998046875,-82.417236328125,-294.54638671875,353.69140625,-75.562255859375,-302.548095703125,356.896484375,-73.30224609375,-303.677001953125,428.357421875,-73.353271484375,-332.60595703125,439.025390625,-73.360595703125,-342.60302734375,440.646484375,-75.477783203125,-344.35400390625,442.470703125,-84.24169921875,-338.05419921875,439.857421875,-85.440673828125,-334.903564453125,428.607421875,-74.02734375,-329.12841796875,497.02734375,-98.698486328125,-80.1318359375,496.966796875,-106.9697265625,-69.087890625,494.87109375,-108.869384765625,-68.7451171875,474.982421875,-103.09423828125,-80.1318359375,495.759765625,-113.018310546875,-86.2939453125,497.904296875,-110.954345703125,-86.5732421875,463.814453125,-70.9931640625,-258.2197265625,475.6953125,-68.4970703125,-253.8505859375,
- 478.16015625,-70.537109375,-253.146728515625,473.943359375,-82.486572265625,-261.48583984375,473.86328125,-71.595703125,-272.28125,471.6015625,-69.541748046875,-272.167236328125,358.232421875,-104.29052734375,-294.66162109375,353.244140625,-110.940185546875,-304.293701171875,354.92578125,-112.476806640625,-305.95263671875,367.9296875,-112.45263671875,-299.658203125,370.197265625,-110.958984375,-299.302490234375,371.06640625,-112.01611328125,-296.520751953125,368.576171875,-110.450439453125,-278.85498046875,366.283203125,-108.91943359375,-278.1201171875,360.103515625,-105.521484375,-291.01318359375,362.201171875,-103.23779296875,-295.216796875,495.072265625,-70.6376953125,-76.72998046875,497.05078125,-72.527587890625,-76.54638671875,497.923828125,-75.385009765625,-84.54296875,495.939453125,-73.367431640625,-83.75341796875,477.931640625,-108.70361328125,-256.180908203125,474.681640625,-111.5986328125,-255.712158203125,387.234375,-110.9169921875,-229.980712890625,384.755859375,-109.39208984375,-229.197021484375,476.158203125,-108.353759765625,-266.4658203125,473.62109375,-110.671875,-265.84765625,385.30859375,-110.314453125,-236.03369140625,382.810546875,-108.787841796875,-235.37890625,405.38671875,-107.905029296875,-75.2861328125,402.1640625,-106.397216796875,-75.30615234375,402.203125,-110.4287109375,-84.90625,405.38671875,-112.03125,-84.3916015625,53.3203125,-80.247314453125,-597.23828125,235.775390625,-80.247314453125,-539.531982421875,436.826171875,-80.247314453125,-331.61181640625,489.802734375,-80.247314453125,-47.24755859375,489.802734375,-80.247314453125,-44.83056640625,458.392578125,-80.247314453125,-282.6025390625,474.1328125,-80.247314453125,-232.884765625,490.466796875,-80.247314453125,0,99.083984375,-80.247314453125,-589.985595703125,193.021484375,-80.247314453125,-560.40576171875,277.720703125,-80.247314453125,-513.638427734375,319.705078125,-80.247314453125,-481.221557617188,354.015625,-80.247314453125,-448.623657226563,414.552734375,-80.247314453125,-370.938842773438,483.623046875,-80.247314453125,-187.52880859375,
- 489.802734375,-80.247314453125,-90.91259765625,482.76171875,-103.4970703125,-38.23388671875,482.689453125,-104.971435546875,-36.119873046875,484.6796875,-104.744140625,-38.325439453125,483.4296875,-127.368408203125,-36.466796875,485.26953125,-127.826904296875,-38.5966796875,424.396484375,-105.543212890625,-40.734375,426.337890625,-105.52978515625,-38.369140625,425.779296875,-103.9306640625,-40.37158203125,484.048828125,-103.186279296875,-73.056640625,485.95703125,-104.43994140625,-72.84521484375,484.134765625,-104.620361328125,-75.210205078125,484.873046875,-127.02392578125,-75.493408203125,486.546875,-127.522216796875,-73.244140625,425.677734375,-105.235107421875,-75.3896484375,427.068359375,-103.61328125,-75.32177734375,427.7890625,-105.1748046875,-77.58740234375,426.443359375,-183.325927734375,-39.28662109375,424.625,-183.3037109375,-41.500244140625,426.529296875,-184.7646484375,-41.4404296875,427.80078125,-184.46240234375,-75.9521484375,425.896484375,-183.00146484375,-76.011962890625,427.87890625,-182.9853515625,-78.0859375,454.0546875,-183.3916015625,-38.10205078125,454.939453125,-184.64208984375,-40.27978515625,455.494140625,-183.04931640625,-77.13671875,456.216796875,-184.339111328125,-74.92724609375,483.21484375,-106.260009765625,-159.248046875,483.34765625,-107.7158203125,-156.93017578125,485.119140625,-107.508544921875,-159.489990234375,484.060546875,-130.115234375,-157.16015625,485.69140625,-130.5927734375,-159.60888671875,424.865234375,-108.30810546875,-156.381591796875,427.0078125,-108.274658203125,-154.311767578125,426.26953125,-106.693115234375,-156.17919921875,479.646484375,-106.254150390625,-196.79296875,481.5703125,-107.506591796875,-196.8544921875,479.3359375,-107.70703125,-199.08984375,480.041015625,-130.1123046875,-199.300048828125,482.111328125,-130.591552734375,-197.15478515625,421.708984375,-108.303466796875,-189.27783203125,423.091796875,-106.681884765625,-189.47119140625,423.423828125,-108.26318359375,-191.72607421875,427.06640625,-186.075927734375,-154.52490234375,425.05859375,-186.072509765625,-156.4560546875,
- 426.9609375,-187.533447265625,-156.568115234375,423.802734375,-187.533447265625,-189.50341796875,421.916015625,-186.072509765625,-189.246337890625,423.51953125,-186.0751953125,-191.53466796875,454.671875,-186.140380859375,-155.8330078125,455.3515625,-187.41015625,-158.10302734375,450.875,-186.14013671875,-195.4384765625,451.9765625,-187.41064453125,-193.32177734375,453.97265625,-103.146484375,-280.315185546875,454.896484375,-104.578369140625,-278.126953125,455.67578125,-104.396728515625,-281.215087890625,455.595703125,-126.978271484375,-278.335205078125,456.275390625,-127.48046875,-281.26171875,400.1171875,-105.197265625,-257.681640625,402.849609375,-105.137939453125,-256.41015625,401.509765625,-103.578857421875,-257.968017578125,437.72265625,-103.5322265625,-314.99658203125,439.498046875,-104.782958984375,-315.736328125,436.650390625,-105.00927734375,-317.06982421875,437.3671875,-127.4140625,-317.27099609375,440.0390625,-127.868896484375,-315.94580078125,385.900390625,-105.58203125,-288.040283203125,387.126953125,-103.960693359375,-288.6982421875,386.671875,-105.567626953125,-290.9501953125,403.162109375,-182.936767578125,-255.83203125,400.607421875,-182.957275390625,-257.0263671875,402.37109375,-184.418212890625,-257.74658203125,388.1953125,-184.806396484375,-288.17578125,386.486328125,-183.345458984375,-287.32373046875,387.224609375,-183.372314453125,-290.0380859375,411.681640625,-183.4384765625,-302.91015625,413.439453125,-184.684326171875,-301.2490234375,396.818359375,-106.649169921875,-393.925659179688,398.23046875,-108.10498046875,-392.081909179688,398.23046875,-107.897705078125,-395.2294921875,398.6875,-130.50439453125,-392.685302734375,398.626953125,-130.98193359375,-395.657470703125,350.44140625,-108.697265625,-358.39892578125,353.390625,-108.663818359375,-357.884399414063,351.71875,-107.082275390625,-359.025634765625,372.6796875,-106.643310546875,-422.974365234375,374.20703125,-107.895751953125,-424.1416015625,371.134765625,-108.09619140625,-424.692993164063,371.587890625,-130.50146484375,-425.275268554688,
- 374.4765625,-130.980712890625,-424.698364257813,329.296875,-108.692626953125,-383.8505859375,330.328125,-107.071044921875,-384.787109375,329.337890625,-108.65234375,-386.833251953125,353.322265625,-186.465087890625,-358.0927734375,350.560546875,-186.461669921875,-358.570678710938,352.072265625,-187.922607421875,-359.730834960938,330.908203125,-187.922607421875,-385.206420898438,329.484375,-186.461669921875,-383.936645507813,329.529296875,-186.46435546875,-386.7255859375,375.373046875,-186.529541015625,-374.746215820313,374.6484375,-187.79931640625,-377.013671875,349.91015625,-186.529296875,-405.388793945313,352,-187.7998046875,-404.26708984375,307.58203125,-103.542236328125,-482.870483398438,309.419921875,-104.930419921875,-481.350219726563,308.7109375,-104.794677734375,-484.420654296875,310.353515625,-127.32373046875,-481.517456054688,309.642578125,-127.869873046875,-484.39990234375,270.26171875,-105.596435546875,-437.9326171875,273.25390625,-105.491455078125,-438.087158203125,271.330078125,-103.972900390625,-438.855590820313,277.33203125,-104.628173828125,-505.91796875,278.599609375,-105.87548828125,-507.369506835938,275.4609375,-106.1474609375,-507.22998046875,270.865234375,-129.614501953125,-499.94873046875,280.0546875,-115.80712890625,-507.470092773438,243.791015625,-106.678466796875,-458.091918945313,244.546875,-105.057861328125,-459.263061523438,243.138671875,-106.7099609375,-461.019287109375,275.01171875,-183.259521484375,-436.699584960938,272.220703125,-183.322998046875,-436.561889648438,273.47265625,-184.783203125,-437.99560546875,247.09375,-185.86572265625,-458.33544921875,245.94921875,-184.40576171875,-456.810424804688,245.365234375,-184.475341796875,-459.551513671875,292.923828125,-183.320068359375,-457.743774414063,291.7421875,-184.658203125,-459.783203125,261.1640625,-184.5439453125,-482.223266601563,263.5,-185.7451171875,-481.554565429688,84.00390625,-105.4345703125,-588.684936523438,86.265625,-106.87841796875,-588.20458984375,84.255859375,-106.683837890625,-590.587768554688,86.373046875,-129.278564453125,-588.9248046875,
- 84.431640625,-129.76806640625,-591.139526367188,71.546875,-107.48388671875,-531.608276367188,74.109375,-107.437744140625,-533.135375976563,72.1015625,-105.8671875,-532.91455078125,46.849609375,-105.620361328125,-595.06298828125,47.283203125,-106.8720703125,-596.937255859375,44.55859375,-107.0849609375,-595.364135742188,44.66796875,-129.490478515625,-596.083129882813,47.283203125,-129.957763671875,-597.51708984375,39.001953125,-107.669921875,-537.172973632813,39.16796875,-106.048583984375,-538.557006835938,37.08984375,-107.642333984375,-539.465454101563,74.333984375,-185.239013671875,-533.15869140625,71.943359375,-185.247314453125,-531.72607421875,72.345703125,-186.708251953125,-533.5888671875,39.763671875,-186.8984375,-539.192993164063,39.5078125,-185.4375,-537.304565429688,37.724609375,-185.451904296875,-539.456298828125,80.326171875,-185.302734375,-560.135620117188,78.314453125,-186.58447265625,-561.387817382813,41.134765625,-185.517578125,-566.87841796875,43.474609375,-186.77587890625,-567.38232421875,448.607421875,78.086181640625,0,447.935546875,81.120849609375,-47.24755859375,48.728515625,76.724853515625,-555.628540039063,317.3359375,152.346435546875,-484.218017578125,331.5546875,153.799560546875,-479.982543945313,331.142578125,151.212646484375,-481.27734375,319.2734375,146.161376953125,-486.501953125,313.98046875,159.96826171875,-480.2666015625,439.158203125,139.250244140625,-325.5419921875,441.486328125,139.67919921875,-326.68408203125,380.93359375,138.716552734375,-417.275756835938,386.763671875,149.415283203125,-421.802734375,382.728515625,139.48974609375,-418.695068359375,386.06640625,151.92333984375,-421.949584960938,444.830078125,151.606201171875,-328.3232421875,445.517578125,149.849853515625,-328.660400390625,317.24609375,140.433349609375,-484.11083984375,319.41796875,151.99609375,-484.774047851563,319.3671875,152.128662109375,-484.717529296875,320.859375,146.010986328125,-486.464721679688,316.185546875,159.914794921875,-480.985473632813,318.8203125,139.599365234375,-484.07275390625,317.26171875,139.846923828125,-482.245361328125,
- 386.32421875,154.2021484375,-424.148681640625,386.5625,151.533447265625,-424.27490234375,410.07421875,137.6572265625,-378.531982421875,407.9453125,137.49072265625,-377.319946289063,413.30859375,149.75634765625,-380.915405273438,413.84375,147.59619140625,-381.233642578125,353.560546875,149.0380859375,-459.440551757813,348.083984375,140.14306640625,-453.449340820313,350.400390625,139.750732421875,-455.7451171875,353.130859375,151.584228515625,-459.020629882813,352.755859375,138.112548828125,-449.076049804688,354.345703125,138.476318359375,-450.788818359375,348.505859375,138.419189453125,-456.726318359375,346.861328125,138.172119140625,-455.052978515625,343.162109375,143.266845703125,-448.905029296875,441.234375,137.8955078125,-327.93212890625,438.84375,137.449462890625,-326.7529296875,446.0625,150.064697265625,-330.31591796875,445.361328125,151.880859375,-329.968505859375,414.47265625,150.73388671875,-383.807495117188,414.890625,147.5966796875,-384.279541015625,410.451171875,136.156494140625,-381.073974609375,408.513671875,135.528076171875,-379.552490234375,416.51171875,150.981689453125,-380.694580078125,416.90625,147.63427734375,-381.23486328125,412.123046875,136.140625,-378.55224609375,410.12109375,135.523681640625,-377.109130859375,387.85546875,155.065185546875,-362.561279296875,352.802734375,153.38232421875,-460.621826171875,353.177734375,150.145263671875,-460.726440429688,354.990234375,152.736572265625,-458.101440429688,355.15625,150.187744140625,-458.773193359375,351.244140625,139.4794921875,-454.69580078125,349.08984375,139.70751953125,-452.518310546875,402.1171875,169.3203125,-307.375244140625,289.751953125,185.32763671875,-451.734375,289.751953125,171.137939453125,-451.734375,349.02734375,168.76416015625,-390.84375,402.1171875,185.857177734375,-307.375244140625,290.60546875,169.662353515625,-451.01025390625,318.76953125,168.375732421875,-424.807861328125,374.71875,169.32080078125,-355.468627929688,401.619140625,167.710693359375,-308.38134765625,373.73046875,165.859619140625,-356.9736328125,375.9296875,165.899658203125,-353.612670898438,
- 375.046875,168.19189453125,-354.969360351563,348.4140625,170.99658203125,-391.605346679688,262.193359375,152.346435546875,-419.274658203125,266.43359375,153.799560546875,-407.3994140625,265.2734375,151.212646484375,-407.510009765625,260.2578125,146.161376953125,-416.993774414063,265.544921875,159.96826171875,-423.22607421875,365.1015625,139.250244140625,-289.22216796875,362.775390625,139.67919921875,-288.080078125,316.4375,138.716552734375,-365.30224609375,310.7578125,149.415283203125,-360.589599609375,314.669921875,139.48974609375,-363.8544921875,310.8359375,151.92333984375,-361.218994140625,359.431640625,151.606201171875,-286.44091796875,358.7421875,149.849853515625,-286.10400390625,262.287109375,140.433349609375,-419.3818359375,261.8125,151.99609375,-417.270263671875,261.86328125,152.128662109375,-417.32666015625,260.37109375,146.010986328125,-415.57958984375,265.044921875,159.914794921875,-421.058715820313,262.41015625,139.599365234375,-417.971557617188,263.96875,139.846923828125,-419.798950195313,308.8203125,154.2021484375,-361.186645507813,308.640625,151.533447265625,-360.986206054688,339.455078125,137.6572265625,-332.33154296875,341.435546875,137.49072265625,-333.7763671875,336,149.75634765625,-330.287109375,335.494140625,147.59619140625,-329.92919921875,283.7109375,149.0380859375,-390.48583984375,289.724609375,140.14306640625,-395.933471679688,287.3984375,139.750732421875,-393.64892578125,284.140625,151.584228515625,-390.905639648438,293.216796875,138.112548828125,-391.91064453125,291.462890625,138.476318359375,-390.375732421875,286.689453125,138.419189453125,-395.296020507813,288.37109375,138.172119140625,-396.935546875,294.359375,143.266845703125,-400.7666015625,362.037109375,137.8955078125,-288.844482421875,364.423828125,137.449462890625,-290.0234375,357.205078125,150.064697265625,-286.46044921875,357.91015625,151.880859375,-286.80810546875,333.072265625,150.73388671875,-330.07958984375,332.4921875,147.5966796875,-329.85302734375,337.158203125,136.156494140625,-332.713623046875,339.302734375,135.528076171875,-333.923095703125,
- 334.7109375,150.981689453125,-327.5771484375,334.080078125,147.63427734375,-327.39697265625,338.51171875,136.140625,-330.626220703125,340.625,135.523681640625,-331.889404296875,362.9453125,155.065185546875,-346.357421875,282.734375,153.38232421875,-391.06201171875,282.59375,150.145263671875,-390.714721679688,284.7578125,152.736572265625,-389.307495117188,284.134765625,150.187744140625,-389.10693359375,288.26171875,139.4794921875,-392.957275390625,290.478515625,139.70751953125,-395.078002929688,377.037109375,185.066162109375,-354.512573242188,374.65234375,185.065673828125,-352.96630859375,375.66796875,182.3017578125,-356.620849609375,373.2890625,182.30126953125,-355.061279296875,321.732421875,186.325439453125,-423.8154296875,319.693359375,186.324951171875,-421.8310546875,319.736328125,183.310791015625,-425.848876953125,317.71484375,183.310302734375,-423.851684570313,400.34765625,186.32763671875,-307.751953125,402.896484375,186.328125,-309.0107421875,318.6484375,187.056640625,-426.951538085938,316.62890625,187.05615234375,-424.947265625,349.876953125,186.390380859375,-392.057739257813,347.658203125,186.389892578125,-390.271606445313,348.9609375,187.918701171875,-393.18701171875,346.751953125,187.918212890625,-391.393798828125,374.171875,184.703857421875,-358.887573242188,371.80078125,184.70361328125,-357.313720703125,289.681640625,186.7841796875,-449.9287109375,291.529296875,186.784912109375,-452.091796875,199.833984375,148.796142578125,-462.867065429688,186.9921875,150.249267578125,-462.890991210938,187.515625,147.662353515625,-461.82958984375,198.353515625,142.611083984375,-460.261352539063,202.39453125,156.41796875,-467.375244140625,38.30859375,137.954345703125,-515.242919921875,38.0625,138.38330078125,-512.661010742188,128.75390625,137.602783203125,-495.867553710938,126.306640625,148.301513671875,-488.904052734375,128.009765625,138.3759765625,-493.70263671875,126.880859375,150.8095703125,-489.186889648438,37.708984375,150.310302734375,-508.955200195313,37.63671875,148.553955078125,-508.193115234375,199.900390625,136.883056640625,-462.989379882813,
- 198.064453125,148.44580078125,-461.8310546875,198.099609375,148.578369140625,-461.895629882813,196.970703125,142.460693359375,-459.895141601563,200.51171875,156.364501953125,-466.168823242188,198.515625,136.049072265625,-462.633911132813,199.69921875,136.296630859375,-464.726318359375,127.580078125,153.08837890625,-487.280395507813,127.44921875,150.419677734375,-487.043579101563,77.4921875,140.85009765625,-508.595092773438,78.08984375,140.68359375,-510.969970703125,76.904296875,152.94921875,-504.622314453125,76.763671875,150.7890625,-504.016967773438,169.552734375,147.038330078125,-471.26416015625,172.685546875,138.143310546875,-478.7490234375,171.306640625,137.7509765625,-475.793334960938,169.810546875,149.58447265625,-471.804931640625,167.609375,136.11279296875,-480.758666992188,166.75390625,136.4765625,-478.587158203125,173.1328125,136.41943359375,-475.658081054688,174.115234375,136.17236328125,-477.788208007813,175.703125,141.26708984375,-484.728515625,39.0625,136.599609375,-512.23828125,39.326171875,136.153564453125,-514.889526367188,38.5390625,148.768798828125,-506.877319335938,38.61328125,150.5849609375,-507.65869140625,77.8515625,153.9267578125,-501.822875976563,77.86328125,150.78955078125,-501.198974609375,78.75,139.349365234375,-506.603149414063,79.064453125,138.720947265625,-509.0419921875,74.84375,154.174560546875,-502.411865234375,74.921875,150.8271484375,-501.7607421875,76.248046875,139.33349609375,-507.077880859375,76.615234375,138.716552734375,-509.51708984375,81.607421875,158.258056640625,-535.642211914063,170.447265625,151.382568359375,-470.518676757813,170.166015625,148.1455078125,-470.276611328125,168.05859375,150.73681640625,-471.872802734375,168.087890625,148.18798828125,-471.214721679688,170.3359375,137.479736328125,-476.39208984375,171.60546875,137.707763671875,-479.186767578125,42.23828125,168.0244140625,-556.313354492188,220.865234375,181.77734375,-499.928344726563,220.865234375,167.587646484375,-499.928344726563,141.357421875,167.650390625,-535.336791992188,42.23828125,184.561279296875,-556.313354492188,
- 219.873046875,166.112060546875,-500.490356445313,190.267578125,166.3759765625,-515.77099609375,85.646484375,172.513671875,-550.011108398438,43.380859375,166.414794921875,-556.202514648438,87.458984375,169.052490234375,-549.653076171875,83.419921875,169.092529296875,-550.440551757813,85.05078125,171.384765625,-550.12744140625,142.30859375,169.112060546875,-535.018798828125,241.8828125,148.796142578125,-536.96240234375,232.734375,150.249267578125,-549.0146484375,234.11328125,147.662353515625,-549.062866210938,243.361328125,142.611083984375,-539.564819335938,239.322265625,156.41796875,-532.454223632813,46.1640625,137.954345703125,-597.352783203125,46.408203125,138.38330078125,-599.934692382813,155.048828125,137.602783203125,-574.414672851563,157.265625,148.301513671875,-581.453857421875,155.75390625,138.3759765625,-576.588623046875,157.65234375,150.8095703125,-580.846435546875,46.763671875,150.310302734375,-603.640502929688,46.83984375,148.553955078125,-604.402587890625,241.814453125,136.883056640625,-536.840087890625,241.66796875,148.44580078125,-539.122436523438,241.62890625,148.578369140625,-539.057739257813,242.755859375,142.460693359375,-541.058227539063,239.220703125,156.364501953125,-534.784545898438,241.212890625,136.049072265625,-538.319458007813,240.033203125,136.296630859375,-536.22705078125,159.662109375,153.08837890625,-581.841186523438,159.693359375,150.419677734375,-582.111206054688,93.68359375,140.85009765625,-591.413818359375,93.365234375,140.68359375,-588.984008789063,94.6796875,152.94921875,-595.307250976563,94.771484375,150.7890625,-595.921752929688,211.33984375,147.038330078125,-560.073486328125,207.501953125,138.143310546875,-552.920166015625,208.8984375,137.7509765625,-555.869018554688,211.087890625,149.58447265625,-559.53271484375,201.68359375,136.11279296875,-555.93701171875,202.7734375,136.4765625,-558.00341796875,210.49609375,136.41943359375,-554.388549804688,209.466796875,136.17236328125,-552.27880859375,204.857421875,141.26708984375,-546.764892578125,47.697265625,136.599609375,-600.1357421875,
- 47.43359375,136.153564453125,-597.484375,48.220703125,148.768798828125,-605.49658203125,48.14453125,150.5849609375,-604.715209960938,96.962890625,153.9267578125,-597.467529296875,97.244140625,150.78955078125,-598.0322265625,95.939453125,139.349365234375,-592.712280273438,95.255859375,138.720947265625,-590.346557617188,93.21875,154.174560546875,-598.200439453125,93.580078125,150.8271484375,-598.767578125,92.904296875,139.33349609375,-593.323974609375,92.318359375,138.716552734375,-590.926879882813,87.232421875,158.258056640625,-564.819946289063,212.732421875,151.382568359375,-559.7392578125,212.70703125,148.1455078125,-560.127685546875,209.55859375,150.73681640625,-560.998779296875,210.142578125,148.18798828125,-561.371337890625,207.595703125,137.479736328125,-556.331665039063,206.26171875,137.707763671875,-553.570678710938,83.30859375,188.259033203125,-549.014892578125,83.837890625,188.258544921875,-551.808227539063,85.8203125,185.49462890625,-548.527954101563,86.37109375,185.494140625,-551.318237304688,187.08984375,184.32568359375,-515.682983398438,188.28515625,184.3251953125,-518.264282226563,189.716796875,181.31103515625,-514.458862304688,190.92578125,181.310546875,-517.032348632813,43.521484375,185.03173828125,-557.617553710938,43.240234375,185.0322265625,-554.787475585938,191.140625,185.056884765625,-513.78515625,192.36328125,185.056396484375,-516.3544921875,141.3125,184.505859375,-533.853515625,142.212890625,184.50537109375,-536.55419921875,142.708984375,186.0341796875,-533.383666992188,143.62109375,186.03369140625,-536.081298828125,88.529296875,187.896728515625,-547.986328125,89.095703125,187.896484375,-550.773193359375,220.57421875,183.23388671875,-501.728759765625,219.173828125,183.234619140625,-499.251953125,405.337890625,150.665283203125,-40.7861328125,399.181640625,152.118408203125,-53.41357421875,398.486328125,149.531494140625,-52.32861328125,402.34375,144.480224609375,-40.7861328125,410.5234375,158.287109375,-40.7861328125,392.099609375,137.569091796875,-217.9775390625,389.599609375,137.998046875,-217.28955078125,
- 406.2265625,139.975341796875,-125.329833984375,398.853515625,150.674072265625,-125.1572265625,403.94140625,140.74853515625,-125.26123046875,399.318359375,153.18212890625,-124.720703125,386.009765625,149.925048828125,-216.3017578125,385.271484375,148.168701171875,-216.0986328125,405.478515625,138.752197265625,-40.7861328125,403.564453125,150.31494140625,-41.93505859375,403.638671875,150.447509765625,-41.93505859375,401.345703125,144.329833984375,-41.93505859375,408.546875,158.233642578125,-41.93505859375,404.48828125,137.918212890625,-41.93505859375,406.888671875,138.165771484375,-41.93505859375,397.78125,155.4609375,-123.38720703125,397.51171875,152.792236328125,-123.42431640625,400.22265625,139.51123046875,-176.6904296875,402.658203125,139.3447265625,-176.9638671875,396.29296875,151.6103515625,-175.84814453125,395.6796875,149.4501953125,-175.767822265625,398.865234375,148.78076171875,-82.4052734375,406.966796875,139.8857421875,-82.79638671875,403.708984375,139.493408203125,-82.7880859375,399.4609375,151.326904296875,-82.4052734375,406.66796875,137.855224609375,-88.834716796875,404.33203125,138.218994140625,-88.70703125,404.365234375,138.161865234375,-80.8818359375,406.708984375,137.914794921875,-80.90576171875,413.6640625,143.009521484375,-82.5888671875,389.55859375,136.21435546875,-216.201171875,392.130859375,135.768310546875,-216.9013671875,384.3671875,148.383544921875,-214.785400390625,385.125,150.19970703125,-214.99169921875,394.005859375,152.587890625,-173.97412109375,393.42578125,149.45068359375,-173.743408203125,398.798828125,138.010498046875,-174.8095703125,401.19140625,137.382080078125,-175.3740234375,393.505859375,152.835693359375,-177.00830078125,392.919921875,149.48828125,-176.7080078125,398.36328125,137.99462890625,-177.326171875,400.779296875,137.377685546875,-177.8369140625,426.99609375,156.919189453125,-182.31982421875,398.568359375,153.125,-81.12890625,398.2265625,149.887939453125,-81.3046875,398.783203125,152.479248046875,-84.22412109375,398.1953125,149.930419921875,-83.885009765625,403.83984375,139.22216796875,-84.048583984375,
- 406.90234375,139.4501953125,-84.08837890625,431.880859375,167.63916015625,-228.925537109375,447.951171875,183.646484375,-40.7861328125,447.951171875,169.456787109375,-40.7861328125,447.611328125,170.02294921875,-127.4716796875,431.880859375,184.176025390625,-228.925537109375,447.951171875,167.981201171875,-41.93505859375,447.951171875,168.118408203125,-82.61279296875,441.8671875,171.1748046875,-183.5712890625,432.1875,166.029541015625,-227.8134765625,442.16796875,167.713623046875,-181.742919921875,441.486328125,167.753662109375,-185.81396484375,441.767578125,170.0458984375,-184.17529296875,447.6484375,171.484619140625,-126.466552734375,490.53515625,150.665283203125,-40.7861328125,496.6953125,152.118408203125,-53.41357421875,497.390625,149.531494140625,-52.32861328125,493.529296875,144.480224609375,-40.7861328125,485.353515625,158.287109375,-40.7861328125,471.6328125,137.569091796875,-239.86474609375,474.12890625,137.998046875,-240.552734375,489.001953125,139.975341796875,-128.46044921875,496.37109375,150.674072265625,-128.871337890625,491.287109375,140.74853515625,-128.568603515625,495.943359375,153.18212890625,-128.291015625,477.720703125,149.925048828125,-241.540283203125,478.4609375,148.168701171875,-241.74365234375,490.390625,138.752197265625,-40.7861328125,492.3046875,150.31494140625,-41.93505859375,492.234375,150.447509765625,-41.93505859375,494.52734375,144.329833984375,-41.93505859375,487.326171875,158.233642578125,-41.93505859375,491.388671875,137.918212890625,-41.93505859375,488.984375,138.165771484375,-41.93505859375,497.580078125,155.4609375,-126.755126953125,497.845703125,152.792236328125,-126.821533203125,483.462890625,139.51123046875,-190.556396484375,481.076171875,139.3447265625,-190.00048828125,487.458984375,151.6103515625,-190.99072265625,488.064453125,149.4501953125,-191.1181640625,497.01171875,148.78076171875,-82.4052734375,488.90234375,139.8857421875,-82.79638671875,492.16796875,139.493408203125,-82.7880859375,496.412109375,151.326904296875,-82.4052734375,489.205078125,137.855224609375,-88.834716796875,
- 491.537109375,138.218994140625,-88.70703125,491.5078125,138.161865234375,-80.8818359375,489.162109375,137.914794921875,-80.90576171875,482.212890625,143.009521484375,-82.5888671875,474.77734375,136.21435546875,-239.4169921875,472.205078125,135.768310546875,-238.716796875,479.974609375,148.383544921875,-240.83251953125,479.21875,150.19970703125,-240.62646484375,490.28125,152.587890625,-189.6005859375,490.91015625,149.45068359375,-189.532958984375,485.470703125,138.010498046875,-188.890625,483.01953125,137.382080078125,-188.703125,489.650390625,152.835693359375,-193.375244140625,490.310546875,149.48828125,-193.236328125,484.98046875,137.99462890625,-191.959716796875,482.52734375,137.377685546875,-191.668701171875,456.2890625,156.919189453125,-187.27978515625,497.3046875,153.125,-81.12890625,497.642578125,149.887939453125,-81.3046875,497.09375,152.479248046875,-84.22412109375,497.677734375,149.930419921875,-83.885009765625,492.033203125,139.22216796875,-84.048583984375,488.96875,139.4501953125,-84.08837890625,440.115234375,186.920166015625,-185.4208984375,442.91796875,186.919677734375,-185.9013671875,440.541015625,184.15576171875,-182.88818359375,443.345703125,184.1552734375,-183.352294921875,446.529296875,186.068115234375,-85.4765625,449.375,186.067626953125,-85.4765625,446.53125,183.053466796875,-82.552978515625,449.375,183.052978515625,-82.552978515625,433.5546875,184.646484375,-228.187255859375,430.8125,184.64697265625,-227.439453125,446.529296875,186.79931640625,-80.95751953125,449.375,186.798828125,-80.95751953125,446.20703125,186.87841796875,-126.992431640625,449.046875,186.8779296875,-127.10107421875,446.26171875,188.40673828125,-125.51123046875,449.099609375,188.40625,-125.610107421875,440.984375,186.557861328125,-180.1494140625,443.791015625,186.5576171875,-180.59619140625,449.375,185.10302734375,-41.93505859375,446.529296875,185.103759765625,-41.93505859375,362.595703125,50.580810546875,-294.2353515625,360.28515625,51.010009765625,-293.0615234375,395.158203125,50.567626953125,-212.12353515625,388.2734375,60.847900390625,-210.43701171875,
- 393.029296875,51.310546875,-211.588134765625,388.7890625,63.2578125,-210.158447265625,356.96875,62.93701171875,-291.376953125,356.283203125,61.1806640625,-291.0302734375,379.548828125,52.67578125,-253.454833984375,381.87890625,52.50927734375,-254.20751953125,375.853515625,64.77490234375,-251.88037109375,375.26953125,62.61474609375,-251.681640625,360.42578125,49.226318359375,-292.0712890625,362.8046875,48.780029296875,-293.27099609375,355.6171875,61.3955078125,-289.64453125,356.318359375,63.211669921875,-289.99755859375,373.931640625,65.75244140625,-249.712646484375,373.404296875,62.615234375,-249.38623046875,378.466796875,51.1748046875,-251.466552734375,380.7109375,50.54638671875,-252.470458984375,372.94140625,66,-252.342041015625,372.419921875,62.65283203125,-251.95068359375,377.6328125,51.1591796875,-253.639404296875,379.90625,50.5419921875,-254.599853515625,418.31640625,80.91796875,-270.259521484375,399.388671875,80.651123046875,-312.91162109375,433.58203125,79.43994140625,-222.564453125,399.404296875,97.58984375,-312.8798828125,433.677734375,96.616943359375,-222.20654296875,419.205078125,98.32958984375,-267.92138671875,418.95703125,83.77490234375,-268.58349609375,399.865234375,79.041748046875,-311.97509765625,419.654296875,80.87841796875,-266.733642578125,436.150390625,50.580810546875,-331.572509765625,438.462890625,51.010009765625,-332.746337890625,472.220703125,50.567626953125,-232.02734375,479.05859375,60.847900390625,-233.90673828125,474.34765625,51.310546875,-232.593505859375,478.765625,63.2578125,-233.322509765625,441.783203125,62.93701171875,-334.43115234375,442.46875,61.1806640625,-334.77783203125,458.494140625,52.67578125,-283.26904296875,456.25390625,52.50927734375,-282.2705078125,462.3203125,64.77490234375,-284.49365234375,462.89453125,62.61474609375,-284.73681640625,439.275390625,49.226318359375,-331.86376953125,436.89453125,48.780029296875,-330.6640625,444.08203125,61.3955078125,-334.29052734375,443.380859375,63.211669921875,-333.937255859375,465.306640625,65.75244140625,-283.82470703125,465.93359375,62.615234375,-283.89794921875,
- 460.728515625,51.1748046875,-282.18994140625,458.3671875,50.54638671875,-281.50634765625,464.07421875,66,-287.09521484375,464.736328125,62.65283203125,-287.107421875,459.74609375,51.1591796875,-284.8466796875,457.3984375,50.5419921875,-284.07177734375,386.52734375,62.357177734375,-211.268798828125,480.1015625,62.357177734375,-235.76806640625,480.419921875,59.822998046875,-236.35693359375,475.501953125,49.834228515625,-234.97412109375,473.28515625,49.067138671875,-234.3828125,433.1171875,79.126708984375,-224.337890625,393.169921875,49.067138671875,-213.338623046875,390.947265625,49.834228515625,-212.7626953125,385.990234375,59.822998046875,-211.53369140625,406.693359375,55.135498046875,-48.220703125,404.103515625,55.472900390625,-48.220703125,399.19140625,68.527587890625,-48.220703125,398.40625,67.147216796875,-48.220703125,406.412109375,54.529296875,0.370849609375,408.859375,54.3984375,0.518310546875,401.244140625,67.71875,0.58203125,400.607421875,66.021484375,0.55419921875,403.779296875,54.071533203125,-47.080078125,406.44140625,53.720947265625,-47.080078125,397.154296875,67.316162109375,-47.080078125,397.95703125,68.743408203125,-47.080078125,398.62109375,68.681640625,-1.260498046875,397.9765625,66.05126953125,-1.029296875,404.68359375,53.33740234375,-0.694091796875,407.146484375,52.8525390625,-0.8017578125,433.748046875,68.20703125,-0.853515625,447.951171875,78.762939453125,-48.220703125,447.951171875,95.724365234375,-48.220703125,448.623046875,93.9541015625,0.921142578125,448.623046875,79.408203125,0.4306640625,447.951171875,77.497802734375,-47.080078125,448.623046875,76.7197265625,-1.91064453125,448.623046875,78.52099609375,-0.19970703125,489.181640625,55.135498046875,-48.220703125,491.775390625,55.472900390625,-48.220703125,496.6875,68.527587890625,-48.220703125,497.47265625,67.147216796875,-48.220703125,490.798828125,54.529296875,0.370849609375,488.3515625,54.3984375,0.518310546875,495.966796875,67.71875,0.58203125,496.599609375,66.021484375,0.55419921875,492.099609375,54.071533203125,-47.080078125,489.4375,53.720947265625,-47.080078125,
- 498.72265625,67.316162109375,-47.080078125,497.91796875,68.743408203125,-47.080078125,498.58984375,68.681640625,-1.260498046875,499.23046875,66.05126953125,-1.029296875,492.52734375,53.33740234375,-0.694091796875,490.060546875,52.8525390625,-0.8017578125,463.4609375,68.20703125,-0.853515625,449.064453125,96.001708984375,-47.080078125,446.84375,96.002197265625,-47.080078125,449.732421875,95.6591796875,-1.703125,447.51171875,95.659912109375,-1.703125,419.712890625,100.0810546875,-270.634521484375,417.033203125,100.08154296875,-269.60986328125,401.146484375,97.64990234375,-312.621337890625,398.58203125,97.650146484375,-311.32861328125,421.4296875,99.713623046875,-266.068603515625,418.736328125,99.714111328125,-265.07275390625,434.6171875,96.055419921875,-224.27978515625,431.84375,96.055908203125,-223.55029296875,195.50390625,51.046875,-466.834838867188,194.25390625,51.47607421875,-464.561157226563,267.521484375,50.87841796875,-418.39111328125,262.802734375,61.15869140625,-413.099731445313,266.072265625,51.621337890625,-416.741821289063,263.3984375,63.568603515625,-413.157104492188,192.46484375,63.403076171875,-461.298950195313,192.095703125,61.646728515625,-460.627319335938,232.1171875,48.58935546875,-442.971557617188,233.6171875,48.4228515625,-444.909545898438,229.9609375,60.6884765625,-439.583740234375,229.587890625,58.5283203125,-439.088500976563,194.9375,49.6923828125,-463.81494140625,196.2265625,49.24609375,-466.146240234375,192.333984375,61.861572265625,-459.099731445313,192.712890625,63.677734375,-459.786254882813,229.619140625,61.666015625,-436.697387695313,229.3671875,58.52880859375,-436.126708984375,232.369140625,47.08837890625,-440.705322265625,233.6484375,46.4599609375,-442.803100585938,227.27734375,61.91357421875,-438.334228515625,227.072265625,58.56640625,-437.715698242188,230.421875,47.07275390625,-442.049438476563,231.748046875,46.45556640625,-444.128051757813,215.359375,81.1171875,-503.002563476563,293.24609375,79.750732421875,-448.78173828125,215.3828125,98.046875,-502.9892578125,293.240234375,96.97509765625,-448.786865234375,
- 256.681640625,94.2431640625,-477.303344726563,256.328125,80.2529296875,-477.549438476563,216.29296875,79.5078125,-502.488647460938,257.740234375,76.7919921875,-476.560791015625,254.595703125,76.83154296875,-478.75439453125,255.86328125,79.1240234375,-477.874755859375,235.19921875,51.046875,-539.140869140625,236.453125,51.47607421875,-541.4140625,319.720703125,50.87841796875,-478.4755859375,324.28515625,61.15869140625,-483.902954101563,321.150390625,51.621337890625,-480.145751953125,324.384765625,63.568603515625,-483.24560546875,238.23828125,63.403076171875,-544.6767578125,238.607421875,61.646728515625,-545.348266601563,280.43359375,48.58935546875,-512.158813476563,279.1484375,48.4228515625,-510.070190429688,282.904296875,60.6884765625,-515.327758789063,283.23828125,58.5283203125,-515.850341796875,237.6328125,49.6923828125,-541.1328125,236.33984375,49.24609375,-538.801513671875,240.232421875,61.861572265625,-545.84765625,239.853515625,63.677734375,-545.161499023438,285.771484375,61.666015625,-516.446655273438,286.248046875,58.52880859375,-516.857543945313,282.912109375,47.08837890625,-512.512329101563,281.34375,46.4599609375,-510.615966796875,282.85546875,61.91357421875,-518.4814453125,283.400390625,58.56640625,-518.8642578125,280.560546875,47.07275390625,-514.176635742188,279.060546875,46.45556640625,-512.215698242188,260.8828125,62.66796875,-412.808959960938,324.07421875,62.66796875,-486.040893554688,323.99609375,60.1337890625,-486.708984375,320.73046875,50.14501953125,-482.781860351563,319.240234375,49.3779296875,-481.0380859375,291.83984375,79.4375,-449.998291015625,265.173828125,49.3779296875,-418.279418945313,263.671875,50.14501953125,-416.546142578125,260.283203125,60.1337890625,-412.722412109375,-0.318359375,54.37890625,-517.08935546875,-0.318359375,54.7158203125,-514.49560546875,-0.3203125,67.77099609375,-509.58447265625,-0.3203125,66.390625,-508.79931640625,44.61328125,53.493896484375,-513.63232421875,45.013671875,53.363037109375,-516.050048828125,44.23046875,66.683349609375,-508.475463867188,44.12890625,64.986083984375,-507.847778320313,
- 0.705078125,53.314453125,-514.171264648438,0.712890625,52.9638671875,-516.834228515625,0.685546875,66.5595703125,-507.546264648438,0.689453125,67.98681640625,-508.349975585938,47.107421875,94.490478515625,-554.457885742188,42.3125,67.646240234375,-506.046630859375,42.44140625,65.015869140625,-505.387573242188,43.47265625,52.302001953125,-512.020141601563,43.63671875,51.817138671875,-514.48291015625,47.03125,75.684326171875,-555.829345703125,-0.30078125,78.005859375,-558.35009765625,-0.2734375,94.9912109375,-558.35009765625,49.767578125,93.049072265625,-555.529663085938,49.345703125,78.372802734375,-555.57666015625,0.828125,76.7412109375,-558.348266601563,-0.2890625,54.37890625,-599.5771484375,-0.287109375,54.7158203125,-602.17041015625,-0.28515625,67.77099609375,-607.08154296875,-0.28515625,66.390625,-607.86669921875,53.97265625,53.493896484375,-597.499755859375,53.853515625,53.363037109375,-595.0498046875,54.78515625,66.683349609375,-602.609008789063,54.818359375,64.986083984375,-603.24365234375,0.958984375,53.314453125,-602.49169921875,0.951171875,52.9638671875,-599.82861328125,0.978515625,66.5595703125,-609.116577148438,0.974609375,67.98681640625,-608.312866210938,47.392578125,94.48974609375,-557.153930664063,53.0390625,67.646240234375,-605.4404296875,53.359375,65.015869140625,-606.050170898438,53.009765625,52.302001953125,-599.344116210938,52.62109375,51.817138671875,-596.905029296875,217,98.090576171875,-503.7744140625,215.58203125,98.091064453125,-501.202392578125,255.5546875,95.9697265625,-479.876220703125,253.8828125,95.97021484375,-477.460327148438,259.623046875,95.602294921875,-477.02978515625,257.919921875,95.602783203125,-474.632446289063,293.130859375,96.34130859375,-450.823364257813,291.212890625,96.341796875,-448.59716796875,0.8359375,95.109375,-559.703735351563,0.82421875,95.109619140625,-556.992309570313,163.8671875,-107.13671875,-566.162353515625,161.6875,-108.605712890625,-566.863525390625,164.607421875,-108.38427734375,-567.93603515625,162.23828125,-131.003662109375,-567.45166015625,165.015625,-131.467529296875,-568.408325195313,
- 146.314453125,-109.183349609375,-510.443115234375,144.86328125,-109.1640625,-513.037475585938,146.46875,-107.5703125,-511.857055664063,199.1953125,-106.91650390625,-553.258178710938,199.767578125,-108.169677734375,-555.093994140625,201.341796875,-108.356201171875,-552.376708984375,201.873046875,-130.76025390625,-552.943969726563,200.3359375,-131.253173828125,-555.482055664063,177.234375,-108.96533203125,-499.12451171875,177.76171875,-107.34375,-500.4150390625,180.03515625,-108.9111328125,-500.162963867188,145.53515625,-186.96240234375,-512.898559570313,146.88671875,-186.94580078125,-510.464965820313,147.490234375,-188.40673828125,-512.272338867188,178.431640625,-188.1943359375,-500.90673828125,177.693359375,-186.7333984375,-499.149291992188,180.30859375,-186.722900390625,-500.1240234375,153.818359375,-187.027587890625,-539.261962890625,156.18359375,-188.283935546875,-539.343139648438,191.0390625,-186.787109375,-525.589477539063,189.287109375,-188.071044921875,-527.182861328125,275.40234375,-114.74462890625,-507.30224609375,288.330078125,-128.78369140625,-501.66943359375,276.015625,-144.1845703125,-500.5888671875,271.306640625,-144.4296875,-500.201416015625,284.4921875,-136.3740234375,-499.337524414063,440.314453125,-158.87646484375,-271.451416015625,439.60546875,-161.73779296875,-273.653076171875,422.57421875,-184.457275390625,-282.46728515625,433.919921875,-167.85888671875,-278.7373046875,414.310546875,-184.36181640625,-262.70361328125,414.283203125,-182.964111328125,-260.3583984375,412.486328125,-184.43310546875,-269.198486328125,427.599609375,-164.65478515625,-266.1279296875,408.130859375,51.90869140625,2.06396484375,408.130859375,-77.621337890625,2.06396484375,489.076171875,-77.621337890625,2.06396484375,489.076171875,51.90869140625,2.06396484375,448.607421875,75.460205078125,2.06396484375
- }
- PolygonVertexIndex: *10086 {
- a: 13,14,38,-41,11,15,14,-14,7,16,33,-44,5,17,16,-8,4,18,35,-49,6,19,18,-5,10,20,29,-46,12,21,20,-11,22,1,38,-42,14,15,24,-24,15,30,31,-25,25,9,33,-45,16,17,27,-27,28,36,34,-1,1266,1267,1268,1269,-1271,5,79,80,-48,7,78,79,-6,9,8,32,-34,11,75,76,-47,13,74,75,-12,3,37,38,-2,31,30,9,-26,30,29,8,-10,33,32,42,77,-44,566,567,35,-3,38,37,39,73,-41,39,37,21,-13,41,38,14,-24,40,73,74,-14,42,32,19,-7,44,33,16,-27,43,77,78,-8,46,76,45,29,-31,46,30,15,-12,47,80,48,35,567,-35,47,34,17,-6,34,36,27,-18,52,55,63,-70,50,56,55,-53,49,57,66,-73,51,58,57,-50,64,59,54,63,-71,55,56,61,-61,22,67,65,-2,50,83,84,-72,52,82,83,-51,54,564,565,-64,63,565,62,68,81,-70,65,66,3,-2,68,62,58,-52,70,63,55,-61,69,81,82,-53,71,84,72,66,-66,71,65,56,-51,65,67,61,-57,74,73,39,-13,75,74,12,-11,76,75,10,-46,78,77,42,-7,79,78,6,-5,80,79,4,-49,82,81,68,-52,83,82,51,-50,84,83,49,-73,85,87,88,-91,86,85,94,-97,85,90,91,-95,85,86,-88,88,89,-91,91,93,-93,89,93,91,-91,95,94,91,-93,95,96,-95,97,99,100,-103,214,215,-121,99,98,111,-105,102,101,160,-162,213,214,-121,215,216,-121,100,99,104,105,-108,97,98,-100,100,101,-103,104,103,110,-106,108,110,103,194,-197,103,111,193,-195,107,106,101,-101,134,139,223,-225,135,201,-203,109,110,-109,111,103,-105,107,109,-107,107,105,110,-110,115,114,229,-231,113,112,227,-229,154,116,175,-177,114,113,228,-230,177,178,116,-155,156,157,-124,157,199,-124,124,119,158,-160,221,222,-121,120,217,-219,156,200,186,-188,198,199,119,-161,118,117,208,-210,209,210,-119,129,126,143,-145,125,128,141,-143,130,129,144,-146,126,125,142,-144,127,172,163,-141,131,130,145,-147,140,166,167,-128,136,133,235,-237,132,135,202,-204,181,182,136,-237,203,204,-133,180,223,139,-180,180,181,89,-89,164,165,-141,165,166,-141,205,206,135,-133,204,205,-133,237,238,133,-137,183,237,136,-183,146,145,183,-185,140,163,-165,127,167,168,-148,149,148,128,-126,150,149,125,-127,151,150,126,-130,152,151,129,-131,153,152,130,-132,147,171,172,-128,147,169,-171,147,168,-170,154,176,-178,170,171,-148,211,212,117,-119,210,211,-119,159,158,231,-233,120,218,-220,219,
- 220,-121,155,174,175,-117,173,174,-156,173,155,116,-179,161,160,119,-125,222,213,-121,120,216,-218,162,195,200,-124,196,197,109,-109,197,160,101,106,-110,179,184,-139,225,226,139,-135,206,201,-136,167,166,141,-129,168,167,128,-149,172,171,153,-132,163,172,131,-147,117,212,-208,188,189,174,-174,220,221,-121,175,115,230,-177,177,176,152,-154,207,208,-118,180,179,-139,138,137,181,-181,137,182,-182,183,182,-138,184,183,137,-139,179,139,226,-185,186,185,-123,187,186,-123,188,187,-123,122,121,189,-189,190,189,-122,121,191,-191,121,192,-192,193,192,-122,194,193,121,-123,185,194,-123,196,195,-163,162,197,-197,162,198,-198,123,199,198,-163,200,195,185,-187,123,200,-157,157,158,119,-200,202,201,134,-225,203,202,96,-96,133,204,203,-236,238,205,204,-134,142,141,206,-206,206,225,134,-202,177,208,207,-179,209,208,170,-170,112,210,209,-228,211,231,158,-158,157,156,212,-212,188,156,-188,98,214,193,-112,98,97,215,-215,97,102,161,-216,217,216,161,-125,218,217,124,-160,219,218,159,232,-234,233,234,220,-220,220,189,190,-222,190,191,222,-222,191,192,213,-223,87,223,180,-89,224,223,87,-87,202,224,86,-97,141,166,165,225,-207,165,164,226,-226,184,226,164,163,-147,227,209,169,168,-149,228,227,148,-150,229,228,149,-151,230,229,150,-152,176,230,151,-153,174,189,220,-235,173,212,156,-189,207,212,173,-179,112,231,211,-211,232,231,112,-114,233,232,113,-115,115,234,233,-115,174,234,115,-176,170,208,177,153,-172,196,194,185,-196,197,198,-161,215,161,-217,193,214,213,-193,235,203,95,-93,236,235,92,-94,181,236,93,-90,145,144,237,-184,144,143,238,-238,143,142,205,-239,239,241,242,-245,240,239,248,-251,239,244,245,-249,239,240,-242,242,243,-245,245,247,-247,243,247,245,-245,249,248,245,-247,249,250,-249,251,253,254,-257,368,369,-275,253,252,265,-259,256,255,314,-316,367,368,-275,369,370,-275,254,253,258,259,-262,251,252,-254,254,255,-257,258,257,264,-260,262,264,257,348,-351,257,265,347,-349,261,260,255,-255,288,293,377,-379,289,355,-357,263,264,-263,265,257,-259,261,263,-261,261,259,264,-264,269,268,383,-385,267,266,381,-383,308,270,329,-331,268,267,
- 382,-384,331,332,270,-309,310,311,-278,311,353,-278,278,273,312,-314,375,376,-275,274,371,-373,310,354,340,-342,352,353,273,-315,272,271,362,-364,363,364,-273,283,280,297,-299,279,282,295,-297,284,283,298,-300,280,279,296,-298,281,326,317,-295,285,284,299,-301,294,320,321,-282,290,287,389,-391,286,289,356,-358,335,336,290,-391,357,358,-287,334,377,293,-334,334,335,243,-243,318,319,-295,319,320,-295,359,360,289,-287,358,359,-287,391,392,287,-291,337,391,290,-337,300,299,337,-339,294,317,-319,281,321,322,-302,303,302,282,-280,304,303,279,-281,305,304,280,-284,306,305,283,-285,307,306,284,-286,301,325,326,-282,301,323,-325,301,322,-324,308,330,-332,324,325,-302,365,366,271,-273,364,365,-273,313,312,385,-387,274,372,-374,373,374,-275,309,328,329,-271,327,328,-310,327,309,270,-333,315,314,273,-279,376,367,-275,274,370,-372,316,349,354,-278,350,351,263,-263,351,314,255,260,-264,333,338,-293,379,380,293,-289,360,355,-290,321,320,295,-283,322,321,282,-303,326,325,307,-286,317,326,285,-301,271,366,-362,342,343,328,-328,374,375,-275,329,269,384,-331,331,330,306,-308,361,362,-272,334,333,-293,292,291,335,-335,291,336,-336,337,336,-292,338,337,291,-293,333,293,380,-339,340,339,-277,341,340,-277,342,341,-277,276,275,343,-343,344,343,-276,275,345,-345,275,346,-346,347,346,-276,348,347,275,-277,339,348,-277,350,349,-317,316,351,-351,316,352,-352,277,353,352,-317,354,349,339,-341,277,354,-311,311,312,273,-354,356,355,288,-379,357,356,250,-250,287,358,357,-390,392,359,358,-288,296,295,360,-360,360,379,288,-356,331,362,361,-333,363,362,324,-324,266,364,363,-382,365,385,312,-312,311,310,366,-366,342,310,-342,252,368,347,-266,252,251,369,-369,251,256,315,-370,371,370,315,-279,372,371,278,-314,373,372,313,386,-388,387,388,374,-374,374,343,344,-376,344,345,376,-376,345,346,367,-377,241,377,334,-243,378,377,241,-241,356,378,240,-251,295,320,319,379,-361,319,318,380,-380,338,380,318,317,-301,381,363,323,322,-303,382,381,302,-304,383,382,303,-305,384,383,304,-306,330,384,305,-307,328,343,374,-389,327,366,310,-343,361,366,327,-333,266,385,
- 365,-365,386,385,266,-268,387,386,267,-269,269,388,387,-269,328,388,269,-330,324,362,331,307,-326,350,348,339,-350,351,352,-315,369,315,-371,347,368,367,-347,389,357,249,-247,390,389,246,-248,335,390,247,-244,299,298,391,-338,298,297,392,-392,297,296,359,-393,393,398,2,-36,402,393,35,-19,394,403,19,-33,404,394,32,-9,395,407,21,-38,399,395,37,-4,396,409,58,-63,397,396,-63,53,401,397,-63,400,399,3,-67,408,400,66,-58,403,402,18,-20,405,404,8,-30,406,405,29,-21,407,406,20,-22,409,408,57,-59,36,28,398,-394,27,36,393,-403,26,27,402,-404,44,26,403,-395,25,44,394,-405,31,25,404,-406,31,405,406,-25,23,24,406,-408,41,23,407,-396,22,41,395,-400,22,399,400,-68,397,401,59,-65,396,397,64,-71,409,396,70,-61,408,409,60,-62,400,408,61,-68,410,412,419,-419,411,410,417,-417,412,411,413,-415,414,413,432,-434,415,417,424,-424,416,415,427,-427,418,420,425,-425,420,419,422,-422,421,422,435,-435,423,425,431,-431,426,428,433,-433,428,427,430,-430,429,431,434,-436,417,410,418,-425,423,430,427,-416,435,422,414,-434,428,429,435,-434,412,414,422,-420,421,434,431,425,-421,413,411,416,426,-433,410,411,-413,415,416,-418,418,419,-421,423,424,-426,426,427,-429,429,430,-432,436,438,445,-445,437,436,443,-443,438,437,439,-441,440,439,458,-460,441,443,450,-450,442,441,453,-453,444,446,451,-451,446,445,448,-448,447,448,461,-461,449,451,457,-457,452,454,459,-459,454,453,456,-456,455,457,460,-462,443,436,444,-451,449,456,453,-442,461,448,440,-460,454,455,461,-460,438,440,448,-446,447,460,457,451,-447,439,437,442,452,-459,436,437,-439,441,442,-444,444,445,-447,449,450,-452,452,453,-455,455,456,-458,462,464,471,-471,463,462,469,-469,464,463,465,-467,466,465,1258,-1260,467,469,476,-476,468,467,479,-479,470,472,477,-477,472,471,474,-474,473,474,485,-485,475,477,483,-483,478,480,1262,-1264,480,479,482,-482,481,483,484,-486,469,462,470,-477,475,482,479,-468,485,474,466,1259,1261,-1261,480,481,485,1260,1264,-1263,464,466,474,-472,473,484,483,477,-473,465,463,468,478,1263,1265,-1259,462,463,-465,467,468,-470,470,471,-473,475,476,-478,478,479,-481,481,482,-484,486,
- 488,495,-495,487,486,493,-493,488,487,489,-491,490,489,508,-510,491,493,500,-500,492,491,503,-503,494,496,501,-501,496,495,498,-498,497,498,511,-511,499,501,507,-507,502,504,509,-509,504,503,506,-506,505,507,510,-512,493,486,494,-501,499,506,503,-492,511,498,490,-510,504,505,511,-510,488,490,498,-496,497,510,507,501,-497,489,487,492,502,-509,486,487,-489,491,492,-494,494,495,-497,499,500,-502,502,503,-505,505,506,-508,512,514,521,-521,513,512,519,-519,514,513,515,-517,516,515,534,-536,517,519,526,-526,518,517,529,-529,520,522,527,-527,1253,524,-524,523,1257,1255,-1257,525,527,533,-533,528,530,535,-535,530,529,532,-532,531,533,536,-538,519,512,520,-527,525,532,529,-518,1254,1257,-525,530,531,537,-536,522,1253,523,1256,536,533,-528,515,513,518,528,-535,512,513,-515,517,518,-520,520,521,-523,525,526,-528,528,529,-531,531,532,-534,538,540,547,-547,539,538,545,-545,540,539,541,-543,542,541,560,-562,543,545,552,-552,544,543,555,-555,546,548,553,-553,548,547,550,-550,549,550,563,-563,551,553,559,-559,554,556,561,-561,556,555,558,-558,557,559,562,-564,545,538,546,-553,551,558,555,-544,563,550,542,-562,556,557,563,-562,540,542,550,-548,549,562,559,553,-549,541,539,544,554,-561,538,539,-541,543,544,-546,546,547,-549,551,552,-554,554,555,-557,557,558,-560,565,564,53,-63,34,567,566,-1,571,584,586,-582,568,583,-583,568,582,584,-572,569,583,-586,609,590,591,-611,590,609,608,-594,576,589,588,-579,610,591,629,-632,575,598,599,-578,602,595,-622,581,624,623,572,568,-572,589,576,-578,583,569,570,-583,582,570,-585,583,568,572,-586,587,581,-587,589,619,618,-589,579,580,605,-607,613,603,604,-615,612,605,603,-614,614,604,630,632,-616,593,608,607,-593,595,601,600,-597,594,617,616,-598,598,621,620,-600,601,587,586,-601,601,595,-603,575,625,-635,619,589,577,599,-621,617,594,596,-601,605,612,611,-607,603,574,573,-605,605,580,574,-604,604,573,622,-631,608,576,578,-608,609,577,576,-609,577,609,610,-576,575,610,631,-626,612,593,592,-612,593,612,613,-591,590,613,614,-592,591,614,-616,615,632,-634,591,615,633,-630,575,634,628,602,-599,617,570,569,
- -617,584,570,617,600,-587,619,594,597,-619,594,619,620,-597,621,595,596,-621,602,621,-599,623,708,585,-573,627,624,581,-588,628,627,587,601,-603,626,622,573,574,580,-580,638,648,653,-652,635,649,-651,635,638,651,-650,636,652,-651,676,677,658,-658,657,660,675,-677,643,645,655,-657,677,631,629,-659,642,644,666,-666,669,688,-663,648,638,635,639,623,-625,656,644,-644,650,649,637,-637,649,651,-638,650,652,639,-636,654,653,-649,656,655,685,-687,646,673,672,-648,680,681,671,-671,679,680,670,-673,681,682,632,630,-672,660,659,674,-676,662,663,667,-669,661,664,683,-685,665,666,687,-689,668,667,653,-655,668,669,-663,642,634,-626,686,687,666,644,-657,684,667,663,-662,672,673,678,-680,670,671,640,-642,672,670,641,-648,671,630,622,-641,675,674,645,-644,676,675,643,-645,644,642,677,-677,642,625,631,-678,679,678,659,-661,660,657,680,-680,657,658,681,-681,658,682,-682,682,633,-633,658,629,633,-683,642,665,669,628,-635,684,683,636,-638,651,653,667,684,-638,686,685,664,-662,661,663,687,-687,688,687,663,-663,669,665,-689,624,627,654,-649,627,628,669,668,-655,622,626,646,647,641,-641,626,697,673,-647,698,626,579,-607,707,623,639,-653,689,690,697,-699,690,689,691,-693,692,691,705,-707,693,694,704,-704,694,693,695,-697,696,695,699,-701,700,699,708,-708,701,702,706,-706,702,701,703,-705,578,588,703,-702,607,705,691,-593,607,578,701,-706,592,691,689,-612,588,618,693,-704,693,618,597,-696,689,698,606,-612,699,695,597,-617,708,699,616,569,-586,674,659,692,-707,674,706,702,-646,659,678,690,-693,655,704,694,-686,694,696,664,-686,697,690,678,-674,696,700,683,-665,645,702,704,-656,700,707,652,636,-684,697,626,-699,707,708,-624,712,725,727,-723,709,724,-724,709,723,725,-713,710,724,-727,750,731,732,-752,731,750,749,-735,717,730,729,-720,751,732,770,-773,716,739,740,-719,743,736,-763,722,765,764,713,709,-713,730,717,-719,724,710,711,-724,723,711,-726,724,709,713,-727,728,722,-728,730,760,759,-730,720,721,746,-748,754,744,745,-756,753,746,744,-755,755,745,771,773,-757,734,749,748,-734,736,742,741,-738,735,758,757,-739,739,762,761,-741,742,728,727,
- -742,742,736,-744,716,766,-776,760,730,718,740,-762,758,735,737,-742,746,753,752,-748,744,715,714,-746,746,721,715,-745,745,714,763,-772,749,717,719,-749,750,718,717,-750,718,750,751,-717,716,751,772,-767,753,734,733,-753,734,753,754,-732,731,754,755,-733,732,755,-757,756,773,-775,732,756,774,-771,716,775,769,743,-740,758,711,710,-758,725,711,758,741,-728,760,735,738,-760,735,760,761,-738,762,736,737,-762,743,762,-740,764,849,726,-714,768,765,722,-729,769,768,728,742,-744,767,763,714,715,721,-721,779,789,794,-793,776,790,-792,776,779,792,-791,777,793,-792,817,818,799,-799,798,801,816,-818,784,786,796,-798,818,772,770,-800,783,785,807,-807,810,829,-804,789,779,776,780,764,-766,797,785,-785,791,790,778,-778,790,792,-779,791,793,780,-777,795,794,-790,797,796,826,-828,787,814,813,-789,821,822,812,-812,820,821,811,-814,822,823,773,771,-813,801,800,815,-817,803,804,808,-810,802,805,824,-826,806,807,828,-830,809,808,794,-796,809,810,-804,783,775,-767,827,828,807,785,-798,825,808,804,-803,813,814,819,-821,811,812,781,-783,813,811,782,-789,812,771,763,-782,816,815,786,-785,817,816,784,-786,785,783,818,-818,783,766,772,-819,820,819,800,-802,801,798,821,-821,798,799,822,-822,799,823,-823,823,774,-774,799,770,774,-824,783,806,810,769,-776,825,824,777,-779,792,794,808,825,-779,827,826,805,-803,802,804,828,-828,829,828,804,-804,810,806,-830,765,768,795,-790,768,769,810,809,-796,763,767,787,788,782,-782,767,838,814,-788,839,767,720,-748,848,764,780,-794,830,831,838,-840,831,830,832,-834,833,832,846,-848,834,835,845,-845,835,834,836,-838,837,836,840,-842,841,840,849,-849,842,843,847,-847,843,842,844,-846,719,729,844,-843,748,846,832,-734,748,719,842,-847,733,832,830,-753,729,759,834,-845,834,759,738,-837,830,839,747,-753,840,836,738,-758,849,840,757,710,-727,815,800,833,-848,815,847,843,-787,800,819,831,-834,796,845,835,-827,835,837,805,-827,838,831,819,-815,837,841,824,-806,786,843,845,-797,841,848,793,777,-825,838,767,-840,848,849,-765,853,866,868,-864,850,865,-865,850,864,866,-854,851,865,-868,891,872,873,-893,872,891,890,-876,
- 858,871,870,-861,892,873,911,-914,857,880,881,-860,884,877,-904,863,906,905,854,850,-854,871,858,-860,865,851,852,-865,864,852,-867,865,850,854,-868,869,863,-869,871,901,900,-871,861,862,887,-889,895,885,886,-897,894,887,885,-896,896,886,912,914,-898,875,890,889,-875,877,883,882,-879,876,899,898,-880,880,903,902,-882,883,869,868,-883,883,877,-885,857,907,-917,901,871,859,881,-903,899,876,878,-883,887,894,893,-889,885,856,855,-887,887,862,856,-886,886,855,904,-913,890,858,860,-890,891,859,858,-891,859,891,892,-858,857,892,913,-908,894,875,874,-894,875,894,895,-873,872,895,896,-874,873,896,-898,897,914,-916,873,897,915,-912,857,916,910,884,-881,899,852,851,-899,866,852,899,882,-869,901,876,879,-901,876,901,902,-879,903,877,878,-903,884,903,-881,905,990,867,-855,909,906,863,-870,910,909,869,883,-885,908,904,855,856,862,-862,920,930,935,-934,917,931,-933,917,920,933,-932,918,934,-933,958,959,940,-940,939,942,957,-959,925,927,937,-939,959,913,911,-941,924,926,948,-948,951,970,-945,930,920,917,921,905,-907,938,926,-926,932,931,919,-919,931,933,-920,932,934,921,-918,936,935,-931,938,937,967,-969,928,955,954,-930,962,963,953,-953,961,962,952,-955,963,964,914,912,-954,942,941,956,-958,944,945,949,-951,943,946,965,-967,947,948,969,-971,950,949,935,-937,950,951,-945,924,916,-908,968,969,948,926,-939,966,949,945,-944,954,955,960,-962,952,953,922,-924,954,952,923,-930,953,912,904,-923,957,956,927,-926,958,957,925,-927,926,924,959,-959,924,907,913,-960,961,960,941,-943,942,939,962,-962,939,940,963,-963,940,964,-964,964,915,-915,940,911,915,-965,924,947,951,910,-917,966,965,918,-920,933,935,949,966,-920,968,967,946,-944,943,945,969,-969,970,969,945,-945,951,947,-971,906,909,936,-931,909,910,951,950,-937,904,908,928,929,923,-923,908,979,955,-929,980,908,861,-889,989,905,921,-935,971,972,979,-981,972,971,973,-975,974,973,987,-989,975,976,986,-986,976,975,977,-979,978,977,981,-983,982,981,990,-990,983,984,988,-988,984,983,985,-987,860,870,985,-984,889,987,973,-875,889,860,983,-988,874,973,971,-894,870,900,975,-986,975,900,879,-978,
- 971,980,888,-894,981,977,879,-899,990,981,898,851,-868,956,941,974,-989,956,988,984,-928,941,960,972,-975,937,986,976,-968,976,978,946,-968,979,972,960,-956,978,982,965,-947,927,984,986,-938,982,989,934,918,-966,979,908,-981,989,990,-906,1009,999,1000,-1011,999,1009,1008,-1003,1010,1000,1021,-1024,997,998,1005,-1007,1013,1003,1004,-1015,1012,1005,1003,-1014,1014,1004,1022,-1016,1002,1008,1007,-1002,1005,1012,1011,-1007,1003,992,991,-1005,1005,998,992,-1004,1004,991,1016,-1023,1007,1107,1020,-1002,1008,1056,1048,-1008,1009,1055,1056,-1009,1055,1009,1010,-1055,1054,1010,1023,-1054,1007,1048,1109,-1108,1012,1002,1001,-1012,1002,1012,1013,-1000,999,1013,1014,-1001,1000,1014,-1016,1000,1015,-1022,1001,1020,1103,-1012,1103,1105,1006,-1012,1018,1016,991,992,998,-998,1042,1043,1033,-1033,1032,1035,1041,-1043,1043,1023,1021,-1034,1030,1039,1038,-1032,1046,1047,1037,-1037,1045,1046,1036,-1039,1047,1015,1022,-1038,1035,1034,1040,-1042,1040,1034,1020,-1107,1038,1039,1044,-1046,1036,1037,1024,-1026,1038,1036,1025,-1032,1037,1022,1016,-1025,1041,1040,1049,-1051,1042,1041,1050,-1052,1051,1052,1043,-1043,1052,1053,1023,-1044,1040,1106,1108,-1050,1034,1044,1102,-1021,1045,1044,1034,-1036,1035,1032,1046,-1046,1032,1033,1047,-1047,1015,1047,1033,-1022,1104,1102,1044,-1040,1016,1018,1030,1031,1025,-1025,1018,1104,1039,-1031,995,993,1017,1026,1028,1027,1029,1019,996,-995,1048,996,1019,-1110,1049,1108,1019,-1030,1050,1049,1029,-1028,1051,1050,1027,-1029,1028,1026,1052,-1052,1026,1017,1053,-1053,993,1054,1053,-1018,995,1055,1054,-994,1056,1055,995,-995,1048,1056,994,-997,1059,1060,1067,-1069,1071,1065,1066,-1073,1070,1067,1065,-1072,1072,1066,1078,1079,-1074,1067,1070,1069,-1069,1065,1058,1057,-1067,1067,1060,1058,-1066,1066,1057,1074,-1079,1070,1064,1063,-1070,1064,1070,1071,-1062,1061,1071,1072,-1063,1062,1072,-1074,1073,1079,-1081,1062,1073,1080,-1078,1063,1076,1101,-1070,1101,1099,1068,-1070,1075,1074,1057,1058,1060,-1060,1083,1092,1091,-1085,1095,1096,1090,-1090,1094,1095,1089,-1092,1096,1097,1079,1078,-1091,1091,1092,1093,-1095,1089,
- 1090,1081,-1083,1091,1089,1082,-1085,1090,1078,1074,-1082,1087,1093,1100,-1077,1094,1093,1087,-1089,1088,1085,1095,-1095,1085,1086,1096,-1096,1086,1097,-1097,1097,1080,-1080,1086,1077,1080,-1098,1098,1100,1093,-1093,1074,1075,1083,1084,1082,-1082,1075,1098,1092,-1084,1061,1062,1077,1086,1085,1088,1087,1076,1063,-1065,1099,1075,1059,-1069,1098,1099,1101,-1101,1098,1075,-1100,1100,1101,-1077,1105,1018,997,-1007,1103,1102,1104,-1106,1106,1107,1109,-1109,1102,1103,-1021,1104,1018,-1106,1106,1020,-1108,1108,1109,-1020,1128,1118,1119,-1130,1118,1128,1127,-1122,1129,1119,1139,-1142,1116,1117,1124,-1126,1132,1122,1123,-1134,1131,1124,1122,-1133,1133,1123,1140,-1143,1121,1127,1126,-1121,1124,1131,1130,-1126,1122,1111,1110,-1124,1124,1117,1111,-1123,1123,1110,1134,-1141,1126,1222,1138,-1121,1127,1176,1168,-1127,1128,1175,1176,-1128,1175,1128,1129,-1175,1174,1129,1141,-1174,1126,1168,1224,-1223,1131,1121,1120,-1131,1121,1131,1132,-1119,1118,1132,1133,-1120,1133,1142,-1144,1119,1133,1143,-1140,1130,1120,1138,-1221,1220,1218,1125,-1131,1136,1134,1110,1111,1117,-1117,1162,1163,1153,-1153,1152,1155,1161,-1163,1163,1141,1139,-1154,1150,1159,1158,-1152,1166,1167,1157,-1157,1165,1166,1156,-1159,1167,1142,1140,-1158,1155,1154,1160,-1162,1160,1154,1138,-1222,1158,1159,1164,-1166,1156,1157,1144,-1146,1158,1156,1145,-1152,1157,1140,1134,-1145,1161,1160,1169,-1171,1162,1161,1170,-1172,1171,1172,1163,-1163,1172,1173,1141,-1164,1160,1221,1223,-1170,1165,1164,1154,-1156,1155,1152,1166,-1166,1152,1153,1167,-1167,1153,1142,-1168,1153,1139,1143,-1143,1217,1219,1164,-1160,1134,1136,1150,1151,1145,-1145,1136,1217,1159,-1151,1164,1219,1138,-1155,1114,1112,1135,1146,1148,1147,1149,1137,1115,-1114,1168,1115,1137,-1225,1169,1223,1137,-1150,1170,1169,1149,-1148,1171,1170,1147,-1149,1148,1146,1172,-1172,1146,1135,1173,-1173,1112,1174,1173,-1136,1114,1175,1174,-1113,1176,1175,1114,-1114,1168,1176,1113,-1116,1179,1180,1187,-1189,1192,1185,1186,-1194,1191,1187,1185,-1193,1193,1186,1199,-1195,1187,1191,1190,-1189,1185,1178,1177,-1187,1187,1180,1178,-1186,
- 1186,1177,1195,-1200,1190,1183,-1190,1191,1184,1183,-1191,1184,1191,1192,-1182,1181,1192,1193,-1183,1194,1198,1182,-1194,1189,1183,-1198,1189,1226,1188,-1191,1196,1195,1177,1178,1180,-1180,1202,1211,1210,-1204,1215,1216,1209,-1209,1214,1215,1208,-1211,1216,1194,1199,-1210,1210,1211,1213,-1215,1208,1209,1200,-1202,1210,1208,1201,-1204,1209,1199,1195,-1201,1206,1213,1212,-1198,1214,1213,1206,-1208,1207,1204,1215,-1215,1204,1205,1216,-1216,1194,1216,1205,-1199,1225,1212,1213,-1212,1195,1196,1202,1203,1201,-1201,1196,1225,1211,-1203,1181,1182,1198,1205,1204,1207,1206,1197,1183,-1185,1218,1136,1116,-1126,1217,1218,1220,-1220,1221,1222,1224,-1224,1217,1136,-1219,1219,1220,-1139,1221,1138,-1223,1223,1224,-1138,1226,1196,1179,-1189,1225,1226,1189,-1213,1225,1196,-1227,1212,1189,-1198,1227,1235,1236,-1230,1228,1233,1234,-1228,1229,1231,1230,-1229,1231,1250,1249,-1231,1232,1240,1241,-1235,1233,1243,1244,-1233,1235,1241,1242,-1238,1237,1238,1239,-1237,1238,1251,1252,-1240,1240,1247,1248,-1243,1243,1249,1250,-1246,1245,1246,1247,-1245,1246,1252,1251,-1249,1234,1241,1235,-1228,1240,1232,1244,-1248,1252,1250,1231,-1240,1245,1250,1252,-1247,1229,1236,1239,-1232,1238,1237,1242,1248,-1252,1230,1249,1243,1233,-1229,1227,1229,-1229,1232,1234,-1234,1235,1237,-1237,1240,1242,-1242,1243,1245,-1245,1246,1248,-1248,522,521,524,-1254,514,516,1254,524,-522,537,1255,1257,1254,516,-536,1256,1255,537,-537,523,524,-1258,1264,1265,1263,-1263,1265,1261,1259,-1259,1260,1261,-1265,1264,1261,-1266,0,566,1267,-1267,566,2,1268,-1268,2,398,1269,-1269,398,28,1270,-1270,28,0,1266,-1271,1282,1283,1306,-1309,1280,1284,1283,-1283,1276,1285,1301,-1312,1274,1286,1285,-1277,1273,1287,1303,-1317,1275,1288,1287,-1274,1279,1289,1297,-1314,1281,1290,1289,-1280,1291,1271,1306,-1310,1283,1284,1293,-1293,1284,1298,1299,-1294,1294,1278,1301,-1313,1285,1286,1296,-1296,59,1304,1302,-55,1274,1347,1348,-1316,1276,1346,1347,-1275,1278,1277,1300,-1302,1280,1343,1344,-1315,1282,1342,1343,-1281,1272,1305,1306,-1272,1299,1298,1278,-1295,1298,1297,1277,-1279,1301,1300,1310,1345,
- -1312,564,1833,1303,-54,1306,1305,1307,1341,-1309,1307,1305,1290,-1282,1309,1306,1283,-1293,1308,1341,1342,-1283,1310,1300,1288,-1276,1312,1301,1285,-1296,1311,1345,1346,-1277,1314,1344,1313,1297,-1299,1314,1298,1284,-1281,1315,1348,1316,1303,1833,-1303,1315,1302,1286,-1275,1302,1304,1296,-1287,1320,1323,1331,-1338,1318,1324,1323,-1321,1317,1325,1334,-1341,1319,1326,1325,-1318,1332,1327,1322,1331,-1339,1323,1324,1329,-1329,1291,1335,1333,-1272,1318,1351,1352,-1340,1320,1350,1351,-1319,1322,1831,1832,-1332,1331,1832,1330,1336,1349,-1338,1333,1334,1272,-1272,1336,1330,1326,-1320,1338,1331,1323,-1329,1337,1349,1350,-1321,1339,1352,1340,1334,-1334,1339,1333,1324,-1319,1333,1335,1329,-1325,2532,2533,2534,2535,-2537,1342,1341,1307,-1282,1343,1342,1281,-1280,1344,1343,1279,-1314,1346,1345,1310,-1276,1347,1346,1275,-1274,1348,1347,1273,-1317,1350,1349,1336,-1320,1351,1350,1319,-1318,1352,1351,1317,-1341,1353,1355,1356,-1359,1354,1353,1362,-1365,1353,1358,1359,-1363,1353,1354,-1356,1356,1357,-1359,1359,1361,-1361,1357,1361,1359,-1359,1363,1362,1359,-1361,1363,1364,-1363,1365,1367,1368,-1371,1482,1483,-1389,1367,1366,1379,-1373,1370,1369,1428,-1430,1481,1482,-1389,1483,1484,-1389,1368,1367,1372,1373,-1376,1365,1366,-1368,1368,1369,-1371,1372,1371,1378,-1374,1376,1378,1371,1462,-1465,1371,1379,1461,-1463,1375,1374,1369,-1369,1402,1407,1491,-1493,1403,1469,-1471,1377,1378,-1377,1379,1371,-1373,1375,1377,-1375,1375,1373,1378,-1378,1383,1382,1497,-1499,1381,1380,1495,-1497,1422,1384,1443,-1445,1382,1381,1496,-1498,1445,1446,1384,-1423,1424,1425,-1392,1425,1467,-1392,1392,1387,1426,-1428,1489,1490,-1389,1388,1485,-1487,1424,1468,1454,-1456,1466,1467,1387,-1429,1386,1385,1476,-1478,1477,1478,-1387,1397,1394,1411,-1413,1393,1396,1409,-1411,1398,1397,1412,-1414,1394,1393,1410,-1412,1395,1440,1431,-1409,1399,1398,1413,-1415,1408,1434,1435,-1396,1404,1401,1503,-1505,1400,1403,1470,-1472,1449,1450,1404,-1505,1471,1472,-1401,1448,1491,1407,-1448,1448,1449,1357,-1357,1432,1433,-1409,1433,1434,-1409,1473,1474,1403,-1401,1472,1473,-1401,1505,
- 1506,1401,-1405,1451,1505,1404,-1451,1414,1413,1451,-1453,1408,1431,-1433,1395,1435,1436,-1416,1417,1416,1396,-1394,1418,1417,1393,-1395,1419,1418,1394,-1398,1420,1419,1397,-1399,1421,1420,1398,-1400,1415,1439,1440,-1396,1415,1437,-1439,1415,1436,-1438,1422,1444,-1446,1438,1439,-1416,1479,1480,1385,-1387,1478,1479,-1387,1427,1426,1499,-1501,1388,1486,-1488,1487,1488,-1389,1423,1442,1443,-1385,1441,1442,-1424,1441,1423,1384,-1447,1429,1428,1387,-1393,1490,1481,-1389,1388,1484,-1486,1430,1463,1468,-1392,1464,1465,1377,-1377,1465,1428,1369,1374,-1378,1447,1452,-1407,1493,1494,1407,-1403,1474,1469,-1404,1435,1434,1409,-1397,1436,1435,1396,-1417,1440,1439,1421,-1400,1431,1440,1399,-1415,1385,1480,-1476,1456,1457,1442,-1442,1488,1489,-1389,1443,1383,1498,-1445,1445,1444,1420,-1422,1475,1476,-1386,1448,1447,-1407,1406,1405,1449,-1449,1405,1450,-1450,1451,1450,-1406,1452,1451,1405,-1407,1447,1407,1494,-1453,1454,1453,-1391,1455,1454,-1391,1456,1455,-1391,1390,1389,1457,-1457,1458,1457,-1390,1389,1459,-1459,1389,1460,-1460,1461,1460,-1390,1462,1461,1389,-1391,1453,1462,-1391,1464,1463,-1431,1430,1465,-1465,1430,1466,-1466,1391,1467,1466,-1431,1468,1463,1453,-1455,1391,1468,-1425,1425,1426,1387,-1468,1470,1469,1402,-1493,1471,1470,1364,-1364,1401,1472,1471,-1504,1506,1473,1472,-1402,1410,1409,1474,-1474,1474,1493,1402,-1470,1445,1476,1475,-1447,1477,1476,1438,-1438,1380,1478,1477,-1496,1479,1499,1426,-1426,1425,1424,1480,-1480,1456,1424,-1456,1366,1482,1461,-1380,1366,1365,1483,-1483,1365,1370,1429,-1484,1485,1484,1429,-1393,1486,1485,1392,-1428,1487,1486,1427,1500,-1502,1501,1502,1488,-1488,1488,1457,1458,-1490,1458,1459,1490,-1490,1459,1460,1481,-1491,1355,1491,1448,-1357,1492,1491,1355,-1355,1470,1492,1354,-1365,1409,1434,1433,1493,-1475,1433,1432,1494,-1494,1452,1494,1432,1431,-1415,1495,1477,1437,1436,-1417,1496,1495,1416,-1418,1497,1496,1417,-1419,1498,1497,1418,-1420,1444,1498,1419,-1421,1442,1457,1488,-1503,1441,1480,1424,-1457,1475,1480,1441,-1447,1380,1499,1479,-1479,1500,1499,1380,-1382,1501,1500,1381,-1383,1383,
- 1502,1501,-1383,1442,1502,1383,-1444,1438,1476,1445,1421,-1440,1464,1462,1453,-1464,1465,1466,-1429,1483,1429,-1485,1461,1482,1481,-1461,1503,1471,1363,-1361,1504,1503,1360,-1362,1449,1504,1361,-1358,1413,1412,1505,-1452,1412,1411,1506,-1506,1411,1410,1473,-1507,1507,1509,1510,-1513,1508,1507,1516,-1519,1507,1512,1513,-1517,1507,1508,-1510,1510,1511,-1513,1513,1515,-1515,1511,1515,1513,-1513,1517,1516,1513,-1515,1517,1518,-1517,1519,1521,1522,-1525,1636,1637,-1543,1521,1520,1533,-1527,1524,1523,1582,-1584,1635,1636,-1543,1637,1638,-1543,1522,1521,1526,1527,-1530,1519,1520,-1522,1522,1523,-1525,1526,1525,1532,-1528,1530,1532,1525,1616,-1619,1525,1533,1615,-1617,1529,1528,1523,-1523,1556,1561,1645,-1647,1557,1623,-1625,1531,1532,-1531,1533,1525,-1527,1529,1531,-1529,1529,1527,1532,-1532,1537,1536,1651,-1653,1535,1534,1649,-1651,1576,1538,1597,-1599,1536,1535,1650,-1652,1599,1600,1538,-1577,1578,1579,-1546,1579,1621,-1546,1546,1541,1580,-1582,1643,1644,-1543,1542,1639,-1641,1578,1622,1608,-1610,1620,1621,1541,-1583,1540,1539,1630,-1632,1631,1632,-1541,1551,1548,1565,-1567,1547,1550,1563,-1565,1552,1551,1566,-1568,1548,1547,1564,-1566,1549,1594,1585,-1563,1553,1552,1567,-1569,1562,1588,1589,-1550,1558,1555,1657,-1659,1554,1557,1624,-1626,1603,1604,1558,-1659,1625,1626,-1555,1602,1645,1561,-1602,1602,1603,1511,-1511,1586,1587,-1563,1587,1588,-1563,1627,1628,1557,-1555,1626,1627,-1555,1659,1660,1555,-1559,1605,1659,1558,-1605,1568,1567,1605,-1607,1562,1585,-1587,1549,1589,1590,-1570,1571,1570,1550,-1548,1572,1571,1547,-1549,1573,1572,1548,-1552,1574,1573,1551,-1553,1575,1574,1552,-1554,1569,1593,1594,-1550,1569,1591,-1593,1569,1590,-1592,1576,1598,-1600,1592,1593,-1570,1633,1634,1539,-1541,1632,1633,-1541,1581,1580,1653,-1655,1542,1640,-1642,1641,1642,-1543,1577,1596,1597,-1539,1595,1596,-1578,1595,1577,1538,-1601,1583,1582,1541,-1547,1644,1635,-1543,1542,1638,-1640,1584,1617,1622,-1546,1618,1619,1531,-1531,1619,1582,1523,1528,-1532,1601,1606,-1561,1647,1648,1561,-1557,1628,1623,-1558,1589,1588,1563,-1551,1590,1589,1550,
- -1571,1594,1593,1575,-1554,1585,1594,1553,-1569,1539,1634,-1630,1610,1611,1596,-1596,1642,1643,-1543,1597,1537,1652,-1599,1599,1598,1574,-1576,1629,1630,-1540,1602,1601,-1561,1560,1559,1603,-1603,1559,1604,-1604,1605,1604,-1560,1606,1605,1559,-1561,1601,1561,1648,-1607,1608,1607,-1545,1609,1608,-1545,1610,1609,-1545,1544,1543,1611,-1611,1612,1611,-1544,1543,1613,-1613,1543,1614,-1614,1615,1614,-1544,1616,1615,1543,-1545,1607,1616,-1545,1618,1617,-1585,1584,1619,-1619,1584,1620,-1620,1545,1621,1620,-1585,1622,1617,1607,-1609,1545,1622,-1579,1579,1580,1541,-1622,1624,1623,1556,-1647,1625,1624,1518,-1518,1555,1626,1625,-1658,1660,1627,1626,-1556,1564,1563,1628,-1628,1628,1647,1556,-1624,1599,1630,1629,-1601,1631,1630,1592,-1592,1534,1632,1631,-1650,1633,1653,1580,-1580,1579,1578,1634,-1634,1610,1578,-1610,1520,1636,1615,-1534,1520,1519,1637,-1637,1519,1524,1583,-1638,1639,1638,1583,-1547,1640,1639,1546,-1582,1641,1640,1581,1654,-1656,1655,1656,1642,-1642,1642,1611,1612,-1644,1612,1613,1644,-1644,1613,1614,1635,-1645,1509,1645,1602,-1511,1646,1645,1509,-1509,1624,1646,1508,-1519,1563,1588,1587,1647,-1629,1587,1586,1648,-1648,1606,1648,1586,1585,-1569,1649,1631,1591,1590,-1571,1650,1649,1570,-1572,1651,1650,1571,-1573,1652,1651,1572,-1574,1598,1652,1573,-1575,1596,1611,1642,-1657,1595,1634,1578,-1611,1629,1634,1595,-1601,1534,1653,1633,-1633,1654,1653,1534,-1536,1655,1654,1535,-1537,1537,1656,1655,-1537,1596,1656,1537,-1598,1592,1630,1599,1575,-1594,1618,1616,1607,-1618,1619,1620,-1583,1637,1583,-1639,1615,1636,1635,-1615,1657,1625,1517,-1515,1658,1657,1514,-1516,1603,1658,1515,-1512,1567,1566,1659,-1606,1566,1565,1660,-1660,1565,1564,1627,-1661,1661,401,53,-1304,1669,1661,1303,-1288,1662,1670,1288,-1301,1671,1662,1300,-1278,1663,1674,1290,-1306,1666,1663,1305,-1273,1664,1676,1326,-1331,1665,1664,-1331,1321,1668,1665,-1331,1667,1666,1272,-1335,1675,1667,1334,-1326,1670,1669,1287,-1289,1672,1671,1277,-1298,1673,1672,1297,-1290,1674,1673,1289,-1291,1676,1675,1325,-1327,1304,59,401,-1662,1296,1304,1661,-1670,1295,1296,1669,
- -1671,1312,1295,1670,-1663,1294,1312,1662,-1672,1299,1294,1671,-1673,1299,1672,1673,-1294,1292,1293,1673,-1675,1309,1292,1674,-1664,1291,1309,1663,-1667,1291,1666,1667,-1336,1665,1668,1327,-1333,1664,1665,1332,-1339,1676,1664,1338,-1329,1675,1676,1328,-1330,1667,1675,1329,-1336,1677,1679,1686,-1686,1678,1677,1684,-1684,1679,1678,1680,-1682,1681,1680,1699,-1701,1682,1684,1691,-1691,1683,1682,1694,-1694,1685,1687,1692,-1692,1687,1686,1689,-1689,1688,1689,1702,-1702,1690,1692,1698,-1698,1693,1695,1700,-1700,1695,1694,1697,-1697,1696,1698,1701,-1703,1684,1677,1685,-1692,1690,1697,1694,-1683,1702,1689,1681,-1701,1695,1696,1702,-1701,1679,1681,1689,-1687,1688,1701,1698,1692,-1688,1680,1678,1683,1693,-1700,1677,1678,-1680,1682,1683,-1685,1685,1686,-1688,1690,1691,-1693,1693,1694,-1696,1696,1697,-1699,1703,1705,1712,-1712,1704,1703,1710,-1710,1705,1704,1706,-1708,1707,1706,1725,-1727,1708,1710,1717,-1717,1709,1708,1720,-1720,1711,1713,1718,-1718,1713,1712,1715,-1715,1714,1715,1728,-1728,1716,1718,1724,-1724,1719,1721,1726,-1726,1721,1720,1723,-1723,1722,1724,1727,-1729,1710,1703,1711,-1718,1716,1723,1720,-1709,1728,1715,1707,-1727,1721,1722,1728,-1727,1705,1707,1715,-1713,1714,1727,1724,1718,-1714,1706,1704,1709,1719,-1726,1703,1704,-1706,1708,1709,-1711,1711,1712,-1714,1716,1717,-1719,1719,1720,-1722,1722,1723,-1725,1729,1731,1738,-1738,1730,1729,1736,-1736,1731,1730,1732,-1734,1733,1732,2524,-2526,1734,1736,1743,-1743,1735,1734,1746,-1746,1737,1739,1744,-1744,1739,1738,1741,-1741,1740,1741,1752,-1752,1742,1744,1750,-1750,1745,1747,2528,-2530,1747,1746,1749,-1749,1748,1750,1751,-1753,1736,1729,1737,-1744,1742,1749,1746,-1735,1752,1741,1733,2525,2527,-2527,1747,1748,1752,2526,2530,-2529,1731,1733,1741,-1739,1740,1751,1750,1744,-1740,1732,1730,1735,1745,2529,2531,-2525,1729,1730,-1732,1734,1735,-1737,1737,1738,-1740,1742,1743,-1745,1745,1746,-1748,1748,1749,-1751,1753,1755,1762,-1762,1754,1753,1760,-1760,1755,1754,1756,-1758,1757,1756,1775,-1777,1758,1760,1767,-1767,1759,1758,1770,-1770,1761,1763,1768,-1768,1763,1762,1765,
- -1765,1764,1765,1778,-1778,1766,1768,1774,-1774,1769,1771,1776,-1776,1771,1770,1773,-1773,1772,1774,1777,-1779,1760,1753,1761,-1768,1766,1773,1770,-1759,1778,1765,1757,-1777,1771,1772,1778,-1777,1755,1757,1765,-1763,1764,1777,1774,1768,-1764,1756,1754,1759,1769,-1776,1753,1754,-1756,1758,1759,-1761,1761,1762,-1764,1766,1767,-1769,1769,1770,-1772,1772,1773,-1775,1779,1781,1788,-1788,1780,1779,1786,-1786,1781,1780,1782,-1784,1783,1782,1801,-1803,1784,1786,1793,-1793,1785,1784,1796,-1796,1787,1789,1794,-1794,2519,1791,-1791,1790,2523,2521,-2523,1792,1794,1800,-1800,1795,1797,1802,-1802,1797,1796,1799,-1799,1798,1800,1803,-1805,1786,1779,1787,-1794,1792,1799,1796,-1785,2520,2523,-1792,1797,1798,1804,-1803,1789,2519,1790,2522,1803,1800,-1795,1782,1780,1785,1795,-1802,1779,1780,-1782,1784,1785,-1787,1787,1788,-1790,1792,1793,-1795,1795,1796,-1798,1798,1799,-1801,1805,1807,1814,-1814,1806,1805,1812,-1812,1807,1806,1808,-1810,1809,1808,1827,-1829,1810,1812,1819,-1819,1811,1810,1822,-1822,1813,1815,1820,-1820,1815,1814,1817,-1817,1816,1817,1830,-1830,1818,1820,1826,-1826,1821,1823,1828,-1828,1823,1822,1825,-1825,1824,1826,1829,-1831,1812,1805,1813,-1820,1818,1825,1822,-1811,1830,1817,1809,-1829,1823,1824,1830,-1829,1807,1809,1817,-1815,1816,1829,1826,1820,-1816,1808,1806,1811,1821,-1828,1805,1806,-1808,1810,1811,-1813,1813,1814,-1816,1818,1819,-1821,1821,1822,-1824,1824,1825,-1827,1832,1831,1321,-1331,1302,1833,564,-55,1837,1850,1852,-1848,1834,1849,-1849,1834,1848,1850,-1838,1835,1849,-1852,1875,1856,1857,-1877,1856,1875,1874,-1860,1842,1855,1854,-1845,1876,1857,1895,-1898,1841,1864,1865,-1844,1868,1861,-1888,1847,1890,1889,1838,1834,-1838,1855,1842,-1844,1849,1835,1836,-1849,1848,1836,-1851,1849,1834,1838,-1852,1853,1847,-1853,1855,1885,1884,-1855,1845,1846,1871,-1873,1879,1869,1870,-1881,1878,1871,1869,-1880,1880,1870,1896,1898,-1882,1859,1874,1873,-1859,1861,1867,1866,-1863,1860,1883,1882,-1864,1864,1887,1886,-1866,1867,1853,1852,-1867,1867,1861,-1869,1841,1891,-1901,1885,1855,1843,1865,-1887,1883,1860,1862,-1867,1871,
- 1878,1877,-1873,1869,1840,1839,-1871,1871,1846,1840,-1870,1870,1839,1888,-1897,1874,1842,1844,-1874,1875,1843,1842,-1875,1843,1875,1876,-1842,1841,1876,1897,-1892,1878,1859,1858,-1878,1859,1878,1879,-1857,1856,1879,1880,-1858,1857,1880,-1882,1881,1898,-1900,1857,1881,1899,-1896,1841,1900,1894,1868,-1865,1883,1836,1835,-1883,1850,1836,1883,1866,-1853,1885,1860,1863,-1885,1860,1885,1886,-1863,1887,1861,1862,-1887,1868,1887,-1865,1889,1974,1851,-1839,1893,1890,1847,-1854,1894,1893,1853,1867,-1869,1892,1888,1839,1840,1846,-1846,1904,1914,1919,-1918,1901,1915,-1917,1901,1904,1917,-1916,1902,1918,-1917,1942,1943,1924,-1924,1923,1926,1941,-1943,1909,1911,1921,-1923,1943,1897,1895,-1925,1908,1910,1932,-1932,1935,1954,-1929,1914,1904,1901,1905,1889,-1891,1922,1910,-1910,1916,1915,1903,-1903,1915,1917,-1904,1916,1918,1905,-1902,1920,1919,-1915,1922,1921,1951,-1953,1912,1939,1938,-1914,1946,1947,1937,-1937,1945,1946,1936,-1939,1947,1948,1898,1896,-1938,1926,1925,1940,-1942,1928,1929,1933,-1935,1927,1930,1949,-1951,1931,1932,1953,-1955,1934,1933,1919,-1921,1934,1935,-1929,1908,1900,-1892,1952,1953,1932,1910,-1923,1950,1933,1929,-1928,1938,1939,1944,-1946,1936,1937,1906,-1908,1938,1936,1907,-1914,1937,1896,1888,-1907,1941,1940,1911,-1910,1942,1941,1909,-1911,1910,1908,1943,-1943,1908,1891,1897,-1944,1945,1944,1925,-1927,1926,1923,1946,-1946,1923,1924,1947,-1947,1924,1948,-1948,1948,1899,-1899,1924,1895,1899,-1949,1908,1931,1935,1894,-1901,1950,1949,1902,-1904,1917,1919,1933,1950,-1904,1952,1951,1930,-1928,1927,1929,1953,-1953,1954,1953,1929,-1929,1935,1931,-1955,1890,1893,1920,-1915,1893,1894,1935,1934,-1921,1888,1892,1912,1913,1907,-1907,1892,1963,1939,-1913,1964,1892,1845,-1873,1973,1889,1905,-1919,1955,1956,1963,-1965,1956,1955,1957,-1959,1958,1957,1971,-1973,1959,1960,1970,-1970,1960,1959,1961,-1963,1962,1961,1965,-1967,1966,1965,1974,-1974,1967,1968,1972,-1972,1968,1967,1969,-1971,1844,1854,1969,-1968,1873,1971,1957,-1859,1873,1844,1967,-1972,1858,1957,1955,-1878,1854,1884,1959,-1970,1959,1884,1863,-1962,1955,1964,1872,-1878,
- 1965,1961,1863,-1883,1974,1965,1882,1835,-1852,1940,1925,1958,-1973,1940,1972,1968,-1912,1925,1944,1956,-1959,1921,1970,1960,-1952,1960,1962,1930,-1952,1963,1956,1944,-1940,1962,1966,1949,-1931,1911,1968,1970,-1922,1966,1973,1918,1902,-1950,1963,1892,-1965,1973,1974,-1890,1978,1991,1993,-1989,1975,1990,-1990,1975,1989,1991,-1979,1976,1990,-1993,2016,1997,1998,-2018,1997,2016,2015,-2001,1983,1996,1995,-1986,2017,1998,2036,-2039,1982,2005,2006,-1985,2009,2002,-2029,1988,2031,2030,1979,1975,-1979,1996,1983,-1985,1990,1976,1977,-1990,1989,1977,-1992,1990,1975,1979,-1993,1994,1988,-1994,1996,2026,2025,-1996,1986,1987,2012,-2014,2020,2010,2011,-2022,2019,2012,2010,-2021,2021,2011,2037,2039,-2023,2000,2015,2014,-2000,2002,2008,2007,-2004,2001,2024,2023,-2005,2005,2028,2027,-2007,2008,1994,1993,-2008,2008,2002,-2010,1982,2032,-2042,2026,1996,1984,2006,-2028,2024,2001,2003,-2008,2012,2019,2018,-2014,2010,1981,1980,-2012,2012,1987,1981,-2011,2011,1980,2029,-2038,2015,1983,1985,-2015,2016,1984,1983,-2016,1984,2016,2017,-1983,1982,2017,2038,-2033,2019,2000,1999,-2019,2000,2019,2020,-1998,1997,2020,2021,-1999,1998,2021,-2023,2022,2039,-2041,1998,2022,2040,-2037,1982,2041,2035,2009,-2006,2024,1977,1976,-2024,1991,1977,2024,2007,-1994,2026,2001,2004,-2026,2001,2026,2027,-2004,2028,2002,2003,-2028,2009,2028,-2006,2030,2115,1992,-1980,2034,2031,1988,-1995,2035,2034,1994,2008,-2010,2033,2029,1980,1981,1987,-1987,2045,2055,2060,-2059,2042,2056,-2058,2042,2045,2058,-2057,2043,2059,-2058,2083,2084,2065,-2065,2064,2067,2082,-2084,2050,2052,2062,-2064,2084,2038,2036,-2066,2049,2051,2073,-2073,2076,2095,-2070,2055,2045,2042,2046,2030,-2032,2063,2051,-2051,2057,2056,2044,-2044,2056,2058,-2045,2057,2059,2046,-2043,2061,2060,-2056,2063,2062,2092,-2094,2053,2080,2079,-2055,2087,2088,2078,-2078,2086,2087,2077,-2080,2088,2089,2039,2037,-2079,2067,2066,2081,-2083,2069,2070,2074,-2076,2068,2071,2090,-2092,2072,2073,2094,-2096,2075,2074,2060,-2062,2075,2076,-2070,2049,2041,-2033,2093,2094,2073,2051,-2064,2091,2074,2070,-2069,2079,2080,2085,-2087,
- 2077,2078,2047,-2049,2079,2077,2048,-2055,2078,2037,2029,-2048,2082,2081,2052,-2051,2083,2082,2050,-2052,2051,2049,2084,-2084,2049,2032,2038,-2085,2086,2085,2066,-2068,2067,2064,2087,-2087,2064,2065,2088,-2088,2065,2089,-2089,2089,2040,-2040,2065,2036,2040,-2090,2049,2072,2076,2035,-2042,2091,2090,2043,-2045,2058,2060,2074,2091,-2045,2093,2092,2071,-2069,2068,2070,2094,-2094,2095,2094,2070,-2070,2076,2072,-2096,2031,2034,2061,-2056,2034,2035,2076,2075,-2062,2029,2033,2053,2054,2048,-2048,2033,2104,2080,-2054,2105,2033,1986,-2014,2114,2030,2046,-2060,2096,2097,2104,-2106,2097,2096,2098,-2100,2099,2098,2112,-2114,2100,2101,2111,-2111,2101,2100,2102,-2104,2103,2102,2106,-2108,2107,2106,2115,-2115,2108,2109,2113,-2113,2109,2108,2110,-2112,1985,1995,2110,-2109,2014,2112,2098,-2000,2014,1985,2108,-2113,1999,2098,2096,-2019,1995,2025,2100,-2111,2100,2025,2004,-2103,2096,2105,2013,-2019,2106,2102,2004,-2024,2115,2106,2023,1976,-1993,2081,2066,2099,-2114,2081,2113,2109,-2053,2066,2085,2097,-2100,2062,2111,2101,-2093,2101,2103,2071,-2093,2104,2097,2085,-2081,2103,2107,2090,-2072,2052,2109,2111,-2063,2107,2114,2059,2043,-2091,2104,2033,-2106,2114,2115,-2031,2119,2132,2134,-2130,2116,2131,-2131,2116,2130,2132,-2120,2117,2131,-2134,2157,2138,2139,-2159,2138,2157,2156,-2142,2124,2137,2136,-2127,2158,2139,2177,-2180,2123,2146,2147,-2126,2150,2143,-2170,2129,2172,2171,2120,2116,-2120,2137,2124,-2126,2131,2117,2118,-2131,2130,2118,-2133,2131,2116,2120,-2134,2135,2129,-2135,2137,2167,2166,-2137,2127,2128,2153,-2155,2161,2151,2152,-2163,2160,2153,2151,-2162,2162,2152,2178,2180,-2164,2141,2156,2155,-2141,2143,2149,2148,-2145,2142,2165,2164,-2146,2146,2169,2168,-2148,2149,2135,2134,-2149,2149,2143,-2151,2123,2173,-2183,2167,2137,2125,2147,-2169,2165,2142,2144,-2149,2153,2160,2159,-2155,2151,2122,2121,-2153,2153,2128,2122,-2152,2152,2121,2170,-2179,2156,2124,2126,-2156,2157,2125,2124,-2157,2125,2157,2158,-2124,2123,2158,2179,-2174,2160,2141,2140,-2160,2141,2160,2161,-2139,2138,2161,2162,-2140,2139,2162,-2164,2163,2180,-2182,2139,2163,2181,
- -2178,2123,2182,2176,2150,-2147,2165,2118,2117,-2165,2132,2118,2165,2148,-2135,2167,2142,2145,-2167,2142,2167,2168,-2145,2169,2143,2144,-2169,2150,2169,-2147,2171,2256,2133,-2121,2175,2172,2129,-2136,2176,2175,2135,2149,-2151,2174,2170,2121,2122,2128,-2128,2186,2196,2201,-2200,2183,2197,-2199,2183,2186,2199,-2198,2184,2200,-2199,2224,2225,2206,-2206,2205,2208,2223,-2225,2191,2193,2203,-2205,2225,2179,2177,-2207,2190,2192,2214,-2214,2217,2236,-2211,2196,2186,2183,2187,2171,-2173,2204,2192,-2192,2198,2197,2185,-2185,2197,2199,-2186,2198,2200,2187,-2184,2202,2201,-2197,2204,2203,2233,-2235,2194,2221,2220,-2196,2228,2229,2219,-2219,2227,2228,2218,-2221,2229,2230,2180,2178,-2220,2208,2207,2222,-2224,2210,2211,2215,-2217,2209,2212,2231,-2233,2213,2214,2235,-2237,2216,2215,2201,-2203,2216,2217,-2211,2190,2182,-2174,2234,2235,2214,2192,-2205,2232,2215,2211,-2210,2220,2221,2226,-2228,2218,2219,2188,-2190,2220,2218,2189,-2196,2219,2178,2170,-2189,2223,2222,2193,-2192,2224,2223,2191,-2193,2192,2190,2225,-2225,2190,2173,2179,-2226,2227,2226,2207,-2209,2208,2205,2228,-2228,2205,2206,2229,-2229,2206,2230,-2230,2230,2181,-2181,2206,2177,2181,-2231,2190,2213,2217,2176,-2183,2232,2231,2184,-2186,2199,2201,2215,2232,-2186,2234,2233,2212,-2210,2209,2211,2235,-2235,2236,2235,2211,-2211,2217,2213,-2237,2172,2175,2202,-2197,2175,2176,2217,2216,-2203,2170,2174,2194,2195,2189,-2189,2174,2245,2221,-2195,2246,2174,2127,-2155,2255,2171,2187,-2201,2237,2238,2245,-2247,2238,2237,2239,-2241,2240,2239,2253,-2255,2241,2242,2252,-2252,2242,2241,2243,-2245,2244,2243,2247,-2249,2248,2247,2256,-2256,2249,2250,2254,-2254,2250,2249,2251,-2253,2126,2136,2251,-2250,2155,2253,2239,-2141,2155,2126,2249,-2254,2140,2239,2237,-2160,2136,2166,2241,-2252,2241,2166,2145,-2244,2237,2246,2154,-2160,2247,2243,2145,-2165,2256,2247,2164,2117,-2134,2222,2207,2240,-2255,2222,2254,2250,-2194,2207,2226,2238,-2241,2203,2252,2242,-2234,2242,2244,2212,-2234,2245,2238,2226,-2222,2244,2248,2231,-2213,2193,2250,2252,-2204,2248,2255,2200,2184,-2232,2245,2174,-2247,2255,2256,-2172,
- 2275,2265,2266,-2277,2265,2275,2274,-2269,2276,2266,2287,-2290,2263,2264,2271,-2273,2279,2269,2270,-2281,2278,2271,2269,-2280,2280,2270,2288,-2282,2268,2274,2273,-2268,2271,2278,2277,-2273,2269,2258,2257,-2271,2271,2264,2258,-2270,2270,2257,2282,-2289,2273,2373,2286,-2268,2274,2322,2314,-2274,2275,2321,2322,-2275,2321,2275,2276,-2321,2320,2276,2289,-2320,2273,2314,2375,-2374,2278,2268,2267,-2278,2268,2278,2279,-2266,2265,2279,2280,-2267,2266,2280,-2282,2266,2281,-2288,2267,2286,2369,-2278,2369,2371,2272,-2278,2284,2282,2257,2258,2264,-2264,2308,2309,2299,-2299,2298,2301,2307,-2309,2309,2289,2287,-2300,2296,2305,2304,-2298,2312,2313,2303,-2303,2311,2312,2302,-2305,2313,2281,2288,-2304,2301,2300,2306,-2308,2306,2300,2286,-2373,2304,2305,2310,-2312,2302,2303,2290,-2292,2304,2302,2291,-2298,2303,2288,2282,-2291,2307,2306,2315,-2317,2308,2307,2316,-2318,2317,2318,2309,-2309,2318,2319,2289,-2310,2306,2372,2374,-2316,2300,2310,2368,-2287,2311,2310,2300,-2302,2301,2298,2312,-2312,2298,2299,2313,-2313,2281,2313,2299,-2288,2370,2368,2310,-2306,2282,2284,2296,2297,2291,-2291,2284,2370,2305,-2297,2261,2259,2283,2292,2294,2293,2295,2285,2262,-2261,2314,2262,2285,-2376,2315,2374,2285,-2296,2316,2315,2295,-2294,2317,2316,2293,-2295,2294,2292,2318,-2318,2292,2283,2319,-2319,2259,2320,2319,-2284,2261,2321,2320,-2260,2322,2321,2261,-2261,2314,2322,2260,-2263,2325,2326,2333,-2335,2337,2331,2332,-2339,2336,2333,2331,-2338,2338,2332,2344,2345,-2340,2333,2336,2335,-2335,2331,2324,2323,-2333,2333,2326,2324,-2332,2332,2323,2340,-2345,2336,2330,2329,-2336,2330,2336,2337,-2328,2327,2337,2338,-2329,2328,2338,-2340,2339,2345,-2347,2328,2339,2346,-2344,2329,2342,2367,-2336,2367,2365,2334,-2336,2341,2340,2323,2324,2326,-2326,2349,2358,2357,-2351,2361,2362,2356,-2356,2360,2361,2355,-2358,2362,2363,2345,2344,-2357,2357,2358,2359,-2361,2355,2356,2347,-2349,2357,2355,2348,-2351,2356,2344,2340,-2348,2353,2359,2366,-2343,2360,2359,2353,-2355,2354,2351,2361,-2361,2351,2352,2362,-2362,2352,2363,-2363,2363,2346,-2346,2352,2343,2346,-2364,2364,2366,2359,
- -2359,2340,2341,2349,2350,2348,-2348,2341,2364,2358,-2350,2327,2328,2343,2352,2351,2354,2353,2342,2329,-2331,2365,2341,2325,-2335,2364,2365,2367,-2367,2364,2341,-2366,2366,2367,-2343,2371,2284,2263,-2273,2369,2368,2370,-2372,2372,2373,2375,-2375,2368,2369,-2287,2370,2284,-2372,2372,2286,-2374,2374,2375,-2286,2394,2384,2385,-2396,2384,2394,2393,-2388,2395,2385,2405,-2408,2382,2383,2390,-2392,2398,2388,2389,-2400,2397,2390,2388,-2399,2399,2389,2406,-2409,2387,2393,2392,-2387,2390,2397,2396,-2392,2388,2377,2376,-2390,2390,2383,2377,-2389,2389,2376,2400,-2407,2392,2488,2404,-2387,2393,2442,2434,-2393,2394,2441,2442,-2394,2441,2394,2395,-2441,2440,2395,2407,-2440,2392,2434,2490,-2489,2397,2387,2386,-2397,2387,2397,2398,-2385,2384,2398,2399,-2386,2399,2408,-2410,2385,2399,2409,-2406,2396,2386,2404,-2487,2486,2484,2391,-2397,2402,2400,2376,2377,2383,-2383,2428,2429,2419,-2419,2418,2421,2427,-2429,2429,2407,2405,-2420,2416,2425,2424,-2418,2432,2433,2423,-2423,2431,2432,2422,-2425,2433,2408,2406,-2424,2421,2420,2426,-2428,2426,2420,2404,-2488,2424,2425,2430,-2432,2422,2423,2410,-2412,2424,2422,2411,-2418,2423,2406,2400,-2411,2427,2426,2435,-2437,2428,2427,2436,-2438,2437,2438,2429,-2429,2438,2439,2407,-2430,2426,2487,2489,-2436,2431,2430,2420,-2422,2421,2418,2432,-2432,2418,2419,2433,-2433,2419,2408,-2434,2419,2405,2409,-2409,2483,2485,2430,-2426,2400,2402,2416,2417,2411,-2411,2402,2483,2425,-2417,2430,2485,2404,-2421,2380,2378,2401,2412,2414,2413,2415,2403,2381,-2380,2434,2381,2403,-2491,2435,2489,2403,-2416,2436,2435,2415,-2414,2437,2436,2413,-2415,2414,2412,2438,-2438,2412,2401,2439,-2439,2378,2440,2439,-2402,2380,2441,2440,-2379,2442,2441,2380,-2380,2434,2442,2379,-2382,2445,2446,2453,-2455,2458,2451,2452,-2460,2457,2453,2451,-2459,2459,2452,2465,-2461,2453,2457,2456,-2455,2451,2444,2443,-2453,2453,2446,2444,-2452,2452,2443,2461,-2466,2456,2449,-2456,2457,2450,2449,-2457,2450,2457,2458,-2448,2447,2458,2459,-2449,2460,2464,2448,-2460,2455,2449,-2464,2455,2492,2454,-2457,2462,2461,2443,2444,2446,-2446,2468,2477,2476,-2470,
- 2481,2482,2475,-2475,2480,2481,2474,-2477,2482,2460,2465,-2476,2476,2477,2479,-2481,2474,2475,2466,-2468,2476,2474,2467,-2470,2475,2465,2461,-2467,2472,2479,2478,-2464,2480,2479,2472,-2474,2473,2470,2481,-2481,2470,2471,2482,-2482,2460,2482,2471,-2465,2491,2478,2479,-2478,2461,2462,2468,2469,2467,-2467,2462,2491,2477,-2469,2447,2448,2464,2471,2470,2473,2472,2463,2449,-2451,2484,2402,2382,-2392,2483,2484,2486,-2486,2487,2488,2490,-2490,2483,2402,-2485,2485,2486,-2405,2487,2404,-2489,2489,2490,-2404,2492,2462,2445,-2455,2491,2492,2455,-2479,2491,2462,-2493,2478,2455,-2464,2493,2501,2502,-2496,2494,2499,2500,-2494,2495,2497,2496,-2495,2497,2516,2515,-2497,2498,2506,2507,-2501,2499,2509,2510,-2499,2501,2507,2508,-2504,2503,2504,2505,-2503,2504,2517,2518,-2506,2506,2513,2514,-2509,2509,2515,2516,-2512,2511,2512,2513,-2511,2512,2518,2517,-2515,2500,2507,2501,-2494,2506,2498,2510,-2514,2518,2516,2497,-2506,2511,2516,2518,-2513,2495,2502,2505,-2498,2504,2503,2508,2514,-2518,2496,2515,2509,2499,-2495,2493,2495,-2495,2498,2500,-2500,2501,2503,-2503,2506,2508,-2508,2509,2511,-2511,2512,2514,-2514,1789,1788,1791,-2520,1781,1783,2520,1791,-1789,1804,2521,2523,2520,1783,-1803,2522,2521,1804,-1804,1790,1791,-2524,2530,2531,2529,-2529,2531,2527,2525,-2525,2526,2527,-2531,2530,2527,-2532,1322,1327,2533,-2533,1327,1668,2534,-2534,1668,1321,2535,-2535,1321,1831,2536,-2536,1831,1322,2532,-2537
- }
- Edges: *5043 {
- a: 54,100,2313,84,23,15,12,122,11,8,90,86,31,7,4,110,3,0,39,37,44,51,49,1579,16,20,24,28,5,40,13,147,21,120,29,108,32,55,38,42,50,151,1642,249,245,69,237,233,26,135,88,41,89,70,45,47,71,145,18,52,53,99,81,33,35,82,103,2,1,114,34,104,94,10,9,126,46,95,27,76,25,132,64,19,17,141,181,202,169,161,158,208,157,154,171,178,176,162,166,159,223,167,206,170,177,227,261,257,2308,1612,172,174,196,221,164,179,180,201,197,156,155,212,173,198,186,165,163,218,105,77,73,75,116,78,74,96,65,61,63,128,66,62,199,187,183,185,214,188,184,279,266,267,268,269,270,282,281,294,286,275,284,285,287,276,291,271,272,295,273,298,299,300,301,324,305,327,323,309,310,331,330,308,321,344,343,356,361,322,332,334,719,307,339,306,354,901,360,340,336,807,866,870,375,412,540,367,371,624,379,411,744,394,389,568,393,398,774,658,665,408,504,508,423,421,429,441,437,601,418,422,426,430,609,438,478,483,594,348,347,351,446,450,455,459,590,638,471,442,425,424,419,432,420,428,440,613,500,525,502,499,834,501,838,505,512,509,516,513,520,517,607,729,911,491,493,353,449,639,637,372,370,378,386,557,753,388,387,545,708,396,395,778,552,666,399,664,661,338,409,312,303,578,691,311,772,657,410,436,818,470,599,444,605,495,469,472,443,498,743,527,521,434,529,526,534,522,435,560,554,376,629,631,384,558,555,377,532,738,383,564,463,468,466,642,647,589,464,465,454,489,492,588,702,404,406,620,618,656,405,662,617,671,672,675,680,684,669,673,676,678,341,685,575,690,580,694,391,688,579,695,407,577,576,403,390,713,717,453,720,352,452,458,731,476,479,475,595,616,741,414,416,632,413,415,751,538,541,537,615,315,759,797,304,764,313,302,317,400,402,550,316,573,401,549,785,790,793,551,621,397,569,800,350,461,349,715,814,592,732,591,654,830,374,368,842,746,373,381,369,626,788,756,851,859,547,783,871,748,546,782,784,850,736,337,583,769,760,447,905,722,448,457,485,915,486,482,724,935,922,923,924,925,926,938,937,950,942,931,940,941,943,932,947,927,928,951,929,954,955,956,957,980,961,983,979,965,966,987,986,964,977,1000,999,1012,1017,978,988,990,1375,963,995,962,1010,1557,1016,996,
- 992,1463,1522,1526,1031,1068,1196,1023,1027,1280,1035,1067,1400,1050,1045,1224,1049,1054,1430,1314,1321,1064,1160,1164,1079,1077,1085,1097,1093,1257,1074,1078,1082,1086,1265,1094,1134,1139,1250,1004,1003,1007,1102,1106,1111,1115,1246,1294,1127,1098,1081,1080,1075,1088,1076,1084,1096,1269,1156,1181,1158,1155,1490,1157,1494,1161,1168,1165,1172,1169,1176,1173,1263,1385,1567,1147,1149,1009,1105,1295,1293,1028,1026,1034,1042,1213,1409,1044,1043,1201,1364,1052,1051,1434,1208,1322,1055,1320,1317,994,1065,968,959,1234,1347,967,1428,1313,1066,1092,1474,1126,1255,1100,1261,1151,1125,1128,1099,1154,1399,1183,1177,1090,1185,1182,1190,1178,1091,1216,1210,1032,1285,1287,1040,1214,1211,1033,1188,1394,1039,1220,1119,1124,1122,1298,1303,1245,1120,1121,1110,1145,1148,1244,1358,1060,1062,1276,1274,1312,1061,1318,1273,1327,1328,1331,1336,1340,1325,1329,1332,1334,997,1341,1231,1346,1236,1350,1047,1344,1235,1351,1063,1233,1232,1059,1046,1369,1373,1109,1376,1008,1108,1114,1387,1132,1135,1131,1251,1272,1397,1070,1072,1288,1069,1071,1407,1194,1197,1193,1271,971,1415,1453,960,1420,969,958,973,1056,1058,1206,972,1229,1057,1205,1441,1446,1449,1207,1277,1053,1225,1456,1006,1117,1005,1371,1470,1248,1388,1247,1310,1486,1030,1024,1498,1402,1029,1037,1025,1282,1444,1412,1507,1515,1203,1439,1527,1404,1202,1438,1440,1506,1392,993,1239,1425,1416,1103,1561,1378,1104,1113,1141,1571,1142,1138,1380,1686,1609,1578,1582,1586,1590,1594,1598,1602,1606,1610,1613,1617,1621,1625,1629,1633,1637,1581,1601,1597,1616,1608,1589,1605,1587,1585,1628,1593,1595,1632,1603,1620,1644,1648,1652,1656,1660,1664,1667,1672,1676,1680,1683,1688,1692,1696,1700,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1741,1742,1743,1744,1745,1746,1719,1748,1749,1750,1751,1752,1753,1754,1739,1756,1768,1766,1738,1740,1720,1718,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1841,1842,1843,1844,1845,1846,1819,1848,
- 1849,1850,1851,1852,1853,1854,1839,1856,1868,1866,1838,1840,1820,1818,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1941,1942,1943,1944,1945,1946,1949,1950,1951,1952,1953,1954,1939,1956,1970,1966,1938,1940,1918,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2047,2048,2049,2050,2051,2052,2025,2054,2055,2056,2057,2058,2059,2060,2045,2062,2074,2072,2044,2046,2026,2024,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2196,4988,2140,2141,2146,2147,2148,2149,2150,2151,2125,2153,2154,2155,2156,2157,2158,2159,2160,2161,2175,4992,2171,2180,2126,2124,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2243,2244,2245,2246,2247,2248,2221,2250,2251,2252,2253,2254,2255,2256,2241,2258,2270,2268,2240,2242,2222,2220,191,193,192,101,144,98,2321,2326,2362,2366,2370,2355,2325,2490,2435,2436,2339,2348,2359,2340,2354,2318,2419,2440,2379,2317,2345,2363,2319,2315,2328,2414,2372,2316,2320,2323,2327,2374,2521,2515,2377,2337,2338,2360,2457,2447,2329,2330,2336,2399,2499,2400,2505,2406,2403,2349,2407,2408,2347,2346,2402,2412,2401,2487,2418,2488,2428,2398,2473,2463,2382,2383,2437,2380,2433,2381,2384,2388,2754,2449,2335,2451,2331,2397,2334,2332,2344,2465,2387,2469,2385,2432,2390,2386,2395,2394,2477,2421,2492,2404,2405,2430,2501,2375,2410,2350,2376,2426,2409,2351,2444,2352,2532,2342,2392,2480,2343,2353,2518,2393,2522,2420,2527,2445,2461,2479,2483,2486,2537,2546,2581,2584,2587,2572,2540,2711,2656,2655,2556,2563,2577,2555,2573,2533,2639,2659,2600,2534,2566,2580,2539,2536,2544,2631,2592,2535,2538,2542,2545,2590,2733,2758,2594,2558,2557,2576,2674,2668,2550,2549,2551,2614,2720,2621,2722,2623,2618,2569,2622,2629,2564,2565,2619,2633,2620,2705,2634,2704,2647,2615,2690,2684,2597,2604,2654,2599,2650,2598,2603,2607,2748,
- 2666,2552,2672,2548,2616,2553,2547,2559,2682,2608,2686,2602,2651,2605,2601,2609,2610,2693,2637,2709,2625,2624,2645,2718,2596,2627,2568,2595,2640,2628,2567,2663,2575,2742,2561,2612,2696,2747,2751,2755,2514,2759,2760,2761,2762,2764,2765,2766,2768,2769,2770,2771,2772,2773,2774,2776,2777,2778,2780,2781,2782,2784,2785,2786,2787,2788,2790,2792,2794,2796,2798,2799,2801,2809,2812,2817,2826,2833,2835,2838,2841,2844,2846,2849,2857,2881,2886,2922,2926,2930,2915,2885,3050,2995,2996,2899,2908,2919,2900,2914,2878,2979,3000,2939,2877,2905,2923,2879,2875,2888,2974,2932,2876,2880,2883,2887,2934,3081,3075,2937,2897,2898,2920,3017,3007,2889,2890,2896,2959,3059,2960,3065,2966,2963,2909,2967,2968,2907,2906,2962,2972,2961,3047,2978,3048,2988,2958,3033,3023,2942,2943,2997,2940,2993,2941,2944,2948,3314,3009,2895,3011,2891,2957,2894,2892,2904,3025,2947,3029,2945,2992,2950,2946,2955,2954,3037,2981,3052,2964,2965,2990,3061,2935,2970,2910,2936,2986,2969,2911,3004,2912,3092,2902,2952,3040,2903,2913,3078,2953,3082,2980,3087,3005,3021,3039,3043,3046,3097,3106,3141,3144,3147,3132,3100,3271,3216,3215,3116,3123,3137,3115,3133,3093,3199,3219,3160,3094,3126,3140,3099,3096,3104,3191,3152,3095,3098,3102,3105,3150,3293,3318,3154,3118,3117,3136,3234,3228,3110,3109,3111,3174,3280,3181,3282,3183,3178,3129,3182,3189,3124,3125,3179,3193,3180,3265,3194,3264,3207,3175,3250,3244,3157,3164,3214,3159,3210,3158,3163,3167,3308,3226,3112,3232,3108,3176,3113,3107,3119,3242,3168,3246,3162,3211,3165,3161,3169,3170,3253,3197,3269,3185,3184,3205,3278,3156,3187,3128,3155,3200,3188,3127,3223,3135,3302,3121,3172,3256,3307,3311,3315,3074,3319,3320,3321,3322,3324,3325,3326,3328,3329,3330,3331,3332,3333,3334,3336,3337,3338,3340,3341,3342,3344,3345,3346,3347,3348,3350,3352,3354,3356,3358,3359,3361,3369,3372,3377,3386,3393,3395,3398,3401,3404,3406,3409,3417,3441,3446,3482,3486,3490,3475,3445,3610,3555,3556,3459,3468,3479,3460,3474,3438,3539,3560,3499,3437,3465,3483,3439,3435,3448,3534,3492,3436,3440,3443,3447,3494,3641,3635,3497,3457,3458,3480,3577,3567,3449,3450,3456,3519,3619,
- 3520,3625,3526,3523,3469,3527,3528,3467,3466,3522,3532,3521,3607,3538,3608,3548,3518,3593,3583,3502,3503,3557,3500,3553,3501,3504,3508,3874,3569,3455,3571,3451,3517,3454,3452,3464,3585,3507,3589,3505,3552,3510,3506,3515,3514,3597,3541,3612,3524,3525,3550,3621,3495,3530,3470,3496,3546,3529,3471,3564,3472,3652,3462,3512,3600,3463,3473,3638,3513,3642,3540,3647,3565,3581,3599,3603,3606,3657,3666,3701,3704,3707,3692,3660,3831,3776,3775,3676,3683,3697,3675,3693,3653,3759,3779,3720,3654,3686,3700,3659,3656,3664,3751,3712,3655,3658,3662,3665,3710,3853,3878,3714,3678,3677,3696,3794,3788,3670,3669,3671,3734,3840,3741,3842,3743,3738,3689,3742,3749,3684,3685,3739,3753,3740,3825,3754,3824,3767,3735,3810,3804,3717,3724,3774,3719,3770,3718,3723,3727,3868,3786,3672,3792,3668,3736,3673,3667,3679,3802,3728,3806,3722,3771,3725,3721,3729,3730,3813,3757,3829,3745,3744,3765,3838,3716,3747,3688,3715,3760,3748,3687,3783,3695,3862,3681,3732,3816,3867,3871,3875,3634,3879,3880,3881,3882,3884,3885,3886,3888,3889,3890,3891,3892,3893,3894,3896,3897,3898,3900,3901,3902,3904,3905,3906,3907,3908,3910,3912,3914,3916,3918,3919,3921,3929,3932,3937,3946,3953,3955,3958,3961,3964,3966,3969,3977,4031,4032,4205,4214,4213,4206,4036,4007,4239,4250,3995,3996,4002,4045,4026,4025,4077,4067,4010,4011,4033,4008,4029,4009,4012,4016,4090,4049,4001,4051,3997,4024,4000,3998,4006,4069,4015,4073,4013,4028,4018,4014,4022,4081,4040,4098,4212,4004,4020,4083,4005,4021,4093,4041,4061,4142,4141,4208,4209,4210,4207,4145,4114,4232,4226,4102,4101,4103,4132,4127,4128,4184,4178,4111,4118,4140,4113,4136,4112,4117,4121,4194,4152,4104,4158,4100,4129,4105,4099,4107,4171,4122,4180,4116,4137,4119,4115,4123,4149,4196,4211,4109,4125,4215,4064,4222,4154,4153,4230,4157,4160,4159,4236,4163,4057,4062,4243,4058,4047,4052,4048,4276,4277,4281,4255,4299,4295,4310,4289,4298,4288,4258,4259,4278,4256,4274,4257,4260,4264,4315,4290,4263,4294,4261,4273,4266,4262,4271,4270,4302,4285,4323,4309,4268,4305,4269,4318,4286,4304,4308,4348,4347,4351,4327,4369,4365,4360,4363,4370,4364,4324,4331,4346,4326,4342,
- 4325,4330,4334,4386,4357,4335,4366,4329,4343,4332,4328,4336,4337,4373,4355,4388,4379,4339,4376,4393,4407,4358,4312,4359,4311,4383,4314,4411,4413,4172,4087,4173,4086,4201,4421,4134,4043,4133,4044,4169,4220,4217,4089,4191,4168,4065,4425,4427,4429,4431,4481,4482,4659,4668,4667,4660,4486,4457,4693,4704,4445,4446,4452,4495,4476,4475,4527,4517,4460,4461,4483,4458,4479,4459,4462,4466,4541,4499,4451,4501,4447,4474,4450,4448,4456,4519,4465,4523,4463,4478,4468,4464,4472,4490,4549,4666,4454,4470,4531,4455,4471,4544,4491,4511,4530,4534,4593,4592,4662,4663,4664,4661,4596,4565,4686,4680,4553,4552,4554,4583,4578,4579,4631,4625,4562,4569,4591,4564,4587,4563,4568,4572,4644,4603,4555,4609,4551,4580,4556,4550,4558,4623,4573,4627,4567,4588,4570,4566,4574,4634,4600,4646,4665,4560,4576,4669,4514,4676,4605,4604,4684,4608,4611,4610,4690,4614,4507,4512,4697,4508,4497,4502,4498,4729,4730,4734,4709,4755,4751,4761,4745,4754,4744,4712,4713,4731,4710,4727,4711,4714,4718,4764,4742,4741,4717,4750,4715,4743,4726,4720,4716,4724,4738,4772,4757,4722,4756,4762,4723,4767,4739,4796,4795,4799,4776,4817,4813,4808,4811,4818,4812,4773,4780,4794,4775,4790,4774,4779,4783,4828,4805,4784,4814,4778,4806,4791,4781,4777,4785,4803,4830,4823,4787,4807,4651,4849,4642,4539,4656,4538,4585,4493,4584,4494,4620,4674,4671,4641,4540,4619,4515,4853,4855,4857,4859,4835,4873,4825,4763,4877,4879,4890,4889,4888,4887,4894,4893,4892,4891,4898,4897,4896,4895,4906,4905,4904,4903,4910,4909,4908,4907,4914,4913,4912,4911,4918,4917,4916,4915,4926,4925,4924,4923,4930,4929,4900,4927,4934,4933,4932,4931,4938,4937,4920,4935,4947,4949,4921,4919,4899,4901,2177,2172,4996,2145,2139,2170,2143,2144,2142,1920,1919,1968,1969,1948,1974,1975,1947,1990,1991,5013,5009,5018,5026,5024,56,5028,57,5032,58,5036,59,60,5097,5138,5122,5066,5058,5055,5160,5054,5051,5128,5124,5074,5050,5047,5148,5046,5043,5082,5080,5087,5094,5092,5059,5063,5067,5071,5048,5083,5056,5185,5064,5158,5072,5146,5075,5081,5085,5093,5189,5292,5288,5107,5280,5276,5069,5173,5126,5084,5127,5108,5088,5090,5109,5183,5061,5095,5096,5137,5119,
- 5076,5078,5120,5141,5045,5044,5152,5077,5142,5132,5053,5052,5164,5089,5133,5070,5114,5068,5170,5102,5062,5060,5179,5219,5240,5207,5199,5196,5246,5195,5192,5209,5216,5214,5200,5204,5197,5261,5205,5244,5208,5215,5265,5304,5300,7351,6655,5210,5212,5234,5259,5202,5217,5218,5239,5235,5194,5193,5250,5211,5236,5224,5203,5201,5256,5143,5115,5111,5113,5154,5116,5112,5134,5103,5099,5101,5166,5104,5100,5237,5225,5221,5223,5252,5226,5222,5322,5309,5310,5311,5312,5313,5325,5324,5337,5329,5318,5327,5328,5330,5319,5334,5314,5315,5338,5316,5341,5342,5343,5344,5367,5348,5370,5366,5352,5353,5374,5373,5351,5364,5387,5386,5399,5404,5365,5375,5377,5762,5350,5382,5349,5397,5944,5403,5383,5379,5850,5909,5913,5418,5455,5583,5410,5414,5667,5422,5454,5787,5437,5432,5611,5436,5441,5817,5701,5708,5451,5547,5551,5466,5464,5472,5484,5480,5644,5461,5465,5469,5473,5652,5481,5521,5526,5637,5391,5390,5394,5489,5493,5498,5502,5633,5681,5514,5485,5468,5467,5462,5475,5463,5471,5483,5656,5543,5568,5545,5542,5877,5544,5881,5548,5555,5552,5559,5556,5563,5560,5650,5772,5954,5534,5536,5396,5492,5682,5680,5415,5413,5421,5429,5600,5796,5431,5430,5588,5751,5439,5438,5821,5595,5709,5442,5707,5704,5381,5452,5355,5346,5621,5734,5354,5815,5700,5453,5479,5861,5513,5642,5487,5648,5538,5512,5515,5486,5541,5786,5570,5564,5477,5572,5569,5577,5565,5478,5603,5597,5419,5672,5674,5427,5601,5598,5420,5575,5781,5426,5607,5506,5511,5509,5685,5690,5632,5507,5508,5497,5532,5535,5631,5745,5447,5449,5663,5661,5699,5448,5705,5660,5714,5715,5718,5723,5727,5712,5716,5719,5721,5384,5728,5618,5733,5623,5737,5434,5731,5622,5738,5450,5620,5619,5446,5433,5756,5760,5496,5763,5395,5495,5501,5774,5519,5522,5518,5638,5659,5784,5457,5459,5675,5456,5458,5794,5581,5584,5580,5658,5358,5802,5840,5347,5807,5356,5345,5360,5443,5445,5593,5359,5616,5444,5592,5828,5833,5836,5594,5664,5440,5612,5843,5393,5504,5392,5758,5857,5635,5775,5634,5697,5873,5417,5411,5885,5789,5416,5424,5412,5669,5831,5799,5894,5902,5590,5826,5914,5791,5589,5825,5827,5893,5779,5380,5626,5812,5803,5490,5948,5765,5491,5500,5528,
- 5958,5529,5525,5767,5978,5965,5966,5967,5968,5969,5981,5980,5993,5985,5974,5983,5984,5986,5975,5990,5970,5971,5994,5972,5997,5998,5999,6000,6023,6004,6026,6022,6008,6009,6030,6029,6007,6020,6043,6042,6055,6060,6021,6031,6033,6418,6006,6038,6005,6053,6600,6059,6039,6035,6506,6565,6569,6074,6111,6239,6066,6070,6323,6078,6110,6443,6093,6088,6267,6092,6097,6473,6357,6364,6107,6203,6207,6122,6120,6128,6140,6136,6300,6117,6121,6125,6129,6308,6137,6177,6182,6293,6047,6046,6050,6145,6149,6154,6158,6289,6337,6170,6141,6124,6123,6118,6131,6119,6127,6139,6312,6199,6224,6201,6198,6533,6200,6537,6204,6211,6208,6215,6212,6219,6216,6306,6428,6610,6190,6192,6052,6148,6338,6336,6071,6069,6077,6085,6256,6452,6087,6086,6244,6407,6095,6094,6477,6251,6365,6098,6363,6360,6037,6108,6011,6002,6277,6390,6010,6471,6356,6109,6135,6517,6169,6298,6143,6304,6194,6168,6171,6142,6197,6442,6226,6220,6133,6228,6225,6233,6221,6134,6259,6253,6075,6328,6330,6083,6257,6254,6076,6231,6437,6082,6263,6162,6167,6165,6341,6346,6288,6163,6164,6153,6188,6191,6287,6401,6103,6105,6319,6317,6355,6104,6361,6316,6370,6371,6374,6379,6383,6368,6372,6375,6377,6040,6384,6274,6389,6279,6393,6090,6387,6278,6394,6106,6276,6275,6102,6089,6412,6416,6152,6419,6051,6151,6157,6430,6175,6178,6174,6294,6315,6440,6113,6115,6331,6112,6114,6450,6237,6240,6236,6314,6014,6458,6496,6003,6463,6012,6001,6016,6099,6101,6249,6015,6272,6100,6248,6484,6489,6492,6250,6320,6096,6268,6499,6049,6160,6048,6414,6513,6291,6431,6290,6353,6529,6073,6067,6541,6445,6072,6080,6068,6325,6487,6455,6550,6558,6246,6482,6570,6447,6245,6481,6483,6549,6435,6036,6282,6468,6459,6146,6604,6421,6147,6156,6184,6614,6185,6181,6423,6729,6652,6621,6625,6629,6633,6637,6641,6645,6649,6653,6656,6660,6664,6668,6672,6676,6680,6624,6644,6640,6659,6651,6632,6648,6630,6628,6671,6636,6638,6675,6646,6663,6687,6691,6695,6699,6703,6707,6710,6715,6719,6723,6726,6731,6735,6739,6743,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6784,6785,
- 6786,6787,6788,6789,6762,6791,6792,6793,6794,6795,6796,6797,6782,6799,6811,6809,6781,6783,6763,6761,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6884,6885,6886,6887,6888,6889,6862,6891,6892,6893,6894,6895,6896,6897,6882,6899,6911,6909,6881,6883,6863,6861,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6984,6985,6986,6987,6988,6989,6992,6993,6994,6995,6996,6997,6982,6999,7013,7009,6981,6983,6961,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7090,7091,7092,7093,7094,7095,7068,7097,7098,7099,7100,7101,7102,7103,7088,7105,7117,7115,7087,7089,7069,7067,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7239,10031,7183,7184,7189,7190,7191,7192,7193,7194,7168,7196,7197,7198,7199,7200,7201,7202,7203,7204,7218,10035,7214,7223,7169,7167,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7286,7287,7288,7289,7290,7291,7264,7293,7294,7295,7296,7297,7298,7299,7284,7301,7313,7311,7283,7285,7265,7263,5229,5231,5230,5182,5136,7364,7369,7405,7409,7413,7398,7368,7533,7478,7479,7382,7391,7402,7383,7397,7361,7462,7483,7422,7360,7388,7406,7362,7358,7371,7457,7415,7359,7363,7366,7370,7417,7564,7558,7420,7380,7381,7403,7500,7490,7372,7373,7379,7442,7542,7443,7548,7449,7446,7392,7450,7451,7390,7389,7445,7455,7444,7530,7461,7531,7471,7441,7516,7506,7425,7426,7480,7423,7476,7424,7427,7431,7797,7492,7378,7494,7374,7440,7377,7375,7387,7508,7430,7512,7428,7475,7433,7429,7438,7437,7520,7464,7535,7447,7448,7473,7544,7418,7453,7393,7419,7469,7452,7394,7487,7395,7575,7385,7435,7523,7386,7396,7561,7436,7565,7463,7570,7488,7504,7522,7526,7529,7580,7589,7624,7627,7630,7615,7583,7754,7699,7698,7599,7606,7620,7598,7616,7576,
- 7682,7702,7643,7577,7609,7623,7582,7579,7587,7674,7635,7578,7581,7585,7588,7633,7776,7801,7637,7601,7600,7619,7717,7711,7593,7592,7594,7657,7763,7664,7765,7666,7661,7612,7665,7672,7607,7608,7662,7676,7663,7748,7677,7747,7690,7658,7733,7727,7640,7647,7697,7642,7693,7641,7646,7650,7791,7709,7595,7715,7591,7659,7596,7590,7602,7725,7651,7729,7645,7694,7648,7644,7652,7653,7736,7680,7752,7668,7667,7688,7761,7639,7670,7611,7638,7683,7671,7610,7706,7618,7785,7604,7655,7739,7790,7794,7798,7557,7802,7803,7804,7805,7807,7808,7809,7811,7812,7813,7814,7815,7816,7817,7819,7820,7821,7823,7824,7825,7827,7828,7829,7830,7831,7833,7835,7837,7839,7841,7842,7844,7852,7855,7860,7869,7876,7878,7881,7884,7887,7889,7892,7900,7924,7929,7965,7969,7973,7958,7928,8093,8038,8039,7942,7951,7962,7943,7957,7921,8022,8043,7982,7920,7948,7966,7922,7918,7931,8017,7975,7919,7923,7926,7930,7977,8124,8118,7980,7940,7941,7963,8060,8050,7932,7933,7939,8002,8102,8003,8108,8009,8006,7952,8010,8011,7950,7949,8005,8015,8004,8090,8021,8091,8031,8001,8076,8066,7985,7986,8040,7983,8036,7984,7987,7991,8357,8052,7938,8054,7934,8000,7937,7935,7947,8068,7990,8072,7988,8035,7993,7989,7998,7997,8080,8024,8095,8007,8008,8033,8104,7978,8013,7953,7979,8029,8012,7954,8047,7955,8135,7945,7995,8083,7946,7956,8121,7996,8125,8023,8130,8048,8064,8082,8086,8089,8140,8149,8184,8187,8190,8175,8143,8314,8259,8258,8159,8166,8180,8158,8176,8136,8242,8262,8203,8137,8169,8183,8142,8139,8147,8234,8195,8138,8141,8145,8148,8193,8336,8361,8197,8161,8160,8179,8277,8271,8153,8152,8154,8217,8323,8224,8325,8226,8221,8172,8225,8232,8167,8168,8222,8236,8223,8308,8237,8307,8250,8218,8293,8287,8200,8207,8257,8202,8253,8201,8206,8210,8351,8269,8155,8275,8151,8219,8156,8150,8162,8285,8211,8289,8205,8254,8208,8204,8212,8213,8296,8240,8312,8228,8227,8248,8321,8199,8230,8171,8198,8243,8231,8170,8266,8178,8345,8164,8215,8299,8350,8354,8358,8117,8362,8363,8364,8365,8367,8368,8369,8371,8372,8373,8374,8375,8376,8377,8379,8380,8381,8383,8384,8385,8387,8388,8389,8390,8391,8393,8395,8397,8399,8401,8402,8404,
- 8412,8415,8420,8429,8436,8438,8441,8444,8447,8449,8452,8460,8484,8489,8525,8529,8533,8518,8488,8653,8598,8599,8502,8511,8522,8503,8517,8481,8582,8603,8542,8480,8508,8526,8482,8478,8491,8577,8535,8479,8483,8486,8490,8537,8684,8678,8540,8500,8501,8523,8620,8610,8492,8493,8499,8562,8662,8563,8668,8569,8566,8512,8570,8571,8510,8509,8565,8575,8564,8650,8581,8651,8591,8561,8636,8626,8545,8546,8600,8543,8596,8544,8547,8551,8917,8612,8498,8614,8494,8560,8497,8495,8507,8628,8550,8632,8548,8595,8553,8549,8558,8557,8640,8584,8655,8567,8568,8593,8664,8538,8573,8513,8539,8589,8572,8514,8607,8515,8695,8505,8555,8643,8506,8516,8681,8556,8685,8583,8690,8608,8624,8642,8646,8649,8700,8709,8744,8747,8750,8735,8703,8874,8819,8818,8719,8726,8740,8718,8736,8696,8802,8822,8763,8697,8729,8743,8702,8699,8707,8794,8755,8698,8701,8705,8708,8753,8896,8921,8757,8721,8720,8739,8837,8831,8713,8712,8714,8777,8883,8784,8885,8786,8781,8732,8785,8792,8727,8728,8782,8796,8783,8868,8797,8867,8810,8778,8853,8847,8760,8767,8817,8762,8813,8761,8766,8770,8911,8829,8715,8835,8711,8779,8716,8710,8722,8845,8771,8849,8765,8814,8768,8764,8772,8773,8856,8800,8872,8788,8787,8808,8881,8759,8790,8731,8758,8803,8791,8730,8826,8738,8905,8724,8775,8859,8910,8914,8918,8677,8922,8923,8924,8925,8927,8928,8929,8931,8932,8933,8934,8935,8936,8937,8939,8940,8941,8943,8944,8945,8947,8948,8949,8950,8951,8953,8955,8957,8959,8961,8962,8964,8972,8975,8980,8989,8996,8998,9001,9004,9007,9009,9012,9020,9074,9075,9248,9257,9256,9249,9079,9050,9282,9293,9038,9039,9045,9088,9069,9068,9120,9110,9053,9054,9076,9051,9072,9052,9055,9059,9133,9092,9044,9094,9040,9067,9043,9041,9049,9112,9058,9116,9056,9071,9061,9057,9065,9124,9083,9141,9255,9047,9063,9126,9048,9064,9136,9084,9104,9185,9184,9251,9252,9253,9250,9188,9157,9275,9269,9145,9144,9146,9175,9170,9171,9227,9221,9154,9161,9183,9156,9179,9155,9160,9164,9237,9195,9147,9201,9143,9172,9148,9142,9150,9214,9165,9223,9159,9180,9162,9158,9166,9192,9239,9254,9152,9168,9258,9107,9265,9197,9196,9273,9200,9203,9202,9279,9206,9100,9105,9286,9101,
- 9090,9095,9091,9319,9320,9324,9298,9342,9338,9353,9332,9341,9331,9301,9302,9321,9299,9317,9300,9303,9307,9358,9333,9306,9337,9304,9316,9309,9305,9314,9313,9345,9328,9366,9352,9311,9348,9312,9361,9329,9347,9351,9391,9390,9394,9370,9412,9408,9403,9406,9413,9407,9367,9374,9389,9369,9385,9368,9373,9377,9429,9400,9378,9409,9372,9386,9375,9371,9379,9380,9416,9398,9431,9422,9382,9419,9436,9450,9401,9355,9402,9354,9426,9357,9454,9456,9215,9130,9216,9129,9244,9464,9177,9086,9176,9087,9212,9263,9260,9132,9234,9211,9108,9468,9470,9472,9474,9524,9525,9702,9711,9710,9703,9529,9500,9736,9747,9488,9489,9495,9538,9519,9518,9570,9560,9503,9504,9526,9501,9522,9502,9505,9509,9584,9542,9494,9544,9490,9517,9493,9491,9499,9562,9508,9566,9506,9521,9511,9507,9515,9533,9592,9709,9497,9513,9574,9498,9514,9587,9534,9554,9573,9577,9636,9635,9705,9706,9707,9704,9639,9608,9729,9723,9596,9595,9597,9626,9621,9622,9674,9668,9605,9612,9634,9607,9630,9606,9611,9615,9687,9646,9598,9652,9594,9623,9599,9593,9601,9666,9616,9670,9610,9631,9613,9609,9617,9677,9643,9689,9708,9603,9619,9712,9557,9719,9648,9647,9727,9651,9654,9653,9733,9657,9550,9555,9740,9551,9540,9545,9541,9772,9773,9777,9752,9798,9794,9804,9788,9797,9787,9755,9756,9774,9753,9770,9754,9757,9761,9807,9785,9784,9760,9793,9758,9786,9769,9763,9759,9767,9781,9815,9800,9765,9799,9805,9766,9810,9782,9839,9838,9842,9819,9860,9856,9851,9854,9861,9855,9816,9823,9837,9818,9833,9817,9822,9826,9871,9848,9827,9857,9821,9849,9834,9824,9820,9828,9846,9873,9866,9830,9850,9694,9892,9685,9582,9699,9581,9628,9536,9627,9537,9663,9717,9714,9684,9583,9662,9558,9896,9898,9900,9902,9878,9916,9868,9806,9920,9922,9933,9932,9931,9930,9937,9936,9935,9934,9941,9940,9939,9938,9949,9948,9947,9946,9953,9952,9951,9950,9957,9956,9955,9954,9961,9960,9959,9958,9969,9968,9967,9966,9973,9972,9943,9970,9977,9976,9975,9974,9981,9980,9963,9978,9990,9992,9964,9962,9942,9944,7220,7215,10039,7188,7182,7213,7186,7187,7185,6963,6962,7011,7012,6991,7017,7018,6990,7033,7034,10056,10052,10061,10069,10067,5268,10071,5269,10075,5270,10079,
- 5271,5272
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *30258 {
- a: 0.759154140949249,0,0.650910794734955,0.758686006069183,0,0.651456594467163,0.657946169376373,0,0.753064870834351,0.689265251159668,0,0.724509060382843,0.815363585948944,0.000203978081117384,0.578949153423309,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.758686006069183,0,0.651456594467163,0.759154140949249,0,0.650910794734955,0.994202733039856,0,0.10752222687006,0.994028031826019,0,0.109125234186649,0.969971776008606,0,0.243217170238495,0.978252470493317,0,0.207417592406273,0.999115347862244,0,0.0420542545616627,0.999137580394745,0,0.0415232516825199,0.994028031826019,0,0.109125234186649,0.994202733039856,0,0.10752222687006,-0.998951613903046,0,-0.0457791276276112,-0.998975396156311,0,-0.0452568754553795,-0.999997854232788,0,0.00208742497488856,-1,0,0,-0.99386340379715,0,-0.110614366829395,-0.993709921836853,0,-0.111984871327877,-0.998975396156311,0,-0.0452568754553795,-0.998951613903046,0,-0.0457791276276112,-0.81542181968689,-0.000247725314693525,-0.578867197036743,-0.816261649131775,-9.87663297564723e-005,-0.577682435512543,-0.889524519443512,-0.00017465345445089,-0.456887513399124,-0.869719088077545,-0.000787791039329022,-0.493546485900879,-0.759114444255829,0,-0.65095728635788,-0.75870144367218,0,-0.651438474655151,-0.816261649131775,-9.87663297564723e-005,-0.577682435512543,-0.81542181968689,-0.000247725314693525,-0.578867197036743,0.570089161396027,0,0.821582734584808,0.570099830627441,0,0.821575522422791,0.657946169376373,0,0.753064870834351,0.648639142513275,0,0.761096179485321,0.758686006069183,0,0.651456594467163,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.816616237163544,0,0.577181100845337,0.758590221405029,0,0.651568055152893,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.889433443546295,0.000153677698108368,0.457064658403397,0.895704209804535,0,0.444650411605835,0.816616237163544,0,0.577181100845337,0.935212850570679,0,0.35408616065979,0.935240864753723,0,0.354012072086334,0.969971776008606,0,0.243217170238495,0.966658711433411,0,0.256068408489227,
- 0.994028031826019,0,0.109125234186649,0.999137580394745,0,0.0415232516825199,0.99914026260376,0,0.0414580591022968,0.994007647037506,0,0.109310179948807,0.999987840652466,0,-0.00493646692484617,0.999996483325958,0,-0.00265056546777487,0.999997854232788,0,-0.00205429131165147,0.999987781047821,0,-0.00493646645918489,0.0396941527724266,0.00832969509065151,0.999177157878876,6.43758326646093e-008,0.0199535880237818,0.99980092048645,-0.0396937429904938,0.00833149533718824,0.999177098274231,-0.0488838590681553,-0.0253781136125326,0.99848198890686,0.0488862432539463,-0.0253761485219002,0.99848198890686,0.600275993347168,0.798879623413086,0.0382102057337761,0.60027289390564,0.798881828784943,0.0382134728133678,0.59992641210556,0.799124956130981,0.0385715663433075,0.599926352500916,0.799124836921692,0.0385715626180172,0.599511086940765,0.798778533935547,0.0503923483192921,0.599509537220001,0.798778474330902,0.0504112578928471,0.60027289390564,0.798881828784943,0.0382134728133678,0.600275993347168,0.798879623413086,0.0382102057337761,-0.0030083388555795,0.999994993209839,-0.00106201460584998,-0.00295551400631666,0.999994874000549,-0.00120317237451673,0.0191818177700043,0.997993469238281,-0.0603417158126831,0.0191818196326494,0.997993469238281,-0.0603417158126831,0.490618050098419,0.798372268676758,0.349135607481003,0.490723878145218,0.798377394676209,0.348974913358688,0.500517010688782,0.798733294010162,0.333927661180496,0.500517010688782,0.798733353614807,0.333927661180496,0.46430504322052,0.799520015716553,0.381036043167114,0.463733941316605,0.799544274806976,0.381680279970169,0.490723878145218,0.798377394676209,0.348974913358688,0.490618050098419,0.798372268676758,0.349135607481003,0.000789075857028365,0.999999046325684,0.0011171946534887,-0.0197758488357067,0.999686717987061,0.0153420940041542,-0.0197758488357067,0.99968683719635,0.0153420958667994,0.000769792764913291,0.999999165534973,0.0011305334046483,0.895704209804535,0,0.444650411605835,0.889433443546295,0.000153677698108368,0.457064658403397,0.935240864753723,0,0.354012072086334,
- 0.935212850570679,0,0.35408616065979,-0.0235656425356865,0.998268902301788,0.053888201713562,-0.0235656425356865,0.998268902301788,0.053888201713562,-0.00295551400631666,0.999994874000549,-0.00120317237451673,-0.0030083388555795,0.999994993209839,-0.00106201460584998,0.254655420780182,-1.84579698725429e-006,-0.967031896114349,0.254655420780182,-1.84579698725429e-006,-0.967031896114349,0.25465539097786,-1.84579710094113e-006,-0.967031896114349,0.254655420780182,-1.84579698725429e-006,-0.967031896114349,0.254655420780182,-1.84579721462796e-006,-0.967031955718994,-0.502803504467011,0.864133954048157,-0.0214759390801191,-0.502803504467011,0.864133894443512,-0.0214759390801191,-0.502803504467011,0.864133894443512,-0.0214759390801191,-0.502803504467011,0.864133834838867,-0.0214759390801191,0.755447387695313,1.91258777704206e-006,-0.655209302902222,0.755447387695313,1.91258777704206e-006,-0.655209302902222,0.755447387695313,1.91258777704206e-006,-0.655209362506866,0.755447387695313,1.91258777704206e-006,-0.655209422111511,0.755447387695313,1.91258800441574e-006,-0.655209422111511,-0.68933779001236,0,-0.724440038204193,-0.658025860786438,0,-0.752995371818542,-0.75870144367218,0,-0.651438474655151,-0.759114444255829,0,-0.65095728635788,0.648639142513275,0,0.761096179485321,0.657946169376373,0,0.753064870834351,0.758686006069183,0,0.651456594467163,0.758590221405029,0,0.651568055152893,0.414095252752304,0.799433648586273,0.435236722230911,0.414095252752304,0.799433588981628,0.435236722230911,0.463733941316605,0.799544274806976,0.381680279970169,0.46430504322052,0.799520015716553,0.381036043167114,-0.978251516819,0,-0.207422360777855,-0.969927132129669,0,-0.243395552039146,-0.993709921836853,0,-0.111984871327877,-0.99386340379715,0,-0.110614366829395,0.966658711433411,0,0.256068408489227,0.969971776008606,0,0.243217170238495,0.994028031826019,0,0.109125234186649,0.994007647037506,0,0.109310179948807,0.597263216972351,0.798420548439026,0.0761664360761642,0.597263157367706,0.798420488834381,0.0761664286255836,0.599509537220001,0.798778474330902,0.0504112578928471,
- 0.599511086940765,0.798778533935547,0.0503923483192921,-0.452667474746704,0.0264094267040491,0.891288220882416,-0.452667504549026,0.0264094285666943,0.891288220882416,-0.452667504549026,0.0264094267040491,0.891288220882416,-0.452667504549026,0.0264094267040491,0.891288220882416,-0.452667474746704,0.0264094267040491,0.891288280487061,0.86971652507782,0.000650221132673323,0.493551164865494,0.889433443546295,0.000153677698108368,0.457064658403397,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.815363585948944,0.000203978081117384,0.578949153423309,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,1,0,0,0.999997854232788,0,-0.00205429131165147,0.999137580394745,0,0.0415232516825199,0.999115347862244,0,0.0420542545616627,0.999997854232788,0,-0.00205429131165147,0.999996483325958,0,-0.00265056546777487,0.99914026260376,0,0.0414580591022968,0.999137580394745,0,0.0415232516825199,0.254348993301392,0.00267156679183245,0.967108905315399,0.250149548053741,0.000927327026147395,0.968206703662872,0.115297220647335,-0.000711849774233997,0.993330717086792,0.158366367220879,-0.00208783848211169,0.987378180027008,0.345393031835556,0.00319315027445555,0.93845272064209,0.345483213663101,0.00119517056737095,0.938424170017242,0.250149548053741,0.000927327026147395,0.968206703662872,0.254348993301392,0.00267156679183245,0.967108905315399,-0.345316976308823,-0.00385646498762071,-0.938478171825409,-0.345575362443924,-0.00143645529169589,-0.938389897346497,-0.472301572561264,0.000197418499737978,-0.881437063217163,-0.434893041849136,0.000823090493213385,-0.900481760501862,-0.255008697509766,-0.00326249888166785,-0.966933310031891,-0.249930128455162,-0.00109870277810842,-0.968263208866119,-0.345575362443924,-0.00143645529169589,-0.938389897346497,-0.345316976308823,-0.00385646498762071,-0.938478171825409,0.0522259250283241,-0.000414038629969582,0.998635232448578,0.0522259250283241,-0.000414038600865752,0.998635232448578,0.0522259250283241,-0.000414038629969582,0.998635172843933,0.115297220647335,-0.000711849774233997,0.993330717086792,
- 0.100485645234585,-0.000218079920159653,0.994938492774963,0.250149548053741,0.000927327026147395,0.968206703662872,0.345483213663101,0.00119517056737095,0.938424170017242,0.343677878379822,0,0.939087688922882,0.25197970867157,0,0.967732608318329,0.570089161396027,0,0.821582734584808,0.483606815338135,0,0.87528532743454,0.472362458705902,-0.000163865712238476,0.881404459476471,0.570099830627441,0,0.821575522422791,0.200399607419968,0.799058616161346,0.566873252391815,0.200525417923927,0.799060523509979,0.566826105117798,0.234592095017433,0.79904693365097,0.553615987300873,0.234592109918594,0.799046874046326,0.553615927696228,0.148817151784897,0.79955130815506,0.581868648529053,0.148125618696213,0.799562215805054,0.582030057907104,0.200525417923927,0.799060523509979,0.566826105117798,0.200399607419968,0.799058616161346,0.566873252391815,0.0643410086631775,0.854068040847778,0.516166687011719,0.0643410086631775,0.854067981243134,0.516166627407074,0.0643410086631775,0.854067981243134,0.516166687011719,0.0643410161137581,0.854067981243134,0.516166746616364,0.994400680065155,0,-0.105675533413887,0.994400680065155,0,-0.105675533413887,0.99440062046051,0,-0.105675518512726,0.994400680065155,0,-0.105675540864468,0.994400680065155,0,-0.105675525963306,0.99440062046051,0,-0.105675518512726,0.0218806322664022,0.999669790267944,-0.0134730599820614,0.0218806341290474,0.999669849872589,-0.0134730599820614,0.000789075857028365,0.999999046325684,0.0011171946534887,0.000769792764913291,0.999999165534973,0.0011305334046483,-0.158378809690475,0.00251724408008158,-0.987375199794769,-0.1156897097826,0.000863461697008461,-0.993285059928894,-0.249930128455162,-0.00109870277810842,-0.968263208866119,-0.255008697509766,-0.00326249888166785,-0.966933310031891,0.100485645234585,-0.000218079920159653,0.994938492774963,0.115297220647335,-0.000711849774233997,0.993330717086792,0.250149548053741,0.000927327026147395,0.968206703662872,0.25197970867157,0,0.967732608318329,0.0974660292267799,0.799271821975708,0.593013405799866,0.0974660515785217,0.799271821975708,0.593013465404511,
- 0.148125618696213,0.799562215805054,0.582030057907104,0.148817151784897,0.79955130815506,0.581868648529053,-0.878212630748749,2.05987362278393e-006,0.478270441293716,-0.878212630748749,2.05987407753128e-006,0.478270441293716,-0.878212630748749,2.05987362278393e-006,0.478270441293716,-0.878212511539459,2.05987362278393e-006,0.478270381689072,-0.878212511539459,2.05987362278393e-006,0.478270381689072,0.434863179922104,-0.000684001948684454,0.900496304035187,0.472362458705902,-0.000163865712238476,0.881404459476471,0.345483213663101,0.00119517056737095,0.938424170017242,0.345393031835556,0.00319315027445555,0.93845272064209,0.472362458705902,-0.000163865712238476,0.881404459476471,0.483606815338135,0,0.87528532743454,0.343677878379822,0,0.939087688922882,0.345483213663101,0.00119517056737095,0.938424170017242,-0.448713958263397,0.798970103263855,-0.40037801861763,-0.414116472005844,0.799433410167694,-0.435216844081879,-0.414116472005844,0.799433469772339,-0.435216844081879,-0.447945773601532,0.79900187253952,-0.401174157857895,-0.48812597990036,0.800096154212952,-0.348681807518005,-0.448713958263397,0.798970103263855,-0.40037801861763,-0.447945773601532,0.79900187253952,-0.401174157857895,-0.489428043365479,0.80015903711319,-0.346707075834274,-0.540770828723907,0.798833131790161,-0.263500690460205,-0.48812597990036,0.800096154212952,-0.348681807518005,-0.489428043365479,0.80015903711319,-0.346707075834274,-0.540770828723907,0.798833191394806,-0.263500660657883,-0.594298362731934,0.800237596035004,-0.0801820382475853,-0.577790856361389,0.798598527908325,-0.168517023324966,-0.577790856361389,0.79859858751297,-0.168517023324966,-0.59387868642807,0.800281941890717,-0.0828061029314995,-0.600583374500275,0.799414038658142,-0.0153837455436587,-0.594298362731934,0.800237596035004,-0.0801820382475853,-0.59387868642807,0.800281941890717,-0.0828061029314995,-0.60058718919754,0.79944235086441,-0.0136770186945796,-0.59985476732254,0.799178540706635,0.0385739728808403,-0.600583374500275,0.799414038658142,-0.0153837455436587,-0.60058718919754,0.79944235086441,-0.0136770186945796,
- -0.59985476732254,0.79917848110199,0.0385739728808403,-0.151207700371742,0.799616396427155,-0.581162512302399,-0.0974688604474068,0.799269318580627,-0.59301632642746,-0.0974688604474068,0.799269378185272,-0.59301632642746,-0.150566264986992,0.799626529216766,-0.581314980983734,-0.220265209674835,0.799830853939056,-0.558349251747131,-0.151207700371742,0.799616396427155,-0.581162512302399,-0.150566264986992,0.799626529216766,-0.581314980983734,-0.221787810325623,0.799858331680298,-0.557706594467163,-0.283924788236618,0.799095690250397,-0.529936552047729,-0.220265209674835,0.799830853939056,-0.558349251747131,-0.221787810325623,0.799858331680298,-0.557706594467163,-0.28392481803894,0.799095690250397,-0.529936611652374,0.606252312660217,0.0345833748579025,-0.79451996088028,-0.00656323321163654,0.999411582946777,-0.0336655005812645,0.0203528981655836,0.99979156255722,-0.00158067210577428,0.628497779369354,0.0502710156142712,-0.776185154914856,-0.820586919784546,0.0615842305123806,-0.568194031715393,0.606252312660217,0.0345833748579025,-0.79451996088028,0.603010356426239,-0.0550462193787098,-0.795831859111786,-0.823173522949219,-0.0304333325475454,-0.566973626613617,0.606252312660217,0.0345833748579025,-0.79451996088028,0.628497779369354,0.0502710156142712,-0.776185154914856,0.628538012504578,-0.0529906637966633,-0.775971710681915,0.603010356426239,-0.0550462193787098,-0.795831859111786,0.606252312660217,0.0345833748579025,-0.79451996088028,-0.820586919784546,0.0615842305123806,-0.568194031715393,-0.00656323321163654,0.999411582946777,-0.0336655005812645,0.0203528981655836,0.99979156255722,-0.00158067210577428,0.854909956455231,0.0565808340907097,0.515681684017181,0.628497779369354,0.0502710156142712,-0.776185154914856,0.628538012504578,-0.0529906637966633,-0.775971710681915,0.854142665863037,-0.0817621946334839,0.513571202754974,0.0364652462303638,-0.999316990375519,-0.00597951747477055,0.854909956455231,0.0565808340907097,0.515681684017181,0.854142665863037,-0.0817621946334839,0.513571202754974,0.628538012504578,-0.0529906637966633,-0.775971710681915,
- 0.628497779369354,0.0502710156142712,-0.776185154914856,0.0034055367577821,-0.999571442604065,-0.0290737506002188,0.603010356426239,-0.0550462193787098,-0.795831859111786,0.628538012504578,-0.0529906637966633,-0.775971710681915,0.0364652462303638,-0.999316990375519,-0.00597951747477055,0.0034055367577821,-0.999571442604065,-0.0290737506002188,-0.823173522949219,-0.0304333325475454,-0.566973626613617,0.603010356426239,-0.0550462193787098,-0.795831859111786,0.0144410161301494,-0.999579012393951,0.0251652877777815,0.0301818493753672,-0.0350366681814194,0.998930156230927,-0.0106412367895246,-0.0446125343441963,0.99894767999649,-0.0298658404499292,-0.999376773834229,0.0188224725425243,0.997629642486572,-0.0687179043889046,-0.00357325770892203,0.0168511178344488,-0.999855637550354,-0.00217516906559467,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.0301818493753672,-0.0350366681814194,0.998930156230927,0.996993184089661,-0.0716235563158989,0.0295767411589623,0.995473384857178,0.0918530225753784,0.0244090426713228,0.0330563001334667,0.0353685840964317,0.998827457427979,-0.0298658404499292,-0.999376773834229,0.0188224725425243,-0.996958553791046,-0.0614243149757385,0.0479661040008068,-0.996948301792145,-0.0722116455435753,-0.0296590905636549,-0.0328542441129684,-0.999424576759338,-0.00843443442136049,0.97633820772171,-0.0980230867862701,-0.192757293581963,0.997629642486572,-0.0687179043889046,-0.00357325770892203,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.0168511178344488,-0.999855637550354,-0.00217516906559467,0.0262571461498737,-0.99439662694931,-0.102401718497276,0.5329230427742,-0.840552687644959,-0.0972838625311852,-0.0106412367895246,-0.0446125343441963,0.99894767999649,0.0301818493753672,-0.0350366681814194,0.998930156230927,0.0330563001334667,0.0353685840964317,0.998827457427979,0.0048032496124506,0.0392574518918991,0.999217569828033,-0.0102014513686299,0.0182118490338326,0.999782085418701,0.0144410161301494,-0.999579012393951,0.0251652877777815,0.996993184089661,-0.0716235563158989,0.0295767411589623,
- 0.0301818493753672,-0.0350366681814194,0.998930156230927,-0.0106412367895246,-0.0446125343441963,0.99894767999649,-0.996958553791046,-0.0614243149757385,0.0479661040008068,-0.0298658404499292,-0.999376773834229,0.0188224725425243,0.0330563001334667,0.0353685840964317,0.998827457427979,0.0190933663398027,0.999595522880554,0.0210742931813002,-0.000769669481087476,0.999983370304108,0.00572086405009031,0.0048032496124506,0.0392574518918991,0.999217569828033,-0.0289220884442329,0.99952632188797,-0.0105274403467774,-0.000769669481087476,0.999983370304108,0.00572086405009031,0.0190933663398027,0.999595522880554,0.0210742931813002,0.0244075059890747,0.999582707881927,-0.0154502624645829,-0.0213232729583979,0.999666631221771,-0.0145558640360832,0.0190933663398027,0.999595522880554,0.0210742931813002,0.995473384857178,0.0918530225753784,0.0244090426713228,0.995553731918335,0.0940746143460274,-0.00476733827963471,0.0244075059890747,0.999582707881927,-0.0154502624645829,-0.0102014513686299,0.0182118490338326,0.999782085418701,-0.999081611633301,0.0188044253736734,0.0385000854730606,-0.996958553791046,-0.0614243149757385,0.0479661040008068,-0.0106412367895246,-0.0446125343441963,0.99894767999649,-0.837037563323975,0.0478337481617928,-0.545050382614136,0.0895875990390778,0.971708178520203,-0.218534171581268,-0.0339565239846706,0.999407112598419,0.00569801917299628,-0.842403471469879,0.0717712491750717,-0.534045934677124,-0.648427486419678,-0.688948690891266,-0.323869645595551,-0.843977272510529,-0.0176866855472326,-0.536087393760681,-0.840863585472107,-0.0400076024234295,-0.539766311645508,-0.998622298240662,0.049166027456522,0.0183343216776848,-0.000769669481087476,0.999983370304108,0.00572086405009031,-0.0289220884442329,0.99952632188797,-0.0105274403467774,0.995473384857178,0.0918530225753784,0.0244090426713228,0.0190933663398027,0.999595522880554,0.0210742931813002,0.0330563001334667,0.0353685840964317,0.998827457427979,-0.0102014513686299,0.0182118490338326,0.999782085418701,-0.998622298240662,0.049166027456522,0.0183343216776848,
- -0.999081611633301,0.0188044253736734,0.0385000854730606,-0.0102014513686299,0.0182118490338326,0.999782085418701,0.0048032496124506,0.0392574518918991,0.999217569828033,-0.000769669481087476,0.999983370304108,0.00572086405009031,-0.998622298240662,0.049166027456522,0.0183343216776848,0.99264132976532,-0.0263180490583181,0.118197061121464,-0.0364536978304386,-0.894902169704437,0.444771081209183,0.0169052593410015,-0.999050796031952,0.0401468388736248,0.973348677158356,-0.0799417123198509,0.214945912361145,-0.0701709613204002,-0.922868072986603,0.378669589757919,-0.985091209411621,-0.0123763866722584,-0.171586632728577,-0.975549161434174,-0.0771908834576607,-0.205780148506165,-0.0250128600746393,-0.999228298664093,0.0302804242819548,0.3091159760952,0.771045625209808,0.556718945503235,0.47111377120018,0.879798293113709,-0.0632984265685081,0.99267578125,0.0789206847548485,0.091468058526516,0.973891377449036,0.0697051361203194,0.216047719120979,-0.0364536978304386,-0.894902169704437,0.444771081209183,-0.0701709613204002,-0.922868072986603,0.378669589757919,-0.0250128600746393,-0.999228298664093,0.0302804242819548,0.0169052593410015,-0.999050796031952,0.0401468388736248,0.016810042783618,0.999847829341888,0.00464749336242676,0.020372312515974,0.995864748954773,-0.0885349586606026,0.47111377120018,0.879798293113709,-0.0632984265685081,0.3091159760952,0.771045625209808,0.556718945503235,-0.0214168429374695,0.998493611812592,0.0505148768424988,-0.998384535312653,0.0567316152155399,0.0031624638941139,-0.438616037368774,0.739971101284027,0.509959697723389,-0.998384535312653,0.0567316152155399,0.0031624638941139,-0.752148509025574,0.061139140278101,0.656151413917542,-0.438616037368774,0.739971101284027,0.509959697723389,-0.00893950741738081,-0.987324714660645,-0.15846087038517,-0.854476988315582,-0.0401684567332268,0.517933905124664,-0.996892869472504,-0.0648788139224052,0.0446682833135128,-0.0201674364507198,-0.999668896198273,-0.0159762836992741,0.977884769439697,-0.14704467356205,0.148725122213364,0.986842513084412,-0.138646647334099,0.0831799730658531,
- 0.5329230427742,-0.840552687644959,-0.0972838625311852,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.00988350994884968,-0.972407519817352,-0.233079299330711,0.0122530497610569,-0.999831318855286,-0.0136815560981631,-0.0214168429374695,0.998493611812592,0.0505148768424988,-0.0177094675600529,0.887048959732056,0.461335599422455,-0.00298753357492387,0.980389058589935,0.197048872709274,0.0258546341210604,0.952914834022522,0.302133977413177,-0.726169764995575,0.085853137075901,-0.682133913040161,-0.752148509025574,0.061139140278101,0.656151413917542,-0.854476988315582,-0.0401684567332268,0.517933905124664,-0.996948301792145,-0.0722116455435753,-0.0296590905636549,-0.795111835002899,0.560425937175751,-0.231775492429733,-0.524855017662048,0.824919283390045,-0.209845900535584,-0.0218417290598154,0.999761462211609,0.000231169338803738,-0.975300073623657,0.0648752525448799,-0.211142316460609,-0.975300073623657,0.0648752525448799,-0.211142316460609,-0.973540782928467,0.0734512284398079,-0.216386690735817,-0.795111835002899,0.560425937175751,-0.231775492429733,0.99153459072113,-0.0295051895081997,0.126445457339287,0.200547710061073,-0.781011641025543,-0.591440141201019,0.020066749304533,-0.999631404876709,0.0182831957936287,0.90633225440979,-0.0806003287434578,0.414807617664337,0.190240159630775,-0.754755914211273,-0.627815425395966,-0.86552369594574,-0.0443532951176167,-0.498900324106216,-0.931203901767731,-0.0646863952279091,-0.358713001012802,-0.0189628954976797,-0.999818027019501,0.00210577808320522,0.796689629554749,0.0843877866864204,0.598468244075775,0.99153459072113,-0.0295051895081997,0.126445457339287,0.90633225440979,-0.0806003287434578,0.414807617664337,0.906553864479065,0.0647208318114281,0.417098790407181,0.200547710061073,-0.781011641025543,-0.591440141201019,0.190240159630775,-0.754755914211273,-0.627815425395966,-0.0189628954976797,-0.999818027019501,0.00210577808320522,0.020066749304533,-0.999631404876709,0.0182831957936287,-0.768163025379181,0.580117881298065,0.270903736352921,-0.191494911909103,0.822154939174652,0.536088585853577,
- -0.00973814446479082,0.999793767929077,0.0178216695785522,-0.776215314865112,0.465195834636688,0.425538122653961,-0.163828432559967,0.832472324371338,0.529292047023773,0.796689629554749,0.0843877866864204,0.598468244075775,0.906553864479065,0.0647208318114281,0.417098790407181,0.00818713288754225,0.999585807323456,0.0275886245071888,-0.776215314865112,0.465195834636688,0.425538122653961,-0.936859846115112,0.00236624199897051,-0.349697321653366,-0.97760272026062,0.20898862183094,0.0248362105339766,-0.768163025379181,0.580117881298065,0.270903736352921,0.880786418914795,-0.0232122074812651,0.472944438457489,-0.0373391583561897,-0.994604825973511,0.0967832431197166,-0.0137299122288823,-0.996861279010773,0.0779686644673347,0.817427635192871,-0.0957742556929588,0.568013608455658,-0.0733743980526924,-0.996557474136353,0.0385920144617558,-0.648427486419678,-0.688948690891266,-0.323869645595551,-0.840863585472107,-0.0400076024234295,-0.539766311645508,-0.0259829685091972,-0.99947315454483,0.0194502901285887,0.823390960693359,0.0674495846033096,0.563451707363129,0.891952872276306,0.054243441671133,0.448862701654434,0.880786418914795,-0.0232122074812651,0.472944438457489,0.817427635192871,-0.0957742556929588,0.568013608455658,-0.0259829685091972,-0.99947315454483,0.0194502901285887,-0.0321801379323006,-0.997342586517334,0.0653625056147575,-0.0733743980526924,-0.996557474136353,0.0385920144617558,0.00585672771558166,0.999812185764313,0.0184755083173513,-0.0339565239846706,0.999407112598419,0.00569801917299628,0.0895875990390778,0.971708178520203,-0.218534171581268,0.10507719963789,0.969290554523468,-0.222338974475861,0.00585672771558166,0.999812185764313,0.0184755083173513,0.823390960693359,0.0674495846033096,0.563451707363129,0.854909956455231,0.0565808340907097,0.515681684017181,0.0203528981655836,0.99979156255722,-0.00158067210577428,-0.0130642671138048,0.999907433986664,-0.00379578769207001,-0.924610733985901,0.041451595723629,-0.378651440143585,-0.776215314865112,0.465195834636688,0.425538122653961,-0.924610733985901,0.041451595723629,-0.378651440143585,
- -0.936859846115112,0.00236624199897051,-0.349697321653366,-0.776215314865112,0.465195834636688,0.425538122653961,-0.00233121844939888,-0.999304890632629,-0.0372063890099525,-0.914169371128082,-0.0668810456991196,-0.399776458740234,-0.648427486419678,-0.688948690891266,-0.323869645595551,-0.0733743980526924,-0.996557474136353,0.0385920144617558,-0.0321801379323006,-0.997342586517334,0.0653625056147575,-0.00233121844939888,-0.999304890632629,-0.0372063890099525,-0.0733743980526924,-0.996557474136353,0.0385920144617558,0.926047205924988,-0.0864082500338554,0.367382913827896,0.0535654798150063,-0.997032880783081,-0.055281937122345,-0.0373391583561897,-0.994604825973511,0.0967832431197166,0.880786418914795,-0.0232122074812651,0.472944438457489,0.930101931095123,0.0435832478106022,0.364706754684448,0.926047205924988,-0.0864082500338554,0.367382913827896,0.880786418914795,-0.0232122074812651,0.472944438457489,0.891952872276306,0.054243441671133,0.448862701654434,0.00818713288754225,0.999585807323456,0.0275886245071888,0.906553864479065,0.0647208318114281,0.417098790407181,0.930101931095123,0.0435832478106022,0.364706754684448,0.036428265273571,0.999236047267914,-0.0141538726165891,-0.776215314865112,0.465195834636688,0.425538122653961,-0.00973814446479082,0.999793767929077,0.0178216695785522,-0.0130642671138048,0.999907433986664,-0.00379578769207001,-0.768163025379181,0.580117881298065,0.270903736352921,-0.97760272026062,0.20898862183094,0.0248362105339766,-0.966851532459259,0.00388476368971169,-0.255309671163559,-0.244624808430672,0.42913630604744,-0.869483113288879,-0.00695477984845638,-0.997832298278809,-0.0654399991035461,-0.967290937900543,-0.0685370191931725,-0.244235381484032,-0.86552369594574,-0.0443532951176167,-0.498900324106216,0.190240159630775,-0.754755914211273,-0.627815425395966,0.0388181991875172,-0.997518539428711,-0.0587352961301804,-0.00695477984845638,-0.997832298278809,-0.0654399991035461,0.190240159630775,-0.754755914211273,-0.627815425395966,0.200547710061073,-0.781011641025543,-0.591440141201019,0.978804707527161,-0.0700532644987106,0.19244185090065,
- 0.0388181991875172,-0.997518539428711,-0.0587352961301804,0.200547710061073,-0.781011641025543,-0.591440141201019,0.99153459072113,-0.0295051895081997,0.126445457339287,0.981793701648712,0.0687234029173851,0.177082598209381,0.978804707527161,-0.0700532644987106,0.19244185090065,0.99153459072113,-0.0295051895081997,0.126445457339287,0.796689629554749,0.0843877866864204,0.598468244075775,0.019252659752965,0.999760925769806,-0.0103698428720236,0.981793701648712,0.0687234029173851,0.177082598209381,0.796689629554749,0.0843877866864204,0.598468244075775,-0.163828432559967,0.832472324371338,0.529292047023773,-0.244624808430672,0.42913630604744,-0.869483113288879,0.000403111480409279,0.999889433383942,-0.0148668047040701,-0.191494911909103,0.822154939174652,0.536088585853577,-0.768163025379181,0.580117881298065,0.270903736352921,-0.244624808430672,0.42913630604744,-0.869483113288879,-0.971169590950012,0.0420552343130112,-0.234650760889053,-0.0183185711503029,0.999664008617401,-0.018340989947319,-0.244624808430672,0.42913630604744,-0.869483113288879,-0.966851532459259,0.00388476368971169,-0.255309671163559,-0.971169590950012,0.0420552343130112,-0.234650760889053,0.3091159760952,0.771045625209808,0.556718945503235,0.973891377449036,0.0697051361203194,0.216047719120979,0.016810042783618,0.999847829341888,0.00464749336242676,-0.0183185711503029,0.999664008617401,-0.018340989947319,0.000403111480409279,0.999889433383942,-0.0148668047040701,-0.244624808430672,0.42913630604744,-0.869483113288879,-0.996351659297943,0.0577795244753361,-0.062810130417347,-0.0198921747505665,0.99972140789032,-0.0127036552876234,-0.524855017662048,0.824919283390045,-0.209845900535584,-0.795111835002899,0.560425937175751,-0.231775492429733,-0.973540782928467,0.0734512284398079,-0.216386690735817,-0.996351659297943,0.0577795244753361,-0.062810130417347,-0.795111835002899,0.560425937175751,-0.231775492429733,-0.0201674364507198,-0.999668896198273,-0.0159762836992741,-0.996892869472504,-0.0648788139224052,0.0446682833135128,-0.994687438011169,-0.0619825609028339,-0.0821899324655533,
- -0.0211259741336107,-0.999310433864594,-0.0305361244827509,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.0122530497610569,-0.999831318855286,-0.0136815560981631,0.018289452418685,-0.999616026878357,-0.0208172276616097,0.018289452418685,-0.999616026878357,-0.0208172276616097,0.996809720993042,-0.0712421908974648,0.0359867177903652,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.421856969594955,0.800773143768311,-0.425204694271088,0.99594646692276,0.0817207023501396,0.037582129240036,0.99267578125,0.0789206847548485,0.091468058526516,0.47111377120018,0.879798293113709,-0.0632984265685081,0.0287334267050028,0.999569654464722,-0.00589188886806369,0.99594646692276,0.0817207023501396,0.037582129240036,0.421856969594955,0.800773143768311,-0.425204694271088,0.0287334267050028,0.999569654464722,-0.00589188886806369,0.421856969594955,0.800773143768311,-0.425204694271088,0.47111377120018,0.879798293113709,-0.0632984265685081,0.020372312515974,0.995864748954773,-0.0885349586606026,-0.0328542441129684,-0.999424576759338,-0.00843443442136049,-0.996948301792145,-0.0722116455435753,-0.0296590905636549,-0.854476988315582,-0.0401684567332268,0.517933905124664,-0.00893950741738081,-0.987324714660645,-0.15846087038517,0.986842513084412,-0.138646647334099,0.0831799730658531,0.97633820772171,-0.0980230867862701,-0.192757293581963,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.0262571461498737,-0.99439662694931,-0.102401718497276,0.00988350994884968,-0.972407519817352,-0.233079299330711,-0.425937622785568,0.605900168418884,-0.671909332275391,-0.00772294821217656,0.997067034244537,-0.0761429145932198,-0.0177094675600529,0.887048959732056,0.461335599422455,-0.438616037368774,0.739971101284027,0.509959697723389,-0.0213232729583979,0.999666631221771,-0.0145558640360832,-0.997032463550568,0.0769813060760498,-0.000377013609977439,-0.998622298240662,0.049166027456522,0.0183343216776848,-0.0289220884442329,0.99952632188797,-0.0105274403467774,-0.997032463550568,0.0769813060760498,-0.000377013609977439,
- -0.996948301792145,-0.0722116455435753,-0.0296590905636549,-0.996958553791046,-0.0614243149757385,0.0479661040008068,-0.999081611633301,0.0188044253736734,0.0385000854730606,-0.998622298240662,0.049166027456522,0.0183343216776848,0.10507719963789,0.969290554523468,-0.222338974475861,0.036428265273571,0.999236047267914,-0.0141538726165891,0.0189131069928408,0.985829830169678,-0.166679084300995,-0.913424372673035,0.055319756269455,-0.403231680393219,0.0055198697373271,0.998355567455292,-0.0570596717298031,0.0895875990390778,0.971708178520203,-0.218534171581268,-0.837037563323975,0.0478337481617928,-0.545050382614136,-0.914169371128082,-0.0668810456991196,-0.399776458740234,-0.843977272510529,-0.0176866855472326,-0.536087393760681,-0.648427486419678,-0.688948690891266,-0.323869645595551,-0.97760272026062,0.20898862183094,0.0248362105339766,-0.936859846115112,0.00236624199897051,-0.349697321653366,-0.931203901767731,-0.0646863952279091,-0.358713001012802,-0.86552369594574,-0.0443532951176167,-0.498900324106216,-0.966851532459259,0.00388476368971169,-0.255309671163559,-0.97760272026062,0.20898862183094,0.0248362105339766,-0.86552369594574,-0.0443532951176167,-0.498900324106216,-0.967290937900543,-0.0685370191931725,-0.244235381484032,-0.191494911909103,0.822154939174652,0.536088585853577,0.000403111480409279,0.999889433383942,-0.0148668047040701,0.019252659752965,0.999760925769806,-0.0103698428720236,-0.163828432559967,0.832472324371338,0.529292047023773,-0.00973814446479082,0.999793767929077,0.0178216695785522,-0.191494911909103,0.822154939174652,0.536088585853577,-0.163828432559967,0.832472324371338,0.529292047023773,0.00818713288754225,0.999585807323456,0.0275886245071888,-0.524855017662048,0.824919283390045,-0.209845900535584,-0.0198921747505665,0.99972140789032,-0.0127036552876234,0.0123236551880836,0.995004892349243,-0.0990620404481888,0.0306186340749264,0.998460590839386,0.0462478622794151,0.995108604431152,0.0864510610699654,0.0478016585111618,0.99594646692276,0.0817207023501396,0.037582129240036,0.0287334267050028,0.999569654464722,-0.00589188886806369,
- 0.996809720993042,-0.0712421908974648,0.0359867177903652,0.977884769439697,-0.14704467356205,0.148725122213364,0.5329230427742,-0.840552687644959,-0.0972838625311852,0.99267578125,0.0789206847548485,0.091468058526516,0.99264132976532,-0.0263180490583181,0.118197061121464,0.973348677158356,-0.0799417123198509,0.214945912361145,0.973891377449036,0.0697051361203194,0.216047719120979,0.016810042783618,0.999847829341888,0.00464749336242676,0.973891377449036,0.0697051361203194,0.216047719120979,0.981793701648712,0.0687234029173851,0.177082598209381,0.019252659752965,0.999760925769806,-0.0103698428720236,0.0123236551880836,0.995004892349243,-0.0990620404481888,-0.0218417290598154,0.999761462211609,0.000231169338803738,-0.524855017662048,0.824919283390045,-0.209845900535584,0.00585672771558166,0.999812185764313,0.0184755083173513,0.10507719963789,0.969290554523468,-0.222338974475861,0.0189131069928408,0.985829830169678,-0.166679084300995,0.0189131069928408,0.985829830169678,-0.166679084300995,0.79633641242981,0.540297389030457,0.271895170211792,0.823390960693359,0.0674495846033096,0.563451707363129,0.00585672771558166,0.999812185764313,0.0184755083173513,0.79633641242981,0.540297389030457,0.271895170211792,0.891952872276306,0.054243441671133,0.448862701654434,0.823390960693359,0.0674495846033096,0.563451707363129,0.930101931095123,0.0435832478106022,0.364706754684448,0.891952872276306,0.054243441671133,0.448862701654434,0.79633641242981,0.540297389030457,0.271895170211792,0.036428265273571,0.999236047267914,-0.0141538726165891,0.930101931095123,0.0435832478106022,0.364706754684448,0.79633641242981,0.540297389030457,0.271895170211792,0.0189131069928408,0.985829830169678,-0.166679084300995,0.10507719963789,0.969290554523468,-0.222338974475861,0.0895875990390778,0.971708178520203,-0.218534171581268,0.0055198697373271,0.998355567455292,-0.0570596717298031,0.036428265273571,0.999236047267914,-0.0141538726165891,-0.00298753357492387,0.980389058589935,0.197048872709274,0.0159827712923288,0.997206807136536,-0.0729610547423363,0.355769604444504,0.926517963409424,0.122443996369839,
- 0.0258546341210604,0.952914834022522,0.302133977413177,-0.00298753357492387,0.980389058589935,0.197048872709274,0.355769604444504,0.926517963409424,0.122443996369839,0.0306186340749264,0.998460590839386,0.0462478622794151,0.0258546341210604,0.952914834022522,0.302133977413177,0.355769604444504,0.926517963409424,0.122443996369839,0.355769604444504,0.926517963409424,0.122443996369839,0.630444824695587,0.775045216083527,0.0429453141987324,0.995108604431152,0.0864510610699654,0.0478016585111618,0.0306186340749264,0.998460590839386,0.0462478622794151,0.98552930355072,0.00865541584789753,0.16928419470787,0.995108604431152,0.0864510610699654,0.0478016585111618,0.630444824695587,0.775045216083527,0.0429453141987324,0.630444824695587,0.775045216083527,0.0429453141987324,0.99653834104538,-0.0633815005421638,0.0537966936826706,0.98552930355072,0.00865541584789753,0.16928419470787,0.630444824695587,0.775045216083527,0.0429453141987324,0.980964481830597,0.0208932179957628,-0.193059548735619,0.99653834104538,-0.0633815005421638,0.0537966936826706,0.995553731918335,0.0940746143460274,-0.00476733827963471,0.980964481830597,0.0208932179957628,-0.193059548735619,0.630444824695587,0.775045216083527,0.0429453141987324,0.0244075059890747,0.999582707881927,-0.0154502624645829,0.995553731918335,0.0940746143460274,-0.00476733827963471,0.630444824695587,0.775045216083527,0.0429453141987324,0.355769604444504,0.926517963409424,0.122443996369839,0.0159827712923288,0.997206807136536,-0.0729610547423363,0.0244075059890747,0.999582707881927,-0.0154502624645829,0.355769604444504,0.926517963409424,0.122443996369839,-0.0213232729583979,0.999666631221771,-0.0145558640360832,-0.00772294821217656,0.997067034244537,-0.0761429145932198,-0.425937622785568,0.605900168418884,-0.671909332275391,-0.425937622785568,0.605900168418884,-0.671909332275391,-0.997032463550568,0.0769813060760498,-0.000377013609977439,-0.0213232729583979,0.999666631221771,-0.0145558640360832,-0.425937622785568,0.605900168418884,-0.671909332275391,-0.726169764995575,0.085853137075901,-0.682133913040161,
- -0.997032463550568,0.0769813060760498,-0.000377013609977439,-0.438616037368774,0.739971101284027,0.509959697723389,-0.752148509025574,0.061139140278101,0.656151413917542,-0.726169764995575,0.085853137075901,-0.682133913040161,-0.425937622785568,0.605900168418884,-0.671909332275391,-0.0177094675600529,0.887048959732056,0.461335599422455,-0.00772294821217656,0.997067034244537,-0.0761429145932198,0.0159827712923288,0.997206807136536,-0.0729610547423363,-0.00298753357492387,0.980389058589935,0.197048872709274,-0.438616037368774,0.739971101284027,0.509959697723389,-0.0177094675600529,0.887048959732056,0.461335599422455,-0.0214168429374695,0.998493611812592,0.0505148768424988,-0.998384535312653,0.0567316152155399,0.0031624638941139,-0.996892869472504,-0.0648788139224052,0.0446682833135128,-0.854476988315582,-0.0401684567332268,0.517933905124664,-0.752148509025574,0.061139140278101,0.656151413917542,-0.840863585472107,-0.0400076024234295,-0.539766311645508,-0.843977272510529,-0.0176866855472326,-0.536087393760681,-0.837037563323975,0.0478337481617928,-0.545050382614136,-0.842403471469879,0.0717712491750717,-0.534045934677124,-0.0259829685091972,-0.99947315454483,0.0194502901285887,-0.840863585472107,-0.0400076024234295,-0.539766311645508,-0.823173522949219,-0.0304333325475454,-0.566973626613617,0.0034055367577821,-0.999571442604065,-0.0290737506002188,-0.0373391583561897,-0.994604825973511,0.0967832431197166,-0.0321801379323006,-0.997342586517334,0.0653625056147575,-0.0259829685091972,-0.99947315454483,0.0194502901285887,-0.0137299122288823,-0.996861279010773,0.0779686644673347,0.0535654798150063,-0.997032880783081,-0.055281937122345,-0.00233121844939888,-0.999304890632629,-0.0372063890099525,-0.0321801379323006,-0.997342586517334,0.0653625056147575,-0.0373391583561897,-0.994604825973511,0.0967832431197166,-0.0189628954976797,-0.999818027019501,0.00210577808320522,-0.931203901767731,-0.0646863952279091,-0.358713001012802,-0.914169371128082,-0.0668810456991196,-0.399776458740234,-0.00233121844939888,-0.999304890632629,-0.0372063890099525,
- -0.914169371128082,-0.0668810456991196,-0.399776458740234,-0.913424372673035,0.055319756269455,-0.403231680393219,-0.837037563323975,0.0478337481617928,-0.545050382614136,-0.843977272510529,-0.0176866855472326,-0.536087393760681,0.016810042783618,0.999847829341888,0.00464749336242676,-0.0218417290598154,0.999761462211609,0.000231169338803738,0.0123236551880836,0.995004892349243,-0.0990620404481888,0.020372312515974,0.995864748954773,-0.0885349586606026,-0.975300073623657,0.0648752525448799,-0.211142316460609,-0.0218417290598154,0.999761462211609,0.000231169338803738,-0.0183185711503029,0.999664008617401,-0.018340989947319,-0.971169590950012,0.0420552343130112,-0.234650760889053,-0.985091209411621,-0.0123763866722584,-0.171586632728577,-0.973540782928467,0.0734512284398079,-0.216386690735817,-0.975300073623657,0.0648752525448799,-0.211142316460609,-0.975549161434174,-0.0771908834576607,-0.205780148506165,-0.996351659297943,0.0577795244753361,-0.062810130417347,-0.994687438011169,-0.0619825609028339,-0.0821899324655533,-0.996892869472504,-0.0648788139224052,0.0446682833135128,-0.998384535312653,0.0567316152155399,0.0031624638941139,-0.998384535312653,0.0567316152155399,0.0031624638941139,-0.0214168429374695,0.998493611812592,0.0505148768424988,-0.0198921747505665,0.99972140789032,-0.0127036552876234,-0.996351659297943,0.0577795244753361,-0.062810130417347,0.0306186340749264,0.998460590839386,0.0462478622794151,-0.0214168429374695,0.998493611812592,0.0505148768424988,0.0258546341210604,0.952914834022522,0.302133977413177,0.996993184089661,-0.0716235563158989,0.0295767411589623,0.997629642486572,-0.0687179043889046,-0.00357325770892203,0.995553731918335,0.0940746143460274,-0.00476733827963471,0.995473384857178,0.0918530225753784,0.0244090426713228,0.996993184089661,-0.0716235563158989,0.0295767411589623,0.0144410161301494,-0.999579012393951,0.0251652877777815,0.0168511178344488,-0.999855637550354,-0.00217516906559467,0.997629642486572,-0.0687179043889046,-0.00357325770892203,0.0144410161301494,-0.999579012393951,0.0251652877777815,
- -0.0298658404499292,-0.999376773834229,0.0188224725425243,-0.0328542441129684,-0.999424576759338,-0.00843443442136049,0.0168511178344488,-0.999855637550354,-0.00217516906559467,0.00988350994884968,-0.972407519817352,-0.233079299330711,0.0262571461498737,-0.99439662694931,-0.102401718497276,-0.0328542441129684,-0.999424576759338,-0.00843443442136049,-0.00893950741738081,-0.987324714660645,-0.15846087038517,0.0122530497610569,-0.999831318855286,-0.0136815560981631,0.00988350994884968,-0.972407519817352,-0.233079299330711,-0.00893950741738081,-0.987324714660645,-0.15846087038517,-0.0201674364507198,-0.999668896198273,-0.0159762836992741,0.018289452418685,-0.999616026878357,-0.0208172276616097,0.0122530497610569,-0.999831318855286,-0.0136815560981631,-0.0201674364507198,-0.999668896198273,-0.0159762836992741,-0.0211259741336107,-0.999310433864594,-0.0305361244827509,0.02043816447258,-0.999308109283447,-0.0310743488371372,0.02043816447258,-0.999308109283447,-0.0310743488371372,0.995507299900055,-0.0830258503556252,0.0455199554562569,0.996809720993042,-0.0712421908974648,0.0359867177903652,0.018289452418685,-0.999616026878357,-0.0208172276616097,0.996809720993042,-0.0712421908974648,0.0359867177903652,0.995108604431152,0.0864510610699654,0.0478016585111618,0.98552930355072,0.00865541584789753,0.16928419470787,0.977884769439697,-0.14704467356205,0.148725122213364,0.98552930355072,0.00865541584789753,0.16928419470787,0.99653834104538,-0.0633815005421638,0.0537966936826706,0.986842513084412,-0.138646647334099,0.0831799730658531,0.977884769439697,-0.14704467356205,0.148725122213364,0.99653834104538,-0.0633815005421638,0.0537966936826706,0.980964481830597,0.0208932179957628,-0.193059548735619,0.97633820772171,-0.0980230867862701,-0.192757293581963,0.986842513084412,-0.138646647334099,0.0831799730658531,-0.00656323321163654,0.999411582946777,-0.0336655005812645,-0.0339565239846706,0.999407112598419,0.00569801917299628,0.00585672771558166,0.999812185764313,0.0184755083173513,0.0203528981655836,0.99979156255722,-0.00158067210577428,
- -0.842403471469879,0.0717712491750717,-0.534045934677124,-0.0339565239846706,0.999407112598419,0.00569801917299628,-0.00656323321163654,0.999411582946777,-0.0336655005812645,-0.820586919784546,0.0615842305123806,-0.568194031715393,-0.840863585472107,-0.0400076024234295,-0.539766311645508,-0.842403471469879,0.0717712491750717,-0.534045934677124,-0.820586919784546,0.0615842305123806,-0.568194031715393,-0.823173522949219,-0.0304333325475454,-0.566973626613617,-0.931203901767731,-0.0646863952279091,-0.358713001012802,-0.936859846115112,0.00236624199897051,-0.349697321653366,-0.924610733985901,0.041451595723629,-0.378651440143585,-0.913424372673035,0.055319756269455,-0.403231680393219,-0.914169371128082,-0.0668810456991196,-0.399776458740234,-0.924610733985901,0.041451595723629,-0.378651440143585,-0.0130642671138048,0.999907433986664,-0.00379578769207001,0.0055198697373271,0.998355567455292,-0.0570596717298031,-0.913424372673035,0.055319756269455,-0.403231680393219,0.036428265273571,0.999236047267914,-0.0141538726165891,0.0055198697373271,0.998355567455292,-0.0570596717298031,-0.0130642671138048,0.999907433986664,-0.00379578769207001,-0.00973814446479082,0.999793767929077,0.0178216695785522,0.00818713288754225,0.999585807323456,0.0275886245071888,-0.975549161434174,-0.0771908834576607,-0.205780148506165,-0.975300073623657,0.0648752525448799,-0.211142316460609,-0.971169590950012,0.0420552343130112,-0.234650760889053,-0.966851532459259,0.00388476368971169,-0.255309671163559,-0.967290937900543,-0.0685370191931725,-0.244235381484032,-0.0250128600746393,-0.999228298664093,0.0302804242819548,-0.975549161434174,-0.0771908834576607,-0.205780148506165,-0.967290937900543,-0.0685370191931725,-0.244235381484032,-0.00695477984845638,-0.997832298278809,-0.0654399991035461,0.0169052593410015,-0.999050796031952,0.0401468388736248,-0.0250128600746393,-0.999228298664093,0.0302804242819548,-0.00695477984845638,-0.997832298278809,-0.0654399991035461,0.0388181991875172,-0.997518539428711,-0.0587352961301804,0.973348677158356,-0.0799417123198509,0.214945912361145,
- 0.0169052593410015,-0.999050796031952,0.0401468388736248,0.0388181991875172,-0.997518539428711,-0.0587352961301804,0.978804707527161,-0.0700532644987106,0.19244185090065,0.973891377449036,0.0697051361203194,0.216047719120979,0.973348677158356,-0.0799417123198509,0.214945912361145,0.978804707527161,-0.0700532644987106,0.19244185090065,0.981793701648712,0.0687234029173851,0.177082598209381,0.99594646692276,0.0817207023501396,0.037582129240036,0.995108604431152,0.0864510610699654,0.0478016585111618,0.996809720993042,-0.0712421908974648,0.0359867177903652,0.995507299900055,-0.0830258503556252,0.0455199554562569,0.0287334267050028,0.999569654464722,-0.00589188886806369,-0.0198921747505665,0.99972140789032,-0.0127036552876234,-0.0214168429374695,0.998493611812592,0.0505148768424988,0.0306186340749264,0.998460590839386,0.0462478622794151,0.0123236551880836,0.995004892349243,-0.0990620404481888,-0.0198921747505665,0.99972140789032,-0.0127036552876234,0.0287334267050028,0.999569654464722,-0.00589188886806369,0.020372312515974,0.995864748954773,-0.0885349586606026,-0.985091209411621,-0.0123763866722584,-0.171586632728577,-0.994687438011169,-0.0619825609028339,-0.0821899324655533,-0.996351659297943,0.0577795244753361,-0.062810130417347,-0.973540782928467,0.0734512284398079,-0.216386690735817,-0.0211259741336107,-0.999310433864594,-0.0305361244827509,-0.994687438011169,-0.0619825609028339,-0.0821899324655533,-0.985091209411621,-0.0123763866722584,-0.171586632728577,-0.0701709613204002,-0.922868072986603,0.378669589757919,0.02043816447258,-0.999308109283447,-0.0310743488371372,-0.0211259741336107,-0.999310433864594,-0.0305361244827509,-0.0701709613204002,-0.922868072986603,0.378669589757919,-0.0364536978304386,-0.894902169704437,0.444771081209183,0.99264132976532,-0.0263180490583181,0.118197061121464,0.995507299900055,-0.0830258503556252,0.0455199554562569,0.02043816447258,-0.999308109283447,-0.0310743488371372,-0.0364536978304386,-0.894902169704437,0.444771081209183,0.99594646692276,0.0817207023501396,0.037582129240036,0.995507299900055,-0.0830258503556252,0.0455199554562569,
- 0.99264132976532,-0.0263180490583181,0.118197061121464,0.99267578125,0.0789206847548485,0.091468058526516,-0.0183185711503029,0.999664008617401,-0.018340989947319,-0.0218417290598154,0.999761462211609,0.000231169338803738,0.016810042783618,0.999847829341888,0.00464749336242676,0.019252659752965,0.999760925769806,-0.0103698428720236,0.000403111480409279,0.999889433383942,-0.0148668047040701,-0.0213232729583979,0.999666631221771,-0.0145558640360832,0.0244075059890747,0.999582707881927,-0.0154502624645829,0.0159827712923288,0.997206807136536,-0.0729610547423363,-0.00772294821217656,0.997067034244537,-0.0761429145932198,-0.997032463550568,0.0769813060760498,-0.000377013609977439,-0.726169764995575,0.085853137075901,-0.682133913040161,-0.996948301792145,-0.0722116455435753,-0.0296590905636549,0.0168511178344488,-0.999855637550354,-0.00217516906559467,-0.0328542441129684,-0.999424576759338,-0.00843443442136049,0.0262571461498737,-0.99439662694931,-0.102401718497276,0.995553731918335,0.0940746143460274,-0.00476733827963471,0.997629642486572,-0.0687179043889046,-0.00357325770892203,0.97633820772171,-0.0980230867862701,-0.192757293581963,0.980964481830597,0.0208932179957628,-0.193059548735619,-0.0137299122288823,-0.996861279010773,0.0779686644673347,-0.0259829685091972,-0.99947315454483,0.0194502901285887,0.0034055367577821,-0.999571442604065,-0.0290737506002188,0.0364652462303638,-0.999316990375519,-0.00597951747477055,0.817427635192871,-0.0957742556929588,0.568013608455658,-0.0137299122288823,-0.996861279010773,0.0779686644673347,0.0364652462303638,-0.999316990375519,-0.00597951747477055,0.854142665863037,-0.0817621946334839,0.513571202754974,0.823390960693359,0.0674495846033096,0.563451707363129,0.817427635192871,-0.0957742556929588,0.568013608455658,0.854142665863037,-0.0817621946334839,0.513571202754974,0.854909956455231,0.0565808340907097,0.515681684017181,0.906553864479065,0.0647208318114281,0.417098790407181,0.90633225440979,-0.0806003287434578,0.414807617664337,0.926047205924988,-0.0864082500338554,0.367382913827896,
- 0.930101931095123,0.0435832478106022,0.364706754684448,0.90633225440979,-0.0806003287434578,0.414807617664337,0.020066749304533,-0.999631404876709,0.0182831957936287,0.0535654798150063,-0.997032880783081,-0.055281937122345,0.926047205924988,-0.0864082500338554,0.367382913827896,0.020066749304533,-0.999631404876709,0.0182831957936287,-0.0189628954976797,-0.999818027019501,0.00210577808320522,-0.00233121844939888,-0.999304890632629,-0.0372063890099525,0.0535654798150063,-0.997032880783081,-0.055281937122345,0.999343276023865,0.0345346666872501,-0.0109737534075975,0.0224993731826544,0.999411284923553,-0.025896618142724,0.0137697281315923,0.99979156255722,0.0150740081444383,0.998580694198608,0.0501992478966713,0.0177940763533115,-0.0570130385458469,0.0615607686340809,-0.996473729610443,0.999343276023865,0.0345346666872501,-0.0109737534075975,0.998383462429047,-0.0549984090030193,-0.0143421161919832,-0.0595808513462543,-0.030496658757329,-0.99775755405426,0.999343276023865,0.0345346666872501,-0.0109737534075975,0.998580694198608,0.0501992478966713,0.0177940763533115,0.99843555688858,-0.0529517643153667,0.0179594997316599,0.998383462429047,-0.0549984090030193,-0.0143421161919832,0.999343276023865,0.0345346666872501,-0.0109737534075975,-0.0570130385458469,0.0615607686340809,-0.996473729610443,0.0224993731826544,0.999411284923553,-0.025896618142724,0.0137697281315923,0.99979156255722,0.0150740081444383,0.119504414498806,0.0566058605909348,0.991218686103821,0.998580694198608,0.0501992478966713,0.0177940763533115,0.99843555688858,-0.0529517643153667,0.0179594997316599,0.12067986279726,-0.0816943868994713,0.98932421207428,0.0271564945578575,-0.999316811561584,0.0250669196248055,0.119504414498806,0.0566058605909348,0.991218686103821,0.12067986279726,-0.0816943868994713,0.98932421207428,0.99843555688858,-0.0529517643153667,0.0179594997316599,0.998580694198608,0.0501992478966713,0.0177940763533115,0.0250248610973358,-0.999571323394775,-0.01519591268152,0.998383462429047,-0.0549984090030193,-0.0143421161919832,0.99843555688858,-0.0529517643153667,0.0179594997316599,
- 0.0271564945578575,-0.999316811561584,0.0250669196248055,0.0250248610973358,-0.999571323394775,-0.01519591268152,-0.0595808513462543,-0.030496658757329,-0.99775755405426,0.998383462429047,-0.0549984090030193,-0.0143421161919832,-0.00602469965815544,-0.999618291854858,0.026965731754899,-0.59206223487854,-0.0360708944499493,0.805084586143494,-0.623663306236267,-0.0453610382974148,0.780375778675079,-0.0386084467172623,-0.999214053153992,-0.0089880246669054,0.730577766895294,-0.0723130330443382,0.678989708423615,0.011636845767498,-0.99990051984787,0.00797294452786446,0.418218284845352,-0.842372894287109,0.339854836463928,-0.59206223487854,-0.0360708944499493,0.805084586143494,0.711605191230774,-0.0737383663654327,0.698699295520782,0.7137291431427,0.0925622060894966,0.694278717041016,-0.589952766895294,0.0342265032231808,0.806712090969086,-0.0386084467172623,-0.999214053153992,-0.0089880246669054,-0.757070183753967,-0.0681433156132698,-0.649770200252533,-0.706293404102325,-0.0790876969695091,-0.703487634658813,-0.022096786648035,-0.999200761318207,-0.0333093591034412,0.808621466159821,-0.0934362709522247,0.580862164497375,0.730577766895294,-0.0723130330443382,0.678989708423615,0.418218284845352,-0.842372894287109,0.339854836463928,0.011636845767498,-0.99990051984787,0.00797294452786446,0.0975662991404533,-0.993832409381866,-0.0527056828141212,0.418218284845352,-0.842372894287109,0.339854836463928,-0.623663306236267,-0.0453610382974148,0.780375778675079,-0.59206223487854,-0.0360708944499493,0.805084586143494,-0.589952766895294,0.0342265032231808,0.806712090969086,-0.610432207584381,0.0390784740447998,0.791103899478912,-0.623779535293579,0.0190633200109005,0.781367838382721,-0.00602469965815544,-0.999618291854858,0.026965731754899,0.711605191230774,-0.0737383663654327,0.698699295520782,-0.59206223487854,-0.0360708944499493,0.805084586143494,-0.623663306236267,-0.0453610382974148,0.780375778675079,-0.757070183753967,-0.0681433156132698,-0.649770200252533,-0.0386084467172623,-0.999214053153992,-0.0089880246669054,-0.589952766895294,0.0342265032231808,0.806712090969086,
- 0.00032416227622889,0.999629557132721,0.0272158514708281,-0.003562644822523,0.999980986118317,0.00502448761835694,-0.610432207584381,0.0390784740447998,0.791103899478912,-0.0175229664891958,0.999373257160187,-0.0307576581835747,-0.003562644822523,0.999980986118317,0.00502448761835694,0.00032416227622889,0.999629557132721,0.0272158514708281,0.0257186312228441,0.999661862850189,0.00384047231636941,-0.00812550075352192,0.99958062171936,-0.0277954898774624,0.00032416227622889,0.999629557132721,0.0272158514708281,0.7137291431427,0.0925622060894966,0.694278717041016,0.729632914066315,0.0952669605612755,0.677170634269714,0.0257186312228441,0.999661862850189,0.00384047231636941,-0.623779535293579,0.0190633200109005,0.781367838382721,-0.752981841564178,0.0083069521933794,-0.657988905906677,-0.757070183753967,-0.0681433156132698,-0.649770200252533,-0.623663306236267,-0.0453610382974148,0.780375778675079,-0.150958761572838,0.055549256503582,-0.986978113651276,-0.215204939246178,0.976494371891022,0.0120646832510829,-0.0253917779773474,0.99940687417984,-0.0232624541968107,-0.0973461791872978,0.0717551782727242,-0.992660522460938,0.0545769371092319,-0.671337604522705,-0.739139497280121,-0.0934659466147423,-0.0127523029223084,-0.995540738105774,-0.0918952226638794,-0.0400350391864777,-0.994963586330414,-0.739809691905975,0.0346862077713013,-0.67192143201828,-0.003562644822523,0.999980986118317,0.00502448761835694,-0.0175229664891958,0.999373257160187,-0.0307576581835747,0.7137291431427,0.0925622060894966,0.694278717041016,0.00032416227622889,0.999629557132721,0.0272158514708281,-0.589952766895294,0.0342265032231808,0.806712090969086,-0.623779535293579,0.0190633200109005,0.781367838382721,-0.739809691905975,0.0346862077713013,-0.67192143201828,-0.752981841564178,0.0083069521933794,-0.657988905906677,-0.623779535293579,0.0190633200109005,0.781367838382721,-0.610432207584381,0.0390784740447998,0.791103899478912,-0.003562644822523,0.999980986118317,0.00502448761835694,-0.739809691905975,0.0346862077713013,-0.67192143201828,0.528884410858154,-0.0209692269563675,0.848434805870056,
- -0.0694184601306915,-0.996020972728729,0.0558850467205048,-0.0212344396859407,-0.999050736427307,0.0380365587770939,0.429484307765961,-0.0798315852880478,0.899538815021515,-0.00450480170547962,-0.999097228050232,-0.042242269963026,-0.42359471321106,9.55850846366957e-005,-0.9058518409729,-0.438035398721695,-0.0771438926458359,-0.895641505718231,-0.0392536148428917,-0.999228656291962,-0.00108256912790239,-0.248653799295425,0.771074295043945,0.586187481880188,0.187985524535179,0.898071467876434,0.397654324769974,0.521458327770233,0.0859038680791855,0.848941564559937,0.428944021463394,0.0696888789534569,0.90063887834549,-0.0694184601306915,-0.996020972728729,0.0558850467205048,-0.00450480170547962,-0.999097228050232,-0.042242269963026,-0.0392536148428917,-0.999228656291962,-0.00108256912790239,-0.0212344396859407,-0.999050736427307,0.0380365587770939,0.00667728716507554,0.999847888946533,0.0161071009933949,-0.0409528128802776,0.998341917991638,0.0404524840414524,0.187985524535179,0.898071467876434,0.397654324769974,-0.248653799295425,0.771074295043945,0.586187481880188,-0.0505672991275787,0.99865585565567,0.0113782864063978,-0.6246337890625,0.0542473718523979,-0.779031336307526,-0.673764288425446,0.738932549953461,0.00450582895427942,-0.6246337890625,0.0542473718523979,-0.779031336307526,-0.979013860225677,0.0636940002441406,-0.193584278225899,-0.673764288425446,0.738932549953461,0.00450582895427942,0.0648103207349777,-0.995267271995544,-0.0724070519208908,-0.941653847694397,-0.0375169217586517,-0.33448538184166,-0.653914570808411,-0.0652207061648369,-0.753751993179321,-0.00286236475221813,-0.999647319316864,-0.0264051724225283,0.502301454544067,-0.143144741654396,0.852761924266815,0.54070919752121,-0.141637533903122,0.829199850559235,0.418218284845352,-0.842372894287109,0.339854836463928,0.418218284845352,-0.842372894287109,0.339854836463928,0.138400420546532,-0.984193980693817,-0.110487632453442,0.0163869839161634,-0.999862909317017,0.00235943612642586,-0.0505672991275787,0.99865585565567,0.0113782864063978,-0.288523197174072,0.928940892219543,0.231998190283775,
- -0.143677771091461,0.982003152370453,0.12258218228817,-0.161988332867622,0.971888303756714,0.170859098434448,-0.0173565968871117,0.0901717618107796,-0.995774924755096,-0.979013860225677,0.0636940002441406,-0.193584278225899,-0.941653847694397,-0.0375169217586517,-0.33448538184166,-0.706293404102325,-0.0790876969695091,-0.703487634658813,-0.403353214263916,0.572430610656738,-0.713883340358734,-0.29732671380043,0.834819853305817,-0.463327765464783,-0.013620269484818,0.999761462211609,-0.017076650634408,-0.433651119470596,0.0648937597870827,-0.898741066455841,-0.433651119470596,0.0648937597870827,-0.898741066455841,-0.442961782217026,0.0742034763097763,-0.893464386463165,-0.403353214263916,0.572430610656738,-0.713883340358734,0.160284593701363,-0.033415462821722,0.986505031585693,-0.615637302398682,-0.752095818519592,0.235250011086464,-0.0367251299321651,-0.998544871807098,0.0394902415573597,0.236310020089149,-0.0815067365765572,0.968253195285797,-0.607136070728302,-0.766377985477448,0.209882259368896,-0.463437497615814,-0.0452020838856697,-0.884975969791412,-0.28690892457962,-0.0653206184506416,-0.955728232860565,-0.048042293637991,-0.998845040798187,-0.000739608658477664,0.678808212280273,0.086872011423111,0.729158937931061,0.160284593701363,-0.033415462821722,0.986505031585693,0.236310020089149,-0.0815067365765572,0.968253195285797,0.213208064436913,0.0632987469434738,0.974954128265381,-0.615637302398682,-0.752095818519592,0.235250011086464,-0.607136070728302,-0.766377985477448,0.209882259368896,-0.048042293637991,-0.998845040798187,-0.000739608658477664,-0.0367251299321651,-0.998544871807098,0.0394902415573597,0.257327139377594,0.561295449733734,-0.786594033241272,0.566738963127136,0.789701461791992,-0.234901160001755,-0.00487940711900592,0.99998414516449,-0.00280988425947726,-0.762134730815887,0.49218076467514,-0.420605152845383,0.578687012195587,0.789140939712524,-0.205858886241913,0.678808212280273,0.086872011423111,0.729158937931061,0.213208064436913,0.0632987469434738,0.974954128265381,0.00260851858183742,0.99985682964325,0.0167201776057482,
- -0.762134730815887,0.49218076467514,-0.420605152845383,-0.302447199821472,0.00118940114043653,-0.953165411949158,0.0141051914542913,0.218897357583046,-0.975646018981934,0.257327139377594,0.561295449733734,-0.786594033241272,0.220755591988564,-0.0301046743988991,0.974864363670349,0.278795957565308,-0.95845627784729,-0.0602854005992413,-0.0507574938237667,-0.998165965080261,0.0329910218715668,0.0592626705765724,-0.0938909947872162,0.993817090988159,0.233084365725517,-0.966177046298981,-0.110334314405918,0.0545769371092319,-0.671337604522705,-0.739139497280121,-0.0918952226638794,-0.0400350391864777,-0.994963586330414,-0.0251702703535557,-0.999632835388184,-0.0100399507209659,0.0606706477701664,0.067855104804039,0.995848715305328,0.176660448312759,0.0538305044174194,0.982798755168915,0.220755591988564,-0.0301046743988991,0.974864363670349,0.0592626705765724,-0.0938909947872162,0.993817090988159,-0.0251702703535557,-0.999632835388184,-0.0100399507209659,0.306328952312469,-0.949024140834808,-0.0742688551545143,0.233084365725517,-0.966177046298981,-0.110334314405918,-0.0121659943833947,0.999794125556946,0.0162436831742525,-0.0253917779773474,0.99940687417984,-0.0232624541968107,-0.215204939246178,0.976494371891022,0.0120646832510829,-0.216473773121834,0.975878894329071,0.0282756928354502,-0.0121659943833947,0.999794125556946,0.0162436831742525,0.0606706477701664,0.067855104804039,0.995848715305328,0.119504414498806,0.0566058605909348,0.991218686103821,0.0137697281315923,0.99979156255722,0.0150740081444383,-0.00505601242184639,0.999907374382019,-0.01263795979321,-0.270437598228455,0.0414325557649136,-0.961845576763153,-0.762134730815887,0.49218076467514,-0.420605152845383,-0.270437598228455,0.0414325557649136,-0.961845576763153,-0.302447199821472,0.00118940114043653,-0.953165411949158,-0.762134730815887,0.49218076467514,-0.420605152845383,0.0539875216782093,-0.998106896877289,-0.0294615458697081,-0.247160777449608,-0.0685522556304932,-0.966546475887299,0.0545769371092319,-0.671337604522705,-0.739139497280121,0.233084365725517,-0.966177046298981,-0.110334314405918,
- 0.306328952312469,-0.949024140834808,-0.0742688551545143,0.0539875216782093,-0.998106896877289,-0.0294615458697081,0.233084365725517,-0.966177046298981,-0.110334314405918,0.282246857881546,-0.0867215842008591,0.955414056777954,0.116260305047035,-0.993218421936035,-0.000865067937411368,0.278795957565308,-0.95845627784729,-0.0602854005992413,0.220755591988564,-0.0301046743988991,0.974864363670349,0.284355282783508,0.0432604402303696,0.95774245262146,0.282246857881546,-0.0867215842008591,0.955414056777954,0.220755591988564,-0.0301046743988991,0.974864363670349,0.176660448312759,0.0538305044174194,0.982798755168915,0.00260851858183742,0.99985682964325,0.0167201776057482,0.213208064436913,0.0632987469434738,0.974954128265381,0.284355282783508,0.0432604402303696,0.95774245262146,0.00606159400194883,0.99966424703598,0.0251937471330166,-0.762134730815887,0.49218076467514,-0.420605152845383,-0.00487940711900592,0.99998414516449,-0.00280988425947726,-0.00505601242184639,0.999907374382019,-0.01263795979321,0.257327139377594,0.561295449733734,-0.786594033241272,0.0141051914542913,0.218897357583046,-0.975646018981934,-0.395518630743027,0.00505659822374582,-0.918444037437439,0.652361452579498,0.383066385984421,-0.653976023197174,0.0170112121850252,-0.999246537685394,-0.0348848439753056,-0.399302810430527,-0.0680082738399506,-0.91429328918457,-0.463437497615814,-0.0452020838856697,-0.884975969791412,-0.607136070728302,-0.766377985477448,0.209882259368896,0.0385147221386433,-0.999238431453705,0.00625817244872451,0.0170112121850252,-0.999246537685394,-0.0348848439753056,-0.607136070728302,-0.766377985477448,0.209882259368896,-0.615637302398682,-0.752095818519592,0.235250011086464,0.455610722303391,-0.0691468492150307,0.887489497661591,0.0385147221386433,-0.999238431453705,0.00625817244872451,-0.615637302398682,-0.752095818519592,0.235250011086464,0.160284593701363,-0.033415462821722,0.986505031585693,0.452903866767883,0.0697260946035385,0.888828694820404,0.455610722303391,-0.0691468492150307,0.887489497661591,0.160284593701363,-0.033415462821722,0.986505031585693,
- 0.678808212280273,0.086872011423111,0.729158937931061,0.0404706411063671,0.999180316925049,0.00089528871467337,0.452903866767883,0.0697260946035385,0.888828694820404,0.678808212280273,0.086872011423111,0.729158937931061,0.578687012195587,0.789140939712524,-0.205858886241913,0.652361452579498,0.383066385984421,-0.653976023197174,0.028459619730711,0.99948388338089,-0.0148971080780029,0.566738963127136,0.789701461791992,-0.234901160001755,0.257327139377594,0.561295449733734,-0.786594033241272,0.652361452579498,0.383066385984421,-0.653976023197174,-0.412580549716949,0.0421004518866539,-0.909947693347931,0.00318810646422207,0.999664008617401,-0.0257218014448881,0.652361452579498,0.383066385984421,-0.653976023197174,-0.395518630743027,0.00505659822374582,-0.918444037437439,-0.412580549716949,0.0421004518866539,-0.909947693347931,-0.248653799295425,0.771074295043945,0.586187481880188,0.428944021463394,0.0696888789534569,0.90063887834549,0.00667728716507554,0.999847888946533,0.0161071009933949,0.00318810646422207,0.999664008617401,-0.0257218014448881,0.028459619730711,0.99948388338089,-0.0148971080780029,0.652361452579498,0.383066385984421,-0.653976023197174,-0.571624457836151,0.0551197491586208,-0.818661987781525,-0.0276611149311066,0.999569296836853,-0.00980153866112232,-0.29732671380043,0.834819853305817,-0.463327765464783,-0.403353214263916,0.572430610656738,-0.713883340358734,-0.442961782217026,0.0742034763097763,-0.893464386463165,-0.571624457836151,0.0551197491586208,-0.818661987781525,-0.403353214263916,0.572430610656738,-0.713883340358734,-0.00286236475221813,-0.999647319316864,-0.0264051724225283,-0.653914570808411,-0.0652207061648369,-0.753751993179321,-0.562766194343567,-0.066984511911869,-0.82389771938324,0.0376419983804226,-0.997852861881256,-0.05359897762537,0.418218284845352,-0.842372894287109,0.339854836463928,0.0163869839161634,-0.999862909317017,0.00235943612642586,0.0271996166557074,-0.999629497528076,0.00102444388903677,0.0271996166557074,-0.999629497528076,0.00102444388903677,0.588936686515808,-0.0738078355789185,0.804801762104034,
- 0.418218284845352,-0.842372894287109,0.339854836463928,0.455307453870773,0.868055820465088,0.197924703359604,0.58181095123291,0.0780011340975761,0.809575080871582,0.521458327770233,0.0859038680791855,0.848941564559937,0.187985524535179,0.898071467876434,0.397654324769974,-0.000117233270430006,0.999426186084747,0.0338750518858433,0.58181095123291,0.0780011340975761,0.809575080871582,0.455307453870773,0.868055820465088,0.197924703359604,-0.000117233270430006,0.999426186084747,0.0338750518858433,0.455307453870773,0.868055820465088,0.197924703359604,0.187985524535179,0.898071467876434,0.397654324769974,-0.0409528128802776,0.998341917991638,0.0404524840414524,-0.022096786648035,-0.999200761318207,-0.0333093591034412,-0.706293404102325,-0.0790876969695091,-0.703487634658813,-0.941653847694397,-0.0375169217586517,-0.33448538184166,0.0648103207349777,-0.995267271995544,-0.0724070519208908,0.54070919752121,-0.141637533903122,0.829199850559235,0.808621466159821,-0.0934362709522247,0.580862164497375,0.418218284845352,-0.842372894287109,0.339854836463928,0.418218284845352,-0.842372894287109,0.339854836463928,0.0975662991404533,-0.993832409381866,-0.0527056828141212,0.138400420546532,-0.984193980693817,-0.110487632453442,0.14324589073658,0.635918021202087,-0.758346021175385,0.0217909999191761,0.999283015727997,-0.0309626031666994,-0.288523197174072,0.928940892219543,0.231998190283775,-0.673764288425446,0.738932549953461,0.00450582895427942,-0.00812550075352192,0.99958062171936,-0.0277954898774624,-0.726539552211761,0.0615898296236992,-0.684358716011047,-0.739809691905975,0.0346862077713013,-0.67192143201828,-0.0175229664891958,0.999373257160187,-0.0307576581835747,-0.726539552211761,0.0615898296236992,-0.684358716011047,-0.706293404102325,-0.0790876969695091,-0.703487634658813,-0.757070183753967,-0.0681433156132698,-0.649770200252533,-0.752981841564178,0.0083069521933794,-0.657988905906677,-0.739809691905975,0.0346862077713013,-0.67192143201828,-0.216473773121834,0.975878894329071,0.0282756928354502,0.00606159400194883,0.99966424703598,0.0251937471330166,
- -0.0458175055682659,0.853007316589355,0.519883751869202,-0.241479307413101,0.054066464304924,-0.96889865398407,-0.00682914210483432,0.999730050563812,-0.022210793569684,-0.215204939246178,0.976494371891022,0.0120646832510829,-0.150958761572838,0.055549256503582,-0.986978113651276,-0.247160777449608,-0.0685522556304932,-0.966546475887299,-0.0934659466147423,-0.0127523029223084,-0.995540738105774,0.0545769371092319,-0.671337604522705,-0.739139497280121,0.0141051914542913,0.218897357583046,-0.975646018981934,-0.302447199821472,0.00118940114043653,-0.953165411949158,-0.28690892457962,-0.0653206184506416,-0.955728232860565,-0.463437497615814,-0.0452020838856697,-0.884975969791412,-0.395518630743027,0.00505659822374582,-0.918444037437439,0.0141051914542913,0.218897357583046,-0.975646018981934,-0.463437497615814,-0.0452020838856697,-0.884975969791412,-0.399302810430527,-0.0680082738399506,-0.91429328918457,0.566738963127136,0.789701461791992,-0.234901160001755,0.028459619730711,0.99948388338089,-0.0148971080780029,0.0404706411063671,0.999180316925049,0.00089528871467337,0.578687012195587,0.789140939712524,-0.205858886241913,-0.00487940711900592,0.99998414516449,-0.00280988425947726,0.566738963127136,0.789701461791992,-0.234901160001755,0.578687012195587,0.789140939712524,-0.205858886241913,0.00260851858183742,0.99985682964325,0.0167201776057482,-0.29732671380043,0.834819853305817,-0.463327765464783,-0.0276611149311066,0.999569296836853,-0.00980153866112232,-0.0440724827349186,0.998708367347717,0.0252842251211405,-0.0163774359971285,0.998544454574585,0.0513877049088478,0.579222559928894,0.0850786194205284,0.810717582702637,0.58181095123291,0.0780011340975761,0.809575080871582,-0.000117233270430006,0.999426186084747,0.0338750518858433,0.588936686515808,-0.0738078355789185,0.804801762104034,0.502301454544067,-0.143144741654396,0.852761924266815,0.418218284845352,-0.842372894287109,0.339854836463928,0.521458327770233,0.0859038680791855,0.848941564559937,0.528884410858154,-0.0209692269563675,0.848434805870056,0.429484307765961,-0.0798315852880478,0.899538815021515,
- 0.428944021463394,0.0696888789534569,0.90063887834549,0.00667728716507554,0.999847888946533,0.0161071009933949,0.428944021463394,0.0696888789534569,0.90063887834549,0.452903866767883,0.0697260946035385,0.888828694820404,0.0404706411063671,0.999180316925049,0.00089528871467337,-0.0440724827349186,0.998708367347717,0.0252842251211405,-0.013620269484818,0.999761462211609,-0.017076650634408,-0.29732671380043,0.834819853305817,-0.463327765464783,-0.0121659943833947,0.999794125556946,0.0162436831742525,-0.216473773121834,0.975878894329071,0.0282756928354502,-0.0458175055682659,0.853007316589355,0.519883751869202,-0.0458175055682659,0.853007316589355,0.519883751869202,0.0279154852032661,0.517916440963745,0.854975640773773,0.0606706477701664,0.067855104804039,0.995848715305328,-0.0121659943833947,0.999794125556946,0.0162436831742525,0.0279154852032661,0.517916440963745,0.854975640773773,0.176660448312759,0.0538305044174194,0.982798755168915,0.0606706477701664,0.067855104804039,0.995848715305328,0.284355282783508,0.0432604402303696,0.95774245262146,0.176660448312759,0.0538305044174194,0.982798755168915,0.0279154852032661,0.517916440963745,0.854975640773773,0.00606159400194883,0.99966424703598,0.0251937471330166,0.284355282783508,0.0432604402303696,0.95774245262146,0.0279154852032661,0.517916440963745,0.854975640773773,-0.0458175055682659,0.853007316589355,0.519883751869202,-0.216473773121834,0.975878894329071,0.0282756928354502,-0.215204939246178,0.976494371891022,0.0120646832510829,-0.00682914210483432,0.999730050563812,-0.022210793569684,0.00606159400194883,0.99966424703598,0.0251937471330166,-0.143677771091461,0.982003152370453,0.12258218228817,0.0397637188434601,0.999002754688263,-0.0203055646270514,0.152395129203796,0.931851387023926,0.329285234212875,-0.161988332867622,0.971888303756714,0.170859098434448,-0.143677771091461,0.982003152370453,0.12258218228817,0.152395129203796,0.931851387023926,0.329285234212875,-0.0163774359971285,0.998544454574585,0.0513877049088478,-0.161988332867622,0.971888303756714,0.170859098434448,
- 0.152395129203796,0.931851387023926,0.329285234212875,0.152395129203796,0.931851387023926,0.329285234212875,0.423032492399216,0.728100836277008,0.539363205432892,0.579222559928894,0.0850786194205284,0.810717582702637,-0.0163774359971285,0.998544454574585,0.0513877049088478,0.492755770683289,0.00768164964392781,0.870133817195892,0.579222559928894,0.0850786194205284,0.810717582702637,0.423032492399216,0.728100836277008,0.539363205432892,0.423032492399216,0.728100836277008,0.539363205432892,0.645614206790924,-0.0621241442859173,0.761132597923279,0.492755770683289,0.00768164964392781,0.870133817195892,0.423032492399216,0.728100836277008,0.539363205432892,0.805445730686188,0.0191222578287125,0.592361032962799,0.645614206790924,-0.0621241442859173,0.761132597923279,0.729632914066315,0.0952669605612755,0.677170634269714,0.805445730686188,0.0191222578287125,0.592361032962799,0.423032492399216,0.728100836277008,0.539363205432892,0.0257186312228441,0.999661862850189,0.00384047231636941,0.729632914066315,0.0952669605612755,0.677170634269714,0.423032492399216,0.728100836277008,0.539363205432892,0.152395129203796,0.931851387023926,0.329285234212875,0.0397637188434601,0.999002754688263,-0.0203055646270514,0.0257186312228441,0.999661862850189,0.00384047231636941,0.152395129203796,0.931851387023926,0.329285234212875,-0.00812550075352192,0.99958062171936,-0.0277954898774624,0.0217909999191761,0.999283015727997,-0.0309626031666994,0.14324589073658,0.635918021202087,-0.758346021175385,0.14324589073658,0.635918021202087,-0.758346021175385,-0.726539552211761,0.0615898296236992,-0.684358716011047,-0.00812550075352192,0.99958062171936,-0.0277954898774624,0.14324589073658,0.635918021202087,-0.758346021175385,-0.0173565968871117,0.0901717618107796,-0.995774924755096,-0.726539552211761,0.0615898296236992,-0.684358716011047,-0.673764288425446,0.738932549953461,0.00450582895427942,-0.979013860225677,0.0636940002441406,-0.193584278225899,-0.0173565968871117,0.0901717618107796,-0.995774924755096,0.14324589073658,0.635918021202087,-0.758346021175385,
- -0.288523197174072,0.928940892219543,0.231998190283775,0.0217909999191761,0.999283015727997,-0.0309626031666994,0.0397637188434601,0.999002754688263,-0.0203055646270514,-0.143677771091461,0.982003152370453,0.12258218228817,-0.673764288425446,0.738932549953461,0.00450582895427942,-0.288523197174072,0.928940892219543,0.231998190283775,-0.0505672991275787,0.99865585565567,0.0113782864063978,-0.6246337890625,0.0542473718523979,-0.779031336307526,-0.653914570808411,-0.0652207061648369,-0.753751993179321,-0.941653847694397,-0.0375169217586517,-0.33448538184166,-0.979013860225677,0.0636940002441406,-0.193584278225899,-0.0918952226638794,-0.0400350391864777,-0.994963586330414,-0.0934659466147423,-0.0127523029223084,-0.995540738105774,-0.150958761572838,0.055549256503582,-0.986978113651276,-0.0973461791872978,0.0717551782727242,-0.992660522460938,-0.0251702703535557,-0.999632835388184,-0.0100399507209659,-0.0918952226638794,-0.0400350391864777,-0.994963586330414,-0.0595808513462543,-0.030496658757329,-0.99775755405426,0.0250248610973358,-0.999571323394775,-0.01519591268152,0.278795957565308,-0.95845627784729,-0.0602854005992413,0.306328952312469,-0.949024140834808,-0.0742688551545143,-0.0251702703535557,-0.999632835388184,-0.0100399507209659,-0.0507574938237667,-0.998165965080261,0.0329910218715668,0.116260305047035,-0.993218421936035,-0.000865067937411368,0.0539875216782093,-0.998106896877289,-0.0294615458697081,0.306328952312469,-0.949024140834808,-0.0742688551545143,0.278795957565308,-0.95845627784729,-0.0602854005992413,-0.048042293637991,-0.998845040798187,-0.000739608658477664,-0.28690892457962,-0.0653206184506416,-0.955728232860565,-0.247160777449608,-0.0685522556304932,-0.966546475887299,0.0539875216782093,-0.998106896877289,-0.0294615458697081,-0.247160777449608,-0.0685522556304932,-0.966546475887299,-0.241479307413101,0.054066464304924,-0.96889865398407,-0.150958761572838,0.055549256503582,-0.986978113651276,-0.0934659466147423,-0.0127523029223084,-0.995540738105774,0.00667728716507554,0.999847888946533,0.0161071009933949,
- -0.013620269484818,0.999761462211609,-0.017076650634408,-0.0440724827349186,0.998708367347717,0.0252842251211405,-0.0409528128802776,0.998341917991638,0.0404524840414524,-0.433651119470596,0.0648937597870827,-0.898741066455841,-0.013620269484818,0.999761462211609,-0.017076650634408,0.00318810646422207,0.999664008617401,-0.0257218014448881,-0.412580549716949,0.0421004518866539,-0.909947693347931,-0.42359471321106,9.55850846366957e-005,-0.9058518409729,-0.442961782217026,0.0742034763097763,-0.893464386463165,-0.433651119470596,0.0648937597870827,-0.898741066455841,-0.438035398721695,-0.0771438926458359,-0.895641505718231,-0.571624457836151,0.0551197491586208,-0.818661987781525,-0.562766194343567,-0.066984511911869,-0.82389771938324,-0.653914570808411,-0.0652207061648369,-0.753751993179321,-0.6246337890625,0.0542473718523979,-0.779031336307526,-0.6246337890625,0.0542473718523979,-0.779031336307526,-0.0505672991275787,0.99865585565567,0.0113782864063978,-0.0276611149311066,0.999569296836853,-0.00980153866112232,-0.571624457836151,0.0551197491586208,-0.818661987781525,-0.0163774359971285,0.998544454574585,0.0513877049088478,-0.0505672991275787,0.99865585565567,0.0113782864063978,-0.161988332867622,0.971888303756714,0.170859098434448,0.711605191230774,-0.0737383663654327,0.698699295520782,0.730577766895294,-0.0723130330443382,0.678989708423615,0.729632914066315,0.0952669605612755,0.677170634269714,0.7137291431427,0.0925622060894966,0.694278717041016,0.711605191230774,-0.0737383663654327,0.698699295520782,-0.00602469965815544,-0.999618291854858,0.026965731754899,0.011636845767498,-0.99990051984787,0.00797294452786446,0.730577766895294,-0.0723130330443382,0.678989708423615,-0.00602469965815544,-0.999618291854858,0.026965731754899,-0.0386084467172623,-0.999214053153992,-0.0089880246669054,-0.022096786648035,-0.999200761318207,-0.0333093591034412,0.011636845767498,-0.99990051984787,0.00797294452786446,0.138400420546532,-0.984193980693817,-0.110487632453442,0.0975662991404533,-0.993832409381866,-0.0527056828141212,-0.022096786648035,-0.999200761318207,-0.0333093591034412,
- 0.0648103207349777,-0.995267271995544,-0.0724070519208908,0.0163869839161634,-0.999862909317017,0.00235943612642586,0.138400420546532,-0.984193980693817,-0.110487632453442,0.0648103207349777,-0.995267271995544,-0.0724070519208908,-0.00286236475221813,-0.999647319316864,-0.0264051724225283,0.0271996166557074,-0.999629497528076,0.00102444388903677,0.0163869839161634,-0.999862909317017,0.00235943612642586,-0.00286236475221813,-0.999647319316864,-0.0264051724225283,0.0376419983804226,-0.997852861881256,-0.05359897762537,0.0752085447311401,-0.996775209903717,-0.0279788821935654,0.0752085447311401,-0.996775209903717,-0.0279788821935654,0.586462736129761,-0.0909327864646912,0.804855763912201,0.588936686515808,-0.0738078355789185,0.804801762104034,0.0271996166557074,-0.999629497528076,0.00102444388903677,0.588936686515808,-0.0738078355789185,0.804801762104034,0.579222559928894,0.0850786194205284,0.810717582702637,0.492755770683289,0.00768164964392781,0.870133817195892,0.502301454544067,-0.143144741654396,0.852761924266815,0.492755770683289,0.00768164964392781,0.870133817195892,0.645614206790924,-0.0621241442859173,0.761132597923279,0.54070919752121,-0.141637533903122,0.829199850559235,0.502301454544067,-0.143144741654396,0.852761924266815,0.645614206790924,-0.0621241442859173,0.761132597923279,0.805445730686188,0.0191222578287125,0.592361032962799,0.808621466159821,-0.0934362709522247,0.580862164497375,0.54070919752121,-0.141637533903122,0.829199850559235,0.0224993731826544,0.999411284923553,-0.025896618142724,-0.0253917779773474,0.99940687417984,-0.0232624541968107,-0.0121659943833947,0.999794125556946,0.0162436831742525,0.0137697281315923,0.99979156255722,0.0150740081444383,-0.0973461791872978,0.0717551782727242,-0.992660522460938,-0.0253917779773474,0.99940687417984,-0.0232624541968107,0.0224993731826544,0.999411284923553,-0.025896618142724,-0.0570130385458469,0.0615607686340809,-0.996473729610443,-0.0918952226638794,-0.0400350391864777,-0.994963586330414,-0.0973461791872978,0.0717551782727242,-0.992660522460938,-0.0570130385458469,0.0615607686340809,-0.996473729610443,
- -0.0595808513462543,-0.030496658757329,-0.99775755405426,-0.28690892457962,-0.0653206184506416,-0.955728232860565,-0.302447199821472,0.00118940114043653,-0.953165411949158,-0.270437598228455,0.0414325557649136,-0.961845576763153,-0.241479307413101,0.054066464304924,-0.96889865398407,-0.247160777449608,-0.0685522556304932,-0.966546475887299,-0.270437598228455,0.0414325557649136,-0.961845576763153,-0.00505601242184639,0.999907374382019,-0.01263795979321,-0.00682914210483432,0.999730050563812,-0.022210793569684,-0.241479307413101,0.054066464304924,-0.96889865398407,0.00606159400194883,0.99966424703598,0.0251937471330166,-0.00682914210483432,0.999730050563812,-0.022210793569684,-0.00505601242184639,0.999907374382019,-0.01263795979321,-0.00487940711900592,0.99998414516449,-0.00280988425947726,0.00260851858183742,0.99985682964325,0.0167201776057482,-0.438035398721695,-0.0771438926458359,-0.895641505718231,-0.433651119470596,0.0648937597870827,-0.898741066455841,-0.412580549716949,0.0421004518866539,-0.909947693347931,-0.395518630743027,0.00505659822374582,-0.918444037437439,-0.399302810430527,-0.0680082738399506,-0.91429328918457,-0.0392536148428917,-0.999228656291962,-0.00108256912790239,-0.438035398721695,-0.0771438926458359,-0.895641505718231,-0.399302810430527,-0.0680082738399506,-0.91429328918457,0.0170112121850252,-0.999246537685394,-0.0348848439753056,-0.0212344396859407,-0.999050736427307,0.0380365587770939,-0.0392536148428917,-0.999228656291962,-0.00108256912790239,0.0170112121850252,-0.999246537685394,-0.0348848439753056,0.0385147221386433,-0.999238431453705,0.00625817244872451,0.429484307765961,-0.0798315852880478,0.899538815021515,-0.0212344396859407,-0.999050736427307,0.0380365587770939,0.0385147221386433,-0.999238431453705,0.00625817244872451,0.455610722303391,-0.0691468492150307,0.887489497661591,0.428944021463394,0.0696888789534569,0.90063887834549,0.429484307765961,-0.0798315852880478,0.899538815021515,0.455610722303391,-0.0691468492150307,0.887489497661591,0.452903866767883,0.0697260946035385,0.888828694820404,
- 0.58181095123291,0.0780011340975761,0.809575080871582,0.579222559928894,0.0850786194205284,0.810717582702637,0.588936686515808,-0.0738078355789185,0.804801762104034,0.586462736129761,-0.0909327864646912,0.804855763912201,-0.000117233270430006,0.999426186084747,0.0338750518858433,-0.0276611149311066,0.999569296836853,-0.00980153866112232,-0.0505672991275787,0.99865585565567,0.0113782864063978,-0.0163774359971285,0.998544454574585,0.0513877049088478,-0.0440724827349186,0.998708367347717,0.0252842251211405,-0.0276611149311066,0.999569296836853,-0.00980153866112232,-0.000117233270430006,0.999426186084747,0.0338750518858433,-0.0409528128802776,0.998341917991638,0.0404524840414524,-0.42359471321106,9.55850846366957e-005,-0.9058518409729,-0.562766194343567,-0.066984511911869,-0.82389771938324,-0.571624457836151,0.0551197491586208,-0.818661987781525,-0.442961782217026,0.0742034763097763,-0.893464386463165,0.0376419983804226,-0.997852861881256,-0.05359897762537,-0.562766194343567,-0.066984511911869,-0.82389771938324,-0.42359471321106,9.55850846366957e-005,-0.9058518409729,-0.00450480170547962,-0.999097228050232,-0.042242269963026,0.0752085447311401,-0.996775209903717,-0.0279788821935654,0.0376419983804226,-0.997852861881256,-0.05359897762537,-0.00450480170547962,-0.999097228050232,-0.042242269963026,-0.0694184601306915,-0.996020972728729,0.0558850467205048,0.528884410858154,-0.0209692269563675,0.848434805870056,0.586462736129761,-0.0909327864646912,0.804855763912201,0.0752085447311401,-0.996775209903717,-0.0279788821935654,-0.0694184601306915,-0.996020972728729,0.0558850467205048,0.58181095123291,0.0780011340975761,0.809575080871582,0.586462736129761,-0.0909327864646912,0.804855763912201,0.528884410858154,-0.0209692269563675,0.848434805870056,0.521458327770233,0.0859038680791855,0.848941564559937,0.00318810646422207,0.999664008617401,-0.0257218014448881,-0.013620269484818,0.999761462211609,-0.017076650634408,0.00667728716507554,0.999847888946533,0.0161071009933949,0.0404706411063671,0.999180316925049,0.00089528871467337,0.028459619730711,0.99948388338089,-0.0148971080780029,
- -0.00812550075352192,0.99958062171936,-0.0277954898774624,0.0257186312228441,0.999661862850189,0.00384047231636941,0.0397637188434601,0.999002754688263,-0.0203055646270514,0.0217909999191761,0.999283015727997,-0.0309626031666994,-0.726539552211761,0.0615898296236992,-0.684358716011047,-0.0173565968871117,0.0901717618107796,-0.995774924755096,-0.706293404102325,-0.0790876969695091,-0.703487634658813,0.011636845767498,-0.99990051984787,0.00797294452786446,-0.022096786648035,-0.999200761318207,-0.0333093591034412,0.0975662991404533,-0.993832409381866,-0.0527056828141212,0.729632914066315,0.0952669605612755,0.677170634269714,0.730577766895294,-0.0723130330443382,0.678989708423615,0.808621466159821,-0.0934362709522247,0.580862164497375,0.805445730686188,0.0191222578287125,0.592361032962799,-0.0507574938237667,-0.998165965080261,0.0329910218715668,-0.0251702703535557,-0.999632835388184,-0.0100399507209659,0.0250248610973358,-0.999571323394775,-0.01519591268152,0.0271564945578575,-0.999316811561584,0.0250669196248055,0.0592626705765724,-0.0938909947872162,0.993817090988159,-0.0507574938237667,-0.998165965080261,0.0329910218715668,0.0271564945578575,-0.999316811561584,0.0250669196248055,0.12067986279726,-0.0816943868994713,0.98932421207428,0.0606706477701664,0.067855104804039,0.995848715305328,0.0592626705765724,-0.0938909947872162,0.993817090988159,0.12067986279726,-0.0816943868994713,0.98932421207428,0.119504414498806,0.0566058605909348,0.991218686103821,0.213208064436913,0.0632987469434738,0.974954128265381,0.236310020089149,-0.0815067365765572,0.968253195285797,0.282246857881546,-0.0867215842008591,0.955414056777954,0.284355282783508,0.0432604402303696,0.95774245262146,0.236310020089149,-0.0815067365765572,0.968253195285797,-0.0367251299321651,-0.998544871807098,0.0394902415573597,0.116260305047035,-0.993218421936035,-0.000865067937411368,0.282246857881546,-0.0867215842008591,0.955414056777954,-0.0367251299321651,-0.998544871807098,0.0394902415573597,-0.048042293637991,-0.998845040798187,-0.000739608658477664,0.0539875216782093,-0.998106896877289,-0.0294615458697081,
- 0.116260305047035,-0.993218421936035,-0.000865067937411368,-0.999996304512024,0,0.00269331643357873,-0.999987423419952,0,0.00501608569175005,-0.999987423419952,0,0.00501608522608876,-0.999997854232788,0,0.00208742497488856,-0.998978316783905,0,-0.0451926700770855,-0.999996304512024,0,0.00269331643357873,-0.999997854232788,0,0.00208742497488856,-0.998975396156311,0,-0.0452568754553795,-0.966658711433411,0,-0.256068408489227,-0.993689060211182,0,-0.112169124186039,-0.993709921836853,0,-0.111984871327877,-0.969927132129669,0,-0.243395552039146,-0.935217678546906,1.06921479527955e-005,-0.354073345661163,-0.966658711433411,0,-0.256068408489227,-0.969927132129669,0,-0.243395552039146,-0.935241103172302,1.06790821519098e-005,-0.354011356830597,-0.648650288581848,0,-0.761086642742157,-0.758605778217316,0,-0.651549994945526,-0.75870144367218,0,-0.651438474655151,-0.658025860786438,0,-0.752995371818542,-0.570051968097687,0,-0.821608603000641,-0.648650288581848,0,-0.761086642742157,-0.658025860786438,0,-0.752995371818542,-0.570060789585114,0,-0.821602582931519,-0.152412757277489,0,-0.988316893577576,-0.25198620557785,0,-0.967730820178986,-0.249930128455162,-0.00109870277810842,-0.968263208866119,-0.1156897097826,0.000863461697008461,-0.993285059928894,-0.0521890074014664,0.000499805260915309,-0.998637080192566,-0.152412757277489,0,-0.988316893577576,-0.1156897097826,0.000863461697008461,-0.993285059928894,0.00236705550923944,0.000256459519732744,-0.999997198581696,0.00311540206894279,0.000252859521424398,-0.999995112419128,-0.0521890074014664,0.000499805260915309,-0.998637080192566,-0.1156897097826,0.000863461697008461,-0.993285059928894,-0.483602732419968,0,-0.875287592411041,-0.570051968097687,0,-0.821608603000641,-0.570060789585114,0,-0.821602582931519,-0.472301572561264,0.000197418499737978,-0.881437063217163,-0.34368509054184,0,-0.939084947109222,-0.483602732419968,0,-0.875287592411041,-0.472301572561264,0.000197418499737978,-0.881437063217163,-0.345575362443924,-0.00143645529169589,-0.938389897346497,-0.993689060211182,0,-0.112169124186039,
- -0.998978316783905,0,-0.0451926700770855,-0.998975396156311,0,-0.0452568754553795,-0.993709921836853,0,-0.111984871327877,-0.895701110363007,1.38041350510321e-005,-0.444656729698181,-0.935217678546906,1.06921479527955e-005,-0.354073345661163,-0.935241103172302,1.06790821519098e-005,-0.354011356830597,-0.889524519443512,-0.00017465345445089,-0.456887513399124,-0.816616058349609,2.02526166503958e-006,-0.577181279659271,-0.895701110363007,1.38041350510321e-005,-0.444656729698181,-0.889524519443512,-0.00017465345445089,-0.456887513399124,-0.816261649131775,-9.87663297564723e-005,-0.577682435512543,-0.758605778217316,0,-0.651549994945526,-0.816616058349609,2.02526166503958e-006,-0.577181279659271,-0.816261649131775,-9.87663297564723e-005,-0.577682435512543,-0.75870144367218,0,-0.651438474655151,-0.25198620557785,0,-0.967730820178986,-0.34368509054184,0,-0.939084947109222,-0.345575362443924,-0.00143645529169589,-0.938389897346497,-0.249930128455162,-0.00109870277810842,-0.968263208866119,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-4.46006680476785e-008,0,-1,0,0,-1,0,0,-1,-4.34485798450623e-008,0,-1,-1.30446597967904e-009,0,-1,-4.46006680476785e-008,0,-1,-4.34485798450623e-008,0,-1,1.37400057997894e-009,0,-1,6.58708287915033e-008,0,-1,-1.30446597967904e-009,0,-1,1.37400057997894e-009,0,-1,6.59436878436281e-008,0,-0.999999940395355,0,0,-1,6.58708287915033e-008,0,-1,6.59436878436281e-008,0,-0.999999940395355,0,0,-1,1.58772355263181e-008,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,1.59313291447916e-008,0,-1,1.58772355263181e-008,0,-1,1.59313291447916e-008,0,-1,-3.21623154775352e-008,0,-1,-3.36130447919913e-008,0,-1,-1.46760326114048e-009,0,-1,-3.36130447919913e-008,0,-1,-3.21623154775352e-008,0,-0.999999940395355,1.63475011305536e-009,0,-0.999999940395355,9.6887198708373e-008,0,-1,-1.46760326114048e-009,0,-0.999999940395355,1.63475011305536e-009,0,-1,9.71083125023142e-008,0,-0.999999940395355,3.02224592019229e-008,0,-0.999999940395355,9.6887198708373e-008,0,-1,9.71083125023142e-008,0,-1,3.0194872380207e-008,0,-0.999999940395355,3.02224592019229e-008,
- 0,-1,3.0194872380207e-008,0,-1,-6.49607656555418e-008,0,-1,-6.46982769580973e-008,0,-1,1.4683768867485e-008,0,-1,3.19795425696157e-008,0,-1,3.19795425696157e-008,0,-1,1.56622288471908e-008,0,-1,1.53885473253013e-008,0,-1,1.4683768867485e-008,0,-1,1.56622288471908e-008,0,-1,1.63680979881065e-008,0,-1,1.12138565100395e-008,0,-1,1.53885473253013e-008,0,-1,1.63680979881065e-008,0,-1,1.07229718437907e-008,0,-1,-4.52720243515614e-008,0,-1,1.12138565100395e-008,0,-1,1.07229718437907e-008,0,-1,-4.32286988427677e-008,0,-1,-6.49607656555418e-008,0,-1,-4.52720243515614e-008,0,-1,-4.32286988427677e-008,0,-1,-6.46982769580973e-008,0.0479784421622753,0.998702883720398,-0.0170475654304028,-0.0442979820072651,0.100400820374489,-0.993960440158844,-0.133150652050972,0.101310260593891,-0.985904276371002,-0.0322708524763584,0.999430119991302,-0.00990090426057577,0.99801117181778,0.0196788869798183,-0.0598881579935551,0.0479784421622753,0.998702883720398,-0.0170475654304028,0.0450308173894882,0.998606085777283,0.0275328271090984,0.99972265958786,0.0232658535242081,-0.00363775575533509,-0.0442979820072651,0.100400820374489,-0.993960440158844,0.99801117181778,0.0196788869798183,-0.0598881579935551,0.996705174446106,-0.0237514786422253,-0.077553890645504,-0.0477560684084892,-0.345570057630539,-0.937177062034607,-0.0477560684084892,-0.345570057630539,-0.937177062034607,0.996705174446106,-0.0237514786422253,-0.077553890645504,0.996147274971008,-0.0430390164256096,-0.0764091908931732,-0.0338468141853809,-0.701280474662781,-0.712081551551819,0.144527420401573,0.0152967283502221,0.98938250541687,0.0450308173894882,0.998606085777283,0.0275328271090984,-0.0219427607953548,0.999142944812775,0.0350984036922455,0.0382799245417118,0.0151123274117708,0.999152779579163,0.99972265958786,0.0232658535242081,-0.00363775575533509,0.144527420401573,0.0152967283502221,0.98938250541687,0.144071742892265,-0.0264084432274103,0.989214837551117,0.999604821205139,-0.0279700718820095,-0.00281868292950094,-0.0322708524763584,0.999430119991302,-0.00990090426057577,-0.992159724235535,0.0436803475022316,0.117094650864601,
- -0.983725726604462,0.0465845875442028,0.173532322049141,-0.0219427607953548,0.999142944812775,0.0350984036922455,-0.992159724235535,0.0436803475022316,0.117094650864601,-0.133150652050972,0.101310260593891,-0.985904276371002,-0.129161775112152,-0.345833718776703,-0.929363429546356,-0.99500697851181,-0.00221966858953238,0.0997805371880531,-0.99500697851181,-0.00221966858953238,0.0997805371880531,-0.129161775112152,-0.345833718776703,-0.929363429546356,-0.108850091695786,-0.701201140880585,-0.704605281352997,-0.994644343852997,-0.0216346308588982,0.101067267358303,0.0382799245417118,0.0151123274117708,0.999152779579163,-0.983725726604462,0.0465845875442028,0.173532322049141,-0.984589576721191,-0.00672620395198464,0.174751788377762,0.0383471287786961,-0.0254819188266993,0.998939633369446,0.999604821205139,-0.0279700718820095,-0.00281868292950094,0.0299030244350433,-0.998822331428528,0.0382060185074806,-0.0338468141853809,-0.701280474662781,-0.712081551551819,0.996147274971008,-0.0430390164256096,-0.0764091908931732,0.0299030244350433,-0.998822331428528,0.0382060185074806,0.144071742892265,-0.0264084432274103,0.989214837551117,0.0383471287786961,-0.0254819188266993,0.998939633369446,-0.0401497483253479,-0.998196244239807,0.0446335226297379,-0.0401497483253479,-0.998196244239807,0.0446335226297379,-0.984589576721191,-0.00672620395198464,0.174751788377762,-0.994644343852997,-0.0216346308588982,0.101067267358303,-0.108850091695786,-0.701201140880585,-0.704605281352997,0.0450308173894882,0.998606085777283,0.0275328271090984,0.0479784421622753,0.998702883720398,-0.0170475654304028,-0.0322708524763584,0.999430119991302,-0.00990090426057577,-0.0219427607953548,0.999142944812775,0.0350984036922455,0.0382799245417118,0.0151123274117708,0.999152779579163,0.0383471287786961,-0.0254819188266993,0.998939633369446,0.144071742892265,-0.0264084432274103,0.989214837551117,0.144527420401573,0.0152967283502221,0.98938250541687,-0.108850091695786,-0.701201140880585,-0.704605281352997,-0.129161775112152,-0.345833718776703,-0.929363429546356,
- -0.0477560684084892,-0.345570057630539,-0.937177062034607,-0.0338468141853809,-0.701280474662781,-0.712081551551819,0.0299030244350433,-0.998822331428528,0.0382060185074806,-0.0401497483253479,-0.998196244239807,0.0446335226297379,-0.108850091695786,-0.701201140880585,-0.704605281352997,-0.0338468141853809,-0.701280474662781,-0.712081551551819,-0.0442979820072651,0.100400820374489,-0.993960440158844,-0.0477560684084892,-0.345570057630539,-0.937177062034607,-0.129161775112152,-0.345833718776703,-0.929363429546356,-0.133150652050972,0.101310260593891,-0.985904276371002,-0.99500697851181,-0.00221966858953238,0.0997805371880531,-0.994644343852997,-0.0216346308588982,0.101067267358303,-0.984589576721191,-0.00672620395198464,0.174751788377762,-0.983725726604462,0.0465845875442028,0.173532322049141,-0.992159724235535,0.0436803475022316,0.117094650864601,0.996705174446106,-0.0237514786422253,-0.077553890645504,0.99801117181778,0.0196788869798183,-0.0598881579935551,0.99972265958786,0.0232658535242081,-0.00363775575533509,0.999604821205139,-0.0279700718820095,-0.00281868292950094,0.996147274971008,-0.0430390164256096,-0.0764091908931732,0.0479784421622753,0.998702883720398,-0.0170475654304028,0.99801117181778,0.0196788869798183,-0.0598881579935551,-0.0442979820072651,0.100400820374489,-0.993960440158844,0.144527420401573,0.0152967283502221,0.98938250541687,0.99972265958786,0.0232658535242081,-0.00363775575533509,0.0450308173894882,0.998606085777283,0.0275328271090984,-0.0322708524763584,0.999430119991302,-0.00990090426057577,-0.133150652050972,0.101310260593891,-0.985904276371002,-0.992159724235535,0.0436803475022316,0.117094650864601,0.0382799245417118,0.0151123274117708,0.999152779579163,-0.0219427607953548,0.999142944812775,0.0350984036922455,-0.983725726604462,0.0465845875442028,0.173532322049141,0.999604821205139,-0.0279700718820095,-0.00281868292950094,0.144071742892265,-0.0264084432274103,0.989214837551117,0.0299030244350433,-0.998822331428528,0.0382060185074806,-0.0401497483253479,-0.998196244239807,0.0446335226297379,
- 0.0383471287786961,-0.0254819188266993,0.998939633369446,-0.984589576721191,-0.00672620395198464,0.174751788377762,0.0338514223694801,0.99910032749176,-0.0255479235202074,-0.289518803358078,0.100268743932247,-0.951906025409698,-0.373111367225647,0.101311005651951,-0.922238528728485,-0.041510134935379,0.999137341976166,0.00122806080617011,0.952499270439148,0.0287132319062948,-0.303184181451797,0.0338514223694801,0.99910032749176,-0.0255479235202074,0.0420169793069363,0.998946845531464,0.0184261109679937,0.968042135238647,0.0323472768068314,-0.248692661523819,-0.289518803358078,0.100268743932247,-0.951906025409698,0.952499270439148,0.0287132319062948,-0.303184181451797,0.947267174720764,-0.0150981983169913,-0.320089280605316,-0.274767577648163,-0.345375120639801,-0.897339880466461,-0.274767577648163,-0.345375120639801,-0.897339880466461,0.947267174720764,-0.0150981983169913,-0.320089280605316,0.947174251079559,-0.0344497449696064,-0.318863779306412,-0.202679187059402,-0.701074600219727,-0.683678030967712,0.383612394332886,0.015835702419281,0.923358380794525,0.0420169793069363,0.998946845531464,0.0184261109679937,-0.0206056833267212,0.998894155025482,0.0422585979104042,0.283860087394714,0.0146260438486934,0.958754181861877,0.968042135238647,0.0323472768068314,-0.248692661523819,0.383612394332886,0.015835702419281,0.923358380794525,0.383403450250626,-0.0259339101612568,0.923216819763184,0.968577742576599,-0.019393352791667,-0.247953802347183,-0.041510134935379,0.999137341976166,0.00122806080617011,-0.933482110500336,0.0349327325820923,0.356918513774872,-0.911325097084045,0.0377967432141304,0.409948736429214,-0.0206056833267212,0.998894155025482,0.0422585979104042,-0.933482110500336,0.0349327325820923,0.356918513774872,-0.373111367225647,0.101311005651951,-0.922238528728485,-0.351303696632385,-0.346136331558228,-0.869928419589996,-0.940170168876648,-0.0112919844686985,0.340517908334732,-0.940170168876648,-0.0112919844686985,0.340517908334732,-0.351303696632385,-0.346136331558228,-0.869928419589996,-0.273082762956619,-0.701743841171265,-0.65801328420639,
- -0.939326822757721,-0.0308049432933331,0.341637343168259,0.283860087394714,0.0146260438486934,0.958754181861877,-0.911325097084045,0.0377967432141304,0.409948736429214,-0.911438584327698,-0.015758752822876,0.41113418340683,0.284117877483368,-0.0259586069732904,0.958437979221344,0.968577742576599,-0.019393352791667,-0.247953802347183,0.0465298593044281,-0.998557150363922,0.0268059689551592,-0.202679187059402,-0.701074600219727,-0.683678030967712,0.947174251079559,-0.0344497449696064,-0.318863779306412,0.0465298593044281,-0.998557150363922,0.0268059689551592,0.383403450250626,-0.0259339101612568,0.923216819763184,0.284117877483368,-0.0259586069732904,0.958437979221344,-0.0193502753973007,-0.998557388782501,0.050086472183466,-0.0193502753973007,-0.998557388782501,0.050086472183466,-0.911438584327698,-0.015758752822876,0.41113418340683,-0.939326822757721,-0.0308049432933331,0.341637343168259,-0.273082762956619,-0.701743841171265,-0.65801328420639,0.0420169793069363,0.998946845531464,0.0184261109679937,0.0338514223694801,0.99910032749176,-0.0255479235202074,-0.041510134935379,0.999137341976166,0.00122806080617011,-0.0206056833267212,0.998894155025482,0.0422585979104042,0.283860087394714,0.0146260438486934,0.958754181861877,0.284117877483368,-0.0259586069732904,0.958437979221344,0.383403450250626,-0.0259339101612568,0.923216819763184,0.383612394332886,0.015835702419281,0.923358380794525,-0.273082762956619,-0.701743841171265,-0.65801328420639,-0.351303696632385,-0.346136331558228,-0.869928419589996,-0.274767577648163,-0.345375120639801,-0.897339880466461,-0.202679187059402,-0.701074600219727,-0.683678030967712,0.0465298593044281,-0.998557150363922,0.0268059689551592,-0.0193502753973007,-0.998557388782501,0.050086472183466,-0.273082762956619,-0.701743841171265,-0.65801328420639,-0.202679187059402,-0.701074600219727,-0.683678030967712,-0.289518803358078,0.100268743932247,-0.951906025409698,-0.274767577648163,-0.345375120639801,-0.897339880466461,-0.351303696632385,-0.346136331558228,-0.869928419589996,-0.373111367225647,0.101311005651951,-0.922238528728485,
- -0.940170168876648,-0.0112919844686985,0.340517908334732,-0.939326822757721,-0.0308049432933331,0.341637343168259,-0.911438584327698,-0.015758752822876,0.41113418340683,-0.911325097084045,0.0377967432141304,0.409948736429214,-0.933482110500336,0.0349327325820923,0.356918513774872,0.947267174720764,-0.0150981983169913,-0.320089280605316,0.952499270439148,0.0287132319062948,-0.303184181451797,0.968042135238647,0.0323472768068314,-0.248692661523819,0.968577742576599,-0.019393352791667,-0.247953802347183,0.947174251079559,-0.0344497449696064,-0.318863779306412,0.0338514223694801,0.99910032749176,-0.0255479235202074,0.952499270439148,0.0287132319062948,-0.303184181451797,-0.289518803358078,0.100268743932247,-0.951906025409698,0.383612394332886,0.015835702419281,0.923358380794525,0.968042135238647,0.0323472768068314,-0.248692661523819,0.0420169793069363,0.998946845531464,0.0184261109679937,-0.041510134935379,0.999137341976166,0.00122806080617011,-0.373111367225647,0.101311005651951,-0.922238528728485,-0.933482110500336,0.0349327325820923,0.356918513774872,0.283860087394714,0.0146260438486934,0.958754181861877,-0.0206056833267212,0.998894155025482,0.0422585979104042,-0.911325097084045,0.0377967432141304,0.409948736429214,0.968577742576599,-0.019393352791667,-0.247953802347183,0.383403450250626,-0.0259339101612568,0.923216819763184,0.0465298593044281,-0.998557150363922,0.0268059689551592,-0.0193502753973007,-0.998557388782501,0.050086472183466,0.284117877483368,-0.0259586069732904,0.958437979221344,-0.911438584327698,-0.015758752822876,0.41113418340683,0.0142860691994429,0.999504387378693,-0.0280503015965223,-0.594243288040161,0.101501509547234,-0.797854959964752,-0.662118792533875,0.100077122449875,-0.742686629295349,-0.0468648076057434,0.998664498329163,0.0217486824840307,0.791130661964417,0.0445490553975105,-0.610022783279419,0.0142860691994429,0.999504387378693,-0.0280503015965223,0.0370478443801403,0.999262928962708,0.0100590251386166,0.82770824432373,0.0481019355356693,-0.559093296527863,-0.594243288040161,0.101501509547234,-0.797854959964752,
- 0.791130661964417,0.0445490553975105,-0.610022783279419,0.786008954048157,0.00164985563606024,-0.618212819099426,-0.56868976354599,-0.331527292728424,-0.752782702445984,-0.56868976354599,-0.331527292728424,-0.752782702445984,0.786008954048157,0.00164985563606024,-0.618212819099426,0.788732290267944,-0.00211849203333259,-0.614733278751373,-0.546721041202545,-0.468677252531052,-0.693857073783875,0.669871926307678,0.0164732988923788,0.742293953895569,0.0370478443801403,0.999262928962708,0.0100590251386166,-0.0129076102748513,0.998496174812317,0.053279735147953,0.589079320430756,0.0139577072113752,0.807954668998718,0.82770824432373,0.0481019355356693,-0.559093296527863,0.669871926307678,0.0164732988923788,0.742293953895569,0.669934570789337,-0.0253672525286675,0.741986632347107,0.829435169696808,0.00131595088168979,-0.558601260185242,-0.0468648076057434,0.998664498329163,0.0217486824840307,-0.755622088909149,0.0225431937724352,0.654619872570038,-0.716494679450989,0.0257581304758787,0.697116911411285,-0.0129076102748513,0.998496174812317,0.053279735147953,-0.755622088909149,0.0225431937724352,0.654619872570038,-0.662118792533875,0.100077122449875,-0.742686629295349,-0.626023709774017,-0.334859490394592,-0.704246699810028,-0.767172992229462,-0.0242417007684708,0.640982091426849,-0.767172992229462,-0.0242417007684708,0.640982091426849,-0.626023709774017,-0.334859490394592,-0.704246699810028,-0.482659071683884,-0.691658794879913,-0.537259876728058,-0.765961229801178,-0.0440363213419914,0.641376793384552,0.589079320430756,0.0139577072113752,0.807954668998718,-0.716494679450989,0.0257581304758787,0.697116911411285,-0.715782940387726,-0.0287432242184877,0.697730958461761,0.58948290348053,-0.0265531465411186,0.807344317436218,0.829435169696808,0.00131595088168979,-0.558601260185242,0.054785218089819,-0.998327076435089,0.0184825044125319,0.0181383565068245,-0.999648809432983,-0.0193236023187637,0.801877796649933,0.00252794730477035,-0.597482740879059,0.054785218089819,-0.998327076435089,0.0184825044125319,0.669934570789337,-0.0253672525286675,0.741986632347107,
- 0.58948290348053,-0.0265531465411186,0.807344317436218,0.0079249320551753,-0.998431265354156,0.0554267466068268,0.0079249320551753,-0.998431265354156,0.0554267466068268,-0.715782940387726,-0.0287432242184877,0.697730958461761,-0.765961229801178,-0.0440363213419914,0.641376793384552,-0.482659071683884,-0.691658794879913,-0.537259876728058,0.0370478443801403,0.999262928962708,0.0100590251386166,0.0142860691994429,0.999504387378693,-0.0280503015965223,-0.0468648076057434,0.998664498329163,0.0217486824840307,-0.0129076102748513,0.998496174812317,0.053279735147953,0.589079320430756,0.0139577072113752,0.807954668998718,0.58948290348053,-0.0265531465411186,0.807344317436218,0.669934570789337,-0.0253672525286675,0.741986632347107,0.669871926307678,0.0164732988923788,0.742293953895569,-0.482659071683884,-0.691658794879913,-0.537259876728058,-0.626023709774017,-0.334859490394592,-0.704246699810028,-0.56868976354599,-0.331527292728424,-0.752782702445984,-0.546721041202545,-0.468677252531052,-0.693857073783875,-0.555224061012268,-0.468669474124908,-0.687077224254608,-0.447554677724838,-0.697593986988068,-0.559515357017517,0.054785218089819,-0.998327076435089,0.0184825044125319,0.0079249320551753,-0.998431265354156,0.0554267466068268,-0.482659071683884,-0.691658794879913,-0.537259876728058,-0.447554677724838,-0.697593986988068,-0.559515357017517,0.00596623821184039,-0.999927580356598,-0.0104547422379255,0.0181383565068245,-0.999648809432983,-0.0193236023187637,-0.594243288040161,0.101501509547234,-0.797854959964752,-0.56868976354599,-0.331527292728424,-0.752782702445984,-0.626023709774017,-0.334859490394592,-0.704246699810028,-0.662118792533875,0.100077122449875,-0.742686629295349,-0.767172992229462,-0.0242417007684708,0.640982091426849,-0.765961229801178,-0.0440363213419914,0.641376793384552,-0.715782940387726,-0.0287432242184877,0.697730958461761,-0.716494679450989,0.0257581304758787,0.697116911411285,-0.755622088909149,0.0225431937724352,0.654619872570038,0.786008954048157,0.00164985563606024,-0.618212819099426,0.791130661964417,0.0445490553975105,-0.610022783279419,
- 0.82770824432373,0.0481019355356693,-0.559093296527863,0.829435169696808,0.00131595088168979,-0.558601260185242,0.801877796649933,0.00252794730477035,-0.597482740879059,0.801836907863617,0.00925093423575163,-0.597471296787262,0.788732290267944,-0.00211849203333259,-0.614733278751373,0.0142860691994429,0.999504387378693,-0.0280503015965223,0.791130661964417,0.0445490553975105,-0.610022783279419,-0.594243288040161,0.101501509547234,-0.797854959964752,0.669871926307678,0.0164732988923788,0.742293953895569,0.82770824432373,0.0481019355356693,-0.559093296527863,0.0370478443801403,0.999262928962708,0.0100590251386166,-0.0468648076057434,0.998664498329163,0.0217486824840307,-0.662118792533875,0.100077122449875,-0.742686629295349,-0.755622088909149,0.0225431937724352,0.654619872570038,0.589079320430756,0.0139577072113752,0.807954668998718,-0.0129076102748513,0.998496174812317,0.053279735147953,-0.716494679450989,0.0257581304758787,0.697116911411285,0.829435169696808,0.00131595088168979,-0.558601260185242,0.669934570789337,-0.0253672525286675,0.741986632347107,0.054785218089819,-0.998327076435089,0.0184825044125319,0.0079249320551753,-0.998431265354156,0.0554267466068268,0.58948290348053,-0.0265531465411186,0.807344317436218,-0.715782940387726,-0.0287432242184877,0.697730958461761,0.0134171955287457,0.999113082885742,-0.0399128831923008,-0.775593757629395,0.100928261876106,-0.623111426830292,-0.827930390834808,0.100575156509876,-0.551738917827606,-0.0337741896510124,0.999127805233002,0.0245529320091009,0.611616849899292,0.0301650892943144,-0.790578842163086,0.0134171955287457,0.999113082885742,-0.0399128831923008,0.045135110616684,0.998943269252777,-0.00867373403161764,0.655932605266571,0.0335715152323246,-0.754072546958923,-0.775593757629395,0.100928261876106,-0.623111426830292,0.611616849899292,0.0301650892943144,-0.790578842163086,0.597609043121338,-0.0139385908842087,-0.801666498184204,-0.732593357563019,-0.34549668431282,-0.586463272571564,-0.732593357563019,-0.34549668431282,-0.586463272571564,0.597609043121338,-0.0139385908842087,-0.801666498184204,
- 0.598412334918976,-0.0333322398364544,-0.80049455165863,-0.551963090896606,-0.701627612113953,-0.450616598129272,0.836628079414368,0.0158193781971931,0.547542929649353,0.045135110616684,0.998943269252777,-0.00867373403161764,0.00704824272543192,0.998900175094604,0.0463540256023407,0.774216413497925,0.0146171664819121,0.632752120494843,0.655932605266571,0.0335715152323246,-0.754072546958923,0.836628079414368,0.0158193781971931,0.547542929649353,0.836374819278717,-0.0259343255311251,0.547544300556183,0.656894445419312,-0.0182798933237791,-0.753760933876038,-0.0337741896510124,0.999127805233002,0.0245529320091009,-0.565362215042114,0.0335364490747452,0.824160635471344,-0.517547130584717,0.0366517938673496,0.854869425296783,0.00704824272543192,0.998900175094604,0.0463540256023407,-0.565362215042114,0.0335364490747452,0.824160635471344,-0.827930390834808,0.100575156509876,-0.551738917827606,-0.780358016490936,-0.345992982387543,-0.520893633365631,-0.580029487609863,-0.0123856319114566,0.814501285552979,-0.580029487609863,-0.0123856319114566,0.814501285552979,-0.780358016490936,-0.345992982387543,-0.520893633365631,-0.596587777137756,-0.701084554195404,-0.390593647956848,-0.578875422477722,-0.0319118611514568,0.814791262149811,0.774216413497925,0.0146171664819121,0.632752120494843,-0.517547130584717,0.0366517938673496,0.854869425296783,-0.516998946666718,-0.016863664612174,0.855819821357727,0.774255633354187,-0.0258897207677364,0.632343351840973,0.656894445419312,-0.0182798933237791,-0.753760933876038,0.0534937232732773,-0.998559772968292,-0.00409198645502329,-0.551963090896606,-0.701627612113953,-0.450616598129272,0.598412334918976,-0.0333322398364544,-0.80049455165863,0.0534937232732773,-0.998559772968292,-0.00409198645502329,0.836374819278717,-0.0259343255311251,0.547544300556183,0.774255633354187,-0.0258897207677364,0.632343351840973,0.0123587772250175,-0.99855762720108,0.0522481761872768,0.0123587772250175,-0.99855762720108,0.0522481761872768,-0.516998946666718,-0.016863664612174,0.855819821357727,-0.578875422477722,-0.0319118611514568,0.814791262149811,
- -0.596587777137756,-0.701084554195404,-0.390593647956848,0.045135110616684,0.998943269252777,-0.00867373403161764,0.0134171955287457,0.999113082885742,-0.0399128831923008,-0.0337741896510124,0.999127805233002,0.0245529320091009,0.00704824272543192,0.998900175094604,0.0463540256023407,0.774216413497925,0.0146171664819121,0.632752120494843,0.774255633354187,-0.0258897207677364,0.632343351840973,0.836374819278717,-0.0259343255311251,0.547544300556183,0.836628079414368,0.0158193781971931,0.547542929649353,-0.596587777137756,-0.701084554195404,-0.390593647956848,-0.780358016490936,-0.345992982387543,-0.520893633365631,-0.732593357563019,-0.34549668431282,-0.586463272571564,-0.551963090896606,-0.701627612113953,-0.450616598129272,0.0534937232732773,-0.998559772968292,-0.00409198645502329,0.0123587772250175,-0.99855762720108,0.0522481761872768,-0.596587777137756,-0.701084554195404,-0.390593647956848,-0.551963090896606,-0.701627612113953,-0.450616598129272,-0.775593757629395,0.100928261876106,-0.623111426830292,-0.732593357563019,-0.34549668431282,-0.586463272571564,-0.780358016490936,-0.345992982387543,-0.520893633365631,-0.827930390834808,0.100575156509876,-0.551738917827606,-0.580029487609863,-0.0123856319114566,0.814501285552979,-0.578875422477722,-0.0319118611514568,0.814791262149811,-0.516998946666718,-0.016863664612174,0.855819821357727,-0.517547130584717,0.0366517938673496,0.854869425296783,-0.565362215042114,0.0335364490747452,0.824160635471344,0.597609043121338,-0.0139385908842087,-0.801666498184204,0.611616849899292,0.0301650892943144,-0.790578842163086,0.655932605266571,0.0335715152323246,-0.754072546958923,0.656894445419312,-0.0182798933237791,-0.753760933876038,0.598412334918976,-0.0333322398364544,-0.80049455165863,0.0134171955287457,0.999113082885742,-0.0399128831923008,0.611616849899292,0.0301650892943144,-0.790578842163086,-0.775593757629395,0.100928261876106,-0.623111426830292,0.836628079414368,0.0158193781971931,0.547542929649353,0.655932605266571,0.0335715152323246,-0.754072546958923,0.045135110616684,0.998943269252777,-0.00867373403161764,
- -0.0337741896510124,0.999127805233002,0.0245529320091009,-0.827930390834808,0.100575156509876,-0.551738917827606,-0.565362215042114,0.0335364490747452,0.824160635471344,0.774216413497925,0.0146171664819121,0.632752120494843,0.00704824272543192,0.998900175094604,0.0463540256023407,-0.517547130584717,0.0366517938673496,0.854869425296783,0.656894445419312,-0.0182798933237791,-0.753760933876038,0.836374819278717,-0.0259343255311251,0.547544300556183,0.0534937232732773,-0.998559772968292,-0.00409198645502329,0.0123587772250175,-0.99855762720108,0.0522481761872768,0.774255633354187,-0.0258897207677364,0.632343351840973,-0.516998946666718,-0.016863664612174,0.855819821357727,-0.0080434400588274,0.99987131357193,-0.013882271014154,-0.886197507381439,0.128199338912964,-0.445217818021774,-0.917258203029633,0.133428737521172,-0.375278770923615,-0.0391848236322403,0.997481763362885,0.0591160319745541,0.422887563705444,0.0628983974456787,-0.903996646404266,-0.0080434400588274,0.99987131357193,-0.013882271014154,0.029762264341116,0.999509632587433,0.00972932018339634,0.47414493560791,0.0662995353341103,-0.877946972846985,-0.886197507381439,0.128199338912964,-0.445217818021774,0.422887563705444,0.0628983974456787,-0.903996646404266,0.40738770365715,0.018674910068512,-0.913064360618591,-0.833096504211426,-0.346856981515884,-0.430860131978989,-0.833096504211426,-0.346856981515884,-0.430860131978989,0.40738770365715,0.018674910068512,-0.913064360618591,0.408736020326614,-0.000815904175397009,-0.912652254104614,-0.6138876080513,-0.712076842784882,-0.340718001127243,0.936964869499207,0.0175818093121052,0.348980933427811,0.029762264341116,0.999509632587433,0.00972932018339634,0.00533861573785543,0.99742591381073,0.0715056881308556,0.895336806774139,0.0128011330962181,0.445205688476563,0.47414493560791,0.0662995353341103,-0.877946972846985,0.936964869499207,0.0175818093121052,0.348980933427811,0.937182784080505,-0.0241941139101982,0.347998380661011,0.47598934173584,0.0142643740400672,-0.879335343837738,-0.0391848236322403,0.997481763362885,0.0591160319745541,
- -0.357262074947357,0.00581276649609208,0.933986067771912,-0.307906299829483,0.00833515822887421,0.95138019323349,0.00533861573785543,0.99742591381073,0.0715056881308556,-0.846269249916077,-0.408646762371063,0.341813206672668,-0.857247292995453,-0.392677277326584,0.333063989877701,-0.918653607368469,-0.232960596680641,0.319068938493729,-0.918653607368469,-0.232960596680641,0.319068938493729,-0.943342506885529,-0.187874630093575,0.273510485887527,-0.975797116756439,0.0550060905516148,0.211646884679794,-0.975797057151794,0.0550060831010342,0.211646854877472,0.895336806774139,0.0128011330962181,0.445205688476563,-0.307906299829483,0.00833515822887421,0.95138019323349,-0.30649146437645,-0.0478545501828194,0.950669705867767,0.895697116851807,-0.0276727005839348,0.443802833557129,0.47598934173584,0.0142643740400672,-0.879335343837738,0.0638725608587265,-0.996977210044861,-0.0442342795431614,-0.6138876080513,-0.712076842784882,-0.340718001127243,0.408736020326614,-0.000815904175397009,-0.912652254104614,0.0638725608587265,-0.996977210044861,-0.0442342795431614,0.937182784080505,-0.0241941139101982,0.347998380661011,0.895697116851807,-0.0276727005839348,0.443802833557129,0.0360395275056362,-0.999166190624237,0.0191875696182251,0.0360395275056362,-0.999166190624237,0.0191875696182251,-0.30649146437645,-0.0478545501828194,0.950669705867767,-0.37741819024086,-0.0626332312822342,0.923922479152679,-0.64342325925827,-0.715949177742004,-0.270967066287994,0.029762264341116,0.999509632587433,0.00972932018339634,-0.0080434400588274,0.99987131357193,-0.013882271014154,-0.0391848236322403,0.997481763362885,0.0591160319745541,0.00533861573785543,0.99742591381073,0.0715056881308556,0.895336806774139,0.0128011330962181,0.445205688476563,0.895697116851807,-0.0276727005839348,0.443802833557129,0.937182784080505,-0.0241941139101982,0.347998380661011,0.936964869499207,0.0175818093121052,0.348980933427811,-0.931794226169586,-0.343997448682785,0.115868419408798,-0.943342506885529,-0.187874630093575,0.273510485887527,-0.857247292995453,-0.392677277326584,0.333063989877701,
- 0.0638725608587265,-0.996977210044861,-0.0442342795431614,0.0360395275056362,-0.999166190624237,0.0191875696182251,-0.64342325925827,-0.715949177742004,-0.270967066287994,-0.6138876080513,-0.712076842784882,-0.340718001127243,-0.357262074947357,0.00581276649609208,0.933986067771912,-0.354275763034821,-0.0307473372668028,0.93463534116745,-0.348997712135315,-0.0309232249855995,0.936613261699677,-0.371580570936203,-0.0437862053513527,0.927367627620697,-0.37741819024086,-0.0626332312822342,0.923922479152679,-0.30649146437645,-0.0478545501828194,0.950669705867767,-0.307906299829483,0.00833515822887421,0.95138019323349,0.40738770365715,0.018674910068512,-0.913064360618591,0.422887563705444,0.0628983974456787,-0.903996646404266,0.47414493560791,0.0662995353341103,-0.877946972846985,0.47598934173584,0.0142643740400672,-0.879335343837738,0.408736020326614,-0.000815904175397009,-0.912652254104614,-0.0080434400588274,0.99987131357193,-0.013882271014154,0.422887563705444,0.0628983974456787,-0.903996646404266,-0.886197507381439,0.128199338912964,-0.445217818021774,0.936964869499207,0.0175818093121052,0.348980933427811,0.47414493560791,0.0662995353341103,-0.877946972846985,0.029762264341116,0.999509632587433,0.00972932018339634,-0.0391848236322403,0.997481763362885,0.0591160319745541,-0.917258203029633,0.133428737521172,-0.375278770923615,-0.357262074947357,0.00581276649609208,0.933986067771912,0.895336806774139,0.0128011330962181,0.445205688476563,0.00533861573785543,0.99742591381073,0.0715056881308556,-0.307906299829483,0.00833515822887421,0.95138019323349,0.47598934173584,0.0142643740400672,-0.879335343837738,0.937182784080505,-0.0241941139101982,0.347998380661011,0.0638725608587265,-0.996977210044861,-0.0442342795431614,0.0360395275056362,-0.999166190624237,0.0191875696182251,0.895697116851807,-0.0276727005839348,0.443802833557129,-0.30649146437645,-0.0478545501828194,0.950669705867767,-0.0109518757089973,0.999317288398743,-0.0352871231734753,-0.991387724876404,0.102147415280342,-0.0819532796740532,-0.994767010211945,0.101759597659111,0.0091536995023489,
- -0.0139879947528243,0.998905658721924,0.0446307770907879,0.0254122596234083,0.0346006527543068,-0.999077975749969,-0.0109518757089973,0.999317288398743,-0.0352871231734753,0.0332926362752914,0.999042630195618,-0.028379475697875,0.0833665281534195,0.0378616377711296,-0.995799422264099,-0.991387724876404,0.102147415280342,-0.0819532796740532,0.0254122596234083,0.0346006527543068,-0.999077975749969,0.00820592325180769,-0.00806697271764278,-0.99993371963501,-0.934041082859039,-0.348803013563156,-0.0768352374434471,-0.934041082859039,-0.348803013563156,-0.0768352374434471,0.00820592325180769,-0.00806697271764278,-0.99993371963501,0.00919194612652063,-0.0274005569517612,-0.999582231044769,-0.694116592407227,-0.716730177402496,-0.0670829266309738,0.999745488166809,0.0160945113748312,-0.0158122759312391,0.0332926362752914,0.999042630195618,-0.028379475697875,0.0326812341809273,0.998597204685211,0.0416608266532421,0.995842397212982,0.0141452988609672,0.0899882763624191,0.0833665281534195,0.0378616377711296,-0.995799422264099,0.999745488166809,0.0160945113748312,-0.0158122759312391,0.999553859233856,-0.0252635236829519,-0.0159322023391724,0.084327295422554,-0.0130939604714513,-0.996352016925812,-0.0139879947528243,0.998905658721924,0.0446307770907879,-0.0523218512535095,0.0277994554489851,0.99824321269989,0.00561608420684934,0.0305644795298576,0.99951708316803,0.0326812341809273,0.998597204685211,0.0416608266532421,-0.0523218512535095,0.0277994554489851,0.99824321269989,-0.994767010211945,0.101759597659111,0.0091536995023489,-0.936826050281525,-0.349773854017258,0.0039137820713222,-0.0693982914090157,-0.0171902142465115,0.997440934181213,-0.0693982914090157,-0.0171902142465115,0.997440934181213,-0.936826050281525,-0.349773854017258,0.0039137820713222,-0.696568131446838,-0.717449128627777,0.0077153742313385,-0.0683814436197281,-0.0366533026099205,0.996985793113709,0.995842397212982,0.0141452988609672,0.0899882763624191,0.00561608420684934,0.0305644795298576,0.99951708316803,0.00665144622325897,-0.0223216749727726,0.999728739261627,
- 0.995661854743958,-0.0258320737630129,0.0893875136971474,0.084327295422554,-0.0130939604714513,-0.996352016925812,0.0440198592841625,-0.998266816139221,-0.0390603058040142,-0.694116592407227,-0.716730177402496,-0.0670829266309738,0.00919194612652063,-0.0274005569517612,-0.999582231044769,0.0440198592841625,-0.998266816139221,-0.0390603058040142,0.999553859233856,-0.0252635236829519,-0.0159322023391724,0.995661854743958,-0.0258320737630129,0.0893875136971474,0.0414573028683662,-0.998648822307587,0.0313357897102833,0.0414573028683662,-0.998648822307587,0.0313357897102833,0.00665144622325897,-0.0223216749727726,0.999728739261627,-0.0683814436197281,-0.0366533026099205,0.996985793113709,-0.696568131446838,-0.717449128627777,0.0077153742313385,0.0332926362752914,0.999042630195618,-0.028379475697875,-0.0109518757089973,0.999317288398743,-0.0352871231734753,-0.0139879947528243,0.998905658721924,0.0446307770907879,0.0326812341809273,0.998597204685211,0.0416608266532421,0.995842397212982,0.0141452988609672,0.0899882763624191,0.995661854743958,-0.0258320737630129,0.0893875136971474,0.999553859233856,-0.0252635236829519,-0.0159322023391724,0.999745488166809,0.0160945113748312,-0.0158122759312391,-0.696568131446838,-0.717449128627777,0.0077153742313385,-0.936826050281525,-0.349773854017258,0.0039137820713222,-0.934041082859039,-0.348803013563156,-0.0768352374434471,-0.694116592407227,-0.716730177402496,-0.0670829266309738,0.0440198592841625,-0.998266816139221,-0.0390603058040142,0.0414573028683662,-0.998648822307587,0.0313357897102833,-0.696568131446838,-0.717449128627777,0.0077153742313385,-0.694116592407227,-0.716730177402496,-0.0670829266309738,-0.991387724876404,0.102147415280342,-0.0819532796740532,-0.934041082859039,-0.348803013563156,-0.0768352374434471,-0.936826050281525,-0.349773854017258,0.0039137820713222,-0.994767010211945,0.101759597659111,0.0091536995023489,-0.0693982914090157,-0.0171902142465115,0.997440934181213,-0.0683814436197281,-0.0366533026099205,0.996985793113709,0.00665144622325897,-0.0223216749727726,0.999728739261627,
- 0.00561608420684934,0.0305644795298576,0.99951708316803,-0.0523218512535095,0.0277994554489851,0.99824321269989,0.00820592325180769,-0.00806697271764278,-0.99993371963501,0.0254122596234083,0.0346006527543068,-0.999077975749969,0.0833665281534195,0.0378616377711296,-0.995799422264099,0.084327295422554,-0.0130939604714513,-0.996352016925812,0.00919194612652063,-0.0274005569517612,-0.999582231044769,-0.0109518757089973,0.999317288398743,-0.0352871231734753,0.0254122596234083,0.0346006527543068,-0.999077975749969,-0.991387724876404,0.102147415280342,-0.0819532796740532,0.999745488166809,0.0160945113748312,-0.0158122759312391,0.0833665281534195,0.0378616377711296,-0.995799422264099,0.0332926362752914,0.999042630195618,-0.028379475697875,-0.0139879947528243,0.998905658721924,0.0446307770907879,-0.994767010211945,0.101759597659111,0.0091536995023489,-0.0523218512535095,0.0277994554489851,0.99824321269989,0.995842397212982,0.0141452988609672,0.0899882763624191,0.0326812341809273,0.998597204685211,0.0416608266532421,0.00561608420684934,0.0305644795298576,0.99951708316803,0.084327295422554,-0.0130939604714513,-0.996352016925812,0.999553859233856,-0.0252635236829519,-0.0159322023391724,0.0440198592841625,-0.998266816139221,-0.0390603058040142,0.0414573028683662,-0.998648822307587,0.0313357897102833,0.995661854743958,-0.0258320737630129,0.0893875136971474,0.00665144622325897,-0.0223216749727726,0.999728739261627,0.00682930368930101,0.854167640209198,-0.519952774047852,0.00682930368930101,0.854167699813843,-0.519952774047852,0.0068293041549623,0.854167699813843,-0.519952833652496,0.00682930368930101,0.854167699813843,-0.519952774047852,0.502795577049255,0.864000380039215,-0.0264563690871,0.502795577049255,0.86400032043457,-0.0264563653618097,0.502795577049255,0.864000380039215,-0.0264563690871,0.502795577049255,0.86400032043457,-0.0264563653618097,-0.459832966327667,-0.000477107940241694,0.888005316257477,-0.816263258457184,-0.429017722606659,-0.386856555938721,-0.726980209350586,-0.585039377212524,-0.359484046697617,-0.41751566529274,-0.0626106411218643,0.906510055065155,
- -0.45531165599823,0.00830276124179363,0.890293419361115,-0.883328199386597,0.468549847602844,0.0138774113729596,-0.939066231250763,0.343271970748901,0.0178621299564838,-0.45531165599823,0.00830276124179363,0.890293419361115,-0.939066231250763,0.343271970748901,0.0178621299564838,-0.816263258457184,-0.429017722606659,-0.386856555938721,-0.459832966327667,-0.000477107940241694,0.888005316257477,-0.525912761688232,0.804223001003265,-0.276841163635254,-0.883328199386597,0.468549847602844,0.0138774113729596,-0.518276870250702,0.816714107990265,-0.253707081079483,-0.632047712802887,-0.564037561416626,-0.531391799449921,-0.636057496070862,-0.553154706954956,-0.538006246089935,0.733764350414276,-0.676131665706635,-0.0666008517146111,0.401626795530319,-0.83009260892868,0.386836171150208,-0.636057496070862,-0.553154706954956,-0.538006246089935,-0.632047712802887,-0.564037561416626,-0.531391799449921,-0.716518759727478,-0.331521362066269,-0.613754391670227,-0.712171196937561,-0.295926988124847,-0.636584103107452,-0.741895437240601,-0.315201908349991,-0.591809928417206,-0.759961426258087,-0.373223811388016,-0.532130241394043,-0.487813800573349,0.800612092018127,-0.347933650016785,-0.4287930727005,0.787700176239014,-0.44234025478363,0.401626795530319,-0.83009260892868,0.386836171150208,0.733764350414276,-0.676131665706635,-0.0666008517146111,0.212114006280899,-0.958320438861847,-0.191388413310051,0.035145103931427,-0.998549163341522,0.0407969504594803,0.442787677049637,-0.825479984283447,0.350031286478043,0.495341062545776,-0.813506186008453,0.304704636335373,-0.702425360679626,-0.522419333457947,-0.483401089906693,-0.673527479171753,-0.554260015487671,-0.489036560058594,0.508275628089905,-0.802470624446869,0.312564849853516,0.423533350229263,-0.890558004379272,-0.165909171104431,0.077874980866909,-0.93119877576828,0.356095761060715,-0.41751566529274,-0.0626106411218643,0.906510055065155,-0.441551029682159,-0.0335883684456348,0.896607220172882,-0.443624407052994,0.0819125026464462,0.892461478710175,-0.478762865066528,0.0556117556989193,0.876181185245514,
- -0.45531165599823,0.00830276124179363,0.890293419361115,-0.459832966327667,-0.000477107940241694,0.888005316257477,-0.759961426258087,-0.373223811388016,-0.532130241394043,-0.741895437240601,-0.315201908349991,-0.591809928417206,-0.673527479171753,-0.554260015487671,-0.489036560058594,-0.883328199386597,0.468549847602844,0.0138774113729596,-0.525912761688232,0.804223001003265,-0.276841163635254,-0.81775039434433,-0.399697363376617,-0.414157301187515,-0.939066231250763,0.343271970748901,0.0178621299564838,-0.939066231250763,0.343271970748901,0.0178621299564838,-0.81775039434433,-0.399697363376617,-0.414157301187515,-0.816263258457184,-0.429017722606659,-0.386856555938721,-0.883328199386597,0.468549847602844,0.0138774113729596,-0.45531165599823,0.00830276124179363,0.890293419361115,-0.478762865066528,0.0556117556989193,0.876181185245514,-0.518276870250702,0.816714107990265,-0.253707081079483,0.466294378042221,-0.820547640323639,0.330561906099319,-0.41751566529274,-0.0626106411218643,0.906510055065155,-0.726980209350586,-0.585039377212524,-0.359484046697617,-0.759961426258087,-0.373223811388016,-0.532130241394043,-0.767002940177917,-0.378092408180237,-0.518413364887238,-0.538050413131714,0.796972751617432,-0.274474084377289,-0.487813800573349,0.800612092018127,-0.347933650016785,0.736058413982391,0.0547020323574543,-0.674704134464264,0.752772629261017,-0.00570055143907666,-0.658255934715271,-0.64118754863739,-0.30752357840538,-0.703070282936096,-0.422308087348938,0.792034029960632,-0.440837770700455,-0.593745589256287,-0.53831934928894,-0.598062217235565,-0.562577605247498,-0.535450100898743,-0.629920363426209,0.415645003318787,-0.829195857048035,0.37372899055481,0.401312351226807,-0.831282615661621,0.384600579738617,-0.67003470659256,-0.320589870214462,-0.669533908367157,-0.64118754863739,-0.30752357840538,-0.703070282936096,-0.562577605247498,-0.535450100898743,-0.629920363426209,-0.593745589256287,-0.53831934928894,-0.598062217235565,0.401312351226807,-0.831282615661621,0.384600579738617,0.415645003318787,-0.829195857048035,0.37372899055481,
- 0.0928060412406921,-0.995643615722656,-0.00900067295879126,0.0567345805466175,-0.99812924861908,0.0227855015546083,0.414965778589249,-0.805935859680176,0.422221302986145,-0.712171196937561,-0.295926988124847,-0.636584103107452,-0.716518759727478,-0.331521362066269,-0.613754391670227,-0.435632556676865,0.787088334560394,-0.436710804700851,-0.466132313013077,0.801126003265381,-0.375390291213989,0.423533350229263,-0.890558004379272,-0.165909171104431,0.485065698623657,-0.822701871395111,0.296433597803116,-0.711327850818634,-0.592520117759705,-0.378064274787903,-0.646399021148682,-0.601718723773956,-0.469151139259338,-0.775659441947937,-0.408316969871521,-0.481279343366623,-0.813712894916534,-0.380829095840454,-0.439136207103729,-0.488573491573334,0.802779853343964,-0.34181934595108,-0.429837942123413,0.799593448638916,-0.419392049312592,0.495341062545776,-0.813506186008453,0.304704636335373,0.077874980866909,-0.93119877576828,0.356095761060715,-0.725046038627625,-0.48154228925705,-0.492367029190063,-0.702425360679626,-0.522419333457947,-0.483401089906693,0.485065698623657,-0.822701871395111,0.296433597803116,0.466294378042221,-0.820547640323639,0.330561906099319,-0.726980209350586,-0.585039377212524,-0.359484046697617,-0.711327850818634,-0.592520117759705,-0.378064274787903,0.485065698623657,-0.822701871395111,0.296433597803116,0.423533350229263,-0.890558004379272,-0.165909171104431,0.508275628089905,-0.802470624446869,0.312564849853516,0.442787677049637,-0.825479984283447,0.350031286478043,-0.0269758906215429,-0.993009507656097,0.114910945296288,0.0558775924146175,-0.99836254119873,0.0122388070449233,-0.767002940177917,-0.378092408180237,-0.518413364887238,-0.759961426258087,-0.373223811388016,-0.532130241394043,-0.673527479171753,-0.554260015487671,-0.489036560058594,-0.702425360679626,-0.522419333457947,-0.483401089906693,-0.725046038627625,-0.48154228925705,-0.492367029190063,-0.813712894916534,-0.380829095840454,-0.439136207103729,-0.775659441947937,-0.408316969871521,-0.481279343366623,-0.646399021148682,-0.601718723773956,-0.469151139259338,
- -0.711327850818634,-0.592520117759705,-0.378064274787903,-0.64118754863739,-0.30752357840538,-0.703070282936096,-0.67003470659256,-0.320589870214462,-0.669533908367157,-0.456439971923828,0.790471255779266,-0.408433139324188,-0.422308087348938,0.792034029960632,-0.440837770700455,-0.562577605247498,-0.535450100898743,-0.629920363426209,0.751207411289215,-0.0114038959145546,-0.659967839717865,0.78739470243454,-0.0567820109426975,-0.613828539848328,0.415645003318787,-0.829195857048035,0.37372899055481,-0.64118754863739,-0.30752357840538,-0.703070282936096,0.752772629261017,-0.00570055143907666,-0.658255934715271,0.751207411289215,-0.0114038959145546,-0.659967839717865,-0.562577605247498,-0.535450100898743,-0.629920363426209,0.415645003318787,-0.829195857048035,0.37372899055481,0.78739470243454,-0.0567820109426975,-0.613828539848328,0.764353632926941,-0.0280694738030434,-0.64418613910675,0.0928060412406921,-0.995643615722656,-0.00900067295879126,-0.716518759727478,-0.331521362066269,-0.613754391670227,-0.741895437240601,-0.315201908349991,-0.591809928417206,-0.4287930727005,0.787700176239014,-0.44234025478363,-0.435632556676865,0.787088334560394,-0.436710804700851,-0.632047712802887,-0.564037561416626,-0.531391799449921,-0.673527479171753,-0.554260015487671,-0.489036560058594,-0.741895437240601,-0.315201908349991,-0.591809928417206,-0.716518759727478,-0.331521362066269,-0.613754391670227,-0.673527479171753,-0.554260015487671,-0.489036560058594,-0.632047712802887,-0.564037561416626,-0.531391799449921,0.401626795530319,-0.83009260892868,0.386836171150208,0.442787677049637,-0.825479984283447,0.350031286478043,0.442787677049637,-0.825479984283447,0.350031286478043,0.401626795530319,-0.83009260892868,0.386836171150208,0.035145103931427,-0.998549163341522,0.0407969504594803,-0.0269758906215429,-0.993009507656097,0.114910945296288,-0.67003470659256,-0.320589870214462,-0.669533908367157,-0.712171196937561,-0.295926988124847,-0.636584103107452,-0.466132313013077,0.801126003265381,-0.375390291213989,-0.456439971923828,0.790471255779266,-0.408433139324188,
- -0.712171196937561,-0.295926988124847,-0.636584103107452,-0.67003470659256,-0.320589870214462,-0.669533908367157,-0.593745589256287,-0.53831934928894,-0.598062217235565,-0.636057496070862,-0.553154706954956,-0.538006246089935,-0.636057496070862,-0.553154706954956,-0.538006246089935,-0.593745589256287,-0.53831934928894,-0.598062217235565,0.401312351226807,-0.831282615661621,0.384600579738617,0.733764350414276,-0.676131665706635,-0.0666008517146111,0.733764350414276,-0.676131665706635,-0.0666008517146111,0.401312351226807,-0.831282615661621,0.384600579738617,0.414965778589249,-0.805935859680176,0.422221302986145,0.414965778589249,-0.805935859680176,0.422221302986145,0.0567345805466175,-0.99812924861908,0.0227855015546083,-0.588183045387268,-0.482240617275238,0.649218499660492,0.733764350414276,-0.676131665706635,-0.0666008517146111,0.414965778589249,-0.805935859680176,0.422221302986145,-0.588183045387268,-0.482240617275238,0.649218499660492,0.212114006280899,-0.958320438861847,-0.191388413310051,0.442787677049637,-0.825479984283447,0.350031286478043,0.0558775924146175,-0.99836254119873,0.0122388070449233,0.0468637831509113,-0.998578071594238,0.0254063755273819,0.508275628089905,-0.802470624446869,0.312564849853516,0.495341062545776,-0.813506186008453,0.304704636335373,-0.813712894916534,-0.380829095840454,-0.439136207103729,-0.81775039434433,-0.399697363376617,-0.414157301187515,-0.525912761688232,0.804223001003265,-0.276841163635254,-0.488573491573334,0.802779853343964,-0.34181934595108,-0.816263258457184,-0.429017722606659,-0.386856555938721,-0.81775039434433,-0.399697363376617,-0.414157301187515,-0.813712894916534,-0.380829095840454,-0.439136207103729,-0.711327850818634,-0.592520117759705,-0.378064274787903,-0.726980209350586,-0.585039377212524,-0.359484046697617,-0.767002940177917,-0.378092408180237,-0.518413364887238,-0.775659441947937,-0.408316969871521,-0.481279343366623,-0.429837942123413,0.799593448638916,-0.419392049312592,-0.538050413131714,0.796972751617432,-0.274474084377289,-0.775659441947937,-0.408316969871521,-0.481279343366623,
- -0.767002940177917,-0.378092408180237,-0.518413364887238,-0.725046038627625,-0.48154228925705,-0.492367029190063,-0.646399021148682,-0.601718723773956,-0.469151139259338,0.077874980866909,-0.93119877576828,0.356095761060715,0.423533350229263,-0.890558004379272,-0.165909171104431,-0.646399021148682,-0.601718723773956,-0.469151139259338,-0.725046038627625,-0.48154228925705,-0.492367029190063,0.508275628089905,-0.802470624446869,0.312564849853516,0.077874980866909,-0.93119877576828,0.356095761060715,0.495341062545776,-0.813506186008453,0.304704636335373,-0.443624407052994,0.0819125026464462,0.892461478710175,-0.50202751159668,0.83366447687149,-0.23015633225441,-0.518276870250702,0.816714107990265,-0.253707081079483,-0.478762865066528,0.0556117556989193,0.876181185245514,0.00277479481883347,-0.994888305664063,0.100943468511105,-0.441551029682159,-0.0335883684456348,0.896607220172882,-0.41751566529274,-0.0626106411218643,0.906510055065155,0.466294378042221,-0.820547640323639,0.330561906099319,0.0468637831509113,-0.998578071594238,0.0254063755273819,0.00277479481883347,-0.994888305664063,0.100943468511105,0.466294378042221,-0.820547640323639,0.330561906099319,0.485065698623657,-0.822701871395111,0.296433597803116,0.508275628089905,-0.802470624446869,0.312564849853516,0.760018646717072,0.0740467831492424,-0.645669162273407,0.764353632926941,-0.0280694738030434,-0.64418613910675,0.78739470243454,-0.0567820109426975,-0.613828539848328,0.751207411289215,-0.0114038959145546,-0.659967839717865,0.752772629261017,-0.00570055143907666,-0.658255934715271,0.736058413982391,0.0547020323574543,-0.674704134464264,-0.428415238857269,-0.000325862551108003,0.903581857681274,-0.464430212974548,-0.0553553774952888,0.88387805223465,0.690686821937561,-0.580375254154205,0.431412070989609,0.766327857971191,-0.412448734045029,0.492572486400604,-0.432245284318924,0.00699235871434212,0.901728928089142,0.469515413045883,0.323490113019943,0.821528732776642,0.448944687843323,0.445965766906738,0.774314641952515,-0.432245284318924,0.00699235871434212,0.901728928089142,
- -0.428415238857269,-0.000325862551108003,0.903581857681274,0.766327857971191,-0.412448734045029,0.492572486400604,0.469515413045883,0.323490113019943,0.821528732776642,0.514683663845062,0.803786814212799,0.298374861478806,0.494327694177628,0.814370393753052,0.304041177034378,0.448944687843323,0.445965766906738,0.774314641952515,0.631404280662537,-0.570806741714478,0.524888932704926,-0.459759533405304,-0.826724946498871,-0.324263751506805,0.0428956523537636,-0.652145743370056,-0.756879150867462,0.583941340446472,-0.559389233589172,0.588299453258514,0.583941340446472,-0.559389233589172,0.588299453258514,0.687886655330658,-0.298995196819305,0.661372661590576,0.73079925775528,-0.334770858287811,0.594862043857574,0.631404280662537,-0.570806741714478,0.524888932704926,0.713122248649597,-0.320956170558929,0.623252630233765,0.513118743896484,0.792052507400513,0.330699414014816,0.499893039464951,0.801631689071655,0.327862322330475,0.772610425949097,-0.379446178674698,0.509012520313263,-0.459759533405304,-0.826724946498871,-0.324263751506805,0.035145103931427,-0.998549163341522,0.0407969504594803,0.212114006280899,-0.958320438861847,-0.191388413310051,0.0428956523537636,-0.652145743370056,-0.756879150867462,-0.467754274606705,-0.818878591060638,-0.332631468772888,0.646916389465332,-0.565171182155609,0.511938095092773,0.701308190822601,-0.53460556268692,0.471554547548294,-0.468234121799469,-0.809661090373993,-0.353844076395035,-0.508022308349609,-0.80248498916626,-0.312939584255219,-0.37592139840126,-0.91705709695816,0.133001536130905,-0.010795877315104,-0.863740384578705,-0.50382137298584,-0.464430212974548,-0.0553553774952888,0.88387805223465,-0.428415238857269,-0.000325862551108003,0.903581857681274,-0.432245284318924,0.00699235871434212,0.901728928089142,-0.40797683596611,0.0515300147235394,0.911536931991577,-0.443624407052994,0.0819125026464462,0.892461478710175,-0.441551029682159,-0.0335883684456348,0.896607220172882,0.772610425949097,-0.379446178674698,0.509012520313263,0.646916389465332,-0.565171182155609,0.511938095092773,
- 0.713122248649597,-0.320956170558929,0.623252630233765,0.448944687843323,0.445965766906738,0.774314641952515,0.469515413045883,0.323490113019943,0.821528732776642,0.791204392910004,-0.376041799783707,0.482273876667023,0.514683663845062,0.803786814212799,0.298374861478806,0.469515413045883,0.323490113019943,0.821528732776642,0.766327857971191,-0.412448734045029,0.492572486400604,0.791204392910004,-0.376041799783707,0.482273876667023,0.448944687843323,0.445965766906738,0.774314641952515,0.494327694177628,0.814370393753052,0.304041177034378,-0.40797683596611,0.0515300147235394,0.911536931991577,-0.432245284318924,0.00699235871434212,0.901728928089142,-0.533659219741821,-0.81858628988266,-0.21242456138134,0.690686821937561,-0.580375254154205,0.431412070989609,-0.464430212974548,-0.0553553774952888,0.88387805223465,0.772610425949097,-0.379446178674698,0.509012520313263,0.499893039464951,0.801631689071655,0.327862322330475,0.448265731334686,0.798271954059601,0.402268439531326,0.762035250663757,-0.385154247283936,0.520536661148071,0.786482214927673,0.0502404682338238,-0.61556601524353,0.416638970375061,0.794461369514465,0.441863179206848,0.675610601902008,-0.3051997423172,0.671121060848236,0.773209273815155,-0.00476244557648897,-0.634133100509644,0.564540386199951,-0.549860537052155,0.61558723449707,-0.368610173463821,-0.826802432537079,-0.42488157749176,-0.355358958244324,-0.82553642988205,-0.438417255878448,0.602908432483673,-0.546336054801941,0.581393361091614,0.637937545776367,-0.319959461688995,0.700472474098206,0.564540386199951,-0.549860537052155,0.61558723449707,0.602908432483673,-0.546336054801941,0.581393361091614,0.675610601902008,-0.3051997423172,0.671121060848236,-0.368610173463821,-0.826802432537079,-0.42488157749176,-0.401900678873062,-0.807306945323944,-0.432124316692352,0.0567345805466175,-0.99812924861908,0.0227855015546083,0.0928060412406921,-0.995643615722656,-0.00900067295879126,-0.355358958244324,-0.82553642988205,-0.438417255878448,0.687886655330658,-0.298995196819305,0.661372661590576,0.405715465545654,0.804770827293396,0.433288395404816,
- 0.508618116378784,0.788462162017822,0.345883131027222,0.73079925775528,-0.334770858287811,0.594862043857574,-0.010795877315104,-0.863740384578705,-0.50382137298584,0.721240937709808,-0.597698628902435,0.350097000598907,0.698463320732117,-0.590439558029175,0.404388546943665,-0.514068007469177,-0.819998979568481,-0.251666009426117,0.781845152378082,-0.414525657892227,0.465710937976837,0.570601463317871,0.802070260047913,0.176344484090805,0.554583072662354,0.799972355365753,0.22908915579319,0.807870447635651,-0.363963216543198,0.463547438383102,-0.468234121799469,-0.809661090373993,-0.353844076395035,0.701308190822601,-0.53460556268692,0.471554547548294,0.721752285957336,-0.488157033920288,0.49068957567215,-0.37592139840126,-0.91705709695816,0.133001536130905,-0.514068007469177,-0.819998979568481,-0.251666009426117,0.698463320732117,-0.590439558029175,0.404388546943665,0.690686821937561,-0.580375254154205,0.431412070989609,-0.533659219741821,-0.81858628988266,-0.21242456138134,-0.514068007469177,-0.819998979568481,-0.251666009426117,-0.508022308349609,-0.80248498916626,-0.312939584255219,-0.010795877315104,-0.863740384578705,-0.50382137298584,-0.467754274606705,-0.818878591060638,-0.332631468772888,0.0558775924146175,-0.99836254119873,0.0122388070449233,-0.0269758906215429,-0.993009507656097,0.114910945296288,0.762035250663757,-0.385154247283936,0.520536661148071,0.721752285957336,-0.488157033920288,0.49068957567215,0.701308190822601,-0.53460556268692,0.471554547548294,0.646916389465332,-0.565171182155609,0.511938095092773,0.772610425949097,-0.379446178674698,0.509012520313263,0.807870447635651,-0.363963216543198,0.463547438383102,0.698463320732117,-0.590439558029175,0.404388546943665,0.721240937709808,-0.597698628902435,0.350097000598907,0.781845152378082,-0.414525657892227,0.465710937976837,0.675610601902008,-0.3051997423172,0.671121060848236,0.416638970375061,0.794461369514465,0.441863179206848,0.384974658489227,0.791733980178833,0.474290728569031,0.637937545776367,-0.319959461688995,0.700472474098206,0.602908432483673,-0.546336054801941,0.581393361091614,
- -0.355358958244324,-0.82553642988205,-0.438417255878448,0.739022433757782,-0.0523541830480099,-0.671643435955048,0.774423003196716,-0.0094843739643693,-0.632597148418427,0.675610601902008,-0.3051997423172,0.671121060848236,0.602908432483673,-0.546336054801941,0.581393361091614,0.774423003196716,-0.0094843739643693,-0.632597148418427,0.773209273815155,-0.00476244557648897,-0.634133100509644,-0.355358958244324,-0.82553642988205,-0.438417255878448,0.0928060412406921,-0.995643615722656,-0.00900067295879126,0.764353632926941,-0.0280694738030434,-0.64418613910675,0.739022433757782,-0.0523541830480099,-0.671643435955048,0.73079925775528,-0.334770858287811,0.594862043857574,0.508618116378784,0.788462162017822,0.345883131027222,0.513118743896484,0.792052507400513,0.330699414014816,0.713122248649597,-0.320956170558929,0.623252630233765,0.631404280662537,-0.570806741714478,0.524888932704926,0.73079925775528,-0.334770858287811,0.594862043857574,0.713122248649597,-0.320956170558929,0.623252630233765,0.646916389465332,-0.565171182155609,0.511938095092773,0.646916389465332,-0.565171182155609,0.511938095092773,-0.467754274606705,-0.818878591060638,-0.332631468772888,-0.459759533405304,-0.826724946498871,-0.324263751506805,0.631404280662537,-0.570806741714478,0.524888932704926,-0.467754274606705,-0.818878591060638,-0.332631468772888,-0.0269758906215429,-0.993009507656097,0.114910945296288,0.035145103931427,-0.998549163341522,0.0407969504594803,-0.459759533405304,-0.826724946498871,-0.324263751506805,0.637937545776367,-0.319959461688995,0.700472474098206,0.384974658489227,0.791733980178833,0.474290728569031,0.405715465545654,0.804770827293396,0.433288395404816,0.687886655330658,-0.298995196819305,0.661372661590576,0.687886655330658,-0.298995196819305,0.661372661590576,0.583941340446472,-0.559389233589172,0.588299453258514,0.564540386199951,-0.549860537052155,0.61558723449707,0.637937545776367,-0.319959461688995,0.700472474098206,0.583941340446472,-0.559389233589172,0.588299453258514,0.0428956523537636,-0.652145743370056,-0.756879150867462,
- -0.368610173463821,-0.826802432537079,-0.42488157749176,0.564540386199951,-0.549860537052155,0.61558723449707,0.0428956523537636,-0.652145743370056,-0.756879150867462,-0.401900678873062,-0.807306945323944,-0.432124316692352,-0.368610173463821,-0.826802432537079,-0.42488157749176,-0.401900678873062,-0.807306945323944,-0.432124316692352,-0.588183045387268,-0.482240617275238,0.649218499660492,0.0567345805466175,-0.99812924861908,0.0227855015546083,0.0428956523537636,-0.652145743370056,-0.756879150867462,0.212114006280899,-0.958320438861847,-0.191388413310051,-0.588183045387268,-0.482240617275238,0.649218499660492,-0.401900678873062,-0.807306945323944,-0.432124316692352,-0.467754274606705,-0.818878591060638,-0.332631468772888,-0.468234121799469,-0.809661090373993,-0.353844076395035,-0.508022308349609,-0.80248498916626,-0.312939584255219,0.0468637831509113,-0.998578071594238,0.0254063755273819,0.0558775924146175,-0.99836254119873,0.0122388070449233,0.807870447635651,-0.363963216543198,0.463547438383102,0.554583072662354,0.799972355365753,0.22908915579319,0.514683663845062,0.803786814212799,0.298374861478806,0.791204392910004,-0.376041799783707,0.482273876667023,0.766327857971191,-0.412448734045029,0.492572486400604,0.690686821937561,-0.580375254154205,0.431412070989609,0.698463320732117,-0.590439558029175,0.404388546943665,0.807870447635651,-0.363963216543198,0.463547438383102,0.791204392910004,-0.376041799783707,0.482273876667023,0.762035250663757,-0.385154247283936,0.520536661148071,0.448265731334686,0.798271954059601,0.402268439531326,0.570601463317871,0.802070260047913,0.176344484090805,0.781845152378082,-0.414525657892227,0.465710937976837,0.781845152378082,-0.414525657892227,0.465710937976837,0.721240937709808,-0.597698628902435,0.350097000598907,0.721752285957336,-0.488157033920288,0.49068957567215,0.762035250663757,-0.385154247283936,0.520536661148071,-0.37592139840126,-0.91705709695816,0.133001536130905,0.721752285957336,-0.488157033920288,0.49068957567215,0.721240937709808,-0.597698628902435,0.350097000598907,
- -0.010795877315104,-0.863740384578705,-0.50382137298584,-0.508022308349609,-0.80248498916626,-0.312939584255219,-0.468234121799469,-0.809661090373993,-0.353844076395035,-0.37592139840126,-0.91705709695816,0.133001536130905,-0.441551029682159,-0.0335883684456348,0.896607220172882,0.00277479481883347,-0.994888305664063,0.100943468511105,-0.533659219741821,-0.81858628988266,-0.21242456138134,-0.464430212974548,-0.0553553774952888,0.88387805223465,0.00277479481883347,-0.994888305664063,0.100943468511105,0.0468637831509113,-0.998578071594238,0.0254063755273819,-0.508022308349609,-0.80248498916626,-0.312939584255219,-0.514068007469177,-0.819998979568481,-0.251666009426117,-0.533659219741821,-0.81858628988266,-0.21242456138134,0.764353632926941,-0.0280694738030434,-0.64418613910675,0.760018646717072,0.0740467831492424,-0.645669162273407,0.786482214927673,0.0502404682338238,-0.61556601524353,0.773209273815155,-0.00476244557648897,-0.634133100509644,0.774423003196716,-0.0094843739643693,-0.632597148418427,0.739022433757782,-0.0523541830480099,-0.671643435955048,0.760018646717072,0.0740467831492424,-0.645669162273407,0.395391076803207,0.826291263103485,0.401134163141251,0.416638970375061,0.794461369514465,0.441863179206848,0.786482214927673,0.0502404682338238,-0.61556601524353,-0.38488557934761,0.824151992797852,-0.415495634078979,0.760018646717072,0.0740467831492424,-0.645669162273407,0.736058413982391,0.0547020323574543,-0.674704134464264,-0.422308087348938,0.792034029960632,-0.440837770700455,0.461060732603073,0.833137452602386,0.305458575487137,-0.443624407052994,0.0819125026464462,0.892461478710175,-0.40797683596611,0.0515300147235394,0.911536931991577,0.494327694177628,0.814370393753052,0.304041177034378,-0.423127323389053,0.823814749717712,-0.377216756343842,0.351864218711853,0.825409233570099,0.441464871168137,0.395391076803207,0.826291263103485,0.401134163141251,-0.38488557934761,0.824151992797852,-0.415495634078979,0.351864218711853,0.825409233570099,0.441464871168137,-0.423127323389053,0.823814749717712,-0.377216756343842,
- -0.45508474111557,0.826984584331512,-0.330142945051193,0.357101619243622,0.829987943172455,0.428483963012695,0.357101619243622,0.829987943172455,0.428483963012695,-0.45508474111557,0.826984584331512,-0.330142945051193,-0.398365259170532,0.822693645954132,-0.405561804771423,0.472951114177704,0.824231028556824,0.311384916305542,-0.491185218095779,0.832259774208069,-0.257061868906021,0.413168370723724,0.833492934703827,0.366853535175323,0.45468732714653,0.835306882858276,0.309066236019135,-0.456170529127121,0.833734512329102,-0.311119139194489,0.413168370723724,0.833492934703827,0.366853535175323,-0.491185218095779,0.832259774208069,-0.257061868906021,-0.354229509830475,0.822802603244781,-0.444429159164429,0.560722708702087,0.822904646396637,0.0917491167783737,0.560722708702087,0.822904646396637,0.0917491167783737,-0.354229509830475,0.822802603244781,-0.444429159164429,-0.46369343996048,0.834510147571564,-0.29762601852417,0.502554833889008,0.83368855714798,0.228914946317673,0.502554833889008,0.83368855714798,0.228914946317673,-0.46369343996048,0.834510147571564,-0.29762601852417,-0.50202751159668,0.83366447687149,-0.23015633225441,0.461060732603073,0.833137452602386,0.305458575487137,-0.387876272201538,0.819227755069733,-0.422395497560501,0.487641274929047,0.8243767619133,0.287417978048325,0.472951114177704,0.824231028556824,0.311384916305542,-0.398365259170532,0.822693645954132,-0.405561804771423,0.487641274929047,0.8243767619133,0.287417978048325,-0.387876272201538,0.819227755069733,-0.422395497560501,-0.456170529127121,0.833734512329102,-0.311119139194489,0.45468732714653,0.835306882858276,0.309066236019135,-0.4287930727005,0.787700176239014,-0.44234025478363,-0.487813800573349,0.800612092018127,-0.347933650016785,-0.456170529127121,0.833734512329102,-0.311119139194489,-0.387876272201538,0.819227755069733,-0.422395497560501,-0.435632556676865,0.787088334560394,-0.436710804700851,-0.398365259170532,0.822693645954132,-0.405561804771423,-0.45508474111557,0.826984584331512,-0.330142945051193,-0.466132313013077,0.801126003265381,-0.375390291213989,
- -0.435632556676865,0.787088334560394,-0.436710804700851,-0.4287930727005,0.787700176239014,-0.44234025478363,-0.387876272201538,0.819227755069733,-0.422395497560501,-0.398365259170532,0.822693645954132,-0.405561804771423,-0.466132313013077,0.801126003265381,-0.375390291213989,-0.45508474111557,0.826984584331512,-0.330142945051193,-0.423127323389053,0.823814749717712,-0.377216756343842,-0.456439971923828,0.790471255779266,-0.408433139324188,-0.487813800573349,0.800612092018127,-0.347933650016785,-0.538050413131714,0.796972751617432,-0.274474084377289,-0.491185218095779,0.832259774208069,-0.257061868906021,-0.456170529127121,0.833734512329102,-0.311119139194489,-0.491185218095779,0.832259774208069,-0.257061868906021,-0.538050413131714,0.796972751617432,-0.274474084377289,-0.429837942123413,0.799593448638916,-0.419392049312592,-0.354229509830475,0.822802603244781,-0.444429159164429,-0.423127323389053,0.823814749717712,-0.377216756343842,-0.38488557934761,0.824151992797852,-0.415495634078979,-0.422308087348938,0.792034029960632,-0.440837770700455,-0.456439971923828,0.790471255779266,-0.408433139324188,-0.46369343996048,0.834510147571564,-0.29762601852417,-0.354229509830475,0.822802603244781,-0.444429159164429,-0.429837942123413,0.799593448638916,-0.419392049312592,-0.488573491573334,0.802779853343964,-0.34181934595108,-0.50202751159668,0.83366447687149,-0.23015633225441,-0.46369343996048,0.834510147571564,-0.29762601852417,-0.488573491573334,0.802779853343964,-0.34181934595108,-0.525912761688232,0.804223001003265,-0.276841163635254,-0.518276870250702,0.816714107990265,-0.253707081079483,0.508618116378784,0.788462162017822,0.345883131027222,0.405715465545654,0.804770827293396,0.433288395404816,0.357101619243622,0.829987943172455,0.428483963012695,0.472951114177704,0.824231028556824,0.311384916305542,0.508618116378784,0.788462162017822,0.345883131027222,0.472951114177704,0.824231028556824,0.311384916305542,0.487641274929047,0.8243767619133,0.287417978048325,0.513118743896484,0.792052507400513,0.330699414014816,0.405715465545654,0.804770827293396,0.433288395404816,
- 0.384974658489227,0.791733980178833,0.474290728569031,0.351864218711853,0.825409233570099,0.441464871168137,0.357101619243622,0.829987943172455,0.428483963012695,0.499893039464951,0.801631689071655,0.327862322330475,0.45468732714653,0.835306882858276,0.309066236019135,0.413168370723724,0.833492934703827,0.366853535175323,0.448265731334686,0.798271954059601,0.402268439531326,0.413168370723724,0.833492934703827,0.366853535175323,0.560722708702087,0.822904646396637,0.0917491167783737,0.570601463317871,0.802070260047913,0.176344484090805,0.448265731334686,0.798271954059601,0.402268439531326,0.395391076803207,0.826291263103485,0.401134163141251,0.351864218711853,0.825409233570099,0.441464871168137,0.384974658489227,0.791733980178833,0.474290728569031,0.416638970375061,0.794461369514465,0.441863179206848,0.560722708702087,0.822904646396637,0.0917491167783737,0.502554833889008,0.83368855714798,0.228914946317673,0.554583072662354,0.799972355365753,0.22908915579319,0.570601463317871,0.802070260047913,0.176344484090805,0.513118743896484,0.792052507400513,0.330699414014816,0.487641274929047,0.8243767619133,0.287417978048325,0.45468732714653,0.835306882858276,0.309066236019135,0.499893039464951,0.801631689071655,0.327862322330475,0.502554833889008,0.83368855714798,0.228914946317673,0.461060732603073,0.833137452602386,0.305458575487137,0.494327694177628,0.814370393753052,0.304041177034378,0.514683663845062,0.803786814212799,0.298374861478806,0.554583072662354,0.799972355365753,0.22908915579319,0.395391076803207,0.826291263103485,0.401134163141251,0.760018646717072,0.0740467831492424,-0.645669162273407,-0.38488557934761,0.824151992797852,-0.415495634078979,0.461060732603073,0.833137452602386,0.305458575487137,-0.50202751159668,0.83366447687149,-0.23015633225441,-0.443624407052994,0.0819125026464462,0.892461478710175,0.283236742019653,-0.000358996796421707,-0.959049999713898,0.895939469337463,-0.413640707731247,0.161844685673714,0.788034796714783,-0.592914760112762,0.165689960122108,0.242352157831192,-0.056667760014534,-0.968532025814056,
- 0.279072046279907,0.00710841407999396,-0.960243761539459,0.852471053600311,0.448298543691635,-0.268926799297333,0.900274693965912,0.325190097093582,-0.289407670497894,0.279072046279907,0.00710841407999396,-0.960243761539459,0.900274693965912,0.325190097093582,-0.289407670497894,0.895939469337463,-0.413640707731247,0.161844685673714,0.283236742019653,-0.000358996796421707,-0.959049999713898,0.594049215316772,0.800362884998322,0.0807763263583183,0.852471053600311,0.448298543691635,-0.268926799297333,0.583427548408508,0.809904754161835,0.0605529583990574,0.824930727481842,-0.561629235744476,0.0637325346469879,0.830440163612366,-0.555928826332092,-0.0362241379916668,-0.492210417985916,-0.670470714569092,0.555155873298645,-0.561112701892853,-0.827539443969727,0.0181946214288473,0.830440163612366,-0.555928826332092,-0.0362241379916668,0.824930727481842,-0.561629235744476,0.0637325346469879,0.944305300712585,-0.323966473340988,0.0577355474233627,0.954758405685425,-0.29692730307579,-0.0164487604051828,0.943372011184692,-0.330258995294571,0.0312755219638348,0.914503753185272,-0.378047376871109,0.14409339427948,0.587481617927551,0.805350065231323,0.0792253091931343,0.606727659702301,0.794903695583344,0.00311674643307924,-0.561112701892853,-0.827539443969727,0.0181946214288473,-0.492210417985916,-0.670470714569092,0.555155873298645,-0.000115788752736989,-0.96060311794281,0.277923673391342,0.027650598436594,-0.997212886810303,0.0692959278821945,-0.569323241710663,-0.821928203105927,-0.01746547780931,-0.581225395202637,-0.812477469444275,-0.0453574545681477,0.836061060428619,-0.533345520496368,0.128625199198723,0.819187462329865,-0.568268239498138,0.0774789974093437,-0.589942932128906,-0.803182065486908,-0.0828612819314003,-0.347268611192703,-0.867380499839783,0.356448709964752,-0.189297780394554,-0.919156610965729,-0.345423609018326,0.242352157831192,-0.056667760014534,-0.968532025814056,0.268519014120102,-0.0344910435378551,-0.962656736373901,0.264112442731857,0.0837610885500908,-0.960847914218903,0.304185569286346,0.0525709912180901,-0.951161086559296,
- 0.279072046279907,0.00710841407999396,-0.960243761539459,0.283236742019653,-0.000358996796421707,-0.959049999713898,0.914503753185272,-0.378047376871109,0.14409339427948,0.943372011184692,-0.330258995294571,0.0312755219638348,0.819187462329865,-0.568268239498138,0.0774789974093437,0.852471053600311,0.448298543691635,-0.268926799297333,0.594049215316772,0.800362884998322,0.0807763263583183,0.903577089309692,-0.384894281625748,0.188161447644234,0.900274693965912,0.325190097093582,-0.289407670497894,0.900274693965912,0.325190097093582,-0.289407670497894,0.903577089309692,-0.384894281625748,0.188161447644234,0.895939469337463,-0.413640707731247,0.161844685673714,0.852471053600311,0.448298543691635,-0.268926799297333,0.279072046279907,0.00710841407999396,-0.960243761539459,0.304185569286346,0.0525709912180901,-0.951161086559296,0.583427548408508,0.809904754161835,0.0605529583990574,-0.544402003288269,-0.820609092712402,-0.173859551548958,0.242352157831192,-0.056667760014534,-0.968532025814056,0.788034796714783,-0.592914760112762,0.165689960122108,0.914503753185272,-0.378047376871109,0.14409339427948,0.913027107715607,-0.386271625757217,0.131056129932404,0.598437607288361,0.801162660121918,0.00330469734035432,0.587481617927551,0.805350065231323,0.0792253091931343,0.0398844890296459,0.0537983998656273,0.99775505065918,0.0162162408232689,-0.00542301079258323,0.999853849411011,0.948657691478729,-0.316276520490646,-0.00421360228210688,0.608575403690338,0.789202451705933,0.0824350267648697,0.841247618198395,-0.53531676530838,-0.0757526531815529,0.835768640041351,-0.548804640769959,-0.017439428716898,-0.559315979480743,-0.828362643718719,-0.0313212685286999,-0.558333992958069,-0.827693223953247,-0.056455098092556,0.948935806751251,-0.309166073799133,-0.0627465844154358,0.948657691478729,-0.316276520490646,-0.00421360228210688,0.835768640041351,-0.548804640769959,-0.017439428716898,0.841247618198395,-0.53531676530838,-0.0757526531815529,-0.558333992958069,-0.827693223953247,-0.056455098092556,-0.559315979480743,-0.828362643718719,-0.0313212685286999,
- -2.13633284147363e-005,-0.999914109706879,-0.013106576167047,3.26381195918657e-005,-0.997165322303772,-0.0752431452274323,-0.58942848443985,-0.804301500320435,-0.0753201991319656,0.954758405685425,-0.29692730307579,-0.0164487604051828,0.944305300712585,-0.323966473340988,0.0577355474233627,0.608368933200836,0.793612718582153,-0.00813370384275913,0.594632089138031,0.80296516418457,-0.0407385863363743,-0.347268611192703,-0.867380499839783,0.356448709964752,-0.557743549346924,-0.820812463760376,-0.123243391513824,0.777779161930084,-0.596982300281525,0.196651339530945,0.768039882183075,-0.59857577085495,0.227644100785255,0.891407132148743,-0.413980007171631,0.184428542852402,0.90422785282135,-0.368467748165131,0.215878531336784,0.572762072086334,0.801583349704742,0.171486675739288,0.54075163602829,0.802619218826294,0.251773566007614,-0.581225395202637,-0.812477469444275,-0.0453574545681477,-0.189297780394554,-0.919156610965729,-0.345423609018326,0.86517071723938,-0.484973579645157,0.127594068646431,0.836061060428619,-0.533345520496368,0.128625199198723,-0.557743549346924,-0.820812463760376,-0.123243391513824,-0.544402003288269,-0.820609092712402,-0.173859551548958,0.788034796714783,-0.592914760112762,0.165689960122108,0.777779161930084,-0.596982300281525,0.196651339530945,-0.557743549346924,-0.820812463760376,-0.123243391513824,-0.347268611192703,-0.867380499839783,0.356448709964752,-0.589942932128906,-0.803182065486908,-0.0828612819314003,-0.569323241710663,-0.821928203105927,-0.01746547780931,0.0408128648996353,-0.999142169952393,0.00701432256028056,0.051153939217329,-0.997918426990509,0.0392712578177452,0.913027107715607,-0.386271625757217,0.131056129932404,0.914503753185272,-0.378047376871109,0.14409339427948,0.819187462329865,-0.568268239498138,0.0774789974093437,0.836061060428619,-0.533345520496368,0.128625199198723,0.86517071723938,-0.484973579645157,0.127594068646431,0.90422785282135,-0.368467748165131,0.215878531336784,0.891407132148743,-0.413980007171631,0.184428542852402,0.768039882183075,-0.59857577085495,0.227644100785255,
- 0.777779161930084,-0.596982300281525,0.196651339530945,0.948657691478729,-0.316276520490646,-0.00421360228210688,0.948935806751251,-0.309166073799133,-0.0627465844154358,0.607795536518097,0.793745875358582,0.0234960075467825,0.608575403690338,0.789202451705933,0.0824350267648697,0.835768640041351,-0.548804640769959,-0.017439428716898,0.018391465768218,-0.0107700536027551,0.999772846698761,-0.038664985448122,-0.0560683310031891,0.997677981853485,-0.559315979480743,-0.828362643718719,-0.0313212685286999,0.948657691478729,-0.316276520490646,-0.00421360228210688,0.0162162408232689,-0.00542301079258323,0.999853849411011,0.018391465768218,-0.0107700536027551,0.999772846698761,0.835768640041351,-0.548804640769959,-0.017439428716898,-0.559315979480743,-0.828362643718719,-0.0313212685286999,-0.038664985448122,-0.0560683310031891,0.997677981853485,-2.36491814575857e-006,-0.0290737058967352,0.999577343463898,-2.13633284147363e-005,-0.999914109706879,-0.013106576167047,0.944305300712585,-0.323966473340988,0.0577355474233627,0.943372011184692,-0.330258995294571,0.0312755219638348,0.606727659702301,0.794903695583344,0.00311674643307924,0.608368933200836,0.793612718582153,-0.00813370384275913,0.824930727481842,-0.561629235744476,0.0637325346469879,0.819187462329865,-0.568268239498138,0.0774789974093437,0.943372011184692,-0.330258995294571,0.0312755219638348,0.944305300712585,-0.323966473340988,0.0577355474233627,0.819187462329865,-0.568268239498138,0.0774789974093437,0.824930727481842,-0.561629235744476,0.0637325346469879,-0.561112701892853,-0.827539443969727,0.0181946214288473,-0.569323241710663,-0.821928203105927,-0.01746547780931,-0.569323241710663,-0.821928203105927,-0.01746547780931,-0.561112701892853,-0.827539443969727,0.0181946214288473,0.027650598436594,-0.997212886810303,0.0692959278821945,0.0408128648996353,-0.999142169952393,0.00701432256028056,0.948935806751251,-0.309166073799133,-0.0627465844154358,0.954758405685425,-0.29692730307579,-0.0164487604051828,0.594632089138031,0.80296516418457,-0.0407385863363743,0.607795536518097,0.793745875358582,0.0234960075467825,
- 0.954758405685425,-0.29692730307579,-0.0164487604051828,0.948935806751251,-0.309166073799133,-0.0627465844154358,0.841247618198395,-0.53531676530838,-0.0757526531815529,0.830440163612366,-0.555928826332092,-0.0362241379916668,0.830440163612366,-0.555928826332092,-0.0362241379916668,0.841247618198395,-0.53531676530838,-0.0757526531815529,-0.558333992958069,-0.827693223953247,-0.056455098092556,-0.492210417985916,-0.670470714569092,0.555155873298645,-0.492210417985916,-0.670470714569092,0.555155873298645,-0.558333992958069,-0.827693223953247,-0.056455098092556,-0.58942848443985,-0.804301500320435,-0.0753201991319656,-0.58942848443985,-0.804301500320435,-0.0753201991319656,3.26381195918657e-005,-0.997165322303772,-0.0752431452274323,4.08240521210246e-005,-0.491914451122284,-0.870643556118011,-0.492210417985916,-0.670470714569092,0.555155873298645,-0.58942848443985,-0.804301500320435,-0.0753201991319656,4.08240521210246e-005,-0.491914451122284,-0.870643556118011,-0.000115788752736989,-0.96060311794281,0.277923673391342,-0.569323241710663,-0.821928203105927,-0.01746547780931,0.051153939217329,-0.997918426990509,0.0392712578177452,0.047997247427702,-0.998205482959747,0.0358039811253548,-0.589942932128906,-0.803182065486908,-0.0828612819314003,-0.581225395202637,-0.812477469444275,-0.0453574545681477,0.90422785282135,-0.368467748165131,0.215878531336784,0.903577089309692,-0.384894281625748,0.188161447644234,0.594049215316772,0.800362884998322,0.0807763263583183,0.572762072086334,0.801583349704742,0.171486675739288,0.895939469337463,-0.413640707731247,0.161844685673714,0.903577089309692,-0.384894281625748,0.188161447644234,0.90422785282135,-0.368467748165131,0.215878531336784,0.777779161930084,-0.596982300281525,0.196651339530945,0.788034796714783,-0.592914760112762,0.165689960122108,0.913027107715607,-0.386271625757217,0.131056129932404,0.891407132148743,-0.413980007171631,0.184428542852402,0.54075163602829,0.802619218826294,0.251773566007614,0.598437607288361,0.801162660121918,0.00330469734035432,0.891407132148743,-0.413980007171631,0.184428542852402,
- 0.913027107715607,-0.386271625757217,0.131056129932404,0.86517071723938,-0.484973579645157,0.127594068646431,0.768039882183075,-0.59857577085495,0.227644100785255,-0.189297780394554,-0.919156610965729,-0.345423609018326,-0.347268611192703,-0.867380499839783,0.356448709964752,0.768039882183075,-0.59857577085495,0.227644100785255,0.86517071723938,-0.484973579645157,0.127594068646431,-0.589942932128906,-0.803182065486908,-0.0828612819314003,-0.189297780394554,-0.919156610965729,-0.345423609018326,-0.581225395202637,-0.812477469444275,-0.0453574545681477,0.264112442731857,0.0837610885500908,-0.960847914218903,0.559375107288361,0.82816070318222,0.0353470146656036,0.583427548408508,0.809904754161835,0.0605529583990574,0.304185569286346,0.0525709912180901,-0.951161086559296,0.0600254125893116,-0.99731171131134,-0.0420278608798981,0.268519014120102,-0.0344910435378551,-0.962656736373901,0.242352157831192,-0.056667760014534,-0.968532025814056,-0.544402003288269,-0.820609092712402,-0.173859551548958,0.047997247427702,-0.998205482959747,0.0358039811253548,0.0600254125893116,-0.99731171131134,-0.0420278608798981,-0.544402003288269,-0.820609092712402,-0.173859551548958,-0.557743549346924,-0.820812463760376,-0.123243391513824,-0.589942932128906,-0.803182065486908,-0.0828612819314003,2.74761132459389e-005,0.0764698535203934,0.997071862220764,-2.36491814575857e-006,-0.0290737058967352,0.999577343463898,-0.038664985448122,-0.0560683310031891,0.997677981853485,0.018391465768218,-0.0107700536027551,0.999772846698761,0.0162162408232689,-0.00542301079258323,0.999853849411011,0.0398844890296459,0.0537983998656273,0.99775505065918,0.248768761754036,-0.000499111309181899,-0.968562722206116,0.293727219104767,-0.0641513615846634,-0.953734159469604,-0.778180658817291,-0.59540593624115,-0.199816137552261,-0.869059562683105,-0.426562935113907,-0.250558495521545,0.25373038649559,0.00847015436738729,-0.967237949371338,-0.694257020950317,0.344532191753387,-0.631905555725098,-0.654231786727905,0.470765978097916,-0.59191232919693,0.25373038649559,0.00847015436738729,-0.967237949371338,
- 0.248768761754036,-0.000499111309181899,-0.968562722206116,-0.869059562683105,-0.426562935113907,-0.250558495521545,-0.694257020950317,0.344532191753387,-0.631905555725098,-0.569362461566925,0.800441801548004,-0.187401428818703,-0.548292100429535,0.811476588249207,-0.202191546559334,-0.654231786727905,0.470765978097916,-0.59191232919693,-0.829273700714111,-0.558493971824646,0.0197386518120766,0.556991875171661,-0.829409182071686,0.0428989380598068,0.492540389299393,-0.670534610748291,0.554785788059235,-0.830336213111877,-0.556083023548126,-0.0362419337034225,-0.830336213111877,-0.556083023548126,-0.0362419337034225,-0.954746007919312,-0.296962112188339,-0.0165384560823441,-0.946495056152344,-0.32258003950119,0.00943758059293032,-0.829273700714111,-0.558493971824646,0.0197386518120766,-0.946072578430176,-0.323484241962433,-0.0174544714391232,-0.610795855522156,0.791375875473022,-0.0255469903349876,-0.590029716491699,0.803695619106293,-0.0770593732595444,-0.922286748886108,-0.370831489562988,-0.108954906463623,0.556991875171661,-0.829409182071686,0.0428989380598068,0.027650598436594,-0.997212886810303,0.0692959278821945,-0.000115788752736989,-0.96060311794281,0.277923673391342,0.492540389299393,-0.670534610748291,0.554785788059235,0.558508217334747,-0.826580822467804,0.0695174038410187,-0.829489886760712,-0.55601966381073,-0.0528065040707588,-0.848356425762177,-0.519230306148529,-0.103398017585278,0.567150175571442,-0.816416919231415,0.108646564185619,0.58204460144043,-0.803704917430878,0.123622253537178,0.297057628631592,-0.932728111743927,-0.204389452934265,0.202817633748055,-0.893498182296753,0.400657087564468,0.293727219104767,-0.0641513615846634,-0.953734159469604,0.248768761754036,-0.000499111309181899,-0.968562722206116,0.25373038649559,0.00847015436738729,-0.967237949371338,0.226291000843048,0.0566891469061375,-0.972408711910248,0.264112442731857,0.0837610885500908,-0.960847914218903,0.268519014120102,-0.0344910435378551,-0.962656736373901,-0.922286748886108,-0.370831489562988,-0.108954906463623,-0.829489886760712,-0.55601966381073,-0.0528065040707588,
- -0.946072578430176,-0.323484241962433,-0.0174544714391232,-0.654231786727905,0.470765978097916,-0.59191232919693,-0.694257020950317,0.344532191753387,-0.631905555725098,-0.885778963565826,-0.404557675123215,-0.227439239621162,-0.569362461566925,0.800441801548004,-0.187401428818703,-0.694257020950317,0.344532191753387,-0.631905555725098,-0.869059562683105,-0.426562935113907,-0.250558495521545,-0.885778963565826,-0.404557675123215,-0.227439239621162,-0.654231786727905,0.470765978097916,-0.59191232919693,-0.548292100429535,0.811476588249207,-0.202191546559334,0.226291000843048,0.0566891469061375,-0.972408711910248,0.25373038649559,0.00847015436738729,-0.967237949371338,0.562366008758545,-0.821735799312592,0.092167504131794,-0.778180658817291,-0.59540593624115,-0.199816137552261,0.293727219104767,-0.0641513615846634,-0.953734159469604,-0.922286748886108,-0.370831489562988,-0.108954906463623,-0.590029716491699,0.803695619106293,-0.0770593732595444,-0.581182718276978,0.799192190170288,-0.153357952833176,-0.917871296405792,-0.377763241529465,-0.121685221791267,-0.0398858785629272,0.0537713170051575,0.99775642156601,-0.608805119991302,0.789016664028168,0.0825163051486015,-0.948611915111542,-0.316413581371307,-0.0042216987349093,-0.0162222608923912,-0.00542512722313404,0.999853670597076,-0.841231286525726,-0.535347163677216,-0.0757186040282249,0.558573186397552,-0.827539026737213,-0.0563476569950581,0.559549927711487,-0.828206598758698,-0.0312649570405483,-0.835751593112946,-0.548830628395081,-0.017441138625145,-0.948891043663025,-0.309307307004929,-0.0627276301383972,-0.841231286525726,-0.535347163677216,-0.0757186040282249,-0.835751593112946,-0.548830628395081,-0.017441138625145,-0.948611915111542,-0.316413581371307,-0.0042216987349093,0.558573186397552,-0.827539026737213,-0.0563476569950581,0.589677333831787,-0.804118871688843,-0.0753225386142731,3.26381195918657e-005,-0.997165322303772,-0.0752431452274323,-2.13633284147363e-005,-0.999914109706879,-0.013106576167047,0.559549927711487,-0.828206598758698,-0.0312649570405483,
- -0.954746007919312,-0.296962112188339,-0.0165384560823441,-0.594858169555664,0.802799165248871,-0.040711909532547,-0.608623087406158,0.79269278049469,-0.034871730953455,-0.946495056152344,-0.32258003950119,0.00943758059293032,0.202817633748055,-0.893498182296753,0.400657087564468,-0.792808890342712,-0.602550327777863,-0.0915813073515892,-0.782287836074829,-0.598715484142303,-0.171946212649345,0.551305413246155,-0.822926461696625,0.137311294674873,-0.897303700447083,-0.40775004029274,-0.169073954224586,-0.60018390417099,0.799684584140778,0.0168470405042171,-0.586457431316376,0.80346804857254,-0.102501973509789,-0.900596618652344,-0.383527010679245,-0.204530656337738,0.567150175571442,-0.816416919231415,0.108646564185619,-0.848356425762177,-0.519230306148529,-0.103398017585278,-0.871677994728088,-0.477014273405075,-0.112405061721802,0.297057628631592,-0.932728111743927,-0.204389452934265,0.551305413246155,-0.822926461696625,0.137311294674873,-0.782287836074829,-0.598715484142303,-0.171946212649345,-0.778180658817291,-0.59540593624115,-0.199816137552261,0.562366008758545,-0.821735799312592,0.092167504131794,0.551305413246155,-0.822926461696625,0.137311294674873,0.58204460144043,-0.803704917430878,0.123622253537178,0.202817633748055,-0.893498182296753,0.400657087564468,0.558508217334747,-0.826580822467804,0.0695174038410187,0.051153939217329,-0.997918426990509,0.0392712578177452,0.0408128648996353,-0.999142169952393,0.00701432256028056,-0.917871296405792,-0.377763241529465,-0.121685221791267,-0.871677994728088,-0.477014273405075,-0.112405061721802,-0.848356425762177,-0.519230306148529,-0.103398017585278,-0.829489886760712,-0.55601966381073,-0.0528065040707588,-0.922286748886108,-0.370831489562988,-0.108954906463623,-0.900596618652344,-0.383527010679245,-0.204530656337738,-0.782287836074829,-0.598715484142303,-0.171946212649345,-0.792808890342712,-0.602550327777863,-0.0915813073515892,-0.897303700447083,-0.40775004029274,-0.169073954224586,-0.948611915111542,-0.316413581371307,-0.0042216987349093,-0.608805119991302,0.789016664028168,0.0825163051486015,
- -0.608033299446106,0.793562054634094,0.0235517397522926,-0.948891043663025,-0.309307307004929,-0.0627276301383972,-0.835751593112946,-0.548830628395081,-0.017441138625145,0.559549927711487,-0.828206598758698,-0.0312649570405483,0.0387151166796684,-0.0561030134558678,0.99767404794693,-0.0184026174247265,-0.0107781570404768,0.999772608280182,-0.948611915111542,-0.316413581371307,-0.0042216987349093,-0.835751593112946,-0.548830628395081,-0.017441138625145,-0.0184026174247265,-0.0107781570404768,0.999772608280182,-0.0162222608923912,-0.00542512722313404,0.999853670597076,0.559549927711487,-0.828206598758698,-0.0312649570405483,-2.13633284147363e-005,-0.999914109706879,-0.013106576167047,-2.36491814575857e-006,-0.0290737058967352,0.999577343463898,0.0387151166796684,-0.0561030134558678,0.99767404794693,-0.946495056152344,-0.32258003950119,0.00943758059293032,-0.608623087406158,0.79269278049469,-0.034871730953455,-0.610795855522156,0.791375875473022,-0.0255469903349876,-0.946072578430176,-0.323484241962433,-0.0174544714391232,-0.829273700714111,-0.558493971824646,0.0197386518120766,-0.946495056152344,-0.32258003950119,0.00943758059293032,-0.946072578430176,-0.323484241962433,-0.0174544714391232,-0.829489886760712,-0.55601966381073,-0.0528065040707588,-0.829489886760712,-0.55601966381073,-0.0528065040707588,0.558508217334747,-0.826580822467804,0.0695174038410187,0.556991875171661,-0.829409182071686,0.0428989380598068,-0.829273700714111,-0.558493971824646,0.0197386518120766,0.558508217334747,-0.826580822467804,0.0695174038410187,0.0408128648996353,-0.999142169952393,0.00701432256028056,0.027650598436594,-0.997212886810303,0.0692959278821945,0.556991875171661,-0.829409182071686,0.0428989380598068,-0.948891043663025,-0.309307307004929,-0.0627276301383972,-0.608033299446106,0.793562054634094,0.0235517397522926,-0.594858169555664,0.802799165248871,-0.040711909532547,-0.954746007919312,-0.296962112188339,-0.0165384560823441,-0.954746007919312,-0.296962112188339,-0.0165384560823441,-0.830336213111877,-0.556083023548126,-0.0362419337034225,
- -0.841231286525726,-0.535347163677216,-0.0757186040282249,-0.948891043663025,-0.309307307004929,-0.0627276301383972,-0.830336213111877,-0.556083023548126,-0.0362419337034225,0.492540389299393,-0.670534610748291,0.554785788059235,0.558573186397552,-0.827539026737213,-0.0563476569950581,-0.841231286525726,-0.535347163677216,-0.0757186040282249,0.492540389299393,-0.670534610748291,0.554785788059235,0.589677333831787,-0.804118871688843,-0.0753225386142731,0.558573186397552,-0.827539026737213,-0.0563476569950581,0.589677333831787,-0.804118871688843,-0.0753225386142731,4.08240521210246e-005,-0.491914451122284,-0.870643556118011,3.26381195918657e-005,-0.997165322303772,-0.0752431452274323,0.492540389299393,-0.670534610748291,0.554785788059235,-0.000115788752736989,-0.96060311794281,0.277923673391342,4.08240521210246e-005,-0.491914451122284,-0.870643556118011,0.589677333831787,-0.804118871688843,-0.0753225386142731,0.558508217334747,-0.826580822467804,0.0695174038410187,0.567150175571442,-0.816416919231415,0.108646564185619,0.58204460144043,-0.803704917430878,0.123622253537178,0.047997247427702,-0.998205482959747,0.0358039811253548,0.051153939217329,-0.997918426990509,0.0392712578177452,-0.900596618652344,-0.383527010679245,-0.204530656337738,-0.586457431316376,0.80346804857254,-0.102501973509789,-0.569362461566925,0.800441801548004,-0.187401428818703,-0.885778963565826,-0.404557675123215,-0.227439239621162,-0.869059562683105,-0.426562935113907,-0.250558495521545,-0.778180658817291,-0.59540593624115,-0.199816137552261,-0.782287836074829,-0.598715484142303,-0.171946212649345,-0.900596618652344,-0.383527010679245,-0.204530656337738,-0.885778963565826,-0.404557675123215,-0.227439239621162,-0.917871296405792,-0.377763241529465,-0.121685221791267,-0.581182718276978,0.799192190170288,-0.153357952833176,-0.60018390417099,0.799684584140778,0.0168470405042171,-0.897303700447083,-0.40775004029274,-0.169073954224586,-0.897303700447083,-0.40775004029274,-0.169073954224586,-0.792808890342712,-0.602550327777863,-0.0915813073515892,-0.871677994728088,-0.477014273405075,-0.112405061721802,
- -0.917871296405792,-0.377763241529465,-0.121685221791267,0.297057628631592,-0.932728111743927,-0.204389452934265,-0.871677994728088,-0.477014273405075,-0.112405061721802,-0.792808890342712,-0.602550327777863,-0.0915813073515892,0.202817633748055,-0.893498182296753,0.400657087564468,0.58204460144043,-0.803704917430878,0.123622253537178,0.567150175571442,-0.816416919231415,0.108646564185619,0.297057628631592,-0.932728111743927,-0.204389452934265,0.268519014120102,-0.0344910435378551,-0.962656736373901,0.0600254125893116,-0.99731171131134,-0.0420278608798981,0.562366008758545,-0.821735799312592,0.092167504131794,0.293727219104767,-0.0641513615846634,-0.953734159469604,0.0600254125893116,-0.99731171131134,-0.0420278608798981,0.047997247427702,-0.998205482959747,0.0358039811253548,0.58204460144043,-0.803704917430878,0.123622253537178,0.551305413246155,-0.822926461696625,0.137311294674873,0.562366008758545,-0.821735799312592,0.092167504131794,-2.36491814575857e-006,-0.0290737058967352,0.999577343463898,2.74761132459389e-005,0.0764698535203934,0.997071862220764,-0.0398858785629272,0.0537713170051575,0.99775642156601,-0.0162222608923912,-0.00542512722313404,0.999853670597076,-0.0184026174247265,-0.0107781570404768,0.999772608280182,0.0387151166796684,-0.0561030134558678,0.99767404794693,2.74761132459389e-005,0.0764698535203934,0.997071862220764,-0.562890827655792,0.820841431617737,0.0968149751424789,-0.608805119991302,0.789016664028168,0.0825163051486015,-0.0398858785629272,0.0537713170051575,0.99775642156601,0.562673270702362,0.82100248336792,0.0967150628566742,2.74761132459389e-005,0.0764698535203934,0.997071862220764,0.0398844890296459,0.0537983998656273,0.99775505065918,0.608575403690338,0.789202451705933,0.0824350267648697,-0.518944919109344,0.828560650348663,-0.210198253393173,0.264112442731857,0.0837610885500908,-0.960847914218903,0.226291000843048,0.0566891469061375,-0.972408711910248,-0.548292100429535,0.811476588249207,-0.202191546559334,0.562793493270874,0.826226949691772,0.0247519928961992,-0.563023209571838,0.826068937778473,0.0247982777655125,
- -0.562890827655792,0.820841431617737,0.0968149751424789,0.562673270702362,0.82100248336792,0.0967150628566742,-0.563023209571838,0.826068937778473,0.0247982777655125,0.562793493270874,0.826226949691772,0.0247519928961992,0.555708169937134,0.82863849401474,-0.067428283393383,-0.555963933467865,0.828469395637512,-0.067398265004158,-0.555963933467865,0.828469395637512,-0.067398265004158,0.555708169937134,0.82863849401474,-0.067428283393383,0.560181736946106,0.828324973583221,-0.00861082971096039,-0.560666799545288,0.827324092388153,-0.0344595201313496,0.54789936542511,0.836531341075897,0.00464882608503103,-0.533610105514526,0.834726929664612,-0.135982036590576,-0.54217392206192,0.836345791816711,-0.0810742974281311,0.540973901748657,0.838483691215515,0.0655175670981407,-0.533610105514526,0.834726929664612,-0.135982036590576,0.54789936542511,0.836531341075897,0.00464882608503103,0.476544797420502,0.823792397975922,0.307035982608795,-0.561277449131012,0.823221325874329,0.085290253162384,-0.561277449131012,0.823221325874329,0.085290253162384,0.476544797420502,0.823792397975922,0.307035982608795,0.536938309669495,0.832937002182007,0.133840441703796,-0.539713203907013,0.832919478416443,-0.122290350496769,-0.539713203907013,0.832919478416443,-0.122290350496769,0.536938309669495,0.832937002182007,0.133840441703796,0.559375107288361,0.82816070318222,0.0353470146656036,-0.518944919109344,0.828560650348663,-0.210198253393173,0.558565020561218,0.829410076141357,0.00916519109159708,-0.565174102783203,0.824682772159576,-0.0218328051269054,-0.560666799545288,0.827324092388153,-0.0344595201313496,0.560181736946106,0.828324973583221,-0.00861082971096039,-0.565174102783203,0.824682772159576,-0.0218328051269054,0.558565020561218,0.829410076141357,0.00916519109159708,0.540973901748657,0.838483691215515,0.0655175670981407,-0.54217392206192,0.836345791816711,-0.0810742974281311,0.606727659702301,0.794903695583344,0.00311674643307924,0.587481617927551,0.805350065231323,0.0792253091931343,0.540973901748657,0.838483691215515,0.0655175670981407,
- 0.558565020561218,0.829410076141357,0.00916519109159708,0.608368933200836,0.793612718582153,-0.00813370384275913,0.560181736946106,0.828324973583221,-0.00861082971096039,0.555708169937134,0.82863849401474,-0.067428283393383,0.594632089138031,0.80296516418457,-0.0407385863363743,0.608368933200836,0.793612718582153,-0.00813370384275913,0.606727659702301,0.794903695583344,0.00311674643307924,0.558565020561218,0.829410076141357,0.00916519109159708,0.560181736946106,0.828324973583221,-0.00861082971096039,0.594632089138031,0.80296516418457,-0.0407385863363743,0.555708169937134,0.82863849401474,-0.067428283393383,0.562793493270874,0.826226949691772,0.0247519928961992,0.607795536518097,0.793745875358582,0.0234960075467825,0.587481617927551,0.805350065231323,0.0792253091931343,0.598437607288361,0.801162660121918,0.00330469734035432,0.54789936542511,0.836531341075897,0.00464882608503103,0.540973901748657,0.838483691215515,0.0655175670981407,0.54789936542511,0.836531341075897,0.00464882608503103,0.598437607288361,0.801162660121918,0.00330469734035432,0.54075163602829,0.802619218826294,0.251773566007614,0.476544797420502,0.823792397975922,0.307035982608795,0.562793493270874,0.826226949691772,0.0247519928961992,0.562673270702362,0.82100248336792,0.0967150628566742,0.608575403690338,0.789202451705933,0.0824350267648697,0.607795536518097,0.793745875358582,0.0234960075467825,0.536938309669495,0.832937002182007,0.133840441703796,0.476544797420502,0.823792397975922,0.307035982608795,0.54075163602829,0.802619218826294,0.251773566007614,0.572762072086334,0.801583349704742,0.171486675739288,0.559375107288361,0.82816070318222,0.0353470146656036,0.536938309669495,0.832937002182007,0.133840441703796,0.572762072086334,0.801583349704742,0.171486675739288,0.594049215316772,0.800362884998322,0.0807763263583183,0.583427548408508,0.809904754161835,0.0605529583990574,-0.608623087406158,0.79269278049469,-0.034871730953455,-0.594858169555664,0.802799165248871,-0.040711909532547,-0.555963933467865,0.828469395637512,-0.067398265004158,-0.560666799545288,0.827324092388153,-0.0344595201313496,
- -0.608623087406158,0.79269278049469,-0.034871730953455,-0.560666799545288,0.827324092388153,-0.0344595201313496,-0.565174102783203,0.824682772159576,-0.0218328051269054,-0.610795855522156,0.791375875473022,-0.0255469903349876,-0.594858169555664,0.802799165248871,-0.040711909532547,-0.608033299446106,0.793562054634094,0.0235517397522926,-0.563023209571838,0.826068937778473,0.0247982777655125,-0.555963933467865,0.828469395637512,-0.067398265004158,-0.590029716491699,0.803695619106293,-0.0770593732595444,-0.54217392206192,0.836345791816711,-0.0810742974281311,-0.533610105514526,0.834726929664612,-0.135982036590576,-0.581182718276978,0.799192190170288,-0.153357952833176,-0.533610105514526,0.834726929664612,-0.135982036590576,-0.561277449131012,0.823221325874329,0.085290253162384,-0.60018390417099,0.799684584140778,0.0168470405042171,-0.581182718276978,0.799192190170288,-0.153357952833176,-0.562890827655792,0.820841431617737,0.0968149751424789,-0.563023209571838,0.826068937778473,0.0247982777655125,-0.608033299446106,0.793562054634094,0.0235517397522926,-0.608805119991302,0.789016664028168,0.0825163051486015,-0.561277449131012,0.823221325874329,0.085290253162384,-0.539713203907013,0.832919478416443,-0.122290350496769,-0.586457431316376,0.80346804857254,-0.102501973509789,-0.60018390417099,0.799684584140778,0.0168470405042171,-0.610795855522156,0.791375875473022,-0.0255469903349876,-0.565174102783203,0.824682772159576,-0.0218328051269054,-0.54217392206192,0.836345791816711,-0.0810742974281311,-0.590029716491699,0.803695619106293,-0.0770593732595444,-0.539713203907013,0.832919478416443,-0.122290350496769,-0.518944919109344,0.828560650348663,-0.210198253393173,-0.548292100429535,0.811476588249207,-0.202191546559334,-0.569362461566925,0.800441801548004,-0.187401428818703,-0.586457431316376,0.80346804857254,-0.102501973509789,-0.562890827655792,0.820841431617737,0.0968149751424789,2.74761132459389e-005,0.0764698535203934,0.997071862220764,0.562673270702362,0.82100248336792,0.0967150628566742,-0.518944919109344,0.828560650348663,-0.210198253393173,
- 0.559375107288361,0.82816070318222,0.0353470146656036,0.264112442731857,0.0837610885500908,-0.960847914218903,0.997170805931091,-0.000410792388720438,-0.07516810297966,0.165784493088722,-0.418437898159027,0.892986655235291,0.129788428544998,-0.589637517929077,0.797171533107758,0.991508662700653,-0.056927103549242,-0.116918586194515,0.996810734272003,0.00705899810418487,-0.0794898718595505,0.55264949798584,0.448408305644989,0.702501595020294,0.588709533214569,0.325698435306549,0.739825427532196,0.996810734272003,0.00705899810418487,-0.0794898718595505,0.588709533214569,0.325698435306549,0.739825427532196,0.165784493088722,-0.418437898159027,0.892986655235291,0.997170805931091,-0.000410792388720438,-0.07516810297966,0.126140534877777,0.801090717315674,0.585100054740906,0.55264949798584,0.448408305644989,0.702501595020294,0.137988060712814,0.811769425868988,0.567441284656525,0.27137616276741,-0.569635510444641,0.775803089141846,0.362081795930862,-0.559273064136505,0.745728194713593,-0.720634996891022,-0.658457934856415,-0.217067494988441,-0.165828049182892,-0.826835989952087,-0.537441492080688,0.362081795930862,-0.559273064136505,0.745728194713593,0.27137616276741,-0.569635510444641,0.775803089141846,0.307093292474747,-0.332659900188446,0.891645073890686,0.396515607833862,-0.298687517642975,0.868079006671906,0.332299172878265,-0.323058396577835,0.886120975017548,0.186966106295586,-0.373076885938644,0.90876692533493,0.150847896933556,0.80583643913269,0.572601497173309,0.162645250558853,0.796559870243073,0.582270503044128,-0.165828049182892,-0.826835989952087,-0.537441492080688,-0.720634996891022,-0.658457934856415,-0.217067494988441,-0.243602365255356,-0.960586547851563,0.133908361196518,0.0161192547529936,-0.998284041881561,0.0562939755618572,-0.168405935168266,-0.82089900970459,-0.545677840709686,-0.185594379901886,-0.811667442321777,-0.553850829601288,0.171193316578865,-0.531574010848999,0.829531133174896,0.243176743388176,-0.563157856464386,0.789758324623108,-0.135300174355507,-0.803911566734314,-0.57915461063385,
- -0.458210706710815,-0.867924749851227,-0.191701993346214,0.250133097171783,-0.919486105442047,-0.303280025720596,0.991508662700653,-0.056927103549242,-0.116918586194515,0.995322585105896,-0.0346332564949989,-0.0901860594749451,0.992035627365112,0.0840921774506569,-0.0937757417559624,0.997219622135162,0.0526839904487133,-0.0527003444731236,0.996810734272003,0.00705899810418487,-0.0794898718595505,0.997170805931091,-0.000410792388720438,-0.07516810297966,0.186966106295586,-0.373076885938644,0.90876692533493,0.332299172878265,-0.323058396577835,0.886120975017548,0.243176743388176,-0.563157856464386,0.789758324623108,0.55264949798584,0.448408305644989,0.702501595020294,0.126140534877777,0.801090717315674,0.585100054740906,0.148784086108208,-0.384871482849121,0.91089916229248,0.588709533214569,0.325698435306549,0.739825427532196,0.588709533214569,0.325698435306549,0.739825427532196,0.148784086108208,-0.384871482849121,0.91089916229248,0.165784493088722,-0.418437898159027,0.892986655235291,0.55264949798584,0.448408305644989,0.702501595020294,0.996810734272003,0.00705899810418487,-0.0794898718595505,0.997219622135162,0.0526839904487133,-0.0527003444731236,0.137988060712814,0.811769425868988,0.567441284656525,-0.0401544757187366,-0.820710837841034,-0.569930970668793,0.991508662700653,-0.056927103549242,-0.116918586194515,0.129788428544998,-0.589637517929077,0.797171533107758,0.186966106295586,-0.373076885938644,0.90876692533493,0.20030477643013,-0.386182010173798,0.90041184425354,0.239463374018669,0.799034774303436,0.551544010639191,0.150847896933556,0.80583643913269,0.572601497173309,-0.850395441055298,0.0515174865722656,0.523615658283234,-0.863557279109955,-0.00486496416851878,0.50422739982605,0.421633005142212,-0.313513189554214,0.850843846797943,0.214641362428665,0.7916060090065,0.572091817855835,0.433515012264252,-0.541366457939148,0.720407545566559,0.377563148736954,-0.552040159702301,0.743436396121979,-0.239017382264137,-0.82694935798645,-0.508945405483246,-0.217265918850899,-0.826466739177704,-0.519372880458832,0.473797619342804,-0.310871124267578,0.8239386677742,
- 0.421633005142212,-0.313513189554214,0.850843846797943,0.377563148736954,-0.552040159702301,0.743436396121979,0.433515012264252,-0.541366457939148,0.720407545566559,-0.217265918850899,-0.826466739177704,-0.519372880458832,-0.239017382264137,-0.82694935798645,-0.508945405483246,0.0157619826495647,-0.998530685901642,0.0518472082912922,0.067696325480938,-0.997392892837524,0.0249953530728817,-0.211527124047279,-0.805906176567078,-0.552966058254242,0.396515607833862,-0.298687517642975,0.868079006671906,0.307093292474747,-0.332659900188446,0.891645073890686,0.175810962915421,0.792965352535248,0.583349287509918,0.27411612868309,0.804989635944366,0.526167333126068,-0.458210706710815,-0.867924749851227,-0.191701993346214,-0.0830431804060936,-0.820511817932129,-0.565565407276154,0.10354895144701,-0.593284785747528,0.798304915428162,0.0728646740317345,-0.598577260971069,0.797744274139404,0.158241212368011,-0.413786917924881,0.896515548229218,0.129092931747437,-0.362877279520035,0.922851622104645,0.0517986863851547,0.800702929496765,0.596818029880524,-0.033432375639677,0.802737891674042,0.595394134521484,-0.185594379901886,-0.811667442321777,-0.553850829601288,0.250133097171783,-0.919486105442047,-0.303280025720596,0.184703797101974,-0.485177636146545,0.854685306549072,0.171193316578865,-0.531574010848999,0.829531133174896,-0.0830431804060936,-0.820511817932129,-0.565565407276154,-0.0401544757187366,-0.820710837841034,-0.569930970668793,0.129788428544998,-0.589637517929077,0.797171533107758,0.10354895144701,-0.593284785747528,0.798304915428162,-0.0830431804060936,-0.820511817932129,-0.565565407276154,-0.458210706710815,-0.867924749851227,-0.191701993346214,-0.135300174355507,-0.803911566734314,-0.57915461063385,-0.168405935168266,-0.82089900970459,-0.545677840709686,0.0768532380461693,-0.996473908424377,0.0336652956902981,-0.038341511040926,-0.99725329875946,0.0633708164095879,0.20030477643013,-0.386182010173798,0.90041184425354,0.186966106295586,-0.373076885938644,0.90876692533493,0.243176743388176,-0.563157856464386,0.789758324623108,
- 0.171193316578865,-0.531574010848999,0.829531133174896,0.184703797101974,-0.485177636146545,0.854685306549072,0.129092931747437,-0.362877279520035,0.922851622104645,0.158241212368011,-0.413786917924881,0.896515548229218,0.0728646740317345,-0.598577260971069,0.797744274139404,0.10354895144701,-0.593284785747528,0.798304915428162,0.421633005142212,-0.313513189554214,0.850843846797943,0.473797619342804,-0.310871124267578,0.8239386677742,0.264372676610947,0.793940424919128,0.547508656978607,0.214641362428665,0.7916060090065,0.572091817855835,0.377563148736954,-0.552040159702301,0.743436396121979,-0.862513482570648,-0.00971123017370701,0.505940854549408,-0.887349367141724,-0.0537777096033096,0.457950949668884,-0.239017382264137,-0.82694935798645,-0.508945405483246,0.421633005142212,-0.313513189554214,0.850843846797943,-0.863557279109955,-0.00486496416851878,0.50422739982605,-0.862513482570648,-0.00971123017370701,0.505940854549408,0.377563148736954,-0.552040159702301,0.743436396121979,-0.239017382264137,-0.82694935798645,-0.508945405483246,-0.887349367141724,-0.0537777096033096,0.457950949668884,-0.870026767253876,-0.0290810838341713,0.492145955562592,0.0157619826495647,-0.998530685901642,0.0518472082912922,0.307093292474747,-0.332659900188446,0.891645073890686,0.332299172878265,-0.323058396577835,0.886120975017548,0.162645250558853,0.796559870243073,0.582270503044128,0.175810962915421,0.792965352535248,0.583349287509918,0.27137616276741,-0.569635510444641,0.775803089141846,0.243176743388176,-0.563157856464386,0.789758324623108,0.332299172878265,-0.323058396577835,0.886120975017548,0.307093292474747,-0.332659900188446,0.891645073890686,0.243176743388176,-0.563157856464386,0.789758324623108,0.27137616276741,-0.569635510444641,0.775803089141846,-0.165828049182892,-0.826835989952087,-0.537441492080688,-0.168405935168266,-0.82089900970459,-0.545677840709686,-0.168405935168266,-0.82089900970459,-0.545677840709686,-0.165828049182892,-0.826835989952087,-0.537441492080688,0.0161192547529936,-0.998284041881561,0.0562939755618572,
- 0.0768532380461693,-0.996473908424377,0.0336652956902981,0.473797619342804,-0.310871124267578,0.8239386677742,0.396515607833862,-0.298687517642975,0.868079006671906,0.27411612868309,0.804989635944366,0.526167333126068,0.264372676610947,0.793940424919128,0.547508656978607,0.396515607833862,-0.298687517642975,0.868079006671906,0.473797619342804,-0.310871124267578,0.8239386677742,0.433515012264252,-0.541366457939148,0.720407545566559,0.362081795930862,-0.559273064136505,0.745728194713593,0.362081795930862,-0.559273064136505,0.745728194713593,0.433515012264252,-0.541366457939148,0.720407545566559,-0.217265918850899,-0.826466739177704,-0.519372880458832,-0.720634996891022,-0.658457934856415,-0.217067494988441,-0.720634996891022,-0.658457934856415,-0.217067494988441,-0.217265918850899,-0.826466739177704,-0.519372880458832,-0.211527124047279,-0.805906176567078,-0.552966058254242,-0.211527124047279,-0.805906176567078,-0.552966058254242,0.067696325480938,-0.997392892837524,0.0249953530728817,0.802082657814026,-0.491800218820572,-0.338815569877625,-0.720634996891022,-0.658457934856415,-0.217067494988441,-0.211527124047279,-0.805906176567078,-0.552966058254242,0.802082657814026,-0.491800218820572,-0.338815569877625,-0.243602365255356,-0.960586547851563,0.133908361196518,-0.168405935168266,-0.82089900970459,-0.545677840709686,-0.038341511040926,-0.99725329875946,0.0633708164095879,-0.0231281016021967,-0.998027503490448,0.058363001793623,-0.135300174355507,-0.803911566734314,-0.57915461063385,-0.185594379901886,-0.811667442321777,-0.553850829601288,0.129092931747437,-0.362877279520035,0.922851622104645,0.148784086108208,-0.384871482849121,0.91089916229248,0.126140534877777,0.801090717315674,0.585100054740906,0.0517986863851547,0.800702929496765,0.596818029880524,0.165784493088722,-0.418437898159027,0.892986655235291,0.148784086108208,-0.384871482849121,0.91089916229248,0.129092931747437,-0.362877279520035,0.922851622104645,0.10354895144701,-0.593284785747528,0.798304915428162,0.129788428544998,-0.589637517929077,0.797171533107758,
- 0.20030477643013,-0.386182010173798,0.90041184425354,0.158241212368011,-0.413786917924881,0.896515548229218,-0.033432375639677,0.802737891674042,0.595394134521484,0.239463374018669,0.799034774303436,0.551544010639191,0.158241212368011,-0.413786917924881,0.896515548229218,0.20030477643013,-0.386182010173798,0.90041184425354,0.184703797101974,-0.485177636146545,0.854685306549072,0.0728646740317345,-0.598577260971069,0.797744274139404,0.250133097171783,-0.919486105442047,-0.303280025720596,-0.458210706710815,-0.867924749851227,-0.191701993346214,0.0728646740317345,-0.598577260971069,0.797744274139404,0.184703797101974,-0.485177636146545,0.854685306549072,-0.135300174355507,-0.803911566734314,-0.57915461063385,0.250133097171783,-0.919486105442047,-0.303280025720596,-0.185594379901886,-0.811667442321777,-0.553850829601288,0.992035627365112,0.0840921774506569,-0.0937757417559624,0.149848744273186,0.830100417137146,0.537101984024048,0.137988060712814,0.811769425868988,0.567441284656525,0.997219622135162,0.0526839904487133,-0.0527003444731236,0.0550123862922192,-0.997485101222992,0.0446912124752998,0.995322585105896,-0.0346332564949989,-0.0901860594749451,0.991508662700653,-0.056927103549242,-0.116918586194515,-0.0401544757187366,-0.820710837841034,-0.569930970668793,-0.0231281016021967,-0.998027503490448,0.058363001793623,0.0550123862922192,-0.997485101222992,0.0446912124752998,-0.0401544757187366,-0.820710837841034,-0.569930970668793,-0.0830431804060936,-0.820511817932129,-0.565565407276154,-0.135300174355507,-0.803911566734314,-0.57915461063385,-0.86987042427063,0.0765654593706131,0.487301915884018,-0.870026767253876,-0.0290810838341713,0.492145955562592,-0.887349367141724,-0.0537777096033096,0.457950949668884,-0.862513482570648,-0.00971123017370701,0.505940854549408,-0.863557279109955,-0.00486496416851878,0.50422739982605,-0.850395441055298,0.0515174865722656,0.523615658283234,0.993837416172028,-0.000459367205621675,-0.110846251249313,0.995912611484528,-0.0644237324595451,-0.0633043497800827,-0.0970848351716995,-0.594504535198212,-0.798209846019745,
- -0.0872260257601738,-0.436925321817398,-0.895258605480194,0.994358479976654,0.00855853594839573,-0.105725511908531,0.343660771846771,0.344290971755981,-0.873705267906189,0.320204526185989,0.470715492963791,-0.822128891944885,0.994358479976654,0.00855853594839573,-0.105725511908531,0.993837416172028,-0.000459367205621675,-0.110846251249313,-0.0872260257601738,-0.436925321817398,-0.895258605480194,0.343660771846771,0.344290971755981,-0.873705267906189,-0.0436981543898582,0.80135440826416,-0.596591591835022,-0.0252251997590065,0.813925623893738,-0.580421209335327,0.320204526185989,0.470715492963791,-0.822128891944885,-0.287407279014587,-0.561249136924744,-0.776142001152039,0.209388971328735,-0.830242455005646,0.51657897233963,-0.293086916208267,-0.681713402271271,0.670348405838013,-0.298350274562836,-0.552910923957825,-0.777995347976685,-0.298350274562836,-0.552910923957825,-0.777995347976685,-0.36706805229187,-0.295779347419739,-0.881915926933289,-0.332032203674316,-0.329001486301422,-0.884032070636749,-0.287407279014587,-0.561249136924744,-0.776142001152039,-0.308151990175247,-0.315881818532944,-0.897363424301147,-0.241982102394104,0.791081428527832,-0.561813950538635,-0.129945144057274,0.804451942443848,-0.579630374908447,-0.239533245563507,-0.367920935153961,-0.898475408554077,0.209388971328735,-0.830242455005646,0.51657897233963,0.0161192547529936,-0.998284041881561,0.0562939755618572,-0.243602365255356,-0.960586547851563,0.133908361196518,-0.293086916208267,-0.681713402271271,0.670348405838013,0.160545691847801,-0.827480792999268,0.538052618503571,-0.24171082675457,-0.551218211650848,-0.79858273267746,-0.219008222222328,-0.519407331943512,-0.825985133647919,0.0874453485012054,-0.815079808235168,0.572711408138275,0.0863518193364143,-0.803671717643738,0.588774263858795,0.299056321382523,-0.932920396327972,0.200561419129372,-0.296566694974899,-0.893843948841095,0.33629047870636,0.995912611484528,-0.0644237324595451,-0.0633043497800827,0.993837416172028,-0.000459367205621675,-0.110846251249313,0.994358479976654,0.00855853594839573,-0.105725511908531,
- 0.989430069923401,0.0569882765412331,-0.133343860507011,0.992035627365112,0.0840921774506569,-0.0937757417559624,0.995322585105896,-0.0346332564949989,-0.0901860594749451,-0.239533245563507,-0.367920935153961,-0.898475408554077,-0.24171082675457,-0.551218211650848,-0.79858273267746,-0.308151990175247,-0.315881818532944,-0.897363424301147,0.320204526185989,0.470715492963791,-0.822128891944885,0.343660771846771,0.344290971755981,-0.873705267906189,-0.110794633626938,-0.409721255302429,-0.905457377433777,-0.0436981543898582,0.80135440826416,-0.596591591835022,0.343660771846771,0.344290971755981,-0.873705267906189,-0.0872260257601738,-0.436925321817398,-0.895258605480194,-0.110794633626938,-0.409721255302429,-0.905457377433777,0.320204526185989,0.470715492963791,-0.822128891944885,-0.0252251997590065,0.813925623893738,-0.580421209335327,0.989430069923401,0.0569882765412331,-0.133343860507011,0.994358479976654,0.00855853594839573,-0.105725511908531,0.113225296139717,-0.822118103504181,0.557944238185883,-0.0970848351716995,-0.594504535198212,-0.798209846019745,0.995912611484528,-0.0644237324595451,-0.0633043497800827,-0.239533245563507,-0.367920935153961,-0.898475408554077,-0.129945144057274,0.804451942443848,-0.579630374908447,-0.0430204980075359,0.797729015350342,-0.601479530334473,-0.224012017250061,-0.37872114777565,-0.897991538047791,-0.889246761798859,0.0560898371040821,0.453976005315781,-0.325454384088516,0.789354383945465,-0.520575642585754,-0.426905751228333,-0.314004749059677,-0.848028600215912,-0.87941312789917,-0.00599165726453066,0.47602167725563,-0.326128423213959,-0.533371984958649,-0.780483543872833,0.278445273637772,-0.830202579498291,0.482941061258316,0.258865654468536,-0.829722225666046,0.494519501924515,-0.371605277061462,-0.54136323928833,-0.754211664199829,-0.378747582435608,-0.313005119562149,-0.870963871479034,-0.326128423213959,-0.533371984958649,-0.780483543872833,-0.371605277061462,-0.54136323928833,-0.754211664199829,-0.426905751228333,-0.314004749059677,-0.848028600215912,0.278445273637772,-0.830202579498291,0.482941061258316,
- 0.309707790613174,-0.804422199726105,0.506937861442566,0.067696325480938,-0.997392892837524,0.0249953530728817,0.0157619826495647,-0.998530685901642,0.0518472082912922,0.258865654468536,-0.829722225666046,0.494519501924515,-0.36706805229187,-0.295779347419739,-0.881915926933289,-0.201812714338303,0.800911128520966,-0.563749015331268,-0.236172705888748,0.790551960468292,-0.565022230148315,-0.332032203674316,-0.329001486301422,-0.884032070636749,-0.296566694974899,-0.893843948841095,0.33629047870636,-0.207639157772064,-0.602456629276276,-0.7706698179245,-0.119368366897106,-0.597265779972076,-0.7931107878685,0.0753577873110771,-0.822884559631348,0.563189446926117,-0.174602448940277,-0.407647460699081,-0.896290898323059,-0.236481755971909,0.799806773662567,-0.55171126127243,-0.113657169044018,0.802822649478912,-0.58528459072113,-0.133654475212097,-0.3824383020401,-0.914263367652893,0.0874453485012054,-0.815079808235168,0.572711408138275,-0.219008222222328,-0.519407331943512,-0.825985133647919,-0.217051237821579,-0.478699952363968,-0.850726306438446,0.299056321382523,-0.932920396327972,0.200561419129372,0.0753577873110771,-0.822884559631348,0.563189446926117,-0.119368366897106,-0.597265779972076,-0.7931107878685,-0.0970848351716995,-0.594504535198212,-0.798209846019745,0.113225296139717,-0.822118103504181,0.557944238185883,0.0753577873110771,-0.822884559631348,0.563189446926117,0.0863518193364143,-0.803671717643738,0.588774263858795,-0.296566694974899,-0.893843948841095,0.33629047870636,0.160545691847801,-0.827480792999268,0.538052618503571,-0.038341511040926,-0.99725329875946,0.0633708164095879,0.0768532380461693,-0.996473908424377,0.0336652956902981,-0.224012017250061,-0.37872114777565,-0.897991538047791,-0.217051237821579,-0.478699952363968,-0.850726306438446,-0.219008222222328,-0.519407331943512,-0.825985133647919,-0.24171082675457,-0.551218211650848,-0.79858273267746,-0.239533245563507,-0.367920935153961,-0.898475408554077,-0.133654475212097,-0.3824383020401,-0.914263367652893,-0.119368366897106,-0.597265779972076,-0.7931107878685,
- -0.207639157772064,-0.602456629276276,-0.7706698179245,-0.174602448940277,-0.407647460699081,-0.896290898323059,-0.426905751228333,-0.314004749059677,-0.848028600215912,-0.325454384088516,0.789354383945465,-0.520575642585754,-0.274391293525696,0.792418241500854,-0.544777810573578,-0.378747582435608,-0.313005119562149,-0.870963871479034,-0.371605277061462,-0.54136323928833,-0.754211664199829,0.258865654468536,-0.829722225666046,0.494519501924515,-0.848988890647888,-0.0583462044596672,0.52517956495285,-0.880496442317963,-0.0118618374690413,0.473904490470886,-0.426905751228333,-0.314004749059677,-0.848028600215912,-0.371605277061462,-0.54136323928833,-0.754211664199829,-0.880496442317963,-0.0118618374690413,0.473904490470886,-0.87941312789917,-0.00599165726453066,0.47602167725563,0.258865654468536,-0.829722225666046,0.494519501924515,0.0157619826495647,-0.998530685901642,0.0518472082912922,-0.870026767253876,-0.0290810838341713,0.492145955562592,-0.848988890647888,-0.0583462044596672,0.52517956495285,-0.332032203674316,-0.329001486301422,-0.884032070636749,-0.236172705888748,0.790551960468292,-0.565022230148315,-0.241982102394104,0.791081428527832,-0.561813950538635,-0.308151990175247,-0.315881818532944,-0.897363424301147,-0.287407279014587,-0.561249136924744,-0.776142001152039,-0.332032203674316,-0.329001486301422,-0.884032070636749,-0.308151990175247,-0.315881818532944,-0.897363424301147,-0.24171082675457,-0.551218211650848,-0.79858273267746,-0.24171082675457,-0.551218211650848,-0.79858273267746,0.160545691847801,-0.827480792999268,0.538052618503571,0.209388971328735,-0.830242455005646,0.51657897233963,-0.287407279014587,-0.561249136924744,-0.776142001152039,0.160545691847801,-0.827480792999268,0.538052618503571,0.0768532380461693,-0.996473908424377,0.0336652956902981,0.0161192547529936,-0.998284041881561,0.0562939755618572,0.209388971328735,-0.830242455005646,0.51657897233963,-0.378747582435608,-0.313005119562149,-0.870963871479034,-0.274391293525696,0.792418241500854,-0.544777810573578,-0.201812714338303,0.800911128520966,-0.563749015331268,
- -0.36706805229187,-0.295779347419739,-0.881915926933289,-0.36706805229187,-0.295779347419739,-0.881915926933289,-0.298350274562836,-0.552910923957825,-0.777995347976685,-0.326128423213959,-0.533371984958649,-0.780483543872833,-0.378747582435608,-0.313005119562149,-0.870963871479034,-0.298350274562836,-0.552910923957825,-0.777995347976685,-0.293086916208267,-0.681713402271271,0.670348405838013,0.278445273637772,-0.830202579498291,0.482941061258316,-0.326128423213959,-0.533371984958649,-0.780483543872833,-0.293086916208267,-0.681713402271271,0.670348405838013,0.309707790613174,-0.804422199726105,0.506937861442566,0.278445273637772,-0.830202579498291,0.482941061258316,0.309707790613174,-0.804422199726105,0.506937861442566,0.802082657814026,-0.491800218820572,-0.338815569877625,0.067696325480938,-0.997392892837524,0.0249953530728817,-0.293086916208267,-0.681713402271271,0.670348405838013,-0.243602365255356,-0.960586547851563,0.133908361196518,0.802082657814026,-0.491800218820572,-0.338815569877625,0.309707790613174,-0.804422199726105,0.506937861442566,0.160545691847801,-0.827480792999268,0.538052618503571,0.0874453485012054,-0.815079808235168,0.572711408138275,0.0863518193364143,-0.803671717643738,0.588774263858795,-0.0231281016021967,-0.998027503490448,0.058363001793623,-0.038341511040926,-0.99725329875946,0.0633708164095879,-0.133654475212097,-0.3824383020401,-0.914263367652893,-0.113657169044018,0.802822649478912,-0.58528459072113,-0.0436981543898582,0.80135440826416,-0.596591591835022,-0.110794633626938,-0.409721255302429,-0.905457377433777,-0.0872260257601738,-0.436925321817398,-0.895258605480194,-0.0970848351716995,-0.594504535198212,-0.798209846019745,-0.119368366897106,-0.597265779972076,-0.7931107878685,-0.133654475212097,-0.3824383020401,-0.914263367652893,-0.110794633626938,-0.409721255302429,-0.905457377433777,-0.224012017250061,-0.37872114777565,-0.897991538047791,-0.0430204980075359,0.797729015350342,-0.601479530334473,-0.236481755971909,0.799806773662567,-0.55171126127243,-0.174602448940277,-0.407647460699081,-0.896290898323059,
- -0.174602448940277,-0.407647460699081,-0.896290898323059,-0.207639157772064,-0.602456629276276,-0.7706698179245,-0.217051237821579,-0.478699952363968,-0.850726306438446,-0.224012017250061,-0.37872114777565,-0.897991538047791,0.299056321382523,-0.932920396327972,0.200561419129372,-0.217051237821579,-0.478699952363968,-0.850726306438446,-0.207639157772064,-0.602456629276276,-0.7706698179245,-0.296566694974899,-0.893843948841095,0.33629047870636,0.0863518193364143,-0.803671717643738,0.588774263858795,0.0874453485012054,-0.815079808235168,0.572711408138275,0.299056321382523,-0.932920396327972,0.200561419129372,0.995322585105896,-0.0346332564949989,-0.0901860594749451,0.0550123862922192,-0.997485101222992,0.0446912124752998,0.113225296139717,-0.822118103504181,0.557944238185883,0.995912611484528,-0.0644237324595451,-0.0633043497800827,0.0550123862922192,-0.997485101222992,0.0446912124752998,-0.0231281016021967,-0.998027503490448,0.058363001793623,0.0863518193364143,-0.803671717643738,0.588774263858795,0.0753577873110771,-0.822884559631348,0.563189446926117,0.113225296139717,-0.822118103504181,0.557944238185883,-0.870026767253876,-0.0290810838341713,0.492145955562592,-0.86987042427063,0.0765654593706131,0.487301915884018,-0.889246761798859,0.0560898371040821,0.453976005315781,-0.87941312789917,-0.00599165726453066,0.47602167725563,-0.880496442317963,-0.0118618374690413,0.473904490470886,-0.848988890647888,-0.0583462044596672,0.52517956495285,-0.86987042427063,0.0765654593706131,0.487301915884018,-0.315992951393127,0.821656882762909,-0.474371433258057,-0.325454384088516,0.789354383945465,-0.520575642585754,-0.889246761798859,0.0560898371040821,0.453976005315781,0.180959656834602,0.823229312896729,0.538095653057098,-0.86987042427063,0.0765654593706131,0.487301915884018,-0.850395441055298,0.0515174865722656,0.523615658283234,0.214641362428665,0.7916060090065,0.572091817855835,-0.0100172767415643,0.83047479391098,-0.556966006755829,0.992035627365112,0.0840921774506569,-0.0937757417559624,0.989430069923401,0.0569882765412331,-0.133343860507011,
- -0.0252251997590065,0.813925623893738,-0.580421209335327,0.244971722364426,0.826929092407227,0.50613933801651,-0.257451146841049,0.82509571313858,-0.502927482128143,-0.315992951393127,0.821656882762909,-0.474371433258057,0.180959656834602,0.823229312896729,0.538095653057098,-0.257451146841049,0.82509571313858,-0.502927482128143,0.244971722364426,0.826929092407227,0.50613933801651,0.284811317920685,0.830327749252319,0.478997111320496,-0.163302168250084,0.826929748058319,-0.538070142269135,-0.163302168250084,0.826929748058319,-0.538070142269135,0.284811317920685,0.830327749252319,0.478997111320496,0.156382814049721,0.828599572181702,0.537556827068329,-0.218782797455788,0.825886785984039,-0.519658744335175,0.218574985861778,0.834819495677948,0.505273461341858,-0.0429478846490383,0.833659172058105,-0.550606906414032,-0.107408188283443,0.836691200733185,-0.537039399147034,0.148510560393333,0.838485836982727,0.524295687675476,-0.0429478846490383,0.833659172058105,-0.550606906414032,0.218574985861778,0.834819495677948,0.505273461341858,-0.108447313308716,0.823935151100159,0.556210398674011,-0.285762101411819,0.823387742042542,-0.49027806520462,-0.285762101411819,0.823387742042542,-0.49027806520462,-0.108447313308716,0.823935151100159,0.556210398674011,0.0681187137961388,0.833175897598267,0.548796713352203,-0.0827426612377167,0.833420813083649,-0.546409428119659,-0.0827426612377167,0.833420813083649,-0.546409428119659,0.0681187137961388,0.833175897598267,0.548796713352203,0.149848744273186,0.830100417137146,0.537101984024048,-0.0100172767415643,0.83047479391098,-0.556966006755829,0.135642632842064,0.829726934432983,0.541437149047852,-0.232571661472321,0.823161780834198,-0.517991244792938,-0.218782797455788,0.825886785984039,-0.519658744335175,0.156382814049721,0.828599572181702,0.537556827068329,-0.232571661472321,0.823161780834198,-0.517991244792938,0.135642632842064,0.829726934432983,0.541437149047852,0.148510560393333,0.838485836982727,0.524295687675476,-0.107408188283443,0.836691200733185,-0.537039399147034,0.162645250558853,0.796559870243073,0.582270503044128,
- 0.150847896933556,0.80583643913269,0.572601497173309,0.148510560393333,0.838485836982727,0.524295687675476,0.135642632842064,0.829726934432983,0.541437149047852,0.175810962915421,0.792965352535248,0.583349287509918,0.156382814049721,0.828599572181702,0.537556827068329,0.284811317920685,0.830327749252319,0.478997111320496,0.27411612868309,0.804989635944366,0.526167333126068,0.175810962915421,0.792965352535248,0.583349287509918,0.162645250558853,0.796559870243073,0.582270503044128,0.135642632842064,0.829726934432983,0.541437149047852,0.156382814049721,0.828599572181702,0.537556827068329,0.27411612868309,0.804989635944366,0.526167333126068,0.284811317920685,0.830327749252319,0.478997111320496,0.244971722364426,0.826929092407227,0.50613933801651,0.264372676610947,0.793940424919128,0.547508656978607,0.150847896933556,0.80583643913269,0.572601497173309,0.239463374018669,0.799034774303436,0.551544010639191,0.218574985861778,0.834819495677948,0.505273461341858,0.148510560393333,0.838485836982727,0.524295687675476,0.218574985861778,0.834819495677948,0.505273461341858,0.239463374018669,0.799034774303436,0.551544010639191,-0.033432375639677,0.802737891674042,0.595394134521484,-0.108447313308716,0.823935151100159,0.556210398674011,0.244971722364426,0.826929092407227,0.50613933801651,0.180959656834602,0.823229312896729,0.538095653057098,0.214641362428665,0.7916060090065,0.572091817855835,0.264372676610947,0.793940424919128,0.547508656978607,0.0681187137961388,0.833175897598267,0.548796713352203,-0.108447313308716,0.823935151100159,0.556210398674011,-0.033432375639677,0.802737891674042,0.595394134521484,0.0517986863851547,0.800702929496765,0.596818029880524,0.149848744273186,0.830100417137146,0.537101984024048,0.0681187137961388,0.833175897598267,0.548796713352203,0.0517986863851547,0.800702929496765,0.596818029880524,0.126140534877777,0.801090717315674,0.585100054740906,0.137988060712814,0.811769425868988,0.567441284656525,-0.236172705888748,0.790551960468292,-0.565022230148315,-0.201812714338303,0.800911128520966,-0.563749015331268,
- -0.163302168250084,0.826929748058319,-0.538070142269135,-0.218782797455788,0.825886785984039,-0.519658744335175,-0.236172705888748,0.790551960468292,-0.565022230148315,-0.218782797455788,0.825886785984039,-0.519658744335175,-0.232571661472321,0.823161780834198,-0.517991244792938,-0.241982102394104,0.791081428527832,-0.561813950538635,-0.201812714338303,0.800911128520966,-0.563749015331268,-0.274391293525696,0.792418241500854,-0.544777810573578,-0.257451146841049,0.82509571313858,-0.502927482128143,-0.163302168250084,0.826929748058319,-0.538070142269135,-0.129945144057274,0.804451942443848,-0.579630374908447,-0.107408188283443,0.836691200733185,-0.537039399147034,-0.0429478846490383,0.833659172058105,-0.550606906414032,-0.0430204980075359,0.797729015350342,-0.601479530334473,-0.0429478846490383,0.833659172058105,-0.550606906414032,-0.285762101411819,0.823387742042542,-0.49027806520462,-0.236481755971909,0.799806773662567,-0.55171126127243,-0.0430204980075359,0.797729015350342,-0.601479530334473,-0.315992951393127,0.821656882762909,-0.474371433258057,-0.257451146841049,0.82509571313858,-0.502927482128143,-0.274391293525696,0.792418241500854,-0.544777810573578,-0.325454384088516,0.789354383945465,-0.520575642585754,-0.285762101411819,0.823387742042542,-0.49027806520462,-0.0827426612377167,0.833420813083649,-0.546409428119659,-0.113657169044018,0.802822649478912,-0.58528459072113,-0.236481755971909,0.799806773662567,-0.55171126127243,-0.241982102394104,0.791081428527832,-0.561813950538635,-0.232571661472321,0.823161780834198,-0.517991244792938,-0.107408188283443,0.836691200733185,-0.537039399147034,-0.129945144057274,0.804451942443848,-0.579630374908447,-0.0827426612377167,0.833420813083649,-0.546409428119659,-0.0100172767415643,0.83047479391098,-0.556966006755829,-0.0252251997590065,0.813925623893738,-0.580421209335327,-0.0436981543898582,0.80135440826416,-0.596591591835022,-0.113657169044018,0.802822649478912,-0.58528459072113,-0.315992951393127,0.821656882762909,-0.474371433258057,-0.86987042427063,0.0765654593706131,0.487301915884018,
- 0.180959656834602,0.823229312896729,0.538095653057098,-0.0100172767415643,0.83047479391098,-0.556966006755829,0.149848744273186,0.830100417137146,0.537101984024048,0.992035627365112,0.0840921774506569,-0.0937757417559624,0.38084602355957,-0.560144007205963,0.73565948009491,0.499611526727676,-0.55987960100174,0.661001682281494,-0.670983135700226,-0.719563245773315,-0.178914159536362,-0.331673443317413,-0.826561033725739,-0.45474112033844,0.499611526727676,-0.55987960100174,0.661001682281494,0.38084602355957,-0.560144007205963,0.73565948009491,0.454790711402893,-0.320671856403351,0.830864012241364,0.559818208217621,-0.29864364862442,0.77292662858963,-0.331673443317413,-0.826561033725739,-0.45474112033844,-0.670983135700226,-0.719563245773315,-0.178914159536362,-0.00194832950364798,-0.992162048816681,0.124942652881145,-0.0428193472325802,-0.995020568370819,0.0900033265352249,-0.73103654384613,0.0472714863717556,0.680698812007904,-0.7460578083992,-0.003403733484447,0.66587245464325,0.582326591014862,-0.313682585954666,0.749999284744263,0.325754135847092,0.791794300079346,0.516668319702148,0.565792858600616,-0.541631639003754,0.621702134609222,0.518246829509735,-0.552211880683899,0.653056085109711,-0.333260029554367,-0.826911509037018,-0.452940404415131,-0.31455409526825,-0.82652074098587,-0.46681821346283,0.625644207000732,-0.310413122177124,0.715690732002258,0.582326591014862,-0.313682585954666,0.749999284744263,0.518246829509735,-0.552211880683899,0.653056085109711,0.565792858600616,-0.541631639003754,0.621702134609222,-0.31455409526825,-0.82652074098587,-0.46681821346283,-0.333260029554367,-0.826911509037018,-0.452940404415131,0.0286496356129646,-0.998480618000031,0.0470692962408066,0.100746154785156,-0.994911909103394,-0.000710550753865391,0.559818208217621,-0.29864364862442,0.77292662858963,0.454790711402893,-0.320671856403351,0.830864012241364,0.348106503486633,0.794007837772369,0.498370856046677,0.375012665987015,0.804962754249573,0.459783226251602,0.582326591014862,-0.313682585954666,0.749999284744263,0.625644207000732,-0.310413122177124,0.715690732002258,
- 0.365518510341644,0.793966114521027,0.485812664031982,0.325754135847092,0.791794300079346,0.516668319702148,0.518246829509735,-0.552211880683899,0.653056085109711,-0.744818568229675,-0.00778346788138151,0.667221546173096,-0.775764942169189,-0.0477893427014351,0.629209816455841,-0.333260029554367,-0.826911509037018,-0.452940404415131,0.582326591014862,-0.313682585954666,0.749999284744263,-0.7460578083992,-0.003403733484447,0.66587245464325,-0.744818568229675,-0.00778346788138151,0.667221546173096,0.518246829509735,-0.552211880683899,0.653056085109711,-0.333260029554367,-0.826911509037018,-0.452940404415131,-0.775764942169189,-0.0477893427014351,0.629209816455841,-0.754339039325714,-0.024701576679945,0.656020283699036,0.0286496356129646,-0.998480618000031,0.0470692962408066,0.348106503486633,0.794007837772369,0.498370856046677,0.309553533792496,0.828196942806244,0.467190057039261,0.0659711956977844,0.994070827960968,-0.0864352732896805,0.375012665987015,0.804962754249573,0.459783226251602,0.454790711402893,-0.320671856403351,0.830864012241364,0.523384094238281,-0.333062261343002,0.784307658672333,0.381151139736176,0.790934562683105,0.478692352771759,0.348106503486633,0.794007837772369,0.498370856046677,0.38084602355957,-0.560144007205963,0.73565948009491,0.454102724790573,-0.563758134841919,0.689903974533081,0.523384094238281,-0.333062261343002,0.784307658672333,0.454790711402893,-0.320671856403351,0.830864012241364,0.454102724790573,-0.563758134841919,0.689903974533081,0.38084602355957,-0.560144007205963,0.73565948009491,-0.331673443317413,-0.826561033725739,-0.45474112033844,-0.315632164478302,-0.828113198280334,-0.463254600763321,-0.315632164478302,-0.828113198280334,-0.463254600763321,-0.331673443317413,-0.826561033725739,-0.45474112033844,-0.0428193472325802,-0.995020568370819,0.0900033265352249,0.00360182882286608,-0.998251974582672,0.0589923970401287,0.348106503486633,0.794007837772369,0.498370856046677,0.381151139736176,0.790934562683105,0.478692352771759,0.359392017126083,0.825439989566803,0.43529999256134,
- 0.309553533792496,0.828196942806244,0.467190057039261,0.625644207000732,-0.310413122177124,0.715690732002258,0.559818208217621,-0.29864364862442,0.77292662858963,0.375012665987015,0.804962754249573,0.459783226251602,0.365518510341644,0.793966114521027,0.485812664031982,0.559818208217621,-0.29864364862442,0.77292662858963,0.625644207000732,-0.310413122177124,0.715690732002258,0.565792858600616,-0.541631639003754,0.621702134609222,0.499611526727676,-0.55987960100174,0.661001682281494,0.499611526727676,-0.55987960100174,0.661001682281494,0.565792858600616,-0.541631639003754,0.621702134609222,-0.31455409526825,-0.82652074098587,-0.46681821346283,-0.670983135700226,-0.719563245773315,-0.178914159536362,-0.670983135700226,-0.719563245773315,-0.178914159536362,-0.31455409526825,-0.82652074098587,-0.46681821346283,0.100746154785156,-0.994911909103394,-0.000710550753865391,-0.670983135700226,-0.719563245773315,-0.178914159536362,0.100746154785156,-0.994911909103394,-0.000710550753865391,-0.00194832950364798,-0.992162048816681,0.124942652881145,0.375012665987015,0.804962754249573,0.459783226251602,0.0659711956977844,0.994070827960968,-0.0864352732896805,0.350039422512054,0.825999677181244,0.441810965538025,0.365518510341644,0.793966114521027,0.485812664031982,0.350039422512054,0.825999677181244,0.441810965538025,0.285994738340378,0.823614895343781,0.48976057767868,0.325754135847092,0.791794300079346,0.516668319702148,0.365518510341644,0.793966114521027,0.485812664031982,-0.755362510681152,0.0580824390053749,0.652728080749512,-0.754339039325714,-0.024701576679945,0.656020283699036,-0.775764942169189,-0.0477893427014351,0.629209816455841,-0.744818568229675,-0.00778346788138151,0.667221546173096,-0.7460578083992,-0.003403733484447,0.66587245464325,-0.73103654384613,0.0472714863717556,0.680698812007904,-0.480537474155426,-0.554970622062683,-0.679036974906921,0.257771730422974,-0.829691290855408,0.495142430067062,0.341771453619003,-0.800849437713623,0.491764605045319,-0.444642156362534,-0.553635239601135,-0.7041175365448,-0.444642156362534,-0.553635239601135,-0.7041175365448,
- -0.529973924160004,-0.29560261964798,-0.79482501745224,-0.533345103263855,-0.319519698619843,-0.783230602741241,-0.480537474155426,-0.554970622062683,-0.679036974906921,0.257771730422974,-0.829691290855408,0.495142430067062,-0.0428193472325802,-0.995020568370819,0.0900033265352249,-0.00194832950364798,-0.992162048816681,0.124942652881145,0.341771453619003,-0.800849437713623,0.491764605045319,-0.778556704521179,0.0515475533902645,0.625453650951386,-0.41943359375,0.789315819740295,-0.448392748832703,-0.584698379039764,-0.314175516366959,-0.747944951057434,-0.76586252450943,-0.00422509061172605,0.642990410327911,-0.475113660097122,-0.533204078674316,-0.699971735477448,0.374984592199326,-0.829699397087097,0.413504093885422,0.35289078950882,-0.829859554767609,0.432205110788345,-0.511881709098816,-0.541006445884705,-0.667299747467041,-0.544768452644348,-0.312456011772156,-0.77820211648941,-0.475113660097122,-0.533204078674316,-0.699971735477448,-0.511881709098816,-0.541006445884705,-0.667299747467041,-0.584698379039764,-0.314175516366959,-0.747944951057434,0.374984592199326,-0.829699397087097,0.413504093885422,0.100746154785156,-0.994911909103394,-0.000710550753865391,0.0286496356129646,-0.998480618000031,0.0470692962408066,0.35289078950882,-0.829859554767609,0.432205110788345,-0.529973924160004,-0.29560261964798,-0.79482501745224,-0.304295599460602,0.800942420959473,-0.515650391578674,-0.296419441699982,0.792077958583832,-0.533617854118347,-0.533345103263855,-0.319519698619843,-0.783230602741241,-0.296419441699982,0.792077958583832,-0.533617854118347,-0.304295599460602,0.800942420959473,-0.515650391578674,0.0659711956977844,0.994070827960968,-0.0864352732896805,-0.280600339174271,0.826617300510406,-0.487818956375122,-0.584698379039764,-0.314175516366959,-0.747944951057434,-0.41943359375,0.789315819740295,-0.448392748832703,-0.378049790859222,0.792425453662872,-0.478685885667801,-0.544768452644348,-0.312456011772156,-0.77820211648941,-0.511881709098816,-0.541006445884705,-0.667299747467041,0.35289078950882,-0.829859554767609,0.432205110788345,
- -0.730024099349976,-0.0518795065581799,0.681449413299561,-0.767237186431885,-0.00954435579478741,0.64129239320755,-0.584698379039764,-0.314175516366959,-0.747944951057434,-0.511881709098816,-0.541006445884705,-0.667299747467041,-0.767237186431885,-0.00954435579478741,0.64129239320755,-0.76586252450943,-0.00422509061172605,0.642990410327911,0.35289078950882,-0.829859554767609,0.432205110788345,0.0286496356129646,-0.998480618000031,0.0470692962408066,-0.754339039325714,-0.024701576679945,0.656020283699036,-0.730024099349976,-0.0518795065581799,0.681449413299561,-0.533345103263855,-0.319519698619843,-0.783230602741241,-0.296419441699982,0.792077958583832,-0.533617854118347,-0.26287180185318,0.788532137870789,-0.555981457233429,-0.468463093042374,-0.327332973480225,-0.820606708526611,-0.480537474155426,-0.554970622062683,-0.679036974906921,-0.533345103263855,-0.319519698619843,-0.783230602741241,-0.468463093042374,-0.327332973480225,-0.820606708526611,-0.416579812765121,-0.556326150894165,-0.719000935554504,-0.416579812765121,-0.556326150894165,-0.719000935554504,0.271093219518662,-0.831820726394653,0.484337359666824,0.257771730422974,-0.829691290855408,0.495142430067062,-0.480537474155426,-0.554970622062683,-0.679036974906921,0.271093219518662,-0.831820726394653,0.484337359666824,0.00360182882286608,-0.998251974582672,0.0589923970401287,-0.0428193472325802,-0.995020568370819,0.0900033265352249,0.257771730422974,-0.829691290855408,0.495142430067062,-0.296419441699982,0.792077958583832,-0.533617854118347,-0.280600339174271,0.826617300510406,-0.487818956375122,-0.233675941824913,0.8226597905159,-0.51829195022583,-0.26287180185318,0.788532137870789,-0.555981457233429,-0.304295599460602,0.800942420959473,-0.515650391578674,-0.378049790859222,0.792425453662872,-0.478685885667801,-0.343617081642151,0.824779987335205,-0.449071496725082,0.0659711956977844,0.994070827960968,-0.0864352732896805,-0.544768452644348,-0.312456011772156,-0.77820211648941,-0.378049790859222,0.792425453662872,-0.478685885667801,-0.304295599460602,0.800942420959473,-0.515650391578674,
- -0.529973924160004,-0.29560261964798,-0.79482501745224,-0.529973924160004,-0.29560261964798,-0.79482501745224,-0.444642156362534,-0.553635239601135,-0.7041175365448,-0.475113660097122,-0.533204078674316,-0.699971735477448,-0.544768452644348,-0.312456011772156,-0.77820211648941,-0.444642156362534,-0.553635239601135,-0.7041175365448,0.341771453619003,-0.800849437713623,0.491764605045319,0.374984592199326,-0.829699397087097,0.413504093885422,-0.475113660097122,-0.533204078674316,-0.699971735477448,0.100746154785156,-0.994911909103394,-0.000710550753865391,0.374984592199326,-0.829699397087097,0.413504093885422,0.341771453619003,-0.800849437713623,0.491764605045319,-0.00194832950364798,-0.992162048816681,0.124942652881145,-0.401249140501022,0.821756780147552,-0.404617041349411,-0.343617081642151,0.824779987335205,-0.449071496725082,-0.378049790859222,0.792425453662872,-0.478685885667801,-0.41943359375,0.789315819740295,-0.448392748832703,-0.754339039325714,-0.024701576679945,0.656020283699036,-0.755362510681152,0.0580824390053749,0.652728080749512,-0.778556704521179,0.0515475533902645,0.625453650951386,-0.76586252450943,-0.00422509061172605,0.642990410327911,-0.767237186431885,-0.00954435579478741,0.64129239320755,-0.730024099349976,-0.0518795065581799,0.681449413299561,-0.755362510681152,0.0580824390053749,0.652728080749512,-0.401249140501022,0.821756780147552,-0.404617041349411,-0.41943359375,0.789315819740295,-0.448392748832703,-0.778556704521179,0.0515475533902645,0.625453650951386,0.882555246353149,-0.0255895834416151,-0.469511747360229,0.858035027980804,-0.0730985179543495,-0.508362591266632,0.876096308231354,-0.095151960849762,-0.472653567790985,0.894431054592133,-0.076153002679348,-0.440674185752869,0.873656392097473,-0.0267957914620638,-0.485805034637451,0.873467803001404,-0.0238302983343601,-0.486298322677612,0.857295334339142,0.0376603193581104,-0.513445556163788,0.877391338348389,0.0325254239141941,-0.4786716401577,0.896422982215881,0.0338428653776646,-0.441905468702316,0.882754385471344,-0.0230658520013094,-0.469268262386322,
- 0.381151139736176,0.790934562683105,0.478692352771759,0.896422982215881,0.0338428653776646,-0.441905468702316,0.877391338348389,0.0325254239141941,-0.4786716401577,0.359392017126083,0.825439989566803,0.43529999256134,-0.26287180185318,0.788532137870789,-0.555981457233429,-0.233675941824913,0.8226597905159,-0.51829195022583,0.877391338348389,0.0325254239141941,-0.4786716401577,0.857295334339142,0.0376603193581104,-0.513445556163788,-0.468463093042374,-0.327332973480225,-0.820606708526611,-0.26287180185318,0.788532137870789,-0.555981457233429,0.857295334339142,0.0376603193581104,-0.513445556163788,0.873467803001404,-0.0238302983343601,-0.486298322677612,-0.416579812765121,-0.556326150894165,-0.719000935554504,-0.468463093042374,-0.327332973480225,-0.820606708526611,0.873467803001404,-0.0238302983343601,-0.486298322677612,0.873656392097473,-0.0267957914620638,-0.485805034637451,0.873656392097473,-0.0267957914620638,-0.485805034637451,0.894431054592133,-0.076153002679348,-0.440674185752869,0.271093219518662,-0.831820726394653,0.484337359666824,-0.416579812765121,-0.556326150894165,-0.719000935554504,0.894431054592133,-0.076153002679348,-0.440674185752869,0.876096308231354,-0.095151960849762,-0.472653567790985,0.00360182882286608,-0.998251974582672,0.0589923970401287,0.271093219518662,-0.831820726394653,0.484337359666824,0.858035027980804,-0.0730985179543495,-0.508362591266632,-0.315632164478302,-0.828113198280334,-0.463254600763321,0.00360182882286608,-0.998251974582672,0.0589923970401287,0.876096308231354,-0.095151960849762,-0.472653567790985,0.882555246353149,-0.0255895834416151,-0.469511747360229,0.454102724790573,-0.563758134841919,0.689903974533081,-0.315632164478302,-0.828113198280334,-0.463254600763321,0.858035027980804,-0.0730985179543495,-0.508362591266632,0.523384094238281,-0.333062261343002,0.784307658672333,0.454102724790573,-0.563758134841919,0.689903974533081,0.882555246353149,-0.0255895834416151,-0.469511747360229,0.882754385471344,-0.0230658520013094,-0.469268262386322,0.381151139736176,0.790934562683105,0.478692352771759,
- 0.523384094238281,-0.333062261343002,0.784307658672333,0.882754385471344,-0.0230658520013094,-0.469268262386322,0.896422982215881,0.0338428653776646,-0.441905468702316,-0.988984644412994,0.0537411011755466,0.13791760802269,-0.992309510707855,-0.00625111535191536,0.123623214662075,0.0290124341845512,-0.364757210016251,0.930650591850281,0.0209138803184032,0.862832367420197,0.505057394504547,0.0782352760434151,-0.570565819740295,0.8175168633461,0.0190212056040764,-0.571303844451904,0.820518255233765,-0.0574419125914574,-0.881546139717102,-0.468590348958969,-0.0375284068286419,-0.882350444793701,-0.469094306230545,0.0804354771971703,-0.374022662639618,0.92392498254776,0.0290124341845512,-0.364757210016251,0.930650591850281,0.0190212056040764,-0.571303844451904,0.820518255233765,0.0782352760434151,-0.570565819740295,0.8175168633461,-0.0375284068286419,-0.882350444793701,-0.469094306230545,-0.0574419125914574,-0.881546139717102,-0.468590348958969,-0.0469218790531158,-0.997803092002869,0.046768706291914,-0.00705974362790585,-0.99903017282486,0.0434611141681671,-0.0217181202024221,-0.867307245731354,-0.49729910492897,0.0290124341845512,-0.364757210016251,0.930650591850281,0.0804354771971703,-0.374022662639618,0.92392498254776,0.0591574162244797,0.861301422119141,0.504638731479645,0.0209138803184032,0.862832367420197,0.505057394504547,0.0190212056040764,-0.571303844451904,0.820518255233765,-0.992201328277588,-0.0104935178533196,0.124202720820904,-0.995507299900055,-0.0468087196350098,0.0823048129677773,-0.0574419125914574,-0.881546139717102,-0.468590348958969,0.0290124341845512,-0.364757210016251,0.930650591850281,-0.992309510707855,-0.00625111535191536,0.123623214662075,-0.992201328277588,-0.0104935178533196,0.124202720820904,0.0190212056040764,-0.571303844451904,0.820518255233765,-0.0574419125914574,-0.881546139717102,-0.468590348958969,-0.995507299900055,-0.0468087196350098,0.0823048129677773,-0.993569195270538,-0.0321685075759888,0.108560644090176,-0.0469218790531158,-0.997803092002869,0.046768706291914,0.0804354771971703,-0.374022662639618,0.92392498254776,
- 0.999692380428314,-0.0213678907603025,0.0125899696722627,0.998466610908508,0.0420055612921715,0.0360577180981636,0.0591574162244797,0.861301422119141,0.504638731479645,0.999692380428314,-0.0213678907603025,0.0125899696722627,0.0804354771971703,-0.374022662639618,0.92392498254776,0.0782352760434151,-0.570565819740295,0.8175168633461,0.999657869338989,-0.0238690823316574,0.0106954071670771,0.999657869338989,-0.0238690823316574,0.0106954071670771,0.0782352760434151,-0.570565819740295,0.8175168633461,-0.0375284068286419,-0.882350444793701,-0.469094306230545,0.999529302120209,-0.0304040461778641,-0.00411903392523527,0.999529302120209,-0.0304040461778641,-0.00411903392523527,-0.0375284068286419,-0.882350444793701,-0.469094306230545,-0.0217181202024221,-0.867307245731354,-0.49729910492897,-0.0217181202024221,-0.867307245731354,-0.49729910492897,-0.00705974362790585,-0.99903017282486,0.0434611141681671,0.802440404891968,-0.596636474132538,0.0106902318075299,0.999529302120209,-0.0304040461778641,-0.00411903392523527,-0.0217181202024221,-0.867307245731354,-0.49729910492897,0.802440404891968,-0.596636474132538,0.0106902318075299,0.999179005622864,-0.0403999835252762,0.00301576964557171,0.998466610908508,0.0420055612921715,0.0360577180981636,0.996911466121674,0.0785338059067726,-2.81617631117115e-005,0.0730637162923813,0.88191020488739,0.465721189975739,0.0591574162244797,0.861301422119141,0.504638731479645,0.0730637162923813,0.88191020488739,0.465721189975739,0.00675863493233919,0.88328629732132,0.468785345554352,0.0209138803184032,0.862832367420197,0.505057394504547,0.0591574162244797,0.861301422119141,0.504638731479645,-0.992320597171783,0.0644521117210388,0.105573982000351,-0.993569195270538,-0.0321685075759888,0.108560644090176,-0.995507299900055,-0.0468087196350098,0.0823048129677773,-0.992201328277588,-0.0104935178533196,0.124202720820904,-0.992309510707855,-0.00625111535191536,0.123623214662075,-0.988984644412994,0.0537411011755466,0.13791760802269,-0.995523154735565,0.0581569336354733,0.0745075419545174,-0.0348069407045841,0.860581040382385,-0.508122742176056,
- -0.0681667029857636,-0.366542994976044,-0.927900552749634,-0.996037423610687,-0.00754392892122269,0.0886147990822792,-0.0138190295547247,-0.561591565608978,-0.827299177646637,0.0133897066116333,-0.885233461856842,0.464954316616058,-0.00523608457297087,-0.883742928504944,0.467943519353867,-0.064963810145855,-0.561795234680176,-0.824721693992615,-0.0204633865505457,-0.375425338745117,-0.926626682281494,-0.0138190295547247,-0.561591565608978,-0.827299177646637,-0.064963810145855,-0.561795234680176,-0.824721693992615,-0.0681667029857636,-0.366542994976044,-0.927900552749634,0.0133897066116333,-0.885233461856842,0.464954316616058,0.0300098657608032,-0.865930616855621,0.499263107776642,-0.00705974362790585,-0.99903017282486,0.0434611141681671,-0.0469218790531158,-0.997803092002869,0.046768706291914,-0.00523608457297087,-0.883742928504944,0.467943519353867,-0.0681667029857636,-0.366542994976044,-0.927900552749634,-0.0348069407045841,0.860581040382385,-0.508122742176056,0.00508951302617788,0.859839677810669,-0.510538697242737,-0.0204633865505457,-0.375425338745117,-0.926626682281494,-0.064963810145855,-0.561795234680176,-0.824721693992615,-0.00523608457297087,-0.883742928504944,0.467943519353867,-0.989589631557465,-0.0505934581160545,0.134731844067574,-0.996041536331177,-0.0126524614170194,0.0879834368824959,-0.0681667029857636,-0.366542994976044,-0.927900552749634,-0.064963810145855,-0.561795234680176,-0.824721693992615,-0.996041536331177,-0.0126524614170194,0.0879834368824959,-0.996037423610687,-0.00754392892122269,0.0886147990822792,-0.00523608457297087,-0.883742928504944,0.467943519353867,-0.0469218790531158,-0.997803092002869,0.046768706291914,-0.993569195270538,-0.0321685075759888,0.108560644090176,-0.989589631557465,-0.0505934581160545,0.134731844067574,0.998350441455841,0.0463851951062679,-0.0338350832462311,0.00508951302617788,0.859839677810669,-0.510538697242737,0.0180254671722651,0.881851613521576,-0.471182465553284,0.996911466121674,0.0785338059067726,-2.81617631117115e-005,-0.0204633865505457,-0.375425338745117,-0.926626682281494,
- 0.00508951302617788,0.859839677810669,-0.510538697242737,0.998350441455841,0.0463851951062679,-0.0338350832462311,0.999708890914917,-0.0221112594008446,-0.00965193193405867,0.999708890914917,-0.0221112594008446,-0.00965193193405867,0.999655485153198,-0.0251751188188791,-0.00742428004741669,-0.0138190295547247,-0.561591565608978,-0.827299177646637,-0.0204633865505457,-0.375425338745117,-0.926626682281494,0.999655485153198,-0.0251751188188791,-0.00742428004741669,0.999424159526825,-0.0323293842375278,0.0103053832426667,0.0133897066116333,-0.885233461856842,0.464954316616058,-0.0138190295547247,-0.561591565608978,-0.827299177646637,0.999424159526825,-0.0323293842375278,0.0103053832426667,0.0300098657608032,-0.865930616855621,0.499263107776642,0.0133897066116333,-0.885233461856842,0.464954316616058,0.0300098657608032,-0.865930616855621,0.499263107776642,0.802440404891968,-0.596636474132538,0.0106902318075299,-0.00705974362790585,-0.99903017282486,0.0434611141681671,0.999424159526825,-0.0323293842375278,0.0103053832426667,0.999179005622864,-0.0403999835252762,0.00301576964557171,0.802440404891968,-0.596636474132538,0.0106902318075299,0.0300098657608032,-0.865930616855621,0.499263107776642,-0.0422585420310497,0.8820760846138,-0.469207674264908,0.0180254671722651,0.881851613521576,-0.471182465553284,0.00508951302617788,0.859839677810669,-0.510538697242737,-0.0348069407045841,0.860581040382385,-0.508122742176056,-0.993569195270538,-0.0321685075759888,0.108560644090176,-0.992320597171783,0.0644521117210388,0.105573982000351,-0.995523154735565,0.0581569336354733,0.0745075419545174,-0.996037423610687,-0.00754392892122269,0.0886147990822792,-0.996041536331177,-0.0126524614170194,0.0879834368824959,-0.989589631557465,-0.0505934581160545,0.134731844067574,-0.992320597171783,0.0644521117210388,0.105573982000351,-0.0422585420310497,0.8820760846138,-0.469207674264908,-0.0348069407045841,0.860581040382385,-0.508122742176056,-0.995523154735565,0.0581569336354733,0.0745075419545174,0.999657869338989,-0.0238690823316574,0.0106954071670771,
- 0.999529302120209,-0.0304040461778641,-0.00411903392523527,0.999179005622864,-0.0403999835252762,0.00301576964557171,0.999424159526825,-0.0323293842375278,0.0103053832426667,0.999655485153198,-0.0251751188188791,-0.00742428004741669,0.999708890914917,-0.0221112594008446,-0.00965193193405867,0.998350441455841,0.0463851951062679,-0.0338350832462311,0.996911466121674,0.0785338059067726,-2.81617631117115e-005,0.998466610908508,0.0420055612921715,0.0360577180981636,0.999692380428314,-0.0213678907603025,0.0125899696722627,0.00675863493233919,0.88328629732132,0.468785345554352,-0.992320597171783,0.0644521117210388,0.105573982000351,-0.988984644412994,0.0537411011755466,0.13791760802269,0.0209138803184032,0.862832367420197,0.505057394504547,-0.0422585420310497,0.8820760846138,-0.469207674264908,0.00675863493233919,0.88328629732132,0.468785345554352,0.0730637162923813,0.88191020488739,0.465721189975739,0.0180254671722651,0.881851613521576,-0.471182465553284,-0.0422585420310497,0.8820760846138,-0.469207674264908,-0.992320597171783,0.0644521117210388,0.105573982000351,0.00675863493233919,0.88328629732132,0.468785345554352,0.0180254671722651,0.881851613521576,-0.471182465553284,0.0730637162923813,0.88191020488739,0.465721189975739,0.996911466121674,0.0785338059067726,-2.81617631117115e-005,0.285994738340378,0.823614895343781,0.48976057767868,-0.755362510681152,0.0580824390053749,0.652728080749512,-0.73103654384613,0.0472714863717556,0.680698812007904,0.325754135847092,0.791794300079346,0.516668319702148,0.350039422512054,0.825999677181244,0.441810965538025,-0.343617081642151,0.824779987335205,-0.449071496725082,-0.401249140501022,0.821756780147552,-0.404617041349411,0.285994738340378,0.823614895343781,0.48976057767868,-0.280600339174271,0.826617300510406,-0.487818956375122,0.309553533792496,0.828196942806244,0.467190057039261,0.359392017126083,0.825439989566803,0.43529999256134,-0.233675941824913,0.8226597905159,-0.51829195022583,-0.343617081642151,0.824779987335205,-0.449071496725082,0.350039422512054,0.825999677181244,0.441810965538025,
- 0.0659711956977844,0.994070827960968,-0.0864352732896805,-0.401249140501022,0.821756780147552,-0.404617041349411,-0.755362510681152,0.0580824390053749,0.652728080749512,0.285994738340378,0.823614895343781,0.48976057767868,-0.280600339174271,0.826617300510406,-0.487818956375122,0.0659711956977844,0.994070827960968,-0.0864352732896805,0.309553533792496,0.828196942806244,0.467190057039261,-0.233675941824913,0.8226597905159,-0.51829195022583,0.359392017126083,0.825439989566803,0.43529999256134,0.877391338348389,0.0325254239141941,-0.4786716401577,0.749604046344757,-0.569648802280426,0.337037175893784,0.785755693912506,-0.560047686100006,0.262553960084915,-0.655404031276703,-0.741415977478027,0.144041463732719,-0.496806889772415,-0.827039361000061,-0.263037294149399,0.785755693912506,-0.560047686100006,0.262553960084915,0.749604046344757,-0.569648802280426,0.337037175893784,0.856626033782959,-0.333472639322281,0.393684774637222,0.898509442806244,-0.298468947410584,0.321865111589432,-0.496806889772415,-0.827039361000061,-0.263037294149399,-0.655404031276703,-0.741415977478027,0.144041463732719,-0.0582019574940205,-0.952207386493683,0.299856066703796,0.0501266345381737,-0.998553335666656,0.019455598667264,-0.219519421458244,0.0478469580411911,0.974434077739716,-0.240663424134254,-0.00370214018039405,0.970601618289948,0.896517276763916,-0.301974505186081,0.324142307043076,0.584352791309357,0.794848680496216,0.163546055555344,0.796908557415009,-0.551689922809601,0.24611958861351,0.782464623451233,-0.543653011322021,0.303628742694855,-0.555324137210846,-0.825009644031525,-0.104758523404598,-0.546872735023499,-0.82728523015976,-0.128566592931747,0.907000541687012,-0.322568148374558,0.270739376544952,0.896517276763916,-0.301974505186081,0.324142307043076,0.782464623451233,-0.543653011322021,0.303628742694855,0.796908557415009,-0.551689922809601,0.24611958861351,-0.546872735023499,-0.82728523015976,-0.128566592931747,-0.555324137210846,-0.825009644031525,-0.104758523404598,0.0205063410103321,-0.993054151535034,0.115857176482677,
- 0.0475345514714718,-0.99816620349884,0.0374787412583828,0.898509442806244,-0.298468947410584,0.321865111589432,0.856626033782959,-0.333472639322281,0.393684774637222,0.536755204200745,0.792092680931091,0.290659427642822,0.56876415014267,0.804991543292999,0.168807432055473,0.896517276763916,-0.301974505186081,0.324142307043076,0.907000541687012,-0.322568148374558,0.270739376544952,0.601439118385315,0.790454983711243,0.115982741117477,0.584352791309357,0.794848680496216,0.163546055555344,0.782464623451233,-0.543653011322021,0.303628742694855,-0.238879680633545,-0.00813644472509623,0.97101503610611,-0.286478847265244,-0.0486485101282597,0.956850647926331,-0.555324137210846,-0.825009644031525,-0.104758523404598,0.896517276763916,-0.301974505186081,0.324142307043076,-0.240663424134254,-0.00370214018039405,0.970601618289948,-0.238879680633545,-0.00813644472509623,0.97101503610611,0.782464623451233,-0.543653011322021,0.303628742694855,-0.555324137210846,-0.825009644031525,-0.104758523404598,-0.286478847265244,-0.0486485101282597,0.956850647926331,-0.253152549266815,-0.0254060290753841,0.96709269285202,0.0205063410103321,-0.993054151535034,0.115857176482677,0.536755204200745,0.792092680931091,0.290659427642822,0.484988570213318,0.826769888401031,0.285022288560867,0.00510277785360813,0.994293689727783,-0.106555677950382,0.56876415014267,0.804991543292999,0.168807432055473,0.856626033782959,-0.333472639322281,0.393684774637222,0.892468512058258,-0.321106612682343,0.316844671964645,0.550538301467896,0.795412242412567,0.253430098295212,0.536755204200745,0.792092680931091,0.290659427642822,0.749604046344757,-0.569648802280426,0.337037175893784,0.790895879268646,-0.554373502731323,0.259140521287918,0.892468512058258,-0.321106612682343,0.316844671964645,0.856626033782959,-0.333472639322281,0.393684774637222,0.790895879268646,-0.554373502731323,0.259140521287918,0.749604046344757,-0.569648802280426,0.337037175893784,-0.496806889772415,-0.827039361000061,-0.263037294149399,-0.487735480070114,-0.82649964094162,-0.281091749668121,-0.487735480070114,-0.82649964094162,-0.281091749668121,
- -0.496806889772415,-0.827039361000061,-0.263037294149399,0.0501266345381737,-0.998553335666656,0.019455598667264,0.0750532820820808,-0.996344447135925,-0.0408015325665474,0.536755204200745,0.792092680931091,0.290659427642822,0.550538301467896,0.795412242412567,0.253430098295212,0.509564995765686,0.82916247844696,0.229854896664619,0.484988570213318,0.826769888401031,0.285022288560867,0.907000541687012,-0.322568148374558,0.270739376544952,0.898509442806244,-0.298468947410584,0.321865111589432,0.56876415014267,0.804991543292999,0.168807432055473,0.601439118385315,0.790454983711243,0.115982741117477,0.898509442806244,-0.298468947410584,0.321865111589432,0.907000541687012,-0.322568148374558,0.270739376544952,0.796908557415009,-0.551689922809601,0.24611958861351,0.785755693912506,-0.560047686100006,0.262553960084915,0.785755693912506,-0.560047686100006,0.262553960084915,0.796908557415009,-0.551689922809601,0.24611958861351,-0.546872735023499,-0.82728523015976,-0.128566592931747,-0.655404031276703,-0.741415977478027,0.144041463732719,-0.546872735023499,-0.82728523015976,-0.128566592931747,0.0475345514714718,-0.99816620349884,0.0374787412583828,0.33501735329628,-0.573454976081848,-0.747604668140411,-0.655404031276703,-0.741415977478027,0.144041463732719,-0.546872735023499,-0.82728523015976,-0.128566592931747,0.33501735329628,-0.573454976081848,-0.747604668140411,-0.0582019574940205,-0.952207386493683,0.299856066703796,0.601439118385315,0.790454983711243,0.115982741117477,0.56876415014267,0.804991543292999,0.168807432055473,0.00510277785360813,0.994293689727783,-0.106555677950382,0.561299800872803,0.822850346565247,0.0886561349034309,0.561299800872803,0.822850346565247,0.0886561349034309,0.537601411342621,0.827024459838867,0.164363890886307,0.584352791309357,0.794848680496216,0.163546055555344,0.601439118385315,0.790454983711243,0.115982741117477,-0.255912244319916,0.0584865175187588,0.964929163455963,-0.253152549266815,-0.0254060290753841,0.96709269285202,-0.286478847265244,-0.0486485101282597,0.956850647926331,-0.238879680633545,-0.00813644472509623,0.97101503610611,
- -0.240663424134254,-0.00370214018039405,0.970601618289948,-0.219519421458244,0.0478469580411911,0.974434077739716,-0.758427619934082,-0.562590539455414,-0.329058438539505,0.522944927215576,-0.830059468746185,0.193726226687431,0.307945966720581,-0.702870011329651,0.641204357147217,-0.764244437217712,-0.553551495075226,-0.330924481153488,-0.764244437217712,-0.553551495075226,-0.330924481153488,-0.886057496070862,-0.295525461435318,-0.357164978981018,-0.868614614009857,-0.330531746149063,-0.369130641222,-0.758427619934082,-0.562590539455414,-0.329058438539505,0.522944927215576,-0.830059468746185,0.193726226687431,0.0501266345381737,-0.998553335666656,0.019455598667264,-0.0582019574940205,-0.952207386493683,0.299856066703796,0.307945966720581,-0.702870011329651,0.641204357147217,-0.290936708450317,0.0521509274840355,0.955319941043854,-0.57551646232605,0.792206108570099,-0.202953398227692,-0.915766298770905,-0.304721057415009,-0.261757463216782,-0.270116120576859,-0.00461099576205015,0.962816774845123,-0.797933399677277,-0.54095721244812,-0.265833854675293,0.514896810054779,-0.831141471862793,0.209964767098427,0.510830402374268,-0.828143715858459,0.230716735124588,-0.816289246082306,-0.534793794155121,-0.218328982591629,-0.895339488983154,-0.322648406028748,-0.307026505470276,-0.797933399677277,-0.54095721244812,-0.265833854675293,-0.816289246082306,-0.534793794155121,-0.218328982591629,-0.915766298770905,-0.304721057415009,-0.261757463216782,0.514896810054779,-0.831141471862793,0.209964767098427,0.0475345514714718,-0.99816620349884,0.0374787412583828,0.0205063410103321,-0.993054151535034,0.115857176482677,0.510830402374268,-0.828143715858459,0.230716735124588,-0.886057496070862,-0.295525461435318,-0.357164978981018,-0.542732238769531,0.800996541976929,-0.252678513526917,-0.577444553375244,0.790227651596069,-0.205178111791611,-0.868614614009857,-0.330531746149063,-0.369130641222,-0.577444553375244,0.790227651596069,-0.205178111791611,-0.542732238769531,0.800996541976929,-0.252678513526917,0.00510277785360813,0.994293689727783,-0.106555677950382,
- -0.536562740802765,0.825525522232056,-0.174951389431953,-0.915766298770905,-0.304721057415009,-0.261757463216782,-0.57551646232605,0.792206108570099,-0.202953398227692,-0.559918820858002,0.789255261421204,-0.252124786376953,-0.895339488983154,-0.322648406028748,-0.307026505470276,-0.816289246082306,-0.534793794155121,-0.218328982591629,0.510830402374268,-0.828143715858459,0.230716735124588,-0.218156009912491,-0.0528857856988907,0.974479973316193,-0.272228807210922,-0.0099919131025672,0.962180614471436,-0.915766298770905,-0.304721057415009,-0.261757463216782,-0.816289246082306,-0.534793794155121,-0.218328982591629,-0.272228807210922,-0.0099919131025672,0.962180614471436,-0.270116120576859,-0.00461099576205015,0.962816774845123,0.510830402374268,-0.828143715858459,0.230716735124588,0.0205063410103321,-0.993054151535034,0.115857176482677,-0.253152549266815,-0.0254060290753841,0.96709269285202,-0.218156009912491,-0.0528857856988907,0.974479973316193,-0.868614614009857,-0.330531746149063,-0.369130641222,-0.577444553375244,0.790227651596069,-0.205178111791611,-0.559463322162628,0.792571485042572,-0.242551788687706,-0.840009391307831,-0.317604035139084,-0.439899921417236,-0.758427619934082,-0.562590539455414,-0.329058438539505,-0.868614614009857,-0.330531746149063,-0.369130641222,-0.840009391307831,-0.317604035139084,-0.439899921417236,-0.732712388038635,-0.549383640289307,-0.40163442492485,-0.732712388038635,-0.549383640289307,-0.40163442492485,0.528987765312195,-0.830312669277191,0.17536449432373,0.522944927215576,-0.830059468746185,0.193726226687431,-0.758427619934082,-0.562590539455414,-0.329058438539505,0.528987765312195,-0.830312669277191,0.17536449432373,0.0750532820820808,-0.996344447135925,-0.0408015325665474,0.0501266345381737,-0.998553335666656,0.019455598667264,0.522944927215576,-0.830059468746185,0.193726226687431,-0.577444553375244,0.790227651596069,-0.205178111791611,-0.536562740802765,0.825525522232056,-0.174951389431953,-0.515466868877411,0.825912356376648,-0.228391781449318,-0.559463322162628,0.792571485042572,-0.242551788687706,
- -0.895339488983154,-0.322648406028748,-0.307026505470276,-0.559918820858002,0.789255261421204,-0.252124786376953,-0.542732238769531,0.800996541976929,-0.252678513526917,-0.886057496070862,-0.295525461435318,-0.357164978981018,-0.886057496070862,-0.295525461435318,-0.357164978981018,-0.764244437217712,-0.553551495075226,-0.330924481153488,-0.797933399677277,-0.54095721244812,-0.265833854675293,-0.895339488983154,-0.322648406028748,-0.307026505470276,-0.764244437217712,-0.553551495075226,-0.330924481153488,0.307945966720581,-0.702870011329651,0.641204357147217,0.514896810054779,-0.831141471862793,0.209964767098427,-0.797933399677277,-0.54095721244812,-0.265833854675293,0.307945966720581,-0.702870011329651,0.641204357147217,0.0475345514714718,-0.99816620349884,0.0374787412583828,0.514896810054779,-0.831141471862793,0.209964767098427,0.307945966720581,-0.702870011329651,0.641204357147217,-0.0582019574940205,-0.952207386493683,0.299856066703796,0.33501735329628,-0.573454976081848,-0.747604668140411,0.0475345514714718,-0.99816620349884,0.0374787412583828,-0.536857187747955,0.824637591838837,-0.178205549716949,-0.51289027929306,0.822236299514771,-0.246720314025879,-0.559918820858002,0.789255261421204,-0.252124786376953,-0.57551646232605,0.792206108570099,-0.202953398227692,-0.253152549266815,-0.0254060290753841,0.96709269285202,-0.255912244319916,0.0584865175187588,0.964929163455963,-0.290936708450317,0.0521509274840355,0.955319941043854,-0.270116120576859,-0.00461099576205015,0.962816774845123,-0.272228807210922,-0.0099919131025672,0.962180614471436,-0.218156009912491,-0.0528857856988907,0.974479973316193,-0.255912244319916,0.0584865175187588,0.964929163455963,-0.536857187747955,0.824637591838837,-0.178205549716949,-0.57551646232605,0.792206108570099,-0.202953398227692,-0.290936708450317,0.0521509274840355,0.955319941043854,-0.559918820858002,0.789255261421204,-0.252124786376953,-0.51289027929306,0.822236299514771,-0.246720314025879,0.00510277785360813,0.994293689727783,-0.106555677950382,-0.542732238769531,0.800996541976929,-0.252678513526917,
- 0.461057543754578,-0.0145353097468615,-0.887251257896423,0.418576568365097,-0.0625767633318901,-0.90602308511734,0.454238444566727,-0.0852904468774796,-0.886788010597229,0.487735450267792,-0.0657092854380608,-0.870515108108521,0.44427877664566,-0.0157524272799492,-0.895750164985657,0.443802833557129,-0.0127390790730715,-0.896033823490143,0.418229430913925,0.0438685566186905,-0.907281577587128,0.451623469591141,0.0327737256884575,-0.891606509685516,0.484590858221054,0.0397975146770477,-0.873835146427155,0.461357086896896,-0.0119598237797618,-0.887133955955505,0.550538301467896,0.795412242412567,0.253430098295212,0.484590858221054,0.0397975146770477,-0.873835146427155,0.451623469591141,0.0327737256884575,-0.891606509685516,0.509564995765686,0.82916247844696,0.229854896664619,-0.559463322162628,0.792571485042572,-0.242551788687706,-0.515466868877411,0.825912356376648,-0.228391781449318,0.451623469591141,0.0327737256884575,-0.891606509685516,0.418229430913925,0.0438685566186905,-0.907281577587128,-0.840009391307831,-0.317604035139084,-0.439899921417236,-0.559463322162628,0.792571485042572,-0.242551788687706,0.418229430913925,0.0438685566186905,-0.907281577587128,0.443802833557129,-0.0127390790730715,-0.896033823490143,-0.732712388038635,-0.549383640289307,-0.40163442492485,-0.840009391307831,-0.317604035139084,-0.439899921417236,0.443802833557129,-0.0127390790730715,-0.896033823490143,0.44427877664566,-0.0157524272799492,-0.895750164985657,0.44427877664566,-0.0157524272799492,-0.895750164985657,0.487735450267792,-0.0657092854380608,-0.870515108108521,0.528987765312195,-0.830312669277191,0.17536449432373,-0.732712388038635,-0.549383640289307,-0.40163442492485,0.487735450267792,-0.0657092854380608,-0.870515108108521,0.454238444566727,-0.0852904468774796,-0.886788010597229,0.0750532820820808,-0.996344447135925,-0.0408015325665474,0.528987765312195,-0.830312669277191,0.17536449432373,0.418576568365097,-0.0625767633318901,-0.90602308511734,-0.487735480070114,-0.82649964094162,-0.281091749668121,0.0750532820820808,-0.996344447135925,-0.0408015325665474,
- 0.454238444566727,-0.0852904468774796,-0.886788010597229,0.461057543754578,-0.0145353097468615,-0.887251257896423,0.790895879268646,-0.554373502731323,0.259140521287918,-0.487735480070114,-0.82649964094162,-0.281091749668121,0.418576568365097,-0.0625767633318901,-0.90602308511734,0.892468512058258,-0.321106612682343,0.316844671964645,0.790895879268646,-0.554373502731323,0.259140521287918,0.461057543754578,-0.0145353097468615,-0.887251257896423,0.461357086896896,-0.0119598237797618,-0.887133955955505,0.550538301467896,0.795412242412567,0.253430098295212,0.892468512058258,-0.321106612682343,0.316844671964645,0.461357086896896,-0.0119598237797618,-0.887133955955505,0.484590858221054,0.0397975146770477,-0.873835146427155,0.0315587520599365,0.0559176467359066,0.997936487197876,0.0177679285407066,-0.00609585689380765,0.999823570251465,0.930594682693481,-0.365425109863281,0.021404167637229,0.506666660308838,0.862140476703644,0.00161672791000456,0.823269426822662,-0.566924571990967,-0.028703486546874,0.823584854602814,-0.566613972187042,0.0256263911724091,-0.468160301446915,-0.882883608341217,0.0366409532725811,-0.467154681682587,-0.884139001369476,0.00804869923740625,0.926375210285187,-0.375613331794739,-0.0272689387202263,0.930594682693481,-0.365425109863281,0.021404167637229,0.823584854602814,-0.566613972187042,0.0256263911724091,0.823269426822662,-0.566924571990967,-0.028703486546874,-0.467154681682587,-0.884139001369476,0.00804869923740625,-0.468160301446915,-0.882883608341217,0.0366409532725811,7.2990804511619e-009,-0.998454451560974,0.0555755123496056,4.84599786432227e-006,-0.999873340129852,-0.015911215916276,0.930594682693481,-0.365425109863281,0.021404167637229,0.926375210285187,-0.375613331794739,-0.0272689387202263,0.508272290229797,0.860843598842621,-0.0246498454362154,0.506666660308838,0.862140476703644,0.00161672791000456,0.823584854602814,-0.566613972187042,0.0256263911724091,0.0183724276721478,-0.0107690645381808,0.99977320432663,-0.0261882562190294,-0.0478683933615685,0.998510241508484,-0.468160301446915,-0.882883608341217,0.0366409532725811,
- 0.930594682693481,-0.365425109863281,0.021404167637229,0.0177679285407066,-0.00609585689380765,0.999823570251465,0.0183724276721478,-0.0107690645381808,0.99977320432663,0.823584854602814,-0.566613972187042,0.0256263911724091,-0.468160301446915,-0.882883608341217,0.0366409532725811,-0.0261882562190294,-0.0478683933615685,0.998510241508484,-1.6516440837222e-006,-0.031337283551693,0.999508857727051,7.2990804511619e-009,-0.998454451560974,0.0555755123496056,0.508272290229797,0.860843598842621,-0.0246498454362154,0.0159731134772301,0.0115832267329097,-0.999805212020874,0.465412467718124,0.884596943855286,-0.0296565890312195,0.926375210285187,-0.375613331794739,-0.0272689387202263,0.01112059969455,-0.0197907332330942,-0.999742388725281,0.0159731134772301,0.0115832267329097,-0.999805212020874,0.508272290229797,0.860843598842621,-0.0246498454362154,0.01112059969455,-0.0197907332330942,-0.999742388725281,0.926375210285187,-0.375613331794739,-0.0272689387202263,0.823269426822662,-0.566924571990967,-0.028703486546874,0.00905073154717684,-0.0225619599223137,-0.999704480171204,0.00905073154717684,-0.0225619599223137,-0.999704480171204,0.823269426822662,-0.566924571990967,-0.028703486546874,-0.467154681682587,-0.884139001369476,0.00804869923740625,-0.0306419022381306,-0.066141240298748,-0.997339606285095,4.84599786432227e-006,-0.999873340129852,-0.015911215916276,-3.4092447549483e-006,-0.071012370288372,-0.997475445270538,-0.0306419022381306,-0.066141240298748,-0.997339606285095,-0.467154681682587,-0.884139001369476,0.00804869923740625,0.465412467718124,0.884596943855286,-0.0296565890312195,0.0159731134772301,0.0115832267329097,-0.999805212020874,-0.0103726694360375,0.0557494349777699,-0.998390972614288,0.465412467718124,0.884596943855286,-0.0296565890312195,0.465670257806778,0.884856045246124,0.0134513014927506,0.506666660308838,0.862140476703644,0.00161672791000456,0.508272290229797,0.860843598842621,-0.0246498454362154,3.23834501614328e-005,0.0544438026845455,0.998516917228699,-1.6516440837222e-006,-0.031337283551693,0.999508857727051,
- -0.0261882562190294,-0.0478683933615685,0.998510241508484,0.0183724276721478,-0.0107690645381808,0.99977320432663,0.0177679285407066,-0.00609585689380765,0.999823570251465,0.0315587520599365,0.0559176467359066,0.997936487197876,-0.0315499678254128,0.0558651275932789,0.997939705848694,-0.506938576698303,0.861980617046356,0.00163880735635757,-0.930638194084167,-0.36531475186348,0.021392822265625,-0.0177699662744999,-0.00609461404383183,0.99982351064682,-0.82331645488739,-0.566857278347015,-0.0286865551024675,0.467383593320847,-0.884017825126648,0.00806974153965712,0.468381404876709,-0.882767021656036,0.0366222262382507,-0.823645710945129,-0.566526293754578,0.0256095845252275,-0.926421344280243,-0.375502169132233,-0.0272330921143293,-0.82331645488739,-0.566857278347015,-0.0286865551024675,-0.823645710945129,-0.566526293754578,0.0256095845252275,-0.930638194084167,-0.36531475186348,0.021392822265625,0.467383593320847,-0.884017825126648,0.00806974153965712,4.84599786432227e-006,-0.999873340129852,-0.015911215916276,7.2990804511619e-009,-0.998454451560974,0.0555755123496056,0.468381404876709,-0.882767021656036,0.0366222262382507,-0.930638194084167,-0.36531475186348,0.021392822265625,-0.506938576698303,0.861980617046356,0.00163880735635757,-0.508065164089203,0.860554695129395,-0.0362688302993774,-0.926421344280243,-0.375502169132233,-0.0272330921143293,-0.823645710945129,-0.566526293754578,0.0256095845252275,0.468381404876709,-0.882767021656036,0.0366222262382507,0.026228740811348,-0.047907505184412,0.998507380485535,-0.0183827914297581,-0.0107723250985146,0.999772965908051,-0.930638194084167,-0.36531475186348,0.021392822265625,-0.823645710945129,-0.566526293754578,0.0256095845252275,-0.0183827914297581,-0.0107723250985146,0.999772965908051,-0.0177699662744999,-0.00609461404383183,0.99982351064682,0.468381404876709,-0.882767021656036,0.0366222262382507,7.2990804511619e-009,-0.998454451560974,0.0555755123496056,-1.6516440837222e-006,-0.031337283551693,0.999508857727051,0.026228740811348,-0.047907505184412,0.998507380485535,
- -0.0342614986002445,0.0446727573871613,-0.998413980007172,-0.508065164089203,0.860554695129395,-0.0362688302993774,-0.46547394990921,0.883574247360229,-0.0512888468801975,-0.0103726694360375,0.0557494349777699,-0.998390972614288,-0.926421344280243,-0.375502169132233,-0.0272330921143293,-0.508065164089203,0.860554695129395,-0.0362688302993774,-0.0342614986002445,0.0446727573871613,-0.998413980007172,-0.01113395486027,-0.0197933614253998,-0.999742090702057,-0.01113395486027,-0.0197933614253998,-0.999742090702057,-0.00904836691915989,-0.0225635766983032,-0.999704420566559,-0.82331645488739,-0.566857278347015,-0.0286865551024675,-0.926421344280243,-0.375502169132233,-0.0272330921143293,-0.00904836691915989,-0.0225635766983032,-0.999704420566559,0.0306455101817846,-0.0661115050315857,-0.997341513633728,0.467383593320847,-0.884017825126648,0.00806974153965712,-0.82331645488739,-0.566857278347015,-0.0286865551024675,4.84599786432227e-006,-0.999873340129852,-0.015911215916276,0.467383593320847,-0.884017825126648,0.00806974153965712,0.0306455101817846,-0.0661115050315857,-0.997341513633728,-3.4092447549483e-006,-0.071012370288372,-0.997475445270538,-0.465933054685593,0.884716987609863,0.0134932184591889,-0.46547394990921,0.883574247360229,-0.0512888468801975,-0.508065164089203,0.860554695129395,-0.0362688302993774,-0.506938576698303,0.861980617046356,0.00163880735635757,-1.6516440837222e-006,-0.031337283551693,0.999508857727051,3.23834501614328e-005,0.0544438026845455,0.998516917228699,-0.0315499678254128,0.0558651275932789,0.997939705848694,-0.0177699662744999,-0.00609461404383183,0.99982351064682,-0.0183827914297581,-0.0107723250985146,0.999772965908051,0.026228740811348,-0.047907505184412,0.998507380485535,3.23834501614328e-005,0.0544438026845455,0.998516917228699,-0.465933054685593,0.884716987609863,0.0134932184591889,-0.506938576698303,0.861980617046356,0.00163880735635757,-0.0315499678254128,0.0558651275932789,0.997939705848694,0.00905073154717684,-0.0225619599223137,-0.999704480171204,-0.0306419022381306,-0.066141240298748,-0.997339606285095,
- -3.4092447549483e-006,-0.071012370288372,-0.997475445270538,0.0306455101817846,-0.0661115050315857,-0.997341513633728,-0.00904836691915989,-0.0225635766983032,-0.999704420566559,-0.01113395486027,-0.0197933614253998,-0.999742090702057,-0.0342614986002445,0.0446727573871613,-0.998413980007172,-0.0103726694360375,0.0557494349777699,-0.998390972614288,0.0159731134772301,0.0115832267329097,-0.999805212020874,0.01112059969455,-0.0197907332330942,-0.999742388725281,0.537601411342621,0.827024459838867,0.164363890886307,-0.255912244319916,0.0584865175187588,0.964929163455963,-0.219519421458244,0.0478469580411911,0.974434077739716,0.584352791309357,0.794848680496216,0.163546055555344,-0.536857187747955,0.824637591838837,-0.178205549716949,0.537601411342621,0.827024459838867,0.164363890886307,0.561299800872803,0.822850346565247,0.0886561349034309,-0.51289027929306,0.822236299514771,-0.246720314025879,-0.536562740802765,0.825525522232056,-0.174951389431953,0.484988570213318,0.826769888401031,0.285022288560867,0.509564995765686,0.82916247844696,0.229854896664619,-0.515466868877411,0.825912356376648,-0.228391781449318,-0.536857187747955,0.824637591838837,-0.178205549716949,-0.255912244319916,0.0584865175187588,0.964929163455963,0.537601411342621,0.827024459838867,0.164363890886307,-0.51289027929306,0.822236299514771,-0.246720314025879,0.561299800872803,0.822850346565247,0.0886561349034309,0.00510277785360813,0.994293689727783,-0.106555677950382,-0.536562740802765,0.825525522232056,-0.174951389431953,0.00510277785360813,0.994293689727783,-0.106555677950382,0.484988570213318,0.826769888401031,0.285022288560867,-0.515466868877411,0.825912356376648,-0.228391781449318,0.509564995765686,0.82916247844696,0.229854896664619,0.451623469591141,0.0327737256884575,-0.891606509685516,0.465670257806778,0.884856045246124,0.0134513014927506,3.23834501614328e-005,0.0544438026845455,0.998516917228699,0.0315587520599365,0.0559176467359066,0.997936487197876,0.506666660308838,0.862140476703644,0.00161672791000456,-0.465933054685593,0.884716987609863,0.0134932184591889,
- 0.465670257806778,0.884856045246124,0.0134513014927506,0.465412467718124,0.884596943855286,-0.0296565890312195,-0.46547394990921,0.883574247360229,-0.0512888468801975,-0.465933054685593,0.884716987609863,0.0134932184591889,-8.95813354873098e-005,0.99435830116272,0.106073766946793,0.465670257806778,0.884856045246124,0.0134513014927506,-0.46547394990921,0.883574247360229,-0.0512888468801975,0.465412467718124,0.884596943855286,-0.0296565890312195,-0.0103726694360375,0.0557494349777699,-0.998390972614288,-0.0174886304885149,0.998833298683167,0.0450148619711399,-0.00915641896426678,0.999351561069489,-0.0348230712115765,-0.98384565114975,0.101216115057468,-0.147658169269562,-0.993179976940155,0.100380428135395,-0.059305265545845,-0.074340358376503,0.0222980938851833,0.996983587741852,-0.0178831871598959,0.025923129171133,0.999503970146179,0.0270932056009769,0.998719692230225,0.0427194610238075,-0.0174886304885149,0.998833298683167,0.0450148619711399,-0.993179976940155,0.100380428135395,-0.059305265545845,-0.936462998390198,-0.345486223697662,-0.0606320612132549,-0.0919640958309174,-0.021267008036375,0.995535254478455,-0.074340358376503,0.0222980938851833,0.996983587741852,-0.936462998390198,-0.345486223697662,-0.0606320612132549,-0.711657643318176,-0.701242327690125,-0.0424571447074413,-0.0907878577709198,-0.0405890643596649,0.99504280090332,-0.0919640958309174,-0.021267008036375,0.995535254478455,0.987215220928192,0.0154673475772142,0.158640995621681,0.998486280441284,0.014954736456275,0.0529300682246685,0.0356813780963421,0.999077439308167,-0.0238991603255272,0.0270932056009769,0.998719692230225,0.0427194610238075,-0.0178831871598959,0.025923129171133,0.999503970146179,-0.0170509070158005,-0.0255370121449232,0.999528467655182,0.98704606294632,-0.026279890909791,0.158270359039307,0.987215220928192,0.0154673475772142,0.158640995621681,-0.00915641896426678,0.999351561069489,-0.0348230712115765,0.0356813780963421,0.999077439308167,-0.0238991603255272,0.187717080116272,0.044008057564497,-0.981236755847931,0.131188422441483,0.0411159954965115,-0.990504503250122,
- 0.131188422441483,0.0411159954965115,-0.990504503250122,0.113822348415852,-0.00499014602974057,-0.993488550186157,-0.927523910999298,-0.345907330513,-0.141589850187302,-0.98384565114975,0.101216115057468,-0.147658169269562,0.113822348415852,-0.00499014602974057,-0.993488550186157,0.115079522132874,-0.0244568139314651,-0.993055164813995,-0.70315420627594,-0.701338231563568,-0.117041520774364,-0.927523910999298,-0.345907330513,-0.141589850187302,0.998486280441284,0.014954736456275,0.0529300682246685,0.998262166976929,-0.0256447680294514,0.0530555360019207,0.188913121819496,-0.00947934854775667,-0.98194807767868,0.187717080116272,0.044008057564497,-0.981236755847931,-0.0170509070158005,-0.0255370121449232,0.999528467655182,-0.0907878577709198,-0.0405890643596649,0.99504280090332,-0.711657643318176,-0.701242327690125,-0.0424571447074413,0.0375377163290977,-0.998750746250153,0.0329810529947281,0.0375377163290977,-0.998750746250153,0.0329810529947281,0.0449201129376888,-0.998315334320068,-0.0367265269160271,0.998262166976929,-0.0256447680294514,0.0530555360019207,0.98704606294632,-0.026279890909791,0.158270359039307,0.0449201129376888,-0.998315334320068,-0.0367265269160271,-0.70315420627594,-0.701338231563568,-0.117041520774364,0.115079522132874,-0.0244568139314651,-0.993055164813995,0.188913121819496,-0.00947934854775667,-0.98194807767868,0.0270932056009769,0.998719692230225,0.0427194610238075,0.0356813780963421,0.999077439308167,-0.0238991603255272,-0.00915641896426678,0.999351561069489,-0.0348230712115765,-0.0174886304885149,0.998833298683167,0.0450148619711399,0.998486280441284,0.014954736456275,0.0529300682246685,0.987215220928192,0.0154673475772142,0.158640995621681,0.98704606294632,-0.026279890909791,0.158270359039307,0.998262166976929,-0.0256447680294514,0.0530555360019207,-0.70315420627594,-0.701338231563568,-0.117041520774364,-0.711657643318176,-0.701242327690125,-0.0424571447074413,-0.936462998390198,-0.345486223697662,-0.0606320612132549,-0.927523910999298,-0.345907330513,-0.141589850187302,0.0375377163290977,-0.998750746250153,0.0329810529947281,
- -0.711657643318176,-0.701242327690125,-0.0424571447074413,-0.70315420627594,-0.701338231563568,-0.117041520774364,0.0449201129376888,-0.998315334320068,-0.0367265269160271,-0.993179976940155,0.100380428135395,-0.059305265545845,-0.98384565114975,0.101216115057468,-0.147658169269562,-0.927523910999298,-0.345907330513,-0.141589850187302,-0.936462998390198,-0.345486223697662,-0.0606320612132549,0.113822348415852,-0.00499014602974057,-0.993488550186157,0.131188422441483,0.0411159954965115,-0.990504503250122,0.187717080116272,0.044008057564497,-0.981236755847931,0.188913121819496,-0.00947934854775667,-0.98194807767868,0.115079522132874,-0.0244568139314651,-0.993055164813995,-0.0919640958309174,-0.021267008036375,0.995535254478455,-0.0907878577709198,-0.0405890643596649,0.99504280090332,-0.0170509070158005,-0.0255370121449232,0.999528467655182,-0.0178831871598959,0.025923129171133,0.999503970146179,-0.074340358376503,0.0222980938851833,0.996983587741852,-0.0174886304885149,0.998833298683167,0.0450148619711399,-0.993179976940155,0.100380428135395,-0.059305265545845,-0.074340358376503,0.0222980938851833,0.996983587741852,0.987215220928192,0.0154673475772142,0.158640995621681,0.0270932056009769,0.998719692230225,0.0427194610238075,-0.0178831871598959,0.025923129171133,0.999503970146179,-0.00915641896426678,0.999351561069489,-0.0348230712115765,0.131188422441483,0.0411159954965115,-0.990504503250122,-0.98384565114975,0.101216115057468,-0.147658169269562,0.998486280441284,0.014954736456275,0.0529300682246685,0.187717080116272,0.044008057564497,-0.981236755847931,0.0356813780963421,0.999077439308167,-0.0238991603255272,-0.0170509070158005,-0.0255370121449232,0.999528467655182,0.0375377163290977,-0.998750746250153,0.0329810529947281,0.98704606294632,-0.026279890909791,0.158270359039307,0.0449201129376888,-0.998315334320068,-0.0367265269160271,0.188913121819496,-0.00947934854775667,-0.98194807767868,0.998262166976929,-0.0256447680294514,0.0530555360019207,-0.357262074947357,0.00581276649609208,0.933986067771912,-0.917258203029633,0.133428737521172,-0.375278770923615,
- -0.916667938232422,0.0472103245556355,-0.396851480007172,-0.354275763034821,-0.0307473372668028,0.93463534116745,-0.886197507381439,0.128199338912964,-0.445217818021774,-0.833096504211426,-0.346856981515884,-0.430860131978989,-0.858554363250732,-0.326060354709625,-0.395687758922577,-0.916667938232422,0.0472103245556355,-0.396851480007172,-0.917258203029633,0.133428737521172,-0.375278770923615,-0.64342325925827,-0.715949177742004,-0.270967066287994,-0.804820120334625,-0.477554649114609,-0.352428883314133,-0.796434283256531,-0.476815491914749,-0.371940016746521,-0.858554363250732,-0.326060354709625,-0.395687758922577,-0.833096504211426,-0.346856981515884,-0.430860131978989,-0.6138876080513,-0.712076842784882,-0.340718001127243,-0.371580570936203,-0.0437862053513527,0.927367627620697,-0.804820120334625,-0.477554649114609,-0.352428883314133,-0.64342325925827,-0.715949177742004,-0.270967066287994,-0.37741819024086,-0.0626332312822342,0.923922479152679,-0.918653607368469,-0.232960596680641,0.319068938493729,-0.857247292995453,-0.392677277326584,0.333063989877701,-0.943342506885529,-0.187874630093575,0.273510485887527,0.0963706597685814,-0.592814743518829,-0.799552023410797,0.261826008558273,-0.622795045375824,-0.737274348735809,-0.27004262804985,-0.566158711910248,-0.778807580471039,-0.27004262804985,-0.566158711910248,-0.778807580471039,0.261826008558273,-0.622795045375824,-0.737274348735809,0.324497729539871,-0.621322691440582,-0.713203549385071,0.351152986288071,-0.732903003692627,-0.582704782485962,0.351152986288071,-0.732902944087982,-0.582704842090607,0.326484650373459,-0.562308669090271,-0.759747743606567,0.324497729539871,-0.621322691440582,-0.713203549385071,0.0963706597685814,-0.592814743518829,-0.799552023410797,0.0963706597685814,-0.592814743518829,-0.799552023410797,0.324497729539871,-0.621322691440582,-0.713203549385071,0.261826008558273,-0.622795045375824,-0.737274348735809,0.714944541454315,0.266505062580109,0.646397173404694,-4.67737709186622e-006,0.656240105628967,0.754552185535431,6.43758326646093e-008,0.0199535880237818,0.99980092048645,
- 0.0396941527724266,0.00832969509065151,0.999177157878876,-4.67737709186622e-006,0.656240105628967,0.754552185535431,-0.714859366416931,0.26645040512085,0.646513938903809,-0.0396937429904938,0.00833149533718824,0.999177098274231,6.43758326646093e-008,0.0199535880237818,0.99980092048645,-0.714859366416931,0.26645040512085,0.646513938903809,-0.46021494269371,-0.431526720523834,0.775878131389618,-0.0488838590681553,-0.0253781136125326,0.99848198890686,-0.0396937429904938,0.00833149533718824,0.999177098274231,-0.46021494269371,-0.431526720523834,0.775878131389618,0.460203766822815,-0.431623131036758,0.77583110332489,0.0488862432539463,-0.0253761485219002,0.99848198890686,-0.0488838590681553,-0.0253781136125326,0.99848198890686,0.460203766822815,-0.431623131036758,0.77583110332489,0.714944541454315,0.266505062580109,0.646397173404694,0.0396941527724266,0.00832969509065151,0.999177157878876,0.0488862432539463,-0.0253761485219002,0.99848198890686,-0.815747797489166,0,0.578407764434814,-0.81616336107254,0,0.577821135520935,-0.890292227268219,0,0.455389618873596,-0.870163977146149,0,0.492762207984924,-0.759598135948181,0.000203340314328671,0.650392591953278,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.81616336107254,0,0.577821135520935,-0.815747797489166,0,0.578407764434814,-0.344540894031525,0,0.938771367073059,-0.346095949411392,0,0.938199162483215,-0.47148922085762,0,0.881871819496155,-0.438764989376068,0,0.898601889610291,-0.25636026263237,0,0.966581344604492,-0.255075633525848,0,0.966921031475067,-0.346095949411392,0,0.938199162483215,-0.344540894031525,0,0.938771367073059,0.256186932325363,0,-0.966627299785614,0.255085408687592,0,-0.966918528079987,0.114830613136292,0,-0.993385076522827,0.15652784705162,0,-0.98767352104187,0.344758301973343,0,-0.938691556453705,0.346091717481613,0,-0.938200712203979,0.255085408687592,0,-0.966918528079987,0.256186932325363,0,-0.966627299785614,0.759532153606415,-0.000248329743044451,-0.650469660758972,0.758582592010498,-0.000100957746326458,-0.651576995849609,0.659157931804657,-0.000183253709110431,-0.752004563808441,
- 0.689885854721069,-0.00078964582644403,-0.723917663097382,0.815812885761261,0,-0.57831597328186,0.816179275512695,0,-0.5777987241745,0.758582592010498,-0.000100957746326458,-0.651576995849609,0.759532153606415,-0.000248329743044451,-0.650469660758972,-0.935419201850891,0,0.353540450334549,-0.935414731502533,0,0.353552460670471,-0.890292227268219,0,0.455389618873596,-0.895831108093262,0,0.444394707679749,-0.81616336107254,0,0.577821135520935,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.758188188076019,0,0.65203583240509,-0.81624835729599,0,0.577701151371002,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.659340143203735,0.000153201835928485,0.751844704151154,-0.64881831407547,0,0.760943293571472,-0.758188188076019,0,0.65203583240509,-0.570578694343567,0,0.821242868900299,-0.570513665676117,0,0.821288108825684,-0.47148922085762,0,0.881871819496155,-0.483153641223907,0,0.875535607337952,-0.346095949411392,0,0.938199162483215,-0.255075633525848,0,0.966921031475067,-0.25493061542511,0,0.966959416866302,-0.346275329589844,0,0.93813294172287,-0.0556011646986008,0,0.998453080654144,-0.102594837546349,0,0.994723200798035,-0.114745192229748,0,0.99339497089386,-0.0556011684238911,0,0.998453080654144,-0.16597855091095,0.798632144927979,0.578478872776031,-0.165820047259331,0.798634946346283,0.578520536422729,-0.134040907025337,0.798760771751404,0.586527287960052,-0.134040907025337,0.798760771751404,0.586527228355408,-0.193325653672218,0.798466324806213,0.570154964923859,-0.193374052643776,0.798466861248016,0.570137798786163,-0.165820047259331,0.798634946346283,0.578520536422729,-0.16597855091095,0.798632144927979,0.578478872776031,0.00176077068317682,0.999994933605194,-0.00265942513942719,0.00188407127279788,0.999994933605194,-0.0025744610466063,0.0538774915039539,0.997993409633636,0.0332606956362724,0.0538774952292442,0.997993409633636,0.0332606956362724,-0.457798957824707,0.798378229141235,0.391167908906937,-0.457669377326965,0.798383295536041,0.39130911231041,-0.445449739694595,0.798730313777924,0.404480546712875,
- -0.445449709892273,0.798730254173279,0.404480546712875,-0.482360363006592,0.799526512622833,0.35789093375206,-0.482846200466156,0.799550533294678,0.357181429862976,-0.457669377326965,0.798383295536041,0.39130911231041,-0.457798957824707,0.798378229141235,0.391167908906937,-0.00127483834512532,0.999999105930328,0.00049367209430784,-0.0100803133100271,0.999686717987061,-0.0229086950421333,-0.010080311447382,0.999686717987061,-0.0229086931794882,-0.00128308497369289,0.999999105930328,0.000471755716716871,-0.64881831407547,0,0.760943293571472,-0.659340143203735,0.000153201835928485,0.751844704151154,-0.570513665676117,0,0.821288108825684,-0.570578694343567,0,0.821242868900299,-0.0465555712580681,0.998268663883209,-0.0359463579952717,-0.0465555712580681,0.998268723487854,-0.0359463542699814,0.00188407127279788,0.999994933605194,-0.0025744610466063,0.00176077068317682,0.999994933605194,-0.00265942513942719,0.876249849796295,-8.47908268042374e-006,0.481857001781464,0.876249849796295,-8.47908268042374e-006,0.481857001781464,0.87624990940094,-8.47908358991845e-006,0.481856971979141,0.876249849796295,-8.47908268042374e-006,0.481857001781464,0.876249849796295,-8.47908268042374e-006,0.481857091188431,0.0510486550629139,0.863766133785248,-0.501300573348999,0.0510486550629139,0.863766074180603,-0.501300573348999,0.0510486587882042,0.863766074180603,-0.501300513744354,0.0510486587882042,0.863766133785248,-0.501300573348999,0.452142655849457,2.13764906220604e-006,0.891945600509644,0.452142655849457,2.13764906220604e-006,0.891945600509644,0.452142655849457,2.13764883483236e-006,0.891945660114288,0.452142715454102,2.13764906220604e-006,0.891945660114288,0.452142655849457,2.13764883483236e-006,0.891945600509644,0.870135009288788,0,-0.492813438177109,0.890233278274536,0,-0.455504864454269,0.816179275512695,0,-0.5777987241745,0.815812885761261,0,-0.57831597328186,-0.895831108093262,0,0.444394707679749,-0.890292227268219,0,0.455389618873596,-0.81616336107254,0,0.577821135520935,-0.81624835729599,0,0.577701151371002,-0.522761583328247,0.799431920051575,0.296021908521652,
- -0.522761583328247,0.79943186044693,0.296021908521652,-0.482846200466156,0.799550533294678,0.357181429862976,-0.482360363006592,0.799526512622833,0.35789093375206,0.438732892274857,0,-0.898617506027222,0.471627086400986,0,-0.881798088550568,0.346091717481613,0,-0.938200712203979,0.344758301973343,0,-0.938691556453705,-0.483153641223907,0,0.875535607337952,-0.47148922085762,0,0.881871819496155,-0.346095949411392,0,0.938199162483215,-0.346275329589844,0,0.93813294172287,-0.218894883990288,0.798426926136017,0.56089174747467,-0.218894854187965,0.798426806926727,0.560891687870026,-0.193374052643776,0.798466861248016,0.570137798786163,-0.193325653672218,0.798466324806213,0.570154964923859,-0.754714906215668,0.0264171808958054,-0.655520856380463,-0.754714727401733,0.0264171771705151,-0.655520796775818,-0.754714906215668,0.0264171827584505,-0.655520915985107,-0.754714906215668,0.0264171808958054,-0.655520856380463,-0.754714787006378,0.0264171790331602,-0.655520856380463,-0.689952373504639,0.000648211280349642,0.723854422569275,-0.659340143203735,0.000153201835928485,0.751844704151154,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.759598135948181,0.000203340314328671,0.650392591953278,-0.993963479995728,0,-0.109710916876793,-0.993963479995728,0,-0.109710916876793,-0.993963539600372,0,-0.109710916876793,-0.993963539600372,0,-0.109710931777954,-0.993963479995728,0,-0.109710916876793,-0.993963479995728,0,-0.109710909426212,-0.156514570116997,0,0.987675547599792,-0.114745192229748,0,0.99339497089386,-0.255075633525848,0,0.966921031475067,-0.25636026263237,0,0.966581344604492,-0.114745192229748,0,0.99339497089386,-0.102594837546349,0,0.994723200798035,-0.25493061542511,0,0.966959416866302,-0.255075633525848,0,0.966921031475067,-0.999159038066864,0.00262179388664663,0.0409185811877251,-0.999234020709991,0.000942729413509369,0.0391216352581978,-0.999985158443451,4.89368285343517e-005,0.0054465401917696,-1,0,0,-0.994154214859009,0.00252686906605959,0.107939667999744,-0.994109153747559,0.000942871673032641,0.108378559350967,
- -0.999234020709991,0.000942729413509369,0.0391216352581978,-0.999159038066864,0.00262179388664663,0.0409185811877251,0.993884444236755,-0.00265672383829951,-0.110392861068249,0.993789434432983,-0.000986661412753165,-0.111272595822811,0.969734072685242,0.000200577735085972,-0.244163677096367,0.979120016098022,0.000836237275507301,-0.203281328082085,0.999002575874329,-0.00297431088984013,-0.0445541217923164,0.999082267284393,-0.00107517384458333,-0.0428198464214802,0.993789434432983,-0.000986661412753165,-0.111272595822811,0.993884444236755,-0.00265672383829951,-0.110392861068249,-0.999901235103607,0.000126270460896194,0.0140535701066256,-0.999901294708252,0.000126270475448109,0.0140535701066256,-0.999901294708252,0.000126270490000024,0.0140535719692707,-0.999985158443451,4.89368285343517e-005,0.0054465401917696,-0.999973177909851,6.57878263154998e-005,0.00732201198115945,-0.999234020709991,0.000942729413509369,0.0391216352581978,-0.994109153747559,0.000942871673032641,0.108378559350967,-0.994287729263306,0,0.106732204556465,-0.999192655086517,0,0.0401749685406685,-0.935419201850891,0,0.353540450334549,-0.966507792472839,0,0.256637245416641,-0.969718396663666,-0.000163548756972887,0.2442257553339,-0.935414731502533,0,0.353552460670471,-0.598329603672028,0.799209475517273,0.0571479573845863,-0.598317205905914,0.799210667610168,0.0572617389261723,-0.594031751155853,0.799033105373383,0.0931264162063599,-0.594031751155853,0.799032986164093,0.0931264087557793,-0.600481986999512,0.799323379993439,0.022441940382123,-0.600482940673828,0.799339413642883,0.0218341574072838,-0.598317205905914,0.799210667610168,0.0572617389261723,-0.598329603672028,0.799209475517273,0.0571479573845863,-0.518141329288483,0.854188561439514,0.0434921644628048,-0.518141329288483,0.854188442230225,0.0434921607375145,-0.518141329288483,0.854188561439514,0.0434921644628048,-0.518141329288483,0.854188501834869,0.0434921644628048,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.00775784440338612,0.999669790267944,0.0244973693042994,0.00775784533470869,0.999669849872589,0.0244973730295897,
- -0.00127483834512532,0.999999105930328,0.00049367209430784,-0.00128308497369289,0.999999105930328,0.000471755716716871,1,4.73303259695967e-007,0,0.999985039234161,-4.89713092974853e-005,-0.00546114332973957,0.999082267284393,-0.00107517384458333,-0.0428198464214802,0.999002575874329,-0.00297431088984013,-0.0445541217923164,-0.999973177909851,6.57878263154998e-005,0.00732201198115945,-0.999985158443451,4.89368285343517e-005,0.0054465401917696,-0.999234020709991,0.000942729413509369,0.0391216352581978,-0.999192655086517,0,0.0401749685406685,-0.600373268127441,0.799719989299774,0,-0.600373268127441,0.799719989299774,0,-0.600482940673828,0.799339413642883,0.0218341574072838,-0.600481986999512,0.799323379993439,0.022441940382123,-0.250782877206802,0,-0.968043386936188,-0.250782877206802,0,-0.968043267726898,-0.250782877206802,0,-0.968043386936188,-0.250782936811447,0,-0.968043327331543,-0.250782936811447,0,-0.968043327331543,-0.97914731502533,-0.00068271643249318,0.20315033197403,-0.969718396663666,-0.000163548756972887,0.2442257553339,-0.994109153747559,0.000942871673032641,0.108378559350967,-0.994154214859009,0.00252686906605959,0.107939667999744,-0.969718396663666,-0.000163548756972887,0.2442257553339,-0.966507792472839,0,0.256637245416641,-0.994287729263306,0,0.106732204556465,-0.994109153747559,0.000942871673032641,0.108378559350967,-0.027696505188942,0.00575197720900178,0.999599814414978,-0.0343913473188877,-0.017725033685565,0.999251186847687,0.0343913473188877,-0.017725033685565,0.999251186847687,0.0276953391730785,0.00575045309960842,0.999599874019623,1.27116791759363e-007,0.0138238687068224,0.99990451335907,0.497353881597519,0.798970758914948,-0.338060438632965,0.522759139537811,0.799425840377808,-0.296042919158936,0.522759079933167,0.799425780773163,-0.296042919158936,0.497938722372055,0.799002170562744,-0.337123960256577,0.456750094890594,0.800106048583984,-0.388856828212738,0.497353881597519,0.798970758914948,-0.338060438632965,0.497938722372055,0.799002170562744,-0.337123960256577,0.455151736736298,0.800169050693512,-0.390597462654114,
- 0.386865377426147,0.798851013183594,-0.460621446371078,0.456750094890594,0.800106048583984,-0.388856828212738,0.455151736736298,0.800169050693512,-0.390597462654114,0.386865437030792,0.798851132392883,-0.460621446371078,0.22016067802906,0.799941599369049,-0.558231770992279,0.303751707077026,0.798588454723358,-0.519606828689575,0.303751707077026,0.798588454723358,-0.519606828689575,0.222779825329781,0.800001621246338,-0.557105600833893,0.142743453383446,0.799818634986877,-0.583021759986877,0.22016067802906,0.799941599369049,-0.558231770992279,0.222779825329781,0.800001621246338,-0.557105600833893,0.140333369374275,0.799874842166901,-0.583529531955719,0.0574599504470825,0.79887181520462,-0.598750472068787,0.142743453383446,0.799818634986877,-0.583021759986877,0.140333369374275,0.799874842166901,-0.583529531955719,0.0574599467217922,0.79887181520462,-0.598750472068787,0.600245296955109,0.79939192533493,-0.0260395854711533,0.600301325321198,0.799773871898651,0,0.600301325321198,0.799773871898651,0,0.600251615047455,0.799407958984375,-0.0253970213234425,0.594753682613373,0.800008535385132,-0.0790848582983017,0.600245296955109,0.79939192533493,-0.0260395854711533,0.600251615047455,0.799407958984375,-0.0253970213234425,0.594514787197113,0.800029873847961,-0.0806491449475288,0.583025455474854,0.799090087413788,-0.146752759814262,0.594753682613373,0.800008535385132,-0.0790848582983017,0.594514787197113,0.800029873847961,-0.0806491449475288,0.583025515079498,0.799090087413788,-0.146752744913101,0.623555123806,0.0345881730318069,0.781013906002045,0.0342804826796055,0.999410629272461,0.00181456387508661,-0.00339934485964477,0.999791502952576,0.0201364271342754,0.600366294384003,0.0503158867359161,0.79814076423645,0.750443994998932,0.0615030974149704,-0.65806633234024,0.623555123806,0.0345881730318069,0.781013906002045,0.625612497329712,-0.0550503470003605,0.778189122676849,0.749877572059631,-0.0305429864674807,-0.660871207714081,0.623555123806,0.0345881730318069,0.781013906002045,0.600366294384003,0.0503158867359161,0.79814076423645,
- 0.600149750709534,-0.0530179850757122,0.798128664493561,0.625612497329712,-0.0550503470003605,0.778189122676849,0.623555123806,0.0345881730318069,0.781013906002045,0.750443994998932,0.0615030974149704,-0.65806633234024,0.0342804826796055,0.999410629272461,0.00181456387508661,-0.00339934485964477,0.999791502952576,0.0201364271342754,-0.707855343818665,0.0566006265580654,0.704085946083069,0.600366294384003,0.0503158867359161,0.79814076423645,0.600149750709534,-0.0530179850757122,0.798128664493561,-0.705622375011444,-0.0816772356629372,0.703865051269531,-0.00306769413873553,-0.999317049980164,0.036824282258749,-0.707855343818665,0.0566006265580654,0.704085946083069,-0.705622375011444,-0.0816772356629372,0.703865051269531,0.600149750709534,-0.0530179850757122,0.798128664493561,0.600366294384003,0.0503158867359161,0.79814076423645,0.0273651462048292,-0.999571621417999,0.0103741139173508,0.625612497329712,-0.0550503470003605,0.778189122676849,0.600149750709534,-0.0530179850757122,0.798128664493561,-0.00306769413873553,-0.999317049980164,0.036824282258749,0.0273651462048292,-0.999571621417999,0.0103741139173508,0.749877572059631,-0.0305429864674807,-0.660871207714081,0.625612497329712,-0.0550503470003605,0.778189122676849,-0.0249727480113506,-0.999618053436279,0.0118377143517137,-0.998941838741302,-0.0359849222004414,0.028641177341342,-0.998908340930939,-0.0452839024364948,-0.0114665599539876,-0.0166667755693197,-0.999213933944702,-0.0359680503606796,-0.0857160165905952,-0.0722699910402298,0.993695020675659,0.000870042422320694,-0.999900460243225,0.0140823693946004,0.0012351949699223,-0.842667639255524,0.538432598114014,-0.998941838741302,-0.0359849222004414,0.028641177341342,-0.11289955675602,-0.073727011680603,0.990867257118225,-0.10810287296772,0.0925518721342087,0.989822149276733,-0.998922288417816,0.0342589877545834,0.0313131287693977,-0.0166667755693197,-0.999213933944702,-0.0359680503606796,0.0463772751390934,-0.068123884499073,-0.996598362922668,0.119985185563564,-0.0790945291519165,-0.989619970321655,0.012662454508245,-0.99920117855072,-0.0379044823348522,
- 0.0350244678556919,-0.0940108895301819,0.994954824447632,-0.0857160165905952,-0.0722699910402298,0.993695020675659,0.0012351949699223,-0.842667639255524,0.538432598114014,0.000870042422320694,-0.999900460243225,0.0140823693946004,0.101686969399452,-0.993820428848267,0.0445035435259342,0.0012351949699223,-0.842667639255524,0.538432598114014,-0.998908340930939,-0.0452839024364948,-0.0114665599539876,-0.998941838741302,-0.0359849222004414,0.028641177341342,-0.998922288417816,0.0342589877545834,0.0313131287693977,-0.999218642711639,0.0391271337866783,0.00557988975197077,-0.999758064746857,0.0190854929387569,-0.010936638340354,-0.0249727480113506,-0.999618053436279,0.0118377143517137,-0.11289955675602,-0.073727011680603,0.990867257118225,-0.998941838741302,-0.0359849222004414,0.028641177341342,-0.998908340930939,-0.0452839024364948,-0.0114665599539876,0.0463772751390934,-0.068123884499073,-0.996598362922668,-0.0166667755693197,-0.999213933944702,-0.0359680503606796,-0.998922288417816,0.0342589877545834,0.0313131287693977,-0.0212510619312525,0.999629557132721,0.0170082338154316,-0.00614263257011771,0.999981105327606,0.000291702104732394,-0.999218642711639,0.0391271337866783,0.00557988975197077,0.0134658711031079,0.999373018741608,-0.0327443443238735,-0.00614263257011771,0.999981105327606,0.000291702104732394,-0.0212510619312525,0.999629557132721,0.0170082338154316,0.0131504004821181,0.999669075012207,0.022108418866992,0.0169110707938671,0.999580442905426,-0.0235113874077797,-0.0212510619312525,0.999629557132721,0.0170082338154316,-0.10810287296772,0.0925518721342087,0.989822149276733,-0.0847912505269051,0.0954473316669464,0.991816639900208,0.0131504004821181,0.999669075012207,0.022108418866992,-0.999758064746857,0.0190854929387569,-0.010936638340354,0.0553748533129692,0.00834039598703384,-0.998430788516998,0.0463772751390934,-0.068123884499073,-0.996598362922668,-0.998908340930939,-0.0452839024364948,-0.0114665599539876,0.731903672218323,0.0478084124624729,-0.679728925228119,0.190257951617241,0.971705138683319,0.139967620372772,
- 0.00271381344646215,0.999406933784485,-0.0343257486820221,0.722620189189911,0.0717440545558929,-0.687512159347534,0.471672385931015,-0.688962578773499,-0.550323367118835,0.724902987480164,-0.0177799258381128,-0.688621461391449,0.727794826030731,-0.0400854758918285,-0.684622287750244,0.074475035071373,0.0347285978496075,-0.9966179728508,-0.00614263257011771,0.999981105327606,0.000291702104732394,0.0134658711031079,0.999373018741608,-0.0327443443238735,-0.10810287296772,0.0925518721342087,0.989822149276733,-0.0212510619312525,0.999629557132721,0.0170082338154316,-0.998922288417816,0.0342589877545834,0.0313131287693977,-0.999758064746857,0.0190854929387569,-0.010936638340354,0.074475035071373,0.0347285978496075,-0.9966179728508,0.0553748533129692,0.00834039598703384,-0.998430788516998,-0.999758064746857,0.0190854929387569,-0.010936638340354,-0.999218642711639,0.0391271337866783,0.00557988975197077,-0.00614263257011771,0.999981105327606,0.000291702104732394,0.074475035071373,0.0347285978496075,-0.9966179728508,-0.355728447437286,-0.0263796579092741,0.934216976165771,-0.42271015048027,-0.894847810268402,-0.143400058150291,-0.0430433824658394,-0.999051034450531,0.00665504531934857,-0.444834858179092,-0.0799127966165543,0.892040312290192,-0.35028213262558,-0.922880113124847,-0.159983098506927,0.405562698841095,-0.0123568447306752,-0.913983702659607,0.436514258384705,-0.0771132111549377,-0.896386623382568,-0.0232873912900686,-0.999228596687317,-0.0316232070326805,-0.615088820457459,0.771083295345306,0.164609387516975,-0.0529579669237137,0.879791378974915,0.472400844097137,-0.329838335514069,0.0789009183645248,0.940734505653381,-0.446037709712982,0.0696906298398972,0.892296850681305,-0.42271015048027,-0.894847810268402,-0.143400058150291,-0.35028213262558,-0.922880113124847,-0.159983098506927,-0.0232873912900686,-0.999228596687317,-0.0316232070326805,-0.0430433824658394,-0.999051034450531,0.00665504531934857,-0.00859228242188692,0.999847829341888,0.0151824140921235,0.0809561163187027,0.995863080024719,0.0412652008235455,-0.0529579669237137,0.879791378974915,0.472400844097137,
- -0.615088820457459,0.771083295345306,0.164609387516975,-0.04405402764678,0.998462021350861,-0.0336553752422333,0.230911761522293,0.0542747341096401,-0.971459746360779,-0.379548937082291,0.753287136554718,-0.537123084068298,0.230911761522293,0.0542747341096401,-0.971459746360779,-0.452887386083603,0.0639476925134659,-0.889271438121796,-0.379548937082291,0.753287136554718,-0.537123084068298,0.157307848334312,-0.987370550632477,0.0188050325959921,-0.300796151161194,-0.0402068682014942,-0.952840566635132,0.19032010436058,-0.065015934407711,-0.979566872119904,0.0203624591231346,-0.999625682830811,-0.0182749591767788,-0.363347142934799,-0.141787648200989,0.920801341533661,-0.283181548118591,-0.138263657689095,0.949047684669495,0.0012351949699223,-0.842667639255524,0.538432598114014,0.0012351949699223,-0.842667639255524,0.538432598114014,0.225101500749588,-0.972976565361023,0.0514375306665897,0.0108734685927629,-0.999833345413208,0.0146651053801179,-0.04405402764678,0.998462021350861,-0.0336553752422333,-0.433905869722366,0.894867420196533,-0.104584485292435,-0.184503480792046,0.981959640979767,-0.0413950309157372,-0.312651723623276,0.949134230613709,-0.0373239032924175,0.775724828243256,0.0904550850391388,-0.624554932117462,-0.452887386083603,0.0639476925134659,-0.889271438121796,-0.300796151161194,-0.0402068682014942,-0.952840566635132,0.119985185563564,-0.0790945291519165,-0.989619970321655,0.418015956878662,0.560308694839478,-0.715064108371735,0.33110123872757,0.824759483337402,-0.458414345979691,0.00507837301120162,0.999761521816254,-0.0212406534701586,0.441653192043304,0.0648719593882561,-0.894837379455566,0.441653192043304,0.0648719593882561,-0.894837379455566,0.446214199066162,0.0735328570008278,-0.89190012216568,0.418015956878662,0.560308694839478,-0.715064108371735,-0.363861113786697,-0.0294216405600309,0.930988430976868,0.525094091892242,-0.780984163284302,0.338141858577728,-0.0226183217018843,-0.999631285667419,0.015026974491775,-0.6224445104599,-0.0805412754416466,0.77850878238678,0.562774777412415,-0.754834353923798,0.336911886930466,
- 0.693702936172485,-0.0443486981093884,-0.71889454126358,0.574084460735321,-0.064753532409668,-0.816231548786163,0.00255490210838616,-0.999818086624146,-0.0189018603414297,-0.774323880672455,0.0845714882016182,0.627112627029419,-0.363861113786697,-0.0294216405600309,0.930988430976868,-0.6224445104599,-0.0805412754416466,0.77850878238678,-0.624724149703979,0.0647217854857445,0.77815854549408,0.525094091892242,-0.780984163284302,0.338141858577728,0.562774777412415,-0.754834353923798,0.336911886930466,0.00255490210838616,-0.999818086624146,-0.0189018603414297,-0.0226183217018843,-0.999631285667419,0.015026974491775,-0.0760742202401161,0.580184936523438,-0.810924172401428,-0.473633319139481,0.822089195251465,-0.315976113080978,-0.0149171520024538,0.999793887138367,-0.0137689942494035,-0.224335104227066,0.465109705924988,-0.856356680393219,-0.473565340042114,0.832559764385223,-0.287367850542068,-0.774323880672455,0.0845714882016182,0.627112627029419,-0.624724149703979,0.0647217854857445,0.77815854549408,-0.0287564434111118,0.999585688114166,0.00125277042388916,-0.224335104227066,0.465109705924988,-0.856356680393219,0.566702246665955,0.00230521056801081,-0.823919415473938,0.213248863816261,0.208856776356697,-0.954412817955017,-0.0760742202401161,0.580184936523438,-0.810924172401428,-0.672728478908539,-0.0231922492384911,0.739525854587555,-0.0847746729850769,-0.99461156129837,-0.0596752539277077,-0.0723028033971787,-0.996861040592194,-0.0322533808648586,-0.749504089355469,-0.0957467332482338,0.655039072036743,-0.019593819975853,-0.996552884578705,-0.080613024532795,0.471672385931015,-0.688962578773499,-0.550323367118835,0.727794826030731,-0.0400854758918285,-0.684622287750244,-0.0125619601458311,-0.999473214149475,-0.0299229044467211,-0.746521055698395,0.0674676150083542,0.661932229995728,-0.652144610881805,0.0542148612439632,0.756153523921967,-0.672728478908539,-0.0231922492384911,0.739525854587555,-0.749504089355469,-0.0957467332482338,0.655039072036743,-0.0125619601458311,-0.999473214149475,-0.0299229044467211,-0.0556062608957291,-0.997341752052307,-0.0470875687897205,
- -0.019593819975853,-0.996552884578705,-0.080613024532795,-0.0193460956215858,0.999812245368958,0.00119542633183301,0.00271381344646215,0.999406933784485,-0.0343257486820221,0.190257951617241,0.971705138683319,0.139967620372772,0.190174430608749,0.96929007768631,0.155917823314667,-0.0193460956215858,0.999812245368958,0.00119542633183301,-0.746521055698395,0.0674676150083542,0.661932229995728,-0.707855343818665,0.0566006265580654,0.704085946083069,-0.00339934485964477,0.999791502952576,0.0201364271342754,0.00685210945084691,0.999907493591309,-0.0117493718862534,0.591826379299164,0.0414317958056927,-0.805000066757202,-0.224335104227066,0.465109705924988,-0.856356680393219,0.591826379299164,0.0414317958056927,-0.805000066757202,0.566702246665955,0.00230521056801081,-0.823919415473938,-0.224335104227066,0.465109705924988,-0.856356680393219,0.0366610735654831,-0.999304831027985,0.00677372934296727,0.609783470630646,-0.0669286772608757,-0.789737105369568,0.471672385931015,-0.688962578773499,-0.550323367118835,-0.019593819975853,-0.996552884578705,-0.080613024532795,-0.0556062608957291,-0.997341752052307,-0.0470875687897205,0.0366610735654831,-0.999304831027985,0.00677372934296727,-0.019593819975853,-0.996552884578705,-0.080613024532795,-0.581220626831055,-0.0863656401634216,0.809149920940399,0.0406152345240116,-0.997032999992371,0.065387524664402,-0.0847746729850769,-0.99461156129837,-0.0596752539277077,-0.672728478908539,-0.0231922492384911,0.739525854587555,-0.57961493730545,0.0436360724270344,0.813721299171448,-0.581220626831055,-0.0863656401634216,0.809149920940399,-0.672728478908539,-0.0231922492384911,0.739525854587555,-0.652144610881805,0.0542148612439632,0.756153523921967,-0.0287564434111118,0.999585688114166,0.00125277042388916,-0.624724149703979,0.0647217854857445,0.77815854549408,-0.57961493730545,0.0436360724270344,0.813721299171448,0.00489187240600586,0.999236047267914,0.0387723632156849,-0.224335104227066,0.465109705924988,-0.856356680393219,-0.0149171520024538,0.999793887138367,-0.0137689942494035,0.00685210945084691,0.999907493591309,-0.0117493718862534,
- -0.0760742202401161,0.580184936523438,-0.810924172401428,0.213248863816261,0.208856776356697,-0.954412817955017,0.482436418533325,0.00394886126741767,-0.875922024250031,0.902906596660614,0.42904257774353,-0.0261189322918653,0.065166562795639,-0.997832477092743,0.00914828572422266,0.471806555986404,-0.0684942007064819,-0.87903767824173,0.693702936172485,-0.0443486981093884,-0.71889454126358,0.562774777412415,-0.754834353923798,0.336911886930466,0.0475437678396702,-0.997519314289093,0.0519098751246929,0.065166562795639,-0.997832477092743,0.00914828572422266,0.562774777412415,-0.754834353923798,0.336911886930466,0.525094091892242,-0.780984163284302,0.338141858577728,-0.424330711364746,-0.0700568482279778,0.902793049812317,0.0475437678396702,-0.997519314289093,0.0519098751246929,0.525094091892242,-0.780984163284302,0.338141858577728,-0.363861113786697,-0.0294216405600309,0.930988430976868,-0.410159200429916,0.0687444135546684,0.909419476985931,-0.424330711364746,-0.0700568482279778,0.902793049812317,-0.363861113786697,-0.0294216405600309,0.930988430976868,-0.774323880672455,0.0845714882016182,0.627112627029419,0.00538943661376834,0.999760925769806,0.0211883075535297,-0.410159200429916,0.0687444135546684,0.909419476985931,-0.774323880672455,0.0845714882016182,0.627112627029419,-0.473565340042114,0.832559764385223,-0.287367850542068,0.902906596660614,0.42904257774353,-0.0261189322918653,0.0143241658806801,0.999889433383942,0.00400112196803093,-0.473633319139481,0.822089195251465,-0.315976113080978,-0.0760742202401161,0.580184936523438,-0.810924172401428,0.902906596660614,0.42904257774353,-0.0261189322918653,0.463450938463211,0.0420647189021111,-0.885123670101166,0.0222432520240545,0.999663829803467,-0.0133242374286056,0.902906596660614,0.42904257774353,-0.0261189322918653,0.482436418533325,0.00394886126741767,-0.875922024250031,0.463450938463211,0.0420647189021111,-0.885123670101166,-0.615088820457459,0.771083295345306,0.164609387516975,-0.446037709712982,0.0696906298398972,0.892296850681305,-0.00859228242188692,0.999847829341888,0.0151824140921235,
- 0.0222432520240545,0.999663829803467,-0.0133242374286056,0.0143241658806801,0.999889433383942,0.00400112196803093,0.902906596660614,0.42904257774353,-0.0261189322918653,0.29390361905098,0.0555480532348156,-0.954219579696655,0.0173163507133722,0.999711751937866,-0.0166224204003811,0.33110123872757,0.824759483337402,-0.458414345979691,0.418015956878662,0.560308694839478,-0.715064108371735,0.446214199066162,0.0735328570008278,-0.89190012216568,0.29390361905098,0.0555480532348156,-0.954219579696655,0.418015956878662,0.560308694839478,-0.715064108371735,0.0203624591231346,-0.999625682830811,-0.0182749591767788,0.19032010436058,-0.065015934407711,-0.979566872119904,0.312074393033981,-0.0631586909294128,-0.947955965995789,0.0349678434431553,-0.999277889728546,-0.014865412376821,0.0012351949699223,-0.842667639255524,0.538432598114014,0.0108734685927629,-0.999833345413208,0.0146651053801179,0.0160049889236689,-0.999628961086273,0.0220412351191044,0.0160049889236689,-0.999628961086273,0.0220412351191044,-0.271882623434067,-0.0738729536533356,0.959490835666656,0.0012351949699223,-0.842667639255524,0.538432598114014,0.310016423463821,0.800849676132202,0.512376487255096,-0.276829242706299,0.0804794654250145,0.957543015480042,-0.329838335514069,0.0789009183645248,0.940734505653381,-0.0529579669237137,0.879791378974915,0.472400844097137,-0.0012215378228575,0.999566614627838,0.0294110178947449,-0.276829242706299,0.0804794654250145,0.957543015480042,0.310016423463821,0.800849676132202,0.512376487255096,-0.0012215378228575,0.999566614627838,0.0294110178947449,0.310016423463821,0.800849676132202,0.512376487255096,-0.0529579669237137,0.879791378974915,0.472400844097137,0.0809561163187027,0.995863080024719,0.0412652008235455,0.012662454508245,-0.99920117855072,-0.0379044823348522,0.119985185563564,-0.0790945291519165,-0.989619970321655,-0.300796151161194,-0.0402068682014942,-0.952840566635132,0.157307848334312,-0.987370550632477,0.0188050325959921,-0.283181548118591,-0.138263657689095,0.949047684669495,0.0350244678556919,-0.0940108895301819,0.994954824447632,
- 0.0012351949699223,-0.842667639255524,0.538432598114014,0.0012351949699223,-0.842667639255524,0.538432598114014,0.101686969399452,-0.993820428848267,0.0445035435259342,0.225101500749588,-0.972976565361023,0.0514375306665897,0.704125821590424,0.63412082195282,-0.319527238607407,0.079746276140213,0.996795117855072,0.00632746936753392,-0.433905869722366,0.894867420196533,-0.104584485292435,-0.379548937082291,0.753287136554718,-0.537123084068298,0.0169110707938671,0.999580442905426,-0.0235113874077797,0.0924473777413368,0.0616200380027294,-0.993809103965759,0.074475035071373,0.0347285978496075,-0.9966179728508,0.0134658711031079,0.999373018741608,-0.0327443443238735,0.0924473777413368,0.0616200380027294,-0.993809103965759,0.119985185563564,-0.0790945291519165,-0.989619970321655,0.0463772751390934,-0.068123884499073,-0.996598362922668,0.0553748533129692,0.00834039598703384,-0.998430788516998,0.074475035071373,0.0347285978496075,-0.9966179728508,0.190174430608749,0.96929007768631,0.155917823314667,0.00489187240600586,0.999236047267914,0.0387723632156849,0.157072693109512,0.98583722114563,0.0587641559541225,0.612954378128052,0.0553108640015125,-0.7881800532341,0.0540128983557224,0.998355388641357,0.0192119795829058,0.190257951617241,0.971705138683319,0.139967620372772,0.731903672218323,0.0478084124624729,-0.679728925228119,0.609783470630646,-0.0669286772608757,-0.789737105369568,0.724902987480164,-0.0177799258381128,-0.688621461391449,0.471672385931015,-0.688962578773499,-0.550323367118835,0.213248863816261,0.208856776356697,-0.954412817955017,0.566702246665955,0.00230521056801081,-0.823919415473938,0.574084460735321,-0.064753532409668,-0.816231548786163,0.693702936172485,-0.0443486981093884,-0.71889454126358,0.482436418533325,0.00394886126741767,-0.875922024250031,0.213248863816261,0.208856776356697,-0.954412817955017,0.693702936172485,-0.0443486981093884,-0.71889454126358,0.471806555986404,-0.0684942007064819,-0.87903767824173,-0.473633319139481,0.822089195251465,-0.315976113080978,0.0143241658806801,0.999889433383942,0.00400112196803093,
- 0.00538943661376834,0.999760925769806,0.0211883075535297,-0.473565340042114,0.832559764385223,-0.287367850542068,-0.0149171520024538,0.999793887138367,-0.0137689942494035,-0.473633319139481,0.822089195251465,-0.315976113080978,-0.473565340042114,0.832559764385223,-0.287367850542068,-0.0287564434111118,0.999585688114166,0.00125277042388916,0.33110123872757,0.824759483337402,-0.458414345979691,0.0173163507133722,0.999711751937866,-0.0166224204003811,0.0931171178817749,0.995003521442413,0.0360157415270805,-0.0515662729740143,0.998506247997284,0.0180568005889654,-0.283219486474991,0.0853800028562546,0.955247104167938,-0.276829242706299,0.0804794654250145,0.957543015480042,-0.0012215378228575,0.999566614627838,0.0294110178947449,-0.271882623434067,-0.0738729536533356,0.959490835666656,-0.363347142934799,-0.141787648200989,0.920801341533661,0.0012351949699223,-0.842667639255524,0.538432598114014,-0.329838335514069,0.0789009183645248,0.940734505653381,-0.355728447437286,-0.0263796579092741,0.934216976165771,-0.444834858179092,-0.0799127966165543,0.892040312290192,-0.446037709712982,0.0696906298398972,0.892296850681305,-0.00859228242188692,0.999847829341888,0.0151824140921235,-0.446037709712982,0.0696906298398972,0.892296850681305,-0.410159200429916,0.0687444135546684,0.909419476985931,0.00538943661376834,0.999760925769806,0.0211883075535297,0.0931171178817749,0.995003521442413,0.0360157415270805,0.00507837301120162,0.999761521816254,-0.0212406534701586,0.33110123872757,0.824759483337402,-0.458414345979691,-0.0193460956215858,0.999812245368958,0.00119542633183301,0.190174430608749,0.96929007768631,0.155917823314667,0.157072693109512,0.98583722114563,0.0587641559541225,0.157072693109512,0.98583722114563,0.0587641559541225,-0.457100421190262,0.540340304374695,0.706464231014252,-0.746521055698395,0.0674676150083542,0.661932229995728,-0.0193460956215858,0.999812245368958,0.00119542633183301,-0.457100421190262,0.540340304374695,0.706464231014252,-0.652144610881805,0.0542148612439632,0.756153523921967,-0.746521055698395,0.0674676150083542,0.661932229995728,
- -0.57961493730545,0.0436360724270344,0.813721299171448,-0.652144610881805,0.0542148612439632,0.756153523921967,-0.457100421190262,0.540340304374695,0.706464231014252,0.00489187240600586,0.999236047267914,0.0387723632156849,-0.57961493730545,0.0436360724270344,0.813721299171448,-0.457100421190262,0.540340304374695,0.706464231014252,0.157072693109512,0.98583722114563,0.0587641559541225,0.190174430608749,0.96929007768631,0.155917823314667,0.190257951617241,0.971705138683319,0.139967620372772,0.0540128983557224,0.998355388641357,0.0192119795829058,0.00489187240600586,0.999236047267914,0.0387723632156849,-0.184503480792046,0.981959640979767,-0.0413950309157372,0.0689948424696922,0.997234702110291,0.027616560459137,-0.199834778904915,0.92678701877594,0.318012177944183,-0.312651723623276,0.949134230613709,-0.0373239032924175,-0.184503480792046,0.981959640979767,-0.0413950309157372,-0.199834778904915,0.92678701877594,0.318012177944183,-0.0515662729740143,0.998506247997284,0.0180568005889654,-0.312651723623276,0.949134230613709,-0.0373239032924175,-0.199834778904915,0.92678701877594,0.318012177944183,-0.199834778904915,0.92678701877594,0.318012177944183,-0.164710953831673,0.777842819690704,0.606490671634674,-0.283219486474991,0.0853800028562546,0.955247104167938,-0.0515662729740143,0.998506247997284,0.0180568005889654,-0.382453173398972,0.00810969714075327,0.923939287662506,-0.283219486474991,0.0853800028562546,0.955247104167938,-0.164710953831673,0.777842819690704,0.606490671634674,-0.164710953831673,0.777842819690704,0.606490671634674,-0.2488823980093,-0.0633537322282791,0.966459453105927,-0.382453173398972,0.00810969714075327,0.923939287662506,-0.164710953831673,0.777842819690704,0.606490671634674,0.0346888713538647,0.0190184209495783,0.999217212200165,-0.2488823980093,-0.0633537322282791,0.966459453105927,-0.0847912505269051,0.0954473316669464,0.991816639900208,0.0346888713538647,0.0190184209495783,0.999217212200165,-0.164710953831673,0.777842819690704,0.606490671634674,0.0131504004821181,0.999669075012207,0.022108418866992,
- -0.0847912505269051,0.0954473316669464,0.991816639900208,-0.164710953831673,0.777842819690704,0.606490671634674,-0.199834778904915,0.92678701877594,0.318012177944183,0.0689948424696922,0.997234702110291,0.027616560459137,0.0131504004821181,0.999669075012207,0.022108418866992,-0.199834778904915,0.92678701877594,0.318012177944183,0.0169110707938671,0.999580442905426,-0.0235113874077797,0.079746276140213,0.996795117855072,0.00632746936753392,0.704125821590424,0.63412082195282,-0.319527238607407,0.704125821590424,0.63412082195282,-0.319527238607407,0.0924473777413368,0.0616200380027294,-0.993809103965759,0.0169110707938671,0.999580442905426,-0.0235113874077797,0.704125821590424,0.63412082195282,-0.319527238607407,0.775724828243256,0.0904550850391388,-0.624554932117462,0.0924473777413368,0.0616200380027294,-0.993809103965759,-0.379548937082291,0.753287136554718,-0.537123084068298,-0.452887386083603,0.0639476925134659,-0.889271438121796,0.775724828243256,0.0904550850391388,-0.624554932117462,0.704125821590424,0.63412082195282,-0.319527238607407,-0.433905869722366,0.894867420196533,-0.104584485292435,0.079746276140213,0.996795117855072,0.00632746936753392,0.0689948424696922,0.997234702110291,0.027616560459137,-0.184503480792046,0.981959640979767,-0.0413950309157372,-0.379548937082291,0.753287136554718,-0.537123084068298,-0.433905869722366,0.894867420196533,-0.104584485292435,-0.04405402764678,0.998462021350861,-0.0336553752422333,0.230911761522293,0.0542747341096401,-0.971459746360779,0.19032010436058,-0.065015934407711,-0.979566872119904,-0.300796151161194,-0.0402068682014942,-0.952840566635132,-0.452887386083603,0.0639476925134659,-0.889271438121796,0.727794826030731,-0.0400854758918285,-0.684622287750244,0.724902987480164,-0.0177799258381128,-0.688621461391449,0.731903672218323,0.0478084124624729,-0.679728925228119,0.722620189189911,0.0717440545558929,-0.687512159347534,-0.0125619601458311,-0.999473214149475,-0.0299229044467211,0.727794826030731,-0.0400854758918285,-0.684622287750244,0.749877572059631,-0.0305429864674807,-0.660871207714081,
- 0.0273651462048292,-0.999571621417999,0.0103741139173508,-0.0847746729850769,-0.99461156129837,-0.0596752539277077,-0.0556062608957291,-0.997341752052307,-0.0470875687897205,-0.0125619601458311,-0.999473214149475,-0.0299229044467211,-0.0723028033971787,-0.996861040592194,-0.0322533808648586,0.0406152345240116,-0.997032999992371,0.065387524664402,0.0366610735654831,-0.999304831027985,0.00677372934296727,-0.0556062608957291,-0.997341752052307,-0.0470875687897205,-0.0847746729850769,-0.99461156129837,-0.0596752539277077,0.00255490210838616,-0.999818086624146,-0.0189018603414297,0.574084460735321,-0.064753532409668,-0.816231548786163,0.609783470630646,-0.0669286772608757,-0.789737105369568,0.0366610735654831,-0.999304831027985,0.00677372934296727,0.609783470630646,-0.0669286772608757,-0.789737105369568,0.612954378128052,0.0553108640015125,-0.7881800532341,0.731903672218323,0.0478084124624729,-0.679728925228119,0.724902987480164,-0.0177799258381128,-0.688621461391449,-0.00859228242188692,0.999847829341888,0.0151824140921235,0.00507837301120162,0.999761521816254,-0.0212406534701586,0.0931171178817749,0.995003521442413,0.0360157415270805,0.0809561163187027,0.995863080024719,0.0412652008235455,0.441653192043304,0.0648719593882561,-0.894837379455566,0.00507837301120162,0.999761521816254,-0.0212406534701586,0.0222432520240545,0.999663829803467,-0.0133242374286056,0.463450938463211,0.0420647189021111,-0.885123670101166,0.405562698841095,-0.0123568447306752,-0.913983702659607,0.446214199066162,0.0735328570008278,-0.89190012216568,0.441653192043304,0.0648719593882561,-0.894837379455566,0.436514258384705,-0.0771132111549377,-0.896386623382568,0.29390361905098,0.0555480532348156,-0.954219579696655,0.312074393033981,-0.0631586909294128,-0.947955965995789,0.19032010436058,-0.065015934407711,-0.979566872119904,0.230911761522293,0.0542747341096401,-0.971459746360779,0.230911761522293,0.0542747341096401,-0.971459746360779,-0.04405402764678,0.998462021350861,-0.0336553752422333,0.0173163507133722,0.999711751937866,-0.0166224204003811,
- 0.29390361905098,0.0555480532348156,-0.954219579696655,-0.0515662729740143,0.998506247997284,0.0180568005889654,-0.04405402764678,0.998462021350861,-0.0336553752422333,-0.312651723623276,0.949134230613709,-0.0373239032924175,-0.11289955675602,-0.073727011680603,0.990867257118225,-0.0857160165905952,-0.0722699910402298,0.993695020675659,-0.0847912505269051,0.0954473316669464,0.991816639900208,-0.10810287296772,0.0925518721342087,0.989822149276733,-0.11289955675602,-0.073727011680603,0.990867257118225,-0.0249727480113506,-0.999618053436279,0.0118377143517137,0.000870042422320694,-0.999900460243225,0.0140823693946004,-0.0857160165905952,-0.0722699910402298,0.993695020675659,-0.0249727480113506,-0.999618053436279,0.0118377143517137,-0.0166667755693197,-0.999213933944702,-0.0359680503606796,0.012662454508245,-0.99920117855072,-0.0379044823348522,0.000870042422320694,-0.999900460243225,0.0140823693946004,0.225101500749588,-0.972976565361023,0.0514375306665897,0.101686969399452,-0.993820428848267,0.0445035435259342,0.012662454508245,-0.99920117855072,-0.0379044823348522,0.157307848334312,-0.987370550632477,0.0188050325959921,0.0108734685927629,-0.999833345413208,0.0146651053801179,0.225101500749588,-0.972976565361023,0.0514375306665897,0.157307848334312,-0.987370550632477,0.0188050325959921,0.0203624591231346,-0.999625682830811,-0.0182749591767788,0.0160049889236689,-0.999628961086273,0.0220412351191044,0.0108734685927629,-0.999833345413208,0.0146651053801179,0.0203624591231346,-0.999625682830811,-0.0182749591767788,0.0349678434431553,-0.999277889728546,-0.014865412376821,0.0253530908375978,-0.999320507049561,0.0267530027776957,0.0253530908375978,-0.999320507049561,0.0267530027776957,-0.284790605306625,-0.0845979601144791,0.954849481582642,-0.271882623434067,-0.0738729536533356,0.959490835666656,0.0160049889236689,-0.999628961086273,0.0220412351191044,-0.271882623434067,-0.0738729536533356,0.959490835666656,-0.283219486474991,0.0853800028562546,0.955247104167938,-0.382453173398972,0.00810969714075327,0.923939287662506,-0.363347142934799,-0.141787648200989,0.920801341533661,
- -0.382453173398972,0.00810969714075327,0.923939287662506,-0.2488823980093,-0.0633537322282791,0.966459453105927,-0.283181548118591,-0.138263657689095,0.949047684669495,-0.363347142934799,-0.141787648200989,0.920801341533661,-0.2488823980093,-0.0633537322282791,0.966459453105927,0.0346888713538647,0.0190184209495783,0.999217212200165,0.0350244678556919,-0.0940108895301819,0.994954824447632,-0.283181548118591,-0.138263657689095,0.949047684669495,0.0342804826796055,0.999410629272461,0.00181456387508661,0.00271381344646215,0.999406933784485,-0.0343257486820221,-0.0193460956215858,0.999812245368958,0.00119542633183301,-0.00339934485964477,0.999791502952576,0.0201364271342754,0.722620189189911,0.0717440545558929,-0.687512159347534,0.00271381344646215,0.999406933784485,-0.0343257486820221,0.0342804826796055,0.999410629272461,0.00181456387508661,0.750443994998932,0.0615030974149704,-0.65806633234024,0.727794826030731,-0.0400854758918285,-0.684622287750244,0.722620189189911,0.0717440545558929,-0.687512159347534,0.750443994998932,0.0615030974149704,-0.65806633234024,0.749877572059631,-0.0305429864674807,-0.660871207714081,0.574084460735321,-0.064753532409668,-0.816231548786163,0.566702246665955,0.00230521056801081,-0.823919415473938,0.591826379299164,0.0414317958056927,-0.805000066757202,0.612954378128052,0.0553108640015125,-0.7881800532341,0.609783470630646,-0.0669286772608757,-0.789737105369568,0.591826379299164,0.0414317958056927,-0.805000066757202,0.00685210945084691,0.999907493591309,-0.0117493718862534,0.0540128983557224,0.998355388641357,0.0192119795829058,0.612954378128052,0.0553108640015125,-0.7881800532341,0.00489187240600586,0.999236047267914,0.0387723632156849,0.0540128983557224,0.998355388641357,0.0192119795829058,0.00685210945084691,0.999907493591309,-0.0117493718862534,-0.0149171520024538,0.999793887138367,-0.0137689942494035,-0.0287564434111118,0.999585688114166,0.00125277042388916,0.436514258384705,-0.0771132111549377,-0.896386623382568,0.441653192043304,0.0648719593882561,-0.894837379455566,0.463450938463211,0.0420647189021111,-0.885123670101166,
- 0.482436418533325,0.00394886126741767,-0.875922024250031,0.471806555986404,-0.0684942007064819,-0.87903767824173,-0.0232873912900686,-0.999228596687317,-0.0316232070326805,0.436514258384705,-0.0771132111549377,-0.896386623382568,0.471806555986404,-0.0684942007064819,-0.87903767824173,0.065166562795639,-0.997832477092743,0.00914828572422266,-0.0430433824658394,-0.999051034450531,0.00665504531934857,-0.0232873912900686,-0.999228596687317,-0.0316232070326805,0.065166562795639,-0.997832477092743,0.00914828572422266,0.0475437678396702,-0.997519314289093,0.0519098751246929,-0.444834858179092,-0.0799127966165543,0.892040312290192,-0.0430433824658394,-0.999051034450531,0.00665504531934857,0.0475437678396702,-0.997519314289093,0.0519098751246929,-0.424330711364746,-0.0700568482279778,0.902793049812317,-0.446037709712982,0.0696906298398972,0.892296850681305,-0.444834858179092,-0.0799127966165543,0.892040312290192,-0.424330711364746,-0.0700568482279778,0.902793049812317,-0.410159200429916,0.0687444135546684,0.909419476985931,-0.276829242706299,0.0804794654250145,0.957543015480042,-0.283219486474991,0.0853800028562546,0.955247104167938,-0.271882623434067,-0.0738729536533356,0.959490835666656,-0.284790605306625,-0.0845979601144791,0.954849481582642,-0.0012215378228575,0.999566614627838,0.0294110178947449,0.0173163507133722,0.999711751937866,-0.0166224204003811,-0.04405402764678,0.998462021350861,-0.0336553752422333,-0.0515662729740143,0.998506247997284,0.0180568005889654,0.0931171178817749,0.995003521442413,0.0360157415270805,0.0173163507133722,0.999711751937866,-0.0166224204003811,-0.0012215378228575,0.999566614627838,0.0294110178947449,0.0809561163187027,0.995863080024719,0.0412652008235455,0.405562698841095,-0.0123568447306752,-0.913983702659607,0.312074393033981,-0.0631586909294128,-0.947955965995789,0.29390361905098,0.0555480532348156,-0.954219579696655,0.446214199066162,0.0735328570008278,-0.89190012216568,0.0349678434431553,-0.999277889728546,-0.014865412376821,0.312074393033981,-0.0631586909294128,-0.947955965995789,0.405562698841095,-0.0123568447306752,-0.913983702659607,
- -0.35028213262558,-0.922880113124847,-0.159983098506927,0.0253530908375978,-0.999320507049561,0.0267530027776957,0.0349678434431553,-0.999277889728546,-0.014865412376821,-0.35028213262558,-0.922880113124847,-0.159983098506927,-0.42271015048027,-0.894847810268402,-0.143400058150291,-0.355728447437286,-0.0263796579092741,0.934216976165771,-0.284790605306625,-0.0845979601144791,0.954849481582642,0.0253530908375978,-0.999320507049561,0.0267530027776957,-0.42271015048027,-0.894847810268402,-0.143400058150291,-0.276829242706299,0.0804794654250145,0.957543015480042,-0.284790605306625,-0.0845979601144791,0.954849481582642,-0.355728447437286,-0.0263796579092741,0.934216976165771,-0.329838335514069,0.0789009183645248,0.940734505653381,0.0222432520240545,0.999663829803467,-0.0133242374286056,0.00507837301120162,0.999761521816254,-0.0212406534701586,-0.00859228242188692,0.999847829341888,0.0151824140921235,0.00538943661376834,0.999760925769806,0.0211883075535297,0.0143241658806801,0.999889433383942,0.00400112196803093,0.0169110707938671,0.999580442905426,-0.0235113874077797,0.0131504004821181,0.999669075012207,0.022108418866992,0.0689948424696922,0.997234702110291,0.027616560459137,0.079746276140213,0.996795117855072,0.00632746936753392,0.0924473777413368,0.0616200380027294,-0.993809103965759,0.775724828243256,0.0904550850391388,-0.624554932117462,0.119985185563564,-0.0790945291519165,-0.989619970321655,0.000870042422320694,-0.999900460243225,0.0140823693946004,0.012662454508245,-0.99920117855072,-0.0379044823348522,0.101686969399452,-0.993820428848267,0.0445035435259342,-0.0847912505269051,0.0954473316669464,0.991816639900208,-0.0857160165905952,-0.0722699910402298,0.993695020675659,0.0350244678556919,-0.0940108895301819,0.994954824447632,0.0346888713538647,0.0190184209495783,0.999217212200165,-0.0723028033971787,-0.996861040592194,-0.0322533808648586,-0.0125619601458311,-0.999473214149475,-0.0299229044467211,0.0273651462048292,-0.999571621417999,0.0103741139173508,-0.00306769413873553,-0.999317049980164,0.036824282258749,-0.749504089355469,-0.0957467332482338,0.655039072036743,
- -0.0723028033971787,-0.996861040592194,-0.0322533808648586,-0.00306769413873553,-0.999317049980164,0.036824282258749,-0.705622375011444,-0.0816772356629372,0.703865051269531,-0.746521055698395,0.0674676150083542,0.661932229995728,-0.749504089355469,-0.0957467332482338,0.655039072036743,-0.705622375011444,-0.0816772356629372,0.703865051269531,-0.707855343818665,0.0566006265580654,0.704085946083069,-0.624724149703979,0.0647217854857445,0.77815854549408,-0.6224445104599,-0.0805412754416466,0.77850878238678,-0.581220626831055,-0.0863656401634216,0.809149920940399,-0.57961493730545,0.0436360724270344,0.813721299171448,-0.6224445104599,-0.0805412754416466,0.77850878238678,-0.0226183217018843,-0.999631285667419,0.015026974491775,0.0406152345240116,-0.997032999992371,0.065387524664402,-0.581220626831055,-0.0863656401634216,0.809149920940399,-0.0226183217018843,-0.999631285667419,0.015026974491775,0.00255490210838616,-0.999818086624146,-0.0189018603414297,0.0366610735654831,-0.999304831027985,0.00677372934296727,0.0406152345240116,-0.997032999992371,0.065387524664402,0.0135332103818655,0.0356055796146393,0.99927431344986,0.0221307631582022,0.999474406242371,0.0236890260130167,-0.0185089968144894,0.999735236167908,0.0136666893959045,-0.0151079408824444,0.0510906130075455,0.998579740524292,0.998502314090729,0.0523300729691982,0.0159575045108795,0.0135332103818655,0.0356055796146393,0.99927431344986,0.0166881792247295,-0.0523771271109581,0.998487889766693,0.998903572559357,-0.0449700392782688,0.0130077311769128,0.0135332103818655,0.0356055796146393,0.99927431344986,-0.0151079408824444,0.0510906130075455,0.998579740524292,-0.015272943302989,-0.0511002950370312,0.998576819896698,0.0166881792247295,-0.0523771271109581,0.998487889766693,0.0135332103818655,0.0356055796146393,0.99927431344986,0.998502314090729,0.0523300729691982,0.0159575045108795,0.0221307631582022,0.999474406242371,0.0236890260130167,-0.0185089968144894,0.999735236167908,0.0136666893959045,-0.997723400592804,0.0488404557108879,0.0465034022927284,-0.0151079408824444,0.0510906130075455,0.998579740524292,
- -0.015272943302989,-0.0511002950370312,0.998576819896698,-0.995313286781311,-0.0843066349625587,0.047370333224535,-0.0279011055827141,-0.999261021614075,0.0264361090958118,-0.997723400592804,0.0488404557108879,0.0465034022927284,-0.995313286781311,-0.0843066349625587,0.047370333224535,-0.015272943302989,-0.0511002950370312,0.998576819896698,-0.0151079408824444,0.0510906130075455,0.998579740524292,0.0106934932991862,-0.999615490436554,0.0255850125104189,0.0166881792247295,-0.0523771271109581,0.998487889766693,-0.015272943302989,-0.0511002950370312,0.998576819896698,-0.0279011055827141,-0.999261021614075,0.0264361090958118,0.0106934932991862,-0.999615490436554,0.0255850125104189,0.998903572559357,-0.0449700392782688,0.0130077311769128,0.0166881792247295,-0.0523771271109581,0.998487889766693,-0.0246894489973783,-0.999618232250214,-0.0123983873054385,-0.637245059013367,-0.0359994955360889,-0.769819974899292,-0.605599343776703,-0.0453071817755699,-0.794478952884674,0.0181005578488112,-0.999214172363281,-0.0352609604597092,-0.836075305938721,-0.0722560957074165,0.543835580348969,-0.0105587178841233,-0.99990051984787,0.00935124419629574,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.637245059013367,-0.0359994955360889,-0.769819974899292,-0.850563406944275,-0.0737104117870331,0.520681083202362,-0.846792995929718,0.0925378426909447,0.52381157875061,-0.639337301254272,0.0342438519001007,-0.768163442611694,0.0181005578488112,-0.999214172363281,-0.0352609604597092,0.814139664173126,-0.0681404024362564,-0.576657176017761,0.853942632675171,-0.0790887847542763,-0.514321804046631,0.0376791208982468,-0.999200820922852,-0.0133424969390035,-0.759934961795807,-0.0934303477406502,0.643249273300171,-0.836075305938721,-0.0722560957074165,0.543835580348969,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.0105587178841233,-0.99990051984787,0.00935124419629574,0.0274789892137051,-0.993823885917664,0.1075129956007,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.605599343776703,-0.0453071817755699,-0.794478952884674,
- -0.637245059013367,-0.0359994955360889,-0.769819974899292,-0.639337301254272,0.0342438519001007,-0.768163442611694,-0.619223117828369,0.0391170717775822,-0.784240126609802,-0.606533527374268,0.0191265568137169,-0.794827818870544,-0.0246894489973783,-0.999618232250214,-0.0123983873054385,-0.850563406944275,-0.0737104117870331,0.520681083202362,-0.637245059013367,-0.0359994955360889,-0.769819974899292,-0.605599343776703,-0.0453071817755699,-0.794478952884674,0.814139664173126,-0.0681404024362564,-0.576657176017761,0.0181005578488112,-0.999214172363281,-0.0352609604597092,-0.639337301254272,0.0342438519001007,-0.768163442611694,-0.0264871995896101,0.999629318714142,-0.00630044704303145,-0.00400837557390332,0.999981105327606,-0.00467438669875264,-0.619223117828369,0.0391170717775822,-0.784240126609802,0.0340915955603123,0.999373257160187,-0.00952957943081856,-0.00400837557390332,0.999981105327606,-0.00467438669875264,-0.0264871995896101,0.999629318714142,-0.00630044704303145,-0.00997164100408554,0.999661862850189,0.0240161884576082,0.0289316978305578,0.999580681324005,-0.00113030429929495,-0.0264871995896101,0.999629318714142,-0.00630044704303145,-0.846792995929718,0.0925378426909447,0.52381157875061,-0.834077179431915,0.0952496975660324,0.543362379074097,-0.00997164100408554,0.999661862850189,0.0240161884576082,-0.606533527374268,0.0191265568137169,-0.794827818870544,0.821128785610199,0.00833079591393471,-0.570682108402252,0.814139664173126,-0.0681404024362564,-0.576657176017761,-0.605599343776703,-0.0453071817755699,-0.794478952884674,0.998103260993958,0.0562513098120689,0.0250126756727695,0.0239141508936882,0.978452384471893,-0.205083101987839,0.0230206903070211,0.999487221240997,-0.0222557634115219,0.997808396816254,0.0628887489438057,-0.0205797534435987,0.713850915431976,-0.671023964881897,0.200358808040619,0.995818257331848,-0.0106716230511665,0.0907308757305145,0.998357713222504,-0.0545647963881493,-0.0174551922827959,0.83146458864212,0.0347019284963608,-0.554492890834808,-0.00400837557390332,0.999981105327606,-0.00467438669875264,
- 0.0340915955603123,0.999373257160187,-0.00952957943081856,-0.846792995929718,0.0925378426909447,0.52381157875061,-0.0264871995896101,0.999629318714142,-0.00630044704303145,-0.639337301254272,0.0342438519001007,-0.768163442611694,-0.606533527374268,0.0191265568137169,-0.794827818870544,0.83146458864212,0.0347019284963608,-0.554492890834808,0.821128785610199,0.00833079591393471,-0.570682108402252,-0.606533527374268,0.0191265568137169,-0.794827818870544,-0.619223117828369,0.0391170717775822,-0.784240126609802,-0.00400837557390332,0.999981105327606,-0.00467438669875264,0.83146458864212,0.0347019284963608,-0.554492890834808,-0.951460123062134,-0.0209709648042917,0.307056754827499,-0.0373324230313301,-0.996032357215881,-0.0807839930057526,-0.0317303352057934,-0.999051034450531,-0.0298378225415945,-0.976897299289703,-0.0799339264631271,0.198197320103645,0.0420630723237991,-0.999097466468811,0.00590585079044104,0.981602370738983,3.24414249917027e-005,-0.190936610102654,0.975197851657867,-0.0771328285336494,-0.207460537552834,0.0105938035994768,-0.999228775501251,-0.0378105454146862,-0.508260846138,0.771097779273987,-0.383509188890457,-0.43142893910408,0.89804607629776,0.0859201103448868,-0.950141310691834,0.0858648642897606,0.299764394760132,-0.977843821048737,0.0696736052632332,0.197400778532028,-0.0373324230313301,-0.996032357215881,-0.0807839930057526,0.0420630723237991,-0.999097466468811,0.00590585079044104,0.0105938035994768,-0.999228775501251,-0.0378105454146862,-0.0317303352057934,-0.999051034450531,-0.0298378225415945,-0.0172505080699921,0.999847888946533,0.00256802793592215,-0.0292991660535336,0.998341977596283,-0.0495451018214226,-0.43142893910408,0.89804607629776,0.0859201103448868,-0.508260846138,0.771097779273987,-0.383509188890457,0.00123342918232083,0.998655796051025,-0.0518164560198784,0.907378315925598,0.0542788542807102,-0.416795313358307,0.159237131476402,0.738908231258392,-0.654719889163971,0.907378315925598,0.0542788542807102,-0.416795313358307,0.425579160451889,0.0636287480592728,-0.902681410312653,0.159237131476402,0.738908231258392,-0.654719889163971,
- 0.0544666200876236,-0.995275557041168,0.0803742855787277,0.55309009552002,-0.0375496447086334,-0.832274854183197,0.889972567558289,-0.0652766674757004,-0.451317697763443,0.0262962114065886,-0.999647617340088,0.00364057859405875,-0.949220955371857,-0.143127366900444,0.280167937278748,-0.935468256473541,-0.141669303178787,0.323773056268692,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.431278675794601,-0.842288970947266,0.32333892583847,0.0735766962170601,-0.984188914299011,0.16111695766449,-0.00627070758491755,-0.999863028526306,0.0153174065053463,0.00123342918232083,0.998655796051025,-0.0518164560198784,-0.154998734593391,0.928965926170349,-0.336151152849197,-0.0840605199337006,0.981995820999146,-0.169168844819069,-0.126420691609383,0.9718878865242,-0.198625072836876,0.970207870006561,0.0901778042316437,0.224865883588791,0.425579160451889,0.0636287480592728,-0.902681410312653,0.55309009552002,-0.0375496447086334,-0.832274854183197,0.853942632675171,-0.0790887847542763,-0.514321804046631,0.790354311466217,0.572589457035065,-0.217902109026909,0.521524906158447,0.83491450548172,-0.175868019461632,0.0198671706020832,0.999761521816254,-0.00906575750559568,0.977139949798584,0.0648734718561172,-0.202456831932068,0.977139949798584,0.0648734718561172,-0.202456831932068,0.974318027496338,0.074189156293869,-0.212603971362114,0.790354311466217,0.572589457035065,-0.217902109026909,-0.99592137336731,-0.0334713980555534,-0.0837875083088875,-0.0787103623151779,-0.752066195011139,-0.654370844364166,-0.0296486858278513,-0.998540699481964,-0.0451373681426048,-0.996702551841736,-0.0810491293668747,0.00388062745332718,-0.0561710819602013,-0.766392588615417,-0.639911890029907,0.971089243888855,-0.045189093798399,-0.23440058529377,0.996209442615509,-0.0650518089532852,-0.0577487275004387,0.0116610107943416,-0.998866140842438,-0.0461553633213043,-0.87185525894165,0.0869669392704964,0.481980592012405,-0.99592137336731,-0.0334713980555534,-0.0837875083088875,-0.996702551841736,-0.0810491293668747,0.00388062745332718,-0.997925758361816,0.061370812356472,-0.0194376222789288,
- -0.0787103623151779,-0.752066195011139,-0.654370844364166,-0.0561710819602013,-0.766392588615417,-0.639911890029907,0.0116610107943416,-0.998866140842438,-0.0461553633213043,-0.0296486858278513,-0.998540699481964,-0.0451373681426048,0.700463652610779,0.561141192913055,0.440988928079605,0.0902620181441307,0.789596140384674,0.606951892375946,0.00390633195638657,0.999984085559845,-0.00407623406499624,0.592905819416046,0.492196589708328,-0.63734233379364,0.0591892637312412,0.789011836051941,0.611520111560822,-0.87185525894165,0.0869669392704964,0.481980592012405,-0.997925758361816,0.061370812356472,-0.0194376222789288,-0.0177194159477949,0.9998419880867,-0.00139277370180935,0.592905819416046,0.492196589708328,-0.63734233379364,0.997266709804535,0.00203429954126477,-0.0738577470183373,0.942940950393677,0.218931689858437,0.250861167907715,0.700463652610779,0.561141192913055,0.440988928079605,-0.998621702194214,-0.0302827041596174,0.0428681932389736,-0.000641944468952715,-0.955995142459869,0.293381690979004,-0.0270027499645948,-0.998035669326782,-0.0565300136804581,-0.995314121246338,-0.0955512449145317,-0.0148262828588486,0.062271349132061,-0.960690796375275,0.270546704530716,0.713850915431976,-0.671023964881897,0.200358808040619,0.998357713222504,-0.0545647963881493,-0.0174551922827959,0.00980534870177507,-0.999700665473938,-0.0224154833704233,-0.998129367828369,0.0600522272288799,-0.0114677343517542,-0.998465836048126,0.0553349256515503,0.00201057083904743,-0.998621702194214,-0.0302827041596174,0.0428681932389736,-0.995314121246338,-0.0955512449145317,-0.0148262828588486,0.00980534870177507,-0.999700665473938,-0.0224154833704233,0.0109745794907212,-0.948499023914337,0.31659010052681,0.062271349132061,-0.960690796375275,0.270546704530716,-0.017300808802247,0.999736726284027,-0.0150717487558723,0.0230206903070211,0.999487221240997,-0.0222557634115219,0.0239141508936882,0.978452384471893,-0.205083101987839,0.00911045633256435,0.97787082195282,-0.209011122584343,-0.017300808802247,0.999736726284027,-0.0150717487558723,-0.998129367828369,0.0600522272288799,-0.0114677343517542,
- -0.997723400592804,0.0488404557108879,0.0465034022927284,-0.0185089968144894,0.999735236167908,0.0136666893959045,0.0129880616441369,0.999913692474365,-0.00196181633509696,0.998347043991089,0.0414099544286728,-0.0398557484149933,0.592905819416046,0.492196589708328,-0.63734233379364,0.998347043991089,0.0414099544286728,-0.0398557484149933,0.997266709804535,0.00203429954126477,-0.0738577470183373,0.592905819416046,0.492196589708328,-0.63734233379364,0.0165821462869644,-0.998200297355652,0.0576302707195282,0.997492611408234,-0.0687863305211067,-0.0166392363607883,0.713850915431976,-0.671023964881897,0.200358808040619,0.062271349132061,-0.960690796375275,0.270546704530716,0.0109745794907212,-0.948499023914337,0.31659010052681,0.0165821462869644,-0.998200297355652,0.0576302707195282,0.062271349132061,-0.960690796375275,0.270546704530716,-0.995035529136658,-0.0856860429048538,0.0506172180175781,-0.0223349202424288,-0.993022739887238,0.115788489580154,-0.000641944468952715,-0.955995142459869,0.293381690979004,-0.998621702194214,-0.0302827041596174,0.0428681932389736,-0.997780323028564,0.0409077145159245,0.0525453835725784,-0.995035529136658,-0.0856860429048538,0.0506172180175781,-0.998621702194214,-0.0302827041596174,0.0428681932389736,-0.998465836048126,0.0553349256515503,0.00201057083904743,-0.0177194159477949,0.9998419880867,-0.00139277370180935,-0.997925758361816,0.061370812356472,-0.0194376222789288,-0.997780323028564,0.0409077145159245,0.0525453835725784,-0.0286871865391731,0.999588489532471,-0.000150019564898685,0.592905819416046,0.492196589708328,-0.63734233379364,0.00390633195638657,0.999984085559845,-0.00407623406499624,0.0129880616441369,0.999913692474365,-0.00196181633509696,0.700463652610779,0.561141192913055,0.440988928079605,0.942940950393677,0.218931689858437,0.250861167907715,0.986994802951813,0.00502565782517195,-0.160673648118973,0.475949048995972,0.383085697889328,0.791655242443085,0.0297034531831741,-0.999246597290039,0.0249782390892506,0.983885288238525,-0.0680312067270279,-0.165352687239647,0.971089243888855,-0.045189093798399,-0.23440058529377,
- -0.0561710819602013,-0.766392588615417,-0.639911890029907,-0.015422691591084,-0.99923837184906,0.035844299942255,0.0297034531831741,-0.999246597290039,0.0249782390892506,-0.0561710819602013,-0.766392588615417,-0.639911890029907,-0.0787103623151779,-0.752066195011139,-0.654370844364166,-0.971565306186676,-0.0691605806350708,0.226445883512497,-0.015422691591084,-0.99923837184906,0.035844299942255,-0.0787103623151779,-0.752066195011139,-0.654370844364166,-0.99592137336731,-0.0334713980555534,-0.0837875083088875,-0.972208380699158,0.0697132050991058,0.223497077822685,-0.971565306186676,-0.0691605806350708,0.226445883512497,-0.99592137336731,-0.0334713980555534,-0.0837875083088875,-0.87185525894165,0.0869669392704964,0.481980592012405,-0.0106978770345449,0.999180316925049,0.0390427261590958,-0.972208380699158,0.0697132050991058,0.223497077822685,-0.87185525894165,0.0869669392704964,0.481980592012405,0.0591892637312412,0.789011836051941,0.611520111560822,0.475949048995972,0.383085697889328,0.791655242443085,0.00754115171730518,0.999483942985535,0.03122553601861,0.0902620181441307,0.789596140384674,0.606951892375946,0.700463652610779,0.561141192913055,0.440988928079605,0.475949048995972,0.383085697889328,0.791655242443085,0.982896447181702,0.0420565940439701,-0.179292798042297,0.0241854228079319,0.999663949012756,0.00933660566806793,0.475949048995972,0.383085697889328,0.791655242443085,0.986994802951813,0.00502565782517195,-0.160673648118973,0.982896447181702,0.0420565940439701,-0.179292798042297,-0.508260846138,0.771097779273987,-0.383509188890457,-0.977843821048737,0.0696736052632332,0.197400778532028,-0.0172505080699921,0.999847888946533,0.00256802793592215,0.0241854228079319,0.999663949012756,0.00933660566806793,0.00754115171730518,0.999483942985535,0.03122553601861,0.475949048995972,0.383085697889328,0.791655242443085,0.932958483695984,0.0551193989813328,-0.355739206075668,0.0162361823022366,0.999568998813629,-0.0244617909193039,0.521524906158447,0.83491450548172,-0.175868019461632,0.790354311466217,0.572589457035065,-0.217902109026909,
- 0.974318027496338,0.074189156293869,-0.212603971362114,0.932958483695984,0.0551193989813328,-0.355739206075668,0.790354311466217,0.572589457035065,-0.217902109026909,0.0262962114065886,-0.999647617340088,0.00364057859405875,0.889972567558289,-0.0652766674757004,-0.451317697763443,0.935888350009918,-0.0669789537787437,-0.345870971679688,0.0428633615374565,-0.997852981090546,0.0495174825191498,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.00627070758491755,-0.999863028526306,0.0153174065053463,-0.00759575562551618,-0.999629557132721,0.0261355228722095,-0.00759575562551618,-0.999629557132721,0.0261355228722095,-0.923721611499786,-0.0738029927015305,0.375887632369995,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.3026182949543,0.868030786514282,0.393630176782608,-0.926622807979584,0.077945850789547,0.367824077606201,-0.950141310691834,0.0858648642897606,0.299764394760132,-0.43142893910408,0.89804607629776,0.0859201103448868,-0.0328326486051083,0.999426066875458,-0.00833906885236502,-0.926622807979584,0.077945850789547,0.367824077606201,-0.3026182949543,0.868030786514282,0.393630176782608,-0.0328326486051083,0.999426066875458,-0.00833906885236502,-0.3026182949543,0.868030786514282,0.393630176782608,-0.43142893910408,0.89804607629776,0.0859201103448868,-0.0292991660535336,0.998341977596283,-0.0495451018214226,0.0376791208982468,-0.999200820922852,-0.0133424969390035,0.853942632675171,-0.0790887847542763,-0.514321804046631,0.55309009552002,-0.0375496447086334,-0.832274854183197,0.0544666200876236,-0.995275557041168,0.0803742855787277,-0.935468256473541,-0.141669303178787,0.323773056268692,-0.759934961795807,-0.0934303477406502,0.643249273300171,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.431278675794601,-0.842288970947266,0.32333892583847,0.0274789892137051,-0.993823885917664,0.1075129956007,0.0735766962170601,-0.984188914299011,0.16111695766449,0.701071739196777,0.635509729385376,0.323459267616272,0.02473427914083,0.999283850193024,0.0286379940807819,-0.154998734593391,0.928965926170349,-0.336151152849197,
- 0.159237131476402,0.738908231258392,-0.654719889163971,0.0289316978305578,0.999580681324005,-0.00113030429929495,0.840304315090179,0.0616117268800735,-0.538602471351624,0.83146458864212,0.0347019284963608,-0.554492890834808,0.0340915955603123,0.999373257160187,-0.00952957943081856,0.840304315090179,0.0616117268800735,-0.538602471351624,0.853942632675171,-0.0790887847542763,-0.514321804046631,0.814139664173126,-0.0681404024362564,-0.576657176017761,0.821128785610199,0.00833079591393471,-0.570682108402252,0.83146458864212,0.0347019284963608,-0.554492890834808,0.00911045633256435,0.97787082195282,-0.209011122584343,-0.0286871865391731,0.999588489532471,-0.000150019564898685,-0.507737457752228,0.8530233502388,-0.120639659464359,0.998501837253571,0.0533250831067562,-0.0122681008651853,0.0217013955116272,0.999763429164886,-0.00151492818258703,0.0239141508936882,0.978452384471893,-0.205083101987839,0.998103260993958,0.0562513098120689,0.0250126756727695,0.997492611408234,-0.0687863305211067,-0.0166392363607883,0.995818257331848,-0.0106716230511665,0.0907308757305145,0.713850915431976,-0.671023964881897,0.200358808040619,0.942940950393677,0.218931689858437,0.250861167907715,0.997266709804535,0.00203429954126477,-0.0738577470183373,0.996209442615509,-0.0650518089532852,-0.0577487275004387,0.971089243888855,-0.045189093798399,-0.23440058529377,0.986994802951813,0.00502565782517195,-0.160673648118973,0.942940950393677,0.218931689858437,0.250861167907715,0.971089243888855,-0.045189093798399,-0.23440058529377,0.983885288238525,-0.0680312067270279,-0.165352687239647,0.0902620181441307,0.789596140384674,0.606951892375946,0.00754115171730518,0.999483942985535,0.03122553601861,-0.0106978770345449,0.999180316925049,0.0390427261590958,0.0591892637312412,0.789011836051941,0.611520111560822,0.00390633195638657,0.999984085559845,-0.00407623406499624,0.0902620181441307,0.789596140384674,0.606951892375946,0.0591892637312412,0.789011836051941,0.611520111560822,-0.0177194159477949,0.9998419880867,-0.00139277370180935,0.521524906158447,0.83491450548172,-0.175868019461632,
- 0.0162361823022366,0.999568998813629,-0.0244617909193039,-0.0138239422813058,0.998709082603455,-0.0488771386444569,-0.0458711758255959,0.998544573783875,-0.0283652171492577,-0.927105128765106,0.0850322842597961,0.365028291940689,-0.926622807979584,0.077945850789547,0.367824077606201,-0.0328326486051083,0.999426066875458,-0.00833906885236502,-0.923721611499786,-0.0738029927015305,0.375887632369995,-0.949220955371857,-0.143127366900444,0.280167937278748,-0.431278675794601,-0.842288970947266,0.32333892583847,-0.950141310691834,0.0858648642897606,0.299764394760132,-0.951460123062134,-0.0209709648042917,0.307056754827499,-0.976897299289703,-0.0799339264631271,0.198197320103645,-0.977843821048737,0.0696736052632332,0.197400778532028,-0.0172505080699921,0.999847888946533,0.00256802793592215,-0.977843821048737,0.0696736052632332,0.197400778532028,-0.972208380699158,0.0697132050991058,0.223497077822685,-0.0106978770345449,0.999180316925049,0.0390427261590958,-0.0138239422813058,0.998709082603455,-0.0488771386444569,0.0198671706020832,0.999761521816254,-0.00906575750559568,0.521524906158447,0.83491450548172,-0.175868019461632,-0.017300808802247,0.999736726284027,-0.0150717487558723,0.00911045633256435,0.97787082195282,-0.209011122584343,-0.507737457752228,0.8530233502388,-0.120639659464359,-0.507737457752228,0.8530233502388,-0.120639659464359,-0.849923431873322,0.516120195388794,-0.106067262589931,-0.998129367828369,0.0600522272288799,-0.0114677343517542,-0.017300808802247,0.999736726284027,-0.0150717487558723,-0.849923431873322,0.516120195388794,-0.106067262589931,-0.998465836048126,0.0553349256515503,0.00201057083904743,-0.998129367828369,0.0600522272288799,-0.0114677343517542,-0.997780323028564,0.0409077145159245,0.0525453835725784,-0.998465836048126,0.0553349256515503,0.00201057083904743,-0.849923431873322,0.516120195388794,-0.106067262589931,-0.0286871865391731,0.999588489532471,-0.000150019564898685,-0.997780323028564,0.0409077145159245,0.0525453835725784,-0.849923431873322,0.516120195388794,-0.106067262589931,-0.507737457752228,0.8530233502388,-0.120639659464359,
- 0.00911045633256435,0.97787082195282,-0.209011122584343,0.0239141508936882,0.978452384471893,-0.205083101987839,0.0217013955116272,0.999763429164886,-0.00151492818258703,-0.0286871865391731,0.999588489532471,-0.000150019564898685,-0.0840605199337006,0.981995820999146,-0.169168844819069,0.0100387120619416,0.999002933502197,0.0435001738369465,-0.356537461280823,0.93182247877121,0.067732959985733,-0.126420691609383,0.9718878865242,-0.198625072836876,-0.0840605199337006,0.981995820999146,-0.169168844819069,-0.356537461280823,0.93182247877121,0.067732959985733,-0.0458711758255959,0.998544573783875,-0.0283652171492577,-0.126420691609383,0.9718878865242,-0.198625072836876,-0.356537461280823,0.93182247877121,0.067732959985733,-0.356537461280823,0.93182247877121,0.067732959985733,-0.625887334346771,0.728091239929199,0.279550164937973,-0.927105128765106,0.0850322842597961,0.365028291940689,-0.0458711758255959,0.998544573783875,-0.0283652171492577,-0.963748037815094,0.00764299323782325,0.266704380512238,-0.927105128765106,0.0850322842597961,0.365028291940689,-0.625887334346771,0.728091239929199,0.279550164937973,-0.625887334346771,0.728091239929199,0.279550164937973,-0.894926190376282,-0.0622188970446587,0.441854864358902,-0.963748037815094,0.00764299323782325,0.266704380512238,-0.625887334346771,0.728091239929199,0.279550164937973,-0.770313262939453,0.0190922152251005,0.637379765510559,-0.894926190376282,-0.0622188970446587,0.441854864358902,-0.834077179431915,0.0952496975660324,0.543362379074097,-0.770313262939453,0.0190922152251005,0.637379765510559,-0.625887334346771,0.728091239929199,0.279550164937973,-0.00997164100408554,0.999661862850189,0.0240161884576082,-0.834077179431915,0.0952496975660324,0.543362379074097,-0.625887334346771,0.728091239929199,0.279550164937973,-0.356537461280823,0.93182247877121,0.067732959985733,0.0100387120619416,0.999002933502197,0.0435001738369465,-0.00997164100408554,0.999661862850189,0.0240161884576082,-0.356537461280823,0.93182247877121,0.067732959985733,0.0289316978305578,0.999580681324005,-0.00113030429929495,
- 0.02473427914083,0.999283850193024,0.0286379940807819,0.701071739196777,0.635509729385376,0.323459267616272,0.701071739196777,0.635509729385376,0.323459267616272,0.840304315090179,0.0616117268800735,-0.538602471351624,0.0289316978305578,0.999580681324005,-0.00113030429929495,0.701071739196777,0.635509729385376,0.323459267616272,0.970207870006561,0.0901778042316437,0.224865883588791,0.840304315090179,0.0616117268800735,-0.538602471351624,0.159237131476402,0.738908231258392,-0.654719889163971,0.425579160451889,0.0636287480592728,-0.902681410312653,0.970207870006561,0.0901778042316437,0.224865883588791,0.701071739196777,0.635509729385376,0.323459267616272,-0.154998734593391,0.928965926170349,-0.336151152849197,0.02473427914083,0.999283850193024,0.0286379940807819,0.0100387120619416,0.999002933502197,0.0435001738369465,-0.0840605199337006,0.981995820999146,-0.169168844819069,0.159237131476402,0.738908231258392,-0.654719889163971,-0.154998734593391,0.928965926170349,-0.336151152849197,0.00123342918232083,0.998655796051025,-0.0518164560198784,0.907378315925598,0.0542788542807102,-0.416795313358307,0.889972567558289,-0.0652766674757004,-0.451317697763443,0.55309009552002,-0.0375496447086334,-0.832274854183197,0.425579160451889,0.0636287480592728,-0.902681410312653,0.998357713222504,-0.0545647963881493,-0.0174551922827959,0.995818257331848,-0.0106716230511665,0.0907308757305145,0.998103260993958,0.0562513098120689,0.0250126756727695,0.997808396816254,0.0628887489438057,-0.0205797534435987,0.00980534870177507,-0.999700665473938,-0.0224154833704233,0.998357713222504,-0.0545647963881493,-0.0174551922827959,0.998903572559357,-0.0449700392782688,0.0130077311769128,0.0106934932991862,-0.999615490436554,0.0255850125104189,-0.000641944468952715,-0.955995142459869,0.293381690979004,0.0109745794907212,-0.948499023914337,0.31659010052681,0.00980534870177507,-0.999700665473938,-0.0224154833704233,-0.0270027499645948,-0.998035669326782,-0.0565300136804581,-0.0223349202424288,-0.993022739887238,0.115788489580154,0.0165821462869644,-0.998200297355652,0.0576302707195282,
- 0.0109745794907212,-0.948499023914337,0.31659010052681,-0.000641944468952715,-0.955995142459869,0.293381690979004,0.0116610107943416,-0.998866140842438,-0.0461553633213043,0.996209442615509,-0.0650518089532852,-0.0577487275004387,0.997492611408234,-0.0687863305211067,-0.0166392363607883,0.0165821462869644,-0.998200297355652,0.0576302707195282,0.997492611408234,-0.0687863305211067,-0.0166392363607883,0.998501837253571,0.0533250831067562,-0.0122681008651853,0.998103260993958,0.0562513098120689,0.0250126756727695,0.995818257331848,-0.0106716230511665,0.0907308757305145,-0.0172505080699921,0.999847888946533,0.00256802793592215,0.0198671706020832,0.999761521816254,-0.00906575750559568,-0.0138239422813058,0.998709082603455,-0.0488771386444569,-0.0292991660535336,0.998341977596283,-0.0495451018214226,0.977139949798584,0.0648734718561172,-0.202456831932068,0.0198671706020832,0.999761521816254,-0.00906575750559568,0.0241854228079319,0.999663949012756,0.00933660566806793,0.982896447181702,0.0420565940439701,-0.179292798042297,0.981602370738983,3.24414249917027e-005,-0.190936610102654,0.974318027496338,0.074189156293869,-0.212603971362114,0.977139949798584,0.0648734718561172,-0.202456831932068,0.975197851657867,-0.0771328285336494,-0.207460537552834,0.932958483695984,0.0551193989813328,-0.355739206075668,0.935888350009918,-0.0669789537787437,-0.345870971679688,0.889972567558289,-0.0652766674757004,-0.451317697763443,0.907378315925598,0.0542788542807102,-0.416795313358307,0.907378315925598,0.0542788542807102,-0.416795313358307,0.00123342918232083,0.998655796051025,-0.0518164560198784,0.0162361823022366,0.999568998813629,-0.0244617909193039,0.932958483695984,0.0551193989813328,-0.355739206075668,-0.0458711758255959,0.998544573783875,-0.0283652171492577,0.00123342918232083,0.998655796051025,-0.0518164560198784,-0.126420691609383,0.9718878865242,-0.198625072836876,-0.850563406944275,-0.0737104117870331,0.520681083202362,-0.836075305938721,-0.0722560957074165,0.543835580348969,-0.834077179431915,0.0952496975660324,0.543362379074097,
- -0.846792995929718,0.0925378426909447,0.52381157875061,-0.850563406944275,-0.0737104117870331,0.520681083202362,-0.0246894489973783,-0.999618232250214,-0.0123983873054385,-0.0105587178841233,-0.99990051984787,0.00935124419629574,-0.836075305938721,-0.0722560957074165,0.543835580348969,-0.0246894489973783,-0.999618232250214,-0.0123983873054385,0.0181005578488112,-0.999214172363281,-0.0352609604597092,0.0376791208982468,-0.999200820922852,-0.0133424969390035,-0.0105587178841233,-0.99990051984787,0.00935124419629574,0.0735766962170601,-0.984188914299011,0.16111695766449,0.0274789892137051,-0.993823885917664,0.1075129956007,0.0376791208982468,-0.999200820922852,-0.0133424969390035,0.0544666200876236,-0.995275557041168,0.0803742855787277,-0.00627070758491755,-0.999863028526306,0.0153174065053463,0.0735766962170601,-0.984188914299011,0.16111695766449,0.0544666200876236,-0.995275557041168,0.0803742855787277,0.0262962114065886,-0.999647617340088,0.00364057859405875,-0.00759575562551618,-0.999629557132721,0.0261355228722095,-0.00627070758491755,-0.999863028526306,0.0153174065053463,0.0262962114065886,-0.999647617340088,0.00364057859405875,0.0428633615374565,-0.997852981090546,0.0495174825191498,0.00888090301305056,-0.996775984764099,0.0797416567802429,0.00888090301305056,-0.996775984764099,0.0797416567802429,-0.923175930976868,-0.0909258052706718,0.373468399047852,-0.923721611499786,-0.0738029927015305,0.375887632369995,-0.00759575562551618,-0.999629557132721,0.0261355228722095,-0.923721611499786,-0.0738029927015305,0.375887632369995,-0.927105128765106,0.0850322842597961,0.365028291940689,-0.963748037815094,0.00764299323782325,0.266704380512238,-0.949220955371857,-0.143127366900444,0.280167937278748,-0.963748037815094,0.00764299323782325,0.266704380512238,-0.894926190376282,-0.0622188970446587,0.441854864358902,-0.935468256473541,-0.141669303178787,0.323773056268692,-0.949220955371857,-0.143127366900444,0.280167937278748,-0.894926190376282,-0.0622188970446587,0.441854864358902,-0.770313262939453,0.0190922152251005,0.637379765510559,
- -0.759934961795807,-0.0934303477406502,0.643249273300171,-0.935468256473541,-0.141669303178787,0.323773056268692,0.0221307631582022,0.999474406242371,0.0236890260130167,0.0230206903070211,0.999487221240997,-0.0222557634115219,-0.017300808802247,0.999736726284027,-0.0150717487558723,-0.0185089968144894,0.999735236167908,0.0136666893959045,0.997808396816254,0.0628887489438057,-0.0205797534435987,0.0230206903070211,0.999487221240997,-0.0222557634115219,0.0221307631582022,0.999474406242371,0.0236890260130167,0.998502314090729,0.0523300729691982,0.0159575045108795,0.998357713222504,-0.0545647963881493,-0.0174551922827959,0.997808396816254,0.0628887489438057,-0.0205797534435987,0.998502314090729,0.0523300729691982,0.0159575045108795,0.998903572559357,-0.0449700392782688,0.0130077311769128,0.996209442615509,-0.0650518089532852,-0.0577487275004387,0.997266709804535,0.00203429954126477,-0.0738577470183373,0.998347043991089,0.0414099544286728,-0.0398557484149933,0.998501837253571,0.0533250831067562,-0.0122681008651853,0.997492611408234,-0.0687863305211067,-0.0166392363607883,0.998347043991089,0.0414099544286728,-0.0398557484149933,0.0129880616441369,0.999913692474365,-0.00196181633509696,0.0217013955116272,0.999763429164886,-0.00151492818258703,0.998501837253571,0.0533250831067562,-0.0122681008651853,-0.0286871865391731,0.999588489532471,-0.000150019564898685,0.0217013955116272,0.999763429164886,-0.00151492818258703,0.0129880616441369,0.999913692474365,-0.00196181633509696,0.00390633195638657,0.999984085559845,-0.00407623406499624,-0.0177194159477949,0.9998419880867,-0.00139277370180935,0.975197851657867,-0.0771328285336494,-0.207460537552834,0.977139949798584,0.0648734718561172,-0.202456831932068,0.982896447181702,0.0420565940439701,-0.179292798042297,0.986994802951813,0.00502565782517195,-0.160673648118973,0.983885288238525,-0.0680312067270279,-0.165352687239647,0.0105938035994768,-0.999228775501251,-0.0378105454146862,0.975197851657867,-0.0771328285336494,-0.207460537552834,0.983885288238525,-0.0680312067270279,-0.165352687239647,
- 0.0297034531831741,-0.999246597290039,0.0249782390892506,-0.0317303352057934,-0.999051034450531,-0.0298378225415945,0.0105938035994768,-0.999228775501251,-0.0378105454146862,0.0297034531831741,-0.999246597290039,0.0249782390892506,-0.015422691591084,-0.99923837184906,0.035844299942255,-0.976897299289703,-0.0799339264631271,0.198197320103645,-0.0317303352057934,-0.999051034450531,-0.0298378225415945,-0.015422691591084,-0.99923837184906,0.035844299942255,-0.971565306186676,-0.0691605806350708,0.226445883512497,-0.977843821048737,0.0696736052632332,0.197400778532028,-0.976897299289703,-0.0799339264631271,0.198197320103645,-0.971565306186676,-0.0691605806350708,0.226445883512497,-0.972208380699158,0.0697132050991058,0.223497077822685,-0.926622807979584,0.077945850789547,0.367824077606201,-0.927105128765106,0.0850322842597961,0.365028291940689,-0.923721611499786,-0.0738029927015305,0.375887632369995,-0.923175930976868,-0.0909258052706718,0.373468399047852,-0.0328326486051083,0.999426066875458,-0.00833906885236502,0.0162361823022366,0.999568998813629,-0.0244617909193039,0.00123342918232083,0.998655796051025,-0.0518164560198784,-0.0458711758255959,0.998544573783875,-0.0283652171492577,-0.0138239422813058,0.998709082603455,-0.0488771386444569,0.0162361823022366,0.999568998813629,-0.0244617909193039,-0.0328326486051083,0.999426066875458,-0.00833906885236502,-0.0292991660535336,0.998341977596283,-0.0495451018214226,0.981602370738983,3.24414249917027e-005,-0.190936610102654,0.935888350009918,-0.0669789537787437,-0.345870971679688,0.932958483695984,0.0551193989813328,-0.355739206075668,0.974318027496338,0.074189156293869,-0.212603971362114,0.0428633615374565,-0.997852981090546,0.0495174825191498,0.935888350009918,-0.0669789537787437,-0.345870971679688,0.981602370738983,3.24414249917027e-005,-0.190936610102654,0.0420630723237991,-0.999097466468811,0.00590585079044104,0.00888090301305056,-0.996775984764099,0.0797416567802429,0.0428633615374565,-0.997852981090546,0.0495174825191498,0.0420630723237991,-0.999097466468811,0.00590585079044104,
- -0.0373324230313301,-0.996032357215881,-0.0807839930057526,-0.951460123062134,-0.0209709648042917,0.307056754827499,-0.923175930976868,-0.0909258052706718,0.373468399047852,0.00888090301305056,-0.996775984764099,0.0797416567802429,-0.0373324230313301,-0.996032357215881,-0.0807839930057526,-0.926622807979584,0.077945850789547,0.367824077606201,-0.923175930976868,-0.0909258052706718,0.373468399047852,-0.951460123062134,-0.0209709648042917,0.307056754827499,-0.950141310691834,0.0858648642897606,0.299764394760132,0.0241854228079319,0.999663949012756,0.00933660566806793,0.0198671706020832,0.999761521816254,-0.00906575750559568,-0.0172505080699921,0.999847888946533,0.00256802793592215,-0.0106978770345449,0.999180316925049,0.0390427261590958,0.00754115171730518,0.999483942985535,0.03122553601861,0.0289316978305578,0.999580681324005,-0.00113030429929495,-0.00997164100408554,0.999661862850189,0.0240161884576082,0.0100387120619416,0.999002933502197,0.0435001738369465,0.02473427914083,0.999283850193024,0.0286379940807819,0.840304315090179,0.0616117268800735,-0.538602471351624,0.970207870006561,0.0901778042316437,0.224865883588791,0.853942632675171,-0.0790887847542763,-0.514321804046631,-0.0105587178841233,-0.99990051984787,0.00935124419629574,0.0376791208982468,-0.999200820922852,-0.0133424969390035,0.0274789892137051,-0.993823885917664,0.1075129956007,-0.834077179431915,0.0952496975660324,0.543362379074097,-0.836075305938721,-0.0722560957074165,0.543835580348969,-0.759934961795807,-0.0934303477406502,0.643249273300171,-0.770313262939453,0.0190922152251005,0.637379765510559,-0.0270027499645948,-0.998035669326782,-0.0565300136804581,0.00980534870177507,-0.999700665473938,-0.0224154833704233,0.0106934932991862,-0.999615490436554,0.0255850125104189,-0.0279011055827141,-0.999261021614075,0.0264361090958118,-0.995314121246338,-0.0955512449145317,-0.0148262828588486,-0.0270027499645948,-0.998035669326782,-0.0565300136804581,-0.0279011055827141,-0.999261021614075,0.0264361090958118,-0.995313286781311,-0.0843066349625587,0.047370333224535,
- -0.998129367828369,0.0600522272288799,-0.0114677343517542,-0.995314121246338,-0.0955512449145317,-0.0148262828588486,-0.995313286781311,-0.0843066349625587,0.047370333224535,-0.997723400592804,0.0488404557108879,0.0465034022927284,-0.997925758361816,0.061370812356472,-0.0194376222789288,-0.996702551841736,-0.0810491293668747,0.00388062745332718,-0.995035529136658,-0.0856860429048538,0.0506172180175781,-0.997780323028564,0.0409077145159245,0.0525453835725784,-0.996702551841736,-0.0810491293668747,0.00388062745332718,-0.0296486858278513,-0.998540699481964,-0.0451373681426048,-0.0223349202424288,-0.993022739887238,0.115788489580154,-0.995035529136658,-0.0856860429048538,0.0506172180175781,-0.0296486858278513,-0.998540699481964,-0.0451373681426048,0.0116610107943416,-0.998866140842438,-0.0461553633213043,0.0165821462869644,-0.998200297355652,0.0576302707195282,-0.0223349202424288,-0.993022739887238,0.115788489580154,0.102597631514072,0,-0.994722902774811,0.00311540206894279,0.000252859521424398,-0.999995112419128,0.00236705550923944,0.000256459519732744,-0.999997198581696,0.114830613136292,0,-0.993385076522827,0.254940211772919,0,-0.966956794261932,0.102597631514072,0,-0.994722902774811,0.114830613136292,0,-0.993385076522827,0.255085408687592,0,-0.966918528079987,0.48313382267952,0,-0.87554657459259,0.346270978450775,0,-0.938134491443634,0.346091717481613,0,-0.938200712203979,0.471627086400986,0,-0.881798088550568,0.570583343505859,4.8387560127594e-006,-0.821239769458771,0.48313382267952,0,-0.87554657459259,0.471627086400986,0,-0.881798088550568,0.570528924465179,4.83284975416609e-006,-0.821277499198914,0.895806133747101,0,-0.444444864988327,0.816264092922211,0,-0.577679038047791,0.816179275512695,0,-0.5777987241745,0.890233278274536,0,-0.455504864454269,0.935441493988037,0,-0.353481471538544,0.895806133747101,0,-0.444444864988327,0.890233278274536,0,-0.455504864454269,0.935437738895416,0,-0.353491485118866,1,0,0,0.999036371707916,0,-0.0438897795975208,0.999082267284393,-0.00107517384458333,-0.0428198464214802,0.999985039234161,-4.89713092974853e-005,-0.00546114332973957,
- 0.999901115894318,-0.000126420491142198,-0.0140617080032825,1,0,0,0.999985039234161,-4.89713092974853e-005,-0.00546114332973957,0.999895989894867,-0.000129675419884734,-0.0144237531349063,0.999895930290222,-0.000129675434436649,-0.0144237531349063,0.999901115894318,-0.000126420491142198,-0.0140617080032825,0.999985039234161,-4.89713092974853e-005,-0.00546114332973957,0.966514706611633,0,-0.256611078977585,0.935441493988037,0,-0.353481471538544,0.935437738895416,0,-0.353491485118866,0.969734072685242,0.000200577735085972,-0.244163677096367,0.993964016437531,0,-0.109706982970238,0.966514706611633,0,-0.256611078977585,0.969734072685242,0.000200577735085972,-0.244163677096367,0.993789434432983,-0.000986661412753165,-0.111272595822811,0.346270978450775,0,-0.938134491443634,0.254940211772919,0,-0.966956794261932,0.255085408687592,0,-0.966918528079987,0.346091717481613,0,-0.938200712203979,0.648802161216736,3.13668419948954e-006,-0.76095712184906,0.570583343505859,4.8387560127594e-006,-0.821239769458771,0.570528924465179,4.83284975416609e-006,-0.821277499198914,0.659157931804657,-0.000183253709110431,-0.752004563808441,0.758179783821106,-1.21516745821282e-006,-0.652045547962189,0.648802161216736,3.13668419948954e-006,-0.76095712184906,0.659157931804657,-0.000183253709110431,-0.752004563808441,0.758582592010498,-0.000100957746326458,-0.651576995849609,0.816264092922211,0,-0.577679038047791,0.758179783821106,-1.21516745821282e-006,-0.652045547962189,0.758582592010498,-0.000100957746326458,-0.651576995849609,0.816179275512695,0,-0.5777987241745,0.999036371707916,0,-0.0438897795975208,0.993964016437531,0,-0.109706982970238,0.993789434432983,-0.000986661412753165,-0.111272595822811,0.999082267284393,-0.00107517384458333,-0.0428198464214802,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,-6.69820607868132e-008,0,-1,0,0,-1,0,0,-1,-6.55336265253936e-008,0,-1,-4.49616841535772e-008,0,-1,-6.69820607868132e-008,0,-1,-6.55336265253936e-008,0,-1,-4.25545430005059e-008,0,-1,6.59049419482471e-008,0,-1,-4.49616841535772e-008,
- 0,-1,-4.25545430005059e-008,0,-1,6.59062209251715e-008,0,-1,3.11535082175851e-008,0,-1,6.59049419482471e-008,0,-1,6.59062209251715e-008,0,-1,3.12322221418526e-008,0,-1,3.17546380301792e-008,0,-1,3.11535082175851e-008,0,-1,3.12322221418526e-008,0,-1,3.18641077967641e-008,0,-1,3.17546380301792e-008,0,-1,3.18641077967641e-008,0,-1,2.24707736862229e-008,0,-1,2.14825384148298e-008,0,-1,0,0,-1,2.14825384148298e-008,0,-1,2.24707736862229e-008,0,-1,0,0,-0.999999940395355,-6.48190834340312e-008,0,-1,0,0,-1,0,0,-0.999999940395355,-6.44976125840913e-008,0,-1,-1.51535228809507e-008,0,-0.999999940395355,-6.48190834340312e-008,0,-0.999999940395355,-6.44976125840913e-008,0,-1,-1.50559937850403e-008,0,-1,-1.51535228809507e-008,0,-1,-1.50559937850403e-008,0,-1,4.85321791643401e-008,0,-1,4.87044324870567e-008,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,-4.30754951707968e-008,0,-1,0,0,-1,0,0,-1,-4.42162040314997e-008,0,-1,-4.36615508192517e-008,0,-1,-4.30754951707968e-008,0,-1,-4.42162040314997e-008,0,-1,-4.4543721600121e-008,0,-1,4.85321791643401e-008,0,-1,-4.36615508192517e-008,0,-1,-4.4543721600121e-008,0,-1,4.87044324870567e-008,0.0103867053985596,0.998716771602631,0.0495678894221783,0.991324961185455,0.101599559187889,0.0833807587623596,0.994712233543396,0.1024189889431,-0.00760563043877482,0.0134531194344163,0.999447166919708,-0.0304036065936089,-0.0255619380623102,0.019792390987277,0.99947726726532,0.0103867053985596,0.998716771602631,0.0495678894221783,-0.0339009165763855,0.998515903949738,0.0426226817071438,-0.0833844691514969,0.0230762846767902,0.996250212192535,0.991324961185455,0.101599559187889,0.0833807587623596,-0.0255619380623102,0.019792390987277,0.99947726726532,-0.00834035687148571,-0.0227894466370344,0.99970555305481,0.934249877929688,-0.349320352077484,0.0717804431915283,0.934249877929688,-0.349320352077484,0.0717804431915283,-0.00834035687148571,-0.0227894466370344,0.99970555305481,-0.00932272244244814,-0.0421289764344692,0.999068677425385,0.694640874862671,-0.71711266040802,0.0567762292921543,
- -0.999753892421722,0.0152916703373194,0.0160748455673456,-0.0339009165763855,0.998515903949738,0.0426226817071438,-0.0332758836448193,0.999069809913635,-0.0274280309677124,-0.995852649211884,0.0149109568446875,-0.0897503048181534,-0.0833844691514969,0.0230762846767902,0.996250212192535,-0.999753892421722,0.0152916703373194,0.0160748455673456,-0.999541282653809,-0.025998443365097,0.0155375497415662,-0.0843327715992928,-0.0278118904680014,0.996049463748932,0.0134531194344163,0.999447166919708,-0.0304036065936089,0.0523192435503006,0.0425862148404121,-0.997721910476685,-0.00559711502864957,0.0453531742095947,-0.998955368995667,-0.0332758836448193,0.999069809913635,-0.0274280309677124,0.0523192435503006,0.0425862148404121,-0.997721910476685,0.994712233543396,0.1024189889431,-0.00760563043877482,0.936994314193726,-0.349229902029037,-0.00895767752081156,0.0693351775407791,-0.00233497703447938,-0.997590601444244,0.0693351775407791,-0.00233497703447938,-0.997590601444244,0.936994314193726,-0.349229902029037,-0.00895767752081156,0.696929514408112,-0.716912806034088,-0.018030196428299,0.068301722407341,-0.0217885263264179,-0.997426748275757,-0.995852649211884,0.0149109568446875,-0.0897503048181534,-0.00559711502864957,0.0453531742095947,-0.998955368995667,-0.00658393232151866,-0.00754186604171991,-0.999949872493744,-0.995649337768555,-0.0250251647084951,-0.089755579829216,-0.0843327715992928,-0.0278118904680014,0.996049463748932,-0.0434881374239922,-0.998745143413544,0.0248350072652102,0.694640874862671,-0.71711266040802,0.0567762292921543,-0.00932272244244814,-0.0421289764344692,0.999068677425385,-0.0434881374239922,-0.998745143413544,0.0248350072652102,-0.999541282653809,-0.025998443365097,0.0155375497415662,-0.995649337768555,-0.0250251647084951,-0.089755579829216,-0.0409218445420265,-0.998125314712524,-0.0455098934471607,-0.0409218445420265,-0.998125314712524,-0.0455098934471607,-0.00658393232151866,-0.00754186604171991,-0.999949872493744,0.068301722407341,-0.0217885263264179,-0.997426748275757,0.696929514408112,-0.716912806034088,-0.018030196428299,
- -0.0339009165763855,0.998515903949738,0.0426226817071438,0.0103867053985596,0.998716771602631,0.0495678894221783,0.0134531194344163,0.999447166919708,-0.0304036065936089,-0.0332758836448193,0.999069809913635,-0.0274280309677124,-0.995852649211884,0.0149109568446875,-0.0897503048181534,-0.995649337768555,-0.0250251647084951,-0.089755579829216,-0.999541282653809,-0.025998443365097,0.0155375497415662,-0.999753892421722,0.0152916703373194,0.0160748455673456,0.696929514408112,-0.716912806034088,-0.018030196428299,0.936994314193726,-0.349229902029037,-0.00895767752081156,0.934249877929688,-0.349320352077484,0.0717804431915283,0.694640874862671,-0.71711266040802,0.0567762292921543,-0.0434881374239922,-0.998745143413544,0.0248350072652102,-0.0409218445420265,-0.998125314712524,-0.0455098934471607,0.696929514408112,-0.716912806034088,-0.018030196428299,0.694640874862671,-0.71711266040802,0.0567762292921543,0.991324961185455,0.101599559187889,0.0833807587623596,0.934249877929688,-0.349320352077484,0.0717804431915283,0.936994314193726,-0.349229902029037,-0.00895767752081156,0.994712233543396,0.1024189889431,-0.00760563043877482,0.0693351775407791,-0.00233497703447938,-0.997590601444244,0.068301722407341,-0.0217885263264179,-0.997426748275757,-0.00658393232151866,-0.00754186604171991,-0.999949872493744,-0.00559711502864957,0.0453531742095947,-0.998955368995667,0.0523192435503006,0.0425862148404121,-0.997721910476685,-0.00834035687148571,-0.0227894466370344,0.99970555305481,-0.0255619380623102,0.019792390987277,0.99947726726532,-0.0833844691514969,0.0230762846767902,0.996250212192535,-0.0843327715992928,-0.0278118904680014,0.996049463748932,-0.00932272244244814,-0.0421289764344692,0.999068677425385,0.0103867053985596,0.998716771602631,0.0495678894221783,-0.0255619380623102,0.019792390987277,0.99947726726532,0.991324961185455,0.101599559187889,0.0833807587623596,-0.999753892421722,0.0152916703373194,0.0160748455673456,-0.0833844691514969,0.0230762846767902,0.996250212192535,-0.0339009165763855,0.998515903949738,0.0426226817071438,
- 0.0134531194344163,0.999447166919708,-0.0304036065936089,0.994712233543396,0.1024189889431,-0.00760563043877482,0.0523192435503006,0.0425862148404121,-0.997721910476685,-0.995852649211884,0.0149109568446875,-0.0897503048181534,-0.0332758836448193,0.999069809913635,-0.0274280309677124,-0.00559711502864957,0.0453531742095947,-0.998955368995667,-0.0843327715992928,-0.0278118904680014,0.996049463748932,-0.999541282653809,-0.025998443365097,0.0155375497415662,-0.0434881374239922,-0.998745143413544,0.0248350072652102,-0.0409218445420265,-0.998125314712524,-0.0455098934471607,-0.995649337768555,-0.0250251647084951,-0.089755579829216,-0.00658393232151866,-0.00754186604171991,-0.999949872493744,0.0165473595261574,0.999098598957062,0.0390894077718258,0.993701219558716,0.100423328578472,-0.0497287921607494,0.985222995281219,0.101438745856285,-0.13800622522831,0.00888230744749308,0.9991375207901,-0.0405639000236988,0.0628433749079704,0.028684850782156,0.997611045837402,0.0165473595261574,0.999098598957062,0.0390894077718258,-0.0280734952539206,0.998947441577911,0.0362754762172699,0.00618563359603286,0.0323609821498394,0.999457180500031,0.993701219558716,0.100423328578472,-0.0497287921607494,0.0628433749079704,0.028684850782156,0.997611045837402,0.0805244222283363,-0.0150855137035251,0.996638476848602,0.937210917472839,-0.345354676246643,-0.0486386641860008,0.937210917472839,-0.345354676246643,-0.0486386641860008,0.0805244222283363,-0.0150855137035251,0.996638476848602,0.0793505609035492,-0.0344477146863937,0.996251404285431,0.712421059608459,-0.701086163520813,-0.0305708460509777,-0.988888323307037,0.0158140640705824,0.147817224264145,-0.0280734952539206,0.998947441577911,0.0362754762172699,-0.0359936766326427,0.998894393444061,-0.0302412491291761,-0.998988270759583,0.0145923951640725,0.0425386689603329,0.00618563359603286,0.0323609821498394,0.999457180500031,-0.988888323307037,0.0158140640705824,0.147817224264145,-0.98869925737381,-0.0259428340941668,0.14765065908432,0.00533790001645684,-0.0193676501512527,0.999798178672791,
- 0.00888230744749308,0.9991375207901,-0.0405639000236988,-0.119586281478405,0.0349476970732212,-0.992208540439606,-0.176402285695076,0.0378169491887093,-0.983591496944427,-0.0359936766326427,0.998894393444061,-0.0302412491291761,-0.119586281478405,0.0349476970732212,-0.992208540439606,0.985222995281219,0.101438745856285,-0.13800622522831,0.92919933795929,-0.346118986606598,-0.129576787352562,-0.102038852870464,-0.0112997032701969,-0.994716286659241,-0.102038852870464,-0.0112997032701969,-0.994716286659241,0.92919933795929,-0.346118986606598,-0.129576787352562,0.704619228839874,-0.70175039768219,-0.105157501995564,-0.103339016437531,-0.0308192409574986,-0.994168639183044,-0.998988270759583,0.0145923951640725,0.0425386689603329,-0.176402285695076,0.0378169491887093,-0.983591496944427,-0.17752580344677,-0.0157601591199636,-0.983989953994751,-0.9987433552742,-0.0259698554873466,0.0428621843457222,0.00533790001645684,-0.0193676501512527,0.999798178672791,-0.0373062789440155,-0.998555958271027,0.0386544838547707,0.712421059608459,-0.701086163520813,-0.0305708460509777,0.0793505609035492,-0.0344477146863937,0.996251404285431,-0.0373062789440155,-0.998555958271027,0.0386544838547707,-0.98869925737381,-0.0259428340941668,0.14765065908432,-0.9987433552742,-0.0259698554873466,0.0428621843457222,-0.0438992492854595,-0.998556613922119,-0.0309436991810799,-0.0438992492854595,-0.998556613922119,-0.0309436991810799,-0.17752580344677,-0.0157601591199636,-0.983989953994751,-0.103339016437531,-0.0308192409574986,-0.994168639183044,0.704619228839874,-0.70175039768219,-0.105157501995564,-0.0280734952539206,0.998947441577911,0.0362754762172699,0.0165473595261574,0.999098598957062,0.0390894077718258,0.00888230744749308,0.9991375207901,-0.0405639000236988,-0.0359936766326427,0.998894393444061,-0.0302412491291761,-0.998988270759583,0.0145923951640725,0.0425386689603329,-0.9987433552742,-0.0259698554873466,0.0428621843457222,-0.98869925737381,-0.0259428340941668,0.14765065908432,-0.988888323307037,0.0158140640705824,0.147817224264145,0.704619228839874,-0.70175039768219,-0.105157501995564,
- 0.92919933795929,-0.346118986606598,-0.129576787352562,0.937210917472839,-0.345354676246643,-0.0486386641860008,0.712421059608459,-0.701086163520813,-0.0305708460509777,-0.0373062789440155,-0.998555958271027,0.0386544838547707,-0.0438992492854595,-0.998556613922119,-0.0309436991810799,0.704619228839874,-0.70175039768219,-0.105157501995564,0.712421059608459,-0.701086163520813,-0.0305708460509777,0.993701219558716,0.100423328578472,-0.0497287921607494,0.937210917472839,-0.345354676246643,-0.0486386641860008,0.92919933795929,-0.346118986606598,-0.129576787352562,0.985222995281219,0.101438745856285,-0.13800622522831,-0.102038852870464,-0.0112997032701969,-0.994716286659241,-0.103339016437531,-0.0308192409574986,-0.994168639183044,-0.17752580344677,-0.0157601591199636,-0.983989953994751,-0.176402285695076,0.0378169491887093,-0.983591496944427,-0.119586281478405,0.0349476970732212,-0.992208540439606,0.0805244222283363,-0.0150855137035251,0.996638476848602,0.0628433749079704,0.028684850782156,0.997611045837402,0.00618563359603286,0.0323609821498394,0.999457180500031,0.00533790001645684,-0.0193676501512527,0.999798178672791,0.0793505609035492,-0.0344477146863937,0.996251404285431,0.0165473595261574,0.999098598957062,0.0390894077718258,0.0628433749079704,0.028684850782156,0.997611045837402,0.993701219558716,0.100423328578472,-0.0497287921607494,-0.988888323307037,0.0158140640705824,0.147817224264145,0.00618563359603286,0.0323609821498394,0.999457180500031,-0.0280734952539206,0.998947441577911,0.0362754762172699,0.00888230744749308,0.9991375207901,-0.0405639000236988,0.985222995281219,0.101438745856285,-0.13800622522831,-0.119586281478405,0.0349476970732212,-0.992208540439606,-0.998988270759583,0.0145923951640725,0.0425386689603329,-0.0359936766326427,0.998894393444061,-0.0302412491291761,-0.176402285695076,0.0378169491887093,-0.983591496944427,0.00533790001645684,-0.0193676501512527,0.999798178672791,-0.98869925737381,-0.0259428340941668,0.14765065908432,-0.0373062789440155,-0.998555958271027,0.0386544838547707,-0.0438992492854595,-0.998556613922119,-0.0309436991810799,
- -0.9987433552742,-0.0259698554873466,0.0428621843457222,-0.17752580344677,-0.0157601591199636,-0.983989953994751,0.023748004809022,0.999503672122955,0.0206990260630846,0.918256878852844,0.101589344441891,-0.382732272148132,0.881207466125488,0.100185729563236,-0.461991518735886,-0.00971917156130075,0.998664498329163,-0.0507413856685162,0.399681270122528,0.0445009991526604,0.915573418140411,0.023748004809022,0.999503672122955,0.0206990260630846,-0.0187348425388336,0.999263107776642,0.0334998518228531,0.341355383396149,0.0480794534087181,0.938703835010529,0.918256878852844,0.101589344441891,-0.382732272148132,0.399681270122528,0.0445009991526604,0.915573418140411,0.408864080905914,0.00160929257981479,0.912593901157379,0.868344128131866,-0.331537812948227,-0.368864506483078,0.868344128131866,-0.331537812948227,-0.368864506483078,0.408864080905914,0.00160929257981479,0.912593901157379,0.404826760292053,-0.00216432684101164,0.914390921592712,0.805858969688416,-0.468672394752502,-0.36185297369957,-0.882743835449219,0.0165238827466965,0.469563752412796,-0.0187348425388336,0.999263107776642,0.0334998518228531,-0.0485342219471931,0.998496413230896,-0.0254826284945011,-0.926798462867737,0.0140171879902482,0.375297278165817,0.341355383396149,0.0480794534087181,0.938703835010529,-0.882743835449219,0.0165238827466965,0.469563752412796,-0.882459163665771,-0.0253413170576096,0.469705760478973,0.340456277132034,0.00128205376677215,0.940259516239166,-0.00971917156130075,0.998664498329163,-0.0507413856685162,-0.451563090085983,0.0224992576986551,-0.891955494880676,-0.502275049686432,0.0256966166198254,-0.864326000213623,-0.0485342219471931,0.998496413230896,-0.0254826284945011,-0.451563090085983,0.0224992576986551,-0.891955494880676,0.881207466125488,0.100185729563236,-0.461991518735886,0.835199773311615,-0.334867089986801,-0.436239957809448,-0.43554362654686,-0.0242179520428181,-0.899841845035553,-0.43554362654686,-0.0242179520428181,-0.899841845035553,0.835199773311615,-0.334867089986801,-0.436239957809448,0.638396978378296,-0.691677212715149,-0.337686210870743,
- -0.436208724975586,-0.0440087392926216,-0.898768782615662,-0.926798462867737,0.0140171879902482,0.375297278165817,-0.502275049686432,0.0256966166198254,-0.864326000213623,-0.503045618534088,-0.0287145357578993,-0.86378276348114,-0.926307141780853,-0.0265090297907591,0.375835388898849,0.340456277132034,0.00128205376677215,0.940259516239166,-0.031232625246048,-0.998326480388641,0.0486704148352146,0.0143443457782269,-0.999648630619049,0.0222893264144659,0.384887784719467,0.00249115726910532,0.922959983348846,-0.031232625246048,-0.998326480388641,0.0486704148352146,-0.882459163665771,-0.0253413170576096,0.469705760478973,-0.926307141780853,-0.0265090297907591,0.375835388898849,-0.0557222850620747,-0.998429656028748,-0.00576266320422292,-0.0557222850620747,-0.998429656028748,-0.00576266320422292,-0.503045618534088,-0.0287145357578993,-0.86378276348114,-0.436208724975586,-0.0440087392926216,-0.898768782615662,0.638396978378296,-0.691677212715149,-0.337686210870743,-0.0187348425388336,0.999263107776642,0.0334998518228531,0.023748004809022,0.999503672122955,0.0206990260630846,-0.00971917156130075,0.998664498329163,-0.0507413856685162,-0.0485342219471931,0.998496413230896,-0.0254826284945011,-0.926798462867737,0.0140171879902482,0.375297278165817,-0.926307141780853,-0.0265090297907591,0.375835388898849,-0.882459163665771,-0.0253413170576096,0.469705760478973,-0.882743835449219,0.0165238827466965,0.469563752412796,0.638396978378296,-0.691677212715149,-0.337686210870743,0.835199773311615,-0.334867089986801,-0.436239957809448,0.868344128131866,-0.331537812948227,-0.368864506483078,0.805858969688416,-0.468672394752502,-0.36185297369957,0.80135440826416,-0.468664079904556,-0.371732413768768,0.651462852954865,-0.697590470314026,-0.298267871141434,-0.031232625246048,-0.998326480388641,0.0486704148352146,-0.0557222850620747,-0.998429656028748,-0.00576266320422292,0.638396978378296,-0.691677212715149,-0.337686210870743,0.651462852954865,-0.697590470314026,-0.298267871141434,0.00869356654584408,-0.999927580356598,0.00832557305693626,
- 0.0143443457782269,-0.999648630619049,0.0222893264144659,0.918256878852844,0.101589344441891,-0.382732272148132,0.868344128131866,-0.331537812948227,-0.368864506483078,0.835199773311615,-0.334867089986801,-0.436239957809448,0.881207466125488,0.100185729563236,-0.461991518735886,-0.43554362654686,-0.0242179520428181,-0.899841845035553,-0.436208724975586,-0.0440087392926216,-0.898768782615662,-0.503045618534088,-0.0287145357578993,-0.86378276348114,-0.502275049686432,0.0256966166198254,-0.864326000213623,-0.451563090085983,0.0224992576986551,-0.891955494880676,0.408864080905914,0.00160929257981479,0.912593901157379,0.399681270122528,0.0445009991526604,0.915573418140411,0.341355383396149,0.0480794534087181,0.938703835010529,0.340456277132034,0.00128205376677215,0.940259516239166,0.384887784719467,0.00249115726910532,0.922959983348846,0.384886234998703,0.00921362172812223,0.922918081283569,0.404826760292053,-0.00216432684101164,0.914390921592712,0.023748004809022,0.999503672122955,0.0206990260630846,0.399681270122528,0.0445009991526604,0.915573418140411,0.918256878852844,0.101589344441891,-0.382732272148132,-0.882743835449219,0.0165238827466965,0.469563752412796,0.341355383396149,0.0480794534087181,0.938703835010529,-0.0187348425388336,0.999263107776642,0.0334998518228531,-0.00971917156130075,0.998664498329163,-0.0507413856685162,0.881207466125488,0.100185729563236,-0.461991518735886,-0.451563090085983,0.0224992576986551,-0.891955494880676,-0.926798462867737,0.0140171879902482,0.375297278165817,-0.0485342219471931,0.998496413230896,-0.0254826284945011,-0.502275049686432,0.0256966166198254,-0.864326000213623,0.340456277132034,0.00128205376677215,0.940259516239166,-0.882459163665771,-0.0253413170576096,0.469705760478973,-0.031232625246048,-0.998326480388641,0.0486704148352146,-0.0557222850620747,-0.998429656028748,-0.00576266320422292,-0.926307141780853,-0.0265090297907591,0.375835388898849,-0.503045618534088,-0.0287145357578993,-0.86378276348114,0.0354535281658173,0.999113202095032,0.0227139499038458,0.792804360389709,0.100988179445267,-0.601051270961761,
- 0.736262738704681,0.100621670484543,-0.669172942638397,-0.0156214712187648,0.999127984046936,-0.0387213453650475,0.618422865867615,0.0301770176738501,0.785265803337097,0.0354535281658173,0.999113202095032,0.0227139499038458,-0.00253257295116782,0.998943328857422,0.0458898842334747,0.572218656539917,0.0335758328437805,0.819413542747498,0.792804360389709,0.100988179445267,-0.601051270961761,0.618422865867615,0.0301770176738501,0.785265803337097,0.632599592208862,-0.0139531223103404,0.774353265762329,0.746786117553711,-0.345494747161865,-0.568281471729279,0.746786117553711,-0.345494747161865,-0.568281471729279,0.632599592208862,-0.0139531223103404,0.774353265762329,0.631264746189117,-0.0333623476326466,0.774849534034729,0.571163952350616,-0.701598644256592,-0.426064401865005,-0.734265327453613,0.0158212035894394,0.678678333759308,-0.00253257295116782,0.998943328857422,0.0458898842334747,-0.0466562956571579,0.9989013671875,-0.00440144259482622,-0.801845729351044,0.0146175464615226,0.59735232591629,0.572218656539917,0.0335758328437805,0.819413542747498,-0.734265327453613,0.0158212035894394,0.678678333759308,-0.73420238494873,-0.0259673558175564,0.678433895111084,0.571686208248138,-0.0183021873235703,0.820268154144287,-0.0156214712187648,0.999127984046936,-0.0387213453650475,-0.66218513250351,0.0335367731750011,-0.74858945608139,-0.703611552715302,0.0366722010076046,-0.709637820720673,-0.0466562956571579,0.9989013671875,-0.00440144259482622,-0.66218513250351,0.0335367731750011,-0.74858945608139,0.736262738704681,0.100621670484543,-0.669172942638397,0.69477367401123,-0.345997333526611,-0.630535900592804,-0.649266839027405,-0.0123832346871495,-0.760459840297699,-0.649266839027405,-0.0123832346871495,-0.760459840297699,0.69477367401123,-0.345997333526611,-0.630535900592804,0.523742616176605,-0.701097190380096,-0.483896970748901,-0.649821817874908,-0.0319052711129189,-0.75941663980484,-0.801845729351044,0.0146175464615226,0.59735232591629,-0.703611552715302,0.0366722010076046,-0.709637820720673,-0.704669773578644,-0.0168593265116215,-0.709335088729858,
- -0.801461338996887,-0.0259324889630079,0.597484111785889,0.571686208248138,-0.0183021873235703,0.820268154144287,-0.00905598886311054,-0.998559474945068,0.0528857931494713,0.571163952350616,-0.701598644256592,-0.426064401865005,0.631264746189117,-0.0333623476326466,0.774849534034729,-0.00905598886311054,-0.998559474945068,0.0528857931494713,-0.73420238494873,-0.0259673558175564,0.678433895111084,-0.801461338996887,-0.0259324889630079,0.597484111785889,-0.0537016429007053,-0.998556792736053,-0.00071638566441834,-0.0537016429007053,-0.998556792736053,-0.00071638566441834,-0.704669773578644,-0.0168593265116215,-0.709335088729858,-0.649821817874908,-0.0319052711129189,-0.75941663980484,0.523742616176605,-0.701097190380096,-0.483896970748901,-0.00253257295116782,0.998943328857422,0.0458898842334747,0.0354535281658173,0.999113202095032,0.0227139499038458,-0.0156214712187648,0.999127984046936,-0.0387213453650475,-0.0466562956571579,0.9989013671875,-0.00440144259482622,-0.801845729351044,0.0146175464615226,0.59735232591629,-0.801461338996887,-0.0259324889630079,0.597484111785889,-0.73420238494873,-0.0259673558175564,0.678433895111084,-0.734265327453613,0.0158212035894394,0.678678333759308,0.523742616176605,-0.701097190380096,-0.483896970748901,0.69477367401123,-0.345997333526611,-0.630535900592804,0.746786117553711,-0.345494747161865,-0.568281471729279,0.571163952350616,-0.701598644256592,-0.426064401865005,-0.00905598886311054,-0.998559474945068,0.0528857931494713,-0.0537016429007053,-0.998556792736053,-0.00071638566441834,0.523742616176605,-0.701097190380096,-0.483896970748901,0.571163952350616,-0.701598644256592,-0.426064401865005,0.792804360389709,0.100988179445267,-0.601051270961761,0.746786117553711,-0.345494747161865,-0.568281471729279,0.69477367401123,-0.345997333526611,-0.630535900592804,0.736262738704681,0.100621670484543,-0.669172942638397,-0.649266839027405,-0.0123832346871495,-0.760459840297699,-0.649821817874908,-0.0319052711129189,-0.75941663980484,-0.704669773578644,-0.0168593265116215,-0.709335088729858,-0.703611552715302,0.0366722010076046,-0.709637820720673,
- -0.66218513250351,0.0335367731750011,-0.74858945608139,0.632599592208862,-0.0139531223103404,0.774353265762329,0.618422865867615,0.0301770176738501,0.785265803337097,0.572218656539917,0.0335758328437805,0.819413542747498,0.571686208248138,-0.0183021873235703,0.820268154144287,0.631264746189117,-0.0333623476326466,0.774849534034729,0.0354535281658173,0.999113202095032,0.0227139499038458,0.618422865867615,0.0301770176738501,0.785265803337097,0.792804360389709,0.100988179445267,-0.601051270961761,-0.734265327453613,0.0158212035894394,0.678678333759308,0.572218656539917,0.0335758328437805,0.819413542747498,-0.00253257295116782,0.998943328857422,0.0458898842334747,-0.0156214712187648,0.999127984046936,-0.0387213453650475,0.736262738704681,0.100621670484543,-0.669172942638397,-0.66218513250351,0.0335367731750011,-0.74858945608139,-0.801845729351044,0.0146175464615226,0.59735232591629,-0.0466562956571579,0.9989013671875,-0.00440144259482622,-0.703611552715302,0.0366722010076046,-0.709637820720673,0.571686208248138,-0.0183021873235703,0.820268154144287,-0.73420238494873,-0.0259673558175564,0.678433895111084,-0.00905598886311054,-0.998559474945068,0.0528857931494713,-0.0537016429007053,-0.998556792736053,-0.00071638566441834,-0.801461338996887,-0.0259324889630079,0.597484111785889,-0.704669773578644,-0.0168593265116215,-0.709335088729858,0.0154171166941524,0.99987131357193,-0.00443830713629723,0.647078275680542,0.128278180956841,-0.751554667949677,0.586725115776062,0.133485242724419,-0.798708498477936,-0.0478381216526031,0.997481167316437,-0.052372720092535,0.774258732795715,0.0629032552242279,0.629735350608826,0.0154171166941524,0.99987131357193,-0.00443830713629723,-0.0166711676865816,0.999509155750275,0.0265221428126097,0.736561954021454,0.0662995427846909,0.673112809658051,0.647078275680542,0.128278180956841,-0.751554667949677,0.774258732795715,0.0629032552242279,0.629735350608826,0.786818087100983,0.0186451803892851,0.616903126239777,0.620270550251007,-0.346857100725174,-0.703530132770538,0.620270550251007,-0.346857100725174,-0.703530132770538,
- 0.786818087100983,0.0186451803892851,0.616903126239777,0.786083340644836,-0.00083716498920694,0.618120014667511,0.479611575603485,-0.712063252925873,-0.512775480747223,-0.566034615039825,0.0175931602716446,0.824193716049194,-0.0166711676865816,0.999509155750275,0.0265221428126097,-0.0706810280680656,0.997424244880676,-0.0122142396867275,-0.649221301078796,0.0128269251435995,0.760491371154785,0.736561954021454,0.0662995427846909,0.673112809658051,-0.566034615039825,0.0175931602716446,0.824193716049194,-0.565139532089233,-0.0241568144410849,0.824641644954681,0.737456440925598,0.0142337698489428,0.675244748592377,-0.0478381216526031,0.997481167316437,-0.052372720092535,-0.819274008274078,0.00580020854249597,-0.573372840881348,-0.84816563129425,0.0082974499091506,-0.529666185379028,-0.0706810280680656,0.997424244880676,-0.0122142396867275,-0.125928193330765,-0.408616453409195,-0.90397709608078,-0.114788897335529,-0.392626911401749,-0.91250616312027,-0.086340457201004,-0.232906252145767,-0.968658864498138,-0.086340457201004,-0.232906252145767,-0.968658864498138,-0.0361158102750778,-0.187775403261185,-0.981547832489014,0.0317444913089275,0.0550670176744461,-0.997977912425995,0.0317444875836372,0.0550670213997364,-0.997977912425995,-0.649221301078796,0.0128269251435995,0.760491371154785,-0.84816563129425,0.0082974499091506,-0.529666185379028,-0.847820341587067,-0.0478574186563492,-0.528119564056396,-0.647948980331421,-0.0276519637554884,0.761181712150574,0.737456440925598,0.0142337698489428,0.675244748592377,0.0273719429969788,-0.996976315975189,0.072725422680378,0.479611575603485,-0.712063252925873,-0.512775480747223,0.786083340644836,-0.00083716498920694,0.618120014667511,0.0273719429969788,-0.996976315975189,0.072725422680378,-0.565139532089233,-0.0241568144410849,0.824641644954681,-0.647948980331421,-0.0276519637554884,0.761181712150574,-0.0273679457604885,-0.999166369438171,0.0302891973406076,-0.0273679457604885,-0.999166369438171,0.0302891973406076,-0.847820341587067,-0.0478574186563492,-0.528119564056396,-0.804623484611511,-0.0626487359404564,-0.590471208095551,
- 0.419082403182983,-0.715921819210052,-0.558413743972778,-0.0166711676865816,0.999509155750275,0.0265221428126097,0.0154171166941524,0.99987131357193,-0.00443830713629723,-0.0478381216526031,0.997481167316437,-0.052372720092535,-0.0706810280680656,0.997424244880676,-0.0122142396867275,-0.649221301078796,0.0128269251435995,0.760491371154785,-0.647948980331421,-0.0276519637554884,0.761181712150574,-0.565139532089233,-0.0241568144410849,0.824641644954681,-0.566034615039825,0.0175931602716446,0.824193716049194,0.113960914313793,-0.343963950872421,-0.932041704654694,-0.0361158102750778,-0.187775403261185,-0.981547832489014,-0.114788897335529,-0.392626911401749,-0.91250616312027,0.0273719429969788,-0.996976315975189,0.072725422680378,-0.0273679457604885,-0.999166369438171,0.0302891973406076,0.419082403182983,-0.715921819210052,-0.558413743972778,0.479611575603485,-0.712063252925873,-0.512775480747223,-0.819274008274078,0.00580020854249597,-0.573372840881348,-0.82063353061676,-0.0307528860867023,-0.570626795291901,-0.823833584785461,-0.030928248539567,-0.565987348556519,-0.809380292892456,-0.043793398886919,-0.585649847984314,-0.804623484611511,-0.0626487359404564,-0.590471208095551,-0.847820341587067,-0.0478574186563492,-0.528119564056396,-0.84816563129425,0.0082974499091506,-0.529666185379028,0.786818087100983,0.0186451803892851,0.616903126239777,0.774258732795715,0.0629032552242279,0.629735350608826,0.736561954021454,0.0662995427846909,0.673112809658051,0.737456440925598,0.0142337698489428,0.675244748592377,0.786083340644836,-0.00083716498920694,0.618120014667511,0.0154171166941524,0.99987131357193,-0.00443830713629723,0.774258732795715,0.0629032552242279,0.629735350608826,0.647078275680542,0.128278180956841,-0.751554667949677,-0.566034615039825,0.0175931602716446,0.824193716049194,0.736561954021454,0.0662995427846909,0.673112809658051,-0.0166711676865816,0.999509155750275,0.0265221428126097,-0.0478381216526031,0.997481167316437,-0.052372720092535,0.586725115776062,0.133485242724419,-0.798708498477936,-0.819274008274078,0.00580020854249597,-0.573372840881348,
- -0.649221301078796,0.0128269251435995,0.760491371154785,-0.0706810280680656,0.997424244880676,-0.0122142396867275,-0.84816563129425,0.0082974499091506,-0.529666185379028,0.737456440925598,0.0142337698489428,0.675244748592377,-0.565139532089233,-0.0241568144410849,0.824641644954681,0.0273719429969788,-0.996976315975189,0.072725422680378,-0.0273679457604885,-0.999166369438171,0.0302891973406076,-0.647948980331421,-0.0276519637554884,0.761181712150574,-0.847820341587067,-0.0478574186563492,-0.528119564056396,0.0367155037820339,0.999303817749023,-0.00661147432401776,0.211644649505615,0.100909806787968,-0.972123265266418,0.124198883771896,0.100870952010155,-0.987116932868958,-0.0421811677515507,0.998906254768372,-0.0201783962547779,0.97917640209198,0.0346382670104504,0.200034454464912,0.0367155037820339,0.999303817749023,-0.00661147432401776,0.0223988443613052,0.9991135597229,0.0356404595077038,0.966108798980713,0.0382040292024612,0.255292654037476,0.211644649505615,0.100909806787968,-0.972123265266418,0.97917640209198,0.0346382670104504,0.200034454464912,0.983122229576111,-0.00910052284598351,0.182723432779312,0.200586035847664,-0.345228642225266,-0.916832804679871,0.200586035847664,-0.345228642225266,-0.916832804679871,0.983122229576111,-0.00910052284598351,0.182723432779312,0.982548177242279,-0.0284687299281359,0.183816865086555,0.16120582818985,-0.701003909111023,-0.694698572158813,-0.116730779409409,0.016142513602972,0.993032395839691,0.0223988443613052,0.9991135597229,0.0356404595077038,-0.0439235605299473,0.998698472976685,0.0259225871413946,-0.22112175822258,0.0143077597022057,0.975141227245331,0.966108798980713,0.0382040292024612,0.255292654037476,-0.116730779409409,0.016142513602972,0.993032395839691,-0.116654753684998,-0.0256329663097858,0.99284166097641,0.96650367975235,-0.013405691832304,0.256302744150162,-0.0421811677515507,0.998906254768372,-0.0201783962547779,-0.989198386669159,0.0290366224944592,-0.143678277730942,-0.995719611644745,0.0319641083478928,-0.0867221057415009,-0.0439235605299473,0.998698472976685,0.0259225871413946,
- -0.989198386669159,0.0290366224944592,-0.143678277730942,0.124198883771896,0.100870952010155,-0.987116932868958,0.12037581205368,-0.346196234226227,-0.930407285690308,-0.986762464046478,-0.0171842891722918,-0.161259636282921,-0.986762464046478,-0.0171842891722918,-0.161259636282921,0.12037581205368,-0.346196234226227,-0.930407285690308,0.0872157141566277,-0.701760768890381,-0.707053899765015,-0.986444115638733,-0.0367153733968735,-0.159937098622322,-0.22112175822258,0.0143077597022057,0.975141227245331,-0.995719611644745,0.0319641083478928,-0.0867221057415009,-0.996082961559296,-0.0216213390231133,-0.0857404917478561,-0.220561653375626,-0.0262634884566069,0.97501939535141,0.96650367975235,-0.013405691832304,0.256302744150162,0.0330028794705868,-0.998345375061035,0.0470883846282959,0.16120582818985,-0.701003909111023,-0.694698572158813,0.982548177242279,-0.0284687299281359,0.183816865086555,0.0330028794705868,-0.998345375061035,0.0470883846282959,-0.116654753684998,-0.0256329663097858,0.99284166097641,-0.220561653375626,-0.0262634884566069,0.97501939535141,-0.0358970239758492,-0.998736917972565,0.0351548455655575,-0.0358970239758492,-0.998736917972565,0.0351548455655575,-0.996082961559296,-0.0216213390231133,-0.0857404917478561,-0.986444115638733,-0.0367153733968735,-0.159937098622322,0.0872157141566277,-0.701760768890381,-0.707053899765015,0.0223988443613052,0.9991135597229,0.0356404595077038,0.0367155037820339,0.999303817749023,-0.00661147432401776,-0.0421811677515507,0.998906254768372,-0.0201783962547779,-0.0439235605299473,0.998698472976685,0.0259225871413946,-0.22112175822258,0.0143077597022057,0.975141227245331,-0.220561653375626,-0.0262634884566069,0.97501939535141,-0.116654753684998,-0.0256329663097858,0.99284166097641,-0.116730779409409,0.016142513602972,0.993032395839691,0.0872157141566277,-0.701760768890381,-0.707053899765015,0.12037581205368,-0.346196234226227,-0.930407285690308,0.200586035847664,-0.345228642225266,-0.916832804679871,0.16120582818985,-0.701003909111023,-0.694698572158813,0.0330028794705868,-0.998345375061035,0.0470883846282959,
- -0.0358970239758492,-0.998736917972565,0.0351548455655575,0.0872157141566277,-0.701760768890381,-0.707053899765015,0.16120582818985,-0.701003909111023,-0.694698572158813,0.211644649505615,0.100909806787968,-0.972123265266418,0.200586035847664,-0.345228642225266,-0.916832804679871,0.12037581205368,-0.346196234226227,-0.930407285690308,0.124198883771896,0.100870952010155,-0.987116932868958,-0.986762464046478,-0.0171842891722918,-0.161259636282921,-0.986444115638733,-0.0367153733968735,-0.159937098622322,-0.996082961559296,-0.0216213390231133,-0.0857404917478561,-0.995719611644745,0.0319641083478928,-0.0867221057415009,-0.989198386669159,0.0290366224944592,-0.143678277730942,0.983122229576111,-0.00910052284598351,0.182723432779312,0.97917640209198,0.0346382670104504,0.200034454464912,0.966108798980713,0.0382040292024612,0.255292654037476,0.96650367975235,-0.013405691832304,0.256302744150162,0.982548177242279,-0.0284687299281359,0.183816865086555,0.0367155037820339,0.999303817749023,-0.00661147432401776,0.97917640209198,0.0346382670104504,0.200034454464912,0.211644649505615,0.100909806787968,-0.972123265266418,-0.116730779409409,0.016142513602972,0.993032395839691,0.966108798980713,0.0382040292024612,0.255292654037476,0.0223988443613052,0.9991135597229,0.0356404595077038,-0.0421811677515507,0.998906254768372,-0.0201783962547779,0.124198883771896,0.100870952010155,-0.987116932868958,-0.989198386669159,0.0290366224944592,-0.143678277730942,-0.22112175822258,0.0143077597022057,0.975141227245331,-0.0439235605299473,0.998698472976685,0.0259225871413946,-0.995719611644745,0.0319641083478928,-0.0867221057415009,0.96650367975235,-0.013405691832304,0.256302744150162,-0.116654753684998,-0.0256329663097858,0.99284166097641,0.0330028794705868,-0.998345375061035,0.0470883846282959,-0.0358970239758492,-0.998736917972565,0.0351548455655575,-0.220561653375626,-0.0262634884566069,0.97501939535141,-0.996082961559296,-0.0216213390231133,-0.0857404917478561,0.518415689468384,0.854641735553741,0.0288567803800106,0.518415749073029,0.854641735553741,0.0288567803800106,
- 0.518415689468384,0.854641675949097,0.0288567803800106,0.518415689468384,0.854641735553741,0.0288567822426558,-0.00266466126777232,0.863718211650848,0.503967881202698,-0.00266466080211103,0.863718211650848,0.503967881202698,-0.00266466126777232,0.863718271255493,0.503967940807343,-0.00266466126777232,0.863718330860138,0.503967940807343,-0.749773144721985,-0.000506791227962822,-0.661694824695587,0.573530197143555,-0.428887695074081,-0.697938740253448,0.525347292423248,-0.584854602813721,-0.618025243282318,-0.778020799160004,-0.0627168640494347,-0.625100195407867,-0.753082931041718,0.00826080329716206,-0.657873809337616,0.200875535607338,0.468801945447922,-0.86015921831131,0.210915982723236,0.343004375696182,-0.91534823179245,-0.753082931041718,0.00826080329716206,-0.657873809337616,0.210915982723236,0.343004375696182,-0.91534823179245,0.573530197143555,-0.428887695074081,-0.697938740253448,-0.749773144721985,-0.000506791227962822,-0.661694824695587,0.396252334117889,0.804200947284698,-0.442995309829712,0.200875535607338,0.468801945447922,-0.86015921831131,0.371935546398163,0.816707909107208,-0.441193968057632,0.66894519329071,-0.564050436019897,-0.484106838703156,0.676083922386169,-0.553144514560699,-0.486766397953033,-0.113083966076374,-0.675879895687103,0.728284418582916,-0.472780793905258,-0.830091416835785,0.295679956674576,0.676083922386169,-0.553144514560699,-0.486766397953033,0.66894519329071,-0.564050436019897,-0.484106838703156,0.76935750246048,-0.331514060497284,-0.546065330505371,0.790219485759735,-0.295803874731064,-0.536705791950226,0.754221439361572,-0.315193235874176,-0.576023757457733,0.700716733932495,-0.373360514640808,-0.607945740222931,0.45596632361412,0.800603985786438,-0.388751685619354,0.533240139484406,0.787693023681641,-0.308536350727081,-0.472780793905258,-0.830091416835785,0.295679956674576,-0.113083966076374,-0.675879895687103,0.728284418582916,0.134042665362358,-0.958292841911316,0.252403378486633,-0.0480637177824974,-0.998551487922668,0.0241831336170435,-0.447079926729202,-0.825479090213776,0.344534248113632,
- -0.415865480899811,-0.813504815101624,0.406528949737549,0.639497876167297,-0.522459983825684,-0.563984096050262,0.63793009519577,-0.554291188716888,-0.534608602523804,-0.426611691713333,-0.802480816841125,0.417165547609329,0.0578654669225216,-0.890504896640778,0.451278984546661,-0.364298969507217,-0.931215286254883,-0.0111515931785107,-0.778020799160004,-0.0627168640494347,-0.625100195407867,-0.762536108493805,-0.0337481535971165,-0.646064758300781,-0.7580206990242,0.0819666758179665,-0.647059559822083,-0.733655154705048,0.0556529089808464,-0.677239179611206,-0.753082931041718,0.00826080329716206,-0.657873809337616,-0.749773144721985,-0.000506791227962822,-0.661694824695587,0.700716733932495,-0.373360514640808,-0.607945740222931,0.754221439361572,-0.315193235874176,-0.576023757457733,0.63793009519577,-0.554291188716888,-0.534608602523804,0.200875535607338,0.468801945447922,-0.86015921831131,0.396252334117889,0.804200947284698,-0.442995309829712,0.600355386734009,-0.399622440338135,-0.692730367183685,0.210915982723236,0.343004375696182,-0.91534823179245,0.210915982723236,0.343004375696182,-0.91534823179245,0.600355386734009,-0.399622440338135,-0.692730367183685,0.573530197143555,-0.428887695074081,-0.697938740253448,0.200875535607338,0.468801945447922,-0.86015921831131,-0.753082931041718,0.00826080329716206,-0.657873809337616,-0.733655154705048,0.0556529089808464,-0.677239179611206,0.371935546398163,0.816707909107208,-0.441193968057632,-0.433875411748886,-0.820568680763245,0.372047156095505,-0.778020799160004,-0.0627168640494347,-0.625100195407867,0.525347292423248,-0.584854602813721,-0.618025243282318,0.700716733932495,-0.373360514640808,-0.607945740222931,0.689141452312469,-0.37815272808075,-0.618129968643188,0.396873772144318,0.796984851360321,-0.455309242010117,0.45596632361412,0.800603985786438,-0.388751685619354,0.475861191749573,0.0547202825546265,0.877816438674927,0.455800026655197,-0.00578233040869236,0.890063405036926,0.83775669336319,-0.307424902915955,-0.4512799680233,0.530181109905243,0.792038381099701,-0.302626997232437,
- 0.724336445331573,-0.538323163986206,-0.430749326944351,0.747647225856781,-0.535509884357452,-0.392750233411789,-0.463479399681091,-0.829191148281097,0.312456220388412,-0.470533818006516,-0.831296265125275,0.295879393815994,0.812215447425842,-0.320528358221054,-0.487409085035324,0.83775669336319,-0.307424902915955,-0.4512799680233,0.747647225856781,-0.535509884357452,-0.392750233411789,0.724336445331573,-0.538323163986206,-0.430749326944351,-0.470533818006516,-0.831296265125275,0.295879393815994,-0.463479399681091,-0.829191148281097,0.312456220388412,-0.0137736313045025,-0.995647490024567,0.0921757742762566,-0.0358549319207668,-0.998131930828094,0.0494694262742996,-0.510369122028351,-0.805927991867065,0.300005555152893,0.790219485759735,-0.295803874731064,-0.536705791950226,0.76935750246048,-0.331514060497284,-0.546065330505371,0.529417991638184,0.787082195281982,-0.316572576761246,0.477467089891434,0.801115930080414,-0.360885709524155,0.0578654669225216,-0.890504896640778,0.451278984546661,-0.40531799197197,-0.822714269161224,0.398570567369461,0.539492428302765,-0.592453598976135,-0.598286390304565,0.611761152744293,-0.601687014102936,-0.513537645339966,0.654742956161499,-0.408324003219604,-0.63606858253479,0.623574793338776,-0.380798786878586,-0.682749509811401,0.450240850448608,0.802753746509552,-0.390985429286957,0.511404752731323,0.799576580524445,-0.31486913561821,-0.415865480899811,-0.813504815101624,0.406528949737549,-0.364298969507217,-0.931215286254883,-0.0111515931785107,0.653690338134766,-0.481595933437347,-0.583741724491119,0.639497876167297,-0.522459983825684,-0.563984096050262,-0.40531799197197,-0.822714269161224,0.398570567369461,-0.433875411748886,-0.820568680763245,0.372047156095505,0.525347292423248,-0.584854602813721,-0.618025243282318,0.539492428302765,-0.592453598976135,-0.598286390304565,-0.40531799197197,-0.822714269161224,0.398570567369461,0.0578654669225216,-0.890504896640778,0.451278984546661,-0.426611691713333,-0.802480816841125,0.417165547609329,-0.447079926729202,-0.825479090213776,0.344534248113632,
- -0.1049629971385,-0.993005454540253,-0.0540637820959091,-0.0254113953560591,-0.998364806175232,0.0512057840824127,0.689141452312469,-0.37815272808075,-0.618129968643188,0.700716733932495,-0.373360514640808,-0.607945740222931,0.63793009519577,-0.554291188716888,-0.534608602523804,0.639497876167297,-0.522459983825684,-0.563984096050262,0.653690338134766,-0.481595933437347,-0.583741724491119,0.623574793338776,-0.380798786878586,-0.682749509811401,0.654742956161499,-0.408324003219604,-0.63606858253479,0.611761152744293,-0.601687014102936,-0.513537645339966,0.539492428302765,-0.592453598976135,-0.598286390304565,0.83775669336319,-0.307424902915955,-0.4512799680233,0.812215447425842,-0.320528358221054,-0.487409085035324,0.507041156291962,0.790467500686646,-0.343613713979721,0.530181109905243,0.792038381099701,-0.302626997232437,0.747647225856781,-0.535509884357452,-0.392750233411789,0.457842588424683,-0.0114919450134039,0.888959050178528,0.404249340295792,-0.0569050163030624,0.912876963615417,-0.463479399681091,-0.829191148281097,0.312456220388412,0.83775669336319,-0.307424902915955,-0.4512799680233,0.455800026655197,-0.00578233040869236,0.890063405036926,0.457842588424683,-0.0114919450134039,0.888959050178528,0.747647225856781,-0.535509884357452,-0.392750233411789,-0.463479399681091,-0.829191148281097,0.312456220388412,0.404249340295792,-0.0569050163030624,0.912876963615417,0.439314156770706,-0.0282014328986406,0.897890686988831,-0.0137736313045025,-0.995647490024567,0.0921757742762566,0.76935750246048,-0.331514060497284,-0.546065330505371,0.754221439361572,-0.315193235874176,-0.576023757457733,0.533240139484406,0.787693023681641,-0.308536350727081,0.529417991638184,0.787082195281982,-0.316572576761246,0.66894519329071,-0.564050436019897,-0.484106838703156,0.63793009519577,-0.554291188716888,-0.534608602523804,0.754221439361572,-0.315193235874176,-0.576023757457733,0.76935750246048,-0.331514060497284,-0.546065330505371,0.63793009519577,-0.554291188716888,-0.534608602523804,0.66894519329071,-0.564050436019897,-0.484106838703156,
- -0.472780793905258,-0.830091416835785,0.295679956674576,-0.447079926729202,-0.825479090213776,0.344534248113632,-0.447079926729202,-0.825479090213776,0.344534248113632,-0.472780793905258,-0.830091416835785,0.295679956674576,-0.0480637177824974,-0.998551487922668,0.0241831336170435,-0.1049629971385,-0.993005454540253,-0.0540637820959091,0.812215447425842,-0.320528358221054,-0.487409085035324,0.790219485759735,-0.295803874731064,-0.536705791950226,0.477467089891434,0.801115930080414,-0.360885709524155,0.507041156291962,0.790467500686646,-0.343613713979721,0.790219485759735,-0.295803874731064,-0.536705791950226,0.812215447425842,-0.320528358221054,-0.487409085035324,0.724336445331573,-0.538323163986206,-0.430749326944351,0.676083922386169,-0.553144514560699,-0.486766397953033,0.676083922386169,-0.553144514560699,-0.486766397953033,0.724336445331573,-0.538323163986206,-0.430749326944351,-0.470533818006516,-0.831296265125275,0.295879393815994,-0.113083966076374,-0.675879895687103,0.728284418582916,-0.113083966076374,-0.675879895687103,0.728284418582916,-0.470533818006516,-0.831296265125275,0.295879393815994,-0.510369122028351,-0.805927991867065,0.300005555152893,-0.510369122028351,-0.805927991867065,0.300005555152893,-0.0358549319207668,-0.998131930828094,0.0494694262742996,-0.487565457820892,-0.482414364814758,-0.727706253528595,-0.113083966076374,-0.675879895687103,0.728284418582916,-0.510369122028351,-0.805927991867065,0.300005555152893,-0.487565457820892,-0.482414364814758,-0.727706253528595,0.134042665362358,-0.958292841911316,0.252403378486633,-0.447079926729202,-0.825479090213776,0.344534248113632,-0.0254113953560591,-0.998364806175232,0.0512057840824127,-0.036020040512085,-0.998578310012817,0.0392909795045853,-0.426611691713333,-0.802480816841125,0.417165547609329,-0.415865480899811,-0.813504815101624,0.406528949737549,0.623574793338776,-0.380798786878586,-0.682749509811401,0.600355386734009,-0.399622440338135,-0.692730367183685,0.396252334117889,0.804200947284698,-0.442995309829712,0.450240850448608,0.802753746509552,-0.390985429286957,
- 0.573530197143555,-0.428887695074081,-0.697938740253448,0.600355386734009,-0.399622440338135,-0.692730367183685,0.623574793338776,-0.380798786878586,-0.682749509811401,0.539492428302765,-0.592453598976135,-0.598286390304565,0.525347292423248,-0.584854602813721,-0.618025243282318,0.689141452312469,-0.37815272808075,-0.618129968643188,0.654742956161499,-0.408324003219604,-0.63606858253479,0.511404752731323,0.799576580524445,-0.31486913561821,0.396873772144318,0.796984851360321,-0.455309242010117,0.654742956161499,-0.408324003219604,-0.63606858253479,0.689141452312469,-0.37815272808075,-0.618129968643188,0.653690338134766,-0.481595933437347,-0.583741724491119,0.611761152744293,-0.601687014102936,-0.513537645339966,-0.364298969507217,-0.931215286254883,-0.0111515931785107,0.0578654669225216,-0.890504896640778,0.451278984546661,0.611761152744293,-0.601687014102936,-0.513537645339966,0.653690338134766,-0.481595933437347,-0.583741724491119,-0.426611691713333,-0.802480816841125,0.417165547609329,-0.364298969507217,-0.931215286254883,-0.0111515931785107,-0.415865480899811,-0.813504815101624,0.406528949737549,-0.7580206990242,0.0819666758179665,-0.647059559822083,0.345128834247589,0.833670973777771,-0.431136578321457,0.371935546398163,0.816707909107208,-0.441193968057632,-0.733655154705048,0.0556529089808464,-0.677239179611206,-0.0985823199152946,-0.994889914989471,-0.0218079201877117,-0.762536108493805,-0.0337481535971165,-0.646064758300781,-0.778020799160004,-0.0627168640494347,-0.625100195407867,-0.433875411748886,-0.820568680763245,0.372047156095505,-0.036020040512085,-0.998578310012817,0.0392909795045853,-0.0985823199152946,-0.994889914989471,-0.0218079201877117,-0.433875411748886,-0.820568680763245,0.372047156095505,-0.40531799197197,-0.822714269161224,0.398570567369461,-0.426611691713333,-0.802480816841125,0.417165547609329,0.441831707954407,0.0741142928600311,0.894031226634979,0.439314156770706,-0.0282014328986406,0.897890686988831,0.404249340295792,-0.0569050163030624,0.912876963615417,0.457842588424683,-0.0114919450134039,0.888959050178528,
- 0.455800026655197,-0.00578233040869236,0.890063405036926,0.475861191749573,0.0547202825546265,0.877816438674927,-0.772458016872406,-0.000520953617524356,-0.635065615177155,-0.744590759277344,-0.0555411241948605,-0.665206670761108,-0.58627861738205,-0.580324828624725,0.565243661403656,-0.663997352123261,-0.412287265062332,0.623800337314606,-0.76974755525589,0.00680050533264875,-0.638312339782715,-0.910981953144073,0.323476374149323,0.25588071346283,-0.860278248786926,0.445695489645004,0.247541561722755,-0.76974755525589,0.00680050533264875,-0.638312339782715,-0.772458016872406,-0.000520953617524356,-0.635065615177155,-0.663997352123261,-0.412287265062332,0.623800337314606,-0.910981953144073,0.323476374149323,0.25588071346283,-0.414403676986694,0.803779304027557,0.426858812570572,-0.41496667265892,0.814359962940216,0.40573439002037,-0.860278248786926,0.445695489645004,0.247541561722755,-0.662515223026276,-0.570852696895599,0.484975129365921,0.42621448636055,-0.826718211174011,-0.367257565259933,0.723925471305847,-0.651841342449188,0.225908875465393,-0.712227165699005,-0.559278845787048,0.424192905426025,-0.712227165699005,-0.559278845787048,0.424192905426025,-0.808539032936096,-0.298956394195557,0.506842970848084,-0.754560351371765,-0.334671676158905,0.564476370811462,-0.662515223026276,-0.570852696895599,0.484975129365921,-0.777797222137451,-0.320862472057343,0.540443122386932,-0.445395529270172,0.792031586170197,0.41750305891037,-0.439433813095093,0.801626265048981,0.405330926179886,-0.681329846382141,-0.379535406827927,0.625893294811249,0.42621448636055,-0.826718211174011,-0.367257565259933,-0.0480637177824974,-0.998551487922668,0.0241831336170435,0.134042665362358,-0.958292841911316,0.252403378486633,0.723925471305847,-0.651841342449188,0.225908875465393,0.436262577772141,-0.81887149810791,-0.372993975877762,-0.653728187084198,-0.565129578113556,0.503257393836975,-0.627694368362427,-0.534641563892365,0.565825223922729,0.456970483064651,-0.809635937213898,-0.368330776691437,0.426921039819717,-0.802482128143311,-0.416846334934235,
- -0.0378145948052406,-0.917092323303223,-0.396877199411392,0.49154269695282,-0.863646447658539,0.111805640161037,-0.744590759277344,-0.0555411241948605,-0.665206670761108,-0.772458016872406,-0.000520953617524356,-0.635065615177155,-0.76974755525589,0.00680050533264875,-0.638312339782715,-0.785192906856537,0.0514450669288635,-0.61711061000824,-0.7580206990242,0.0819666758179665,-0.647059559822083,-0.762536108493805,-0.0337481535971165,-0.646064758300781,-0.681329846382141,-0.379535406827927,0.625893294811249,-0.653728187084198,-0.565129578113556,0.503257393836975,-0.777797222137451,-0.320862472057343,0.540443122386932,-0.860278248786926,0.445695489645004,0.247541561722755,-0.910981953144073,0.323476374149323,0.25588071346283,-0.660029172897339,-0.375889301300049,0.650437295436859,-0.414403676986694,0.803779304027557,0.426858812570572,-0.910981953144073,0.323476374149323,0.25588071346283,-0.663997352123261,-0.412287265062332,0.623800337314606,-0.660029172897339,-0.375889301300049,0.650437295436859,-0.860278248786926,0.445695489645004,0.247541561722755,-0.41496667265892,0.814359962940216,0.40573439002037,-0.785192906856537,0.0514450669288635,-0.61711061000824,-0.76974755525589,0.00680050533264875,-0.638312339782715,0.335646599531174,-0.818586885929108,-0.466108173131943,-0.58627861738205,-0.580324828624725,0.565243661403656,-0.744590759277344,-0.0555411241948605,-0.665206670761108,-0.681329846382141,-0.379535406827927,0.625893294811249,-0.439433813095093,0.801626265048981,0.405330926179886,-0.499093621969223,0.798260688781738,0.337172597646713,-0.68993479013443,-0.385256737470627,0.612835347652435,0.4061558842659,0.0502128936350346,0.912423133850098,-0.529797792434692,0.794465899467468,0.296881079673767,-0.815089166164398,-0.305162161588669,0.492448747158051,0.427428871393204,-0.00482526235282421,0.904036104679108,-0.734159827232361,-0.549969017505646,0.398175299167633,0.501699984073639,-0.826782047748566,-0.254418164491653,0.511574506759644,-0.825544893741608,-0.238258391618729,-0.710422039031982,-0.546265423297882,0.443728178739548,
- -0.834398031234741,-0.319946855306625,0.448791712522507,-0.734159827232361,-0.549969017505646,0.398175299167633,-0.710422039031982,-0.546265423297882,0.443728178739548,-0.815089166164398,-0.305162161588669,0.492448747158051,0.501699984073639,-0.826782047748566,-0.254418164491653,0.516767144203186,-0.807313501834869,-0.284950435161591,-0.0358549319207668,-0.998131930828094,0.0494694262742996,-0.0137736313045025,-0.995647490024567,0.0921757742762566,0.511574506759644,-0.825544893741608,-0.238258391618729,-0.808539032936096,-0.298956394195557,0.506842970848084,-0.518834888935089,0.80478048324585,0.288337886333466,-0.459039211273193,0.788447976112366,0.409429877996445,-0.754560351371765,-0.334671676158905,0.564476370811462,0.49154269695282,-0.863646447658539,0.111805640161037,-0.514299511909485,-0.597869217395782,0.61485630273819,-0.561949968338013,-0.590349495410919,0.579395949840546,0.368945896625519,-0.820000171661377,-0.437582671642303,-0.64124721288681,-0.414441257715225,0.645786643028259,-0.310356497764587,0.802130401134491,0.51016229391098,-0.356819927692413,0.799979329109192,0.482402980327606,-0.645927429199219,-0.36374306678772,0.671169757843018,0.456970483064651,-0.809635937213898,-0.368330776691437,-0.627694368362427,-0.534641563892365,0.565825223922729,-0.651219010353088,-0.488173931837082,0.58103358745575,-0.0378145948052406,-0.917092323303223,-0.396877199411392,0.368945896625519,-0.820000171661377,-0.437582671642303,-0.561949968338013,-0.590349495410919,0.579395949840546,-0.58627861738205,-0.580324828624725,0.565243661403656,0.335646599531174,-0.818586885929108,-0.466108173131943,0.368945896625519,-0.820000171661377,-0.437582671642303,0.426921039819717,-0.802482128143311,-0.416846334934235,0.49154269695282,-0.863646447658539,0.111805640161037,0.436262577772141,-0.81887149810791,-0.372993975877762,-0.0254113953560591,-0.998364806175232,0.0512057840824127,-0.1049629971385,-0.993005454540253,-0.0540637820959091,-0.68993479013443,-0.385256737470627,0.612835347652435,-0.651219010353088,-0.488173931837082,0.58103358745575,
- -0.627694368362427,-0.534641563892365,0.565825223922729,-0.653728187084198,-0.565129578113556,0.503257393836975,-0.681329846382141,-0.379535406827927,0.625893294811249,-0.645927429199219,-0.36374306678772,0.671169757843018,-0.561949968338013,-0.590349495410919,0.579395949840546,-0.514299511909485,-0.597869217395782,0.61485630273819,-0.64124721288681,-0.414441257715225,0.645786643028259,-0.815089166164398,-0.305162161588669,0.492448747158051,-0.529797792434692,0.794465899467468,0.296881079673767,-0.55357438325882,0.791738033294678,0.258275628089905,-0.834398031234741,-0.319946855306625,0.448791712522507,-0.710422039031982,-0.546265423297882,0.443728178739548,0.511574506759644,-0.825544893741608,-0.238258391618729,0.472166538238525,-0.0525192469358444,0.879943430423737,0.425667524337769,-0.00953577645123005,0.904829382896423,-0.815089166164398,-0.305162161588669,0.492448747158051,-0.710422039031982,-0.546265423297882,0.443728178739548,0.425667524337769,-0.00953577645123005,0.904829382896423,0.427428871393204,-0.00482526235282421,0.904036104679108,0.511574506759644,-0.825544893741608,-0.238258391618729,-0.0137736313045025,-0.995647490024567,0.0921757742762566,0.439314156770706,-0.0282014328986406,0.897890686988831,0.472166538238525,-0.0525192469358444,0.879943430423737,-0.754560351371765,-0.334671676158905,0.564476370811462,-0.459039211273193,0.788447976112366,0.409429877996445,-0.445395529270172,0.792031586170197,0.41750305891037,-0.777797222137451,-0.320862472057343,0.540443122386932,-0.662515223026276,-0.570852696895599,0.484975129365921,-0.754560351371765,-0.334671676158905,0.564476370811462,-0.777797222137451,-0.320862472057343,0.540443122386932,-0.653728187084198,-0.565129578113556,0.503257393836975,-0.653728187084198,-0.565129578113556,0.503257393836975,0.436262577772141,-0.81887149810791,-0.372993975877762,0.42621448636055,-0.826718211174011,-0.367257565259933,-0.662515223026276,-0.570852696895599,0.484975129365921,0.436262577772141,-0.81887149810791,-0.372993975877762,-0.1049629971385,-0.993005454540253,-0.0540637820959091,
- -0.0480637177824974,-0.998551487922668,0.0241831336170435,0.42621448636055,-0.826718211174011,-0.367257565259933,-0.834398031234741,-0.319946855306625,0.448791712522507,-0.55357438325882,0.791738033294678,0.258275628089905,-0.518834888935089,0.80478048324585,0.288337886333466,-0.808539032936096,-0.298956394195557,0.506842970848084,-0.808539032936096,-0.298956394195557,0.506842970848084,-0.712227165699005,-0.559278845787048,0.424192905426025,-0.734159827232361,-0.549969017505646,0.398175299167633,-0.834398031234741,-0.319946855306625,0.448791712522507,-0.712227165699005,-0.559278845787048,0.424192905426025,0.723925471305847,-0.651841342449188,0.225908875465393,0.501699984073639,-0.826782047748566,-0.254418164491653,-0.734159827232361,-0.549969017505646,0.398175299167633,0.723925471305847,-0.651841342449188,0.225908875465393,0.516767144203186,-0.807313501834869,-0.284950435161591,0.501699984073639,-0.826782047748566,-0.254418164491653,0.516767144203186,-0.807313501834869,-0.284950435161591,-0.487565457820892,-0.482414364814758,-0.727706253528595,-0.0358549319207668,-0.998131930828094,0.0494694262742996,0.723925471305847,-0.651841342449188,0.225908875465393,0.134042665362358,-0.958292841911316,0.252403378486633,-0.487565457820892,-0.482414364814758,-0.727706253528595,0.516767144203186,-0.807313501834869,-0.284950435161591,0.436262577772141,-0.81887149810791,-0.372993975877762,0.456970483064651,-0.809635937213898,-0.368330776691437,0.426921039819717,-0.802482128143311,-0.416846334934235,-0.036020040512085,-0.998578310012817,0.0392909795045853,-0.0254113953560591,-0.998364806175232,0.0512057840824127,-0.645927429199219,-0.36374306678772,0.671169757843018,-0.356819927692413,0.799979329109192,0.482402980327606,-0.414403676986694,0.803779304027557,0.426858812570572,-0.660029172897339,-0.375889301300049,0.650437295436859,-0.663997352123261,-0.412287265062332,0.623800337314606,-0.58627861738205,-0.580324828624725,0.565243661403656,-0.561949968338013,-0.590349495410919,0.579395949840546,-0.645927429199219,-0.36374306678772,0.671169757843018,
- -0.660029172897339,-0.375889301300049,0.650437295436859,-0.68993479013443,-0.385256737470627,0.612835347652435,-0.499093621969223,0.798260688781738,0.337172597646713,-0.310356497764587,0.802130401134491,0.51016229391098,-0.64124721288681,-0.414441257715225,0.645786643028259,-0.64124721288681,-0.414441257715225,0.645786643028259,-0.514299511909485,-0.597869217395782,0.61485630273819,-0.651219010353088,-0.488173931837082,0.58103358745575,-0.68993479013443,-0.385256737470627,0.612835347652435,-0.0378145948052406,-0.917092323303223,-0.396877199411392,-0.651219010353088,-0.488173931837082,0.58103358745575,-0.514299511909485,-0.597869217395782,0.61485630273819,0.49154269695282,-0.863646447658539,0.111805640161037,0.426921039819717,-0.802482128143311,-0.416846334934235,0.456970483064651,-0.809635937213898,-0.368330776691437,-0.0378145948052406,-0.917092323303223,-0.396877199411392,-0.762536108493805,-0.0337481535971165,-0.646064758300781,-0.0985823199152946,-0.994889914989471,-0.0218079201877117,0.335646599531174,-0.818586885929108,-0.466108173131943,-0.744590759277344,-0.0555411241948605,-0.665206670761108,-0.0985823199152946,-0.994889914989471,-0.0218079201877117,-0.036020040512085,-0.998578310012817,0.0392909795045853,0.426921039819717,-0.802482128143311,-0.416846334934235,0.368945896625519,-0.820000171661377,-0.437582671642303,0.335646599531174,-0.818586885929108,-0.466108173131943,0.439314156770706,-0.0282014328986406,0.897890686988831,0.441831707954407,0.0741142928600311,0.894031226634979,0.4061558842659,0.0502128936350346,0.912423133850098,0.427428871393204,-0.00482526235282421,0.904036104679108,0.425667524337769,-0.00953577645123005,0.904829382896423,0.472166538238525,-0.0525192469358444,0.879943430423737,0.441831707954407,0.0741142928600311,0.894031226634979,-0.485154867172241,0.826281309127808,0.28615340590477,-0.529797792434692,0.794465899467468,0.296881079673767,0.4061558842659,0.0502128936350346,0.912423133850098,0.496513843536377,0.824156403541565,-0.272470325231552,0.441831707954407,0.0741142928600311,0.894031226634979,
- 0.475861191749573,0.0547202825546265,0.877816438674927,0.530181109905243,0.792038381099701,-0.302626997232437,-0.408220827579498,0.833141386508942,0.3731369972229,-0.7580206990242,0.0819666758179665,-0.647059559822083,-0.785192906856537,0.0514450669288635,-0.61711061000824,-0.41496667265892,0.814359962940216,0.40573439002037,0.468681961297989,0.823808312416077,-0.318868547677994,-0.51370507478714,0.825405478477478,0.234121665358543,-0.485154867172241,0.826281309127808,0.28615340590477,0.496513843536377,0.824156403541565,-0.272470325231552,-0.51370507478714,0.825405478477478,0.234121665358543,0.468681961297989,0.823808312416077,-0.318868547677994,0.430662274360657,0.826965272426605,-0.361466854810715,-0.502297580242157,0.829998135566711,0.242487743496895,-0.502297580242157,0.829998135566711,0.242487743496895,0.430662274360657,0.826965272426605,-0.361466854810715,0.490163803100586,0.822683990001678,-0.28797659277916,-0.416896313428879,0.824228644371033,0.383202999830246,0.368600279092789,0.832267045974731,-0.414083659648895,-0.456209927797318,0.833488643169403,0.311719566583633,-0.410221219062805,0.835304379463196,0.366039663553238,0.412565410137177,0.833750247955322,-0.366947263479233,-0.456209927797318,0.833488643169403,0.311719566583633,0.368600279092789,0.832267045974731,-0.414083659648895,0.517277240753174,0.822770357131958,-0.235527709126472,-0.225318655371666,0.822967171669006,0.521494507789612,-0.225318655371666,0.822967171669006,0.521494507789612,0.517277240753174,0.822770357131958,-0.235527709126472,0.401321321725845,0.834511816501617,-0.377533048391342,-0.344057440757751,0.833687543869019,0.431959986686707,-0.344057440757751,0.833687543869019,0.431959986686707,0.401321321725845,0.834511816501617,-0.377533048391342,0.345128834247589,0.833670973777771,-0.431136578321457,-0.408220827579498,0.833141386508942,0.3731369972229,0.503935039043427,0.819225013256073,-0.273714989423752,-0.397206246852875,0.824370205402374,0.403287798166275,-0.416896313428879,0.824228644371033,0.383202999830246,0.490163803100586,0.822683990001678,-0.28797659277916,
- -0.397206246852875,0.824370205402374,0.403287798166275,0.503935039043427,0.819225013256073,-0.273714989423752,0.412565410137177,0.833750247955322,-0.366947263479233,-0.410221219062805,0.835304379463196,0.366039663553238,0.533240139484406,0.787693023681641,-0.308536350727081,0.45596632361412,0.800603985786438,-0.388751685619354,0.412565410137177,0.833750247955322,-0.366947263479233,0.503935039043427,0.819225013256073,-0.273714989423752,0.529417991638184,0.787082195281982,-0.316572576761246,0.490163803100586,0.822683990001678,-0.28797659277916,0.430662274360657,0.826965272426605,-0.361466854810715,0.477467089891434,0.801115930080414,-0.360885709524155,0.529417991638184,0.787082195281982,-0.316572576761246,0.533240139484406,0.787693023681641,-0.308536350727081,0.503935039043427,0.819225013256073,-0.273714989423752,0.490163803100586,0.822683990001678,-0.28797659277916,0.477467089891434,0.801115930080414,-0.360885709524155,0.430662274360657,0.826965272426605,-0.361466854810715,0.468681961297989,0.823808312416077,-0.318868547677994,0.507041156291962,0.790467500686646,-0.343613713979721,0.45596632361412,0.800603985786438,-0.388751685619354,0.396873772144318,0.796984851360321,-0.455309242010117,0.368600279092789,0.832267045974731,-0.414083659648895,0.412565410137177,0.833750247955322,-0.366947263479233,0.368600279092789,0.832267045974731,-0.414083659648895,0.396873772144318,0.796984851360321,-0.455309242010117,0.511404752731323,0.799576580524445,-0.31486913561821,0.517277240753174,0.822770357131958,-0.235527709126472,0.468681961297989,0.823808312416077,-0.318868547677994,0.496513843536377,0.824156403541565,-0.272470325231552,0.530181109905243,0.792038381099701,-0.302626997232437,0.507041156291962,0.790467500686646,-0.343613713979721,0.401321321725845,0.834511816501617,-0.377533048391342,0.517277240753174,0.822770357131958,-0.235527709126472,0.511404752731323,0.799576580524445,-0.31486913561821,0.450240850448608,0.802753746509552,-0.390985429286957,0.345128834247589,0.833670973777771,-0.431136578321457,0.401321321725845,0.834511816501617,-0.377533048391342,
- 0.450240850448608,0.802753746509552,-0.390985429286957,0.396252334117889,0.804200947284698,-0.442995309829712,0.371935546398163,0.816707909107208,-0.441193968057632,-0.459039211273193,0.788447976112366,0.409429877996445,-0.518834888935089,0.80478048324585,0.288337886333466,-0.502297580242157,0.829998135566711,0.242487743496895,-0.416896313428879,0.824228644371033,0.383202999830246,-0.459039211273193,0.788447976112366,0.409429877996445,-0.416896313428879,0.824228644371033,0.383202999830246,-0.397206246852875,0.824370205402374,0.403287798166275,-0.445395529270172,0.792031586170197,0.41750305891037,-0.518834888935089,0.80478048324585,0.288337886333466,-0.55357438325882,0.791738033294678,0.258275628089905,-0.51370507478714,0.825405478477478,0.234121665358543,-0.502297580242157,0.829998135566711,0.242487743496895,-0.439433813095093,0.801626265048981,0.405330926179886,-0.410221219062805,0.835304379463196,0.366039663553238,-0.456209927797318,0.833488643169403,0.311719566583633,-0.499093621969223,0.798260688781738,0.337172597646713,-0.456209927797318,0.833488643169403,0.311719566583633,-0.225318655371666,0.822967171669006,0.521494507789612,-0.310356497764587,0.802130401134491,0.51016229391098,-0.499093621969223,0.798260688781738,0.337172597646713,-0.485154867172241,0.826281309127808,0.28615340590477,-0.51370507478714,0.825405478477478,0.234121665358543,-0.55357438325882,0.791738033294678,0.258275628089905,-0.529797792434692,0.794465899467468,0.296881079673767,-0.225318655371666,0.822967171669006,0.521494507789612,-0.344057440757751,0.833687543869019,0.431959986686707,-0.356819927692413,0.799979329109192,0.482402980327606,-0.310356497764587,0.802130401134491,0.51016229391098,-0.445395529270172,0.792031586170197,0.41750305891037,-0.397206246852875,0.824370205402374,0.403287798166275,-0.410221219062805,0.835304379463196,0.366039663553238,-0.439433813095093,0.801626265048981,0.405330926179886,-0.344057440757751,0.833687543869019,0.431959986686707,-0.408220827579498,0.833141386508942,0.3731369972229,-0.41496667265892,0.814359962940216,0.40573439002037,
- -0.414403676986694,0.803779304027557,0.426858812570572,-0.356819927692413,0.799979329109192,0.482402980327606,-0.485154867172241,0.826281309127808,0.28615340590477,0.441831707954407,0.0741142928600311,0.894031226634979,0.496513843536377,0.824156403541565,-0.272470325231552,-0.408220827579498,0.833141386508942,0.3731369972229,0.345128834247589,0.833670973777771,-0.431136578321457,-0.7580206990242,0.0819666758179665,-0.647059559822083,0.861648082733154,-0.000533883809112012,0.50750595331192,-0.374548077583313,-0.413747578859329,0.829775154590607,-0.352068662643433,-0.592996835708618,0.724156320095062,0.880699634552002,-0.0566331818699837,0.470277547836304,0.863805413246155,0.00693201366811991,0.503777801990509,0.0539974644780159,0.448028177022934,0.892387330532074,0.0624856315553188,0.32524448633194,0.943563222885132,0.863805413246155,0.00693201366811991,0.503777801990509,0.0624856315553188,0.32524448633194,0.943563222885132,-0.374548077583313,-0.413747578859329,0.829775154590607,0.861648082733154,-0.000533883809112012,0.50750595331192,-0.222596287727356,0.80036872625351,0.55665135383606,0.0539974644780159,0.448028177022934,0.892387330532074,-0.20038865506649,0.809911489486694,0.551260113716125,-0.256479233503342,-0.563242435455322,0.785478472709656,-0.124115332961082,-0.559817671775818,0.819267630577087,-0.47123709321022,-0.657936096191406,-0.587414443492889,0.114146254956722,-0.826514184474945,-0.551221251487732,-0.124115332961082,-0.559817671775818,0.819267630577087,-0.256479233503342,-0.563242435455322,0.785478472709656,-0.278235852718353,-0.324071317911148,0.904191613197327,-0.165326818823814,-0.298847258090973,0.939870953559875,-0.252624064683914,-0.330578863620758,0.909339666366577,-0.361858248710632,-0.378086417913437,0.852120399475098,-0.219546034932137,0.805338740348816,0.550662457942963,-0.14503975212574,0.795730888843536,0.588027060031891,0.114146254956722,-0.826514184474945,-0.551221251487732,-0.47123709321022,-0.657936096191406,-0.587414443492889,-0.278438210487366,-0.960031270980835,-0.0284956097602844,
- -0.0811382532119751,-0.995901644229889,0.0399556346237659,0.15286248922348,-0.821571350097656,-0.549229979515076,0.18510465323925,-0.81248414516449,-0.552816092967987,-0.327779591083527,-0.533353626728058,0.779804170131683,-0.272131085395813,-0.56856644153595,0.776322662830353,0.223608538508415,-0.803185284137726,-0.552170932292938,-0.261184811592102,-0.867607831954956,-0.423130124807358,0.380891919136047,-0.919195175170898,-0.100008144974709,0.880699634552002,-0.0566331818699837,0.470277547836304,0.86866295337677,-0.0344743877649307,0.494202554225922,0.867974400520325,0.0835617408156395,0.48952841758728,0.848910987377167,0.0523957572877407,0.525932312011719,0.863805413246155,0.00693201366811991,0.503777801990509,0.861648082733154,-0.000533883809112012,0.50750595331192,-0.361858248710632,-0.378086417913437,0.852120399475098,-0.252624064683914,-0.330578863620758,0.909339666366577,-0.272131085395813,-0.56856644153595,0.776322662830353,0.0539974644780159,0.448028177022934,0.892387330532074,-0.222596287727356,0.80036872625351,0.55665135383606,-0.401934444904327,-0.385028481483459,0.830783903598785,0.0624856315553188,0.32524448633194,0.943563222885132,0.0624856315553188,0.32524448633194,0.943563222885132,-0.401934444904327,-0.385028481483459,0.830783903598785,-0.374548077583313,-0.413747578859329,0.829775154590607,0.0539974644780159,0.448028177022934,0.892387330532074,0.863805413246155,0.00693201366811991,0.503777801990509,0.848910987377167,0.0523957572877407,0.525932312011719,-0.20038865506649,0.809911489486694,0.551260113716125,0.30086287856102,-0.820598542690277,-0.485900908708572,0.880699634552002,-0.0566331818699837,0.470277547836304,-0.352068662643433,-0.592996835708618,0.724156320095062,-0.361858248710632,-0.378086417913437,0.852120399475098,-0.348816782236099,-0.386350005865097,0.853850483894348,-0.148555442690849,0.801141321659088,0.579744637012482,-0.219546034932137,0.805338740348816,0.550662457942963,-0.997037470340729,0.0513408146798611,-0.0572737008333206,-0.996734738349915,-0.00486291944980621,-0.0805991664528847,
- -0.130135327577591,-0.316193163394928,0.939726948738098,-0.172426015138626,0.789715707302094,0.588743150234222,-0.0376450680196285,-0.538251578807831,0.841943144798279,-0.0991881340742111,-0.553913712501526,0.826644599437714,0.11361151188612,-0.82668149471283,-0.551080822944641,0.139260739088058,-0.825468122959137,-0.546999871730804,-0.0686961635947227,-0.307536065578461,0.949053406715393,-0.130135327577591,-0.316193163394928,0.939726948738098,-0.0991881340742111,-0.553913712501526,0.826644599437714,-0.0376450680196285,-0.538251578807831,0.841943144798279,0.139260739088058,-0.825468122959137,-0.546999871730804,0.11361151188612,-0.82668149471283,-0.551080822944641,0.00552593357861042,-0.998551189899445,0.0535257607698441,0.0671466514468193,-0.995823860168457,0.0618555843830109,0.163401797413826,-0.804525434970856,-0.570997953414917,-0.165326818823814,-0.298847258090973,0.939870953559875,-0.278235852718353,-0.324071317911148,0.904191613197327,-0.132764503359795,0.794086396694183,0.593127727508545,-0.0723910182714462,0.805003345012665,0.588837087154388,-0.261184811592102,-0.867607831954956,-0.423130124807358,0.254970610141754,-0.820806682109833,-0.511142194271088,-0.379593372344971,-0.597097873687744,0.706670343875885,-0.406388968229294,-0.598550617694855,0.69035142660141,-0.394591569900513,-0.413940727710724,0.820335626602173,-0.428980797529221,-0.368617445230484,0.824679791927338,-0.305394351482391,0.801591217517853,0.513990044593811,-0.375187158584595,0.802688956260681,0.463600248098373,0.18510465323925,-0.81248414516449,-0.552816092967987,0.380891919136047,-0.919195175170898,-0.100008144974709,-0.333849191665649,-0.484982788562775,0.808292269706726,-0.327779591083527,-0.533353626728058,0.779804170131683,0.254970610141754,-0.820806682109833,-0.511142194271088,0.30086287856102,-0.820598542690277,-0.485900908708572,-0.352068662643433,-0.592996835708618,0.724156320095062,-0.379593372344971,-0.597097873687744,0.706670343875885,0.254970610141754,-0.820806682109833,-0.511142194271088,-0.261184811592102,-0.867607831954956,-0.423130124807358,
- 0.223608538508415,-0.803185284137726,-0.552170932292938,0.15286248922348,-0.821571350097656,-0.549229979515076,-0.0203478895127773,-0.998318076133728,0.054285816848278,-0.0505187436938286,-0.997919321060181,0.0400589890778065,-0.348816782236099,-0.386350005865097,0.853850483894348,-0.361858248710632,-0.378086417913437,0.852120399475098,-0.272131085395813,-0.56856644153595,0.776322662830353,-0.327779591083527,-0.533353626728058,0.779804170131683,-0.333849191665649,-0.484982788562775,0.808292269706726,-0.428980797529221,-0.368617445230484,0.824679791927338,-0.394591569900513,-0.413940727710724,0.820335626602173,-0.406388968229294,-0.598550617694855,0.69035142660141,-0.379593372344971,-0.597097873687744,0.706670343875885,-0.130135327577591,-0.316193163394928,0.939726948738098,-0.0686961635947227,-0.307536065578461,0.949053406715393,-0.114150494337082,0.794030427932739,0.597063899040222,-0.172426015138626,0.789715707302094,0.588743150234222,-0.0991881340742111,-0.553913712501526,0.826644599437714,-0.996857941150665,-0.00969242118299007,-0.078615166246891,-0.989789247512817,-0.0536522157490253,-0.132056131958961,0.11361151188612,-0.82668149471283,-0.551080822944641,-0.130135327577591,-0.316193163394928,0.939726948738098,-0.996734738349915,-0.00486291944980621,-0.0805991664528847,-0.996857941150665,-0.00969242118299007,-0.078615166246891,-0.0991881340742111,-0.553913712501526,0.826644599437714,0.11361151188612,-0.82668149471283,-0.551080822944641,-0.989789247512817,-0.0536522157490253,-0.132056131958961,-0.995128452777863,-0.028948375955224,-0.0942406952381134,0.00552593357861042,-0.998551189899445,0.0535257607698441,-0.278235852718353,-0.324071317911148,0.904191613197327,-0.252624064683914,-0.330578863620758,0.909339666366577,-0.14503975212574,0.795730888843536,0.588027060031891,-0.132764503359795,0.794086396694183,0.593127727508545,-0.256479233503342,-0.563242435455322,0.785478472709656,-0.272131085395813,-0.56856644153595,0.776322662830353,-0.252624064683914,-0.330578863620758,0.909339666366577,-0.278235852718353,-0.324071317911148,0.904191613197327,
- -0.272131085395813,-0.56856644153595,0.776322662830353,-0.256479233503342,-0.563242435455322,0.785478472709656,0.114146254956722,-0.826514184474945,-0.551221251487732,0.15286248922348,-0.821571350097656,-0.549229979515076,0.15286248922348,-0.821571350097656,-0.549229979515076,0.114146254956722,-0.826514184474945,-0.551221251487732,-0.0811382532119751,-0.995901644229889,0.0399556346237659,-0.0203478895127773,-0.998318076133728,0.054285816848278,-0.0686961635947227,-0.307536065578461,0.949053406715393,-0.165326818823814,-0.298847258090973,0.939870953559875,-0.0723910182714462,0.805003345012665,0.588837087154388,-0.114150494337082,0.794030427932739,0.597063899040222,-0.165326818823814,-0.298847258090973,0.939870953559875,-0.0686961635947227,-0.307536065578461,0.949053406715393,-0.0376450680196285,-0.538251578807831,0.841943144798279,-0.124115332961082,-0.559817671775818,0.819267630577087,-0.124115332961082,-0.559817671775818,0.819267630577087,-0.0376450680196285,-0.538251578807831,0.841943144798279,0.139260739088058,-0.825468122959137,-0.546999871730804,-0.47123709321022,-0.657936096191406,-0.587414443492889,-0.47123709321022,-0.657936096191406,-0.587414443492889,0.139260739088058,-0.825468122959137,-0.546999871730804,0.163401797413826,-0.804525434970856,-0.570997953414917,0.163401797413826,-0.804525434970856,-0.570997953414917,0.0671466514468193,-0.995823860168457,0.0618555843830109,0.853187680244446,-0.49088454246521,0.176360905170441,-0.47123709321022,-0.657936096191406,-0.587414443492889,0.163401797413826,-0.804525434970856,-0.570997953414917,0.853187680244446,-0.49088454246521,0.176360905170441,-0.278438210487366,-0.960031270980835,-0.0284956097602844,0.15286248922348,-0.821571350097656,-0.549229979515076,-0.0505187436938286,-0.997919321060181,0.0400589890778065,-0.0463946759700775,-0.998204708099365,0.037879791110754,0.223608538508415,-0.803185284137726,-0.552170932292938,0.18510465323925,-0.81248414516449,-0.552816092967987,-0.428980797529221,-0.368617445230484,0.824679791927338,-0.401934444904327,-0.385028481483459,0.830783903598785,
- -0.222596287727356,0.80036872625351,0.55665135383606,-0.305394351482391,0.801591217517853,0.513990044593811,-0.374548077583313,-0.413747578859329,0.829775154590607,-0.401934444904327,-0.385028481483459,0.830783903598785,-0.428980797529221,-0.368617445230484,0.824679791927338,-0.379593372344971,-0.597097873687744,0.706670343875885,-0.352068662643433,-0.592996835708618,0.724156320095062,-0.348816782236099,-0.386350005865097,0.853850483894348,-0.394591569900513,-0.413940727710724,0.820335626602173,-0.375187158584595,0.802688956260681,0.463600248098373,-0.148555442690849,0.801141321659088,0.579744637012482,-0.394591569900513,-0.413940727710724,0.820335626602173,-0.348816782236099,-0.386350005865097,0.853850483894348,-0.333849191665649,-0.484982788562775,0.808292269706726,-0.406388968229294,-0.598550617694855,0.69035142660141,0.380891919136047,-0.919195175170898,-0.100008144974709,-0.261184811592102,-0.867607831954956,-0.423130124807358,-0.406388968229294,-0.598550617694855,0.69035142660141,-0.333849191665649,-0.484982788562775,0.808292269706726,0.223608538508415,-0.803185284137726,-0.552170932292938,0.380891919136047,-0.919195175170898,-0.100008144974709,0.18510465323925,-0.81248414516449,-0.552816092967987,0.867974400520325,0.0835617408156395,0.48952841758728,-0.170051723718643,0.828179955482483,0.534041583538055,-0.20038865506649,0.809911489486694,0.551260113716125,0.848910987377167,0.0523957572877407,0.525932312011719,0.0262139867991209,-0.997309386730194,0.0684602558612823,0.86866295337677,-0.0344743877649307,0.494202554225922,0.880699634552002,-0.0566331818699837,0.470277547836304,0.30086287856102,-0.820598542690277,-0.485900908708572,-0.0463946759700775,-0.998204708099365,0.037879791110754,0.0262139867991209,-0.997309386730194,0.0684602558612823,0.30086287856102,-0.820598542690277,-0.485900908708572,0.254970610141754,-0.820806682109833,-0.511142194271088,0.223608538508415,-0.803185284137726,-0.552170932292938,-0.992268681526184,0.0761222392320633,-0.0980220511555672,-0.995128452777863,-0.028948375955224,-0.0942406952381134,
- -0.989789247512817,-0.0536522157490253,-0.132056131958961,-0.996857941150665,-0.00969242118299007,-0.078615166246891,-0.996734738349915,-0.00486291944980621,-0.0805991664528847,-0.997037470340729,0.0513408146798611,-0.0572737008333206,0.879195690155029,-0.000409495347412303,0.476460695266724,0.853899359703064,-0.0640922710299492,0.516476631164551,0.382729798555374,-0.595464706420898,-0.706356704235077,0.454023838043213,-0.426704257726669,-0.782167375087738,0.876692473888397,0.00855824165046215,0.480975061655045,0.781909286975861,0.344054132699966,-0.519850432872772,0.733272790908813,0.470342010259628,-0.491008549928665,0.876692473888397,0.00855824165046215,0.480975061655045,0.879195690155029,-0.000409495347412303,0.476460695266724,0.454023838043213,-0.426704257726669,-0.782167375087738,0.781909286975861,0.344054132699966,-0.519850432872772,0.319999635219574,0.800443053245544,-0.506844282150269,0.329227596521378,0.811482608318329,-0.482809573411942,0.733272790908813,0.470342010259628,-0.491008549928665,0.174943134188652,-0.556272149085999,-0.812376856803894,-0.171526536345482,-0.829923331737518,0.530853807926178,-0.622924208641052,-0.680999517440796,0.384974360466003,0.196103617548943,-0.553024888038635,-0.809757173061371,0.196103617548943,-0.553024888038635,-0.809757173061371,0.19874432682991,-0.295601218938828,-0.934409201145172,0.211330905556679,-0.321655124425888,-0.922971963882446,0.174943134188652,-0.556272149085999,-0.812376856803894,0.237965732812881,-0.322400599718094,-0.916204154491425,0.167848855257034,0.790025889873505,-0.589649021625519,0.218002393841743,0.803681194782257,-0.553688883781433,0.329652786254883,-0.370790332555771,-0.868241667747498,-0.171526536345482,-0.829923331737518,0.530853807926178,-0.0811382532119751,-0.995901644229889,0.0399556346237659,-0.278438210487366,-0.960031270980835,-0.0284956097602844,-0.622924208641052,-0.680999517440796,0.384974360466003,-0.200042858719826,-0.826808273792267,0.525709867477417,0.248014464974403,-0.555541753768921,-0.793638586997986,0.306334316730499,-0.519176125526428,-0.797881901264191,
- -0.243101239204407,-0.816432237625122,0.523774981498718,-0.261232942342758,-0.803707659244537,0.534613490104675,0.126177832484245,-0.932723462581635,0.33779576420784,-0.437979489564896,-0.893490433692932,0.0992409363389015,0.853899359703064,-0.0640922710299492,0.516476631164551,0.879195690155029,-0.000409495347412303,0.476460695266724,0.876692473888397,0.00855824165046215,0.480975061655045,0.888332664966583,0.0566375963389874,0.455694228410721,0.867974400520325,0.0835617408156395,0.48952841758728,0.86866295337677,-0.0344743877649307,0.494202554225922,0.329652786254883,-0.370790332555771,-0.868241667747498,0.248014464974403,-0.555541753768921,-0.793638586997986,0.237965732812881,-0.322400599718094,-0.916204154491425,0.733272790908813,0.470342010259628,-0.491008549928665,0.781909286975861,0.344054132699966,-0.519850432872772,0.43566370010376,-0.404711872339249,-0.803993463516235,0.319999635219574,0.800443053245544,-0.506844282150269,0.781909286975861,0.344054132699966,-0.519850432872772,0.454023838043213,-0.426704257726669,-0.782167375087738,0.43566370010376,-0.404711872339249,-0.803993463516235,0.733272790908813,0.470342010259628,-0.491008549928665,0.329227596521378,0.811482608318329,-0.482809573411942,0.888332664966583,0.0566375963389874,0.455694228410721,0.876692473888397,0.00855824165046215,0.480975061655045,-0.225933596491814,-0.821722447872162,0.523188531398773,0.382729798555374,-0.595464706420898,-0.706356704235077,0.853899359703064,-0.0640922710299492,0.516476631164551,0.329652786254883,-0.370790332555771,-0.868241667747498,0.218002393841743,0.803681194782257,-0.553688883781433,0.289895951747894,0.799189448356628,-0.526551604270935,0.340945720672607,-0.377683043479919,-0.860878348350525,-0.989087820053101,0.0558252446353436,-0.136341616511345,0.00869229435920715,0.787819087505341,-0.615845322608948,0.138720288872719,-0.316279739141464,-0.938468813896179,-0.993604362010956,-0.00593995908275247,-0.112761564552784,0.190260082483292,-0.531571269035339,-0.825368344783783,-0.0263353679329157,-0.829230487346649,0.558286070823669,
- -0.0507255755364895,-0.829394578933716,0.556355476379395,0.135278671979904,-0.543449103832245,-0.82847011089325,0.194406107068062,-0.310371100902557,-0.93052464723587,0.190260082483292,-0.531571269035339,-0.825368344783783,0.135278671979904,-0.543449103832245,-0.82847011089325,0.138720288872719,-0.316279739141464,-0.938468813896179,-0.0263353679329157,-0.829230487346649,0.558286070823669,-0.0139046357944608,-0.803309857845306,0.595398962497711,0.0671466514468193,-0.995823860168457,0.0618555843830109,0.00552593357861042,-0.998551189899445,0.0535257607698441,-0.0507255755364895,-0.829394578933716,0.556355476379395,0.19874432682991,-0.295601218938828,-0.934409201145172,0.153668254613876,0.800926089286804,-0.578708529472351,0.174726918339729,0.791641414165497,-0.585469424724579,0.211330905556679,-0.321655124425888,-0.922971963882446,-0.437979489564896,-0.893490433692932,0.0992409363389015,0.281545758247375,-0.60238653421402,-0.74690181016922,0.356729596853256,-0.598750829696655,-0.717106223106384,-0.267038464546204,-0.822913885116577,0.501501023769379,0.382093608379364,-0.407740265130997,-0.829308390617371,0.130135461688042,0.799778759479523,-0.586019337177277,0.241759464144707,0.803471446037292,-0.544046103954315,0.417042165994644,-0.383679360151291,-0.823933184146881,-0.243101239204407,-0.816432237625122,0.523774981498718,0.306334316730499,-0.519176125526428,-0.797881901264191,0.320730656385422,-0.476952821016312,-0.818320155143738,0.126177832484245,-0.932723462581635,0.33779576420784,-0.267038464546204,-0.822913885116577,0.501501023769379,0.356729596853256,-0.598750829696655,-0.717106223106384,0.382729798555374,-0.595464706420898,-0.706356704235077,-0.225933596491814,-0.821722447872162,0.523188531398773,-0.267038464546204,-0.822913885116577,0.501501023769379,-0.261232942342758,-0.803707659244537,0.534613490104675,-0.437979489564896,-0.893490433692932,0.0992409363389015,-0.200042858719826,-0.826808273792267,0.525709867477417,-0.0505187436938286,-0.997919321060181,0.0400589890778065,-0.0203478895127773,-0.998318076133728,0.054285816848278,
- 0.340945720672607,-0.377683043479919,-0.860878348350525,0.320730656385422,-0.476952821016312,-0.818320155143738,0.306334316730499,-0.519176125526428,-0.797881901264191,0.248014464974403,-0.555541753768921,-0.793638586997986,0.329652786254883,-0.370790332555771,-0.868241667747498,0.417042165994644,-0.383679360151291,-0.823933184146881,0.356729596853256,-0.598750829696655,-0.717106223106384,0.281545758247375,-0.60238653421402,-0.74690181016922,0.382093608379364,-0.407740265130997,-0.829308390617371,0.138720288872719,-0.316279739141464,-0.938468813896179,0.00869229435920715,0.787819087505341,-0.615845322608948,0.0674919858574867,0.792676448822021,-0.605895161628723,0.194406107068062,-0.310371100902557,-0.93052464723587,0.135278671979904,-0.543449103832245,-0.82847011089325,-0.0507255755364895,-0.829394578933716,0.556355476379395,-0.996779322624207,-0.0580812022089958,-0.0552955307066441,-0.9932861328125,-0.0117663089185953,-0.115083321928978,0.138720288872719,-0.316279739141464,-0.938468813896179,0.135278671979904,-0.543449103832245,-0.82847011089325,-0.9932861328125,-0.0117663089185953,-0.115083321928978,-0.993604362010956,-0.00593995908275247,-0.112761564552784,-0.0507255755364895,-0.829394578933716,0.556355476379395,0.00552593357861042,-0.998551189899445,0.0535257607698441,-0.995128452777863,-0.028948375955224,-0.0942406952381134,-0.996779322624207,-0.0580812022089958,-0.0552955307066441,0.211330905556679,-0.321655124425888,-0.922971963882446,0.174726918339729,0.791641414165497,-0.585469424724579,0.167848855257034,0.790025889873505,-0.589649021625519,0.237965732812881,-0.322400599718094,-0.916204154491425,0.174943134188652,-0.556272149085999,-0.812376856803894,0.211330905556679,-0.321655124425888,-0.922971963882446,0.237965732812881,-0.322400599718094,-0.916204154491425,0.248014464974403,-0.555541753768921,-0.793638586997986,0.248014464974403,-0.555541753768921,-0.793638586997986,-0.200042858719826,-0.826808273792267,0.525709867477417,-0.171526536345482,-0.829923331737518,0.530853807926178,0.174943134188652,-0.556272149085999,-0.812376856803894,
- -0.200042858719826,-0.826808273792267,0.525709867477417,-0.0203478895127773,-0.998318076133728,0.054285816848278,-0.0811382532119751,-0.995901644229889,0.0399556346237659,-0.171526536345482,-0.829923331737518,0.530853807926178,0.194406107068062,-0.310371100902557,-0.93052464723587,0.0674919858574867,0.792676448822021,-0.605895161628723,0.153668254613876,0.800926089286804,-0.578708529472351,0.19874432682991,-0.295601218938828,-0.934409201145172,0.19874432682991,-0.295601218938828,-0.934409201145172,0.196103617548943,-0.553024888038635,-0.809757173061371,0.190260082483292,-0.531571269035339,-0.825368344783783,0.194406107068062,-0.310371100902557,-0.93052464723587,0.196103617548943,-0.553024888038635,-0.809757173061371,-0.622924208641052,-0.680999517440796,0.384974360466003,-0.0263353679329157,-0.829230487346649,0.558286070823669,0.190260082483292,-0.531571269035339,-0.825368344783783,-0.622924208641052,-0.680999517440796,0.384974360466003,-0.0139046357944608,-0.803309857845306,0.595398962497711,-0.0263353679329157,-0.829230487346649,0.558286070823669,-0.0139046357944608,-0.803309857845306,0.595398962497711,0.853187680244446,-0.49088454246521,0.176360905170441,0.0671466514468193,-0.995823860168457,0.0618555843830109,-0.622924208641052,-0.680999517440796,0.384974360466003,-0.278438210487366,-0.960031270980835,-0.0284956097602844,0.853187680244446,-0.49088454246521,0.176360905170441,-0.0139046357944608,-0.803309857845306,0.595398962497711,-0.200042858719826,-0.826808273792267,0.525709867477417,-0.243101239204407,-0.816432237625122,0.523774981498718,-0.261232942342758,-0.803707659244537,0.534613490104675,-0.0463946759700775,-0.998204708099365,0.037879791110754,-0.0505187436938286,-0.997919321060181,0.0400589890778065,0.417042165994644,-0.383679360151291,-0.823933184146881,0.241759464144707,0.803471446037292,-0.544046103954315,0.319999635219574,0.800443053245544,-0.506844282150269,0.43566370010376,-0.404711872339249,-0.803993463516235,0.454023838043213,-0.426704257726669,-0.782167375087738,0.382729798555374,-0.595464706420898,-0.706356704235077,
- 0.356729596853256,-0.598750829696655,-0.717106223106384,0.417042165994644,-0.383679360151291,-0.823933184146881,0.43566370010376,-0.404711872339249,-0.803993463516235,0.340945720672607,-0.377683043479919,-0.860878348350525,0.289895951747894,0.799189448356628,-0.526551604270935,0.130135461688042,0.799778759479523,-0.586019337177277,0.382093608379364,-0.407740265130997,-0.829308390617371,0.382093608379364,-0.407740265130997,-0.829308390617371,0.281545758247375,-0.60238653421402,-0.74690181016922,0.320730656385422,-0.476952821016312,-0.818320155143738,0.340945720672607,-0.377683043479919,-0.860878348350525,0.126177832484245,-0.932723462581635,0.33779576420784,0.320730656385422,-0.476952821016312,-0.818320155143738,0.281545758247375,-0.60238653421402,-0.74690181016922,-0.437979489564896,-0.893490433692932,0.0992409363389015,-0.261232942342758,-0.803707659244537,0.534613490104675,-0.243101239204407,-0.816432237625122,0.523774981498718,0.126177832484245,-0.932723462581635,0.33779576420784,0.86866295337677,-0.0344743877649307,0.494202554225922,0.0262139867991209,-0.997309386730194,0.0684602558612823,-0.225933596491814,-0.821722447872162,0.523188531398773,0.853899359703064,-0.0640922710299492,0.516476631164551,0.0262139867991209,-0.997309386730194,0.0684602558612823,-0.0463946759700775,-0.998204708099365,0.037879791110754,-0.261232942342758,-0.803707659244537,0.534613490104675,-0.267038464546204,-0.822913885116577,0.501501023769379,-0.225933596491814,-0.821722447872162,0.523188531398773,-0.995128452777863,-0.028948375955224,-0.0942406952381134,-0.992268681526184,0.0761222392320633,-0.0980220511555672,-0.989087820053101,0.0558252446353436,-0.136341616511345,-0.993604362010956,-0.00593995908275247,-0.112761564552784,-0.9932861328125,-0.0117663089185953,-0.115083321928978,-0.996779322624207,-0.0580812022089958,-0.0552955307066441,-0.992268681526184,0.0761222392320633,-0.0980220511555672,-0.0108517855405808,0.820090115070343,-0.572131514549255,0.00869229435920715,0.787819087505341,-0.615845322608948,-0.989087820053101,0.0558252446353436,-0.136341616511345,
- -0.181394815444946,0.821207940578461,0.541029930114746,-0.992268681526184,0.0761222392320633,-0.0980220511555672,-0.997037470340729,0.0513408146798611,-0.0572737008333206,-0.172426015138626,0.789715707302094,0.588743150234222,0.329893350601196,0.828566133975983,-0.452381074428558,0.867974400520325,0.0835617408156395,0.48952841758728,0.888332664966583,0.0566375963389874,0.455694228410721,0.329227596521378,0.811482608318329,-0.482809573411942,-0.106389902532101,0.826765835285187,0.552394270896912,0.0574782155454159,0.825094223022461,-0.562063753604889,-0.0108517855405808,0.820090115070343,-0.572131514549255,-0.181394815444946,0.821207940578461,0.541029930114746,0.0574782155454159,0.825094223022461,-0.562063753604889,-0.106389902532101,0.826765835285187,0.552394270896912,-0.0368788093328476,0.830311596393585,0.556077778339386,0.170859396457672,0.826893389225006,-0.535774648189545,0.170859396457672,0.826893389225006,-0.535774648189545,-0.0368788093328476,0.830311596393585,0.556077778339386,-0.122323371469975,0.829050362110138,0.5456303358078,0.164604648947716,0.826160728931427,-0.53885418176651,-0.137528881430626,0.836551427841187,0.530346572399139,0.261498779058456,0.834730982780457,-0.484605371952057,0.210240080952644,0.83635401725769,-0.506271660327911,-0.194955632090569,0.838501811027527,0.508829057216644,0.261498779058456,0.834730982780457,-0.484605371952057,-0.137528881430626,0.836551427841187,0.530346572399139,-0.413527846336365,0.823800444602966,0.387746751308441,0.0538035929203033,0.823289811611176,-0.565065622329712,0.0538035929203033,0.823289811611176,-0.565065622329712,-0.413527846336365,0.823800444602966,0.387746751308441,-0.260216683149338,0.832942426204681,0.488358676433563,0.249606922268867,0.832940876483917,-0.493868291378021,0.249606922268867,0.832940876483917,-0.493868291378021,-0.260216683149338,0.832942426204681,0.488358676433563,-0.170051723718643,0.828179955482483,0.534041583538055,0.329893350601196,0.828566133975983,-0.452381074428558,-0.139991268515587,0.830340564250946,0.539385795593262,0.15401603281498,0.82339608669281,-0.546166479587555,
- 0.164604648947716,0.826160728931427,-0.53885418176651,-0.122323371469975,0.829050362110138,0.5456303358078,0.15401603281498,0.82339608669281,-0.546166479587555,-0.139991268515587,0.830340564250946,0.539385795593262,-0.194955632090569,0.838501811027527,0.508829057216644,0.210240080952644,0.83635401725769,-0.506271660327911,-0.14503975212574,0.795730888843536,0.588027060031891,-0.219546034932137,0.805338740348816,0.550662457942963,-0.194955632090569,0.838501811027527,0.508829057216644,-0.139991268515587,0.830340564250946,0.539385795593262,-0.132764503359795,0.794086396694183,0.593127727508545,-0.122323371469975,0.829050362110138,0.5456303358078,-0.0368788093328476,0.830311596393585,0.556077778339386,-0.0723910182714462,0.805003345012665,0.588837087154388,-0.132764503359795,0.794086396694183,0.593127727508545,-0.14503975212574,0.795730888843536,0.588027060031891,-0.139991268515587,0.830340564250946,0.539385795593262,-0.122323371469975,0.829050362110138,0.5456303358078,-0.0723910182714462,0.805003345012665,0.588837087154388,-0.0368788093328476,0.830311596393585,0.556077778339386,-0.106389902532101,0.826765835285187,0.552394270896912,-0.114150494337082,0.794030427932739,0.597063899040222,-0.219546034932137,0.805338740348816,0.550662457942963,-0.148555442690849,0.801141321659088,0.579744637012482,-0.137528881430626,0.836551427841187,0.530346572399139,-0.194955632090569,0.838501811027527,0.508829057216644,-0.137528881430626,0.836551427841187,0.530346572399139,-0.148555442690849,0.801141321659088,0.579744637012482,-0.375187158584595,0.802688956260681,0.463600248098373,-0.413527846336365,0.823800444602966,0.387746751308441,-0.106389902532101,0.826765835285187,0.552394270896912,-0.181394815444946,0.821207940578461,0.541029930114746,-0.172426015138626,0.789715707302094,0.588743150234222,-0.114150494337082,0.794030427932739,0.597063899040222,-0.260216683149338,0.832942426204681,0.488358676433563,-0.413527846336365,0.823800444602966,0.387746751308441,-0.375187158584595,0.802688956260681,0.463600248098373,-0.305394351482391,0.801591217517853,0.513990044593811,
- -0.170051723718643,0.828179955482483,0.534041583538055,-0.260216683149338,0.832942426204681,0.488358676433563,-0.305394351482391,0.801591217517853,0.513990044593811,-0.222596287727356,0.80036872625351,0.55665135383606,-0.20038865506649,0.809911489486694,0.551260113716125,0.174726918339729,0.791641414165497,-0.585469424724579,0.153668254613876,0.800926089286804,-0.578708529472351,0.170859396457672,0.826893389225006,-0.535774648189545,0.164604648947716,0.826160728931427,-0.53885418176651,0.174726918339729,0.791641414165497,-0.585469424724579,0.164604648947716,0.826160728931427,-0.53885418176651,0.15401603281498,0.82339608669281,-0.546166479587555,0.167848855257034,0.790025889873505,-0.589649021625519,0.153668254613876,0.800926089286804,-0.578708529472351,0.0674919858574867,0.792676448822021,-0.605895161628723,0.0574782155454159,0.825094223022461,-0.562063753604889,0.170859396457672,0.826893389225006,-0.535774648189545,0.218002393841743,0.803681194782257,-0.553688883781433,0.210240080952644,0.83635401725769,-0.506271660327911,0.261498779058456,0.834730982780457,-0.484605371952057,0.289895951747894,0.799189448356628,-0.526551604270935,0.261498779058456,0.834730982780457,-0.484605371952057,0.0538035929203033,0.823289811611176,-0.565065622329712,0.130135461688042,0.799778759479523,-0.586019337177277,0.289895951747894,0.799189448356628,-0.526551604270935,-0.0108517855405808,0.820090115070343,-0.572131514549255,0.0574782155454159,0.825094223022461,-0.562063753604889,0.0674919858574867,0.792676448822021,-0.605895161628723,0.00869229435920715,0.787819087505341,-0.615845322608948,0.0538035929203033,0.823289811611176,-0.565065622329712,0.249606922268867,0.832940876483917,-0.493868291378021,0.241759464144707,0.803471446037292,-0.544046103954315,0.130135461688042,0.799778759479523,-0.586019337177277,0.167848855257034,0.790025889873505,-0.589649021625519,0.15401603281498,0.82339608669281,-0.546166479587555,0.210240080952644,0.83635401725769,-0.506271660327911,0.218002393841743,0.803681194782257,-0.553688883781433,0.249606922268867,0.832940876483917,-0.493868291378021,
- 0.329893350601196,0.828566133975983,-0.452381074428558,0.329227596521378,0.811482608318329,-0.482809573411942,0.319999635219574,0.800443053245544,-0.506844282150269,0.241759464144707,0.803471446037292,-0.544046103954315,-0.0108517855405808,0.820090115070343,-0.572131514549255,-0.992268681526184,0.0761222392320633,-0.0980220511555672,-0.181394815444946,0.821207940578461,0.541029930114746,0.329893350601196,0.828566133975983,-0.452381074428558,-0.170051723718643,0.828179955482483,0.534041583538055,0.867974400520325,0.0835617408156395,0.48952841758728,-0.0179687160998583,-0.000440366449765861,0.999838411808014,-0.90340268611908,-0.427038937807083,0.0387474298477173,-0.806233704090118,-0.59137886762619,0.0160713717341423,0.0269265808165073,-0.0608357302844524,0.997784554958344,-0.0132160615175962,0.00783168058842421,0.999881982803345,-0.7723588347435,0.461393147706985,0.436552673578262,-0.81802773475647,0.336257070302963,0.46664959192276,-0.0132160615175962,0.00783168058842421,0.999881982803345,-0.81802773475647,0.336257070302963,0.46664959192276,-0.90340268611908,-0.427038937807083,0.0387474298477173,-0.0179687160998583,-0.000440366449765861,0.999838411808014,-0.596647322177887,0.801435172557831,0.0413950011134148,-0.7723588347435,0.461393147706985,0.436552673578262,-0.579465925693512,0.813038110733032,0.0564663000404835,-0.818587362766266,-0.569481313228607,0.074871301651001,-0.81104701757431,-0.559434056282043,0.170986503362656,0.385535836219788,-0.658435702323914,-0.646393537521362,0.561635196208954,-0.826828241348267,-0.0303457509726286,-0.81104701757431,-0.559434056282043,0.170986503362656,-0.818587362766266,-0.569481313228607,0.074871301651001,-0.939520597457886,-0.3326815366745,0.0813874825835228,-0.938210546970367,-0.298898369073868,0.174415230751038,-0.940303266048431,-0.323043256998062,0.107111059129238,-0.928777515888214,-0.370025873184204,-0.0212904531508684,-0.591948747634888,0.80581521987915,0.0160772018134594,-0.604314386844635,0.796577274799347,0.0163959935307503,0.561635196208954,-0.826828241348267,-0.0303457509726286,
- 0.385535836219788,-0.658435702323914,-0.646393537521362,-0.0708235874772072,-0.960606813430786,-0.268735289573669,-0.0585185363888741,-0.99828439950943,0.00196956796571612,0.568908214569092,-0.82165253162384,-0.0350777506828308,0.579125344753265,-0.813400745391846,-0.0547081679105759,-0.850317716598511,-0.525934755802155,-0.0187737643718719,-0.826561808586121,-0.560699760913849,0.0491043664515018,0.59411233663559,-0.80393248796463,-0.0268882364034653,0.27483606338501,-0.88283634185791,-0.38087409734726,0.252265781164169,-0.927292943000793,0.276567995548248,0.0269265808165073,-0.0608357302844524,0.997784554958344,3.22024834531476e-006,-0.0347589999437332,0.999395728111267,-1.12376947072335e-005,0.0842557549476624,0.99644410610199,-0.0405907481908798,0.0549575202167034,0.997663259506226,-0.0132160615175962,0.00783168058842421,0.999881982803345,-0.0179687160998583,-0.000440366449765861,0.999838411808014,-0.928777515888214,-0.370025873184204,-0.0212904531508684,-0.940303266048431,-0.323043256998062,0.107111059129238,-0.826561808586121,-0.560699760913849,0.0491043664515018,-0.7723588347435,0.461393147706985,0.436552673578262,-0.596647322177887,0.801435172557831,0.0413950011134148,-0.917700946331024,-0.396857887506485,0.0181319154798985,-0.81802773475647,0.336257070302963,0.46664959192276,-0.81802773475647,0.336257070302963,0.46664959192276,-0.917700946331024,-0.396857887506485,0.0181319154798985,-0.90340268611908,-0.427038937807083,0.0387474298477173,-0.7723588347435,0.461393147706985,0.436552673578262,-0.0132160615175962,0.00783168058842421,0.999881982803345,-0.0405907481908798,0.0549575202167034,0.997663259506226,-0.579465925693512,0.813038110733032,0.0564663000404835,0.56874805688858,-0.821685016155243,0.0368680655956268,0.0269265808165073,-0.0608357302844524,0.997784554958344,-0.806233704090118,-0.59137886762619,0.0160713717341423,-0.928777515888214,-0.370025873184204,-0.0212904531508684,-0.92398989200592,-0.382363885641098,-0.00635862816125155,-0.591521322727203,0.799243927001953,0.106357090175152,-0.591948747634888,0.80581521987915,0.0160772018134594,
- -0.301464945077896,0.0515055507421494,-0.952085137367249,-0.279439479112625,-0.0049253418110311,-0.960150599479675,-0.927865028381348,-0.313209980726242,0.20240093767643,-0.607082366943359,0.791610062122345,0.0693149343132973,-0.80415290594101,-0.541279494762421,0.245671615004539,-0.812894582748413,-0.552005589008331,0.18572062253952,0.551737904548645,-0.826960802078247,-0.10826401412487,0.556558609008789,-0.826487243175507,-0.0846246629953384,-0.914432287216187,-0.31055223941803,0.259558737277985,-0.927865028381348,-0.313209980726242,0.20240093767643,-0.812894582748413,-0.552005589008331,0.18572062253952,-0.80415290594101,-0.541279494762421,0.245671615004539,0.556558609008789,-0.826487243175507,-0.0846246629953384,0.551737904548645,-0.826960802078247,-0.10826401412487,-0.0541672743856907,-0.998528182506561,0.00269748503342271,-0.0405831672251225,-0.997397840023041,0.0595867335796356,0.58778977394104,-0.805899620056152,-0.0709158480167389,-0.938210546970367,-0.298898369073868,0.174415230751038,-0.939520597457886,-0.3326815366745,0.0813874825835228,-0.608574092388153,0.792970180511475,0.0289092399179935,-0.57699579000473,0.805015563964844,0.137934267520905,0.27483606338501,-0.88283634185791,-0.38087409734726,0.569453179836273,-0.822015702724457,-0.00362705485895276,-0.80402284860611,-0.59454470872879,-0.00798853673040867,-0.796437203884125,-0.600852906703949,-0.0682908743619919,-0.911755442619324,-0.410650134086609,-0.00827635731548071,-0.928254246711731,-0.371936112642288,-0.00273698125965893,-0.596504986286163,0.802001535892487,-0.0312285497784615,-0.582467555999756,0.801236987113953,-0.136933386325836,0.579125344753265,-0.813400745391846,-0.0547081679105759,0.252265781164169,-0.927292943000793,0.276567995548248,-0.875709056854248,-0.482714474201202,-0.0109836598858237,-0.850317716598511,-0.525934755802155,-0.0187737643718719,0.569453179836273,-0.822015702724457,-0.00362705485895276,0.56874805688858,-0.821685016155243,0.0368680655956268,-0.806233704090118,-0.59137886762619,0.0160713717341423,-0.80402284860611,-0.59454470872879,-0.00798853673040867,
- 0.569453179836273,-0.822015702724457,-0.00362705485895276,0.27483606338501,-0.88283634185791,-0.38087409734726,0.59411233663559,-0.80393248796463,-0.0268882364034653,0.568908214569092,-0.82165253162384,-0.0350777506828308,-0.0513168200850487,-0.996473670005798,0.0663836225867271,-0.0259569026529789,-0.998325943946838,-0.0516867749392986,-0.92398989200592,-0.382363885641098,-0.00635862816125155,-0.928777515888214,-0.370025873184204,-0.0212904531508684,-0.826561808586121,-0.560699760913849,0.0491043664515018,-0.850317716598511,-0.525934755802155,-0.0187737643718719,-0.875709056854248,-0.482714474201202,-0.0109836598858237,-0.928254246711731,-0.371936112642288,-0.00273698125965893,-0.911755442619324,-0.410650134086609,-0.00827635731548071,-0.796437203884125,-0.600852906703949,-0.0682908743619919,-0.80402284860611,-0.59454470872879,-0.00798853673040867,-0.927865028381348,-0.313209980726242,0.20240093767643,-0.914432287216187,-0.31055223941803,0.259558737277985,-0.595307171344757,0.793946981430054,0.123521842062473,-0.607082366943359,0.791610062122345,0.0693149343132973,-0.812894582748413,-0.552005589008331,0.18572062253952,-0.281335175037384,-0.00976357329636812,-0.959559857845306,-0.228762030601501,-0.0538290664553642,-0.971993088722229,0.551737904548645,-0.826960802078247,-0.10826401412487,-0.927865028381348,-0.313209980726242,0.20240093767643,-0.279439479112625,-0.0049253418110311,-0.960150599479675,-0.281335175037384,-0.00976357329636812,-0.959559857845306,-0.812894582748413,-0.552005589008331,0.18572062253952,0.551737904548645,-0.826960802078247,-0.10826401412487,-0.228762030601501,-0.0538290664553642,-0.971993088722229,-0.266104191541672,-0.0290888361632824,-0.963505268096924,-0.0541672743856907,-0.998528182506561,0.00269748503342271,-0.939520597457886,-0.3326815366745,0.0813874825835228,-0.940303266048431,-0.323043256998062,0.107111059129238,-0.604314386844635,0.796577274799347,0.0163959935307503,-0.608574092388153,0.792970180511475,0.0289092399179935,-0.818587362766266,-0.569481313228607,0.074871301651001,-0.826561808586121,-0.560699760913849,0.0491043664515018,
- -0.940303266048431,-0.323043256998062,0.107111059129238,-0.939520597457886,-0.3326815366745,0.0813874825835228,-0.826561808586121,-0.560699760913849,0.0491043664515018,-0.818587362766266,-0.569481313228607,0.074871301651001,0.561635196208954,-0.826828241348267,-0.0303457509726286,0.568908214569092,-0.82165253162384,-0.0350777506828308,0.568908214569092,-0.82165253162384,-0.0350777506828308,0.561635196208954,-0.826828241348267,-0.0303457509726286,-0.0585185363888741,-0.99828439950943,0.00196956796571612,-0.0513168200850487,-0.996473670005798,0.0663836225867271,-0.914432287216187,-0.31055223941803,0.259558737277985,-0.938210546970367,-0.298898369073868,0.174415230751038,-0.57699579000473,0.805015563964844,0.137934267520905,-0.595307171344757,0.793946981430054,0.123521842062473,-0.938210546970367,-0.298898369073868,0.174415230751038,-0.914432287216187,-0.31055223941803,0.259558737277985,-0.80415290594101,-0.541279494762421,0.245671615004539,-0.81104701757431,-0.559434056282043,0.170986503362656,-0.81104701757431,-0.559434056282043,0.170986503362656,-0.80415290594101,-0.541279494762421,0.245671615004539,0.556558609008789,-0.826487243175507,-0.0846246629953384,0.385535836219788,-0.658435702323914,-0.646393537521362,0.385535836219788,-0.658435702323914,-0.646393537521362,0.556558609008789,-0.826487243175507,-0.0846246629953384,0.58778977394104,-0.805899620056152,-0.0709158480167389,0.58778977394104,-0.805899620056152,-0.0709158480167389,-0.0405831672251225,-0.997397840023041,0.0595867335796356,0.133351430296898,-0.491872817277908,0.860394358634949,0.385535836219788,-0.658435702323914,-0.646393537521362,0.58778977394104,-0.805899620056152,-0.0709158480167389,0.133351430296898,-0.491872817277908,0.860394358634949,-0.0708235874772072,-0.960606813430786,-0.268735289573669,0.568908214569092,-0.82165253162384,-0.0350777506828308,-0.0259569026529789,-0.998325943946838,-0.0516867749392986,-0.00906014069914818,-0.999393045902252,-0.0336370728909969,0.59411233663559,-0.80393248796463,-0.0268882364034653,0.579125344753265,-0.813400745391846,-0.0547081679105759,
- -0.928254246711731,-0.371936112642288,-0.00273698125965893,-0.917700946331024,-0.396857887506485,0.0181319154798985,-0.596647322177887,0.801435172557831,0.0413950011134148,-0.596504986286163,0.802001535892487,-0.0312285497784615,-0.90340268611908,-0.427038937807083,0.0387474298477173,-0.917700946331024,-0.396857887506485,0.0181319154798985,-0.928254246711731,-0.371936112642288,-0.00273698125965893,-0.80402284860611,-0.59454470872879,-0.00798853673040867,-0.806233704090118,-0.59137886762619,0.0160713717341423,-0.92398989200592,-0.382363885641098,-0.00635862816125155,-0.911755442619324,-0.410650134086609,-0.00827635731548071,-0.582467555999756,0.801236987113953,-0.136933386325836,-0.591521322727203,0.799243927001953,0.106357090175152,-0.911755442619324,-0.410650134086609,-0.00827635731548071,-0.92398989200592,-0.382363885641098,-0.00635862816125155,-0.875709056854248,-0.482714474201202,-0.0109836598858237,-0.796437203884125,-0.600852906703949,-0.0682908743619919,0.252265781164169,-0.927292943000793,0.276567995548248,0.27483606338501,-0.88283634185791,-0.38087409734726,-0.796437203884125,-0.600852906703949,-0.0682908743619919,-0.875709056854248,-0.482714474201202,-0.0109836598858237,0.59411233663559,-0.80393248796463,-0.0268882364034653,0.252265781164169,-0.927292943000793,0.276567995548248,0.579125344753265,-0.813400745391846,-0.0547081679105759,-1.12376947072335e-005,0.0842557549476624,0.99644410610199,-0.552655398845673,0.830444395542145,0.0702429339289665,-0.579465925693512,0.813038110733032,0.0564663000404835,-0.0405907481908798,0.0549575202167034,0.997663259506226,-1.6358943639716e-006,-0.998833179473877,0.0482926517724991,3.22024834531476e-006,-0.0347589999437332,0.999395728111267,0.0269265808165073,-0.0608357302844524,0.997784554958344,0.56874805688858,-0.821685016155243,0.0368680655956268,-0.00906014069914818,-0.999393045902252,-0.0336370728909969,-1.6358943639716e-006,-0.998833179473877,0.0482926517724991,0.56874805688858,-0.821685016155243,0.0368680655956268,0.569453179836273,-0.822015702724457,-0.00362705485895276,
- 0.59411233663559,-0.80393248796463,-0.0268882364034653,-0.261548310518265,0.0765148177742958,-0.962152779102325,-0.266104191541672,-0.0290888361632824,-0.963505268096924,-0.228762030601501,-0.0538290664553642,-0.971993088722229,-0.281335175037384,-0.00976357329636812,-0.959559857845306,-0.279439479112625,-0.0049253418110311,-0.960150599479675,-0.301464945077896,0.0515055507421494,-0.952085137367249,0.0179847851395607,-0.000438545772340149,0.999838173389435,-0.02700549736619,-0.0608831122517586,0.997779488563538,0.806191563606262,-0.591437041759491,0.0160413216799498,0.903460383415222,-0.426920771598816,0.038704939186573,0.013221612200141,0.00783341377973557,0.999881982803345,0.81792163848877,0.336109429597855,0.466941833496094,0.772479236125946,0.461082220077515,0.436667919158936,0.013221612200141,0.00783341377973557,0.999881982803345,0.0179847851395607,-0.000438545772340149,0.999838173389435,0.903460383415222,-0.426920771598816,0.038704939186573,0.81792163848877,0.336109429597855,0.466941833496094,0.596895039081573,0.801248967647552,0.0414290502667427,0.579699695110321,0.812868654727936,0.0565059818327427,0.772479236125946,0.461082220077515,0.436667919158936,0.822751581668854,-0.561174094676971,-0.0903520807623863,-0.551958322525024,-0.830246329307556,0.0776727870106697,-0.579140722751617,-0.681861937046051,-0.446833670139313,0.827239394187927,-0.552870273590088,-0.100047625601292,0.827239394187927,-0.552870273590088,-0.100047625601292,0.944767534732819,-0.295634239912033,-0.141473680734634,0.938175737857819,-0.329062432050705,-0.10744421929121,0.822751581668854,-0.561174094676971,-0.0903520807623863,0.945330262184143,-0.315877556800842,-0.0810677483677864,0.603728711605072,0.791105389595032,-0.0983047783374786,0.593269109725952,0.804986417293549,0.00535079324617982,0.927613019943237,-0.372128397226334,-0.0324749834835529,-0.551958322525024,-0.830246329307556,0.0776727870106697,-0.0585185363888741,-0.99828439950943,0.00196956796571612,-0.0708235874772072,-0.960606813430786,-0.268735289573669,-0.579140722751617,-0.681861937046051,-0.446833670139313,
- -0.561924040317535,-0.826646089553833,0.0299579109996557,0.831406831741333,-0.55356901884079,-0.0482074841856956,0.850057363510132,-0.525903224945068,-0.0287810061126947,-0.57956326007843,-0.813706994056702,-0.0445796735584736,-0.594997465610504,-0.803418338298798,-0.0222990103065968,-0.252413123846054,-0.927299618721008,0.27641087770462,-0.274947136640549,-0.882830500602722,-0.380807429552078,-0.02700549736619,-0.0608831122517586,0.997779488563538,0.0179847851395607,-0.000438545772340149,0.999838173389435,0.013221612200141,0.00783341377973557,0.999881982803345,0.0406081788241863,0.0549388453364372,0.997663676738739,-1.12376947072335e-005,0.0842557549476624,0.99644410610199,3.22024834531476e-006,-0.0347589999437332,0.999395728111267,0.927613019943237,-0.372128397226334,-0.0324749834835529,0.831406831741333,-0.55356901884079,-0.0482074841856956,0.945330262184143,-0.315877556800842,-0.0810677483677864,0.772479236125946,0.461082220077515,0.436667919158936,0.81792163848877,0.336109429597855,0.466941833496094,0.91771924495697,-0.396819293498993,0.0180488787591457,0.596895039081573,0.801248967647552,0.0414290502667427,0.81792163848877,0.336109429597855,0.466941833496094,0.903460383415222,-0.426920771598816,0.038704939186573,0.91771924495697,-0.396819293498993,0.0180488787591457,0.772479236125946,0.461082220077515,0.436667919158936,0.579699695110321,0.812868654727936,0.0565059818327427,0.0406081788241863,0.0549388453364372,0.997663676738739,0.013221612200141,0.00783341377973557,0.999881982803345,-0.568991899490356,-0.82151848077774,0.036817267537117,0.806191563606262,-0.591437041759491,0.0160413216799498,-0.02700549736619,-0.0608831122517586,0.997779488563538,0.927613019943237,-0.372128397226334,-0.0324749834835529,0.593269109725952,0.804986417293549,0.00535079324617982,0.594907820224762,0.79815548658371,0.0950390249490738,0.923420250415802,-0.383376061916351,-0.0178245529532433,-0.224465757608414,0.0560366846621037,-0.972869455814362,0.584013640880585,0.789368808269501,-0.189274296164513,0.926317870616913,-0.313972294330597,-0.208222270011902,
- -0.248155310750008,-0.00592083483934402,-0.968702137470245,0.83629447221756,-0.533410489559174,-0.126825973391533,-0.536067545413971,-0.830224454402924,0.152836039662361,-0.542588829994202,-0.829721808433533,0.130992889404297,0.821803748607636,-0.54146945476532,-0.177340000867844,0.936872124671936,-0.312988698482513,-0.1559127420187,0.83629447221756,-0.533410489559174,-0.126825973391533,0.821803748607636,-0.54146945476532,-0.177340000867844,0.926317870616913,-0.313972294330597,-0.208222270011902,-0.536067545413971,-0.830224454402924,0.152836039662361,-0.566963315010071,-0.804424583911896,0.17735181748867,-0.0405831672251225,-0.997397840023041,0.0595867335796356,-0.0541672743856907,-0.998528182506561,0.00269748503342271,-0.542588829994202,-0.829721808433533,0.130992889404297,0.944767534732819,-0.295634239912033,-0.141473680734634,0.595868229866028,0.80090868473053,-0.0590444840490818,0.605453014373779,0.79055792093277,-0.0918957889080048,0.938175737857819,-0.329062432050705,-0.10744421929121,-0.274947136640549,-0.882830500602722,-0.380807429552078,0.796582043170929,-0.600754857063293,-0.067459911108017,0.80395120382309,-0.594640910625458,-0.00803454034030437,-0.569700181484222,-0.821844637393951,-0.0036196131259203,0.91179633140564,-0.410577207803726,-0.00734797352924943,0.582757234573364,0.801187753677368,-0.135986104607582,0.596751272678375,0.801820456981659,-0.0311770346015692,0.928253352642059,-0.371938049793243,-0.00277584139257669,-0.57956326007843,-0.813706994056702,-0.0445796735584736,0.850057363510132,-0.525903224945068,-0.0287810061126947,0.875547349452972,-0.48264142870903,-0.0217731688171625,-0.252413123846054,-0.927299618721008,0.27641087770462,-0.569700181484222,-0.821844637393951,-0.0036196131259203,0.80395120382309,-0.594640910625458,-0.00803454034030437,0.806191563606262,-0.591437041759491,0.0160413216799498,-0.568991899490356,-0.82151848077774,0.036817267537117,-0.569700181484222,-0.821844637393951,-0.0036196131259203,-0.594997465610504,-0.803418338298798,-0.0222990103065968,-0.274947136640549,-0.882830500602722,-0.380807429552078,
- -0.561924040317535,-0.826646089553833,0.0299579109996557,-0.0259569026529789,-0.998325943946838,-0.0516867749392986,-0.0513168200850487,-0.996473670005798,0.0663836225867271,0.923420250415802,-0.383376061916351,-0.0178245529532433,0.875547349452972,-0.48264142870903,-0.0217731688171625,0.850057363510132,-0.525903224945068,-0.0287810061126947,0.831406831741333,-0.55356901884079,-0.0482074841856956,0.927613019943237,-0.372128397226334,-0.0324749834835529,0.928253352642059,-0.371938049793243,-0.00277584139257669,0.80395120382309,-0.594640910625458,-0.00803454034030437,0.796582043170929,-0.600754857063293,-0.067459911108017,0.91179633140564,-0.410577207803726,-0.00734797352924943,0.926317870616913,-0.313972294330597,-0.208222270011902,0.584013640880585,0.789368808269501,-0.189274296164513,0.595089018344879,0.792432606220245,-0.133864313364029,0.936872124671936,-0.312988698482513,-0.1559127420187,0.821803748607636,-0.54146945476532,-0.177340000867844,-0.542588829994202,-0.829721808433533,0.130992889404297,-0.30322340130806,-0.0582765154540539,-0.9511359333992,-0.245870187878609,-0.0117729669436812,-0.969231188297272,0.926317870616913,-0.313972294330597,-0.208222270011902,0.821803748607636,-0.54146945476532,-0.177340000867844,-0.245870187878609,-0.0117729669436812,-0.969231188297272,-0.248155310750008,-0.00592083483934402,-0.968702137470245,-0.542588829994202,-0.829721808433533,0.130992889404297,-0.0541672743856907,-0.998528182506561,0.00269748503342271,-0.266104191541672,-0.0290888361632824,-0.963505268096924,-0.30322340130806,-0.0582765154540539,-0.9511359333992,0.938175737857819,-0.329062432050705,-0.10744421929121,0.605453014373779,0.79055792093277,-0.0918957889080048,0.603728711605072,0.791105389595032,-0.0983047783374786,0.945330262184143,-0.315877556800842,-0.0810677483677864,0.822751581668854,-0.561174094676971,-0.0903520807623863,0.938175737857819,-0.329062432050705,-0.10744421929121,0.945330262184143,-0.315877556800842,-0.0810677483677864,0.831406831741333,-0.55356901884079,-0.0482074841856956,0.831406831741333,-0.55356901884079,-0.0482074841856956,
- -0.561924040317535,-0.826646089553833,0.0299579109996557,-0.551958322525024,-0.830246329307556,0.0776727870106697,0.822751581668854,-0.561174094676971,-0.0903520807623863,-0.561924040317535,-0.826646089553833,0.0299579109996557,-0.0513168200850487,-0.996473670005798,0.0663836225867271,-0.0585185363888741,-0.99828439950943,0.00196956796571612,-0.551958322525024,-0.830246329307556,0.0776727870106697,0.936872124671936,-0.312988698482513,-0.1559127420187,0.595089018344879,0.792432606220245,-0.133864313364029,0.595868229866028,0.80090868473053,-0.0590444840490818,0.944767534732819,-0.295634239912033,-0.141473680734634,0.944767534732819,-0.295634239912033,-0.141473680734634,0.827239394187927,-0.552870273590088,-0.100047625601292,0.83629447221756,-0.533410489559174,-0.126825973391533,0.936872124671936,-0.312988698482513,-0.1559127420187,0.827239394187927,-0.552870273590088,-0.100047625601292,-0.579140722751617,-0.681861937046051,-0.446833670139313,-0.536067545413971,-0.830224454402924,0.152836039662361,0.83629447221756,-0.533410489559174,-0.126825973391533,-0.579140722751617,-0.681861937046051,-0.446833670139313,-0.566963315010071,-0.804424583911896,0.17735181748867,-0.536067545413971,-0.830224454402924,0.152836039662361,-0.566963315010071,-0.804424583911896,0.17735181748867,0.133351430296898,-0.491872817277908,0.860394358634949,-0.0405831672251225,-0.997397840023041,0.0595867335796356,-0.579140722751617,-0.681861937046051,-0.446833670139313,-0.0708235874772072,-0.960606813430786,-0.268735289573669,0.133351430296898,-0.491872817277908,0.860394358634949,-0.566963315010071,-0.804424583911896,0.17735181748867,-0.561924040317535,-0.826646089553833,0.0299579109996557,-0.57956326007843,-0.813706994056702,-0.0445796735584736,-0.594997465610504,-0.803418338298798,-0.0222990103065968,-0.00906014069914818,-0.999393045902252,-0.0336370728909969,-0.0259569026529789,-0.998325943946838,-0.0516867749392986,0.928253352642059,-0.371938049793243,-0.00277584139257669,0.596751272678375,0.801820456981659,-0.0311770346015692,0.596895039081573,0.801248967647552,0.0414290502667427,
- 0.91771924495697,-0.396819293498993,0.0180488787591457,0.903460383415222,-0.426920771598816,0.038704939186573,0.806191563606262,-0.591437041759491,0.0160413216799498,0.80395120382309,-0.594640910625458,-0.00803454034030437,0.928253352642059,-0.371938049793243,-0.00277584139257669,0.91771924495697,-0.396819293498993,0.0180488787591457,0.923420250415802,-0.383376061916351,-0.0178245529532433,0.594907820224762,0.79815548658371,0.0950390249490738,0.582757234573364,0.801187753677368,-0.135986104607582,0.91179633140564,-0.410577207803726,-0.00734797352924943,0.91179633140564,-0.410577207803726,-0.00734797352924943,0.796582043170929,-0.600754857063293,-0.067459911108017,0.875547349452972,-0.48264142870903,-0.0217731688171625,0.923420250415802,-0.383376061916351,-0.0178245529532433,-0.252413123846054,-0.927299618721008,0.27641087770462,0.875547349452972,-0.48264142870903,-0.0217731688171625,0.796582043170929,-0.600754857063293,-0.067459911108017,-0.274947136640549,-0.882830500602722,-0.380807429552078,-0.594997465610504,-0.803418338298798,-0.0222990103065968,-0.57956326007843,-0.813706994056702,-0.0445796735584736,-0.252413123846054,-0.927299618721008,0.27641087770462,3.22024834531476e-006,-0.0347589999437332,0.999395728111267,-1.6358943639716e-006,-0.998833179473877,0.0482926517724991,-0.568991899490356,-0.82151848077774,0.036817267537117,-0.02700549736619,-0.0608831122517586,0.997779488563538,-1.6358943639716e-006,-0.998833179473877,0.0482926517724991,-0.00906014069914818,-0.999393045902252,-0.0336370728909969,-0.594997465610504,-0.803418338298798,-0.0222990103065968,-0.569700181484222,-0.821844637393951,-0.0036196131259203,-0.568991899490356,-0.82151848077774,0.036817267537117,-0.266104191541672,-0.0290888361632824,-0.963505268096924,-0.261548310518265,0.0765148177742958,-0.962152779102325,-0.224465757608414,0.0560366846621037,-0.972869455814362,-0.248155310750008,-0.00592083483934402,-0.968702137470245,-0.245870187878609,-0.0117729669436812,-0.969231188297272,-0.30322340130806,-0.0582765154540539,-0.9511359333992,-0.261548310518265,0.0765148177742958,-0.962152779102325,
- 0.536922156810761,0.821643531322479,-0.191354498267174,0.584013640880585,0.789368808269501,-0.189274296164513,-0.224465757608414,0.0560366846621037,-0.972869455814362,-0.565925478935242,0.823231220245361,0.0449317172169685,-0.261548310518265,0.0765148177742958,-0.962152779102325,-0.301464945077896,0.0515055507421494,-0.952085137367249,-0.607082366943359,0.791610062122345,0.0693149343132973,0.5528923869133,0.830284118652344,0.0702721923589706,-1.12376947072335e-005,0.0842557549476624,0.99644410610199,0.0406081788241863,0.0549388453364372,0.997663676738739,0.579699695110321,0.812868654727936,0.0565059818327427,-0.550495862960815,0.826916217803955,0.114733979105949,0.550399363040924,0.825093150138855,-0.127600118517876,0.536922156810761,0.821643531322479,-0.191354498267174,-0.565925478935242,0.823231220245361,0.0449317172169685,0.550399363040924,0.825093150138855,-0.127600118517876,-0.550495862960815,0.826916217803955,0.114733979105949,-0.533823847770691,0.830349504947662,0.159848913550377,0.561621367931366,0.826921761035919,-0.0279598124325275,0.561621367931366,0.826921761035919,-0.0279598124325275,-0.533823847770691,0.830349504947662,0.159848913550377,-0.55945748090744,0.828588247299194,0.0211878139525652,0.557242810726166,0.825879693031311,-0.0860418900847435,-0.542003273963928,0.834940731525421,0.095428466796875,0.545298337936401,0.833938717842102,0.0848285704851151,0.54672372341156,0.837135910987854,0.017224257811904,-0.544509947299957,0.838373482227325,0.0252740550786257,0.545298337936401,0.833938717842102,0.0848285704851151,-0.542003273963928,0.834940731525421,0.095428466796875,-0.53070205450058,0.823794305324554,-0.19929476082325,0.530985653400421,0.823682487010956,-0.199001267552376,0.530985653400421,0.823682487010956,-0.199001267552376,-0.53070205450058,0.823794305324554,-0.19929476082325,-0.552565217018127,0.833437323570251,-0.00733443582430482,0.552801609039307,0.833281278610229,-0.00725832022726536,0.552801609039307,0.833281278610229,-0.00725832022726536,-0.552565217018127,0.833437323570251,-0.00733443582430482,
- -0.552655398845673,0.830444395542145,0.0702429339289665,0.5528923869133,0.830284118652344,0.0702721923589706,-0.558172345161438,0.829724967479706,0.000132004395709373,0.558982133865356,0.823147118091583,-0.0998387783765793,0.557242810726166,0.825879693031311,-0.0860418900847435,-0.55945748090744,0.828588247299194,0.0211878139525652,0.558982133865356,0.823147118091583,-0.0998387783765793,-0.558172345161438,0.829724967479706,0.000132004395709373,-0.544509947299957,0.838373482227325,0.0252740550786257,0.54672372341156,0.837135910987854,0.017224257811904,-0.604314386844635,0.796577274799347,0.0163959935307503,-0.591948747634888,0.80581521987915,0.0160772018134594,-0.544509947299957,0.838373482227325,0.0252740550786257,-0.558172345161438,0.829724967479706,0.000132004395709373,-0.608574092388153,0.792970180511475,0.0289092399179935,-0.55945748090744,0.828588247299194,0.0211878139525652,-0.533823847770691,0.830349504947662,0.159848913550377,-0.57699579000473,0.805015563964844,0.137934267520905,-0.608574092388153,0.792970180511475,0.0289092399179935,-0.604314386844635,0.796577274799347,0.0163959935307503,-0.558172345161438,0.829724967479706,0.000132004395709373,-0.55945748090744,0.828588247299194,0.0211878139525652,-0.57699579000473,0.805015563964844,0.137934267520905,-0.533823847770691,0.830349504947662,0.159848913550377,-0.550495862960815,0.826916217803955,0.114733979105949,-0.595307171344757,0.793946981430054,0.123521842062473,-0.591948747634888,0.80581521987915,0.0160772018134594,-0.591521322727203,0.799243927001953,0.106357090175152,-0.542003273963928,0.834940731525421,0.095428466796875,-0.544509947299957,0.838373482227325,0.0252740550786257,-0.542003273963928,0.834940731525421,0.095428466796875,-0.591521322727203,0.799243927001953,0.106357090175152,-0.582467555999756,0.801236987113953,-0.136933386325836,-0.53070205450058,0.823794305324554,-0.19929476082325,-0.550495862960815,0.826916217803955,0.114733979105949,-0.565925478935242,0.823231220245361,0.0449317172169685,-0.607082366943359,0.791610062122345,0.0693149343132973,
- -0.595307171344757,0.793946981430054,0.123521842062473,-0.552565217018127,0.833437323570251,-0.00733443582430482,-0.53070205450058,0.823794305324554,-0.19929476082325,-0.582467555999756,0.801236987113953,-0.136933386325836,-0.596504986286163,0.802001535892487,-0.0312285497784615,-0.552655398845673,0.830444395542145,0.0702429339289665,-0.552565217018127,0.833437323570251,-0.00733443582430482,-0.596504986286163,0.802001535892487,-0.0312285497784615,-0.596647322177887,0.801435172557831,0.0413950011134148,-0.579465925693512,0.813038110733032,0.0564663000404835,0.605453014373779,0.79055792093277,-0.0918957889080048,0.595868229866028,0.80090868473053,-0.0590444840490818,0.561621367931366,0.826921761035919,-0.0279598124325275,0.557242810726166,0.825879693031311,-0.0860418900847435,0.605453014373779,0.79055792093277,-0.0918957889080048,0.557242810726166,0.825879693031311,-0.0860418900847435,0.558982133865356,0.823147118091583,-0.0998387783765793,0.603728711605072,0.791105389595032,-0.0983047783374786,0.595868229866028,0.80090868473053,-0.0590444840490818,0.595089018344879,0.792432606220245,-0.133864313364029,0.550399363040924,0.825093150138855,-0.127600118517876,0.561621367931366,0.826921761035919,-0.0279598124325275,0.593269109725952,0.804986417293549,0.00535079324617982,0.54672372341156,0.837135910987854,0.017224257811904,0.545298337936401,0.833938717842102,0.0848285704851151,0.594907820224762,0.79815548658371,0.0950390249490738,0.545298337936401,0.833938717842102,0.0848285704851151,0.530985653400421,0.823682487010956,-0.199001267552376,0.582757234573364,0.801187753677368,-0.135986104607582,0.594907820224762,0.79815548658371,0.0950390249490738,0.536922156810761,0.821643531322479,-0.191354498267174,0.550399363040924,0.825093150138855,-0.127600118517876,0.595089018344879,0.792432606220245,-0.133864313364029,0.584013640880585,0.789368808269501,-0.189274296164513,0.530985653400421,0.823682487010956,-0.199001267552376,0.552801609039307,0.833281278610229,-0.00725832022726536,0.596751272678375,0.801820456981659,-0.0311770346015692,
- 0.582757234573364,0.801187753677368,-0.135986104607582,0.603728711605072,0.791105389595032,-0.0983047783374786,0.558982133865356,0.823147118091583,-0.0998387783765793,0.54672372341156,0.837135910987854,0.017224257811904,0.593269109725952,0.804986417293549,0.00535079324617982,0.552801609039307,0.833281278610229,-0.00725832022726536,0.5528923869133,0.830284118652344,0.0702721923589706,0.579699695110321,0.812868654727936,0.0565059818327427,0.596895039081573,0.801248967647552,0.0414290502667427,0.596751272678375,0.801820456981659,-0.0311770346015692,0.536922156810761,0.821643531322479,-0.191354498267174,-0.261548310518265,0.0765148177742958,-0.962152779102325,-0.565925478935242,0.823231220245361,0.0449317172169685,0.5528923869133,0.830284118652344,0.0702721923589706,-0.552655398845673,0.830444395542145,0.0702429339289665,-1.12376947072335e-005,0.0842557549476624,0.99644410610199,-0.806146502494812,-0.560104131698608,0.190817043185234,-0.762384533882141,-0.559580028057098,0.325023055076599,0.336403846740723,-0.719521939754486,-0.607552886009216,0.521661758422852,-0.826566278934479,-0.211322352290154,-0.762384533882141,-0.559580028057098,0.325023055076599,-0.806146502494812,-0.560104131698608,0.190817043185234,-0.916394174098969,-0.320794731378555,0.239400342106819,-0.885524451732636,-0.298680752515793,0.355859786272049,0.521661758422852,-0.826566278934479,-0.211322352290154,0.336403846740723,-0.719521939754486,-0.607552886009216,-0.120929129421711,-0.99214243888855,-0.0320872105658054,-0.0769502073526382,-0.995018005371094,-0.063385896384716,-0.482855200767517,0.0473185367882252,-0.874420762062073,-0.464854389429092,-0.00335382972843945,-0.885380864143372,-0.86895364522934,-0.313703328371048,0.382766038179398,-0.580300211906433,0.791791439056396,0.190572753548622,-0.740405201911926,-0.541737854480743,0.397894829511642,-0.759315073490143,-0.552278399467468,0.34413555264473,0.520288646221161,-0.82690954208374,-0.213355228304863,0.529245734214783,-0.826511204242706,-0.191776439547539,-0.846181988716125,-0.310419231653214,0.433146476745605,
- -0.86895364522934,-0.313703328371048,0.382766038179398,-0.759315073490143,-0.552278399467468,0.34413555264473,-0.740405201911926,-0.541737854480743,0.397894829511642,0.529245734214783,-0.826511204242706,-0.191776439547539,0.520288646221161,-0.82690954208374,-0.213355228304863,-0.0526467859745026,-0.998479127883911,0.0163622684776783,-0.0237427856773138,-0.994913458824158,0.0978953763842583,-0.885524451732636,-0.298680752515793,0.355859786272049,-0.916394174098969,-0.320794731378555,0.239400342106819,-0.567973911762238,0.794011056423187,0.21668416261673,-0.537247478961945,0.804936468601227,0.25187811255455,-0.86895364522934,-0.313703328371048,0.382766038179398,-0.846181988716125,-0.310419231653214,0.433146476745605,-0.560026228427887,0.793963968753815,0.236625820398331,-0.580300211906433,0.791791439056396,0.190572753548622,-0.759315073490143,-0.552278399467468,0.34413555264473,-0.466456979513168,-0.00773826101794839,-0.884509980678558,-0.422035604715347,-0.0477670282125473,-0.905319929122925,0.520288646221161,-0.82690954208374,-0.213355228304863,-0.86895364522934,-0.313703328371048,0.382766038179398,-0.464854389429092,-0.00335382972843945,-0.885380864143372,-0.466456979513168,-0.00773826101794839,-0.884509980678558,-0.759315073490143,-0.552278399467468,0.34413555264473,0.520288646221161,-0.82690954208374,-0.213355228304863,-0.422035604715347,-0.0477670282125473,-0.905319929122925,-0.453222215175629,-0.0247351545840502,-0.891054213047028,-0.0526467859745026,-0.998479127883911,0.0163622684776783,-0.567973911762238,0.794011056423187,0.21668416261673,-0.528365015983582,0.828198611736298,0.186862275004387,0.067748099565506,0.994065523147583,0.0851107686758041,-0.537247478961945,0.804936468601227,0.25187811255455,-0.916394174098969,-0.320794731378555,0.239400342106819,-0.887893259525299,-0.333163559436798,0.317250192165375,-0.556910991668701,0.790935218334198,0.253518372774124,-0.567973911762238,0.794011056423187,0.21668416261673,-0.806146502494812,-0.560104131698608,0.190817043185234,-0.779528081417084,-0.563748180866241,0.27299091219902,
- -0.887893259525299,-0.333163559436798,0.317250192165375,-0.916394174098969,-0.320794731378555,0.239400342106819,-0.779528081417084,-0.563748180866241,0.27299091219902,-0.806146502494812,-0.560104131698608,0.190817043185234,0.521661758422852,-0.826566278934479,-0.211322352290154,0.526037812232971,-0.8281130194664,-0.193682625889778,0.526037812232971,-0.8281130194664,-0.193682625889778,0.521661758422852,-0.826566278934479,-0.211322352290154,-0.0769502073526382,-0.995018005371094,-0.063385896384716,-0.0580597668886185,-0.998254060745239,-0.0108620282262564,-0.567973911762238,0.794011056423187,0.21668416261673,-0.556910991668701,0.790935218334198,0.253518372774124,-0.509505212306976,0.82545530796051,0.242956653237343,-0.528365015983582,0.828198611736298,0.186862275004387,-0.846181988716125,-0.310419231653214,0.433146476745605,-0.885524451732636,-0.298680752515793,0.355859786272049,-0.537247478961945,0.804936468601227,0.25187811255455,-0.560026228427887,0.793963968753815,0.236625820398331,-0.885524451732636,-0.298680752515793,0.355859786272049,-0.846181988716125,-0.310419231653214,0.433146476745605,-0.740405201911926,-0.541737854480743,0.397894829511642,-0.762384533882141,-0.559580028057098,0.325023055076599,-0.762384533882141,-0.559580028057098,0.325023055076599,-0.740405201911926,-0.541737854480743,0.397894829511642,0.529245734214783,-0.826511204242706,-0.191776439547539,0.336403846740723,-0.719521939754486,-0.607552886009216,0.336403846740723,-0.719521939754486,-0.607552886009216,0.529245734214783,-0.826511204242706,-0.191776439547539,-0.0237427856773138,-0.994913458824158,0.0978953763842583,0.336403846740723,-0.719521939754486,-0.607552886009216,-0.0237427856773138,-0.994913458824158,0.0978953763842583,-0.120929129421711,-0.99214243888855,-0.0320872105658054,-0.537247478961945,0.804936468601227,0.25187811255455,0.067748099565506,0.994065523147583,0.0851107686758041,-0.513595521450043,0.825998306274414,0.232263803482056,-0.560026228427887,0.793963968753815,0.236625820398331,-0.513595521450043,0.825998306274414,0.232263803482056,
- -0.544544398784637,0.823611199855804,0.158542782068253,-0.580300211906433,0.791791439056396,0.190572753548622,-0.560026228427887,0.793963968753815,0.236625820398331,-0.449778109788895,0.0581223741173744,-0.891247093677521,-0.453222215175629,-0.0247351545840502,-0.891054213047028,-0.422035604715347,-0.0477670282125473,-0.905319929122925,-0.466456979513168,-0.00773826101794839,-0.884509980678558,-0.464854389429092,-0.00335382972843945,-0.885380864143372,-0.482855200767517,0.0473185367882252,-0.874420762062073,0.775375843048096,-0.555002629756927,-0.301271378993988,-0.542940020561218,-0.82967746257782,0.129813581705093,-0.55980110168457,-0.800821602344513,0.21285542845726,0.791034579277039,-0.553760051727295,-0.260027140378952,0.791034579277039,-0.553760051727295,-0.260027140378952,0.899633228778839,-0.295504152774811,-0.321461230516434,0.88930207490921,-0.319499224424362,-0.327203273773193,0.775375843048096,-0.555002629756927,-0.301271378993988,-0.542940020561218,-0.82967746257782,0.129813581705093,-0.0769502073526382,-0.995018005371094,-0.063385896384716,-0.120929129421711,-0.99214243888855,-0.0320872105658054,-0.55980110168457,-0.800821602344513,0.21285542845726,-0.417657405138016,0.0515385344624519,-0.907141804695129,0.536803424358368,0.789312660694122,-0.29803940653801,0.867563486099243,-0.314056813716888,-0.385618835687637,-0.437806040048599,-0.00429864367470145,-0.899059236049652,0.794380843639374,-0.533218264579773,-0.290925353765488,-0.49215292930603,-0.829720318317413,0.263343036174774,-0.504936397075653,-0.829871118068695,0.237388387322426,0.771576046943665,-0.541071474552155,-0.334532648324966,0.887218832969666,-0.312370449304581,-0.339510560035706,0.794380843639374,-0.533218264579773,-0.290925353765488,0.771576046943665,-0.541071474552155,-0.334532648324966,0.867563486099243,-0.314056813716888,-0.385618835687637,-0.49215292930603,-0.829720318317413,0.263343036174774,-0.0237427856773138,-0.994913458824158,0.0978953763842583,-0.0526467859745026,-0.998479127883911,0.0163622684776783,-0.504936397075653,-0.829871118068695,0.237388387322426,
- 0.899633228778839,-0.295504152774811,-0.321461230516434,0.574176371097565,0.800954699516296,-0.169684961438179,0.589615702629089,0.792083382606506,-0.157978639006615,0.88930207490921,-0.319499224424362,-0.327203273773193,0.589615702629089,0.792083382606506,-0.157978639006615,0.574176371097565,0.800954699516296,-0.169684961438179,0.067748099565506,0.994065523147583,0.0851107686758041,0.541342377662659,0.826618909835815,-0.153783902525902,0.867563486099243,-0.314056813716888,-0.385618835687637,0.536803424358368,0.789312660694122,-0.29803940653801,0.556165635585785,0.792415201663971,-0.250515252351761,0.887218832969666,-0.312370449304581,-0.339510560035706,0.771576046943665,-0.541071474552155,-0.334532648324966,-0.504936397075653,-0.829871118068695,0.237388387322426,-0.483817279338837,-0.0519738681614399,-0.873624384403229,-0.435844153165817,-0.00960654858499765,-0.899970889091492,0.867563486099243,-0.314056813716888,-0.385618835687637,0.771576046943665,-0.541071474552155,-0.334532648324966,-0.435844153165817,-0.00960654858499765,-0.899970889091492,-0.437806040048599,-0.00429864367470145,-0.899059236049652,-0.504936397075653,-0.829871118068695,0.237388387322426,-0.0526467859745026,-0.998479127883911,0.0163622684776783,-0.453222215175629,-0.0247351545840502,-0.891054213047028,-0.483817279338837,-0.0519738681614399,-0.873624384403229,0.88930207490921,-0.319499224424362,-0.327203273773193,0.589615702629089,0.792083382606506,-0.157978639006615,0.603155016899109,0.788544893264771,-0.120004579424858,0.909811913967133,-0.32729235291481,-0.25519010424614,0.775375843048096,-0.555002629756927,-0.301271378993988,0.88930207490921,-0.319499224424362,-0.327203273773193,0.909811913967133,-0.32729235291481,-0.25519010424614,0.798642098903656,-0.556325197219849,-0.229506269097328,0.798642098903656,-0.556325197219849,-0.229506269097328,-0.535688936710358,-0.831813454627991,0.145340114831924,-0.542940020561218,-0.82967746257782,0.129813581705093,0.775375843048096,-0.555002629756927,-0.301271378993988,-0.535688936710358,-0.831813454627991,0.145340114831924,
- -0.0580597668886185,-0.998254060745239,-0.0108620282262564,-0.0769502073526382,-0.995018005371094,-0.063385896384716,-0.542940020561218,-0.82967746257782,0.129813581705093,0.589615702629089,0.792083382606506,-0.157978639006615,0.541342377662659,0.826618909835815,-0.153783902525902,0.559528052806854,0.82265031337738,-0.100870475172997,0.603155016899109,0.788544893264771,-0.120004579424858,0.574176371097565,0.800954699516296,-0.169684961438179,0.556165635585785,0.792415201663971,-0.250515252351761,0.519072234630585,0.824789047241211,-0.224247768521309,0.067748099565506,0.994065523147583,0.0851107686758041,0.887218832969666,-0.312370449304581,-0.339510560035706,0.556165635585785,0.792415201663971,-0.250515252351761,0.574176371097565,0.800954699516296,-0.169684961438179,0.899633228778839,-0.295504152774811,-0.321461230516434,0.899633228778839,-0.295504152774811,-0.321461230516434,0.791034579277039,-0.553760051727295,-0.260027140378952,0.794380843639374,-0.533218264579773,-0.290925353765488,0.887218832969666,-0.312370449304581,-0.339510560035706,0.791034579277039,-0.553760051727295,-0.260027140378952,-0.55980110168457,-0.800821602344513,0.21285542845726,-0.49215292930603,-0.829720318317413,0.263343036174774,0.794380843639374,-0.533218264579773,-0.290925353765488,-0.0237427856773138,-0.994913458824158,0.0978953763842583,-0.49215292930603,-0.829720318317413,0.263343036174774,-0.55980110168457,-0.800821602344513,0.21285542845726,-0.120929129421711,-0.99214243888855,-0.0320872105658054,0.489912122488022,0.821765184402466,-0.291011989116669,0.519072234630585,0.824789047241211,-0.224247768521309,0.556165635585785,0.792415201663971,-0.250515252351761,0.536803424358368,0.789312660694122,-0.29803940653801,-0.453222215175629,-0.0247351545840502,-0.891054213047028,-0.449778109788895,0.0581223741173744,-0.891247093677521,-0.417657405138016,0.0515385344624519,-0.907141804695129,-0.437806040048599,-0.00429864367470145,-0.899059236049652,-0.435844153165817,-0.00960654858499765,-0.899970889091492,-0.483817279338837,-0.0519738681614399,-0.873624384403229,
- -0.449778109788895,0.0581223741173744,-0.891247093677521,0.489912122488022,0.821765184402466,-0.291011989116669,0.536803424358368,0.789312660694122,-0.29803940653801,-0.417657405138016,0.0515385344624519,-0.907141804695129,0.241158679127693,-0.0255826693028212,0.97014844417572,0.28480675816536,-0.0730902850627899,0.955794453620911,0.245743051171303,-0.0951735302805901,0.964651465415955,0.210278227925301,-0.0761861577630043,0.974668502807617,0.259138911962509,-0.0267935171723366,0.965468347072601,0.259663164615631,-0.0238261595368385,0.965405225753784,0.289935320615768,0.0376887507736683,0.956303775310516,0.251321226358414,0.0325774140655994,0.967355310916901,0.210984021425247,0.0339025557041168,0.976901471614838,0.240877956151962,-0.0230623558163643,0.970281362533569,-0.556910991668701,0.790935218334198,0.253518372774124,0.210984021425247,0.0339025557041168,0.976901471614838,0.251321226358414,0.0325774140655994,0.967355310916901,-0.509505212306976,0.82545530796051,0.242956653237343,0.603155016899109,0.788544893264771,-0.120004579424858,0.559528052806854,0.82265031337738,-0.100870475172997,0.251321226358414,0.0325774140655994,0.967355310916901,0.289935320615768,0.0376887507736683,0.956303775310516,0.909811913967133,-0.32729235291481,-0.25519010424614,0.603155016899109,0.788544893264771,-0.120004579424858,0.289935320615768,0.0376887507736683,0.956303775310516,0.259663164615631,-0.0238261595368385,0.965405225753784,0.798642098903656,-0.556325197219849,-0.229506269097328,0.909811913967133,-0.32729235291481,-0.25519010424614,0.259663164615631,-0.0238261595368385,0.965405225753784,0.259138911962509,-0.0267935171723366,0.965468347072601,0.259138911962509,-0.0267935171723366,0.965468347072601,0.210278227925301,-0.0761861577630043,0.974668502807617,-0.535688936710358,-0.831813454627991,0.145340114831924,0.798642098903656,-0.556325197219849,-0.229506269097328,0.210278227925301,-0.0761861577630043,0.974668502807617,0.245743051171303,-0.0951735302805901,0.964651465415955,-0.0580597668886185,-0.998254060745239,-0.0108620282262564,
- -0.535688936710358,-0.831813454627991,0.145340114831924,0.28480675816536,-0.0730902850627899,0.955794453620911,0.526037812232971,-0.8281130194664,-0.193682625889778,-0.0580597668886185,-0.998254060745239,-0.0108620282262564,0.245743051171303,-0.0951735302805901,0.964651465415955,0.241158679127693,-0.0255826693028212,0.97014844417572,-0.779528081417084,-0.563748180866241,0.27299091219902,0.526037812232971,-0.8281130194664,-0.193682625889778,0.28480675816536,-0.0730902850627899,0.955794453620911,-0.887893259525299,-0.333163559436798,0.317250192165375,-0.779528081417084,-0.563748180866241,0.27299091219902,0.241158679127693,-0.0255826693028212,0.97014844417572,0.240877956151962,-0.0230623558163643,0.970281362533569,-0.556910991668701,0.790935218334198,0.253518372774124,-0.887893259525299,-0.333163559436798,0.317250192165375,0.240877956151962,-0.0230623558163643,0.970281362533569,0.210984021425247,0.0339025557041168,0.976901471614838,-0.031939659267664,0.0560880713164806,-0.997914731502533,-0.0176567584276199,-0.00695919618010521,-0.999819934368134,-0.930708706378937,-0.365699917078018,-0.00669812317937613,-0.506927967071533,0.861988306045532,0.000263131340034306,-0.822259485721588,-0.567386746406555,0.0442914590239525,-0.824529647827148,-0.565706551074982,-0.0112697193399072,0.467790842056274,-0.882998466491699,-0.0385411009192467,0.467508673667908,-0.88378769159317,-0.0188372060656548,-0.926094949245453,-0.374809801578522,0.0431955829262733,-0.930708706378937,-0.365699917078018,-0.00669812317937613,-0.824529647827148,-0.565706551074982,-0.0112697193399072,-0.822259485721588,-0.567386746406555,0.0442914590239525,0.467508673667908,-0.88378769159317,-0.0188372060656548,0.467790842056274,-0.882998466491699,-0.0385411009192467,0.00459428038448095,-0.99871963262558,-0.0503796748816967,-0.00450576609000564,-0.999944984912872,-0.00947218108922243,0.498282134532928,-0.867009997367859,-0.00294703617691994,-0.930708706378937,-0.365699917078018,-0.00669812317937613,-0.926094949245453,-0.374809801578522,0.0431955829262733,-0.507279634475708,0.860867202281952,0.0396884046494961,
- -0.506927967071533,0.861988306045532,0.000263131340034306,-0.824529647827148,-0.565706551074982,-0.0112697193399072,-0.0182622261345387,-0.0116423573344946,-0.999765336513519,0.026457792147994,-0.0488582663238049,-0.998455226421356,0.467790842056274,-0.882998466491699,-0.0385411009192467,-0.930708706378937,-0.365699917078018,-0.00669812317937613,-0.0176567584276199,-0.00695919618010521,-0.999819934368134,-0.0182622261345387,-0.0116423573344946,-0.999765336513519,-0.824529647827148,-0.565706551074982,-0.0112697193399072,0.467790842056274,-0.882998466491699,-0.0385411009192467,0.026457792147994,-0.0488582663238049,-0.998455226421356,1.61919990659953e-006,-0.0323042832314968,-0.999478042125702,0.00459428038448095,-0.99871963262558,-0.0503796748816967,-0.926094949245453,-0.374809801578522,0.0431955829262733,-0.011172235943377,-0.0218026470392942,0.999699831008911,-0.0350278280675411,0.0443155877292156,0.998403310775757,-0.507279634475708,0.860867202281952,0.0396884046494961,-0.011172235943377,-0.0218026470392942,0.999699831008911,-0.926094949245453,-0.374809801578522,0.0431955829262733,-0.822259485721588,-0.567386746406555,0.0442914590239525,-0.00908777676522732,-0.0245891902595758,0.999656319618225,-0.00908777676522732,-0.0245891902595758,0.999656319618225,-0.822259485721588,-0.567386746406555,0.0442914590239525,0.467508673667908,-0.88378769159317,-0.0188372060656548,0.00724015757441521,-0.0314650721848011,0.99947863817215,0.00724015757441521,-0.0314650721848011,0.99947863817215,0.467508673667908,-0.88378769159317,-0.0188372060656548,0.498282134532928,-0.867009997367859,-0.00294703617691994,0.498282134532928,-0.867009997367859,-0.00294703617691994,-0.00450576609000564,-0.999944984912872,-0.00947218108922243,-4.41241427324712e-005,-0.597276031970978,0.802035629749298,0.00724015757441521,-0.0314650721848011,0.99947863817215,0.498282134532928,-0.867009997367859,-0.00294703617691994,-4.41241427324712e-005,-0.597276031970978,0.802035629749298,1.93916980606446e-006,-0.0404646545648575,0.999180912971497,-0.0350278280675411,0.0443155877292156,0.998403310775757,
- 9.86352279142011e-006,0.0787439122796059,0.996894836425781,-0.468234807252884,0.882010042667389,0.0530522651970387,-0.507279634475708,0.860867202281952,0.0396884046494961,-0.468234807252884,0.882010042667389,0.0530522651970387,-0.469419002532959,0.882905721664429,-0.0110952788963914,-0.506927967071533,0.861988306045532,0.000263131340034306,-0.507279634475708,0.860867202281952,0.0396884046494961,-3.91828798456118e-005,0.0646790266036987,-0.997906148433685,1.61919990659953e-006,-0.0323042832314968,-0.999478042125702,0.026457792147994,-0.0488582663238049,-0.998455226421356,-0.0182622261345387,-0.0116423573344946,-0.999765336513519,-0.0176567584276199,-0.00695919618010521,-0.999819934368134,-0.031939659267664,0.0560880713164806,-0.997914731502533,0.0319305136799812,0.0560390464961529,-0.997917890548706,0.506680965423584,0.862016558647156,-0.0142034580931067,0.930109858512878,-0.365802586078644,-0.0329253301024437,0.0176622997969389,-0.00695908861234784,-0.999819815158844,0.824549853801727,-0.565399587154388,0.0209979563951492,-0.46700057387352,-0.884240567684174,-0.00538565590977669,-0.469307243824005,-0.882680356502533,-0.0250210110098124,0.822339713573456,-0.567934036254883,-0.0347596704959869,0.926807343959808,-0.375136494636536,0.0173422805964947,0.824549853801727,-0.565399587154388,0.0209979563951492,0.822339713573456,-0.567934036254883,-0.0347596704959869,0.930109858512878,-0.365802586078644,-0.0329253301024437,-0.46700057387352,-0.884240567684174,-0.00538565590977669,-0.498678505420685,-0.86671394109726,0.0112597215920687,-0.00450576609000564,-0.999944984912872,-0.00947218108922243,0.00459428038448095,-0.99871963262558,-0.0503796748816967,-0.469307243824005,-0.882680356502533,-0.0250210110098124,0.930109858512878,-0.365802586078644,-0.0329253301024437,0.506680965423584,0.862016558647156,-0.0142034580931067,0.508276522159576,0.860809624195099,0.0257244892418385,0.926807343959808,-0.375136494636536,0.0173422805964947,0.822339713573456,-0.567934036254883,-0.0347596704959869,-0.469307243824005,-0.882680356502533,-0.0250210110098124,
- -0.0264969263225794,-0.0488970205187798,-0.998452305793762,0.0182711612433195,-0.0116489045321941,-0.99976521730423,0.930109858512878,-0.365802586078644,-0.0329253301024437,0.822339713573456,-0.567934036254883,-0.0347596704959869,0.0182711612433195,-0.0116489045321941,-0.99976521730423,0.0176622997969389,-0.00695908861234784,-0.999819815158844,-0.469307243824005,-0.882680356502533,-0.0250210110098124,0.00459428038448095,-0.99871963262558,-0.0503796748816967,1.61919990659953e-006,-0.0323042832314968,-0.999478042125702,-0.0264969263225794,-0.0488970205187798,-0.998452305793762,0.0350502133369446,0.0443069860339165,0.998402893543243,0.508276522159576,0.860809624195099,0.0257244892418385,0.469342589378357,0.882138788700104,0.0393524207174778,9.86352279142011e-006,0.0787439122796059,0.996894836425781,0.926807343959808,-0.375136494636536,0.0173422805964947,0.508276522159576,0.860809624195099,0.0257244892418385,0.0350502133369446,0.0443069860339165,0.998402893543243,0.011158655397594,-0.0218002162873745,0.99970006942749,0.011158655397594,-0.0218002162873745,0.99970006942749,0.00909015629440546,-0.0245895776897669,0.999656319618225,0.824549853801727,-0.565399587154388,0.0209979563951492,0.926807343959808,-0.375136494636536,0.0173422805964947,0.00909015629440546,-0.0245895776897669,0.999656319618225,-0.00724023394286633,-0.0314645208418369,0.99947863817215,-0.46700057387352,-0.884240567684174,-0.00538565590977669,0.824549853801727,-0.565399587154388,0.0209979563951492,-0.00724023394286633,-0.0314645208418369,0.99947863817215,-0.498678505420685,-0.86671394109726,0.0112597215920687,-0.46700057387352,-0.884240567684174,-0.00538565590977669,-0.498678505420685,-0.86671394109726,0.0112597215920687,-4.41241427324712e-005,-0.597276031970978,0.802035629749298,-0.00450576609000564,-0.999944984912872,-0.00947218108922243,-0.00724023394286633,-0.0314645208418369,0.99947863817215,1.93916980606446e-006,-0.0404646545648575,0.999180912971497,-4.41241427324712e-005,-0.597276031970978,0.802035629749298,-0.498678505420685,-0.86671394109726,0.0112597215920687,
- 0.469062507152557,0.882818222045898,-0.024743590503931,0.469342589378357,0.882138788700104,0.0393524207174778,0.508276522159576,0.860809624195099,0.0257244892418385,0.506680965423584,0.862016558647156,-0.0142034580931067,1.61919990659953e-006,-0.0323042832314968,-0.999478042125702,-3.91828798456118e-005,0.0646790266036987,-0.997906148433685,0.0319305136799812,0.0560390464961529,-0.997917890548706,0.0176622997969389,-0.00695908861234784,-0.999819815158844,0.0182711612433195,-0.0116489045321941,-0.99976521730423,-0.0264969263225794,-0.0488970205187798,-0.998452305793762,-3.91828798456118e-005,0.0646790266036987,-0.997906148433685,0.469062507152557,0.882818222045898,-0.024743590503931,0.506680965423584,0.862016558647156,-0.0142034580931067,0.0319305136799812,0.0560390464961529,-0.997917890548706,-0.00908777676522732,-0.0245891902595758,0.999656319618225,0.00724015757441521,-0.0314650721848011,0.99947863817215,1.93916980606446e-006,-0.0404646545648575,0.999180912971497,-0.00724023394286633,-0.0314645208418369,0.99947863817215,0.00909015629440546,-0.0245895776897669,0.999656319618225,0.011158655397594,-0.0218002162873745,0.99970006942749,0.0350502133369446,0.0443069860339165,0.998402893543243,9.86352279142011e-006,0.0787439122796059,0.996894836425781,-0.0350278280675411,0.0443155877292156,0.998403310775757,-0.011172235943377,-0.0218026470392942,0.999699831008911,-0.469419002532959,0.882905721664429,-0.0110952788963914,-3.91828798456118e-005,0.0646790266036987,-0.997906148433685,-0.031939659267664,0.0560880713164806,-0.997914731502533,-0.506927967071533,0.861988306045532,0.000263131340034306,0.469062507152557,0.882818222045898,-0.024743590503931,-0.469419002532959,0.882905721664429,-0.0110952788963914,-0.468234807252884,0.882010042667389,0.0530522651970387,0.469342589378357,0.882138788700104,0.0393524207174778,0.469062507152557,0.882818222045898,-0.024743590503931,-3.91828798456118e-005,0.0646790266036987,-0.997906148433685,-0.469419002532959,0.882905721664429,-0.0110952788963914,0.469342589378357,0.882138788700104,0.0393524207174778,
- -0.468234807252884,0.882010042667389,0.0530522651970387,9.86352279142011e-006,0.0787439122796059,0.996894836425781,-0.544544398784637,0.823611199855804,0.158542782068253,-0.449778109788895,0.0581223741173744,-0.891247093677521,-0.482855200767517,0.0473185367882252,-0.874420762062073,-0.580300211906433,0.791791439056396,0.190572753548622,-0.513595521450043,0.825998306274414,0.232263803482056,0.519072234630585,0.824789047241211,-0.224247768521309,0.489912122488022,0.821765184402466,-0.291011989116669,-0.544544398784637,0.823611199855804,0.158542782068253,0.541342377662659,0.826618909835815,-0.153783902525902,-0.528365015983582,0.828198611736298,0.186862275004387,-0.509505212306976,0.82545530796051,0.242956653237343,0.559528052806854,0.82265031337738,-0.100870475172997,0.519072234630585,0.824789047241211,-0.224247768521309,-0.513595521450043,0.825998306274414,0.232263803482056,0.067748099565506,0.994065523147583,0.0851107686758041,0.489912122488022,0.821765184402466,-0.291011989116669,-0.449778109788895,0.0581223741173744,-0.891247093677521,-0.544544398784637,0.823611199855804,0.158542782068253,0.541342377662659,0.826618909835815,-0.153783902525902,0.067748099565506,0.994065523147583,0.0851107686758041,-0.528365015983582,0.828198611736298,0.186862275004387,0.559528052806854,0.82265031337738,-0.100870475172997,-0.509505212306976,0.82545530796051,0.242956653237343,0.251321226358414,0.0325774140655994,0.967355310916901,-0.508890867233276,-0.569689989089966,0.645355224609375,-0.445909678936005,-0.559753894805908,0.698455572128296,0.0191109292209148,-0.741301655769348,-0.67089980840683,0.375810861587524,-0.827024519443512,-0.418086796998978,-0.445909678936005,-0.559753894805908,0.698455572128296,-0.508890867233276,-0.569689989089966,0.645355224609375,-0.589856564998627,-0.333525121212006,0.735411703586578,-0.530538380146027,-0.298512637615204,0.793359458446503,0.375810861587524,-0.827024519443512,-0.418086796998978,0.0191109292209148,-0.741301655769348,-0.67089980840683,-0.276098847389221,-0.952205836772919,-0.130665332078934,
- -0.0310623273253441,-0.998551607131958,0.0439289212226868,-0.8919717669487,0.0477861985564232,-0.449558526277542,-0.883113384246826,-0.00369897624477744,-0.469145089387894,-0.532072961330414,-0.302164912223816,0.79094535112381,-0.300540030002594,0.794848263263702,0.527154624462128,-0.43231788277626,-0.551568865776062,0.713353276252747,-0.484527617692947,-0.543562173843384,0.685400068759918,0.236530259251595,-0.824997782707214,-0.513256371021271,0.257539749145508,-0.827276468276978,-0.499286323785782,-0.482851892709732,-0.322734922170639,0.814061522483826,-0.532072961330414,-0.302164912223816,0.79094535112381,-0.484527617692947,-0.543562173843384,0.685400068759918,-0.43231788277626,-0.551568865776062,0.713353276252747,0.257539749145508,-0.827276468276978,-0.499286323785782,0.236530259251595,-0.824997782707214,-0.513256371021271,-0.117342330515385,-0.993057727813721,-0.00819231662899256,-0.0479211658239365,-0.998164772987366,0.0370221026241779,-0.530538380146027,-0.298512637615204,0.793359458446503,-0.589856564998627,-0.333525121212006,0.735411703586578,-0.412311434745789,0.792091906070709,0.450099766254425,-0.30144676566124,0.804960608482361,0.511046171188354,-0.532072961330414,-0.302164912223816,0.79094535112381,-0.482851892709732,-0.322734922170639,0.814061522483826,-0.258544564247131,0.790456712245941,0.555277466773987,-0.300540030002594,0.794848263263702,0.527154624462128,-0.484527617692947,-0.543562173843384,0.685400068759918,-0.883951663970947,-0.00812930148094893,-0.467507630586624,-0.858658671379089,-0.0486792027950287,-0.510230898857117,0.236530259251595,-0.824997782707214,-0.513256371021271,-0.532072961330414,-0.302164912223816,0.79094535112381,-0.883113384246826,-0.00369897624477744,-0.469145089387894,-0.883951663970947,-0.00812930148094893,-0.467507630586624,-0.484527617692947,-0.543562173843384,0.685400068759918,0.236530259251595,-0.824997782707214,-0.513256371021271,-0.858658671379089,-0.0486792027950287,-0.510230898857117,-0.876702427864075,-0.0254344958811998,-0.480360239744186,-0.117342330515385,-0.993057727813721,-0.00819231662899256,
- -0.412311434745789,0.792091906070709,0.450099766254425,-0.394288599491119,0.826749801635742,0.401274621486664,0.102604530751705,0.994257807731628,0.0303909499198198,-0.30144676566124,0.804960608482361,0.511046171188354,-0.589856564998627,-0.333525121212006,0.735411703586578,-0.524045944213867,-0.321130096912384,0.78882896900177,-0.379534155130386,0.795413732528687,0.472515553236008,-0.412311434745789,0.792091906070709,0.450099766254425,-0.508890867233276,-0.569689989089966,0.645355224609375,-0.443392157554626,-0.55439817905426,0.704305410385132,-0.524045944213867,-0.321130096912384,0.78882896900177,-0.589856564998627,-0.333525121212006,0.735411703586578,-0.443392157554626,-0.55439817905426,0.704305410385132,-0.508890867233276,-0.569689989089966,0.645355224609375,0.375810861587524,-0.827024519443512,-0.418086796998978,0.391123652458191,-0.826492965221405,-0.404884725809097,0.391123652458191,-0.826492965221405,-0.404884725809097,0.375810861587524,-0.827024519443512,-0.418086796998978,-0.0310623273253441,-0.998551607131958,0.0439289212226868,0.0213459189981222,-0.996344089508057,0.0827213525772095,-0.412311434745789,0.792091906070709,0.450099766254425,-0.379534155130386,0.795413732528687,0.472515553236008,-0.346719980239868,0.82915872335434,0.438498795032501,-0.394288599491119,0.826749801635742,0.401274621486664,-0.482851892709732,-0.322734922170639,0.814061522483826,-0.530538380146027,-0.298512637615204,0.793359458446503,-0.30144676566124,0.804960608482361,0.511046171188354,-0.258544564247131,0.790456712245941,0.555277466773987,-0.530538380146027,-0.298512637615204,0.793359458446503,-0.482851892709732,-0.322734922170639,0.814061522483826,-0.43231788277626,-0.551568865776062,0.713353276252747,-0.445909678936005,-0.559753894805908,0.698455572128296,-0.445909678936005,-0.559753894805908,0.698455572128296,-0.43231788277626,-0.551568865776062,0.713353276252747,0.257539749145508,-0.827276468276978,-0.499286323785782,0.0191109292209148,-0.741301655769348,-0.67089980840683,0.257539749145508,-0.827276468276978,-0.499286323785782,
- -0.0479211658239365,-0.998164772987366,0.0370221026241779,0.643910229206085,-0.57336437702179,0.506589591503143,0.0191109292209148,-0.741301655769348,-0.67089980840683,0.257539749145508,-0.827276468276978,-0.499286323785782,0.643910229206085,-0.57336437702179,0.506589591503143,-0.276098847389221,-0.952205836772919,-0.130665332078934,-0.258544564247131,0.790456712245941,0.555277466773987,-0.30144676566124,0.804960608482361,0.511046171188354,0.102604530751705,0.994257807731628,0.0303909499198198,-0.222268611192703,0.82285338640213,0.522980988025665,-0.222268611192703,0.82285338640213,0.522980988025665,-0.290003210306168,0.827037334442139,0.481567710638046,-0.300540030002594,0.794848263263702,0.527154624462128,-0.258544564247131,0.790456712245941,0.555277466773987,-0.873924851417542,0.0583791024982929,-0.482542425394058,-0.876702427864075,-0.0254344958811998,-0.480360239744186,-0.858658671379089,-0.0486792027950287,-0.510230898857117,-0.883951663970947,-0.00812930148094893,-0.467507630586624,-0.883113384246826,-0.00369897624477744,-0.469145089387894,-0.8919717669487,0.0477861985564232,-0.449558526277542,0.503322720527649,-0.562657713890076,-0.655806660652161,-0.314901262521744,-0.830060839653015,0.460256636142731,-0.696450650691986,-0.70310366153717,0.143532902002335,0.506069660186768,-0.553509771823883,-0.661453247070313,0.506069660186768,-0.553509771823883,-0.661453247070313,0.560600340366364,-0.29554408788681,-0.773550868034363,0.568994998931885,-0.33053383231163,-0.752988815307617,0.503322720527649,-0.562657713890076,-0.655806660652161,-0.314901262521744,-0.830060839653015,0.460256636142731,-0.0310623273253441,-0.998551607131958,0.0439289212226868,-0.276098847389221,-0.952205836772919,-0.130665332078934,-0.696450650691986,-0.70310366153717,0.143532902002335,-0.856100976467133,0.0520885214209557,-0.514176845550537,0.336604475975037,0.792198002338409,-0.509038031101227,0.476313292980194,-0.304712623357773,-0.824788272380829,-0.868431150913239,-0.00465749762952328,-0.495787918567657,0.45163357257843,-0.540983378887177,-0.709481477737427,
- -0.328689157962799,-0.831158876419067,0.448484629392624,-0.347832053899765,-0.828147053718567,0.439528614282608,0.410015970468521,-0.534865498542786,-0.738786697387695,0.515276849269867,-0.322651624679565,-0.793968319892883,0.45163357257843,-0.540983378887177,-0.709481477737427,0.410015970468521,-0.534865498542786,-0.738786697387695,0.476313292980194,-0.304712623357773,-0.824788272380829,-0.328689157962799,-0.831158876419067,0.448484629392624,-0.0479211658239365,-0.998164772987366,0.0370221026241779,-0.117342330515385,-0.993057727813721,-0.00819231662899256,-0.347832053899765,-0.828147053718567,0.439528614282608,0.560600340366364,-0.29554408788681,-0.773550868034363,0.377009660005569,0.800986707210541,-0.46506342291832,0.339268982410431,0.790225565433502,-0.510333299636841,0.568994998931885,-0.33053383231163,-0.752988815307617,0.339268982410431,0.790225565433502,-0.510333299636841,0.377009660005569,0.800986707210541,-0.46506342291832,0.102604530751705,0.994257807731628,0.0303909499198198,0.300027579069138,0.825540482997894,-0.477981477975845,0.476313292980194,-0.304712623357773,-0.824788272380829,0.336604475975037,0.792198002338409,-0.509038031101227,0.380514830350876,0.789240837097168,-0.481982827186584,0.515276849269867,-0.322651624679565,-0.793968319892883,0.410015970468521,-0.534865498542786,-0.738786697387695,-0.347832053899765,-0.828147053718567,0.439528614282608,-0.892349362373352,-0.0529324561357498,-0.44823083281517,-0.867287218570709,-0.0100527107715607,-0.497706562280655,0.476313292980194,-0.304712623357773,-0.824788272380829,0.410015970468521,-0.534865498542786,-0.738786697387695,-0.867287218570709,-0.0100527107715607,-0.497706562280655,-0.868431150913239,-0.00465749762952328,-0.495787918567657,-0.347832053899765,-0.828147053718567,0.439528614282608,-0.117342330515385,-0.993057727813721,-0.00819231662899256,-0.876702427864075,-0.0254344958811998,-0.480360239744186,-0.892349362373352,-0.0529324561357498,-0.44823083281517,0.568994998931885,-0.33053383231163,-0.752988815307617,0.339268982410431,0.790225565433502,-0.510333299636841,
- 0.371144384145737,0.792591512203217,-0.48378774523735,0.630757689476013,-0.317495077848434,-0.708054840564728,0.503322720527649,-0.562657713890076,-0.655806660652161,0.568994998931885,-0.33053383231163,-0.752988815307617,0.630757689476013,-0.317495077848434,-0.708054840564728,0.567526519298553,-0.549466609954834,-0.613188505172729,0.567526519298553,-0.549466609954834,-0.613188505172729,-0.298587590456009,-0.830303370952606,0.470576077699661,-0.314901262521744,-0.830060839653015,0.460256636142731,0.503322720527649,-0.562657713890076,-0.655806660652161,-0.298587590456009,-0.830303370952606,0.470576077699661,0.0213459189981222,-0.996344089508057,0.0827213525772095,-0.0310623273253441,-0.998551607131958,0.0439289212226868,-0.314901262521744,-0.830060839653015,0.460256636142731,0.339268982410431,0.790225565433502,-0.510333299636841,0.300027579069138,0.825540482997894,-0.477981477975845,0.346741437911987,0.82591301202774,-0.444565027952194,0.371144384145737,0.792591512203217,-0.48378774523735,0.515276849269867,-0.322651624679565,-0.793968319892883,0.380514830350876,0.789240837097168,-0.481982827186584,0.377009660005569,0.800986707210541,-0.46506342291832,0.560600340366364,-0.29554408788681,-0.773550868034363,0.560600340366364,-0.29554408788681,-0.773550868034363,0.506069660186768,-0.553509771823883,-0.661453247070313,0.45163357257843,-0.540983378887177,-0.709481477737427,0.515276849269867,-0.322651624679565,-0.793968319892883,0.506069660186768,-0.553509771823883,-0.661453247070313,-0.696450650691986,-0.70310366153717,0.143532902002335,-0.328689157962799,-0.831158876419067,0.448484629392624,0.45163357257843,-0.540983378887177,-0.709481477737427,-0.696450650691986,-0.70310366153717,0.143532902002335,-0.0479211658239365,-0.998164772987366,0.0370221026241779,-0.328689157962799,-0.831158876419067,0.448484629392624,-0.696450650691986,-0.70310366153717,0.143532902002335,-0.276098847389221,-0.952205836772919,-0.130665332078934,0.643910229206085,-0.57336437702179,0.506589591503143,-0.0479211658239365,-0.998164772987366,0.0370221026241779,
- 0.303180038928986,0.824641108512878,-0.477544546127319,0.363832026720047,0.822246491909027,-0.437649548053741,0.380514830350876,0.789240837097168,-0.481982827186584,0.336604475975037,0.792198002338409,-0.509038031101227,-0.876702427864075,-0.0254344958811998,-0.480360239744186,-0.873924851417542,0.0583791024982929,-0.482542425394058,-0.856100976467133,0.0520885214209557,-0.514176845550537,-0.868431150913239,-0.00465749762952328,-0.495787918567657,-0.867287218570709,-0.0100527107715607,-0.497706562280655,-0.892349362373352,-0.0529324561357498,-0.44823083281517,-0.873924851417542,0.0583791024982929,-0.482542425394058,0.303180038928986,0.824641108512878,-0.477544546127319,0.336604475975037,0.792198002338409,-0.509038031101227,-0.856100976467133,0.0520885214209557,-0.514176845550537,0.380514830350876,0.789240837097168,-0.481982827186584,0.363832026720047,0.822246491909027,-0.437649548053741,0.102604530751705,0.994257807731628,0.0303909499198198,0.377009660005569,0.800986707210541,-0.46506342291832,0.748754799365997,-0.0146184284240007,0.662685871124268,0.777275741100311,-0.0626648962497711,0.626031637191772,0.750002682209015,-0.0853180959820747,0.655909180641174,0.726051509380341,-0.0657714754343033,0.684487640857697,0.761068403720856,-0.0158340260386467,0.648478388786316,0.761462450027466,-0.0128281367942691,0.648082137107849,0.778589129447937,0.0437901988625526,0.626004338264465,0.75525039434433,0.0327256098389626,0.654618799686432,0.730009496212006,0.0397455766797066,0.682280421257019,0.748559653759003,-0.012052645906806,0.662958025932312,-0.379534155130386,0.795413732528687,0.472515553236008,0.730009496212006,0.0397455766797066,0.682280421257019,0.75525039434433,0.0327256098389626,0.654618799686432,-0.346719980239868,0.82915872335434,0.438498795032501,0.371144384145737,0.792591512203217,-0.48378774523735,0.346741437911987,0.82591301202774,-0.444565027952194,0.75525039434433,0.0327256098389626,0.654618799686432,0.778589129447937,0.0437901988625526,0.626004338264465,0.630757689476013,-0.317495077848434,-0.708054840564728,
- 0.371144384145737,0.792591512203217,-0.48378774523735,0.778589129447937,0.0437901988625526,0.626004338264465,0.761462450027466,-0.0128281367942691,0.648082137107849,0.567526519298553,-0.549466609954834,-0.613188505172729,0.630757689476013,-0.317495077848434,-0.708054840564728,0.761462450027466,-0.0128281367942691,0.648082137107849,0.761068403720856,-0.0158340260386467,0.648478388786316,0.761068403720856,-0.0158340260386467,0.648478388786316,0.726051509380341,-0.0657714754343033,0.684487640857697,-0.298587590456009,-0.830303370952606,0.470576077699661,0.567526519298553,-0.549466609954834,-0.613188505172729,0.726051509380341,-0.0657714754343033,0.684487640857697,0.750002682209015,-0.0853180959820747,0.655909180641174,0.0213459189981222,-0.996344089508057,0.0827213525772095,-0.298587590456009,-0.830303370952606,0.470576077699661,0.777275741100311,-0.0626648962497711,0.626031637191772,0.391123652458191,-0.826492965221405,-0.404884725809097,0.0213459189981222,-0.996344089508057,0.0827213525772095,0.750002682209015,-0.0853180959820747,0.655909180641174,0.748754799365997,-0.0146184284240007,0.662685871124268,-0.443392157554626,-0.55439817905426,0.704305410385132,0.391123652458191,-0.826492965221405,-0.404884725809097,0.777275741100311,-0.0626648962497711,0.626031637191772,-0.524045944213867,-0.321130096912384,0.78882896900177,-0.443392157554626,-0.55439817905426,0.704305410385132,0.748754799365997,-0.0146184284240007,0.662685871124268,0.748559653759003,-0.012052645906806,0.662958025932312,-0.379534155130386,0.795413732528687,0.472515553236008,-0.524045944213867,-0.321130096912384,0.78882896900177,0.748559653759003,-0.012052645906806,0.662958025932312,0.730009496212006,0.0397455766797066,0.682280421257019,-0.998132348060608,0.0534166544675827,0.0296397879719734,-0.999862670898438,-0.00543226767331362,0.0156541746109724,-0.0743420347571373,-0.364137828350067,0.928373217582703,-0.0284538697451353,0.862874031066895,0.504617512226105,-0.0145635008811951,-0.570999622344971,0.820821106433868,-0.0735491290688515,-0.570857167243958,0.817748486995697,
- -0.0123278051614761,-0.881457924842834,-0.47210156917572,0.0167589709162712,-0.882599413394928,-0.469826906919479,-0.0229591559618711,-0.37457349896431,0.926912903785706,-0.0743420347571373,-0.364137828350067,0.928373217582703,-0.0735491290688515,-0.570857167243958,0.817748486995697,-0.0145635008811951,-0.570999622344971,0.820821106433868,0.0167589709162712,-0.882599413394928,-0.469826906919479,-0.0123278051614761,-0.881457924842834,-0.47210156917572,-0.058004654943943,-0.997459173202515,0.0413592755794525,0.0134051535278559,-0.998877346515656,0.0454343855381012,-0.0743420347571373,-0.364137828350067,0.928373217582703,-0.0229591559618711,-0.37457349896431,0.926912903785706,-0.00270273303613067,0.861495792865753,0.507757484912872,-0.0284538697451353,0.862874031066895,0.504617512226105,-0.0735491290688515,-0.570857167243958,0.817748486995697,-0.999821364879608,-0.00966803077608347,0.0162409208714962,-0.99862277507782,-0.0457929149270058,-0.025603162124753,-0.0123278051614761,-0.881457924842834,-0.47210156917572,-0.0743420347571373,-0.364137828350067,0.928373217582703,-0.999862670898438,-0.00543226767331362,0.0156541746109724,-0.999821364879608,-0.00966803077608347,0.0162409208714962,-0.0735491290688515,-0.570857167243958,0.817748486995697,-0.0123278051614761,-0.881457924842834,-0.47210156917572,-0.99862277507782,-0.0457929149270058,-0.025603162124753,-0.999513983726501,-0.0311684478074312,0.0004478313785512,-0.058004654943943,-0.997459173202515,0.0413592755794525,-0.00270273303613067,0.861495792865753,0.507757484912872,0.99204957485199,0.00888444297015667,0.125534027814865,0.00572113925591111,0.88504558801651,0.465468972921371,-0.0229591559618711,-0.37457349896431,0.926912903785706,0.992430984973907,-0.0195241756737232,0.12124190479517,0.99204957485199,0.00888444297015667,0.125534027814865,-0.00270273303613067,0.861495792865753,0.507757484912872,0.992430984973907,-0.0195241756737232,0.12124190479517,-0.0229591559618711,-0.37457349896431,0.926912903785706,-0.0145635008811951,-0.570999622344971,0.820821106433868,0.992608845233917,-0.0220099072903395,0.119345270097256,
- 0.992608845233917,-0.0220099072903395,0.119345270097256,-0.0145635008811951,-0.570999622344971,0.820821106433868,0.0167589709162712,-0.882599413394928,-0.469826906919479,0.994570195674896,-0.0651110336184502,0.081182137131691,0.0134051535278559,-0.998877346515656,0.0454343855381012,0.991163790225983,-0.0708977431058884,0.112106241285801,0.994570195674896,-0.0651110336184502,0.081182137131691,0.0167589709162712,-0.882599413394928,-0.469826906919479,0.00572113925591111,0.88504558801651,0.465468972921371,0.99204957485199,0.00888444297015667,0.125534027814865,0.993373870849609,0.0574849098920822,0.0995175093412399,0.00572113925591111,0.88504558801651,0.465468972921371,-0.0395632311701775,0.885343194007874,0.463251769542694,-0.0284538697451353,0.862874031066895,0.504617512226105,-0.00270273303613067,0.861495792865753,0.507757484912872,-0.998528242111206,0.0541910529136658,-0.00216974783688784,-0.999513983726501,-0.0311684478074312,0.0004478313785512,-0.99862277507782,-0.0457929149270058,-0.025603162124753,-0.999821364879608,-0.00966803077608347,0.0162409208714962,-0.999862670898438,-0.00543226767331362,0.0156541746109724,-0.998132348060608,0.0534166544675827,0.0296397879719734,-0.997763156890869,0.0580175146460533,-0.0332070030272007,0.0254292897880077,0.860627770423889,-0.508599281311035,0.0310353599488735,-0.365923583507538,-0.930127263069153,-0.999782681465149,-0.00669792946428061,-0.0197419095784426,0.0729807466268539,-0.561895608901978,-0.823982536792755,-0.0328632034361362,-0.885082364082336,0.464272916316986,-0.0609452798962593,-0.883708477020264,0.464052736759186,0.0220811013132334,-0.561504781246185,-0.827178776264191,0.0779114589095116,-0.375873982906342,-0.923389732837677,0.0729807466268539,-0.561895608901978,-0.823982536792755,0.0220811013132334,-0.561504781246185,-0.827178776264191,0.0310353599488735,-0.365923583507538,-0.930127263069153,-0.0328632034361362,-0.885082364082336,0.464272916316986,0.0134051535278559,-0.998877346515656,0.0454343855381012,-0.058004654943943,-0.997459173202515,0.0413592755794525,
- -0.0609452798962593,-0.883708477020264,0.464052736759186,0.0310353599488735,-0.365923583507538,-0.930127263069153,0.0254292897880077,0.860627770423889,-0.508599281311035,0.0643717646598816,0.859586477279663,-0.506919503211975,0.0779114589095116,-0.375873982906342,-0.923389732837677,0.0220811013132334,-0.561504781246185,-0.827178776264191,-0.0609452798962593,-0.883708477020264,0.464052736759186,-0.998416066169739,-0.049553956836462,0.0266378726810217,-0.99972277879715,-0.0117971049621701,-0.0203775633126497,0.0310353599488735,-0.365923583507538,-0.930127263069153,0.0220811013132334,-0.561504781246185,-0.827178776264191,-0.99972277879715,-0.0117971049621701,-0.0203775633126497,-0.999782681465149,-0.00669792946428061,-0.0197419095784426,-0.0609452798962593,-0.883708477020264,0.464052736759186,-0.058004654943943,-0.997459173202515,0.0413592755794525,-0.999513983726501,-0.0311684478074312,0.0004478313785512,-0.998416066169739,-0.049553956836462,0.0266378726810217,0.996036946773529,0.0466956235468388,0.0756962969899178,0.0643717646598816,0.859586477279663,-0.506919503211975,0.0745340809226036,0.883229851722717,-0.462979078292847,0.993373870849609,0.0574849098920822,0.0995175093412399,0.0779114589095116,-0.375873982906342,-0.923389732837677,0.0643717646598816,0.859586477279663,-0.506919503211975,0.996036946773529,0.0466956235468388,0.0756962969899178,0.994861602783203,-0.0202655419707298,0.0991958156228065,0.994861602783203,-0.0202655419707298,0.0991958156228065,0.99457174539566,-0.0233080815523863,0.101409256458282,0.0729807466268539,-0.561895608901978,-0.823982536792755,0.0779114589095116,-0.375873982906342,-0.923389732837677,0.99457174539566,-0.0233080815523863,0.101409256458282,0.987612307071686,-0.067032553255558,0.141874775290489,-0.0328632034361362,-0.885082364082336,0.464272916316986,0.0729807466268539,-0.561895608901978,-0.823982536792755,0.0134051535278559,-0.998877346515656,0.0454343855381012,-0.0328632034361362,-0.885082364082336,0.464272916316986,0.987612307071686,-0.067032553255558,0.141874775290489,0.991163790225983,-0.0708977431058884,0.112106241285801,
- 0.0125798769295216,0.883814215660095,-0.467668861150742,0.0745340809226036,0.883229851722717,-0.462979078292847,0.0643717646598816,0.859586477279663,-0.506919503211975,0.0254292897880077,0.860627770423889,-0.508599281311035,-0.999513983726501,-0.0311684478074312,0.0004478313785512,-0.998528242111206,0.0541910529136658,-0.00216974783688784,-0.997763156890869,0.0580175146460533,-0.0332070030272007,-0.999782681465149,-0.00669792946428061,-0.0197419095784426,-0.99972277879715,-0.0117971049621701,-0.0203775633126497,-0.998416066169739,-0.049553956836462,0.0266378726810217,-0.998528242111206,0.0541910529136658,-0.00216974783688784,0.0125798769295216,0.883814215660095,-0.467668861150742,0.0254292897880077,0.860627770423889,-0.508599281311035,-0.997763156890869,0.0580175146460533,-0.0332070030272007,0.992608845233917,-0.0220099072903395,0.119345270097256,0.994570195674896,-0.0651110336184502,0.081182137131691,0.991163790225983,-0.0708977431058884,0.112106241285801,0.987612307071686,-0.067032553255558,0.141874775290489,0.99457174539566,-0.0233080815523863,0.101409256458282,0.994861602783203,-0.0202655419707298,0.0991958156228065,0.996036946773529,0.0466956235468388,0.0756962969899178,0.993373870849609,0.0574849098920822,0.0995175093412399,0.99204957485199,0.00888444297015667,0.125534027814865,0.992430984973907,-0.0195241756737232,0.12124190479517,-0.290003210306168,0.827037334442139,0.481567710638046,-0.873924851417542,0.0583791024982929,-0.482542425394058,-0.8919717669487,0.0477861985564232,-0.449558526277542,-0.300540030002594,0.794848263263702,0.527154624462128,0.303180038928986,0.824641108512878,-0.477544546127319,-0.290003210306168,0.827037334442139,0.481567710638046,-0.222268611192703,0.82285338640213,0.522980988025665,0.363832026720047,0.822246491909027,-0.437649548053741,0.300027579069138,0.825540482997894,-0.477981477975845,-0.394288599491119,0.826749801635742,0.401274621486664,-0.346719980239868,0.82915872335434,0.438498795032501,0.346741437911987,0.82591301202774,-0.444565027952194,0.303180038928986,0.824641108512878,-0.477544546127319,
- -0.873924851417542,0.0583791024982929,-0.482542425394058,-0.290003210306168,0.827037334442139,0.481567710638046,0.363832026720047,0.822246491909027,-0.437649548053741,-0.222268611192703,0.82285338640213,0.522980988025665,0.102604530751705,0.994257807731628,0.0303909499198198,0.300027579069138,0.825540482997894,-0.477981477975845,0.102604530751705,0.994257807731628,0.0303909499198198,-0.394288599491119,0.826749801635742,0.401274621486664,0.346741437911987,0.82591301202774,-0.444565027952194,-0.346719980239868,0.82915872335434,0.438498795032501,0.75525039434433,0.0327256098389626,0.654618799686432,-0.0395632311701775,0.885343194007874,0.463251769542694,-0.998528242111206,0.0541910529136658,-0.00216974783688784,-0.998132348060608,0.0534166544675827,0.0296397879719734,-0.0284538697451353,0.862874031066895,0.504617512226105,0.0125798769295216,0.883814215660095,-0.467668861150742,-0.0395632311701775,0.885343194007874,0.463251769542694,0.00572113925591111,0.88504558801651,0.465468972921371,0.0745340809226036,0.883229851722717,-0.462979078292847,0.0125798769295216,0.883814215660095,-0.467668861150742,-0.106579676270485,0.994304001331329,-0.000548575771972537,-0.0395632311701775,0.885343194007874,0.463251769542694,0.0745340809226036,0.883229851722717,-0.462979078292847,0.00572113925591111,0.88504558801651,0.465468972921371,0.993373870849609,0.0574849098920822,0.0995175093412399,-0.0394207425415516,0.998833239078522,-0.0278959646821022,0.0360037572681904,0.999351501464844,-0.000438785908045247,0.382172524929047,0.101251967251301,-0.918527245521545,0.298673927783966,0.100448615849018,-0.949054181575775,-0.949094116687775,0.0222578812390566,-0.314205199480057,-0.965248703956604,0.0258722044527531,-0.260049253702164,-0.0480256527662277,0.99871951341629,0.0159050337970257,-0.0394207425415516,0.998833239078522,-0.0278959646821022,0.298673927783966,0.100448615849018,-0.949054181575775,0.286198824644089,-0.345485270023346,-0.893717050552368,-0.943415343761444,-0.0212862621992826,-0.330929517745972,-0.949094116687775,0.0222578812390566,-0.314205199480057,
- 0.286198824644089,-0.345485270023346,-0.893717050552368,0.213998168706894,-0.701223194599152,-0.680066704750061,-0.94322407245636,-0.0405950583517551,-0.32966735959053,-0.943415343761444,-0.0212862621992826,-0.330929517745972,-0.393596261739731,0.0154725126922131,0.919153213500977,-0.293868601322174,0.0149659076705575,0.955728709697723,0.0145305749028921,0.999077379703522,0.0404132828116417,-0.0480256527662277,0.99871951341629,0.0159050337970257,-0.965248703956604,0.0258722044527531,-0.260049253702164,-0.965472221374512,-0.0255669634789228,-0.259248018264771,-0.393191039562225,-0.0262517537921667,0.919081926345825,-0.393596261739731,0.0154725126922131,0.919153213500977,0.0360037572681904,0.999351501464844,-0.000438785908045247,0.0145305749028921,0.999077379703522,0.0404132828116417,0.906293511390686,0.0439941808581352,0.420352846384048,0.929000973701477,0.041110560297966,0.367786705493927,0.929000973701477,0.041110560297966,0.367786705493927,0.936118841171265,-0.00500013399869204,0.35164812207222,0.362602800130844,-0.345902442932129,-0.865373194217682,0.382172524929047,0.101251967251301,-0.918527245521545,0.936118841171265,-0.00500013399869204,0.35164812207222,0.935395121574402,-0.0244565047323704,0.352757573127747,0.2842997610569,-0.701362729072571,-0.653654336929321,0.362602800130844,-0.345902442932129,-0.865373194217682,-0.293868601322174,0.0149659076705575,0.955728709697723,-0.293932497501373,-0.0256213136017323,0.955482721328735,0.906691789627075,-0.00946150720119476,0.421687513589859,0.906293511390686,0.0439941808581352,0.420352846384048,-0.965472221374512,-0.0255669634789228,-0.259248018264771,-0.94322407245636,-0.0405950583517551,-0.32966735959053,0.213998168706894,-0.701223194599152,-0.680066704750061,-0.0410887151956558,-0.998751401901245,0.028413949534297,-0.0410887151956558,-0.998751401901245,0.028413949534297,0.0247534047812223,-0.998314440250397,0.0524943508207798,-0.293932497501373,-0.0256213136017323,0.955482721328735,-0.393191039562225,-0.0262517537921667,0.919081926345825,0.0247534047812223,-0.998314440250397,0.0524943508207798,
- 0.2842997610569,-0.701362729072571,-0.653654336929321,0.935395121574402,-0.0244565047323704,0.352757573127747,0.906691789627075,-0.00946150720119476,0.421687513589859,-0.0480256527662277,0.99871951341629,0.0159050337970257,0.0145305749028921,0.999077379703522,0.0404132828116417,0.0360037572681904,0.999351501464844,-0.000438785908045247,-0.0394207425415516,0.998833239078522,-0.0278959646821022,-0.293868601322174,0.0149659076705575,0.955728709697723,-0.393596261739731,0.0154725126922131,0.919153213500977,-0.393191039562225,-0.0262517537921667,0.919081926345825,-0.293932497501373,-0.0256213136017323,0.955482721328735,0.2842997610569,-0.701362729072571,-0.653654336929321,0.213998168706894,-0.701223194599152,-0.680066704750061,0.286198824644089,-0.345485270023346,-0.893717050552368,0.362602800130844,-0.345902442932129,-0.865373194217682,-0.0410887151956558,-0.998751401901245,0.028413949534297,0.213998168706894,-0.701223194599152,-0.680066704750061,0.2842997610569,-0.701362729072571,-0.653654336929321,0.0247534047812223,-0.998314440250397,0.0524943508207798,0.298673927783966,0.100448615849018,-0.949054181575775,0.382172524929047,0.101251967251301,-0.918527245521545,0.362602800130844,-0.345902442932129,-0.865373194217682,0.286198824644089,-0.345485270023346,-0.893717050552368,0.936118841171265,-0.00500013399869204,0.35164812207222,0.929000973701477,0.041110560297966,0.367786705493927,0.906293511390686,0.0439941808581352,0.420352846384048,0.906691789627075,-0.00946150720119476,0.421687513589859,0.935395121574402,-0.0244565047323704,0.352757573127747,-0.943415343761444,-0.0212862621992826,-0.330929517745972,-0.94322407245636,-0.0405950583517551,-0.32966735959053,-0.965472221374512,-0.0255669634789228,-0.259248018264771,-0.965248703956604,0.0258722044527531,-0.260049253702164,-0.949094116687775,0.0222578812390566,-0.314205199480057,-0.0394207425415516,0.998833239078522,-0.0278959646821022,0.298673927783966,0.100448615849018,-0.949054181575775,-0.949094116687775,0.0222578812390566,-0.314205199480057,-0.393596261739731,0.0154725126922131,0.919153213500977,
- -0.0480256527662277,0.99871951341629,0.0159050337970257,-0.965248703956604,0.0258722044527531,-0.260049253702164,0.0360037572681904,0.999351501464844,-0.000438785908045247,0.929000973701477,0.041110560297966,0.367786705493927,0.382172524929047,0.101251967251301,-0.918527245521545,-0.293868601322174,0.0149659076705575,0.955728709697723,0.906293511390686,0.0439941808581352,0.420352846384048,0.0145305749028921,0.999077379703522,0.0404132828116417,-0.965472221374512,-0.0255669634789228,-0.259248018264771,-0.0410887151956558,-0.998751401901245,0.028413949534297,-0.393191039562225,-0.0262517537921667,0.919081926345825,0.0247534047812223,-0.998314440250397,0.0524943508207798,0.906691789627075,-0.00946150720119476,0.421687513589859,-0.293932497501373,-0.0256213136017323,0.955482721328735,-0.819274008274078,0.00580020854249597,-0.573372840881348,0.586725115776062,0.133485242724419,-0.798708498477936,0.607519805431366,0.0472219102084637,-0.792899489402771,-0.82063353061676,-0.0307528860867023,-0.570626795291901,0.647078275680542,0.128278180956841,-0.751554667949677,0.620270550251007,-0.346857100725174,-0.703530132770538,0.592295527458191,-0.326092541217804,-0.73678332567215,0.607519805431366,0.0472219102084637,-0.792899489402771,0.586725115776062,0.133485242724419,-0.798708498477936,0.419082403182983,-0.715921819210052,-0.558413743972778,0.537277162075043,-0.477565944194794,-0.695171892642975,0.554180681705475,-0.476825058460236,-0.682291507720947,0.592295527458191,-0.326092541217804,-0.73678332567215,0.620270550251007,-0.346857100725174,-0.703530132770538,0.479611575603485,-0.712063252925873,-0.512775480747223,-0.809380292892456,-0.043793398886919,-0.585649847984314,0.537277162075043,-0.477565944194794,-0.695171892642975,0.419082403182983,-0.715921819210052,-0.558413743972778,-0.804623484611511,-0.0626487359404564,-0.590471208095551,-0.086340457201004,-0.232906252145767,-0.968658864498138,-0.114788897335529,-0.392626911401749,-0.91250616312027,-0.0361158102750778,-0.187775403261185,-0.981547832489014,0.752218961715698,-0.592836081981659,0.287597179412842,
- 0.651706218719482,-0.622815310955048,0.432874083518982,0.820998847484589,-0.566271722316742,-0.0727823004126549,0.820998847484589,-0.566271722316742,-0.0727822929620743,0.651706218719482,-0.622815310955048,0.432874083518982,0.613208472728729,-0.621286332607269,0.487830579280853,0.480190604925156,-0.732840418815613,0.482039242982864,0.480190694332123,-0.732840478420258,0.482039332389832,0.657813966274261,-0.562260806560516,0.501142144203186,0.613208472728729,-0.621286332607269,0.487830579280853,0.752218961715698,-0.592836081981659,0.287597179412842,0.752218961715698,-0.592836081981659,0.287597179412842,0.613208472728729,-0.621286332607269,0.487830579280853,0.651706218719482,-0.622815310955048,0.432874083518982,-0.679433166980743,0.259535044431686,0.6863032579422,-0.423543661832809,-0.410433053970337,0.80756151676178,-0.0343913473188877,-0.017725033685565,0.999251186847687,-0.027696505188942,0.00575197720900178,0.999599814414978,-0.423543661832809,-0.410433053970337,0.80756151676178,0.423543661832809,-0.410433053970337,0.80756151676178,0.0343913473188877,-0.017725033685565,0.999251186847687,-0.0343913473188877,-0.017725033685565,0.999251186847687,0.423543661832809,-0.410433053970337,0.80756151676178,0.67946183681488,0.25950488448143,0.686286389827728,0.0276953391730785,0.00575045309960842,0.999599874019623,0.0343913473188877,-0.017725033685565,0.999251186847687,0.67946183681488,0.25950488448143,0.686286389827728,-9.23235165828373e-006,0.617870807647705,0.786279678344727,1.27116791759363e-007,0.0138238687068224,0.99990451335907,0.0276953391730785,0.00575045309960842,0.999599874019623,-9.23235165828373e-006,0.617870807647705,0.786279678344727,-0.679433166980743,0.259535044431686,0.6863032579422,-0.027696505188942,0.00575197720900178,0.999599814414978,1.27116791759363e-007,0.0138238687068224,0.99990451335907
- }
- NormalsW: *10086 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,
- 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,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,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,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,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,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,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,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,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,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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *30258 {
- a: 1.5180635273282e-006,1,-1.7705101527099e-006,1.32154309540056e-006,1,-1.53906830746564e-006,1.54479334923963e-006,1,-1.34967240228434e-006,1.49859954490239e-006,1,-1.42570002026332e-006,-0.000168035039678216,1,-0.000115672373794951,-6.6736618464347e-005,1,-4.85668751935009e-005,1.32154309540056e-006,1,-1.53906830746564e-006,1.5180635273282e-006,1,-1.7705101527099e-006,2.64336961208755e-007,1,-2.44418788497569e-006,2.94359438157699e-007,1,-2.68133703684725e-006,6.06851017437293e-007,1,-2.42017586060683e-006,6.33523427495675e-007,1,-2.98791360364703e-006,8.20134218315616e-008,1,-1.94845597434323e-006,9.11970374772864e-008,1,-2.19439448301273e-006,2.94359438157699e-007,1,-2.68133703684725e-006,2.64336961208755e-007,1,-2.44418788497569e-006,-9.35675870117336e-010,1,2.04174899209875e-008,-2.32031993618875e-009,1,5.12174658240383e-008,7.06108539816341e-006,0.999994337558746,0.00338267022743821,0,1,-9.23915877137915e-008,1.72022129873994e-008,1,-1.5456085122878e-007,-4.10632665648336e-008,1,3.64379360462408e-007,-2.32031993618875e-009,1,5.12174658240383e-008,-9.35675870117336e-010,1,2.04174899209875e-008,-0.000138160423375666,1,-0.000233328610192984,-9.95539521682076e-005,1,-3.03008382616099e-005,-0.000192353851161897,1,-7.7699514804408e-006,-0.000681423058267683,0.999999761581421,-0.000395391747588292,-1.1802156585361e-008,1,1.37630955521217e-008,0,1,0,-9.95539521682076e-005,1,-3.03008382616099e-005,-0.000138160423375666,1,-0.000233328610192984,2.06320851248165e-006,1,-1.43164265864471e-006,2.11786868931085e-006,1,-1.46961110658594e-006,1.54479334923963e-006,1,-1.34967240228434e-006,1.37466088290239e-006,1,-1.17154547751852e-006,1.32154309540056e-006,1,-1.53906830746564e-006,-6.6736618464347e-005,1,-4.85668751935009e-005,1.41220232308115e-006,1,-1.99803389477893e-006,1.20870095088321e-006,1,-1.40723398089904e-006,-6.6736618464347e-005,1,-4.85668751935009e-005,-0.000134438363602385,1,-7.46146397432312e-005,1.24580162719212e-006,1,-2.50954394687142e-006,1.41220232308115e-006,1,-1.99803389477893e-006,
- 8.65582308051671e-007,1,-2.28617727771052e-006,8.2320894989607e-007,1,-2.17478077502165e-006,6.06851017437293e-007,1,-2.42017586060683e-006,4.92682318053994e-007,1,-1.8598767610456e-006,2.94359438157699e-007,1,-2.68133703684725e-006,9.11970374772864e-008,1,-2.19439448301273e-006,1.0730406785342e-007,1,-2.58603063230112e-006,2.94138487788587e-007,1,-2.67473615167546e-006,6.70824156259187e-005,0.999907672405243,0.0135889900848269,-5.45038680854759e-009,1,-2.05630362870579e-006,1.39554767883965e-005,0.999976992607117,0.00679331459105015,0.000134160916786641,0.999630630016327,0.0271771885454655,0.0684644356369972,0.997592568397522,-0.0110363606363535,0.00264821108430624,0.999797403812408,-0.0199535172432661,-0.0177895501255989,0.99980092048645,-0.00904341228306293,-0.00178560521453619,0.999677836894989,0.0253210887312889,0.00726735731586814,0.999659836292267,0.0250502694398165,-0.797260761260986,0.601490914821625,-0.0508330129086971,-0.797268569469452,0.601488053798676,-0.0507452860474586,-0.797478199005127,0.601165056228638,-0.0512750037014484,-0.797478199005127,0.601165056228638,-0.0512750037014484,-0.795197129249573,0.601601541042328,-0.0757440179586411,-0.795038104057312,0.60159158706665,-0.0774721950292587,-0.797268569469452,0.601488053798676,-0.0507452860474586,-0.797260761260986,0.601490914821625,-0.0508330129086971,0.929584324359894,0.00318797444924712,0.368595659732819,0.941910982131958,0.00318792997859418,0.335847526788712,0.953018069267273,-2.30409204959869e-006,0.302913457155228,0.95301741361618,-2.17184401662962e-006,0.30291548371315,-0.654326975345612,0.602150857448578,-0.457460939884186,-0.654734015464783,0.602142155170441,-0.456889748573303,-0.664367079734802,0.601685166358948,-0.443386256694794,-0.662936866283417,0.601682960987091,-0.445524871349335,-0.585170209407806,0.59987086057663,-0.545647263526917,-0.615987837314606,0.600605845451355,-0.509736835956573,-0.654734015464783,0.602142155170441,-0.456889748573303,-0.654326975345612,0.602150857448578,-0.457460939884186,0.569466888904572,-0.0013677024981007,0.822013139724731,
- 0.612981915473938,4.97326254844666e-007,0.790096938610077,0.613000869750977,1.09616655663558e-006,0.790082156658173,0.569485485553741,-0.00136768573429435,0.822000205516815,1.24580162719212e-006,1,-2.50954394687142e-006,-0.000134438363602385,1,-7.46146397432312e-005,8.2320894989607e-007,1,-2.17478077502165e-006,8.65582308051671e-007,1,-2.28617727771052e-006,0.916220963001251,-2.34693288803101e-007,0.400673419237137,0.916211843490601,-1.58324837684631e-006,0.400694400072098,0.941910982131958,0.00318792997859418,0.335847526788712,0.929584324359894,0.00318797444924712,0.368595659732819,-9.44833573157666e-006,1,-4.39682207797887e-006,-9.72384350461653e-006,1,-4.469373379834e-006,-9.99936582957162e-006,1,-4.54192831966793e-006,-9.99938038148684e-006,1,-4.54193241239409e-006,-9.81568973656977e-006,1,-4.49356002718559e-006,0.00189901515841484,0.0259491037577391,0.999661505222321,0.00189894996583462,0.0259490665048361,0.999661445617676,0.00189888500608504,0.0259490311145782,0.999661564826965,0.00189894717186689,0.0259490665048361,0.999661445617676,1.16849514597561e-006,1,4.26630776928505e-006,9.81826360657578e-007,1,4.05108085033135e-006,7.95159394328948e-007,1,3.83585665986175e-006,7.95161156474933e-007,1,3.8358580241038e-006,9.19604644877836e-007,1,3.9793399082555e-006,0,1,0,5.2489191659788e-008,1,-4.58691324922711e-008,0,1,0,-1.1802156585361e-008,1,1.37630955521217e-008,1.37466088290239e-006,1,-1.17154547751852e-006,1.54479334923963e-006,1,-1.34967240228434e-006,1.32154309540056e-006,1,-1.53906830746564e-006,1.20870095088321e-006,1,-1.40723398089904e-006,-0.55101877450943,0.60075443983078,-0.579199850559235,-0.551039159297943,0.600754499435425,-0.579180479049683,-0.615987837314606,0.600605845451355,-0.509736835956573,-0.585170209407806,0.59987086057663,-0.545647263526917,-7.18963875101508e-008,1,3.39079889499772e-007,-3.4555160510763e-008,1,1.37701732683126e-007,-4.10632665648336e-008,1,3.64379360462408e-007,1.72022129873994e-008,1,-1.5456085122878e-007,4.92682318053994e-007,1,-1.8598767610456e-006,6.06851017437293e-007,1,-2.42017586060683e-006,
- 2.94359438157699e-007,1,-2.68133703684725e-006,2.94138487788587e-007,1,-2.67473615167546e-006,-0.792393028736115,0.602097392082214,-0.0979393497109413,-0.792022585868835,0.602100193500519,-0.100875064730644,-0.795038104057312,0.60159158706665,-0.0774721950292587,-0.795197129249573,0.601601541042328,-0.0757440179586411,0.0391758196055889,0.999185144901276,-0.00970986485481262,0.0391678884625435,0.9991854429245,-0.00971390120685101,0.0392031036317348,0.999184191226959,-0.00969597883522511,0.0392576791346073,0.999182462692261,-0.00966820865869522,0.0392207130789757,0.999183654785156,-0.00968701858073473,-0.000564204819966108,0.99999988079071,-0.000323214364470914,-0.000134438363602385,1,-7.46146397432312e-005,-6.6736618464347e-005,1,-4.85668751935009e-005,-0.000168035039678216,1,-0.000115672373794951,4.75144497613655e-006,1,-0,5.69795611227164e-006,1,-0,6.64431490804418e-006,1,-0,8.53700839797966e-006,1,-0,5.69779513170943e-006,1,-0,2.85839837488311e-006,1,-0,0,1,-1.78485890955926e-006,1.39554767883965e-005,0.999976992607117,0.00679331459105015,9.11970374772864e-008,1,-2.19439448301273e-006,8.20134218315616e-008,1,-1.94845597434323e-006,1.39554767883965e-005,0.999976992607117,0.00679331459105015,-5.45038680854759e-009,1,-2.05630362870579e-006,1.0730406785342e-007,1,-2.58603063230112e-006,9.11970374772864e-008,1,-2.19439448301273e-006,-0.000680317345540971,0.999996483325958,-0.00258349347859621,-0.000186891964403912,0.999999642372131,-0.000909491558559239,8.7603330030106e-005,0.999999821186066,0.000706460792571306,0.000332483585225418,0.999997913837433,0.00206119590438902,-0.00117929931730032,0.999994993209839,-0.0029685168992728,-0.000438972027041018,0.999999344348907,-0.00111198367085308,-0.000186891964403912,0.999999642372131,-0.000909491558559239,-0.000680317345540971,0.999996483325958,-0.00258349347859621,-0.00142711773514748,0.999992549419403,-0.00358413043431938,-0.000544613518286496,0.999998986721039,-0.00133020267821848,9.4739421911072e-005,1,0.000173209118656814,0.000357717886799946,0.999999701976776,0.000741293421015143,
- -0.000833468278869987,0.99999475479126,-0.00315424054861069,-0.000239426997723058,0.999999403953552,-0.00107291294261813,-0.000544613518286496,0.999998986721039,-0.00133020267821848,-0.00142711773514748,0.999992549419403,-0.00358413043431938,3.46542510669678e-005,0.999999940395355,0.00041279211291112,2.41627712966874e-005,0.999999940395355,0.00041334074921906,3.05934008792974e-005,1,0.000413004541769624,8.7603330030106e-005,0.999999821186066,0.000706460792571306,2.73859732260462e-005,1,0.000216423446545377,-0.000186891964403912,0.999999642372131,-0.000909491558559239,-0.000438972027041018,0.999999344348907,-0.00111198367085308,2.16606986214174e-006,1,-7.92716491559986e-007,2.19334629036894e-006,1,-5.71106909319496e-007,2.06320851248165e-006,1,-1.43164265864471e-006,2.15459522223682e-006,1,-1.19044250368461e-006,8.08210752438754e-005,1,0.000142600692925043,2.11786868931085e-006,1,-1.46961110658594e-006,-0.288187742233276,0.601090431213379,-0.745411396026611,-0.26493227481842,0.601249814033508,-0.753863096237183,-0.311677098274231,0.601268768310547,-0.73575359582901,-0.310028910636902,0.601267695426941,-0.736450493335724,-0.185515969991684,0.600547134876251,-0.777770578861237,-0.185588270425797,0.600540280342102,-0.777758657932281,-0.26493227481842,0.601249814033508,-0.753863096237183,-0.288187742233276,0.601090431213379,-0.745411396026611,-0.997849762439728,0.0615369416773319,0.0225623361766338,-0.997365832328796,0.0376748815178871,0.0619850419461727,-0.994763612747192,0.0137328021228313,0.101276099681854,-0.997365832328796,0.0376748815178871,0.0619850419461727,5.12641349814658e-007,1,4.82392533740494e-006,2.68612353693243e-007,1,2.52762674790574e-006,5.23368335336727e-008,1,4.92486606162856e-007,1.78018581209471e-007,1,1.67514451732131e-006,2.40860003941634e-007,1,2.26647898671217e-006,3.31453378521474e-007,1,3.11895769300463e-006,0.524352192878723,-8.27014446258545e-007,0.85150146484375,0.524333894252777,-2.75671482086182e-007,0.851512789726257,0.569466888904572,-0.0013677024981007,0.822013139724731,0.569485485553741,-0.00136768573429435,0.822000205516815,
- 0.000397514959331602,0.999996900558472,0.00248565920628607,0.00332319783046842,0.999994456768036,0.00048223533667624,-0.000239426997723058,0.999999403953552,-0.00107291294261813,-0.000833468278869987,0.99999475479126,-0.00315424054861069,2.73859732260462e-005,1,0.000216423446545377,8.7603330030106e-005,0.999999821186066,0.000706460792571306,-0.000186891964403912,0.999999642372131,-0.000909491558559239,2.19334629036894e-006,1,-5.71106909319496e-007,-0.129616931080818,0.600969672203064,-0.788691997528076,-0.129623532295227,0.600969731807709,-0.788690805435181,-0.185588270425797,0.600540280342102,-0.777758657932281,-0.185515969991684,0.600547134876251,-0.777770578861237,1.2639454780583e-006,1,-1.98603265744168e-006,1.2639445685636e-006,1,-1.98603561329946e-006,1.17310253244796e-006,1,-2.15284126170445e-006,9.91416641227261e-007,1,-2.48645778810896e-006,1.12768191229407e-006,1,-2.23624397222011e-006,0.000299446721328422,0.999999761581421,0.00061497581191361,8.08210752438754e-005,1,0.000142600692925043,-0.000438972027041018,0.999999344348907,-0.00111198367085308,-0.00117929931730032,0.999994993209839,-0.0029685168992728,8.08210752438754e-005,1,0.000142600692925043,2.15459522223682e-006,1,-1.19044250368461e-006,2.16606986214174e-006,1,-7.92716491559986e-007,-0.000438972027041018,0.999999344348907,-0.00111198367085308,0.594462156295776,0.60136878490448,0.533826053142548,0.551070868968964,0.600754678249359,0.579150080680847,0.551079571247101,0.600754618644714,0.579141795635223,0.573440968990326,0.601017773151398,0.556725442409515,0.673072814941406,0.599421799182892,0.433205038309097,0.594462156295776,0.60136878490448,0.533826053142548,0.573440968990326,0.601017773151398,0.556725442409515,0.672793209552765,0.599419295787811,0.433642417192459,0.71823525428772,0.601552724838257,0.349674969911575,0.673072814941406,0.599421799182892,0.433205038309097,0.672793209552765,0.599419295787811,0.433642417192459,0.717380046844482,0.601551830768585,0.351427555084229,0.792559325695038,0.599679052829742,0.110611520707607,0.76662814617157,0.601864039897919,0.22369858622551,
- 0.767314970493317,0.601862370967865,0.221336081624031,0.783238410949707,0.598608434200287,0.167945578694344,0.799510300159454,0.600652396678925,-0.000169854160048999,0.792559325695038,0.599679052829742,0.110611520707607,0.783238410949707,0.598608434200287,0.167945578694344,0.799516499042511,0.600644111633301,6.97499999660067e-005,0.797531247138977,0.601093769073486,-0.0512874908745289,0.799510300159454,0.600652396678925,-0.000169854160048999,0.799516499042511,0.600644111633301,6.97499999660067e-005,0.797531247138977,0.601093828678131,-0.0512861795723438,0.18826487660408,0.600456476211548,0.777179777622223,0.129631042480469,0.600973010063171,0.78868705034256,0.129630789160728,0.600972950458527,0.78868705034256,0.188212439417839,0.60044938325882,0.777198016643524,0.29133340716362,0.60022383928299,0.744886755943298,0.18826487660408,0.600456476211548,0.777179777622223,0.188212439417839,0.60044938325882,0.777198016643524,0.33517599105835,0.59963583946228,0.726700663566589,0.377434849739075,0.601203858852386,0.704341530799866,0.29133340716362,0.60022383928299,0.744886755943298,0.33517599105835,0.59963583946228,0.726700663566589,0.376133382320404,0.601203322410584,0.705037832260132,0.771678388118744,0.215965539216995,0.598223626613617,0.915413916110992,0.0195544119924307,0.402038633823395,0.979714572429657,-0.0196288805454969,0.199434533715248,0.452595442533493,-0.835208415985107,0.312384814023972,0.150847017765045,0.98226135969162,-0.111390247941017,0.771678388118744,0.215965539216995,0.598223626613617,0.167081877589226,0.984204590320587,0.0585241205990314,-0.058207169175148,0.997824788093567,0.0309493523091078,-0.0168736688792706,0.999388515949249,0.030625443905592,-0.0327307805418968,0.998734712600708,0.0381818488240242,0.0250387825071812,0.99853789806366,-0.0479081384837627,0.0324868410825729,0.998483419418335,-0.044447623193264,0.771678388118744,0.215965539216995,0.598223626613617,0.150847017765045,0.98226135969162,-0.111390247941017,0.915413916110992,0.0195544119924307,0.402038633823395,0.979714572429657,-0.0196288805454969,0.199434533715248,
- -0.156551748514175,-0.91955554485321,0.360429435968399,0.452595442533493,-0.835208415985107,0.312384814023972,-0.590078055858612,-0.682448923587799,-0.43135991692543,-0.0647516697645187,-0.996598839759827,-0.0509704276919365,-0.926331698894501,-0.0315558426082134,-0.375385016202927,-0.156551748514175,-0.91955554485321,0.360429435968399,-0.0647516697645187,-0.996598839759827,-0.0509704276919365,-0.590078055858612,-0.682448923587799,-0.43135991692543,0.452595442533493,-0.835208415985107,0.312384814023972,-0.901534020900726,0.00951127987354994,-0.432603687047958,-0.754272162914276,-0.364133358001709,-0.54633367061615,-0.590078055858612,-0.682448923587799,-0.43135991692543,-0.926331698894501,-0.0315558426082134,-0.375385016202927,-0.901534020900726,0.00951127987354994,-0.432603687047958,-0.178965926170349,0.96156907081604,0.208221793174744,-0.754272162914276,-0.364133358001709,-0.54633367061615,-0.99848735332489,-0.0157514698803425,-0.0526783764362335,-0.791642248630524,-0.610979914665222,0.00248918868601322,-0.981030523777008,0.19384540617466,-0.00179332960397005,-0.971705555915833,0.0334426388144493,0.233815997838974,-0.0688101947307587,-0.996485114097595,-0.0477780923247337,-0.993792235851288,-0.0169881153851748,0.109947256743908,-0.845459342002869,-0.533638775348663,-0.0206944644451141,-0.791642248630524,-0.610979914665222,0.00248918868601322,-0.0753497555851936,-0.985148429870605,0.154288902878761,0.0934873968362808,-0.992602944374084,-0.0774563178420067,0.604121506214142,-0.79684978723526,0.00822306983172894,-0.971705555915833,0.0334426388144493,0.233815997838974,-0.0729123651981354,0.9524866938591,-0.295724719762802,-0.0773736387491226,0.964484035968781,0.252554565668106,-0.857112109661102,0.0325146466493607,-0.514102756977081,-0.16260239481926,-0.920406758785248,-0.355544567108154,-0.0688101947307587,-0.996485114097595,-0.0477780923247337,-0.845459342002869,-0.533638775348663,-0.0206944644451141,-0.993792235851288,-0.0169881153851748,0.109947256743908,-0.946046531200409,-0.057813324034214,0.318831473588943,-0.845459342002869,-0.533638775348663,-0.0206944644451141,
- 0.0141060194000602,0.998898267745972,0.0447605922818184,0.0144908502697945,0.999295771121979,0.034611664712429,-0.00276478612795472,0.999373078346252,-0.0352964028716087,0.0143332285806537,0.999123811721802,-0.039322666823864,0.0226347465068102,0.99958211183548,-0.0179772488772869,-0.99848735332489,-0.0157514698803425,-0.0526783764362335,-0.0753497555851936,-0.985148429870605,0.154288902878761,-0.791642248630524,-0.610979914665222,0.00248918868601322,-0.981030523777008,0.19384540617466,-0.00179332960397005,-0.0729123651981354,0.9524866938591,-0.295724719762802,-0.971705555915833,0.0334426388144493,0.233815997838974,0.604121506214142,-0.79684978723526,0.00822306983172894,0.999475538730621,-0.0196340326219797,0.0257535763084888,0.947027981281281,0.0025661455001682,-0.321141064167023,0.998982608318329,0.0446201227605343,-0.00655516423285007,0.995425164699554,0.027840768918395,-0.0913985595107079,0.947027981281281,0.0025661455001682,-0.321141064167023,0.999475538730621,-0.0196340326219797,0.0257535763084888,0.996877133846283,-0.0254966598004103,-0.0747389495372772,0.920309007167816,0.0253146477043629,0.390372544527054,0.999475538730621,-0.0196340326219797,0.0257535763084888,0.0934873968362808,-0.992602944374084,-0.0774563178420067,0.094148650765419,-0.992191731929779,0.0818033069372177,0.996877133846283,-0.0254966598004103,-0.0747389495372772,0.544709801673889,0.838568329811096,-0.00971716642379761,0.0258754119277,0.980989158153534,0.192329719662666,-0.0593098849058151,0.997255027294159,0.0443273559212685,0.141769647598267,0.988845646381378,0.0456715747714043,0.0667807385325432,0.997654914855957,-0.0150012150406837,0.933197736740112,-0.00522594153881073,0.359325289726257,0.945026516914368,0.0302525255829096,0.325591564178467,-0.138708889484406,0.928807377815247,0.343623071908951,-0.548427581787109,0.717807412147522,-0.428928673267365,0.0136834727600217,0.998421013355255,-0.0544823445379734,0.0300168581306934,0.992282569408417,-0.120309345424175,0.0523415692150593,0.958074808120728,0.281696975231171,0.947027981281281,0.0025661455001682,-0.321141064167023,
- 0.995425164699554,0.027840768918395,-0.0913985595107079,0.0934873968362808,-0.992602944374084,-0.0774563178420067,0.999475538730621,-0.0196340326219797,0.0257535763084888,0.604121506214142,-0.79684978723526,0.00822306983172894,0.544709801673889,0.838568329811096,-0.00971716642379761,0.0523415692150593,0.958074808120728,0.281696975231171,0.0258754119277,0.980989158153534,0.192329719662666,0.544709801673889,0.838568329811096,-0.00971716642379761,0.998982608318329,0.0446201227605343,-0.00655516423285007,0.947027981281281,0.0025661455001682,-0.321141064167023,0.0523415692150593,0.958074808120728,0.281696975231171,-0.0574825033545494,-0.9615198969841,0.268654555082321,-0.994151294231415,-0.0127997882664204,-0.107235044240952,-0.994679033756256,-0.0208852700889111,-0.100883156061172,-0.143146142363548,-0.94405335187912,0.297106713056564,-0.96909499168396,-0.0269297957420349,-0.245213717222214,-0.000867596827447414,0.997753500938416,-0.0669861063361168,-0.00981704518198967,0.950664162635803,-0.310066819190979,-0.994832575321198,0.0218985099345446,-0.0991398692131042,0.85544764995575,-0.481196820735931,0.191464945673943,0.839040875434875,-0.424835056066513,0.339890658855438,0.0715059787034988,-0.994089484214783,0.081689365208149,0.0999375134706497,-0.98615574836731,-0.132323369383812,-0.994151294231415,-0.0127997882664204,-0.107235044240952,-0.96909499168396,-0.0269297957420349,-0.245213717222214,-0.994832575321198,0.0218985099345446,-0.0991398692131042,-0.994679033756256,-0.0208852700889111,-0.100883156061172,0.947886943817139,-0.0174151789397001,0.318130552768707,0.994332253932953,-0.0109392488375306,0.105752974748611,0.839040875434875,-0.424835056066513,0.339890658855438,0.85544764995575,-0.481196820735931,0.191464945673943,0.922168612480164,0.0392467714846134,-0.384791791439056,0.0542337410151958,0.934869587421417,0.350824058055878,0.851845145225525,0.523127675056458,-0.0264068692922592,0.0542337410151958,0.934869587421417,0.350824058055878,0.0350317396223545,0.997988760471344,-0.0528340041637421,0.851845145225525,0.523127675056458,-0.0264068692922592,
- -0.907899975776672,-0.0584010034799576,0.415098905563354,-0.100677885115147,0.990908265113831,-0.0892462879419327,-0.0649395659565926,0.997889280319214,9.1248431999702e-005,-0.769172966480255,0.00530485855415463,0.639018714427948,-0.172072902321815,-0.96986448764801,0.172493115067482,-0.0840015485882759,-0.879229545593262,-0.468934118747711,-0.845459342002869,-0.533638775348663,-0.0206944644451141,-0.845459342002869,-0.533638775348663,-0.0206944644451141,-0.988614857196808,-0.0445010289549828,0.143737137317657,-0.991694808006287,-0.0103991609066725,-0.128192901611328,0.922168612480164,0.0392467714846134,-0.384791791439056,0.969042241573334,-0.0984161198139191,0.226431995630264,0.955260574817657,-0.0554799176752567,0.290515601634979,0.962007999420166,-0.105890333652496,0.251650303602219,-0.00516018271446228,-0.992825269699097,-0.119463339447975,0.258751213550568,0.943122506141663,0.208728700876236,0.0294911228120327,0.991647481918335,0.125561252236366,-0.0749295279383659,0.991749107837677,0.104016341269016,0.568330943584442,0.821934223175049,0.0377374291419983,0.832373559474945,0.548962354660034,0.0761235281825066,0.988756895065308,0.0216355249285698,-0.14795845746994,0.0403046831488609,0.992116332054138,0.11866233497858,0.0403046831488609,0.992116332054138,0.11866233497858,0.0978051424026489,0.989749550819397,-0.104068204760551,0.568330943584442,0.821934223175049,0.0377374291419983,0.129435360431671,0.301647305488586,-0.944592773914337,-0.432167291641235,-0.612318158149719,0.662040710449219,-0.0674232095479965,0.0168922394514084,0.997581541538239,-0.25093212723732,-0.892476737499237,0.374857991933823,-0.245691239833832,0.582542061805725,-0.774777770042419,-0.4578937292099,-0.333601713180542,0.824040770530701,0.119476273655891,0.875588417053223,-0.468049496412277,0.684870958328247,-0.0145238796249032,-0.728519678115845,0.350566238164902,-0.871134400367737,-0.343843460083008,0.0746808424592018,-0.66704261302948,-0.741267085075378,-0.25093212723732,-0.892476737499237,0.374857991933823,0.114168331027031,-0.988938570022583,-0.094689354300499,
- -0.432167291641235,-0.612318158149719,0.662040710449219,-0.245691239833832,0.582542061805725,-0.774777770042419,-0.991975903511047,0.0185507647693157,-0.125058740377426,-0.0674232095479965,0.0168922394514084,0.997581541538239,0.612646162509918,0.543090283870697,0.574210464954376,0.91297721862793,-0.0512853711843491,0.40477454662323,0.999310970306396,0.0103687467053533,-0.0356405489146709,0.570484519004822,0.805582523345947,0.159950748085976,0.963245034217834,0.019208088517189,0.267936617136002,0.350566238164902,-0.871134400367737,-0.343843460083008,0.114168331027031,-0.988938570022583,-0.094689354300499,0.538598775863647,-0.0276536475867033,0.842108428478241,0.570484519004822,0.805582523345947,0.159950748085976,-0.099646620452404,0.956715822219849,0.27343288064003,0.151928469538689,0.619127094745636,0.770454049110413,0.612646162509918,0.543090283870697,0.574210464954376,-0.0213814899325371,-0.999728620052338,-0.00924713723361492,-0.942653298377991,0.00291112437844276,-0.333760887384415,-0.79337614774704,-0.0365980342030525,-0.607630610466003,-0.375137567520142,-0.836815714836121,0.398762315511703,-0.846306443214417,0.0417463332414627,-0.531058132648468,-0.529308915138245,0.713780105113983,-0.45863938331604,0.0456434115767479,0.988470554351807,-0.144370287656784,-0.900557518005371,0.0149562815204263,-0.434479653835297,0.0153920110315084,-0.995200335979462,0.0966404154896736,-0.0326056554913521,-0.982474982738495,0.183520555496216,-0.0213814899325371,-0.999728620052338,-0.00924713723361492,-0.375137567520142,-0.836815714836121,0.398762315511703,-0.900557518005371,0.0149562815204263,-0.434479653835297,-0.86710399389267,-0.00466629723086953,-0.498105525970459,-0.846306443214417,0.0417463332414627,-0.531058132648468,0.710256218910217,-0.0171648412942886,0.703733921051025,0.945026516914368,0.0302525255829096,0.325591564178467,0.933197736740112,-0.00522594153881073,0.359325289726257,0.907638430595398,-0.00211066007614136,0.419747650623322,0.710256218910217,-0.0171648412942886,0.703733921051025,0.0153920110315084,-0.995200335979462,0.0966404154896736,
- -0.156551748514175,-0.91955554485321,0.360429435968399,0.979714572429657,-0.0196288805454969,0.199434533715248,0.982895970344543,0.0135392183437943,0.183663785457611,0.0217707455158234,0.998187124729156,0.0561122484505177,0.570484519004822,0.805582523345947,0.159950748085976,0.0217707455158234,0.998187124729156,0.0561122484505177,-0.099646620452404,0.956715822219849,0.27343288064003,0.570484519004822,0.805582523345947,0.159950748085976,-0.76064670085907,0.0259251147508621,-0.648648202419281,-0.0989424884319305,0.993277847766876,0.0600804015994072,-0.529308915138245,0.713780105113983,-0.45863938331604,-0.846306443214417,0.0417463332414627,-0.531058132648468,-0.86710399389267,-0.00466629723086953,-0.498105525970459,-0.76064670085907,0.0259251147508621,-0.648648202419281,-0.846306443214417,0.0417463332414627,-0.531058132648468,0.0610741153359413,-0.926297008991241,-0.371811598539352,-0.959517598152161,-0.0360620878636837,-0.279330521821976,-0.942653298377991,0.00291112437844276,-0.333760887384415,-0.0213814899325371,-0.999728620052338,-0.00924713723361492,-0.0176448319107294,-0.986487030982971,0.16288648545742,0.0610741153359413,-0.926297008991241,-0.371811598539352,-0.0213814899325371,-0.999728620052338,-0.00924713723361492,-0.0326056554913521,-0.982474982738495,0.183520555496216,0.538598775863647,-0.0276536475867033,0.842108428478241,0.114168331027031,-0.988938570022583,-0.094689354300499,-0.0176448319107294,-0.986487030982971,0.16288648545742,0.969874858856201,-0.0319370776414871,0.241501286625862,0.570484519004822,0.805582523345947,0.159950748085976,0.999310970306396,0.0103687467053533,-0.0356405489146709,0.982895970344543,0.0135392183437943,0.183663785457611,0.612646162509918,0.543090283870697,0.574210464954376,0.151928469538689,0.619127094745636,0.770454049110413,-0.113390132784843,0.889352917671204,0.442937970161438,0.208288103342056,0.89905059337616,0.385128617286682,-0.759001731872559,0.0478743761777878,-0.649326205253601,-0.237487465143204,0.583049297332764,0.776951372623444,-0.473372399806976,0.397923111915588,0.785860061645508,
- -0.752369523048401,0.298728913068771,-0.587112545967102,-0.998318433761597,-0.0412477031350136,0.0407323502004147,-0.759001731872559,0.0478743761777878,-0.649326205253601,-0.752369523048401,0.298728913068771,-0.587112545967102,-0.923227906227112,-0.352642625570297,0.152621984481812,0.0330434516072273,-0.873342931270599,-0.48598375916481,-0.998318433761597,-0.0412477031350136,0.0407323502004147,-0.923227906227112,-0.352642625570297,0.152621984481812,0.0746808424592018,-0.66704261302948,-0.741267085075378,0.106792122125626,-0.970673739910126,-0.215378805994987,0.0330434516072273,-0.873342931270599,-0.48598375916481,0.0746808424592018,-0.66704261302948,-0.741267085075378,0.350566238164902,-0.871134400367737,-0.343843460083008,0.97179239988327,-0.0211503934115171,-0.234887599945068,0.106792122125626,-0.970673739910126,-0.215378805994987,0.350566238164902,-0.871134400367737,-0.343843460083008,0.963245034217834,0.019208088517189,0.267936617136002,0.208288103342056,0.89905059337616,0.385128617286682,0.772794902324677,0.00912381801754236,0.63459038734436,0.91297721862793,-0.0512853711843491,0.40477454662323,0.612646162509918,0.543090283870697,0.574210464954376,0.208288103342056,0.89905059337616,0.385128617286682,0.0803097859025002,0.984496533870697,-0.155938938260078,0.857994198799133,0.0251354090869427,0.513044059276581,0.208288103342056,0.89905059337616,0.385128617286682,-0.113390132784843,0.889352917671204,0.442937970161438,0.0803097859025002,0.984496533870697,-0.155938938260078,0.85544764995575,-0.481196820735931,0.191464945673943,0.0999375134706497,-0.98615574836731,-0.132323369383812,0.947886943817139,-0.0174151789397001,0.318130552768707,0.857994198799133,0.0251354090869427,0.513044059276581,0.772794902324677,0.00912381801754236,0.63459038734436,0.208288103342056,0.89905059337616,0.385128617286682,0.0728976503014565,0.958880841732025,-0.274287164211273,0.955748081207275,0.0227442998439074,0.293305784463882,0.832373559474945,0.548962354660034,0.0761235281825066,0.568330943584442,0.821934223175049,0.0377374291419983,
- 0.0978051424026489,0.989749550819397,-0.104068204760551,0.0728976503014565,0.958880841732025,-0.274287164211273,0.568330943584442,0.821934223175049,0.0377374291419983,-0.769172966480255,0.00530485855415463,0.639018714427948,-0.0649395659565926,0.997889280319214,9.1248431999702e-005,-0.0687248259782791,0.994267106056213,0.0819139406085014,-0.945326507091522,0.0299082025885582,-0.324751049280167,-0.845459342002869,-0.533638775348663,-0.0206944644451141,-0.991694808006287,-0.0103991609066725,-0.128192901611328,-0.992519676685333,-0.01563810557127,-0.121079422533512,-0.992519676685333,-0.01563810557127,-0.121079422533512,-0.0699400827288628,-0.996892988681793,-0.0362322926521301,-0.845459342002869,-0.533638775348663,-0.0206944644451141,0.904783427715302,-0.341638684272766,0.25426372885704,0.071630597114563,-0.973288655281067,0.218124642968178,0.0715059787034988,-0.994089484214783,0.081689365208149,0.839040875434875,-0.424835056066513,0.339890658855438,0.999093770980835,-0.0285335779190063,0.0315840020775795,0.071630597114563,-0.973288655281067,0.218124642968178,0.904783427715302,-0.341638684272766,0.25426372885704,0.999093770980835,-0.0285335779190063,0.0315840020775795,0.904783427715302,-0.341638684272766,0.25426372885704,0.839040875434875,-0.424835056066513,0.339890658855438,0.994332253932953,-0.0109392488375306,0.105752974748611,-0.857112109661102,0.0325146466493607,-0.514102756977081,-0.0773736387491226,0.964484035968781,0.252554565668106,-0.100677885115147,0.990908265113831,-0.0892462879419327,0.319203287363052,-0.152994111180305,0.935255169868469,-0.0840015485882759,-0.879229545593262,-0.468934118747711,-0.16260239481926,-0.920406758785248,-0.355544567108154,-0.845459342002869,-0.533638775348663,-0.0206944644451141,-0.845459342002869,-0.533638775348663,-0.0206944644451141,-0.946046531200409,-0.057813324034214,0.318831473588943,-0.988614857196808,-0.0445010289549828,0.143737137317657,0.572431743144989,0.755577564239502,0.318472027778625,0.955450177192688,0.0298251006752253,0.293641686439514,0.969042241573334,-0.0984161198139191,0.226431995630264,
- 0.851845145225525,0.523127675056458,-0.0264068692922592,0.920309007167816,0.0253146477043629,0.390372544527054,0.0769442617893219,0.996375024318695,-0.0362837500870228,0.0523415692150593,0.958074808120728,0.281696975231171,0.995425164699554,0.027840768918395,-0.0913985595107079,0.0769442617893219,0.996375024318695,-0.0362837500870228,-0.0749295279383659,0.991749107837677,0.104016341269016,-0.0593098849058151,0.997255027294159,0.0443273559212685,0.0258754119277,0.980989158153534,0.192329719662666,0.0523415692150593,0.958074808120728,0.281696975231171,0.907638430595398,-0.00211066007614136,0.419747650623322,0.969874858856201,-0.0319370776414871,0.241501286625862,0.980895400047302,0.0139876082539558,0.194032624363899,0.238015875220299,0.876257300376892,-0.418953090906143,0.788585484027863,0.0307412222027779,0.614156365394592,0.933197736740112,-0.00522594153881073,0.359325289726257,0.0667807385325432,0.997654914855957,-0.0150012150406837,-0.0808648690581322,0.996559023857117,0.0181933548301458,0.0136834727600217,0.998421013355255,-0.0544823445379734,-0.548427581787109,0.717807412147522,-0.428928673267365,0.151928469538689,0.619127094745636,0.770454049110413,-0.099646620452404,0.956715822219849,0.27343288064003,0.119623586535454,0.875383615493774,-0.468394964933395,-0.318209260702133,0.817912340164185,0.479335308074951,-0.113390132784843,0.889352917671204,0.442937970161438,0.151928469538689,0.619127094745636,0.770454049110413,-0.318209260702133,0.817912340164185,0.479335308074951,-0.158358231186867,0.915304780006409,0.370324015617371,0.91297721862793,-0.0512853711843491,0.40477454662323,0.772794902324677,0.00912381801754236,0.63459038734436,0.97179239988327,-0.0211503934115171,-0.234887599945068,0.963245034217834,0.019208088517189,0.267936617136002,0.999310970306396,0.0103687467053533,-0.0356405489146709,0.91297721862793,-0.0512853711843491,0.40477454662323,0.963245034217834,0.019208088517189,0.267936617136002,0.538598775863647,-0.0276536475867033,0.842108428478241,0.832373559474945,0.548962354660034,0.0761235281825066,
- 0.955748081207275,0.0227442998439074,0.293305784463882,0.99558413028717,-0.00298954593017697,0.0938262864947319,0.991084516048431,-0.0363298952579498,0.12818568944931,0.0917217582464218,-0.988272249698639,-0.122086212038994,0.071630597114563,-0.973288655281067,0.218124642968178,0.999093770980835,-0.0285335779190063,0.0315840020775795,-0.0699400827288628,-0.996892988681793,-0.0362322926521301,-0.172072902321815,-0.96986448764801,0.172493115067482,-0.845459342002869,-0.533638775348663,-0.0206944644451141,0.0715059787034988,-0.994089484214783,0.081689365208149,-0.0574825033545494,-0.9615198969841,0.268654555082321,-0.143146142363548,-0.94405335187912,0.297106713056564,0.0999375134706497,-0.98615574836731,-0.132323369383812,0.947886943817139,-0.0174151789397001,0.318130552768707,0.0999375134706497,-0.98615574836731,-0.132323369383812,0.106792122125626,-0.970673739910126,-0.215378805994987,0.97179239988327,-0.0211503934115171,-0.234887599945068,0.99558413028717,-0.00298954593017697,0.0938262864947319,0.988756895065308,0.0216355249285698,-0.14795845746994,0.832373559474945,0.548962354660034,0.0761235281825066,0.710256218910217,-0.0171648412942886,0.703733921051025,0.907638430595398,-0.00211066007614136,0.419747650623322,0.980895400047302,0.0139876082539558,0.194032624363899,0.980895400047302,0.0139876082539558,0.194032624363899,0.441162794828415,-0.82635909318924,0.350008606910706,0.0153920110315084,-0.995200335979462,0.0966404154896736,0.710256218910217,-0.0171648412942886,0.703733921051025,0.441162794828415,-0.82635909318924,0.350008606910706,-0.0326056554913521,-0.982474982738495,0.183520555496216,0.0153920110315084,-0.995200335979462,0.0966404154896736,-0.0176448319107294,-0.986487030982971,0.16288648545742,-0.0326056554913521,-0.982474982738495,0.183520555496216,0.441162794828415,-0.82635909318924,0.350008606910706,0.969874858856201,-0.0319370776414871,0.241501286625862,-0.0176448319107294,-0.986487030982971,0.16288648545742,0.441162794828415,-0.82635909318924,0.350008606910706,0.980895400047302,0.0139876082539558,0.194032624363899,
- 0.907638430595398,-0.00211066007614136,0.419747650623322,0.933197736740112,-0.00522594153881073,0.359325289726257,0.788585484027863,0.0307412222027779,0.614156365394592,0.969874858856201,-0.0319370776414871,0.241501286625862,0.955260574817657,-0.0554799176752567,0.290515601634979,0.919680118560791,-0.0432947911322117,-0.390274286270142,0.932897925376892,-0.35991296172142,0.012814711779356,0.962007999420166,-0.105890333652496,0.251650303602219,0.955260574817657,-0.0554799176752567,0.290515601634979,0.932897925376892,-0.35991296172142,0.012814711779356,0.991084516048431,-0.0363298952579498,0.12818568944931,0.962007999420166,-0.105890333652496,0.251650303602219,0.932897925376892,-0.35991296172142,0.012814711779356,0.932897925376892,-0.35991296172142,0.012814711779356,0.776215434074402,-0.629847943782806,-0.0279516167938709,0.0917217582464218,-0.988272249698639,-0.122086212038994,0.991084516048431,-0.0363298952579498,0.12818568944931,0.0197243914008141,-0.9977667927742,-0.0638150423765183,0.0917217582464218,-0.988272249698639,-0.122086212038994,0.776215434074402,-0.629847943782806,-0.0279516167938709,0.776215434074402,-0.629847943782806,-0.0279516167938709,-0.0199079401791096,-0.810216426849365,-0.585792660713196,0.0197243914008141,-0.9977667927742,-0.0638150423765183,0.776215434074402,-0.629847943782806,-0.0279516167938709,-0.0470497608184814,-0.938998878002167,-0.340686827898026,-0.0199079401791096,-0.810216426849365,-0.585792660713196,0.094148650765419,-0.992191731929779,0.0818033069372177,-0.0470497608184814,-0.938998878002167,-0.340686827898026,0.776215434074402,-0.629847943782806,-0.0279516167938709,0.996877133846283,-0.0254966598004103,-0.0747389495372772,0.094148650765419,-0.992191731929779,0.0818033069372177,0.776215434074402,-0.629847943782806,-0.0279516167938709,0.932897925376892,-0.35991296172142,0.012814711779356,0.919680118560791,-0.0432947911322117,-0.390274286270142,0.996877133846283,-0.0254966598004103,-0.0747389495372772,0.932897925376892,-0.35991296172142,0.012814711779356,0.920309007167816,0.0253146477043629,0.390372544527054,
- 0.955450177192688,0.0298251006752253,0.293641686439514,0.572431743144989,0.755577564239502,0.318472027778625,0.572431743144989,0.755577564239502,0.318472027778625,0.0769442617893219,0.996375024318695,-0.0362837500870228,0.920309007167816,0.0253146477043629,0.390372544527054,0.572431743144989,0.755577564239502,0.318472027778625,0.156537041068077,0.986759543418884,-0.0424492284655571,0.0769442617893219,0.996375024318695,-0.0362837500870228,0.851845145225525,0.523127675056458,-0.0264068692922592,0.0350317396223545,0.997988760471344,-0.0528340041637421,0.156537041068077,0.986759543418884,-0.0424492284655571,0.572431743144989,0.755577564239502,0.318472027778625,0.969042241573334,-0.0984161198139191,0.226431995630264,0.955450177192688,0.0298251006752253,0.293641686439514,0.919680118560791,-0.0432947911322117,-0.390274286270142,0.955260574817657,-0.0554799176752567,0.290515601634979,0.851845145225525,0.523127675056458,-0.0264068692922592,0.969042241573334,-0.0984161198139191,0.226431995630264,0.922168612480164,0.0392467714846134,-0.384791791439056,0.0542337410151958,0.934869587421417,0.350824058055878,-0.0559204891324043,0.982305586338043,0.178741753101349,-0.0661929324269295,0.997298240661621,-0.0318581350147724,0.0350317396223545,0.997988760471344,-0.0528340041637421,0.0300168581306934,0.992282569408417,-0.120309345424175,0.0136834727600217,0.998421013355255,-0.0544823445379734,0.0667807385325432,0.997654914855957,-0.0150012150406837,-0.138708889484406,0.928807377815247,0.343623071908951,-0.900557518005371,0.0149562815204263,-0.434479653835297,0.0456434115767479,0.988470554351807,-0.144370287656784,-0.178965926170349,0.96156907081604,0.208221793174744,-0.901534020900726,0.00951127987354994,-0.432603687047958,-0.942653298377991,0.00291112437844276,-0.333760887384415,-0.86710399389267,-0.00466629723086953,-0.498105525970459,-0.900557518005371,0.0149562815204263,-0.434479653835297,-0.79337614774704,-0.0365980342030525,-0.607630610466003,-0.959517598152161,-0.0360620878636837,-0.279330521821976,-0.76064670085907,0.0259251147508621,-0.648648202419281,
- -0.86710399389267,-0.00466629723086953,-0.498105525970459,-0.942653298377991,0.00291112437844276,-0.333760887384415,-0.991975903511047,0.0185507647693157,-0.125058740377426,0.119476273655891,0.875588417053223,-0.468049496412277,-0.0989424884319305,0.993277847766876,0.0600804015994072,-0.76064670085907,0.0259251147508621,-0.648648202419281,-0.0808648690581322,0.996559023857117,0.0181933548301458,0.238015875220299,0.876257300376892,-0.418953090906143,0.0667807385325432,0.997654914855957,-0.0150012150406837,0.0136834727600217,0.998421013355255,-0.0544823445379734,0.947886943817139,-0.0174151789397001,0.318130552768707,0.988756895065308,0.0216355249285698,-0.14795845746994,0.99558413028717,-0.00298954593017697,0.0938262864947319,0.994332253932953,-0.0109392488375306,0.105752974748611,0.0403046831488609,0.992116332054138,0.11866233497858,0.988756895065308,0.0216355249285698,-0.14795845746994,0.857994198799133,0.0251354090869427,0.513044059276581,0.0803097859025002,0.984496533870697,-0.155938938260078,0.0217673387378454,0.980425179004669,-0.195685043931007,0.0978051424026489,0.989749550819397,-0.104068204760551,0.0403046831488609,0.992116332054138,0.11866233497858,-0.0481972023844719,0.988640606403351,-0.142362102866173,0.0728976503014565,0.958880841732025,-0.274287164211273,-0.0540722534060478,0.99398809671402,-0.0952055528759956,-0.0559204891324043,0.982305586338043,0.178741753101349,0.0542337410151958,0.934869587421417,0.350824058055878,0.0542337410151958,0.934869587421417,0.350824058055878,0.922168612480164,0.0392467714846134,-0.384791791439056,0.955748081207275,0.0227442998439074,0.293305784463882,0.0728976503014565,0.958880841732025,-0.274287164211273,0.991084516048431,-0.0363298952579498,0.12818568944931,0.922168612480164,0.0392467714846134,-0.384791791439056,0.962007999420166,-0.105890333652496,0.251650303602219,-0.0753497555851936,-0.985148429870605,0.154288902878761,-0.0688101947307587,-0.996485114097595,-0.0477780923247337,0.094148650765419,-0.992191731929779,0.0818033069372177,0.0934873968362808,-0.992602944374084,-0.0774563178420067,
- -0.0753497555851936,-0.985148429870605,0.154288902878761,-0.99848735332489,-0.0157514698803425,-0.0526783764362335,-0.993792235851288,-0.0169881153851748,0.109947256743908,-0.0688101947307587,-0.996485114097595,-0.0477780923247337,-0.99848735332489,-0.0157514698803425,-0.0526783764362335,-0.971705555915833,0.0334426388144493,0.233815997838974,-0.857112109661102,0.0325146466493607,-0.514102756977081,-0.993792235851288,-0.0169881153851748,0.109947256743908,-0.988614857196808,-0.0445010289549828,0.143737137317657,-0.946046531200409,-0.057813324034214,0.318831473588943,-0.857112109661102,0.0325146466493607,-0.514102756977081,-0.907899975776672,-0.0584010034799576,0.415098905563354,-0.991694808006287,-0.0103991609066725,-0.128192901611328,-0.988614857196808,-0.0445010289549828,0.143737137317657,-0.907899975776672,-0.0584010034799576,0.415098905563354,-0.769172966480255,0.00530485855415463,0.639018714427948,-0.992519676685333,-0.01563810557127,-0.121079422533512,-0.991694808006287,-0.0103991609066725,-0.128192901611328,-0.769172966480255,0.00530485855415463,0.639018714427948,-0.945326507091522,0.0299082025885582,-0.324751049280167,-0.97487473487854,-0.0130235683172941,-0.222372874617577,-0.97487473487854,-0.0130235683172941,-0.222372874617577,-0.0782528445124626,-0.992090165615082,-0.0981515124440193,-0.0699400827288628,-0.996892988681793,-0.0362322926521301,-0.992519676685333,-0.01563810557127,-0.121079422533512,-0.0699400827288628,-0.996892988681793,-0.0362322926521301,0.0917217582464218,-0.988272249698639,-0.122086212038994,0.0197243914008141,-0.9977667927742,-0.0638150423765183,-0.172072902321815,-0.96986448764801,0.172493115067482,0.0197243914008141,-0.9977667927742,-0.0638150423765183,-0.0199079401791096,-0.810216426849365,-0.585792660713196,-0.0840015485882759,-0.879229545593262,-0.468934118747711,-0.172072902321815,-0.96986448764801,0.172493115067482,-0.0199079401791096,-0.810216426849365,-0.585792660713196,-0.0470497608184814,-0.938998878002167,-0.340686827898026,-0.16260239481926,-0.920406758785248,-0.355544567108154,
- -0.0840015485882759,-0.879229545593262,-0.468934118747711,0.915413916110992,0.0195544119924307,0.402038633823395,0.945026516914368,0.0302525255829096,0.325591564178467,0.710256218910217,-0.0171648412942886,0.703733921051025,0.979714572429657,-0.0196288805454969,0.199434533715248,-0.138708889484406,0.928807377815247,0.343623071908951,0.945026516914368,0.0302525255829096,0.325591564178467,0.915413916110992,0.0195544119924307,0.402038633823395,0.150847017765045,0.98226135969162,-0.111390247941017,0.0300168581306934,0.992282569408417,-0.120309345424175,-0.138708889484406,0.928807377815247,0.343623071908951,0.150847017765045,0.98226135969162,-0.111390247941017,-0.058207169175148,0.997824788093567,0.0309493523091078,0.119623586535454,0.875383615493774,-0.468394964933395,-0.099646620452404,0.956715822219849,0.27343288064003,0.0217707455158234,0.998187124729156,0.0561122484505177,0.238015875220299,0.876257300376892,-0.418953090906143,-0.0808648690581322,0.996559023857117,0.0181933548301458,0.0217707455158234,0.998187124729156,0.0561122484505177,0.982895970344543,0.0135392183437943,0.183663785457611,0.788585484027863,0.0307412222027779,0.614156365394592,0.238015875220299,0.876257300376892,-0.418953090906143,0.969874858856201,-0.0319370776414871,0.241501286625862,0.788585484027863,0.0307412222027779,0.614156365394592,0.982895970344543,0.0135392183437943,0.183663785457611,0.999310970306396,0.0103687467053533,-0.0356405489146709,0.538598775863647,-0.0276536475867033,0.842108428478241,-0.0481972023844719,0.988640606403351,-0.142362102866173,0.0403046831488609,0.992116332054138,0.11866233497858,0.0803097859025002,0.984496533870697,-0.155938938260078,-0.113390132784843,0.889352917671204,0.442937970161438,-0.158358231186867,0.915304780006409,0.370324015617371,-0.994832575321198,0.0218985099345446,-0.0991398692131042,-0.00981704518198967,0.950664162635803,-0.310066819190979,-0.237487465143204,0.583049297332764,0.776951372623444,-0.759001731872559,0.0478743761777878,-0.649326205253601,-0.994679033756256,-0.0208852700889111,-0.100883156061172,
- -0.994832575321198,0.0218985099345446,-0.0991398692131042,-0.759001731872559,0.0478743761777878,-0.649326205253601,-0.998318433761597,-0.0412477031350136,0.0407323502004147,-0.143146142363548,-0.94405335187912,0.297106713056564,-0.994679033756256,-0.0208852700889111,-0.100883156061172,-0.998318433761597,-0.0412477031350136,0.0407323502004147,0.0330434516072273,-0.873342931270599,-0.48598375916481,0.0999375134706497,-0.98615574836731,-0.132323369383812,-0.143146142363548,-0.94405335187912,0.297106713056564,0.0330434516072273,-0.873342931270599,-0.48598375916481,0.106792122125626,-0.970673739910126,-0.215378805994987,0.071630597114563,-0.973288655281067,0.218124642968178,0.0917217582464218,-0.988272249698639,-0.122086212038994,-0.0699400827288628,-0.996892988681793,-0.0362322926521301,-0.0782528445124626,-0.992090165615082,-0.0981515124440193,0.999093770980835,-0.0285335779190063,0.0315840020775795,0.955748081207275,0.0227442998439074,0.293305784463882,0.922168612480164,0.0392467714846134,-0.384791791439056,0.991084516048431,-0.0363298952579498,0.12818568944931,0.99558413028717,-0.00298954593017697,0.0938262864947319,0.955748081207275,0.0227442998439074,0.293305784463882,0.999093770980835,-0.0285335779190063,0.0315840020775795,0.994332253932953,-0.0109392488375306,0.105752974748611,0.0217673387378454,0.980425179004669,-0.195685043931007,-0.0540722534060478,0.99398809671402,-0.0952055528759956,0.0728976503014565,0.958880841732025,-0.274287164211273,0.0978051424026489,0.989749550819397,-0.104068204760551,-0.945326507091522,0.0299082025885582,-0.324751049280167,-0.0687248259782791,0.994267106056213,0.0819139406085014,-0.000867596827447414,0.997753500938416,-0.0669861063361168,-0.96909499168396,-0.0269297957420349,-0.245213717222214,-0.97487473487854,-0.0130235683172941,-0.222372874617577,-0.945326507091522,0.0299082025885582,-0.324751049280167,-0.96909499168396,-0.0269297957420349,-0.245213717222214,-0.994151294231415,-0.0127997882664204,-0.107235044240952,-0.0574825033545494,-0.9615198969841,0.268654555082321,-0.0782528445124626,-0.992090165615082,-0.0981515124440193,
- -0.97487473487854,-0.0130235683172941,-0.222372874617577,-0.994151294231415,-0.0127997882664204,-0.107235044240952,0.071630597114563,-0.973288655281067,0.218124642968178,-0.0782528445124626,-0.992090165615082,-0.0981515124440193,-0.0574825033545494,-0.9615198969841,0.268654555082321,0.0715059787034988,-0.994089484214783,0.081689365208149,0.857994198799133,0.0251354090869427,0.513044059276581,0.988756895065308,0.0216355249285698,-0.14795845746994,0.947886943817139,-0.0174151789397001,0.318130552768707,0.97179239988327,-0.0211503934115171,-0.234887599945068,0.772794902324677,0.00912381801754236,0.63459038734436,0.920309007167816,0.0253146477043629,0.390372544527054,0.996877133846283,-0.0254966598004103,-0.0747389495372772,0.919680118560791,-0.0432947911322117,-0.390274286270142,0.955450177192688,0.0298251006752253,0.293641686439514,0.0769442617893219,0.996375024318695,-0.0362837500870228,0.156537041068077,0.986759543418884,-0.0424492284655571,-0.0749295279383659,0.991749107837677,0.104016341269016,-0.993792235851288,-0.0169881153851748,0.109947256743908,-0.857112109661102,0.0325146466493607,-0.514102756977081,-0.946046531200409,-0.057813324034214,0.318831473588943,0.094148650765419,-0.992191731929779,0.0818033069372177,-0.0688101947307587,-0.996485114097595,-0.0477780923247337,-0.16260239481926,-0.920406758785248,-0.355544567108154,-0.0470497608184814,-0.938998878002167,-0.340686827898026,-0.79337614774704,-0.0365980342030525,-0.607630610466003,-0.900557518005371,0.0149562815204263,-0.434479653835297,-0.901534020900726,0.00951127987354994,-0.432603687047958,-0.926331698894501,-0.0315558426082134,-0.375385016202927,-0.375137567520142,-0.836815714836121,0.398762315511703,-0.79337614774704,-0.0365980342030525,-0.607630610466003,-0.926331698894501,-0.0315558426082134,-0.375385016202927,-0.0647516697645187,-0.996598839759827,-0.0509704276919365,0.0153920110315084,-0.995200335979462,0.0966404154896736,-0.375137567520142,-0.836815714836121,0.398762315511703,-0.0647516697645187,-0.996598839759827,-0.0509704276919365,-0.156551748514175,-0.91955554485321,0.360429435968399,
- 0.114168331027031,-0.988938570022583,-0.094689354300499,-0.25093212723732,-0.892476737499237,0.374857991933823,0.0610741153359413,-0.926297008991241,-0.371811598539352,-0.0176448319107294,-0.986487030982971,0.16288648545742,-0.25093212723732,-0.892476737499237,0.374857991933823,-0.921522736549377,-0.0255857855081558,-0.387480854988098,-0.959517598152161,-0.0360620878636837,-0.279330521821976,0.0610741153359413,-0.926297008991241,-0.371811598539352,-0.921522736549377,-0.0255857855081558,-0.387480854988098,-0.991975903511047,0.0185507647693157,-0.125058740377426,-0.76064670085907,0.0259251147508621,-0.648648202419281,-0.959517598152161,-0.0360620878636837,-0.279330521821976,0.00328020285815001,0.215380504727364,0.976524770259857,0.246607586741447,0.0195546969771385,0.968918144702911,0.44560244679451,-0.019631389528513,0.895015716552734,0.0322015136480331,-0.835179209709167,0.549034476280212,0.18077740073204,0.982235074043274,0.0503379814326763,0.00328020285815001,0.215380504727364,0.976524770259857,0.0566268414258957,0.984206199645996,0.16772472858429,-0.0605180934071541,0.997805058956146,-0.0268842875957489,-0.034475564956665,0.999390244483948,0.00553020648658276,-0.0501660741865635,0.99873822927475,-0.00230619823560119,0.0531323030591011,0.998540163040161,-0.00972810480743647,0.0549790412187576,0.99848610162735,-0.00174174853600562,0.00328020285815001,0.215380504727364,0.976524770259857,0.18077740073204,0.982235074043274,0.0503379814326763,0.246607586741447,0.0195546969771385,0.968918144702911,0.44560244679451,-0.019631389528513,0.895015716552734,-0.380789458751678,-0.9194096326828,0.0984141975641251,0.0322015136480331,-0.835179209709167,0.549034476280212,-0.0230453256517649,-0.682349503040314,-0.730662822723389,0.00036656396696344,-0.996604323387146,-0.0823402553796768,-0.273851811885834,-0.0315540917217731,-0.961254179477692,-0.380789458751678,-0.9194096326828,0.0984141975641251,0.00036656396696344,-0.996604323387146,-0.0823402553796768,-0.0230453256517649,-0.682349503040314,-0.730662822723389,0.0322015136480331,-0.835179209709167,0.549034476280212,
- -0.213720694184303,0.00949984975159168,-0.976848721504211,-0.0334381684660912,-0.364305257797241,-0.930679082870483,-0.0230453256517649,-0.682349503040314,-0.730662822723389,-0.273851811885834,-0.0315540917217731,-0.961254179477692,-0.213720694184303,0.00949984975159168,-0.976848721504211,-0.274622797966003,0.96146434545517,-0.0129883158951998,-0.0334381684660912,-0.364305257797241,-0.930679082870483,-0.714238941669464,-0.0145717635750771,-0.699750244617462,-0.624875366687775,-0.610310316085815,-0.486879914999008,-0.771911799907684,0.193172410130501,-0.60567045211792,-0.876821398735046,0.0381906665861607,-0.47929710149765,-0.0170189384371042,-0.995996117591858,-0.0877625048160553,-0.786991894245148,-0.0140772387385368,-0.616802752017975,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.624875366687775,-0.610310316085815,-0.486879914999008,-0.162802845239639,-0.984715938568115,0.0618864372372627,0.127220720052719,-0.991873383522034,0.00145310536026955,0.469363480806351,-0.798421204090118,0.377122700214386,-0.876821398735046,0.0381906665861607,-0.47929710149765,0.141584917902946,0.953798890113831,-0.264993280172348,-0.263692170381546,0.951618671417236,0.157760709524155,-0.232147186994553,0.0375349409878254,-0.971956193447113,0.143112406134605,-0.926413416862488,-0.348248511552811,-0.0170189384371042,-0.995996117591858,-0.0877625048160553,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.786991894245148,-0.0140772387385368,-0.616802752017975,-0.877894997596741,-0.0609964691102505,-0.474952518939972,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.0168390478938818,0.998862862586975,0.0446035899221897,-0.0104984464123845,0.999258279800415,0.0370500311255455,0.0188162419945002,0.999412655830383,-0.0286418274044991,0.0353486835956573,0.999131143093109,-0.0220786985009909,0.0293855462223291,0.999567747116089,-0.000927831046283245,-0.714238941669464,-0.0145717635750771,-0.699750244617462,-0.162802845239639,-0.984715938568115,0.0618864372372627,-0.624875366687775,-0.610310316085815,-0.486879914999008,
- -0.771911799907684,0.193172410130501,-0.60567045211792,0.141584917902946,0.953798890113831,-0.264993280172348,-0.876821398735046,0.0381906665861607,-0.47929710149765,0.469363480806351,-0.798421204090118,0.377122700214386,0.741711735725403,-0.0184945315122604,0.670463800430298,0.930196821689606,0.00146970932837576,0.367058247327805,0.792009651660919,0.0423000901937485,0.609041571617126,0.798401236534119,0.0325037054717541,0.601247847080231,0.930196821689606,0.00146970932837576,0.367058247327805,0.741711735725403,-0.0184945315122604,0.670463800430298,0.761029005050659,-0.022070026025176,0.648342311382294,0.372741967439651,0.0288207679986954,0.927487373352051,0.741711735725403,-0.0184945315122604,0.670463800430298,0.127220720052719,-0.991873383522034,0.00145310536026955,0.00511623919010162,-0.990981340408325,0.133902445435524,0.761029005050659,-0.022070026025176,0.648342311382294,0.436445236206055,0.837820887565613,0.327981203794479,-0.138598799705505,0.975487351417542,0.170923396945,-0.0876667574048042,0.996147155761719,-0.00232525146566331,0.0815233588218689,0.989096581935883,0.122645497322083,-0.163061335682869,0.983343958854675,0.080285020172596,0.204792588949203,0.0330469235777855,0.978247404098511,0.324911832809448,0.0302571095526218,0.945260226726532,-0.356371253728867,0.928751111030579,0.102083317935467,-0.246934473514557,0.708174884319305,-0.661446690559387,-0.26496160030365,0.96417760848999,0.0125252557918429,0.113301336765289,0.992281973361969,-0.0503916926681995,-0.179098859429359,0.952485382556915,0.246363893151283,0.930196821689606,0.00146970932837576,0.367058247327805,0.798401236534119,0.0325037054717541,0.601247847080231,0.127220720052719,-0.991873383522034,0.00145310536026955,0.741711735725403,-0.0184945315122604,0.670463800430298,0.469363480806351,-0.798421204090118,0.377122700214386,0.436445236206055,0.837820887565613,0.327981203794479,-0.179098859429359,0.952485382556915,0.246363893151283,-0.138598799705505,0.975487351417542,0.170923396945,0.436445236206055,0.837820887565613,0.327981203794479,0.792009651660919,0.0423000901937485,0.609041571617126,
- 0.930196821689606,0.00146970932837576,0.367058247327805,-0.179098859429359,0.952485382556915,0.246363893151283,0.0100239245221019,-0.999470710754395,-0.0309506691992283,-0.519830822944641,-0.0116970902308822,-0.854189157485962,-0.532479345798492,-0.0208989009261131,-0.846184968948364,-0.322220683097839,-0.944068491458893,0.0700606182217598,-0.363602161407471,0.0409878231585026,-0.930652260780334,-0.09173184633255,0.994854867458344,0.0430006496608257,0.238395497202873,0.950670599937439,-0.198476850986481,-0.534089326858521,0.0218967534601688,-0.84514445066452,0.376505047082901,-0.480656892061234,0.791967749595642,0.689521729946136,-0.408998310565948,0.59772914648056,0.10112226754427,-0.994129598140717,0.0384814850986004,0.16578608751297,-0.986158192157745,-0.0026522243861109,-0.519830822944641,-0.0116970902308822,-0.854189157485962,-0.363602161407471,0.0409878231585026,-0.930652260780334,-0.534089326858521,0.0218967534601688,-0.84514445066452,-0.532479345798492,-0.0208989009261131,-0.846184968948364,0.33237561583519,-0.0174107942730188,0.94298642873764,0.53565913438797,-0.0122394226491451,0.844345569610596,0.689521729946136,-0.408998310565948,0.59772914648056,0.376505047082901,-0.480656892061234,0.791967749595642,0.913165628910065,0.0416188389062881,0.405458480119705,-0.198230028152466,0.95389461517334,0.225366324186325,0.581138014793396,0.526100039482117,0.620884358882904,-0.198230028152466,0.95389461517334,0.225366324186325,0.0534902438521385,0.996912002563477,0.0574923865497112,0.581138014793396,0.526100039482117,0.620884358882904,-0.905272960662842,-0.0281107779592276,-0.423899263143539,-0.313323885202408,0.460713654756546,0.830404281616211,-0.0198354944586754,0.997412800788879,-0.0690959990024567,-0.979451417922974,0.00812750402837992,-0.20151698589325,-0.272024005651474,-0.962289690971375,-0.00130008172709495,0.318997293710709,-0.877575278282166,-0.3579141497612,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.762718141078949,-0.0347573608160019,-0.645796418190002,
- -0.520822405815125,-0.0105501683428884,-0.853599846363068,0.913165628910065,0.0416188389062881,0.405458480119705,0.492372989654541,-0.0638601630926132,0.868038415908813,0.392896413803101,-0.0570839233696461,0.917809367179871,0.374125987291336,-0.0997316092252731,0.921999633312225,0.0879097580909729,-0.991930425167084,-0.0913559123873711,-0.0221523530781269,0.911015093326569,0.411777555942535,-0.324115306138992,-0.166896551847458,0.931179285049438,-0.151606693863869,0.987582504749298,0.0411850586533546,0.229741841554642,0.818525314331055,0.526531159877777,0.407025814056396,0.549795866012573,0.72942066192627,0.725046455860138,0.0216353740543127,0.688360095024109,-0.0687396228313446,0.99211448431015,0.104803323745728,-0.0687396228313446,0.99211448431015,0.104803323745728,-0.0325685627758503,0.994579434394836,0.0987480655312538,0.229741841554642,0.818525314331055,0.526531159877777,-0.627336323261261,-0.775063037872314,0.07567448168993,0.0760692730545998,-0.353853434324265,-0.932202339172363,-0.0199885927140713,-0.0387749895453453,-0.999048113822937,-0.574388146400452,-0.815450966358185,0.0715400949120522,-0.183306321501732,-0.121925517916679,-0.975465536117554,-0.609832108020782,0.740848183631897,0.281511783599854,0.731119215488434,0.629720330238342,-0.262520611286163,-0.653052806854248,0.0319706946611404,-0.756637334823608,-0.435585826635361,-0.751775741577148,0.495073854923248,-0.627336323261261,-0.775063037872314,0.07567448168993,-0.574388146400452,-0.815450966358185,0.0715400949120522,-0.165489569306374,-0.981139779090881,0.0998904705047607,0.0760692730545998,-0.353853434324265,-0.932202339172363,-0.183306321501732,-0.121925517916679,-0.975465536117554,-0.653052806854248,0.0319706946611404,-0.756637334823608,-0.0199885927140713,-0.0387749895453453,-0.999048113822937,0.814250290393829,0.312393993139267,0.489291816949844,0.397978723049164,-0.0127564817667007,0.917306005954742,0.648131132125854,0.0053023356013,0.761510372161865,0.352814465761185,0.860463559627533,0.367592811584473,0.291270792484283,0.0357864126563072,0.955971121788025,
- -0.435585826635361,-0.751775741577148,0.495073854923248,-0.165489569306374,-0.981139779090881,0.0998904705047607,-0.3462153673172,-0.0147831803187728,0.938038647174835,0.352814465761185,0.860463559627533,0.367592811584473,0.28618249297142,0.953975021839142,-0.0896176397800446,0.565825462341309,0.802739441394806,0.188284084200859,0.814250290393829,0.312393993139267,0.489291816949844,0.133145526051521,-0.989236116409302,-0.0606989562511444,-0.0270740110427141,0.0549051836133003,-0.998124539852142,0.00451890146359801,-0.0332628041505814,-0.999436497688293,-0.371711671352386,-0.926047205924988,-0.0653227567672729,-0.10789779573679,0.0870642215013504,-0.990342319011688,-0.247496888041496,0.708047747612,-0.661372661590576,0.141838446259499,0.988476753234863,-0.0528742782771587,-0.211707159876823,0.0151454862207174,-0.977215826511383,0.100404299795628,-0.993041276931763,0.0615468248724937,0.238220572471619,-0.97115570306778,0.0103720612823963,0.133145526051521,-0.989236116409302,-0.0606989562511444,-0.371711671352386,-0.926047205924988,-0.0653227567672729,-0.211707159876823,0.0151454862207174,-0.977215826511383,-0.08964953571558,0.0489116199314594,-0.994771718978882,-0.10789779573679,0.0870642215013504,-0.990342319011688,-0.115038521587849,-0.0175364967435598,0.993206262588501,0.324911832809448,0.0302571095526218,0.945260226726532,0.204792588949203,0.0330469235777855,0.978247404098511,0.161547914147377,0.00724203232675791,0.986838400363922,-0.115038521587849,-0.0175364967435598,0.993206262588501,0.100404299795628,-0.993041276931763,0.0615468248724937,-0.380789458751678,-0.9194096326828,0.0984141975641251,0.44560244679451,-0.019631389528513,0.895015716552734,0.459950596094131,0.013547271490097,0.887841165065765,-0.0308131724596024,0.998189210891724,0.0516616925597191,0.352814465761185,0.860463559627533,0.367592811584473,-0.0308131724596024,0.998189210891724,0.0516616925597191,0.28618249297142,0.953975021839142,-0.0896176397800446,0.352814465761185,0.860463559627533,0.367592811584473,-0.0303990263491869,0.0278480518609285,-0.999149858951569,
- -0.417764663696289,0.907562613487244,0.0424600057303905,-0.247496888041496,0.708047747612,-0.661372661590576,-0.10789779573679,0.0870642215013504,-0.990342319011688,-0.08964953571558,0.0489116199314594,-0.994771718978882,-0.0303990263491869,0.0278480518609285,-0.999149858951569,-0.10789779573679,0.0870642215013504,-0.990342319011688,0.413501352071762,-0.887647926807404,-0.202726453542709,-0.349899530410767,-0.040142010897398,-0.935926795005798,-0.0270740110427141,0.0549051836133003,-0.998124539852142,0.133145526051521,-0.989236116409302,-0.0606989562511444,0.128824770450592,-0.991645872592926,0.0065435441210866,0.413501352071762,-0.887647926807404,-0.202726453542709,0.133145526051521,-0.989236116409302,-0.0606989562511444,0.238220572471619,-0.97115570306778,0.0103720612823963,-0.3462153673172,-0.0147831803187728,0.938038647174835,-0.165489569306374,-0.981139779090881,0.0998904705047607,0.128824770450592,-0.991645872592926,0.0065435441210866,0.487910062074661,-0.0249483734369278,0.872537314891815,0.352814465761185,0.860463559627533,0.367592811584473,0.648131132125854,0.0053023356013,0.761510372161865,0.459950596094131,0.013547271490097,0.887841165065765,0.814250290393829,0.312393993139267,0.489291816949844,0.565825462341309,0.802739441394806,0.188284084200859,0.381534248590469,0.910526275634766,-0.159290850162506,0.187398582696915,0.754551708698273,0.628914535045624,0.222869053483009,0.0378016121685505,-0.974115252494812,-0.498693227767944,0.852924585342407,0.154352754354477,-0.609832108020782,0.740848183631897,0.281511783599854,-0.754495322704315,0.638873040676117,0.150260046124458,-0.671279489994049,-0.0305120330303907,-0.740576028823853,0.222869053483009,0.0378016121685505,-0.974115252494812,-0.183306321501732,-0.121925517916679,-0.975465536117554,0.594211101531982,-0.639131426811218,-0.488287150859833,0.128772020339966,-0.98137241601944,-0.142569273710251,-0.671279489994049,-0.0305120330303907,-0.740576028823853,0.594211101531982,-0.639131426811218,-0.488287150859833,-0.627336323261261,-0.775063037872314,0.07567448168993,
- -0.374354332685471,-0.889924168586731,0.260564804077148,0.128772020339966,-0.98137241601944,-0.142569273710251,-0.627336323261261,-0.775063037872314,0.07567448168993,-0.435585826635361,-0.751775741577148,0.495073854923248,0.771871447563171,-0.031832717359066,0.634981155395508,-0.374354332685471,-0.889924168586731,0.260564804077148,-0.435585826635361,-0.751775741577148,0.495073854923248,0.291270792484283,0.0357864126563072,0.955971121788025,0.187398582696915,0.754551708698273,0.628914535045624,0.0820540189743042,0.0125169372186065,0.996549308300018,0.397978723049164,-0.0127564817667007,0.917306005954742,0.814250290393829,0.312393993139267,0.489291816949844,0.187398582696915,0.754551708698273,0.628914535045624,0.172403708100319,0.984486103057861,-0.0326206758618355,0.123460844159126,0.025131668895483,0.992031216621399,0.187398582696915,0.754551708698273,0.628914535045624,0.381534248590469,0.910526275634766,-0.159290850162506,0.172403708100319,0.984486103057861,-0.0326206758618355,0.376505047082901,-0.480656892061234,0.791967749595642,0.16578608751297,-0.986158192157745,-0.0026522243861109,0.33237561583519,-0.0174107942730188,0.94298642873764,0.123460844159126,0.025131668895483,0.992031216621399,0.0820540189743042,0.0125169372186065,0.996549308300018,0.187398582696915,0.754551708698273,0.628914535045624,0.105663046240807,0.994378566741943,-0.00682782754302025,0.338637262582779,0.018595727160573,0.940733253955841,0.407025814056396,0.549795866012573,0.72942066192627,0.229741841554642,0.818525314331055,0.526531159877777,-0.0325685627758503,0.994579434394836,0.0987480655312538,0.105663046240807,0.994378566741943,-0.00682782754302025,0.229741841554642,0.818525314331055,0.526531159877777,-0.979451417922974,0.00812750402837992,-0.20151698589325,-0.0198354944586754,0.997412800788879,-0.0690959990024567,-0.47282463312149,0.84364116191864,0.254374802112579,-0.413818925619125,0.0332561917603016,-0.909751653671265,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.520822405815125,-0.0105501683428884,-0.853599846363068,-0.520020008087158,-0.0150248091667891,-0.854021966457367,
- -0.520020008087158,-0.0150248091667891,-0.854021966457367,-0.0209355615079403,-0.996880173683167,-0.0761030241847038,-0.55085563659668,-0.532698214054108,-0.642487943172455,0.805310428142548,-0.496327340602875,0.324244469404221,0.094261959195137,-0.995149731636047,0.0281384289264679,0.10112226754427,-0.994129598140717,0.0384814850986004,0.689521729946136,-0.408998310565948,0.59772914648056,0.586689352989197,-0.0273636858910322,0.809349656105042,0.094261959195137,-0.995149731636047,0.0281384289264679,0.805310428142548,-0.496327340602875,0.324244469404221,0.586689352989197,-0.0273636858910322,0.809349656105042,0.805310428142548,-0.496327340602875,0.324244469404221,0.689521729946136,-0.408998310565948,0.59772914648056,0.53565913438797,-0.0122394226491451,0.844345569610596,-0.232147186994553,0.0375349409878254,-0.971956193447113,-0.263692170381546,0.951618671417236,0.157760709524155,-0.313323885202408,0.460713654756546,0.830404281616211,-0.488956212997437,-0.0949248522520065,0.867128074169159,0.318997293710709,-0.877575278282166,-0.3579141497612,0.143112406134605,-0.926413416862488,-0.348248511552811,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.55085563659668,-0.532698214054108,-0.642487943172455,-0.877894997596741,-0.0609964691102505,-0.474952518939972,-0.762718141078949,-0.0347573608160019,-0.645796418190002,0.104331381618977,0.752275824546814,0.650535225868225,0.429700613021851,0.0186021476984024,0.902779877185822,0.492372989654541,-0.0638601630926132,0.868038415908813,0.581138014793396,0.526100039482117,0.620884358882904,0.372741967439651,0.0288207679986954,0.927487373352051,0.0699071288108826,0.997432410717011,0.0155494436621666,-0.179098859429359,0.952485382556915,0.246363893151283,0.798401236534119,0.0325037054717541,0.601247847080231,0.0699071288108826,0.997432410717011,0.0155494436621666,-0.151606693863869,0.987582504749298,0.0411850586533546,-0.0876667574048042,0.996147155761719,-0.00232525146566331,-0.138598799705505,0.975487351417542,0.170923396945,-0.179098859429359,0.952485382556915,0.246363893151283,
- 0.161547914147377,0.00724203232675791,0.986838400363922,0.487910062074661,-0.0249483734369278,0.872537314891815,0.300222992897034,-0.484612464904785,0.821594178676605,-0.0289278849959373,0.997601926326752,0.0628778785467148,-0.0851553156971931,0.0215492211282253,0.996134698390961,0.204792588949203,0.0330469235777855,0.978247404098511,-0.163061335682869,0.983343958854675,0.080285020172596,-0.305248737335205,0.952214539051056,0.0105210244655609,-0.26496160030365,0.96417760848999,0.0125252557918429,-0.246934473514557,0.708174884319305,-0.661446690559387,0.565825462341309,0.802739441394806,0.188284084200859,0.28618249297142,0.953975021839142,-0.0896176397800446,0.555813491344452,0.801222860813141,-0.22161553800106,0.426344305276871,0.864133477210999,-0.26740226149559,0.381534248590469,0.910526275634766,-0.159290850162506,0.565825462341309,0.802739441394806,0.188284084200859,0.426344305276871,0.864133477210999,-0.26740226149559,-0.32806384563446,0.94181364774704,0.0732212513685226,0.397978723049164,-0.0127564817667007,0.917306005954742,0.0820540189743042,0.0125169372186065,0.996549308300018,0.771871447563171,-0.031832717359066,0.634981155395508,0.291270792484283,0.0357864126563072,0.955971121788025,0.648131132125854,0.0053023356013,0.761510372161865,0.397978723049164,-0.0127564817667007,0.917306005954742,0.291270792484283,0.0357864126563072,0.955971121788025,-0.3462153673172,-0.0147831803187728,0.938038647174835,0.407025814056396,0.549795866012573,0.72942066192627,0.338637262582779,0.018595727160573,0.940733253955841,0.524126827716827,0.00156857073307037,0.851638853549957,0.530256032943726,-0.0348980613052845,0.847119033336639,0.164937809109688,-0.986199736595154,-0.0143467802554369,0.094261959195137,-0.995149731636047,0.0281384289264679,0.586689352989197,-0.0273636858910322,0.809349656105042,-0.0209355615079403,-0.996880173683167,-0.0761030241847038,-0.272024005651474,-0.962289690971375,-0.00130008172709495,-0.55085563659668,-0.532698214054108,-0.642487943172455,0.10112226754427,-0.994129598140717,0.0384814850986004,0.0100239245221019,-0.999470710754395,-0.0309506691992283,
- -0.322220683097839,-0.944068491458893,0.0700606182217598,0.16578608751297,-0.986158192157745,-0.0026522243861109,0.33237561583519,-0.0174107942730188,0.94298642873764,0.16578608751297,-0.986158192157745,-0.0026522243861109,-0.374354332685471,-0.889924168586731,0.260564804077148,0.771871447563171,-0.031832717359066,0.634981155395508,0.524126827716827,0.00156857073307037,0.851638853549957,0.725046455860138,0.0216353740543127,0.688360095024109,0.407025814056396,0.549795866012573,0.72942066192627,-0.115038521587849,-0.0175364967435598,0.993206262588501,0.161547914147377,0.00724203232675791,0.986838400363922,0.300222992897034,-0.484612464904785,0.821594178676605,0.300222992897034,-0.484612464904785,0.821594178676605,0.40403014421463,-0.788176596164703,0.464259952306747,0.100404299795628,-0.993041276931763,0.0615468248724937,-0.115038521587849,-0.0175364967435598,0.993206262588501,0.40403014421463,-0.788176596164703,0.464259952306747,0.238220572471619,-0.97115570306778,0.0103720612823963,0.100404299795628,-0.993041276931763,0.0615468248724937,0.128824770450592,-0.991645872592926,0.0065435441210866,0.238220572471619,-0.97115570306778,0.0103720612823963,0.40403014421463,-0.788176596164703,0.464259952306747,0.487910062074661,-0.0249483734369278,0.872537314891815,0.128824770450592,-0.991645872592926,0.0065435441210866,0.40403014421463,-0.788176596164703,0.464259952306747,0.300222992897034,-0.484612464904785,0.821594178676605,0.161547914147377,0.00724203232675791,0.986838400363922,0.204792588949203,0.0330469235777855,0.978247404098511,-0.0851553156971931,0.0215492211282253,0.996134698390961,0.487910062074661,-0.0249483734369278,0.872537314891815,0.392896413803101,-0.0570839233696461,0.917809367179871,0.916864931583405,-0.0284008868038654,0.398186177015305,0.594831168651581,-0.352555453777313,0.722413003444672,0.374125987291336,-0.0997316092252731,0.921999633312225,0.392896413803101,-0.0570839233696461,0.917809367179871,0.594831168651581,-0.352555453777313,0.722413003444672,0.530256032943726,-0.0348980613052845,0.847119033336639,
- 0.374125987291336,-0.0997316092252731,0.921999633312225,0.594831168651581,-0.352555453777313,0.722413003444672,0.594831168651581,-0.352555453777313,0.722413003444672,0.498687982559204,-0.6840700507164,0.532314360141754,0.164937809109688,-0.986199736595154,-0.0143467802554369,0.530256032943726,-0.0348980613052845,0.847119033336639,0.0821670666337013,-0.995903849601746,-0.0377391465008259,0.164937809109688,-0.986199736595154,-0.0143467802554369,0.498687982559204,-0.6840700507164,0.532314360141754,0.498687982559204,-0.6840700507164,0.532314360141754,0.406286180019379,-0.81598162651062,-0.411224395036697,0.0821670666337013,-0.995903849601746,-0.0377391465008259,0.498687982559204,-0.6840700507164,0.532314360141754,0.19036827981472,-0.954864084720612,-0.228023365139961,0.406286180019379,-0.81598162651062,-0.411224395036697,0.00511623919010162,-0.990981340408325,0.133902445435524,0.19036827981472,-0.954864084720612,-0.228023365139961,0.498687982559204,-0.6840700507164,0.532314360141754,0.761029005050659,-0.022070026025176,0.648342311382294,0.00511623919010162,-0.990981340408325,0.133902445435524,0.498687982559204,-0.6840700507164,0.532314360141754,0.594831168651581,-0.352555453777313,0.722413003444672,0.916864931583405,-0.0284008868038654,0.398186177015305,0.761029005050659,-0.022070026025176,0.648342311382294,0.594831168651581,-0.352555453777313,0.722413003444672,0.372741967439651,0.0288207679986954,0.927487373352051,0.429700613021851,0.0186021476984024,0.902779877185822,0.104331381618977,0.752275824546814,0.650535225868225,0.104331381618977,0.752275824546814,0.650535225868225,0.0699071288108826,0.997432410717011,0.0155494436621666,0.372741967439651,0.0288207679986954,0.927487373352051,0.104331381618977,0.752275824546814,0.650535225868225,0.131451725959778,0.987486183643341,0.0871299430727959,0.0699071288108826,0.997432410717011,0.0155494436621666,0.581138014793396,0.526100039482117,0.620884358882904,0.0534902438521385,0.996912002563477,0.0574923865497112,0.131451725959778,0.987486183643341,0.0871299430727959,0.104331381618977,0.752275824546814,0.650535225868225,
- 0.492372989654541,-0.0638601630926132,0.868038415908813,0.429700613021851,0.0186021476984024,0.902779877185822,0.916864931583405,-0.0284008868038654,0.398186177015305,0.392896413803101,-0.0570839233696461,0.917809367179871,0.581138014793396,0.526100039482117,0.620884358882904,0.492372989654541,-0.0638601630926132,0.868038415908813,0.913165628910065,0.0416188389062881,0.405458480119705,-0.198230028152466,0.95389461517334,0.225366324186325,-0.151293188333511,0.9874267578125,0.0458136759698391,0.000523425580468029,0.993604004383087,-0.11291927844286,0.0534902438521385,0.996912002563477,0.0574923865497112,0.113301336765289,0.992281973361969,-0.0503916926681995,-0.26496160030365,0.96417760848999,0.0125252557918429,-0.163061335682869,0.983343958854675,0.080285020172596,-0.356371253728867,0.928751111030579,0.102083317935467,-0.211707159876823,0.0151454862207174,-0.977215826511383,0.141838446259499,0.988476753234863,-0.0528742782771587,-0.274622797966003,0.96146434545517,-0.0129883158951998,-0.213720694184303,0.00949984975159168,-0.976848721504211,-0.0270740110427141,0.0549051836133003,-0.998124539852142,-0.08964953571558,0.0489116199314594,-0.994771718978882,-0.211707159876823,0.0151454862207174,-0.977215826511383,0.00451890146359801,-0.0332628041505814,-0.999436497688293,-0.349899530410767,-0.040142010897398,-0.935926795005798,-0.0303990263491869,0.0278480518609285,-0.999149858951569,-0.08964953571558,0.0489116199314594,-0.994771718978882,-0.0270740110427141,0.0549051836133003,-0.998124539852142,-0.653052806854248,0.0319706946611404,-0.756637334823608,0.731119215488434,0.629720330238342,-0.262520611286163,-0.417764663696289,0.907562613487244,0.0424600057303905,-0.0303990263491869,0.0278480518609285,-0.999149858951569,-0.305248737335205,0.952214539051056,0.0105210244655609,-0.0289278849959373,0.997601926326752,0.0628778785467148,-0.163061335682869,0.983343958854675,0.080285020172596,-0.26496160030365,0.96417760848999,0.0125252557918429,0.33237561583519,-0.0174107942730188,0.94298642873764,0.725046455860138,0.0216353740543127,0.688360095024109,
- 0.524126827716827,0.00156857073307037,0.851638853549957,0.53565913438797,-0.0122394226491451,0.844345569610596,-0.0687396228313446,0.99211448431015,0.104803323745728,0.725046455860138,0.0216353740543127,0.688360095024109,0.123460844159126,0.025131668895483,0.992031216621399,0.172403708100319,0.984486103057861,-0.0326206758618355,-0.0914496257901192,0.994886636734009,0.0428686812520027,-0.0325685627758503,0.994579434394836,0.0987480655312538,-0.0687396228313446,0.99211448431015,0.104803323745728,0.0825280621647835,0.988652884960175,-0.125517562031746,0.105663046240807,0.994378566741943,-0.00682782754302025,-0.235891804099083,0.968279242515564,0.0824036970734596,-0.151293188333511,0.9874267578125,0.0458136759698391,-0.198230028152466,0.95389461517334,0.225366324186325,-0.198230028152466,0.95389461517334,0.225366324186325,0.913165628910065,0.0416188389062881,0.405458480119705,0.338637262582779,0.018595727160573,0.940733253955841,0.105663046240807,0.994378566741943,-0.00682782754302025,0.530256032943726,-0.0348980613052845,0.847119033336639,0.913165628910065,0.0416188389062881,0.405458480119705,0.374125987291336,-0.0997316092252731,0.921999633312225,-0.162802845239639,-0.984715938568115,0.0618864372372627,-0.0170189384371042,-0.995996117591858,-0.0877625048160553,0.00511623919010162,-0.990981340408325,0.133902445435524,0.127220720052719,-0.991873383522034,0.00145310536026955,-0.162802845239639,-0.984715938568115,0.0618864372372627,-0.714238941669464,-0.0145717635750771,-0.699750244617462,-0.786991894245148,-0.0140772387385368,-0.616802752017975,-0.0170189384371042,-0.995996117591858,-0.0877625048160553,-0.714238941669464,-0.0145717635750771,-0.699750244617462,-0.876821398735046,0.0381906665861607,-0.47929710149765,-0.232147186994553,0.0375349409878254,-0.971956193447113,-0.786991894245148,-0.0140772387385368,-0.616802752017975,-0.762718141078949,-0.0347573608160019,-0.645796418190002,-0.877894997596741,-0.0609964691102505,-0.474952518939972,-0.232147186994553,0.0375349409878254,-0.971956193447113,-0.905272960662842,-0.0281107779592276,-0.423899263143539,
- -0.520822405815125,-0.0105501683428884,-0.853599846363068,-0.762718141078949,-0.0347573608160019,-0.645796418190002,-0.905272960662842,-0.0281107779592276,-0.423899263143539,-0.979451417922974,0.00812750402837992,-0.20151698589325,-0.520020008087158,-0.0150248091667891,-0.854021966457367,-0.520822405815125,-0.0105501683428884,-0.853599846363068,-0.979451417922974,0.00812750402837992,-0.20151698589325,-0.413818925619125,0.0332561917603016,-0.909751653671265,-0.421722203493118,-0.00636912230402231,-0.906702756881714,-0.421722203493118,-0.00636912230402231,-0.906702756881714,0.355496913194656,-0.863959670066834,-0.356645196676254,-0.0209355615079403,-0.996880173683167,-0.0761030241847038,-0.520020008087158,-0.0150248091667891,-0.854021966457367,-0.0209355615079403,-0.996880173683167,-0.0761030241847038,0.164937809109688,-0.986199736595154,-0.0143467802554369,0.0821670666337013,-0.995903849601746,-0.0377391465008259,-0.272024005651474,-0.962289690971375,-0.00130008172709495,0.0821670666337013,-0.995903849601746,-0.0377391465008259,0.406286180019379,-0.81598162651062,-0.411224395036697,0.318997293710709,-0.877575278282166,-0.3579141497612,-0.272024005651474,-0.962289690971375,-0.00130008172709495,0.406286180019379,-0.81598162651062,-0.411224395036697,0.19036827981472,-0.954864084720612,-0.228023365139961,0.143112406134605,-0.926413416862488,-0.348248511552811,0.318997293710709,-0.877575278282166,-0.3579141497612,0.246607586741447,0.0195546969771385,0.968918144702911,0.324911832809448,0.0302571095526218,0.945260226726532,-0.115038521587849,-0.0175364967435598,0.993206262588501,0.44560244679451,-0.019631389528513,0.895015716552734,-0.356371253728867,0.928751111030579,0.102083317935467,0.324911832809448,0.0302571095526218,0.945260226726532,0.246607586741447,0.0195546969771385,0.968918144702911,0.18077740073204,0.982235074043274,0.0503379814326763,0.113301336765289,0.992281973361969,-0.0503916926681995,-0.356371253728867,0.928751111030579,0.102083317935467,0.18077740073204,0.982235074043274,0.0503379814326763,-0.0605180934071541,0.997805058956146,-0.0268842875957489,
- 0.555813491344452,0.801222860813141,-0.22161553800106,0.28618249297142,0.953975021839142,-0.0896176397800446,-0.0308131724596024,0.998189210891724,0.0516616925597191,-0.0289278849959373,0.997601926326752,0.0628778785467148,-0.305248737335205,0.952214539051056,0.0105210244655609,-0.0308131724596024,0.998189210891724,0.0516616925597191,0.459950596094131,0.013547271490097,0.887841165065765,-0.0851553156971931,0.0215492211282253,0.996134698390961,-0.0289278849959373,0.997601926326752,0.0628778785467148,0.487910062074661,-0.0249483734369278,0.872537314891815,-0.0851553156971931,0.0215492211282253,0.996134698390961,0.459950596094131,0.013547271490097,0.887841165065765,0.648131132125854,0.0053023356013,0.761510372161865,-0.3462153673172,-0.0147831803187728,0.938038647174835,0.0825280621647835,0.988652884960175,-0.125517562031746,-0.0687396228313446,0.99211448431015,0.104803323745728,0.172403708100319,0.984486103057861,-0.0326206758618355,0.381534248590469,0.910526275634766,-0.159290850162506,-0.32806384563446,0.94181364774704,0.0732212513685226,-0.534089326858521,0.0218967534601688,-0.84514445066452,0.238395497202873,0.950670599937439,-0.198476850986481,-0.498693227767944,0.852924585342407,0.154352754354477,0.222869053483009,0.0378016121685505,-0.974115252494812,-0.532479345798492,-0.0208989009261131,-0.846184968948364,-0.534089326858521,0.0218967534601688,-0.84514445066452,0.222869053483009,0.0378016121685505,-0.974115252494812,-0.671279489994049,-0.0305120330303907,-0.740576028823853,-0.322220683097839,-0.944068491458893,0.0700606182217598,-0.532479345798492,-0.0208989009261131,-0.846184968948364,-0.671279489994049,-0.0305120330303907,-0.740576028823853,0.128772020339966,-0.98137241601944,-0.142569273710251,0.16578608751297,-0.986158192157745,-0.0026522243861109,-0.322220683097839,-0.944068491458893,0.0700606182217598,0.128772020339966,-0.98137241601944,-0.142569273710251,-0.374354332685471,-0.889924168586731,0.260564804077148,0.094261959195137,-0.995149731636047,0.0281384289264679,0.164937809109688,-0.986199736595154,-0.0143467802554369,
- -0.0209355615079403,-0.996880173683167,-0.0761030241847038,0.355496913194656,-0.863959670066834,-0.356645196676254,0.586689352989197,-0.0273636858910322,0.809349656105042,0.338637262582779,0.018595727160573,0.940733253955841,0.913165628910065,0.0416188389062881,0.405458480119705,0.530256032943726,-0.0348980613052845,0.847119033336639,0.524126827716827,0.00156857073307037,0.851638853549957,0.338637262582779,0.018595727160573,0.940733253955841,0.586689352989197,-0.0273636858910322,0.809349656105042,0.53565913438797,-0.0122394226491451,0.844345569610596,-0.0914496257901192,0.994886636734009,0.0428686812520027,-0.235891804099083,0.968279242515564,0.0824036970734596,0.105663046240807,0.994378566741943,-0.00682782754302025,-0.0325685627758503,0.994579434394836,0.0987480655312538,-0.413818925619125,0.0332561917603016,-0.909751653671265,-0.47282463312149,0.84364116191864,0.254374802112579,-0.09173184633255,0.994854867458344,0.0430006496608257,-0.363602161407471,0.0409878231585026,-0.930652260780334,-0.421722203493118,-0.00636912230402231,-0.906702756881714,-0.413818925619125,0.0332561917603016,-0.909751653671265,-0.363602161407471,0.0409878231585026,-0.930652260780334,-0.519830822944641,-0.0116970902308822,-0.854189157485962,0.0100239245221019,-0.999470710754395,-0.0309506691992283,0.355496913194656,-0.863959670066834,-0.356645196676254,-0.421722203493118,-0.00636912230402231,-0.906702756881714,-0.519830822944641,-0.0116970902308822,-0.854189157485962,0.094261959195137,-0.995149731636047,0.0281384289264679,0.355496913194656,-0.863959670066834,-0.356645196676254,0.0100239245221019,-0.999470710754395,-0.0309506691992283,0.10112226754427,-0.994129598140717,0.0384814850986004,0.123460844159126,0.025131668895483,0.992031216621399,0.725046455860138,0.0216353740543127,0.688360095024109,0.33237561583519,-0.0174107942730188,0.94298642873764,0.771871447563171,-0.031832717359066,0.634981155395508,0.0820540189743042,0.0125169372186065,0.996549308300018,0.372741967439651,0.0288207679986954,0.927487373352051,0.761029005050659,-0.022070026025176,0.648342311382294,
- 0.916864931583405,-0.0284008868038654,0.398186177015305,0.429700613021851,0.0186021476984024,0.902779877185822,0.0699071288108826,0.997432410717011,0.0155494436621666,0.131451725959778,0.987486183643341,0.0871299430727959,-0.151606693863869,0.987582504749298,0.0411850586533546,-0.786991894245148,-0.0140772387385368,-0.616802752017975,-0.232147186994553,0.0375349409878254,-0.971956193447113,-0.877894997596741,-0.0609964691102505,-0.474952518939972,0.00511623919010162,-0.990981340408325,0.133902445435524,-0.0170189384371042,-0.995996117591858,-0.0877625048160553,0.143112406134605,-0.926413416862488,-0.348248511552811,0.19036827981472,-0.954864084720612,-0.228023365139961,0.00451890146359801,-0.0332628041505814,-0.999436497688293,-0.211707159876823,0.0151454862207174,-0.977215826511383,-0.213720694184303,0.00949984975159168,-0.976848721504211,-0.273851811885834,-0.0315540917217731,-0.961254179477692,-0.371711671352386,-0.926047205924988,-0.0653227567672729,0.00451890146359801,-0.0332628041505814,-0.999436497688293,-0.273851811885834,-0.0315540917217731,-0.961254179477692,0.00036656396696344,-0.996604323387146,-0.0823402553796768,0.100404299795628,-0.993041276931763,0.0615468248724937,-0.371711671352386,-0.926047205924988,-0.0653227567672729,0.00036656396696344,-0.996604323387146,-0.0823402553796768,-0.380789458751678,-0.9194096326828,0.0984141975641251,-0.165489569306374,-0.981139779090881,0.0998904705047607,-0.574388146400452,-0.815450966358185,0.0715400949120522,0.413501352071762,-0.887647926807404,-0.202726453542709,0.128824770450592,-0.991645872592926,0.0065435441210866,-0.574388146400452,-0.815450966358185,0.0715400949120522,-0.0199885927140713,-0.0387749895453453,-0.999048113822937,-0.349899530410767,-0.040142010897398,-0.935926795005798,0.413501352071762,-0.887647926807404,-0.202726453542709,-0.0199885927140713,-0.0387749895453453,-0.999048113822937,-0.653052806854248,0.0319706946611404,-0.756637334823608,-0.0303990263491869,0.0278480518609285,-0.999149858951569,-0.349899530410767,-0.040142010897398,-0.935926795005798,
- -3.11398071062285e-006,0.999999403953552,-0.00115618389099836,3.3936150430236e-005,0.999977171421051,0.00676537957042456,8.52672746987082e-005,0.999855518341064,0.0169985555112362,7.06108539816341e-006,0.999994337558746,0.00338267022743821,-9.27566734532093e-009,1,2.05037466116664e-007,-3.11398071062285e-006,0.999999403953552,-0.00115618389099836,7.06108539816341e-006,0.999994337558746,0.00338267022743821,-2.32031993618875e-009,1,5.12174658240383e-008,1.22740772212637e-007,1,-4.63346623291727e-007,-5.1494961184062e-008,1,4.56185944130993e-007,-4.10632665648336e-008,1,3.64379360462408e-007,-3.4555160510763e-008,1,1.37701732683126e-007,1.00068918982288e-005,1,3.76624234377232e-006,1.22740772212637e-007,1,-4.63346623291727e-007,-3.4555160510763e-008,1,1.37701732683126e-007,2.68930234597065e-005,1,-4.08811210945714e-005,8.48548964427209e-008,1,-7.23191675433554e-008,0,1,0,0,1,0,5.2489191659788e-008,1,-4.58691324922711e-008,-2.29592544975787e-009,1,1.59296886792504e-009,8.48548964427209e-008,1,-7.23191675433554e-008,5.2489191659788e-008,1,-4.58691324922711e-008,9.19423328582525e-008,1,-6.37932728864143e-008,-2.04726347874384e-007,1,3.15717620935629e-008,1.26497056385233e-007,1,-3.29384093333829e-008,-0.000239426997723058,0.999999403953552,-0.00107291294261813,0.00332319783046842,0.999994456768036,0.00048223533667624,0.00434708362445235,0.999990522861481,0.000273303041467443,-2.04726347874384e-007,1,3.15717620935629e-008,0.00332319783046842,0.999994456768036,0.00048223533667624,0.000121520817629062,1,0.000256747880484909,-0.00421269796788692,0.999991178512573,0.000239734203205444,0.00434708362445235,0.999990522861481,0.000273303041467443,0.00332319783046842,0.999994456768036,0.00048223533667624,-5.8388575752133e-008,1,3.22601110269716e-008,-2.29592544975787e-009,1,1.59296886792504e-009,9.19423328582525e-008,1,-6.37932728864143e-008,9.4739421911072e-005,1,0.000173209118656814,8.60597140217578e-008,1,-3.14960217906446e-008,-5.8388575752133e-008,1,3.22601110269716e-008,9.4739421911072e-005,1,0.000173209118656814,-0.000544613518286496,0.999998986721039,-0.00133020267821848,
- -5.1494961184062e-008,1,4.56185944130993e-007,-9.27566734532093e-009,1,2.05037466116664e-007,-2.32031993618875e-009,1,5.12174658240383e-008,-4.10632665648336e-008,1,3.64379360462408e-007,9.18211935641011e-006,1,1.25483329611598e-005,1.00068918982288e-005,1,3.76624234377232e-006,2.68930234597065e-005,1,-4.08811210945714e-005,-0.000192353851161897,1,-7.7699514804408e-006,1.65554956765845e-006,1,1.16655439796887e-006,9.18211935641011e-006,1,1.25483329611598e-005,-0.000192353851161897,1,-7.7699514804408e-006,-9.95539521682076e-005,1,-3.03008382616099e-005,0,1,0,1.65554956765845e-006,1,1.16655439796887e-006,-9.95539521682076e-005,1,-3.03008382616099e-005,0,1,0,1.26497056385233e-007,1,-3.29384093333829e-008,8.60597140217578e-008,1,-3.14960217906446e-008,-0.000544613518286496,0.999998986721039,-0.00133020267821848,-0.000239426997723058,0.999999403953552,-0.00107291294261813,-0.999996900558472,0,0.00248814560472965,-0.999987840652466,0,0.00493646645918489,-0.999987602233887,0,0.00497627584263682,-0.999996900558472,0,0.00250805076211691,-0.999510288238525,1.39574496405004e-009,-0.031294260174036,-0.999996900558472,0,0.00248814560472965,-0.999996900558472,0,0.00250805076211691,-0.999490916728973,1.38630718016231e-009,-0.0319068469107151,-0.990714550018311,1.77353021157955e-010,-0.135958328843117,-0.999510288238525,1.39574496405004e-009,-0.031294260174036,-0.999490916728973,1.38630718016231e-009,-0.0319068469107151,-0.990630924701691,-1.87642748561423e-010,-0.136566713452339,-0.962473034858704,-1.78758554625347e-008,-0.271377414464951,-0.990714550018311,1.77353021157955e-010,-0.135958328843117,-0.990630924701691,-1.87642748561423e-010,-0.136566713452339,-0.970893621444702,-1.5794247687495e-008,-0.239511147141457,-0.929620742797852,-0,-0.368517845869064,-0.962473034858704,-1.78758554625347e-008,-0.271377414464951,-0.970893621444702,-1.5794247687495e-008,-0.239511147141457,-0.941900730133057,-0,-0.335891485214233,-0.894509255886078,-7.09791292408113e-009,-0.447049677371979,-0.929620742797852,-0,-0.368517845869064,-0.941900730133057,-0,-0.335891485214233,
- -0.894513309001923,-7.1219643515974e-009,-0.447041451931,-0.894509255886078,-7.09791292408113e-009,-0.447049677371979,-0.894513309001923,-7.1219643515974e-009,-0.447041451931,-0.831434607505798,1.78701142772297e-008,-0.555622756481171,-0.831439614295959,1.86759159248595e-008,-0.555615127086639,-0.723877251148224,1.01254171713805e-009,-0.689928770065308,-0.831439614295959,1.86759159248595e-008,-0.555615127086639,-0.831434607505798,1.78701142772297e-008,-0.555622756481171,-0.756807744503021,-1.06853415005048e-009,-0.653637528419495,-0.639128983020782,-7.45159098869408e-008,-0.769099593162537,-0.723877251148224,1.01254171713805e-009,-0.689928770065308,-0.756807744503021,-1.06853415005048e-009,-0.653637528419495,-0.664604187011719,-7.25589117678282e-008,-0.747195661067963,-0.569505453109741,-2.4842488954846e-008,-0.821987628936768,-0.639128983020782,-7.45159098869408e-008,-0.769099593162537,-0.664604187011719,-7.25589117678282e-008,-0.747195661067963,-0.569486856460571,-2.4820201005582e-008,-0.822000503540039,-0.569505453109741,-2.4842488954846e-008,-0.821987628936768,-0.569486856460571,-2.4820201005582e-008,-0.822000503540039,-0.480900883674622,5.69559759355798e-008,-0.876775026321411,-0.48090335726738,5.67257494310525e-008,-0.876773715019226,-0.0852910056710243,-1.46302632231254e-008,-0.996356129646301,-0.0495362468063831,-3.19402815307512e-008,-0.998772323131561,-0.0495398342609406,-3.19402779780376e-008,-0.998772144317627,-0.0674212574958801,-1.56265915762788e-008,-0.997724592685699,-0.136934205889702,-1.52435895017788e-008,-0.990580201148987,-0.0852910056710243,-1.46302632231254e-008,-0.996356129646301,-0.0674212574958801,-1.56265915762788e-008,-0.997724592685699,-0.120044097304344,-1.62497340028267e-008,-0.99276864528656,-0.251162886619568,-1.08543947163753e-008,-0.967944860458374,-0.136934205889702,-1.52435895017788e-008,-0.990580201148987,-0.120044097304344,-1.62497340028267e-008,-0.99276864528656,-0.202658832073212,-1.0500464497909e-008,-0.979249477386475,-0.391430199146271,4.16596748209486e-008,-0.920207917690277,
- -0.251162886619568,-1.08543947163753e-008,-0.967944860458374,-0.202658832073212,-1.0500464497909e-008,-0.979249477386475,-0.345535337924957,4.05660607327718e-008,-0.938405752182007,-0.480900883674622,5.69559759355798e-008,-0.876775026321411,-0.391430199146271,4.16596748209486e-008,-0.920207917690277,-0.345535337924957,4.05660607327718e-008,-0.938405752182007,-0.48090335726738,5.67257494310525e-008,-0.876773715019226,-0.99620908498764,0.0490846075117588,0.0718213319778442,-0.995137274265289,0.083181194961071,0.0527526363730431,-0.985636591911316,-0.117802329361439,0.121009275317192,-0.994309484958649,-0.0310961212962866,0.101891353726387,-0.0355608239769936,0.960184156894684,-0.2770956158638,-0.99620908498764,0.0490846075117588,0.0718213319778442,-0.998966813087463,0.0448435470461845,0.00738208601251245,-0.0213222224265337,0.95990788936615,0.279503792524338,-0.0190120954066515,0.994672238826752,0.101320028305054,-0.0110311042517424,0.989885210990906,0.141441568732262,0.019985742866993,0.998600006103516,-0.0489766784012318,-0.0203151553869247,0.938389480113983,-0.34498193860054,-0.0203151553869247,0.938389480113983,-0.34498193860054,0.019985742866993,0.998600006103516,-0.0489766784012318,-0.0382455326616764,0.570860385894775,-0.82015585899353,-0.107597582042217,0.7109055519104,-0.695007979869843,-0.975515842437744,0.169714942574501,0.13987785577774,-0.998966813087463,0.0448435470461845,0.00738208601251245,-0.998185157775879,-0.0238639898598194,0.0552902407944202,-0.996535658836365,-0.0733019933104515,0.0392883606255054,-0.00363009818829596,-0.000371370610082522,-0.99999338388443,0.989473402500153,-0.0096847340464592,-0.14439095556736,0.989270687103271,0.0283153597265482,-0.143323957920074,0.00529422564432025,0.285777777433395,-0.958281397819519,-0.994309484958649,-0.0310961212962866,0.101891353726387,-0.00894381478428841,-0.959347069263458,0.282087355852127,-0.0931643694639206,-0.958077669143677,-0.270938187837601,-0.998185157775879,-0.0238639898598194,0.0552902407944202,0.0600727722048759,0.988278925418854,0.140343025326729,
- 0.044982772320509,0.994354426860809,0.0961034670472145,-0.026488795876503,0.938082814216614,-0.345396995544434,-0.00648145517334342,0.999079465866089,-0.0424077436327934,-0.00648145517334342,0.999079465866089,-0.0424077436327934,-0.026488795876503,0.938082814216614,-0.345396995544434,0.0149709209799767,0.707580208778381,-0.706474423408508,-0.0948901697993279,0.578751981258392,-0.809964299201965,0.999249219894409,-0.00655623571947217,-0.0381844565272331,0.173704370856285,-0.000360535952495411,0.984797835350037,0.169312328100204,-0.286824107170105,0.942902565002441,0.998465180397034,-0.0389986149966717,-0.0393237322568893,-0.00458611827343702,-0.0633287876844406,-0.997982203960419,0.0517068766057491,-0.0366261824965477,-0.997990429401398,-0.107597582042217,0.7109055519104,-0.695007979869843,-0.0382455326616764,0.570860385894775,-0.82015585899353,0.992876708507538,0.0252712201327085,-0.116436041891575,0.989270687103271,0.0283153597265482,-0.143323957920074,0.998465180397034,-0.0389986149966717,-0.0393237322568893,0.996670365333557,-0.0431809648871422,-0.0691635981202126,-0.198974743485451,-0.0357876531779766,-0.979351043701172,-0.174133121967316,-0.0546191856265068,-0.983206212520599,-0.0948901697993279,0.578751981258392,-0.809964299201965,0.0149709209799767,0.707580208778381,-0.706474423408508,-0.998966813087463,0.0448435470461845,0.00738208601251245,-0.99620908498764,0.0490846075117588,0.0718213319778442,-0.994309484958649,-0.0310961212962866,0.101891353726387,-0.998185157775879,-0.0238639898598194,0.0552902407944202,0.999249219894409,-0.00655623571947217,-0.0381844565272331,0.998465180397034,-0.0389986149966717,-0.0393237322568893,0.989270687103271,0.0283153597265482,-0.143323957920074,0.989473402500153,-0.0096847340464592,-0.14439095556736,0.0149709209799767,0.707580208778381,-0.706474423408508,-0.026488795876503,0.938082814216614,-0.345396995544434,-0.0203151553869247,0.938389480113983,-0.34498193860054,-0.107597582042217,0.7109055519104,-0.695007979869843,0.0517068766057491,-0.0366261824965477,-0.997990429401398,
- -0.198974743485451,-0.0357876531779766,-0.979351043701172,0.0149709209799767,0.707580208778381,-0.706474423408508,-0.107597582042217,0.7109055519104,-0.695007979869843,-0.0190120954066515,0.994672238826752,0.101320028305054,-0.0203151553869247,0.938389480113983,-0.34498193860054,-0.026488795876503,0.938082814216614,-0.345396995544434,0.044982772320509,0.994354426860809,0.0961034670472145,-0.00734323635697365,0.998671174049377,-0.0510104708373547,-0.0272373799234629,0.998148262500763,-0.0543888956308365,-0.00706692412495613,0.999974191188812,-0.00132753851357847,0.0400895141065121,0.998364806175232,-0.0407493151724339,0.0444754101336002,0.999001741409302,0.00418437458574772,0.021576626226306,0.999353408813477,-0.0287617556750774,-0.0190693698823452,0.999760627746582,0.0107322121039033,-0.0234004482626915,0.998807966709137,-0.042839840054512,0.0278030354529619,0.998464226722717,-0.0479189567267895,0.0433514416217804,0.999056994915009,0.00243410654366016,-0.99620908498764,0.0490846075117588,0.0718213319778442,-0.0355608239769936,0.960184156894684,-0.2770956158638,-0.995137274265289,0.083181194961071,0.0527526363730431,-0.975515842437744,0.169714942574501,0.13987785577774,-0.0213222224265337,0.95990788936615,0.279503792524338,-0.998966813087463,0.0448435470461845,0.00738208601251245,-0.994309484958649,-0.0310961212962866,0.101891353726387,-0.985636591911316,-0.117802329361439,0.121009275317192,-0.00894381478428841,-0.959347069263458,0.282087355852127,-0.996535658836365,-0.0733019933104515,0.0392883606255054,-0.998185157775879,-0.0238639898598194,0.0552902407944202,-0.0931643694639206,-0.958077669143677,-0.270938187837601,0.00529422564432025,0.285777777433395,-0.958281397819519,0.989270687103271,0.0283153597265482,-0.143323957920074,0.992876708507538,0.0252712201327085,-0.116436041891575,0.996670365333557,-0.0431809648871422,-0.0691635981202126,0.998465180397034,-0.0389986149966717,-0.0393237322568893,0.169312328100204,-0.286824107170105,0.942902565002441,-0.952916741371155,0.0399729013442993,0.300586134195328,-0.949039101600647,0.0992986708879471,0.299106419086456,
- -0.926141858100891,-0.0998325794935226,0.363723605871201,-0.94269460439682,-0.0395723767578602,0.331301838159561,-0.110905237495899,0.959887504577637,-0.257518976926804,-0.952916741371155,0.0399729013442993,0.300586134195328,-0.967385828495026,0.0360646806657314,0.250727266073227,0.0395119860768318,0.959589898586273,0.278614550828934,-0.00112668238580227,0.99446165561676,0.105094008147717,0.0159847289323807,0.98945939540863,0.143925786018372,-0.000749321538023651,0.998782336711884,-0.049328800290823,-0.111996360123158,0.938404023647308,-0.326886653900146,-0.111996360123158,0.938404023647308,-0.326886653900146,-0.000749321538023651,0.998782336711884,-0.049328800290823,-0.24330598115921,0.570574641227722,-0.784376740455627,-0.290284991264343,0.70980179309845,-0.641806900501251,-0.911891639232636,0.164490342140198,0.376027494668961,-0.967385828495026,0.0360646806657314,0.250727266073227,-0.953839182853699,-0.032307606190443,0.298575222492218,-0.955283284187317,-0.0820381045341492,0.284083962440491,-0.248823225498199,1.15362927317619e-005,-0.968548893928528,0.923480808734894,-0.00118383206427097,-0.383642941713333,0.923233151435852,0.038195438683033,-0.382337301969528,-0.232240453362465,0.286244451999664,-0.929585158824921,-0.94269460439682,-0.0395723767578602,0.331301838159561,0.0682323575019836,-0.959764719009399,0.272389590740204,-0.148997128009796,-0.958553850650787,-0.242846488952637,-0.953839182853699,-0.032307606190443,0.298575222492218,0.0842498689889908,0.988752543926239,0.123574197292328,0.0596593022346497,0.994582951068878,0.0851218402385712,-0.118071712553501,0.93811172246933,-0.32558485865593,-0.0255605764687061,0.99897176027298,-0.0374456606805325,-0.0255605764687061,0.99897176027298,-0.0374456606805325,-0.118071712553501,0.93811172246933,-0.32558485865593,-0.179841697216034,0.70919406414032,-0.681689739227295,-0.29531791806221,0.579297721385956,-0.75973778963089,0.958850622177124,0.00129970256239176,-0.28390845656395,0.410211145877838,-0.000886805355548859,0.911990225315094,0.376609563827515,-0.434310257434845,0.818254232406616,
- 0.958317875862122,-0.0236573200672865,-0.28472301363945,-0.248695239424706,-0.0642746835947037,-0.966446816921234,-0.23088264465332,-0.0368591137230396,-0.972283244132996,-0.290284991264343,0.70980179309845,-0.641806900501251,-0.24330598115921,0.570574641227722,-0.784376740455627,0.933934569358826,0.0339665785431862,-0.355826556682587,0.923233151435852,0.038195438683033,-0.382337301969528,0.958317875862122,-0.0236573200672865,-0.28472301363945,0.949746608734131,-0.0340121686458588,-0.311166763305664,-0.465112030506134,-0.0353547222912312,-0.884545564651489,-0.409770965576172,-0.055044062435627,-0.910526275634766,-0.29531791806221,0.579297721385956,-0.75973778963089,-0.179841697216034,0.70919406414032,-0.681689739227295,-0.967385828495026,0.0360646806657314,0.250727266073227,-0.952916741371155,0.0399729013442993,0.300586134195328,-0.94269460439682,-0.0395723767578602,0.331301838159561,-0.953839182853699,-0.032307606190443,0.298575222492218,0.958850622177124,0.00129970256239176,-0.28390845656395,0.958317875862122,-0.0236573200672865,-0.28472301363945,0.923233151435852,0.038195438683033,-0.382337301969528,0.923480808734894,-0.00118383206427097,-0.383642941713333,-0.179841697216034,0.70919406414032,-0.681689739227295,-0.118071712553501,0.93811172246933,-0.32558485865593,-0.111996360123158,0.938404023647308,-0.326886653900146,-0.290284991264343,0.70980179309845,-0.641806900501251,-0.23088264465332,-0.0368591137230396,-0.972283244132996,-0.465112030506134,-0.0353547222912312,-0.884545564651489,-0.179841697216034,0.70919406414032,-0.681689739227295,-0.290284991264343,0.70980179309845,-0.641806900501251,-0.00112668238580227,0.99446165561676,0.105094008147717,-0.111996360123158,0.938404023647308,-0.326886653900146,-0.118071712553501,0.93811172246933,-0.32558485865593,0.0596593022346497,0.994582951068878,0.0851218402385712,-0.0280367322266102,0.998625099658966,-0.044293824583292,-0.0482354015111923,0.997925400733948,-0.0426410362124443,-0.0155630744993687,0.999871551990509,0.00382342771627009,0.0206987932324409,0.998723983764648,-0.0460671856999397,
- 0.0360102877020836,0.999344825744629,-0.00362796196714044,0.00556827802211046,0.999514162540436,-0.0306671187281609,-0.0244979187846184,0.999543190002441,0.0176983699202538,-0.0418852902948856,0.99857223033905,-0.0331559143960476,0.00699578411877155,0.998685240745544,-0.0507832318544388,0.03441122174263,0.999391257762909,-0.00575590506196022,-0.952916741371155,0.0399729013442993,0.300586134195328,-0.110905237495899,0.959887504577637,-0.257518976926804,-0.949039101600647,0.0992986708879471,0.299106419086456,-0.911891639232636,0.164490342140198,0.376027494668961,0.0395119860768318,0.959589898586273,0.278614550828934,-0.967385828495026,0.0360646806657314,0.250727266073227,-0.94269460439682,-0.0395723767578602,0.331301838159561,-0.926141858100891,-0.0998325794935226,0.363723605871201,0.0682323575019836,-0.959764719009399,0.272389590740204,-0.955283284187317,-0.0820381045341492,0.284083962440491,-0.953839182853699,-0.032307606190443,0.298575222492218,-0.148997128009796,-0.958553850650787,-0.242846488952637,-0.232240453362465,0.286244451999664,-0.929585158824921,0.923233151435852,0.038195438683033,-0.382337301969528,0.933934569358826,0.0339665785431862,-0.355826556682587,0.949746608734131,-0.0340121686458588,-0.311166763305664,0.958317875862122,-0.0236573200672865,-0.28472301363945,0.376609563827515,-0.434310257434845,0.818254232406616,-0.776366472244263,0.0287666507065296,0.629624962806702,-0.794512927532196,0.0800881311297417,0.601942777633667,-0.749110341072083,-0.115890845656395,0.652229368686676,-0.755045473575592,-0.0496704280376434,0.653788268566132,-0.204110994935036,0.959401845932007,-0.19464522600174,-0.776366472244263,0.0287666507065296,0.629624962806702,-0.844257295131683,0.0259122997522354,0.535311341285706,0.118593215942383,0.958821594715118,0.258063822984695,0.0273951552808285,0.993983566761017,0.1060486510396,0.0561131350696087,0.987851858139038,0.144913762807846,-0.0257448218762875,0.999216318130493,-0.030065855011344,-0.188190206885338,0.943345487117767,-0.273283302783966,-0.188190206885338,0.943345487117767,-0.273283302783966,
- -0.0257448218762875,0.999216318130493,-0.030065855011344,-0.229290619492531,0.92681610584259,-0.297384858131409,-0.316526889801025,0.882861733436584,-0.346937894821167,-0.734793961048126,0.158158302307129,0.659593760967255,-0.844257295131683,0.0259122997522354,0.535311341285706,-0.797592222690582,-0.0424174144864082,0.601703763008118,-0.80414217710495,-0.0884022265672684,0.58782684803009,-0.559760391712189,0.000480927468743175,-0.828654408454895,0.742250978946686,0.00979586038738489,-0.670050501823425,0.74211460351944,0.0515500232577324,-0.668287694454193,-0.535414278507233,0.287004142999649,-0.794330060482025,-0.755045473575592,-0.0496704280376434,0.653788268566132,0.166440039873123,-0.959995806217194,0.225179746747017,-0.214692130684853,-0.958956897258759,-0.185226932168007,-0.797592222690582,-0.0424174144864082,0.601703763008118,0.111251965165138,0.989303529262543,0.0943484753370285,0.0761447250843048,0.99489825963974,0.0661782473325729,-0.218237191438675,0.942252993583679,-0.254031300544739,-0.0488570369780064,0.998591125011444,-0.0207092426717281,-0.0488570369780064,0.998591125011444,-0.0207092426717281,-0.218237191438675,0.942252993583679,-0.254031300544739,-0.407222509384155,0.720333158969879,-0.561506867408752,-0.545863926410675,0.571568071842194,-0.612652122974396,0.807873368263245,0.0121780149638653,-0.589230418205261,0.697341859340668,-0.000348359346389771,0.716738700866699,0.637903571128845,-0.433452785015106,0.636551439762115,0.80742484331131,-0.0103049883618951,-0.589880585670471,-0.557462096214294,-0.0619258172810078,-0.827889680862427,-0.551493287086487,-0.0456846877932549,-0.832927405834198,-0.575759887695313,0.00535754580050707,-0.817601382732391,-0.593947052955627,0.112082168459892,-0.796658337116241,0.77057296037674,0.0305006690323353,-0.636621594429016,0.74211460351944,0.0515500232577324,-0.668287694454193,0.80742484331131,-0.0103049883618951,-0.589880585670471,0.795742511749268,-0.0272709131240845,-0.605020880699158,-0.691106140613556,-0.0455286912620068,-0.721317827701569,-0.695135116577148,-0.0660312697291374,-0.71584016084671,
- -0.545863926410675,0.571568071842194,-0.612652122974396,-0.407222509384155,0.720333158969879,-0.561506867408752,-0.844257295131683,0.0259122997522354,0.535311341285706,-0.776366472244263,0.0287666507065296,0.629624962806702,-0.755045473575592,-0.0496704280376434,0.653788268566132,-0.797592222690582,-0.0424174144864082,0.601703763008118,0.807873368263245,0.0121780149638653,-0.589230418205261,0.80742484331131,-0.0103049883618951,-0.589880585670471,0.74211460351944,0.0515500232577324,-0.668287694454193,0.742250978946686,0.00979586038738489,-0.670050501823425,-0.407222509384155,0.720333158969879,-0.561506867408752,-0.218237191438675,0.942252993583679,-0.254031300544739,-0.188190206885338,0.943345487117767,-0.273283302783966,-0.316526889801025,0.882861733436584,-0.346937894821167,-0.303697407245636,0.883312582969666,-0.357109069824219,-0.454321801662445,0.716287970542908,-0.52964460849762,-0.551493287086487,-0.0456846877932549,-0.832927405834198,-0.691106140613556,-0.0455286912620068,-0.721317827701569,-0.407222509384155,0.720333158969879,-0.561506867408752,-0.454321801662445,0.716287970542908,-0.52964460849762,-0.629851996898651,0.00436269864439964,-0.776703000068665,-0.575759887695313,0.00535754580050707,-0.817601382732391,0.0273951552808285,0.993983566761017,0.1060486510396,-0.188190206885338,0.943345487117767,-0.273283302783966,-0.218237191438675,0.942252993583679,-0.254031300544739,0.0761447250843048,0.99489825963974,0.0661782473325729,-0.0511083640158176,0.998418748378754,-0.0234103091061115,-0.0697851106524467,0.997451424598694,-0.0148564707487822,-0.0231021568179131,0.999580323696136,0.0174781270325184,-0.00526106916368008,0.999090194702148,-0.0423232093453407,0.0233279503881931,0.999699711799622,-0.00749948248267174,-0.0319691747426987,0.998767018318176,-0.0379808247089386,-0.0296669267117977,0.99896502494812,0.0344782769680023,-0.0653226971626282,0.997805118560791,-0.0108600463718176,0.00183164863847196,0.999985456466675,0.00507547287270427,-0.0502407662570477,0.996734857559204,-0.063210628926754,-0.0506143867969513,0.997338235378265,-0.052484817802906,
- -0.0250737592577934,0.999051094055176,-0.035613764077425,-0.776366472244263,0.0287666507065296,0.629624962806702,-0.204110994935036,0.959401845932007,-0.19464522600174,-0.794512927532196,0.0800881311297417,0.601942777633667,-0.734793961048126,0.158158302307129,0.659593760967255,0.118593215942383,0.958821594715118,0.258063822984695,-0.844257295131683,0.0259122997522354,0.535311341285706,-0.755045473575592,-0.0496704280376434,0.653788268566132,-0.749110341072083,-0.115890845656395,0.652229368686676,0.166440039873123,-0.959995806217194,0.225179746747017,-0.80414217710495,-0.0884022265672684,0.58782684803009,-0.797592222690582,-0.0424174144864082,0.601703763008118,-0.214692130684853,-0.958956897258759,-0.185226932168007,-0.535414278507233,0.287004142999649,-0.794330060482025,0.74211460351944,0.0515500232577324,-0.668287694454193,0.77057296037674,0.0305006690323353,-0.636621594429016,0.795742511749268,-0.0272709131240845,-0.605020880699158,0.80742484331131,-0.0103049883618951,-0.589880585670471,0.637903571128845,-0.433452785015106,0.636551439762115,-0.592735707759857,0.0400942713022232,0.804398417472839,-0.617075681686401,0.0866589173674583,0.782117545604706,-0.560436189174652,-0.111467838287354,0.820662140846252,-0.567529439926147,-0.0393947884440422,0.822410106658936,-0.238198325037956,0.959927558898926,-0.147651046514511,-0.592735707759857,0.0400942713022232,0.804398417472839,-0.677874505519867,0.0370036959648132,0.734245896339417,0.189971655607224,0.959511041641235,0.207965195178986,0.0589696541428566,0.994402885437012,0.0876678749918938,0.0950056239962578,0.989241480827332,0.111244559288025,-0.0281789526343346,0.998866140842438,-0.0383735410869122,-0.277564913034439,0.938345670700073,-0.206071048974991,-0.277564913034439,0.938345670700073,-0.206071048974991,-0.0281789526343346,0.998866140842438,-0.0383735410869122,-0.642881155014038,0.576280176639557,-0.504583954811096,-0.601433455944061,0.709285259246826,-0.36768513917923,-0.542367994785309,0.163977101445198,0.823983311653137,-0.677874505519867,0.0370036959648132,0.734245896339417,
- -0.618139147758484,-0.0320855788886547,0.78541362285614,-0.629806220531464,-0.0812680274248123,0.772489249706268,-0.754497587680817,-1.12317502498627e-005,-0.656302869319916,0.547626495361328,-0.00116462574806064,-0.836722075939178,0.548157811164856,0.0406254418194294,-0.835387647151947,-0.718901515007019,0.286206990480423,-0.633455812931061,-0.567529439926147,-0.0393947884440422,0.822410106658936,0.212001904845238,-0.959698796272278,0.18448194861412,-0.260044455528259,-0.958562850952148,-0.116336137056351,-0.618139147758484,-0.0320855788886547,0.78541362285614,0.137847632169724,0.988962888717651,0.054318942129612,0.0966981127858162,0.994654893875122,0.0362096354365349,-0.28153783082962,0.938178300857544,-0.201390072703362,-0.0442224591970444,0.998888731002808,-0.0163025688380003,-0.0442224591970444,0.998888731002808,-0.0163025688380003,-0.28153783082962,0.938178300857544,-0.201390072703362,-0.531504213809967,0.709812462329865,-0.462244153022766,-0.678413569927216,0.573221981525421,-0.459534108638763,0.632803976535797,0.00134229974355549,-0.774310827255249,0.855427443981171,-0.000862669083289802,0.517921924591064,0.77493280172348,-0.433889746665955,0.459585607051849,0.631976008415222,-0.0215520914644003,-0.774688184261322,-0.753363132476807,-0.0564266443252563,-0.655179381370544,-0.713587462902069,-0.03536032512784,-0.699673235416412,-0.601433455944061,0.709285259246826,-0.36768513917923,-0.642881155014038,0.576280176639557,-0.504583954811096,0.573907792568207,0.0340976752340794,-0.818209826946259,0.548157811164856,0.0406254418194294,-0.835387647151947,0.631976008415222,-0.0215520914644003,-0.774688184261322,0.613199412822723,-0.0337049402296543,-0.789208769798279,-0.864863455295563,-0.0368998870253563,-0.500649213790894,-0.853672862052917,-0.063293918967247,-0.51694917678833,-0.678413569927216,0.573221981525421,-0.459534108638763,-0.531504213809967,0.709812462329865,-0.462244153022766,-0.677874505519867,0.0370036959648132,0.734245896339417,-0.592735707759857,0.0400942713022232,0.804398417472839,-0.567529439926147,-0.0393947884440422,0.822410106658936,
- -0.618139147758484,-0.0320855788886547,0.78541362285614,0.632803976535797,0.00134229974355549,-0.774310827255249,0.631976008415222,-0.0215520914644003,-0.774688184261322,0.548157811164856,0.0406254418194294,-0.835387647151947,0.547626495361328,-0.00116462574806064,-0.836722075939178,-0.531504213809967,0.709812462329865,-0.462244153022766,-0.28153783082962,0.938178300857544,-0.201390072703362,-0.277564913034439,0.938345670700073,-0.206071048974991,-0.601433455944061,0.709285259246826,-0.36768513917923,-0.713587462902069,-0.03536032512784,-0.699673235416412,-0.864863455295563,-0.0368998870253563,-0.500649213790894,-0.531504213809967,0.709812462329865,-0.462244153022766,-0.601433455944061,0.709285259246826,-0.36768513917923,0.0589696541428566,0.994402885437012,0.0876678749918938,-0.277564913034439,0.938345670700073,-0.206071048974991,-0.28153783082962,0.938178300857544,-0.201390072703362,0.0966981127858162,0.994654893875122,0.0362096354365349,-0.0488403886556625,0.998614370822906,-0.0195952989161015,-0.0645670890808105,0.99789035320282,-0.00678917719051242,-0.01130435988307,0.999853312969208,0.0128728598356247,-0.00974118150770664,0.998765110969543,-0.0487186126410961,0.0267720967531204,0.999392807483673,-0.0223016645759344,-0.0135551393032074,0.999530375003815,-0.0274836458265781,-0.010993336327374,0.999500513076782,0.0296318493783474,-0.0540264174342155,0.998536348342896,-0.00253995507955551,-0.0237402841448784,0.998708963394165,-0.0449096672236919,0.0244754478335381,0.999428510665894,-0.0233190599828959,-0.592735707759857,0.0400942713022232,0.804398417472839,-0.238198325037956,0.959927558898926,-0.147651046514511,-0.617075681686401,0.0866589173674583,0.782117545604706,-0.542367994785309,0.163977101445198,0.823983311653137,0.189971655607224,0.959511041641235,0.207965195178986,-0.677874505519867,0.0370036959648132,0.734245896339417,-0.567529439926147,-0.0393947884440422,0.822410106658936,-0.560436189174652,-0.111467838287354,0.820662140846252,0.212001904845238,-0.959698796272278,0.18448194861412,-0.629806220531464,-0.0812680274248123,0.772489249706268,
- -0.618139147758484,-0.0320855788886547,0.78541362285614,-0.260044455528259,-0.958562850952148,-0.116336137056351,-0.718901515007019,0.286206990480423,-0.633455812931061,0.548157811164856,0.0406254418194294,-0.835387647151947,0.573907792568207,0.0340976752340794,-0.818209826946259,0.613199412822723,-0.0337049402296543,-0.789208769798279,0.631976008415222,-0.0215520914644003,-0.774688184261322,0.77493280172348,-0.433889746665955,0.459585607051849,-0.40228933095932,0.00947414245456457,0.91546356678009,-0.440293997526169,0.0660646483302116,0.895419895648956,-0.389795064926147,-0.107131108641624,0.914648950099945,-0.372640818357468,-0.0694810897111893,0.925370872020721,-0.278049558401108,0.958473324775696,-0.0633821561932564,-0.40228933095932,0.00947414245456457,0.91546356678009,-0.500194728374481,0.00646558776497841,0.865888893604279,0.217211484909058,0.957530558109283,0.189616873860359,0.0879761725664139,0.990034520626068,0.109963044524193,0.108667954802513,0.986869394779205,0.119499146938324,-0.0455602221190929,0.998961627483368,0.000103872283943929,-0.328625053167343,0.936951577663422,-0.118859499692917,-0.328625053167343,0.936951577663422,-0.118859499692917,-0.0455602221190929,0.998961627483368,0.000103872283943929,-0.744368016719818,0.578304827213287,-0.333886057138443,-0.679000556468964,0.696460425853729,-0.23216649889946,-0.348044902086258,0.135590046644211,0.927620708942413,-0.500194728374481,0.00646558776497841,0.865888893604279,-0.428141981363297,-0.0623413659632206,0.901558756828308,-0.441208720207214,-0.111150331795216,0.890494585037231,-0.879924774169922,0.00134667579550296,-0.475111365318298,0.34840202331543,0.0293048564344645,-0.936886966228485,0.348838239908218,0.0661163479089737,-0.934847891330719,-0.844157040119171,0.287825256586075,-0.452278107404709,-0.372640818357468,-0.0694810897111893,0.925370872020721,0.259066551923752,-0.960127353668213,0.105071857571602,-0.270561724901199,-0.959442675113678,-0.0791592597961426,-0.428141981363297,-0.0623413659632206,0.901558756828308,-0.379459589719772,0.912691652774811,0.151672020554543,
- -0.375126421451569,0.919378042221069,0.118423998355865,-0.221087366342545,0.972481429576874,0.0734861642122269,-0.221087366342545,0.972481429576874,0.0734861642122269,-0.182560250163078,0.98216450214386,0.0449962727725506,0.0536290481686592,0.998485922813416,-0.0122455721721053,0.0522923804819584,0.99846225976944,-0.018402099609375,0.444655299186707,0.0316899307072163,-0.895141124725342,0.951415061950684,0.000848551746457815,0.307910144329071,0.86465972661972,-0.431620597839355,0.257035464048386,0.444126129150391,0.00656324252486229,-0.89594030380249,-0.877767860889435,-0.0541263446211815,-0.476018875837326,-0.84933078289032,-0.0310335755348206,-0.526947915554047,-0.679000556468964,0.696460425853729,-0.23216649889946,-0.744368016719818,0.578304827213287,-0.333886057138443,0.379035949707031,0.0652389600872993,-0.923079550266266,0.348838239908218,0.0661163479089737,-0.934847891330719,0.444126129150391,0.00656324252486229,-0.89594030380249,0.424185186624527,-0.00209005456417799,-0.905573070049286,-0.952925562858582,-0.0401430018246174,-0.300535470247269,-0.947591006755829,-0.0792906954884529,-0.309490233659744,-0.875373303890228,0.349632382392883,-0.333884298801422,-0.67052298784256,0.697873950004578,-0.251736015081406,-0.500194728374481,0.00646558776497841,0.865888893604279,-0.40228933095932,0.00947414245456457,0.91546356678009,-0.372640818357468,-0.0694810897111893,0.925370872020721,-0.428141981363297,-0.0623413659632206,0.901558756828308,0.444655299186707,0.0316899307072163,-0.895141124725342,0.444126129150391,0.00656324252486229,-0.89594030380249,0.348838239908218,0.0661163479089737,-0.934847891330719,0.34840202331543,0.0293048564344645,-0.936886966228485,-0.340907484292984,0.938964188098907,0.046135563403368,-0.182560250163078,0.98216450214386,0.0449962727725506,-0.375126421451569,0.919378042221069,0.118423998355865,-0.84933078289032,-0.0310335755348206,-0.526947915554047,-0.952925562858582,-0.0401430018246174,-0.300535470247269,-0.67052298784256,0.697873950004578,-0.251736015081406,-0.679000556468964,0.696460425853729,-0.23216649889946,
- 0.0113907605409622,0.999933421611786,-0.00186608009971678,-0.0175742581486702,0.999501705169678,0.0262197256088257,-0.0887587666511536,0.996053159236908,-0.000187300145626068,-0.0944935828447342,0.99548351764679,0.00914034992456436,-0.0245426949113607,0.99803614616394,0.0576318576931953,-0.0889600962400436,0.995804309844971,0.0214462019503117,-0.0197734273970127,0.99968957901001,-0.0151579091325402,-0.0335006825625896,0.999423682689667,0.00549400644376874,-0.0184255167841911,0.997978806495667,0.0608180873095989,-0.0674995705485344,0.996963322162628,0.0388333573937416,-0.0472347363829613,0.998839974403381,-0.00936548504978418,0.00452127400785685,0.999989151954651,0.00113089312799275,-0.40228933095932,0.00947414245456457,0.91546356678009,-0.278049558401108,0.958473324775696,-0.0633821561932564,-0.440293997526169,0.0660646483302116,0.895419895648956,-0.348044902086258,0.135590046644211,0.927620708942413,0.217211484909058,0.957530558109283,0.189616873860359,-0.500194728374481,0.00646558776497841,0.865888893604279,-0.372640818357468,-0.0694810897111893,0.925370872020721,-0.389795064926147,-0.107131108641624,0.914648950099945,0.259066551923752,-0.960127353668213,0.105071857571602,-0.441208720207214,-0.111150331795216,0.890494585037231,-0.428141981363297,-0.0623413659632206,0.901558756828308,-0.270561724901199,-0.959442675113678,-0.0791592597961426,-0.844157040119171,0.287825256586075,-0.452278107404709,0.348838239908218,0.0661163479089737,-0.934847891330719,0.379035949707031,0.0652389600872993,-0.923079550266266,0.424185186624527,-0.00209005456417799,-0.905573070049286,0.444126129150391,0.00656324252486229,-0.89594030380249,0.86465972661972,-0.431620597839355,0.257035464048386,-0.016537856310606,0.0351033918559551,0.999246895313263,-0.0730370432138443,0.0881701186299324,0.993424296379089,-0.00826426781713963,-0.169439017772675,0.985506117343903,-0.0396545752882957,-0.0451542213559151,0.998192667961121,-0.279675453901291,0.959739148616791,0.0261245034635067,-0.016537856310606,0.0351033918559551,0.999246895313263,-0.105189554393291,0.0317400805652142,0.993945598602295,
- 0.275919258594513,0.959332883358002,0.0595745928585529,0.0987239331007004,0.994105815887451,0.0448015630245209,0.138378918170929,0.989657998085022,0.0377941802144051,-0.0440582260489464,0.998993456363678,-0.00842094887048006,-0.349200278520584,0.937008380889893,-0.00864083599299192,-0.349200278520584,0.937008380889893,-0.00864083599299192,-0.0440582260489464,0.998993456363678,-0.00842094887048006,-0.818319320678711,0.574292719364166,-0.0232676081359386,-0.719674348831177,0.693046748638153,0.0418945401906967,0.013043574988842,0.159561932086945,0.987101793289185,-0.105189554393291,0.0317400805652142,0.993945598602295,-0.10144080966711,-0.0381537452340126,0.994109749794006,-0.0891360640525818,-0.0523613318800926,0.994642198085785,-0.996514737606049,0.000253074802458286,-0.0834167897701263,-0.0158867910504341,0.00451254565268755,-0.999863684177399,-0.0149996867403388,0.036681056022644,-0.999214470386505,-0.954318821430206,0.286582291126251,-0.0845360085368156,-0.0396545752882957,-0.0451542213559151,0.998192667961121,0.277486592531204,-0.959842503070831,0.0412742234766483,-0.281801879405975,-0.958974719047546,0.0309081133455038,-0.10144080966711,-0.0381537452340126,0.994109749794006,0.141711786389351,0.989703238010406,-0.0201339591294527,0.101579494774342,0.99465799331665,-0.0183613635599613,-0.349793672561646,0.936800122261047,-0.00706406962126493,-0.0441872216761112,0.998923182487488,0.0141413742676377,-0.0441872216761112,0.998923182487488,0.0141413742676377,-0.349793672561646,0.936800122261047,-0.00706406962126493,-0.715224623680115,0.693474173545837,-0.0868754684925079,-0.814642906188965,0.57893043756485,-0.0345910117030144,0.0898835211992264,0.00787603762000799,-0.995921194553375,0.999984204769135,0.000240304914768785,-0.00562605727463961,0.958127319812775,-0.286057978868485,-0.0127616878598928,0.0893569588661194,-0.00233703665435314,-0.995996952056885,-0.994529724121094,-0.062962144613266,-0.0833456218242645,-0.99129992723465,-0.0387912653386593,-0.125776097178459,-0.719674348831177,0.693046748638153,0.0418945401906967,
- -0.818319320678711,0.574292719364166,-0.0232676081359386,-0.0209676753729582,0.0381664074957371,-0.9990513920784,-0.0149996867403388,0.036681056022644,-0.999214470386505,0.0893569588661194,-0.00233703665435314,-0.995996952056885,0.0772276744246483,-0.028066098690033,-0.996618449687958,-0.995896935462952,-0.0387774109840393,0.0817654803395271,-0.998247802257538,-0.0589318200945854,0.0053257797844708,-0.814642906188965,0.57893043756485,-0.0345910117030144,-0.715224623680115,0.693474173545837,-0.0868754684925079,-0.105189554393291,0.0317400805652142,0.993945598602295,-0.016537856310606,0.0351033918559551,0.999246895313263,-0.0396545752882957,-0.0451542213559151,0.998192667961121,-0.10144080966711,-0.0381537452340126,0.994109749794006,0.0898835211992264,0.00787603762000799,-0.995921194553375,0.0893569588661194,-0.00233703665435314,-0.995996952056885,-0.0149996867403388,0.036681056022644,-0.999214470386505,-0.0158867910504341,0.00451254565268755,-0.999863684177399,-0.715224623680115,0.693474173545837,-0.0868754684925079,-0.349793672561646,0.936800122261047,-0.00706406962126493,-0.349200278520584,0.937008380889893,-0.00864083599299192,-0.719674348831177,0.693046748638153,0.0418945401906967,-0.99129992723465,-0.0387912653386593,-0.125776097178459,-0.995896935462952,-0.0387774109840393,0.0817654803395271,-0.715224623680115,0.693474173545837,-0.0868754684925079,-0.719674348831177,0.693046748638153,0.0418945401906967,0.0987239331007004,0.994105815887451,0.0448015630245209,-0.349200278520584,0.937008380889893,-0.00864083599299192,-0.349793672561646,0.936800122261047,-0.00706406962126493,0.101579494774342,0.99465799331665,-0.0183613635599613,-0.0520980805158615,0.998549580574036,0.013584528118372,-0.0588340871036053,0.997733891010284,0.0326454825699329,-0.0031281323172152,0.999745488166809,0.0223428606987,-0.0339399240911007,0.998962759971619,-0.0303568281233311,0.0110363084822893,0.999567568302155,-0.0272578801959753,-0.0274351183325052,0.999589264392853,-0.00828933902084827,0.00853923615068197,0.999356925487518,0.0348275154829025,
- -0.0451936572790146,0.998393476009369,0.0341767333447933,-0.0459398180246353,0.998799324035645,-0.0170142874121666,0.00561684416607022,0.999610245227814,-0.0273496750742197,-0.016537856310606,0.0351033918559551,0.999246895313263,-0.279675453901291,0.959739148616791,0.0261245034635067,-0.0730370432138443,0.0881701186299324,0.993424296379089,0.013043574988842,0.159561932086945,0.987101793289185,0.275919258594513,0.959332883358002,0.0595745928585529,-0.105189554393291,0.0317400805652142,0.993945598602295,-0.0396545752882957,-0.0451542213559151,0.998192667961121,-0.00826426781713963,-0.169439017772675,0.985506117343903,0.277486592531204,-0.959842503070831,0.0412742234766483,-0.0891360640525818,-0.0523613318800926,0.994642198085785,-0.10144080966711,-0.0381537452340126,0.994109749794006,-0.281801879405975,-0.958974719047546,0.0309081133455038,-0.954318821430206,0.286582291126251,-0.0845360085368156,-0.0149996867403388,0.036681056022644,-0.999214470386505,-0.0209676753729582,0.0381664074957371,-0.9990513920784,0.0772276744246483,-0.028066098690033,-0.996618449687958,0.0893569588661194,-0.00233703665435314,-0.995996952056885,0.958127319812775,-0.286057978868485,-0.0127616878598928,-0.994935870170593,0.0579470731317997,0.082126297056675,-0.998416423797607,0.0348595641553402,0.0441529043018818,-0.999912977218628,0.0117027861997485,0.0060917679220438,-0.998416423797607,0.0348595641553402,0.0441529043018818,0.000606123358011246,0.0302540361881256,0.999542057514191,0.000606123416218907,0.0302540343254805,0.999542117118835,0.000606123358011246,0.0302540361881256,0.999542057514191,0.000606123416218907,0.0302540343254805,0.999542117118835,-0.201982587575912,0.973844349384308,-0.104068771004677,-0.432887047529221,0.897697567939758,-0.0821451097726822,-0.420742720365524,0.793262362480164,-0.440125465393066,-0.878896355628967,-0.225457221269608,-0.420369327068329,0.766207337379456,0.512937366962433,0.387068241834641,0.420245170593262,0.778452575206757,0.466267615556717,0.335749179124832,0.904869318008423,0.261694669723511,0.766207337379456,0.512937366962433,0.387068241834641,
- 0.335749179124832,0.904869318008423,0.261694669723511,-0.432887047529221,0.897697567939758,-0.0821451097726822,-0.201982587575912,0.973844349384308,-0.104068771004677,0.741653323173523,0.59295392036438,0.313617587089539,0.420245170593262,0.778452575206757,0.466267615556717,0.716263234615326,0.576623976230621,0.393029153347015,-0.367950111627579,0.821934759616852,-0.434782832860947,-0.385247230529785,0.831753134727478,-0.399714291095734,-0.675622522830963,-0.715837597846985,-0.176382750272751,-0.156168013811111,-0.478291928768158,-0.864203929901123,-0.385247230529785,0.831753134727478,-0.399714291095734,-0.367950111627579,0.821934759616852,-0.434782832860947,-0.114566743373871,0.923828959465027,-0.365259796380997,-0.127132833003998,0.946181535720825,-0.297620266675949,-0.0166449695825577,0.891004741191864,-0.453688859939575,-0.0927052870392799,0.872573375701904,-0.479605734348297,0.661110877990723,0.599104583263397,0.451670527458191,0.64439582824707,0.609852910041809,0.46133878827095,-0.156168013811111,-0.478291928768158,-0.864203929901123,-0.675622522830963,-0.715837597846985,-0.176382750272751,-0.54911732673645,0.0451239347457886,-0.834526240825653,-0.723858773708344,-0.053580604493618,-0.687864542007446,-0.664893329143524,-0.564204633235931,-0.489479333162308,-0.722868859767914,-0.580524742603302,-0.374768912792206,-0.365398705005646,0.847516417503357,-0.384967356920242,-0.363962739706039,0.824527621269226,-0.433226823806763,-0.679536402225494,-0.596674144268036,-0.426860839128494,-0.800958514213562,-0.282586753368378,-0.527835369110107,-0.870809674263,-0.237442165613174,-0.430478513240814,0.801347613334656,0.444962561130524,0.399813085794449,0.800866484642029,0.435793608427048,0.410727232694626,0.869234919548035,0.281818866729736,0.406212866306305,0.765461683273315,0.515177845954895,0.385564863681793,0.766207337379456,0.512937366962433,0.387068241834641,0.81572699546814,0.394948124885559,0.422617524862289,-0.0927052870392799,0.872573375701904,-0.479605734348297,-0.0166449695825577,0.891004741191864,-0.453688859939575,
- -0.363962739706039,0.824527621269226,-0.433226823806763,0.420245170593262,0.778452575206757,0.466267615556717,0.741653323173523,0.59295392036438,0.313617587089539,-0.399164408445358,0.91222870349884,-0.0922320485115051,0.335749179124832,0.904869318008423,0.261694669723511,0.335749179124832,0.904869318008423,0.261694669723511,-0.399164408445358,0.91222870349884,-0.0922320485115051,-0.432887047529221,0.897697567939758,-0.0821451097726822,0.420245170593262,0.778452575206757,0.466267615556717,0.766207337379456,0.512937366962433,0.387068241834641,0.765461683273315,0.515177845954895,0.385564863681793,0.716263234615326,0.576623976230621,0.393029153347015,-0.762362897396088,-0.562289834022522,-0.320363759994507,-0.878896355628967,-0.225457221269608,-0.420369327068329,-0.420742720365524,0.793262362480164,-0.440125465393066,-0.0927052870392799,0.872573375701904,-0.479605734348297,-0.518828868865967,0.840822458267212,0.154383957386017,0.598216354846954,0.590447843074799,0.541764259338379,0.661110877990723,0.599104583263397,0.451670527458191,0.392954051494598,0.777064859867096,0.491688340902328,0.126457452774048,0.982590317726135,0.136105716228485,-0.206067055463791,0.951539397239685,-0.228274717926979,0.290594786405563,0.578960657119751,0.761813223361969,-0.394520193338394,0.842543959617615,-0.366706162691116,-0.607030510902405,0.784792184829712,-0.124960705637932,-0.370033591985703,-0.529527425765991,-0.763332068920136,-0.866210103034973,-0.480922102928162,-0.135624825954437,-0.434564501047134,0.900633454322815,0.00364336417987943,-0.206067055463791,0.951539397239685,-0.228274717926979,-0.607030510902405,0.784792184829712,-0.124960705637932,-0.394520193338394,0.842543959617615,-0.366706162691116,-0.866210103034973,-0.480922102928162,-0.135624825954437,-0.370033591985703,-0.529527425765991,-0.763332068920136,-0.748726427555084,-0.0638257414102554,-0.659799218177795,-0.533360481262207,-0.0495935901999474,-0.844433069229126,-0.757700800895691,-0.563015818595886,-0.330004036426544,-0.127132833003998,0.946181535720825,-0.297620266675949,
- -0.114566743373871,0.923828959465027,-0.365259796380997,0.338394552469254,0.592782974243164,0.730819761753082,0.727448403835297,0.588550627231598,0.352742195129395,-0.800958514213562,-0.282586753368378,-0.527835369110107,-0.546796381473541,-0.549887657165527,-0.631377279758453,-0.608328640460968,0.78843879699707,-0.0911080539226532,-0.515601396560669,0.797718524932861,-0.312730669975281,-0.293989270925522,0.908505737781525,-0.296964228153229,-0.174166321754456,0.880510330200195,-0.440871357917786,0.765044867992401,0.58251428604126,0.274560540914536,0.702540457248688,0.587955713272095,0.400930345058441,-0.722868859767914,-0.580524742603302,-0.374768912792206,-0.870809674263,-0.237442165613174,-0.430478513240814,-0.371633559465408,0.875462055206299,-0.308957666158676,-0.365398705005646,0.847516417503357,-0.384967356920242,-0.546796381473541,-0.549887657165527,-0.631377279758453,-0.762362897396088,-0.562289834022522,-0.320363759994507,-0.420742720365524,0.793262362480164,-0.440125465393066,-0.608328640460968,0.78843879699707,-0.0911080539226532,-0.546796381473541,-0.549887657165527,-0.631377279758453,-0.800958514213562,-0.282586753368378,-0.527835369110107,-0.679536402225494,-0.596674144268036,-0.426860839128494,-0.664893329143524,-0.564204633235931,-0.489479333162308,-0.514623522758484,-0.0847540348768234,-0.853217124938965,-0.531035423278809,-0.0400975681841373,-0.846400439739227,-0.518828868865967,0.840822458267212,0.154383957386017,-0.0927052870392799,0.872573375701904,-0.479605734348297,-0.363962739706039,0.824527621269226,-0.433226823806763,-0.365398705005646,0.847516417503357,-0.384967356920242,-0.371633559465408,0.875462055206299,-0.308957666158676,-0.174166321754456,0.880510330200195,-0.440871357917786,-0.293989270925522,0.908505737781525,-0.296964228153229,-0.515601396560669,0.797718524932861,-0.312730669975281,-0.608328640460968,0.78843879699707,-0.0911080539226532,-0.206067055463791,0.951539397239685,-0.228274717926979,-0.434564501047134,0.900633454322815,0.00364336417987943,0.613574802875519,0.612071216106415,0.498893558979034,
- 0.290594786405563,0.578960657119751,0.761813223361969,-0.607030510902405,0.784792184829712,-0.124960705637932,-0.520051717758179,0.605514049530029,-0.602411031723022,-0.616368889808655,-0.0885959789156914,-0.782457828521729,-0.370033591985703,-0.529527425765991,-0.763332068920136,-0.206067055463791,0.951539397239685,-0.228274717926979,0.126457452774048,0.982590317726135,0.136105716228485,-0.520051717758179,0.605514049530029,-0.602411031723022,-0.607030510902405,0.784792184829712,-0.124960705637932,-0.370033591985703,-0.529527425765991,-0.763332068920136,-0.616368889808655,-0.0885959789156914,-0.782457828521729,-0.484415471553802,-0.684369623661041,-0.544958710670471,-0.748726427555084,-0.0638257414102554,-0.659799218177795,-0.114566743373871,0.923828959465027,-0.365259796380997,-0.0166449695825577,0.891004741191864,-0.453688859939575,0.64439582824707,0.609852910041809,0.46133878827095,0.338394552469254,0.592782974243164,0.730819761753082,-0.367950111627579,0.821934759616852,-0.434782832860947,-0.363962739706039,0.824527621269226,-0.433226823806763,-0.0166449695825577,0.891004741191864,-0.453688859939575,-0.114566743373871,0.923828959465027,-0.365259796380997,-0.363962739706039,0.824527621269226,-0.433226823806763,-0.367950111627579,0.821934759616852,-0.434782832860947,-0.156168013811111,-0.478291928768158,-0.864203929901123,-0.664893329143524,-0.564204633235931,-0.489479333162308,-0.664893329143524,-0.564204633235931,-0.489479333162308,-0.156168013811111,-0.478291928768158,-0.864203929901123,-0.723858773708344,-0.053580604493618,-0.687864542007446,-0.514623522758484,-0.0847540348768234,-0.853217124938965,-0.434564501047134,0.900633454322815,0.00364336417987943,-0.127132833003998,0.946181535720825,-0.297620266675949,0.727448403835297,0.588550627231598,0.352742195129395,0.613574802875519,0.612071216106415,0.498893558979034,-0.127132833003998,0.946181535720825,-0.297620266675949,-0.434564501047134,0.900633454322815,0.00364336417987943,-0.394520193338394,0.842543959617615,-0.366706162691116,-0.385247230529785,0.831753134727478,-0.399714291095734,
- -0.385247230529785,0.831753134727478,-0.399714291095734,-0.394520193338394,0.842543959617615,-0.366706162691116,-0.866210103034973,-0.480922102928162,-0.135624825954437,-0.675622522830963,-0.715837597846985,-0.176382750272751,-0.675622522830963,-0.715837597846985,-0.176382750272751,-0.866210103034973,-0.480922102928162,-0.135624825954437,-0.757700800895691,-0.563015818595886,-0.330004036426544,-0.757700800895691,-0.563015818595886,-0.330004036426544,-0.533360481262207,-0.0495935901999474,-0.844433069229126,-0.529012084007263,-0.377775102853775,-0.759889662265778,-0.675622522830963,-0.715837597846985,-0.176382750272751,-0.757700800895691,-0.563015818595886,-0.330004036426544,-0.529012084007263,-0.377775102853775,-0.759889662265778,-0.54911732673645,0.0451239347457886,-0.834526240825653,-0.664893329143524,-0.564204633235931,-0.489479333162308,-0.531035423278809,-0.0400975681841373,-0.846400439739227,-0.857145488262177,-0.0532608404755592,-0.512313306331635,-0.679536402225494,-0.596674144268036,-0.426860839128494,-0.722868859767914,-0.580524742603302,-0.374768912792206,-0.174166321754456,0.880510330200195,-0.440871357917786,-0.399164408445358,0.91222870349884,-0.0922320485115051,0.741653323173523,0.59295392036438,0.313617587089539,0.765044867992401,0.58251428604126,0.274560540914536,-0.432887047529221,0.897697567939758,-0.0821451097726822,-0.399164408445358,0.91222870349884,-0.0922320485115051,-0.174166321754456,0.880510330200195,-0.440871357917786,-0.608328640460968,0.78843879699707,-0.0911080539226532,-0.420742720365524,0.793262362480164,-0.440125465393066,-0.518828868865967,0.840822458267212,0.154383957386017,-0.293989270925522,0.908505737781525,-0.296964228153229,0.702540457248688,0.587955713272095,0.400930345058441,0.598216354846954,0.590447843074799,0.541764259338379,-0.293989270925522,0.908505737781525,-0.296964228153229,-0.518828868865967,0.840822458267212,0.154383957386017,-0.371633559465408,0.875462055206299,-0.308957666158676,-0.515601396560669,0.797718524932861,-0.312730669975281,-0.870809674263,-0.237442165613174,-0.430478513240814,
- -0.800958514213562,-0.282586753368378,-0.527835369110107,-0.515601396560669,0.797718524932861,-0.312730669975281,-0.371633559465408,0.875462055206299,-0.308957666158676,-0.679536402225494,-0.596674144268036,-0.426860839128494,-0.870809674263,-0.237442165613174,-0.430478513240814,-0.722868859767914,-0.580524742603302,-0.374768912792206,0.869234919548035,0.281818866729736,0.406212866306305,0.673354208469391,0.543777048587799,0.500899791717529,0.716263234615326,0.576623976230621,0.393029153347015,0.765461683273315,0.515177845954895,0.385564863681793,-0.769403040409088,-0.0666029453277588,-0.6352818608284,-0.813586056232452,-0.406343311071396,-0.415887981653214,-0.878896355628967,-0.225457221269608,-0.420369327068329,-0.762362897396088,-0.562289834022522,-0.320363759994507,-0.857145488262177,-0.0532608404755592,-0.512313306331635,-0.769403040409088,-0.0666029453277588,-0.6352818608284,-0.762362897396088,-0.562289834022522,-0.320363759994507,-0.546796381473541,-0.549887657165527,-0.631377279758453,-0.679536402225494,-0.596674144268036,-0.426860839128494,0.550206303596497,0.455454498529434,0.699881613254547,0.585020363330841,0.450288861989975,0.674530386924744,0.570095419883728,0.445898354053497,0.690047860145569,0.593983888626099,0.447740972042084,0.668364524841309,0.590973198413849,0.446335554122925,0.671963691711426,0.585601031780243,0.44850367307663,0.675215482711792,0.20522665977478,0.973830342292786,0.0976553112268448,0.8688645362854,-0.221644937992096,0.442660301923752,0.597025096416473,0.794268190860748,0.112690903246403,0.290403991937637,0.906295597553253,0.307073175907135,-0.770714819431305,0.516271531581879,-0.373446822166443,-0.416380763053894,0.901622891426086,-0.117060899734497,-0.642677545547485,0.763206362724304,-0.0669458881020546,-0.770714819431305,0.516271531581879,-0.373446822166443,0.20522665977478,0.973830342292786,0.0976553112268448,0.290403991937637,0.906295597553253,0.307073175907135,-0.416380763053894,0.901622891426086,-0.117060899734497,-0.660702526569366,0.593615770339966,-0.459447979927063,-0.744992136955261,0.577116847038269,-0.334548830986023,
- -0.642677545547485,0.763206362724304,-0.0669458881020546,0.492073506116867,0.818068385124207,0.297704219818115,0.875486552715302,-0.483149230480194,-0.00950393173843622,0.161056935787201,-0.743154287338257,0.649447858333588,0.434238702058792,0.82753324508667,0.355844706296921,0.434238702058792,0.82753324508667,0.355844706296921,0.323318034410477,0.942039012908936,0.0895999819040298,0.388225525617599,0.920644342899323,0.0411691814661026,0.492073506116867,0.818068385124207,0.297704219818115,0.48805171251297,0.865505933761597,-0.112716883420944,-0.593811869621277,0.60578578710556,-0.529538691043854,-0.643024146556854,0.597119331359863,-0.479550302028656,0.494397550821304,0.862573325634003,-0.107416898012161,0.875486552715302,-0.483149230480194,-0.00950393173843622,0.777829051017761,0.0529624223709106,0.626240432262421,0.904319703578949,0.118249490857124,0.410150110721588,0.161056935787201,-0.743154287338257,0.649447858333588,0.643188893795013,-0.57349044084549,0.507362484931946,0.531669735908508,0.815546214580536,0.228499040007591,0.52555650472641,0.834673047065735,0.1646548807621,0.612248003482819,-0.586030840873718,0.530773222446442,0.685355186462402,-0.596667528152466,0.41746398806572,0.768129110336304,-0.228102624416351,0.598286688327789,0.831146419048309,-0.287882775068283,0.475730150938034,-0.803985774517059,0.444865733385086,-0.394590139389038,-0.830016553401947,0.395366311073303,-0.393393129110336,-0.770714819431305,0.516271531581879,-0.373446822166443,-0.771154642105103,0.515023827552795,-0.374260663986206,-0.78178197145462,0.451524198055267,-0.430049985647202,-0.813647329807281,0.436174869537354,-0.384356051683426,0.494397550821304,0.862573325634003,-0.107416898012161,0.531669735908508,0.815546214580536,0.228499040007591,0.48805171251297,0.865505933761597,-0.112716883420944,-0.642677545547485,0.763206362724304,-0.0669458881020546,-0.416380763053894,0.901622891426086,-0.117060899734497,0.24626587331295,0.917753219604492,0.311580061912537,-0.660702526569366,0.593615770339966,-0.459447979927063,-0.416380763053894,0.901622891426086,-0.117060899734497,
- 0.290403991937637,0.906295597553253,0.307073175907135,0.24626587331295,0.917753219604492,0.311580061912537,-0.642677545547485,0.763206362724304,-0.0669458881020546,-0.744992136955261,0.577116847038269,-0.334548830986023,-0.771154642105103,0.515023827552795,-0.374260663986206,-0.770714819431305,0.516271531581879,-0.373446822166443,0.678603708744049,-0.564384877681732,0.47007092833519,0.597025096416473,0.794268190860748,0.112690903246403,0.8688645362854,-0.221644937992096,0.442660301923752,0.494397550821304,0.862573325634003,-0.107416898012161,-0.643024146556854,0.597119331359863,-0.479550302028656,-0.746513783931732,0.581846237182617,-0.322757065296173,0.0240804702043533,0.820173263549805,0.571608245372772,-0.413364320993423,0.783355474472046,-0.464202910661697,-0.745419561862946,0.576781392097473,-0.334175139665604,0.208665996789932,0.952229380607605,0.222974970936775,-0.115572907030582,0.982166588306427,-0.148296236991882,0.364839166402817,0.835221111774445,0.411458641290665,0.101759888231754,-0.490209072828293,0.86564427614212,0.750064671039581,-0.531729161739349,0.393277406692505,0.0714512020349503,0.762784004211426,0.642693758010864,-0.0197474975138903,0.902504563331604,0.430227518081665,0.364839166402817,0.835221111774445,0.411458641290665,0.0714512020349503,0.762784004211426,0.642693758010864,0.208665996789932,0.952229380607605,0.222974970936775,0.101759888231754,-0.490209072828293,0.86564427614212,0.3263199031353,-0.567204356193542,0.756170988082886,0.84612900018692,0.0601838603615761,0.529569149017334,0.514906167984009,0.0402544885873795,0.856300830841064,0.750064671039581,-0.531729161739349,0.393277406692505,0.323318034410477,0.942039012908936,0.0895999819040298,-0.386358946561813,0.580626845359802,-0.716658353805542,-0.777294218540192,0.593269824981689,-0.209391295909882,0.388225525617599,0.920644342899323,0.0411691814661026,0.831146419048309,-0.287882775068283,0.475730150938034,0.513041734695435,0.80052375793457,0.309757798910141,0.311735302209854,0.759660840034485,0.570733487606049,0.827715873718262,-0.551196038722992,0.105210617184639,
- 0.411676079034805,0.904209733009338,0.113699696958065,-0.683923542499542,0.582984030246735,-0.438609540462494,-0.62043309211731,0.580979406833649,-0.526807010173798,0.429182469844818,0.902354657649994,-0.0394779592752457,0.612248003482819,-0.586030840873718,0.530773222446442,0.52555650472641,0.834673047065735,0.1646548807621,0.46059063076973,0.867915213108063,0.185955837368965,0.768129110336304,-0.228102624416351,0.598286688327789,0.827715873718262,-0.551196038722992,0.105210617184639,0.311735302209854,0.759660840034485,0.570733487606049,0.597025096416473,0.794268190860748,0.112690903246403,0.678603708744049,-0.564384877681732,0.47007092833519,0.827715873718262,-0.551196038722992,0.105210617184639,0.685355186462402,-0.596667528152466,0.41746398806572,0.831146419048309,-0.287882775068283,0.475730150938034,0.643188893795013,-0.57349044084549,0.507362484931946,0.978252291679382,0.0571961775422096,0.199377030134201,0.961469054222107,0.00568705424666405,0.274854451417923,0.0240804702043533,0.820173263549805,0.571608245372772,0.46059063076973,0.867915213108063,0.185955837368965,0.52555650472641,0.834673047065735,0.1646548807621,0.531669735908508,0.815546214580536,0.228499040007591,0.494397550821304,0.862573325634003,-0.107416898012161,0.429182469844818,0.902354657649994,-0.0394779592752457,0.311735302209854,0.759660840034485,0.570733487606049,0.513041734695435,0.80052375793457,0.309757798910141,0.411676079034805,0.904209733009338,0.113699696958065,0.208665996789932,0.952229380607605,0.222974970936775,-0.745419561862946,0.576781392097473,-0.334175139665604,-0.490799516439438,0.610832452774048,-0.621288597583771,-0.0197474975138903,0.902504563331604,0.430227518081665,0.0714512020349503,0.762784004211426,0.642693758010864,0.750064671039581,-0.531729161739349,0.393277406692505,0.667140603065491,-0.081709548830986,0.740437090396881,0.508644580841064,0.60394024848938,0.613626062870026,0.208665996789932,0.952229380607605,0.222974970936775,0.0714512020349503,0.762784004211426,0.642693758010864,0.508644580841064,0.60394024848938,0.613626062870026,
- -0.115572907030582,0.982166588306427,-0.148296236991882,0.750064671039581,-0.531729161739349,0.393277406692505,0.514906167984009,0.0402544885873795,0.856300830841064,0.457245230674744,-0.680813670158386,0.57220596075058,0.667140603065491,-0.081709548830986,0.740437090396881,0.388225525617599,0.920644342899323,0.0411691814661026,-0.777294218540192,0.593269824981689,-0.209391295909882,-0.593811869621277,0.60578578710556,-0.529538691043854,0.48805171251297,0.865505933761597,-0.112716883420944,0.492073506116867,0.818068385124207,0.297704219818115,0.388225525617599,0.920644342899323,0.0411691814661026,0.48805171251297,0.865505933761597,-0.112716883420944,0.531669735908508,0.815546214580536,0.228499040007591,0.531669735908508,0.815546214580536,0.228499040007591,0.643188893795013,-0.57349044084549,0.507362484931946,0.875486552715302,-0.483149230480194,-0.00950393173843622,0.492073506116867,0.818068385124207,0.297704219818115,0.643188893795013,-0.57349044084549,0.507362484931946,0.961469054222107,0.00568705424666405,0.274854451417923,0.777829051017761,0.0529624223709106,0.626240432262421,0.875486552715302,-0.483149230480194,-0.00950393173843622,-0.0197474975138903,0.902504563331604,0.430227518081665,-0.490799516439438,0.610832452774048,-0.621288597583771,-0.386358946561813,0.580626845359802,-0.716658353805542,0.323318034410477,0.942039012908936,0.0895999819040298,0.323318034410477,0.942039012908936,0.0895999819040298,0.434238702058792,0.82753324508667,0.355844706296921,0.364839166402817,0.835221111774445,0.411458641290665,-0.0197474975138903,0.902504563331604,0.430227518081665,0.434238702058792,0.82753324508667,0.355844706296921,0.161056935787201,-0.743154287338257,0.649447858333588,0.101759888231754,-0.490209072828293,0.86564427614212,0.364839166402817,0.835221111774445,0.411458641290665,0.161056935787201,-0.743154287338257,0.649447858333588,0.3263199031353,-0.567204356193542,0.756170988082886,0.101759888231754,-0.490209072828293,0.86564427614212,0.3263199031353,-0.567204356193542,0.756170988082886,0.808597385883331,-0.365091621875763,0.461387455463409,
- 0.84612900018692,0.0601838603615761,0.529569149017334,0.161056935787201,-0.743154287338257,0.649447858333588,0.904319703578949,0.118249490857124,0.410150110721588,0.808597385883331,-0.365091621875763,0.461387455463409,0.3263199031353,-0.567204356193542,0.756170988082886,0.643188893795013,-0.57349044084549,0.507362484931946,0.612248003482819,-0.586030840873718,0.530773222446442,0.685355186462402,-0.596667528152466,0.41746398806572,0.844934701919556,0.0531942024827003,0.532217800617218,0.978252291679382,0.0571961775422096,0.199377030134201,0.429182469844818,0.902354657649994,-0.0394779592752457,-0.62043309211731,0.580979406833649,-0.526807010173798,-0.660702526569366,0.593615770339966,-0.459447979927063,0.24626587331295,0.917753219604492,0.311580061912537,0.290403991937637,0.906295597553253,0.307073175907135,0.597025096416473,0.794268190860748,0.112690903246403,0.311735302209854,0.759660840034485,0.570733487606049,0.429182469844818,0.902354657649994,-0.0394779592752457,0.24626587331295,0.917753219604492,0.311580061912537,0.0240804702043533,0.820173263549805,0.571608245372772,-0.746513783931732,0.581846237182617,-0.322757065296173,-0.683923542499542,0.582984030246735,-0.438609540462494,0.411676079034805,0.904209733009338,0.113699696958065,0.411676079034805,0.904209733009338,0.113699696958065,0.513041734695435,0.80052375793457,0.309757798910141,0.46059063076973,0.867915213108063,0.185955837368965,0.0240804702043533,0.820173263549805,0.571608245372772,0.768129110336304,-0.228102624416351,0.598286688327789,0.46059063076973,0.867915213108063,0.185955837368965,0.513041734695435,0.80052375793457,0.309757798910141,0.831146419048309,-0.287882775068283,0.475730150938034,0.685355186462402,-0.596667528152466,0.41746398806572,0.612248003482819,-0.586030840873718,0.530773222446442,0.768129110336304,-0.228102624416351,0.598286688327789,0.825676262378693,-0.406282126903534,0.391399770975113,0.983141601085663,0.0211692582815886,0.181616827845573,0.678603708744049,-0.564384877681732,0.47007092833519,0.8688645362854,-0.221644937992096,0.442660301923752,
- 0.983141601085663,0.0211692582815886,0.181616827845573,0.844934701919556,0.0531942024827003,0.532217800617218,0.685355186462402,-0.596667528152466,0.41746398806572,0.827715873718262,-0.551196038722992,0.105210617184639,0.678603708744049,-0.564384877681732,0.47007092833519,-0.565692961215973,0.450260877609253,-0.690837681293488,-0.601744294166565,0.455482810735703,-0.65607875585556,-0.568484604358673,0.448442578315735,-0.689727902412415,-0.565863609313965,0.446215510368347,-0.693318247795105,-0.56240302324295,0.447655379772186,-0.695203244686127,-0.584550976753235,0.445756018161774,-0.677939295768738,-0.641049206256866,-0.0780012607574463,-0.7635258436203,-0.542136132717133,0.562477350234985,-0.624265730381012,-0.745419561862946,0.576781392097473,-0.334175139665604,-0.413364320993423,0.783355474472046,-0.464202910661697,0.682547986507416,0.557187020778656,0.472938597202301,0.540258467197418,-0.624198913574219,0.564354956150055,0.392954051494598,0.777064859867096,0.491688340902328,0.290594786405563,0.578960657119751,0.761813223361969,-0.73303085565567,0.551588356494904,-0.398015320301056,-0.78178197145462,0.451524198055267,-0.430049985647202,-0.771154642105103,0.515023827552795,-0.374260663986206,-0.744992136955261,0.577116847038269,-0.334548830986023,0.338738948106766,0.529960632324219,0.777430176734924,0.598621249198914,-0.560999512672424,0.57177996635437,0.803741693496704,-0.522637605667114,0.28434032201767,0.682547986507416,0.557187020778656,0.472938597202301,0.84746652841568,-0.481179893016815,0.224201738834381,0.338738948106766,0.529960632324219,0.777430176734924,0.744862854480743,0.55671089887619,0.36776676774025,0.727315247058868,-0.534907519817352,0.429984211921692,0.727315247058868,-0.534907519817352,0.429984211921692,0.744862854480743,0.55671089887619,0.36776676774025,0.676445126533508,0.562128067016602,0.475850939750671,0.429729998111725,-0.524310290813446,0.735140025615692,0.564077854156494,0.528792142868042,0.634188532829285,0.720414459705353,-0.545578420162201,0.428190648555756,0.718656778335571,-0.549065232276917,0.42668479681015,
- 0.661936819553375,0.551572203636169,0.507550716400146,0.902105152606964,-0.429680913686752,-0.0397577807307243,0.564077854156494,0.528792142868042,0.634188532829285,0.576810359954834,0.566312491893768,0.58871054649353,0.78367292881012,-0.563204765319824,0.262025505304337,0.78367292881012,-0.563204765319824,0.262025505304337,0.576810359954834,0.566312491893768,0.58871054649353,0.692192137241364,0.550898611545563,0.466241210699081,-0.220659017562866,-0.132321551442146,0.966333627700806,0.76071697473526,-0.552228271961212,0.341106504201889,0.692192137241364,0.550898611545563,0.466241210699081,0.673354208469391,0.543777048587799,0.500899791717529,0.763305187225342,-0.547910034656525,0.342286437749863,0.618780195713043,0.571092665195465,0.539411067962646,0.32314133644104,-0.47626268863678,0.817773580551147,0.603571057319641,-0.560542285442352,0.567004680633545,0.676445126533508,0.562128067016602,0.475850939750671,0.32314133644104,-0.47626268863678,0.817773580551147,0.618780195713043,0.571092665195465,0.539411067962646,0.661936819553375,0.551572203636169,0.507550716400146,0.0406514257192612,-0.36611333489418,0.929682016372681,0.64439582824707,0.609852910041809,0.46133878827095,0.661110877990723,0.599104583263397,0.451670527458191,0.661936819553375,0.551572203636169,0.507550716400146,0.618780195713043,0.571092665195465,0.539411067962646,0.338394552469254,0.592782974243164,0.730819761753082,0.676445126533508,0.562128067016602,0.475850939750671,0.744862854480743,0.55671089887619,0.36776676774025,0.727448403835297,0.588550627231598,0.352742195129395,0.338394552469254,0.592782974243164,0.730819761753082,0.64439582824707,0.609852910041809,0.46133878827095,0.618780195713043,0.571092665195465,0.539411067962646,0.676445126533508,0.562128067016602,0.475850939750671,0.727448403835297,0.588550627231598,0.352742195129395,0.744862854480743,0.55671089887619,0.36776676774025,0.338738948106766,0.529960632324219,0.777430176734924,0.613574802875519,0.612071216106415,0.498893558979034,0.661110877990723,0.599104583263397,0.451670527458191,0.598216354846954,0.590447843074799,0.541764259338379,
- 0.564077854156494,0.528792142868042,0.634188532829285,0.661936819553375,0.551572203636169,0.507550716400146,0.564077854156494,0.528792142868042,0.634188532829285,0.598216354846954,0.590447843074799,0.541764259338379,0.702540457248688,0.587955713272095,0.400930345058441,0.576810359954834,0.566312491893768,0.58871054649353,0.338738948106766,0.529960632324219,0.777430176734924,0.682547986507416,0.557187020778656,0.472938597202301,0.290594786405563,0.578960657119751,0.761813223361969,0.613574802875519,0.612071216106415,0.498893558979034,0.692192137241364,0.550898611545563,0.466241210699081,0.576810359954834,0.566312491893768,0.58871054649353,0.702540457248688,0.587955713272095,0.400930345058441,0.765044867992401,0.58251428604126,0.274560540914536,0.673354208469391,0.543777048587799,0.500899791717529,0.692192137241364,0.550898611545563,0.466241210699081,0.765044867992401,0.58251428604126,0.274560540914536,0.741653323173523,0.59295392036438,0.313617587089539,0.716263234615326,0.576623976230621,0.393029153347015,-0.777294218540192,0.593269824981689,-0.209391295909882,-0.386358946561813,0.580626845359802,-0.716658353805542,-0.404621303081512,0.550910294055939,-0.729917526245117,-0.644244015216827,0.564587771892548,-0.515936374664307,-0.777294218540192,0.593269824981689,-0.209391295909882,-0.644244015216827,0.564587771892548,-0.515936374664307,-0.664562523365021,0.564001381397247,-0.490162402391434,-0.593811869621277,0.60578578710556,-0.529538691043854,-0.386358946561813,0.580626845359802,-0.716658353805542,-0.490799516439438,0.610832452774048,-0.621288597583771,-0.717757880687714,0.540648877620697,-0.43877387046814,-0.404621303081512,0.550910294055939,-0.729917526245117,-0.643024146556854,0.597119331359863,-0.479550302028656,-0.699362874031067,0.549719393253326,-0.456837177276611,-0.776147902011871,0.533016383647919,-0.336879998445511,-0.746513783931732,0.581846237182617,-0.322757065296173,-0.776147902011871,0.533016383647919,-0.336879998445511,-0.761988759040833,0.556196510791779,-0.331690818071365,-0.683923542499542,0.582984030246735,-0.438609540462494,
- -0.746513783931732,0.581846237182617,-0.322757065296173,-0.542136132717133,0.562477350234985,-0.624265730381012,-0.717757880687714,0.540648877620697,-0.43877387046814,-0.490799516439438,0.610832452774048,-0.621288597583771,-0.745419561862946,0.576781392097473,-0.334175139665604,-0.761988759040833,0.556196510791779,-0.331690818071365,-0.683559715747833,0.545281231403351,-0.485195338726044,-0.62043309211731,0.580979406833649,-0.526807010173798,-0.683923542499542,0.582984030246735,-0.438609540462494,-0.593811869621277,0.60578578710556,-0.529538691043854,-0.664562523365021,0.564001381397247,-0.490162402391434,-0.699362874031067,0.549719393253326,-0.456837177276611,-0.643024146556854,0.597119331359863,-0.479550302028656,-0.683559715747833,0.545281231403351,-0.485195338726044,-0.73303085565567,0.551588356494904,-0.398015320301056,-0.744992136955261,0.577116847038269,-0.334548830986023,-0.660702526569366,0.593615770339966,-0.459447979927063,-0.62043309211731,0.580979406833649,-0.526807010173798,0.803741693496704,-0.522637605667114,0.28434032201767,0.540258467197418,-0.624198913574219,0.564354956150055,0.682547986507416,0.557187020778656,0.472938597202301,0.886335074901581,-0.448988616466522,-0.11322346329689,0.673354208469391,0.543777048587799,0.500899791717529,0.869234919548035,0.281818866729736,0.406212866306305,0.218839958310127,0.973642110824585,0.0642656683921814,0.425743103027344,0.903601050376892,-0.0474150106310844,0.519898355007172,0.785077333450317,0.336688727140427,0.942364931106567,-0.223613739013672,0.24888788163662,-0.822835683822632,0.51727306842804,-0.235308438539505,-0.521466076374054,0.765568852424622,-0.376798897981644,-0.386970162391663,0.902332186698914,-0.189870327711105,-0.822835683822632,0.51727306842804,-0.235308438539505,-0.386970162391663,0.902332186698914,-0.189870327711105,0.425743103027344,0.903601050376892,-0.0474150106310844,0.218839958310127,0.973642110824585,0.0642656683921814,-0.791344702243805,0.599470436573029,-0.120037592947483,-0.521466076374054,0.765568852424622,-0.376798897981644,
- -0.778020858764648,0.578734934329987,-0.244437128305435,0.560101568698883,0.827387630939484,0.0414244346320629,0.556977450847626,0.829895675182343,0.0323958098888397,0.602939426898956,-0.722594916820526,-0.33811342716217,0.725762903690338,-0.481295734643936,0.491551339626312,0.556977450847626,0.829895675182343,0.0323958098888397,0.560101568698883,0.827387630939484,0.0414244346320629,0.30856129527092,0.932687520980835,0.186772748827934,0.296256542205811,0.944878458976746,0.139416351914406,0.308101177215576,0.907205522060394,0.286446839570999,0.295822352170944,0.867789268493652,0.399288177490234,-0.801819205284119,0.592525601387024,-0.0774562582373619,-0.794823825359344,0.606715023517609,-0.0123239792883396,0.725762903690338,-0.481295734643936,0.491551339626312,0.602939426898956,-0.722594916820526,-0.33811342716217,0.963617980480194,0.0741772204637527,0.256784319877625,0.998141348361969,0.0313095301389694,0.0522838719189167,0.813543856143951,-0.566320836544037,0.132011920213699,0.812265336513519,-0.582625508308411,0.0277987569570541,0.499722361564636,0.837064683437347,0.222711250185966,0.551410913467407,0.817532300949097,0.166093170642853,0.787411212921143,-0.594986140727997,0.161167502403259,0.93426525592804,-0.287193477153778,0.211348712444305,0.97009688615799,-0.229490086436272,0.0790337696671486,-0.862330734729767,0.444876551628113,-0.241807043552399,-0.862844049930573,0.43567967414856,-0.256287693977356,-0.931598663330078,0.280107587575912,-0.231654435396194,-0.824469029903412,0.514705657958984,-0.235220909118652,-0.822835683822632,0.51727306842804,-0.235308438539505,-0.881209373474121,0.394542962312698,-0.260395705699921,0.295822352170944,0.867789268493652,0.399288177490234,0.308101177215576,0.907205522060394,0.286446839570999,0.551410913467407,0.817532300949097,0.166093170642853,-0.521466076374054,0.765568852424622,-0.376798897981644,-0.791344702243805,0.599470436573029,-0.120037592947483,0.40231916308403,0.91327029466629,-0.0638486668467522,-0.386970162391663,0.902332186698914,-0.189870327711105,-0.386970162391663,0.902332186698914,-0.189870327711105,
- 0.40231916308403,0.91327029466629,-0.0638486668467522,0.425743103027344,0.903601050376892,-0.0474150106310844,-0.521466076374054,0.765568852424622,-0.376798897981644,-0.822835683822632,0.51727306842804,-0.235308438539505,-0.824469029903412,0.514705657958984,-0.235220909118652,-0.778020858764648,0.578734934329987,-0.244437128305435,0.814791142940521,-0.566579580307007,0.122894898056984,0.942364931106567,-0.223613739013672,0.24888788163662,0.519898355007172,0.785077333450317,0.336688727140427,0.295822352170944,0.867789268493652,0.399288177490234,0.4049973487854,0.820212721824646,-0.404015213251114,-0.772057175636292,0.577788949012756,-0.264740943908691,-0.801819205284119,0.592525601387024,-0.0774562582373619,-0.626654148101807,0.779112994670868,-0.0169593244791031,-0.186420470476151,0.982434630393982,0.0083520133048296,0.316021203994751,0.947160005569458,0.0549413599073887,-0.750803291797638,0.606333613395691,-0.262019038200378,0.537845313549042,0.842881500720978,0.016534186899662,0.498267084360123,0.771384477615356,-0.395848363637924,0.801570057868958,-0.550084292888641,0.234292194247246,0.714083313941956,-0.444825559854507,-0.540569365024567,0.285634338855743,0.926458597183228,-0.24512754380703,0.316021203994751,0.947160005569458,0.0549413599073887,0.498267084360123,0.771384477615356,-0.395848363637924,0.537845313549042,0.842881500720978,0.016534186899662,0.714083313941956,-0.444825559854507,-0.540569365024567,0.801570057868958,-0.550084292888641,0.234292194247246,0.988339304924011,0.00197459873743355,-0.152255117893219,0.978372395038605,-0.0155323082581162,0.206267446279526,0.782168865203857,-0.544915795326233,-0.302123486995697,0.296256542205811,0.944878458976746,0.139416351914406,0.30856129527092,0.932687520980835,0.186772748827934,-0.747030794620514,0.569139063358307,-0.343548834323883,-0.773860216140747,0.585350334644318,0.241879254579544,0.93426525592804,-0.287193477153778,0.211348712444305,0.691047251224518,-0.541462361812592,0.478823840618134,0.6246457695961,0.768920600414276,-0.136304602026939,0.588637709617615,0.799857378005981,0.117191679775715,
- 0.380683690309525,0.904776692390442,0.190942734479904,0.279334992170334,0.892693221569061,0.353653520345688,-0.80909675359726,0.586402356624603,-0.0386643148958683,-0.801152110099792,0.582641541957855,-0.136690244078636,0.812265336513519,-0.582625508308411,0.0277987569570541,0.97009688615799,-0.229490086436272,0.0790337696671486,0.463203936815262,0.870331525802612,0.167228326201439,0.499722361564636,0.837064683437347,0.222711250185966,0.691047251224518,-0.541462361812592,0.478823840618134,0.814791142940521,-0.566579580307007,0.122894898056984,0.519898355007172,0.785077333450317,0.336688727140427,0.6246457695961,0.768920600414276,-0.136304602026939,0.691047251224518,-0.541462361812592,0.478823840618134,0.93426525592804,-0.287193477153778,0.211348712444305,0.787411212921143,-0.594986140727997,0.161167502403259,0.813543856143951,-0.566320836544037,0.132011920213699,0.952418625354767,0.0410245880484581,0.302019685506821,0.869689285755157,0.063842386007309,0.489453494548798,0.4049973487854,0.820212721824646,-0.404015213251114,0.295822352170944,0.867789268493652,0.399288177490234,0.551410913467407,0.817532300949097,0.166093170642853,0.499722361564636,0.837064683437347,0.222711250185966,0.463203936815262,0.870331525802612,0.167228326201439,0.279334992170334,0.892693221569061,0.353653520345688,0.380683690309525,0.904776692390442,0.190942734479904,0.588637709617615,0.799857378005981,0.117191679775715,0.6246457695961,0.768920600414276,-0.136304602026939,0.316021203994751,0.947160005569458,0.0549413599073887,0.285634338855743,0.926458597183228,-0.24512754380703,-0.788687288761139,0.59994649887085,0.13430044054985,-0.750803291797638,0.606333613395691,-0.262019038200378,0.498267084360123,0.771384477615356,-0.395848363637924,0.7953742146492,0.606064677238464,-0.00810258742421865,0.995708882808685,-0.0861696228384972,0.0337460413575172,0.801570057868958,-0.550084292888641,0.234292194247246,0.316021203994751,0.947160005569458,0.0549413599073887,-0.186420470476151,0.982434630393982,0.0083520133048296,0.7953742146492,0.606064677238464,-0.00810258742421865,
- 0.498267084360123,0.771384477615356,-0.395848363637924,0.801570057868958,-0.550084292888641,0.234292194247246,0.995708882808685,-0.0861696228384972,0.0337460413575172,0.73108696937561,-0.681996047496796,-0.0198348052799702,0.988339304924011,0.00197459873743355,-0.152255117893219,0.30856129527092,0.932687520980835,0.186772748827934,0.308101177215576,0.907205522060394,0.286446839570999,-0.794823825359344,0.606715023517609,-0.0123239792883396,-0.747030794620514,0.569139063358307,-0.343548834323883,0.560101568698883,0.827387630939484,0.0414244346320629,0.551410913467407,0.817532300949097,0.166093170642853,0.308101177215576,0.907205522060394,0.286446839570999,0.30856129527092,0.932687520980835,0.186772748827934,0.551410913467407,0.817532300949097,0.166093170642853,0.560101568698883,0.827387630939484,0.0414244346320629,0.725762903690338,-0.481295734643936,0.491551339626312,0.813543856143951,-0.566320836544037,0.132011920213699,0.813543856143951,-0.566320836544037,0.132011920213699,0.725762903690338,-0.481295734643936,0.491551339626312,0.998141348361969,0.0313095301389694,0.0522838719189167,0.952418625354767,0.0410245880484581,0.302019685506821,0.285634338855743,0.926458597183228,-0.24512754380703,0.296256542205811,0.944878458976746,0.139416351914406,-0.773860216140747,0.585350334644318,0.241879254579544,-0.788687288761139,0.59994649887085,0.13430044054985,0.296256542205811,0.944878458976746,0.139416351914406,0.285634338855743,0.926458597183228,-0.24512754380703,0.537845313549042,0.842881500720978,0.016534186899662,0.556977450847626,0.829895675182343,0.0323958098888397,0.556977450847626,0.829895675182343,0.0323958098888397,0.537845313549042,0.842881500720978,0.016534186899662,0.714083313941956,-0.444825559854507,-0.540569365024567,0.602939426898956,-0.722594916820526,-0.33811342716217,0.602939426898956,-0.722594916820526,-0.33811342716217,0.714083313941956,-0.444825559854507,-0.540569365024567,0.782168865203857,-0.544915795326233,-0.302123486995697,0.782168865203857,-0.544915795326233,-0.302123486995697,0.978372395038605,-0.0155323082581162,0.206267446279526,
- 0.907697916030884,-0.365325003862381,0.206451550126076,0.602939426898956,-0.722594916820526,-0.33811342716217,0.782168865203857,-0.544915795326233,-0.302123486995697,0.907697916030884,-0.365325003862381,0.206451550126076,0.963617980480194,0.0741772204637527,0.256784319877625,0.813543856143951,-0.566320836544037,0.132011920213699,0.869689285755157,0.063842386007309,0.489453494548798,0.984031081199646,0.0534059926867485,0.16979593038559,0.787411212921143,-0.594986140727997,0.161167502403259,0.812265336513519,-0.582625508308411,0.0277987569570541,0.279334992170334,0.892693221569061,0.353653520345688,0.40231916308403,0.91327029466629,-0.0638486668467522,-0.791344702243805,0.599470436573029,-0.120037592947483,-0.80909675359726,0.586402356624603,-0.0386643148958683,0.425743103027344,0.903601050376892,-0.0474150106310844,0.40231916308403,0.91327029466629,-0.0638486668467522,0.279334992170334,0.892693221569061,0.353653520345688,0.6246457695961,0.768920600414276,-0.136304602026939,0.519898355007172,0.785077333450317,0.336688727140427,0.4049973487854,0.820212721824646,-0.404015213251114,0.380683690309525,0.904776692390442,0.190942734479904,-0.801152110099792,0.582641541957855,-0.136690244078636,-0.772057175636292,0.577788949012756,-0.264740943908691,0.380683690309525,0.904776692390442,0.190942734479904,0.4049973487854,0.820212721824646,-0.404015213251114,0.463203936815262,0.870331525802612,0.167228326201439,0.588637709617615,0.799857378005981,0.117191679775715,0.97009688615799,-0.229490086436272,0.0790337696671486,0.93426525592804,-0.287193477153778,0.211348712444305,0.588637709617615,0.799857378005981,0.117191679775715,0.463203936815262,0.870331525802612,0.167228326201439,0.787411212921143,-0.594986140727997,0.161167502403259,0.97009688615799,-0.229490086436272,0.0790337696671486,0.812265336513519,-0.582625508308411,0.0277987569570541,-0.931598663330078,0.280107587575912,-0.231654435396194,-0.789099097251892,0.545079290866852,-0.28321573138237,-0.778020858764648,0.578734934329987,-0.244437128305435,-0.824469029903412,0.514705657958984,-0.235220909118652,
- 0.851792573928833,0.029224518686533,0.523063540458679,0.876862406730652,-0.404945820569992,0.259096741676331,0.942364931106567,-0.223613739013672,0.24888788163662,0.814791142940521,-0.566579580307007,0.122894898056984,0.984031081199646,0.0534059926867485,0.16979593038559,0.851792573928833,0.029224518686533,0.523063540458679,0.814791142940521,-0.566579580307007,0.122894898056984,0.691047251224518,-0.541462361812592,0.478823840618134,0.787411212921143,-0.594986140727997,0.161167502403259,-0.889617145061493,0.455371648073196,-0.0348999537527561,-0.892832458019257,0.45019868016243,0.0130923660472035,-0.895079910755157,0.445801675319672,-0.00963527150452137,-0.893907487392426,0.447746723890305,0.021267356351018,-0.894740700721741,0.446264892816544,0.0169319044798613,-0.893758535385132,0.448399633169174,0.0115498499944806,-0.219393968582153,0.973978519439697,-0.0568517558276653,-0.935144543647766,-0.226020887494087,-0.272799134254456,-0.611577987670898,0.790774583816528,0.0254547595977783,-0.372141897678375,0.897404432296753,-0.237014397978783,0.828625321388245,0.513959169387817,0.221869647502899,0.423733919858933,0.905351519584656,0.028077770024538,0.62227064371109,0.779884696006775,-0.0675202235579491,0.828625321388245,0.513959169387817,0.221869647502899,-0.219393968582153,0.973978519439697,-0.0568517558276653,-0.372141897678375,0.897404432296753,-0.237014397978783,0.423733919858933,0.905351519584656,0.028077770024538,0.761282801628113,0.599407613277435,0.247303739190102,0.794124245643616,0.581002295017242,0.178334340453148,0.62227064371109,0.779884696006775,-0.0675202235579491,-0.558002829551697,0.829446494579315,0.0255224034190178,-0.743065059185028,-0.474604159593582,0.471810698509216,-0.602334380149841,-0.722771346569061,-0.338813990354538,-0.557133615016937,0.829786539077759,0.0325034484267235,-0.557133615016937,0.829786539077759,0.0325034484267235,-0.296302795410156,0.944860577583313,0.139439389109612,-0.31491681933403,0.929611027240753,0.191443786025047,-0.558002829551697,0.829446494579315,0.0255224034190178,-0.318795621395111,0.920075953006744,0.227661043405533,
- 0.788379609584808,0.610840439796448,0.0730184689164162,0.797969937324524,0.595020294189453,0.095890149474144,-0.386362701654434,0.876869916915894,0.28604719042778,-0.743065059185028,-0.474604159593582,0.471810698509216,-0.998108506202698,-0.0237346421927214,0.0567104816436768,-0.963253498077393,0.0747558102011681,0.257981389760971,-0.602334380149841,-0.722771346569061,-0.338813990354538,-0.829275727272034,-0.558338105678558,0.0236734617501497,-0.558434426784515,0.827316284179688,0.0608184412121773,-0.524637997150421,0.850701212882996,0.0325942635536194,-0.794606685638428,-0.577094674110413,-0.188579440116882,-0.792195081710815,-0.594745695590973,-0.136764869093895,-0.933218657970428,-0.238282531499863,-0.268932104110718,-0.947256445884705,-0.282704651355743,-0.150941491127014,0.864081859588623,0.444480657577515,0.236219197511673,0.889786660671234,0.395151078701019,0.228332042694092,0.828625321388245,0.513959169387817,0.221869647502899,0.827595293521881,0.515287697315216,0.222631275653839,0.849534511566162,0.451477319002151,0.272872388362885,0.870753288269043,0.436051905155182,0.227260589599609,-0.386362701654434,0.876869916915894,0.28604719042778,-0.558434426784515,0.827316284179688,0.0608184412121773,-0.318795621395111,0.920075953006744,0.227661043405533,0.62227064371109,0.779884696006775,-0.0675202235579491,0.423733919858933,0.905351519584656,0.028077770024538,-0.356900870800018,0.907033681869507,-0.223409652709961,0.761282801628113,0.599407613277435,0.247303739190102,0.423733919858933,0.905351519584656,0.028077770024538,-0.372141897678375,0.897404432296753,-0.237014397978783,-0.356900870800018,0.907033681869507,-0.223409652709961,0.62227064371109,0.779884696006775,-0.0675202235579491,0.794124245643616,0.581002295017242,0.178334340453148,0.827595293521881,0.515287697315216,0.222631275653839,0.828625321388245,0.513959169387817,0.221869647502899,-0.783489763736725,-0.565165936946869,-0.25832411646843,-0.611577987670898,0.790774583816528,0.0254547595977783,-0.935144543647766,-0.226020887494087,-0.272799134254456,-0.386362701654434,0.876869916915894,0.28604719042778,
- 0.797969937324524,0.595020294189453,0.095890149474144,0.808772504329681,0.588121592998505,-0.000145956859341823,-0.284764528274536,0.840428531169891,-0.461073726415634,0.625495195388794,0.780042052268982,-0.0170336794108152,0.750666558742523,0.606594324111938,-0.26180762052536,-0.316158175468445,0.947112739086151,0.0549697317183018,0.186466261744499,0.9824258685112,0.00835591275244951,-0.537885367870331,0.842851758003235,0.0167422275990248,-0.713916778564453,-0.445071429014206,-0.54058700799942,-0.80130797624588,-0.55024129152298,0.23481959104538,-0.498304754495621,0.771389186382294,-0.395791739225388,-0.2857845723629,0.926428079605103,-0.245067894458771,-0.537885367870331,0.842851758003235,0.0167422275990248,-0.498304754495621,0.771389186382294,-0.395791739225388,-0.316158175468445,0.947112739086151,0.0549697317183018,-0.713916778564453,-0.445071429014206,-0.54058700799942,-0.781774878501892,-0.544892549514771,-0.303183287382126,-0.978420436382294,-0.0155788604170084,0.206035599112511,-0.988529980182648,0.00200053723528981,-0.151011735200882,-0.80130797624588,-0.55024129152298,0.23481959104538,-0.296302795410156,0.944860577583313,0.139439389109612,0.77370297908783,0.585564076900482,0.241864621639252,0.75624543428421,0.566215991973877,-0.327860414981842,-0.31491681933403,0.929611027240753,0.191443786025047,-0.947256445884705,-0.282704651355743,-0.150941491127014,-0.592175006866455,0.797107815742493,-0.118101924657822,-0.516664981842041,0.777838587760925,-0.357805103063583,-0.834278762340546,-0.54250156879425,0.0983418524265289,-0.416600227355957,0.908890724182129,0.0190253406763077,0.788709461688995,0.588179230690002,0.178836584091187,0.756646811962128,0.588598847389221,0.284670174121857,-0.419653236865997,0.889793038368225,0.179330825805664,-0.794606685638428,-0.577094674110413,-0.188579440116882,-0.524637997150421,0.850701212882996,0.0325942635536194,-0.477382719516754,0.878329277038574,-0.0253689456731081,-0.933218657970428,-0.238282531499863,-0.268932104110718,-0.834278762340546,-0.54250156879425,0.0983418524265289,
- -0.516664981842041,0.777838587760925,-0.357805103063583,-0.611577987670898,0.790774583816528,0.0254547595977783,-0.783489763736725,-0.565165936946869,-0.25832411646843,-0.834278762340546,-0.54250156879425,0.0983418524265289,-0.792195081710815,-0.594745695590973,-0.136764869093895,-0.947256445884705,-0.282704651355743,-0.150941491127014,-0.829275727272034,-0.558338105678558,0.0236734617501497,-0.997301042079926,-0.0489694587886333,0.0547055117785931,-0.975227296352386,-0.0383065119385719,0.2178635597229,-0.284764528274536,0.840428531169891,-0.461073726415634,-0.477382719516754,0.878329277038574,-0.0253689456731081,-0.524637997150421,0.850701212882996,0.0325942635536194,-0.558434426784515,0.827316284179688,0.0608184412121773,-0.386362701654434,0.876869916915894,0.28604719042778,-0.419653236865997,0.889793038368225,0.179330825805664,-0.516664981842041,0.777838587760925,-0.357805103063583,-0.592175006866455,0.797107815742493,-0.118101924657822,-0.416600227355957,0.908890724182129,0.0190253406763077,-0.316158175468445,0.947112739086151,0.0549697317183018,0.750666558742523,0.606594324111938,-0.26180762052536,0.788475632667542,0.600138783454895,0.134684160351753,-0.2857845723629,0.926428079605103,-0.245067894458771,-0.498304754495621,0.771389186382294,-0.395791739225388,-0.80130797624588,-0.55024129152298,0.23481959104538,-0.995793581008911,-0.0851412266492844,0.0338543280959129,-0.795624136924744,0.605736255645752,-0.00811469182372093,-0.316158175468445,0.947112739086151,0.0549697317183018,-0.498304754495621,0.771389186382294,-0.395791739225388,-0.795624136924744,0.605736255645752,-0.00811469182372093,0.186466261744499,0.9824258685112,0.00835591275244951,-0.80130797624588,-0.55024129152298,0.23481959104538,-0.988529980182648,0.00200053723528981,-0.151011735200882,-0.731438159942627,-0.681619465351105,-0.0198273118585348,-0.995793581008911,-0.0851412266492844,0.0338543280959129,-0.31491681933403,0.929611027240753,0.191443786025047,0.75624543428421,0.566215991973877,-0.327860414981842,0.788379609584808,0.610840439796448,0.0730184689164162,
- -0.318795621395111,0.920075953006744,0.227661043405533,-0.558002829551697,0.829446494579315,0.0255224034190178,-0.31491681933403,0.929611027240753,0.191443786025047,-0.318795621395111,0.920075953006744,0.227661043405533,-0.558434426784515,0.827316284179688,0.0608184412121773,-0.558434426784515,0.827316284179688,0.0608184412121773,-0.829275727272034,-0.558338105678558,0.0236734617501497,-0.743065059185028,-0.474604159593582,0.471810698509216,-0.558002829551697,0.829446494579315,0.0255224034190178,-0.829275727272034,-0.558338105678558,0.0236734617501497,-0.975227296352386,-0.0383065119385719,0.2178635597229,-0.998108506202698,-0.0237346421927214,0.0567104816436768,-0.743065059185028,-0.474604159593582,0.471810698509216,-0.2857845723629,0.926428079605103,-0.245067894458771,0.788475632667542,0.600138783454895,0.134684160351753,0.77370297908783,0.585564076900482,0.241864621639252,-0.296302795410156,0.944860577583313,0.139439389109612,-0.296302795410156,0.944860577583313,0.139439389109612,-0.557133615016937,0.829786539077759,0.0325034484267235,-0.537885367870331,0.842851758003235,0.0167422275990248,-0.2857845723629,0.926428079605103,-0.245067894458771,-0.557133615016937,0.829786539077759,0.0325034484267235,-0.602334380149841,-0.722771346569061,-0.338813990354538,-0.713916778564453,-0.445071429014206,-0.54058700799942,-0.537885367870331,0.842851758003235,0.0167422275990248,-0.602334380149841,-0.722771346569061,-0.338813990354538,-0.781774878501892,-0.544892549514771,-0.303183287382126,-0.713916778564453,-0.445071429014206,-0.54058700799942,-0.781774878501892,-0.544892549514771,-0.303183287382126,-0.907735228538513,-0.365291029214859,0.206347212195396,-0.978420436382294,-0.0155788604170084,0.206035599112511,-0.602334380149841,-0.722771346569061,-0.338813990354538,-0.963253498077393,0.0747558102011681,0.257981389760971,-0.907735228538513,-0.365291029214859,0.206347212195396,-0.781774878501892,-0.544892549514771,-0.303183287382126,-0.829275727272034,-0.558338105678558,0.0236734617501497,-0.794606685638428,-0.577094674110413,-0.188579440116882,
- -0.792195081710815,-0.594745695590973,-0.136764869093895,-0.976208627223969,-0.0544676519930363,-0.209881186485291,-0.997301042079926,-0.0489694587886333,0.0547055117785931,-0.419653236865997,0.889793038368225,0.179330825805664,0.756646811962128,0.588598847389221,0.284670174121857,0.761282801628113,0.599407613277435,0.247303739190102,-0.356900870800018,0.907033681869507,-0.223409652709961,-0.372141897678375,0.897404432296753,-0.237014397978783,-0.611577987670898,0.790774583816528,0.0254547595977783,-0.516664981842041,0.777838587760925,-0.357805103063583,-0.419653236865997,0.889793038368225,0.179330825805664,-0.356900870800018,0.907033681869507,-0.223409652709961,-0.284764528274536,0.840428531169891,-0.461073726415634,0.808772504329681,0.588121592998505,-0.000145956859341823,0.788709461688995,0.588179230690002,0.178836584091187,-0.416600227355957,0.908890724182129,0.0190253406763077,-0.416600227355957,0.908890724182129,0.0190253406763077,-0.592175006866455,0.797107815742493,-0.118101924657822,-0.477382719516754,0.878329277038574,-0.0253689456731081,-0.284764528274536,0.840428531169891,-0.461073726415634,-0.933218657970428,-0.238282531499863,-0.268932104110718,-0.477382719516754,0.878329277038574,-0.0253689456731081,-0.592175006866455,0.797107815742493,-0.118101924657822,-0.947256445884705,-0.282704651355743,-0.150941491127014,-0.792195081710815,-0.594745695590973,-0.136764869093895,-0.794606685638428,-0.577094674110413,-0.188579440116882,-0.933218657970428,-0.238282531499863,-0.268932104110718,-0.883688509464264,-0.406577855348587,-0.231924697756767,-0.997575104236603,-0.0584489665925503,-0.0377848744392395,-0.783489763736725,-0.565165936946869,-0.25832411646843,-0.935144543647766,-0.226020887494087,-0.272799134254456,-0.997575104236603,-0.0584489665925503,-0.0377848744392395,-0.976208627223969,-0.0544676519930363,-0.209881186485291,-0.792195081710815,-0.594745695590973,-0.136764869093895,-0.834278762340546,-0.54250156879425,0.0983418524265289,-0.783489763736725,-0.565165936946869,-0.25832411646843,0.892733216285706,0.450395166873932,0.0131023051217198,
- 0.889527559280396,0.455541789531708,-0.0349620319902897,0.89365541934967,0.44860514998436,0.0115480506792665,0.894667685031891,0.4464111328125,0.0169378481805325,0.893872678279877,0.447815656661987,0.0212810635566711,0.89499431848526,0.445973068475723,-0.00965182483196259,0.997061312198639,-0.0763857141137123,0.00583088304847479,0.826377868652344,0.561168968677521,0.0467881597578526,0.750666558742523,0.606594324111938,-0.26180762052536,0.625495195388794,0.780042052268982,-0.0170336794108152,-0.820403933525085,0.540179371833801,0.187466204166412,-0.78012490272522,-0.623790442943573,0.047862745821476,-0.626654148101807,0.779112994670868,-0.0169593244791031,-0.750803291797638,0.606333613395691,-0.262019038200378,0.807217538356781,0.555910289287567,0.198403149843216,0.849534511566162,0.451477319002151,0.272872388362885,0.827595293521881,0.515287697315216,0.222631275653839,0.794124245643616,0.581002295017242,0.178334340453148,-0.768486261367798,0.534022629261017,-0.352489143610001,-0.826434075832367,-0.562888860702515,-0.0127657894045115,-0.748583972454071,-0.555954158306122,0.36129903793335,-0.820403933525085,0.540179371833801,0.187466204166412,-0.735905051231384,-0.514773845672607,0.439831495285034,-0.768486261367798,0.534022629261017,-0.352489143610001,-0.797993004322052,0.554388642311096,0.236348420381546,-0.82388174533844,-0.53850930929184,0.176711037755013,-0.82388174533844,-0.53850930929184,0.176711037755013,-0.797993004322052,0.554388642311096,0.236348420381546,-0.826026439666748,0.559348225593567,0.0693539679050446,-0.791605412960052,-0.547740697860718,-0.270815640687943,-0.785244107246399,0.516208171844482,-0.341937065124512,-0.835735559463501,-0.545089662075043,-0.0665094181895256,-0.834322929382324,-0.547282993793488,-0.0662313774228096,-0.815310597419739,0.541951894760132,-0.203854978084564,-0.808791637420654,-0.456664353609085,0.370558887720108,-0.785244107246399,0.516208171844482,-0.341937065124512,-0.745100200176239,0.563814342021942,-0.356285125017166,-0.82576847076416,-0.563938677310944,0.00892374571412802,
- -0.82576847076416,-0.563938677310944,0.00892374571412802,-0.745100200176239,0.563814342021942,-0.356285125017166,-0.77867591381073,0.550368130207062,-0.301262199878693,-0.0693306401371956,-0.188747256994247,-0.979575276374817,-0.829857528209686,-0.550813138484955,-0.0891146138310432,-0.77867591381073,0.550368130207062,-0.301262199878693,-0.789099097251892,0.545079290866852,-0.28321573138237,-0.833632290363312,-0.544944107532501,-0.0899627730250359,-0.82403701543808,0.556140303611755,-0.108032181859016,-0.756166815757751,-0.528436601161957,-0.385962098836899,-0.827753365039825,-0.561083912849426,-0.00303026009351015,-0.826026439666748,0.559348225593567,0.0693539679050446,-0.756166815757751,-0.528436601161957,-0.385962098836899,-0.82403701543808,0.556140303611755,-0.108032181859016,-0.815310597419739,0.541951894760132,-0.203854978084564,-0.447009652853012,-0.368783295154572,-0.814973175525665,-0.794823825359344,0.606715023517609,-0.0123239792883396,-0.801819205284119,0.592525601387024,-0.0774562582373619,-0.815310597419739,0.541951894760132,-0.203854978084564,-0.82403701543808,0.556140303611755,-0.108032181859016,-0.747030794620514,0.569139063358307,-0.343548834323883,-0.826026439666748,0.559348225593567,0.0693539679050446,-0.797993004322052,0.554388642311096,0.236348420381546,-0.773860216140747,0.585350334644318,0.241879254579544,-0.747030794620514,0.569139063358307,-0.343548834323883,-0.794823825359344,0.606715023517609,-0.0123239792883396,-0.82403701543808,0.556140303611755,-0.108032181859016,-0.826026439666748,0.559348225593567,0.0693539679050446,-0.773860216140747,0.585350334644318,0.241879254579544,-0.797993004322052,0.554388642311096,0.236348420381546,-0.768486261367798,0.534022629261017,-0.352489143610001,-0.788687288761139,0.59994649887085,0.13430044054985,-0.801819205284119,0.592525601387024,-0.0774562582373619,-0.772057175636292,0.577788949012756,-0.264740943908691,-0.785244107246399,0.516208171844482,-0.341937065124512,-0.815310597419739,0.541951894760132,-0.203854978084564,-0.785244107246399,0.516208171844482,-0.341937065124512,
- -0.772057175636292,0.577788949012756,-0.264740943908691,-0.801152110099792,0.582641541957855,-0.136690244078636,-0.745100200176239,0.563814342021942,-0.356285125017166,-0.768486261367798,0.534022629261017,-0.352489143610001,-0.820403933525085,0.540179371833801,0.187466204166412,-0.750803291797638,0.606333613395691,-0.262019038200378,-0.788687288761139,0.59994649887085,0.13430044054985,-0.77867591381073,0.550368130207062,-0.301262199878693,-0.745100200176239,0.563814342021942,-0.356285125017166,-0.801152110099792,0.582641541957855,-0.136690244078636,-0.80909675359726,0.586402356624603,-0.0386643148958683,-0.789099097251892,0.545079290866852,-0.28321573138237,-0.77867591381073,0.550368130207062,-0.301262199878693,-0.80909675359726,0.586402356624603,-0.0386643148958683,-0.791344702243805,0.599470436573029,-0.120037592947483,-0.778020858764648,0.578734934329987,-0.244437128305435,0.75624543428421,0.566215991973877,-0.327860414981842,0.77370297908783,0.585564076900482,0.241864621639252,0.797616839408875,0.554557979106903,0.237219244241714,0.827216327190399,0.557765364646912,-0.067904494702816,0.75624543428421,0.566215991973877,-0.327860414981842,0.827216327190399,0.557765364646912,-0.067904494702816,0.82468855381012,0.565475523471832,0.0112345404922962,0.788379609584808,0.610840439796448,0.0730184689164162,0.77370297908783,0.585564076900482,0.241864621639252,0.788475632667542,0.600138783454895,0.134684160351753,0.789484918117523,0.5464768409729,-0.279422283172607,0.797616839408875,0.554557979106903,0.237219244241714,0.797969937324524,0.595020294189453,0.095890149474144,0.835545063018799,0.546826064586639,0.0533457286655903,0.844043731689453,0.535767376422882,-0.0233177971094847,0.808772504329681,0.588121592998505,-0.000145956859341823,0.844043731689453,0.535767376422882,-0.0233177971094847,0.827627420425415,0.558194577693939,0.058751467615366,0.788709461688995,0.588179230690002,0.178836584091187,0.808772504329681,0.588121592998505,-0.000145956859341823,0.826377868652344,0.561168968677521,0.0467881597578526,0.789484918117523,0.5464768409729,-0.279422283172607,
- 0.788475632667542,0.600138783454895,0.134684160351753,0.750666558742523,0.606594324111938,-0.26180762052536,0.827627420425415,0.558194577693939,0.058751467615366,0.794182658195496,0.551939964294434,0.254236727952957,0.756646811962128,0.588598847389221,0.284670174121857,0.788709461688995,0.588179230690002,0.178836584091187,0.788379609584808,0.610840439796448,0.0730184689164162,0.82468855381012,0.565475523471832,0.0112345404922962,0.835545063018799,0.546826064586639,0.0533457286655903,0.797969937324524,0.595020294189453,0.095890149474144,0.794182658195496,0.551939964294434,0.254236727952957,0.807217538356781,0.555910289287567,0.198403149843216,0.794124245643616,0.581002295017242,0.178334340453148,0.761282801628113,0.599407613277435,0.247303739190102,0.756646811962128,0.588598847389221,0.284670174121857,-0.748583972454071,-0.555954158306122,0.36129903793335,-0.78012490272522,-0.623790442943573,0.047862745821476,-0.820403933525085,0.540179371833801,0.187466204166412,-0.843843102455139,-0.457299441099167,0.280724376440048,-0.789099097251892,0.545079290866852,-0.28321573138237,-0.931598663330078,0.280107587575912,-0.231654435396194,0.0174725353717804,0.97386234998703,0.226466372609138,0.196446791291237,0.901381850242615,0.385901063680649,-0.131292760372162,0.78667289018631,0.603248000144959,0.101680710911751,-0.221095815300941,0.969936907291412,-0.0716354474425316,0.51811695098877,-0.852304637432098,0.167251005768776,0.766100585460663,-0.620577991008759,0.0400232225656509,0.902368068695068,-0.429103851318359,-0.0716354474425316,0.51811695098877,-0.852304637432098,0.0400232225656509,0.902368068695068,-0.429103851318359,0.196446791291237,0.901381850242615,0.385901063680649,0.0174725353717804,0.97386234998703,0.226466372609138,-0.173974603414536,0.59853458404541,-0.781977832317352,0.167251005768776,0.766100585460663,-0.620577991008759,-0.0476125180721283,0.57769638299942,-0.81486189365387,0.128122463822365,0.82025820016861,0.557459533214569,0.19254158437252,0.827632427215576,0.527211844921112,0.557513356208801,-0.736465156078339,0.383142232894897,
- -0.298523545265198,-0.477328181266785,0.826463341712952,0.19254158437252,0.827632427215576,0.527211844921112,0.128122463822365,0.82025820016861,0.557459533214569,-0.0713433474302292,0.926234006881714,0.370136022567749,-0.0185144394636154,0.942796945571899,0.33285328745842,-0.259673565626144,0.871863603591919,0.415239214897156,-0.253621697425842,0.875386118888855,0.411552131175995,-0.207908973097801,0.592135965824127,-0.778555631637573,-0.277993083000183,0.603216350078583,-0.747562646865845,-0.298523545265198,-0.477328181266785,0.826463341712952,0.557513356208801,-0.736465156078339,0.383142232894897,0.114758588373661,0.108549989759922,0.987444877624512,0.330061793327332,0.0584578961133957,0.942147612571716,0.191308230161667,-0.570277452468872,0.798864722251892,0.261932492256165,-0.584114551544189,0.768245816230774,-0.0155332908034325,0.840399742126465,0.541744410991669,0.0546989962458611,0.820865094661713,0.568496823310852,0.133391469717026,-0.593987464904785,0.793338298797607,0.149086683988571,-0.287667572498322,0.946055293083191,0.285299211740494,-0.229333192110062,0.930596947669983,-0.079645924270153,0.444887846708298,-0.892037808895111,-0.0661548227071762,0.435969054698944,-0.897526979446411,-0.11388223618269,0.280714839696884,-0.953011035919189,-0.0723505169153214,0.51519513130188,-0.854013800621033,-0.0716354474425316,0.51811695098877,-0.852304637432098,-0.068890392780304,0.395101636648178,-0.916050732135773,-0.253621697425842,0.875386118888855,0.411552131175995,-0.259673565626144,0.871863603591919,0.415239214897156,0.0546989962458611,0.820865094661713,0.568496823310852,0.167251005768776,0.766100585460663,-0.620577991008759,-0.173974603414536,0.59853458404541,-0.781977832317352,0.196994930505753,0.914224565029144,0.354099810123444,0.0400232225656509,0.902368068695068,-0.429103851318359,0.0400232225656509,0.902368068695068,-0.429103851318359,0.196994930505753,0.914224565029144,0.354099810123444,0.196446791291237,0.901381850242615,0.385901063680649,0.167251005768776,0.766100585460663,-0.620577991008759,-0.0716354474425316,0.51811695098877,-0.852304637432098,
- -0.0723505169153214,0.51519513130188,-0.854013800621033,-0.0476125180721283,0.57769638299942,-0.81486189365387,0.179834023118019,-0.567012846469879,0.803838491439819,0.101680710911751,-0.221095815300941,0.969936907291412,-0.131292760372162,0.78667289018631,0.603248000144959,-0.253621697425842,0.875386118888855,0.411552131175995,0.533725619316101,0.813705325126648,0.230261921882629,-0.0318983942270279,0.57423985004425,-0.818065524101257,-0.207908973097801,0.592135965824127,-0.778555631637573,-0.291798412799835,0.781940400600433,-0.550838470458984,-0.0987596213817596,0.982219159603119,-0.159662336111069,0.10199436545372,0.948769867420197,0.299053341150284,-0.0918127745389938,0.599503457546234,-0.795088708400726,0.231837958097458,0.839527606964111,0.491370260715485,0.602485001087189,0.756133198738098,0.255488842725754,0.135133445262909,-0.547365188598633,0.825911819934845,0.796985328197479,-0.457403063774109,0.394457787275314,0.359140157699585,0.922489285469055,0.141534224152565,0.10199436545372,0.948769867420197,0.299053341150284,0.602485001087189,0.756133198738098,0.255488842725754,0.231837958097458,0.839527606964111,0.491370260715485,0.796985328197479,-0.457403063774109,0.394457787275314,0.135133445262909,-0.547365188598633,0.825911819934845,0.625680208206177,0.0502966642379761,0.778456568717957,0.225371897220612,0.0396924056112766,0.973463892936707,0.607087433338165,-0.551729500293732,0.571873724460602,-0.0185144394636154,0.942796945571899,0.33285328745842,-0.0713433474302292,0.926234006881714,0.370136022567749,0.0701928287744522,0.580973207950592,-0.810890316963196,-0.544381558895111,0.580910921096802,-0.605137348175049,0.149086683988571,-0.287667572498322,0.946055293083191,-0.194864928722382,-0.543200075626373,0.816677033901215,0.349726945161819,0.773085474967957,0.529178738594055,0.10908205807209,0.79985499382019,0.590197563171387,-0.0363282077014446,0.904900848865509,0.424069344997406,-0.234855324029922,0.892973303794861,0.38398140668869,-0.261241108179092,0.587674498558044,-0.765762329101563,-0.168651700019836,0.582652926445007,-0.795029640197754,
- 0.261932492256165,-0.584114551544189,0.768245816230774,0.285299211740494,-0.229333192110062,0.930596947669983,0.0190456844866276,0.871252119541168,0.490466207265854,-0.0155332908034325,0.840399742126465,0.541744410991669,-0.194864928722382,-0.543200075626373,0.816677033901215,0.179834023118019,-0.567012846469879,0.803838491439819,-0.131292760372162,0.78667289018631,0.603248000144959,0.349726945161819,0.773085474967957,0.529178738594055,-0.194864928722382,-0.543200075626373,0.816677033901215,0.149086683988571,-0.287667572498322,0.946055293083191,0.133391469717026,-0.593987464904785,0.793338298797607,0.191308230161667,-0.570277452468872,0.798864722251892,-0.0890877321362495,0.0267670303583145,0.995664119720459,-0.146141648292542,0.0683316960930824,0.986900866031647,0.533725619316101,0.813705325126648,0.230261921882629,-0.253621697425842,0.875386118888855,0.411552131175995,0.0546989962458611,0.820865094661713,0.568496823310852,-0.0155332908034325,0.840399742126465,0.541744410991669,0.0190456844866276,0.871252119541168,0.490466207265854,-0.234855324029922,0.892973303794861,0.38398140668869,-0.0363282077014446,0.904900848865509,0.424069344997406,0.10908205807209,0.79985499382019,0.590197563171387,0.349726945161819,0.773085474967957,0.529178738594055,0.10199436545372,0.948769867420197,0.299053341150284,0.359140157699585,0.922489285469055,0.141534224152565,-0.457361668348312,0.603020966053009,-0.653594791889191,-0.0918127745389938,0.599503457546234,-0.795088708400726,0.602485001087189,0.756133198738098,0.255488842725754,0.398156493902206,0.604048430919647,0.690360069274902,0.461000591516495,-0.0830812677741051,0.883502125740051,0.135133445262909,-0.547365188598633,0.825911819934845,0.10199436545372,0.948769867420197,0.299053341150284,-0.0987596213817596,0.982219159603119,-0.159662336111069,0.398156493902206,0.604048430919647,0.690360069274902,0.602485001087189,0.756133198738098,0.255488842725754,0.135133445262909,-0.547365188598633,0.825911819934845,0.461000591516495,-0.0830812677741051,0.883502125740051,0.377482056617737,-0.681400656700134,0.627057075500488,
- 0.625680208206177,0.0502966642379761,0.778456568717957,-0.0713433474302292,0.926234006881714,0.370136022567749,-0.259673565626144,0.871863603591919,0.415239214897156,-0.277993083000183,0.603216350078583,-0.747562646865845,0.0701928287744522,0.580973207950592,-0.810890316963196,0.128122463822365,0.82025820016861,0.557459533214569,0.0546989962458611,0.820865094661713,0.568496823310852,-0.259673565626144,0.871863603591919,0.415239214897156,-0.0713433474302292,0.926234006881714,0.370136022567749,0.0546989962458611,0.820865094661713,0.568496823310852,0.128122463822365,0.82025820016861,0.557459533214569,-0.298523545265198,-0.477328181266785,0.826463341712952,0.191308230161667,-0.570277452468872,0.798864722251892,0.191308230161667,-0.570277452468872,0.798864722251892,-0.298523545265198,-0.477328181266785,0.826463341712952,0.330061793327332,0.0584578961133957,0.942147612571716,-0.0890877321362495,0.0267670303583145,0.995664119720459,0.359140157699585,0.922489285469055,0.141534224152565,-0.0185144394636154,0.942796945571899,0.33285328745842,-0.544381558895111,0.580910921096802,-0.605137348175049,-0.457361668348312,0.603020966053009,-0.653594791889191,-0.0185144394636154,0.942796945571899,0.33285328745842,0.359140157699585,0.922489285469055,0.141534224152565,0.231837958097458,0.839527606964111,0.491370260715485,0.19254158437252,0.827632427215576,0.527211844921112,0.19254158437252,0.827632427215576,0.527211844921112,0.231837958097458,0.839527606964111,0.491370260715485,0.796985328197479,-0.457403063774109,0.394457787275314,0.557513356208801,-0.736465156078339,0.383142232894897,0.557513356208801,-0.736465156078339,0.383142232894897,0.796985328197479,-0.457403063774109,0.394457787275314,0.607087433338165,-0.551729500293732,0.571873724460602,0.607087433338165,-0.551729500293732,0.571873724460602,0.225371897220612,0.0396924056112766,0.973463892936707,0.167860478162766,-0.358805567026138,0.918194651603699,0.557513356208801,-0.736465156078339,0.383142232894897,0.607087433338165,-0.551729500293732,0.571873724460602,0.167860478162766,-0.358805567026138,0.918194651603699,
- 0.114758588373661,0.108549989759922,0.987444877624512,0.191308230161667,-0.570277452468872,0.798864722251892,-0.146141648292542,0.0683316960930824,0.986900866031647,0.197945103049278,0.0526513531804085,0.978798091411591,0.133391469717026,-0.593987464904785,0.793338298797607,0.261932492256165,-0.584114551544189,0.768245816230774,-0.234855324029922,0.892973303794861,0.38398140668869,0.196994930505753,0.914224565029144,0.354099810123444,-0.173974603414536,0.59853458404541,-0.781977832317352,-0.261241108179092,0.587674498558044,-0.765762329101563,0.196446791291237,0.901381850242615,0.385901063680649,0.196994930505753,0.914224565029144,0.354099810123444,-0.234855324029922,0.892973303794861,0.38398140668869,0.349726945161819,0.773085474967957,0.529178738594055,-0.131292760372162,0.78667289018631,0.603248000144959,0.533725619316101,0.813705325126648,0.230261921882629,-0.0363282077014446,0.904900848865509,0.424069344997406,-0.168651700019836,0.582652926445007,-0.795029640197754,-0.0318983942270279,0.57423985004425,-0.818065524101257,-0.0363282077014446,0.904900848865509,0.424069344997406,0.533725619316101,0.813705325126648,0.230261921882629,0.0190456844866276,0.871252119541168,0.490466207265854,0.10908205807209,0.79985499382019,0.590197563171387,0.285299211740494,-0.229333192110062,0.930596947669983,0.149086683988571,-0.287667572498322,0.946055293083191,0.10908205807209,0.79985499382019,0.590197563171387,0.0190456844866276,0.871252119541168,0.490466207265854,0.133391469717026,-0.593987464904785,0.793338298797607,0.285299211740494,-0.229333192110062,0.930596947669983,0.261932492256165,-0.584114551544189,0.768245816230774,-0.11388223618269,0.280714839696884,-0.953011035919189,-0.0174802206456661,0.545375168323517,-0.838009834289551,-0.0476125180721283,0.57769638299942,-0.81486189365387,-0.0723505169153214,0.51519513130188,-0.854013800621033,-0.1868976354599,0.033680934458971,0.981801867485046,0.068609707057476,-0.403805762529373,0.912268459796906,0.101680710911751,-0.221095815300941,0.969936907291412,0.179834023118019,-0.567012846469879,0.803838491439819,
- 0.197945103049278,0.0526513531804085,0.978798091411591,-0.1868976354599,0.033680934458971,0.981801867485046,0.179834023118019,-0.567012846469879,0.803838491439819,-0.194864928722382,-0.543200075626373,0.816677033901215,0.133391469717026,-0.593987464904785,0.793338298797607,-0.404285401105881,0.455353379249573,-0.793225467205048,-0.450980722904205,0.45024037361145,-0.770649075508118,-0.43171027302742,0.445788979530334,-0.78415459394455,-0.456194311380386,0.447602570056915,-0.769115507602692,-0.453122019767761,0.446226000785828,-0.771727085113525,-0.44877690076828,0.448454231023788,-0.772973597049713,-0.0246679726988077,0.973998546600342,-0.225207224488258,-0.0762953385710716,-0.224927350878716,-0.971383988857269,-0.24448524415493,0.791670203208923,-0.559897541999817,0.0891680866479874,0.891652226448059,-0.443852990865707,0.0859712585806847,0.518795371055603,0.850564658641815,0.120686255395412,0.906463980674744,0.404670208692551,0.277266532182693,0.783255159854889,0.556448400020599,0.0859712585806847,0.518795371055603,0.850564658641815,-0.0246679726988077,0.973998546600342,-0.225207224488258,0.0891680866479874,0.891652226448059,-0.443852990865707,0.120686255395412,0.906463980674744,0.404670208692551,0.0435652025043964,0.598122477531433,0.800219833850861,0.116121292114258,0.579061329364777,0.806971967220306,0.277266532182693,0.783255159854889,0.556448400020599,-0.272823840379715,0.824733793735504,-0.495359838008881,-0.761953711509705,-0.469635754823685,-0.445946961641312,0.0413821823894978,-0.709526479244232,-0.703462719917297,-0.249808922410011,0.831940054893494,-0.495450556278229,-0.249808922410011,0.831940054893494,-0.495450556278229,-0.236240386962891,0.946655929088593,-0.219164848327637,-0.290512502193451,0.927312612533569,-0.235995665192604,-0.272823840379715,0.824733793735504,-0.495359838008881,-0.404107421636581,0.897398412227631,-0.177124843001366,0.21612611413002,0.608420789241791,0.763618886470795,0.201927065849304,0.593806743621826,0.778857588768005,-0.392925977706909,0.882979094982147,-0.25682133436203,-0.761953711509705,-0.469635754823685,-0.445946961641312,
- -0.405001193284988,-0.0579946860671043,-0.912475109100342,-0.591931283473969,0.0378794819116592,-0.805097877979279,0.0413821823894978,-0.709526479244232,-0.703462719917297,-0.300653487443924,-0.560216903686523,-0.771857798099518,-0.254818081855774,0.830159187316895,-0.49588668346405,-0.214452251791954,0.851460695266724,-0.478565692901611,-0.119908094406128,-0.579345941543579,-0.806213617324829,-0.163499653339386,-0.594400823116302,-0.787372529506683,-0.0951245054602623,-0.238279283046722,-0.966526985168457,-0.209492921829224,-0.282666951417923,-0.936062097549438,0.0854442864656448,0.444821149110794,0.891534328460693,0.102002985775471,0.395205855369568,0.912911713123322,0.0859712585806847,0.518795371055603,0.850564658641815,0.0852796733379364,0.515049040317535,0.85290789604187,0.0459723323583603,0.451412230730057,0.891130566596985,0.0962458997964859,0.436165004968643,0.894704818725586,-0.392925977706909,0.882979094982147,-0.25682133436203,-0.254818081855774,0.830159187316895,-0.49588668346405,-0.404107421636581,0.897398412227631,-0.177124843001366,0.277266532182693,0.783255159854889,0.556448400020599,0.120686255395412,0.906463980674744,0.404670208692551,0.0748508870601654,0.905038893222809,-0.418690890073776,0.0435652025043964,0.598122477531433,0.800219833850861,0.120686255395412,0.906463980674744,0.404670208692551,0.0891680866479874,0.891652226448059,-0.443852990865707,0.0748508870601654,0.905038893222809,-0.418690890073776,0.277266532182693,0.783255159854889,0.556448400020599,0.116121292114258,0.579061329364777,0.806971967220306,0.0852796733379364,0.515049040317535,0.85290789604187,0.0859712585806847,0.518795371055603,0.850564658641815,-0.0409794598817825,-0.564941704273224,-0.824112713336945,-0.24448524415493,0.791670203208923,-0.559897541999817,-0.0762953385710716,-0.224927350878716,-0.971383988857269,-0.392925977706909,0.882979094982147,-0.25682133436203,0.201927065849304,0.593806743621826,0.778857588768005,0.298933923244476,0.584733843803406,0.754138469696045,0.331514477729797,0.836851418018341,-0.435635030269623,
- 0.324471861124039,0.776893496513367,0.539587318897247,0.626908898353577,0.59228128194809,0.506150424480438,-0.176811069250107,0.94866144657135,-0.262258291244507,0.0830727145075798,0.982647716999054,0.165838927030563,-0.236586436629295,0.845401406288147,-0.478877276182175,0.163291990756989,-0.454586118459702,-0.875606775283813,-0.570398807525635,-0.544482886791229,-0.614966452121735,0.118659414350986,0.778027653694153,-0.616922318935394,0.166040524840355,0.902824401855469,-0.396659523248672,-0.236586436629295,0.845401406288147,-0.478877276182175,0.118659414350986,0.778027653694153,-0.616922318935394,-0.176811069250107,0.94866144657135,-0.262258291244507,0.163291990756989,-0.454586118459702,-0.875606775283813,-0.0633759200572968,-0.549430787563324,-0.833132266998291,-0.603172063827515,-0.0608696639537811,-0.795285165309906,-0.359987676143646,-0.0540435239672661,-0.931390523910522,-0.570398807525635,-0.544482886791229,-0.614966452121735,-0.236240386962891,0.946655929088593,-0.219164848327637,0.0983937233686447,0.589259445667267,0.801930248737335,0.585592210292816,0.579814374446869,0.56647777557373,-0.290512502193451,0.927312612533569,-0.235995665192604,-0.209492921829224,-0.282666951417923,-0.936062097549438,-0.109875708818436,0.797218799591064,-0.593607306480408,0.141654521226883,0.780404925346375,-0.609017372131348,-0.395642131567001,-0.543110013008118,-0.740607082843781,-0.171355172991753,0.908963441848755,-0.38003021478653,0.125450998544693,0.588197529315948,0.798927903175354,-0.00786686316132545,0.588356256484985,0.808563590049744,-0.326039373874664,0.888153851032257,-0.323853522539139,-0.119908094406128,-0.579345941543579,-0.806213617324829,-0.214452251791954,0.851460695266724,-0.478565692901611,-0.1495271474123,0.877521991729736,-0.455627948045731,-0.0951245054602623,-0.238279283046722,-0.966526985168457,-0.395642131567001,-0.543110013008118,-0.740607082843781,0.141654521226883,0.780404925346375,-0.609017372131348,-0.24448524415493,0.791670203208923,-0.559897541999817,-0.0409794598817825,-0.564941704273224,-0.824112713336945,
- -0.395642131567001,-0.543110013008118,-0.740607082843781,-0.163499653339386,-0.594400823116302,-0.787372529506683,-0.209492921829224,-0.282666951417923,-0.936062097549438,-0.300653487443924,-0.560216903686523,-0.771857798099518,-0.410243600606918,-0.0421173237264156,-0.911002933979034,-0.639427304267883,-0.0751667246222496,-0.765168488025665,0.331514477729797,0.836851418018341,-0.435635030269623,-0.1495271474123,0.877521991729736,-0.455627948045731,-0.214452251791954,0.851460695266724,-0.478565692901611,-0.254818081855774,0.830159187316895,-0.49588668346405,-0.392925977706909,0.882979094982147,-0.25682133436203,-0.326039373874664,0.888153851032257,-0.323853522539139,0.141654521226883,0.780404925346375,-0.609017372131348,-0.109875708818436,0.797218799591064,-0.593607306480408,-0.171355172991753,0.908963441848755,-0.38003021478653,-0.176811069250107,0.94866144657135,-0.262258291244507,0.626908898353577,0.59228128194809,0.506150424480438,0.2507044672966,0.605879545211792,0.755021393299103,0.166040524840355,0.902824401855469,-0.396659523248672,0.118659414350986,0.778027653694153,-0.616922318935394,-0.570398807525635,-0.544482886791229,-0.614966452121735,-0.519474506378174,-0.0898522138595581,-0.84974867105484,-0.383549988269806,0.605330765247345,-0.697469770908356,-0.176811069250107,0.94866144657135,-0.262258291244507,0.118659414350986,0.778027653694153,-0.616922318935394,-0.383549988269806,0.605330765247345,-0.697469770908356,0.0830727145075798,0.982647716999054,0.165838927030563,-0.570398807525635,-0.544482886791229,-0.614966452121735,-0.359987676143646,-0.0540435239672661,-0.931390523910522,-0.34256249666214,-0.68224561214447,-0.645903885364532,-0.519474506378174,-0.0898522138595581,-0.84974867105484,-0.290512502193451,0.927312612533569,-0.235995665192604,0.585592210292816,0.579814374446869,0.56647777557373,0.21612611413002,0.608420789241791,0.763618886470795,-0.404107421636581,0.897398412227631,-0.177124843001366,-0.272823840379715,0.824733793735504,-0.495359838008881,-0.290512502193451,0.927312612533569,-0.235995665192604,
- -0.404107421636581,0.897398412227631,-0.177124843001366,-0.254818081855774,0.830159187316895,-0.49588668346405,-0.254818081855774,0.830159187316895,-0.49588668346405,-0.300653487443924,-0.560216903686523,-0.771857798099518,-0.761953711509705,-0.469635754823685,-0.445946961641312,-0.272823840379715,0.824733793735504,-0.495359838008881,-0.300653487443924,-0.560216903686523,-0.771857798099518,-0.639427304267883,-0.0751667246222496,-0.765168488025665,-0.405001193284988,-0.0579946860671043,-0.912475109100342,-0.761953711509705,-0.469635754823685,-0.445946961641312,0.166040524840355,0.902824401855469,-0.396659523248672,0.2507044672966,0.605879545211792,0.755021393299103,0.0983937233686447,0.589259445667267,0.801930248737335,-0.236240386962891,0.946655929088593,-0.219164848327637,-0.236240386962891,0.946655929088593,-0.219164848327637,-0.249808922410011,0.831940054893494,-0.495450556278229,-0.236586436629295,0.845401406288147,-0.478877276182175,0.166040524840355,0.902824401855469,-0.396659523248672,-0.249808922410011,0.831940054893494,-0.495450556278229,0.0413821823894978,-0.709526479244232,-0.703462719917297,0.163291990756989,-0.454586118459702,-0.875606775283813,-0.236586436629295,0.845401406288147,-0.478877276182175,0.0413821823894978,-0.709526479244232,-0.703462719917297,-0.0633759200572968,-0.549430787563324,-0.833132266998291,0.163291990756989,-0.454586118459702,-0.875606775283813,-0.0633759200572968,-0.549430787563324,-0.833132266998291,-0.545285940170288,-0.371695876121521,-0.751335859298706,-0.603172063827515,-0.0608696639537811,-0.795285165309906,0.0413821823894978,-0.709526479244232,-0.703462719917297,-0.591931283473969,0.0378794819116592,-0.805097877979279,-0.545285940170288,-0.371695876121521,-0.751335859298706,-0.0633759200572968,-0.549430787563324,-0.833132266998291,-0.300653487443924,-0.560216903686523,-0.771857798099518,-0.119908094406128,-0.579345941543579,-0.806213617324829,-0.163499653339386,-0.594400823116302,-0.787372529506683,-0.158579111099243,-0.053977157920599,-0.985869824886322,-0.410243600606918,-0.0421173237264156,-0.911002933979034,
- -0.326039373874664,0.888153851032257,-0.323853522539139,-0.00786686316132545,0.588356256484985,0.808563590049744,0.0435652025043964,0.598122477531433,0.800219833850861,0.0748508870601654,0.905038893222809,-0.418690890073776,0.0891680866479874,0.891652226448059,-0.443852990865707,-0.24448524415493,0.791670203208923,-0.559897541999817,0.141654521226883,0.780404925346375,-0.609017372131348,-0.326039373874664,0.888153851032257,-0.323853522539139,0.0748508870601654,0.905038893222809,-0.418690890073776,0.331514477729797,0.836851418018341,-0.435635030269623,0.298933923244476,0.584733843803406,0.754138469696045,0.125450998544693,0.588197529315948,0.798927903175354,-0.171355172991753,0.908963441848755,-0.38003021478653,-0.171355172991753,0.908963441848755,-0.38003021478653,-0.109875708818436,0.797218799591064,-0.593607306480408,-0.1495271474123,0.877521991729736,-0.455627948045731,0.331514477729797,0.836851418018341,-0.435635030269623,-0.0951245054602623,-0.238279283046722,-0.966526985168457,-0.1495271474123,0.877521991729736,-0.455627948045731,-0.109875708818436,0.797218799591064,-0.593607306480408,-0.209492921829224,-0.282666951417923,-0.936062097549438,-0.163499653339386,-0.594400823116302,-0.787372529506683,-0.119908094406128,-0.579345941543579,-0.806213617324829,-0.0951245054602623,-0.238279283046722,-0.966526985168457,-0.0964618772268295,-0.407498419284821,-0.9080970287323,-0.320132344961166,-0.0600163713097572,-0.945469856262207,-0.0409794598817825,-0.564941704273224,-0.824112713336945,-0.0762953385710716,-0.224927350878716,-0.971383988857269,-0.320132344961166,-0.0600163713097572,-0.945469856262207,-0.158579111099243,-0.053977157920599,-0.985869824886322,-0.163499653339386,-0.594400823116302,-0.787372529506683,-0.395642131567001,-0.543110013008118,-0.740607082843781,-0.0409794598817825,-0.564941704273224,-0.824112713336945,0.428155660629272,0.450322359800339,0.783512949943542,0.465259939432144,0.45555967092514,0.75894570350647,0.42867374420166,0.448506861925125,0.784270644187927,0.423643857240677,0.446275591850281,0.788266479969025,
- 0.419108390808105,0.447680026292801,0.789892792701721,0.448533952236176,0.445850849151611,0.774618983268738,0.482197016477585,-0.0762501955032349,0.872738301753998,0.339177280664444,0.564780414104462,0.752317786216736,0.626908898353577,0.59228128194809,0.506150424480438,0.324471861124039,0.776893496513367,0.539587318897247,-0.532933533191681,0.541917085647583,-0.64985203742981,-0.422981202602386,-0.624047458171844,-0.657002031803131,-0.291798412799835,0.781940400600433,-0.550838470458984,-0.0918127745389938,0.599503457546234,-0.795088708400726,0.125983119010925,0.553603827953339,0.82319563627243,0.0459723323583603,0.451412230730057,0.891130566596985,0.0852796733379364,0.515049040317535,0.85290789604187,0.116121292114258,0.579061329364777,0.806971967220306,-0.00930920336395502,0.524028182029724,-0.85165011882782,-0.368701428174973,-0.564974248409271,-0.73814868927002,-0.68608570098877,-0.543238759040833,-0.483919680118561,-0.532933533191681,0.541917085647583,-0.64985203742981,-0.699080109596252,-0.518353641033173,-0.492540955543518,-0.00930920336395502,0.524028182029724,-0.85165011882782,-0.541892468929291,0.551650583744049,-0.634061694145203,-0.491703927516937,-0.541046023368835,-0.682273030281067,-0.491703927516937,-0.541046023368835,-0.682273030281067,-0.541892468929291,0.551650583744049,-0.634061694145203,-0.352900296449661,0.555202126502991,-0.753134727478027,-0.069259911775589,-0.544361233711243,-0.835986852645874,0.0315206348896027,0.511483311653137,-0.858714878559113,-0.257339239120483,-0.541750311851501,-0.800176978111267,-0.256992131471634,-0.545171320438385,-0.797961950302124,-0.0947683751583099,0.539802014827728,-0.836440622806549,-0.635551035404205,-0.448024302721024,-0.628768026828766,0.0315206348896027,0.511483311653137,-0.858714878559113,0.0549893006682396,0.563625633716583,-0.824198067188263,-0.312051117420197,-0.563680231571198,-0.764780282974243,-0.312051117420197,-0.563680231571198,-0.764780282974243,0.0549893006682396,0.563625633716583,-0.824198067188263,-0.00146483432035893,0.550157368183136,-0.835059762001038,
- 0.884357094764709,-0.191356405615807,-0.425787806510925,-0.196805849671364,-0.551156938076019,-0.810859799385071,-0.00146483432035893,0.550157368183136,-0.835059762001038,-0.0174802206456661,0.545375168323517,-0.838009834289551,-0.197164997458458,-0.547699749469757,-0.813111960887909,-0.192012310028076,0.558142066001892,-0.807222902774811,-0.0277937166392803,-0.538003146648407,-0.842484533786774,-0.255566358566284,-0.562469780445099,-0.786329209804535,-0.352900296449661,0.555202126502991,-0.753134727478027,-0.0277937166392803,-0.538003146648407,-0.842484533786774,-0.192012310028076,0.558142066001892,-0.807222902774811,-0.0947683751583099,0.539802014827728,-0.836440622806549,0.604322075843811,-0.373980462551117,-0.70351505279541,-0.277993083000183,0.603216350078583,-0.747562646865845,-0.207908973097801,0.592135965824127,-0.778555631637573,-0.0947683751583099,0.539802014827728,-0.836440622806549,-0.192012310028076,0.558142066001892,-0.807222902774811,0.0701928287744522,0.580973207950592,-0.810890316963196,-0.352900296449661,0.555202126502991,-0.753134727478027,-0.541892468929291,0.551650583744049,-0.634061694145203,-0.544381558895111,0.580910921096802,-0.605137348175049,0.0701928287744522,0.580973207950592,-0.810890316963196,-0.277993083000183,0.603216350078583,-0.747562646865845,-0.192012310028076,0.558142066001892,-0.807222902774811,-0.352900296449661,0.555202126502991,-0.753134727478027,-0.544381558895111,0.580910921096802,-0.605137348175049,-0.541892468929291,0.551650583744049,-0.634061694145203,-0.00930920336395502,0.524028182029724,-0.85165011882782,-0.457361668348312,0.603020966053009,-0.653594791889191,-0.207908973097801,0.592135965824127,-0.778555631637573,-0.0318983942270279,0.57423985004425,-0.818065524101257,0.0315206348896027,0.511483311653137,-0.858714878559113,-0.0947683751583099,0.539802014827728,-0.836440622806549,0.0315206348896027,0.511483311653137,-0.858714878559113,-0.0318983942270279,0.57423985004425,-0.818065524101257,-0.168651700019836,0.582652926445007,-0.795029640197754,0.0549893006682396,0.563625633716583,-0.824198067188263,
- -0.00930920336395502,0.524028182029724,-0.85165011882782,-0.532933533191681,0.541917085647583,-0.64985203742981,-0.0918127745389938,0.599503457546234,-0.795088708400726,-0.457361668348312,0.603020966053009,-0.653594791889191,-0.00146483432035893,0.550157368183136,-0.835059762001038,0.0549893006682396,0.563625633716583,-0.824198067188263,-0.168651700019836,0.582652926445007,-0.795029640197754,-0.261241108179092,0.587674498558044,-0.765762329101563,-0.0174802206456661,0.545375168323517,-0.838009834289551,-0.00146483432035893,0.550157368183136,-0.835059762001038,-0.261241108179092,0.587674498558044,-0.765762329101563,-0.173974603414536,0.59853458404541,-0.781977832317352,-0.0476125180721283,0.57769638299942,-0.81486189365387,0.585592210292816,0.579814374446869,0.56647777557373,0.0983937233686447,0.589259445667267,0.801930248737335,0.117376856505871,0.557802557945251,0.821632027626038,0.324937701225281,0.56382942199707,0.759283781051636,0.585592210292816,0.579814374446869,0.56647777557373,0.324937701225281,0.56382942199707,0.759283781051636,0.266390204429626,0.566143035888672,0.780075967311859,0.21612611413002,0.608420789241791,0.763618886470795,0.0983937233686447,0.589259445667267,0.801930248737335,0.2507044672966,0.605879545211792,0.755021393299103,0.595312774181366,0.545401334762573,0.590034008026123,0.117376856505871,0.557802557945251,0.821632027626038,0.201927065849304,0.593806743621826,0.778857588768005,0.253847420215607,0.545339584350586,0.798853039741516,0.332122802734375,0.531685650348663,0.779105186462402,0.298933923244476,0.584733843803406,0.754138469696045,0.332122802734375,0.531685650348663,0.779105186462402,0.250742405653,0.55803257226944,0.791029751300812,0.125450998544693,0.588197529315948,0.798927903175354,0.298933923244476,0.584733843803406,0.754138469696045,0.339177280664444,0.564780414104462,0.752317786216736,0.595312774181366,0.545401334762573,0.590034008026123,0.2507044672966,0.605879545211792,0.755021393299103,0.626908898353577,0.59228128194809,0.506150424480438,0.250742405653,0.55803257226944,0.791029751300812,
- 0.0711689367890358,0.551831305027008,0.830913543701172,-0.00786686316132545,0.588356256484985,0.808563590049744,0.125450998544693,0.588197529315948,0.798927903175354,0.21612611413002,0.608420789241791,0.763618886470795,0.266390204429626,0.566143035888672,0.780075967311859,0.253847420215607,0.545339584350586,0.798853039741516,0.201927065849304,0.593806743621826,0.778857588768005,0.0711689367890358,0.551831305027008,0.830913543701172,0.125983119010925,0.553603827953339,0.82319563627243,0.116121292114258,0.579061329364777,0.806971967220306,0.0435652025043964,0.598122477531433,0.800219833850861,-0.00786686316132545,0.588356256484985,0.808563590049744,-0.68608570098877,-0.543238759040833,-0.483919680118561,-0.422981202602386,-0.624047458171844,-0.657002031803131,-0.532933533191681,0.541917085647583,-0.64985203742981,-0.567788541316986,-0.463216215372086,-0.680475473403931,-0.0174802206456661,0.545375168323517,-0.838009834289551,-0.11388223618269,0.280714839696884,-0.953011035919189,0.279980570077896,0.828128337860107,0.485607326030731,0.290392875671387,0.82715767621994,0.481125950813293,0.441712856292725,-0.581715703010559,0.683005630970001,-0.0475567206740379,-0.466764658689499,0.883101999759674,0.290392875671387,0.82715767621994,0.481125950813293,0.279980570077896,0.828128337860107,0.485607326030731,0.0503743812441826,0.940696597099304,0.335488259792328,0.0393023155629635,0.941313147544861,0.335238844156265,-0.0475567206740379,-0.466764658689499,0.883101999759674,0.441712856292725,-0.581715703010559,0.683005630970001,0.51692658662796,0.105955511331558,0.849447131156921,0.48482084274292,0.0580738671123981,0.87268340587616,-0.39718309044838,0.781689703464508,-0.480839669704437,-0.128666669130325,0.981878042221069,-0.139141842722893,0.151449263095856,0.948268294334412,0.279016703367233,-0.228938981890678,0.596273005008698,-0.769444823265076,0.322426587343216,0.839288115501404,0.437763214111328,0.653041541576386,0.748578369617462,0.114748433232307,0.127876952290535,-0.515606224536896,0.847229480743408,0.828786432743073,-0.478891938924789,0.289440214633942,
- 0.390760332345963,0.918733239173889,0.0568819716572762,0.151449263095856,0.948268294334412,0.279016703367233,0.653041541576386,0.748578369617462,0.114748433232307,0.322426587343216,0.839288115501404,0.437763214111328,0.828786432743073,-0.478891938924789,0.289440214633942,0.127876952290535,-0.515606224536896,0.847229480743408,0.735852241516113,0.0529373921453953,0.675069689750671,0.64399790763855,0.064667709171772,0.76228928565979,0.0393023155629635,0.941313147544861,0.335238844156265,0.0503743812441826,0.940696597099304,0.335488259792328,-0.0263310968875885,0.539692759513855,-0.841450214385986,-0.5526202917099,0.592338085174561,-0.586299002170563,0.151449263095856,0.948268294334412,0.279016703367233,0.390760332345963,0.918733239173889,0.0568819716572762,-0.69113153219223,0.581107974052429,-0.429710268974304,-0.228938981890678,0.596273005008698,-0.769444823265076,0.653041541576386,0.748578369617462,0.114748433232307,0.52852475643158,0.603502213954926,0.597031652927399,0.630876064300537,-0.0801854059100151,0.771729111671448,0.127876952290535,-0.515606224536896,0.847229480743408,0.151449263095856,0.948268294334412,0.279016703367233,-0.128666669130325,0.981878042221069,-0.139141842722893,0.52852475643158,0.603502213954926,0.597031652927399,0.653041541576386,0.748578369617462,0.114748433232307,0.127876952290535,-0.515606224536896,0.847229480743408,0.630876064300537,-0.0801854059100151,0.771729111671448,0.491137802600861,-0.6843141913414,0.538978457450867,0.735852241516113,0.0529373921453953,0.675069689750671,-0.0263310968875885,0.539692759513855,-0.841450214385986,-0.500807285308838,0.559656202793121,-0.660285651683807,-0.604380548000336,-0.0291175469756126,-0.796163558959961,-0.5526202917099,0.592338085174561,-0.586299002170563,0.0503743812441826,0.940696597099304,0.335488259792328,0.0792027041316032,0.935474991798401,0.344403088092804,-0.71037495136261,0.581929206848145,-0.395886182785034,-0.0263310968875885,0.539692759513855,-0.841450214385986,0.279980570077896,0.828128337860107,0.485607326030731,0.236502200365067,0.822841048240662,0.516719818115234,
- 0.0792027041316032,0.935474991798401,0.344403088092804,0.0503743812441826,0.940696597099304,0.335488259792328,0.236502200365067,0.822841048240662,0.516719818115234,0.279980570077896,0.828128337860107,0.485607326030731,-0.0475567206740379,-0.466764658689499,0.883101999759674,0.748601973056793,-0.517316102981567,0.414703726768494,0.748601973056793,-0.517316102981567,0.414703726768494,-0.0475567206740379,-0.466764658689499,0.883101999759674,0.48482084274292,0.0580738671123981,0.87268340587616,0.643511772155762,0.0474688000977039,0.763962864875793,-0.0263310968875885,0.539692759513855,-0.841450214385986,-0.71037495136261,0.581929206848145,-0.395886182785034,-0.416287153959274,0.559292256832123,-0.716866254806519,-0.500807285308838,0.559656202793121,-0.660285651683807,0.390760332345963,0.918733239173889,0.0568819716572762,0.0393023155629635,0.941313147544861,0.335238844156265,-0.5526202917099,0.592338085174561,-0.586299002170563,-0.69113153219223,0.581107974052429,-0.429710268974304,0.0393023155629635,0.941313147544861,0.335238844156265,0.390760332345963,0.918733239173889,0.0568819716572762,0.322426587343216,0.839288115501404,0.437763214111328,0.290392875671387,0.82715767621994,0.481125950813293,0.290392875671387,0.82715767621994,0.481125950813293,0.322426587343216,0.839288115501404,0.437763214111328,0.828786432743073,-0.478891938924789,0.289440214633942,0.441712856292725,-0.581715703010559,0.683005630970001,0.441712856292725,-0.581715703010559,0.683005630970001,0.828786432743073,-0.478891938924789,0.289440214633942,0.64399790763855,0.064667709171772,0.76228928565979,0.441712856292725,-0.581715703010559,0.683005630970001,0.64399790763855,0.064667709171772,0.76228928565979,0.51692658662796,0.105955511331558,0.849447131156921,-0.5526202917099,0.592338085174561,-0.586299002170563,-0.604380548000336,-0.0291175469756126,-0.796163558959961,-0.382726192474365,0.556597173213959,-0.737373888492584,-0.69113153219223,0.581107974052429,-0.429710268974304,-0.382726192474365,0.556597173213959,-0.737373888492584,-0.643015205860138,0.543899238109589,-0.539170742034912,
- -0.228938981890678,0.596273005008698,-0.769444823265076,-0.69113153219223,0.581107974052429,-0.429710268974304,-0.565625071525574,0.445180833339691,-0.694177508354187,-0.595890283584595,0.445090472698212,-0.668438017368317,-0.580289542675018,0.445749521255493,-0.681594848632813,-0.59925365447998,0.447621434926987,-0.663724362850189,-0.597046315670013,0.446202367544174,-0.666662693023682,-0.594691455364227,0.444990038871765,-0.669571459293365,-0.322158962488174,0.831868410110474,-0.451894491910934,-0.810220122337341,-0.46481055021286,-0.357063800096512,-0.458750337362289,-0.598864436149597,-0.65643697977066,-0.34306001663208,0.831420302391052,-0.437092691659927,-0.34306001663208,0.831420302391052,-0.437092691659927,-0.280421912670136,0.945639252662659,-0.16471192240715,-0.327229022979736,0.931763112545013,-0.15728534758091,-0.322158962488174,0.831868410110474,-0.451894491910934,-0.810220122337341,-0.46481055021286,-0.357063800096512,-0.626581430435181,-0.0434220805764198,-0.778145372867584,-0.621048867702484,-0.0967260897159576,-0.777780532836914,-0.458750337362289,-0.598864436149597,-0.65643697977066,0.424498915672302,0.777290463447571,0.464349448680878,0.692339599132538,0.59761780500412,0.40437462925911,-0.231831789016724,0.948226690292358,-0.217072069644928,0.117480531334877,0.982226967811584,0.146384656429291,-0.32893431186676,0.845442473888397,-0.420748680830002,-0.0777547657489777,-0.472629874944687,-0.877824187278748,-0.780487179756165,-0.515844106674194,-0.353192150592804,0.0158160198479891,0.770716071128845,-0.636982500553131,0.0483162701129913,0.914756119251251,-0.401106894016266,-0.32893431186676,0.845442473888397,-0.420748680830002,0.0158160198479891,0.770716071128845,-0.636982500553131,-0.231831789016724,0.948226690292358,-0.217072069644928,-0.0777547657489777,-0.472629874944687,-0.877824187278748,-0.511135339736938,-0.0511455126106739,-0.857977151870728,-0.553474009037018,-0.055057168006897,-0.831044673919678,-0.780487179756165,-0.515844106674194,-0.353192150592804,-0.280421912670136,0.945639252662659,-0.16471192240715,
- 0.369094520807266,0.59817111492157,0.711309015750885,0.699960470199585,0.560296773910522,0.44285774230957,-0.327229022979736,0.931763112545013,-0.15728534758091,0.699960470199585,0.560296773910522,0.44285774230957,0.369094520807266,0.59817111492157,0.711309015750885,0.530877888202667,0.0383791886270046,0.84657895565033,0.511141359806061,0.558867454528809,0.652994513511658,-0.231831789016724,0.948226690292358,-0.217072069644928,0.692339599132538,0.59761780500412,0.40437462925911,0.23943455517292,0.583157360553741,0.776272237300873,0.0483162701129913,0.914756119251251,-0.401106894016266,0.0158160198479891,0.770716071128845,-0.636982500553131,-0.780487179756165,-0.515844106674194,-0.353192150592804,-0.676547527313232,-0.0862057507038116,-0.731335759162903,-0.515281617641449,0.60452538728714,-0.607481718063354,-0.231831789016724,0.948226690292358,-0.217072069644928,0.0158160198479891,0.770716071128845,-0.636982500553131,-0.515281617641449,0.60452538728714,-0.607481718063354,0.117480531334877,0.982226967811584,0.146384656429291,-0.780487179756165,-0.515844106674194,-0.353192150592804,-0.553474009037018,-0.055057168006897,-0.831044673919678,-0.465015202760696,-0.685265600681305,-0.560510516166687,-0.676547527313232,-0.0862057507038116,-0.731335759162903,-0.327229022979736,0.931763112545013,-0.15728534758091,0.699960470199585,0.560296773910522,0.44285774230957,-0.049582839012146,0.564445674419403,0.823979794979095,-0.234116405248642,0.941620051860809,-0.241953149437904,-0.322158962488174,0.831868410110474,-0.451894491910934,-0.327229022979736,0.931763112545013,-0.15728534758091,-0.234116405248642,0.941620051860809,-0.241953149437904,-0.329341858625412,0.829523503780365,-0.451026409864426,-0.329341858625412,0.829523503780365,-0.451026409864426,-0.0394563637673855,-0.512360215187073,-0.85786384344101,-0.810220122337341,-0.46481055021286,-0.357063800096512,-0.322158962488174,0.831868410110474,-0.451894491910934,-0.0394563637673855,-0.512360215187073,-0.85786384344101,-0.354235470294952,-0.0564410947263241,-0.933451473712921,
- -0.626581430435181,-0.0434220805764198,-0.778145372867584,-0.810220122337341,-0.46481055021286,-0.357063800096512,0.699960470199585,0.560296773910522,0.44285774230957,0.511141359806061,0.558867454528809,0.652994513511658,0.294071197509766,0.567881524562836,0.768786668777466,-0.049582839012146,0.564445674419403,0.823979794979095,0.369094520807266,0.59817111492157,0.711309015750885,0.23943455517292,0.583157360553741,0.776272237300873,0.468459397554398,0.564984977245331,0.679218530654907,0.530877888202667,0.0383791886270046,0.84657895565033,0.0483162701129913,0.914756119251251,-0.401106894016266,0.23943455517292,0.583157360553741,0.776272237300873,0.369094520807266,0.59817111492157,0.711309015750885,-0.280421912670136,0.945639252662659,-0.16471192240715,-0.280421912670136,0.945639252662659,-0.16471192240715,-0.34306001663208,0.831420302391052,-0.437092691659927,-0.32893431186676,0.845442473888397,-0.420748680830002,0.0483162701129913,0.914756119251251,-0.401106894016266,-0.34306001663208,0.831420302391052,-0.437092691659927,-0.458750337362289,-0.598864436149597,-0.65643697977066,-0.0777547657489777,-0.472629874944687,-0.877824187278748,-0.32893431186676,0.845442473888397,-0.420748680830002,-0.511135339736938,-0.0511455126106739,-0.857977151870728,-0.0777547657489777,-0.472629874944687,-0.877824187278748,-0.458750337362289,-0.598864436149597,-0.65643697977066,-0.621048867702484,-0.0967260897159576,-0.777780532836914,0.499071598052979,0.566545724868774,0.655708372592926,0.468459397554398,0.564984977245331,0.679218530654907,0.23943455517292,0.583157360553741,0.776272237300873,0.692339599132538,0.59761780500412,0.40437462925911,0.579292416572571,0.445092260837555,0.682871222496033,0.604764878749847,0.445377349853516,0.660226106643677,0.57859992980957,0.444929301738739,0.683564305305481,0.574001431465149,0.446175843477249,0.686621904373169,0.570162534713745,0.447735607624054,0.68880158662796,0.593717217445374,0.445691764354706,0.669969320297241,0.645977258682251,-0.101484499871731,0.756580710411072,0.499071598052979,0.566545724868774,0.655708372592926,
- 0.692339599132538,0.59761780500412,0.40437462925911,0.424498915672302,0.777290463447571,0.464349448680878,0.469800472259521,0.0895848199725151,0.878215312957764,0.513332724571228,0.0906626433134079,0.853387236595154,0.48040783405304,0.0893488600850105,0.872482180595398,0.446286588907242,0.0888471975922585,0.890468776226044,0.486122816801071,0.0895866453647614,0.869286477565765,0.486371248960495,0.088437020778656,0.869265139102936,0.509205400943756,0.0849247127771378,0.856444776058197,0.474450021982193,0.0894181057810783,0.875729143619537,0.437378495931625,0.0935178995132446,0.894401788711548,0.469318509101868,0.0900987833738327,0.878420352935791,-0.71037495136261,0.581929206848145,-0.395886182785034,-0.0710865035653114,0.995150327682495,-0.0679892972111702,-0.268826752901077,-0.793043911457062,-0.546638488769531,-0.416287153959274,0.559292256832123,-0.716866254806519,-0.049582839012146,0.564445674419403,0.823979794979095,0.294071197509766,0.567881524562836,0.768786668777466,0.476257085800171,0.0615614578127861,0.877148568630219,0.0208999272435904,0.993952810764313,0.107801087200642,-0.234116405248642,0.941620051860809,-0.241953149437904,-0.049582839012146,0.564445674419403,0.823979794979095,0.0208999272435904,0.993952810764313,0.107801087200642,-0.211607679724693,0.880954802036285,-0.423250317573547,-0.329341858625412,0.829523503780365,-0.451026409864426,-0.234116405248642,0.941620051860809,-0.241953149437904,-0.211607679724693,0.880954802036285,-0.423250317573547,-0.287611097097397,0.77690851688385,-0.560083031654358,-0.287611097097397,0.77690851688385,-0.560083031654358,-0.373637199401855,0.414222419261932,-0.829948842525482,-0.0394563637673855,-0.512360215187073,-0.85786384344101,-0.329341858625412,0.829523503780365,-0.451026409864426,-0.373637199401855,0.414222419261932,-0.829948842525482,-0.480474442243576,-0.0909836888313293,-0.872276484966278,-0.354235470294952,-0.0564410947263241,-0.933451473712921,-0.0394563637673855,-0.512360215187073,-0.85786384344101,0.486077219247818,0.43520712852478,0.757841527462006,
- 0.748601973056793,-0.517316102981567,0.414703726768494,0.643511772155762,0.0474688000977039,0.763962864875793,0.470858633518219,-0.0419351197779179,0.881211459636688,0.311217337846756,0.780296921730042,0.542476356029511,0.236502200365067,0.822841048240662,0.516719818115234,0.748601973056793,-0.517316102981567,0.414703726768494,0.486077219247818,0.43520712852478,0.757841527462006,0.0792027041316032,0.935474991798401,0.344403088092804,0.236502200365067,0.822841048240662,0.516719818115234,0.311217337846756,0.780296921730042,0.542476356029511,0.237786293029785,0.883364617824554,0.40388697385788,-0.71037495136261,0.581929206848145,-0.395886182785034,0.0792027041316032,0.935474991798401,0.344403088092804,0.237786293029785,0.883364617824554,0.40388697385788,-0.0710865035653114,0.995150327682495,-0.0679892972111702,-0.0409476719796658,0.796064913272858,-0.603824496269226,-0.0239490047097206,0.989548444747925,-0.142198547720909,-0.0124149257317185,0.930839240550995,0.365218192338943,0.301015675067902,0.476293057203293,-0.826156497001648,0.166038826107979,0.816034495830536,0.553641438484192,0.282148152589798,0.79037868976593,0.543777704238892,-0.235090464353561,-0.444222658872604,0.864522337913513,0.542347073554993,-0.412257790565491,0.732054114341736,0.24050098657608,0.906824588775635,0.346162468194962,-0.0124149257317185,0.930839240550995,0.365218192338943,0.282148152589798,0.79037868976593,0.543777704238892,0.166038826107979,0.816034495830536,0.553641438484192,0.542347073554993,-0.412257790565491,0.732054114341736,-0.235090464353561,-0.444222658872604,0.864522337913513,0.253974825143814,0.0333646014332771,0.966635167598724,-0.179851964116097,0.0440219901502132,0.982708156108856,0.190471470355988,-0.491895288228989,0.849564492702484,-0.0124149257317185,0.930839240550995,0.365218192338943,0.24050098657608,0.906824588775635,0.346162468194962,-0.431235641241074,0.47797042131424,-0.76523220539093,0.301015675067902,0.476293057203293,-0.826156497001648,0.282148152589798,0.79037868976593,0.543777704238892,0.101702108979225,0.507939100265503,0.855368077754974,
- 0.0892390832304955,-0.173305585980415,0.980816841125488,-0.235090464353561,-0.444222658872604,0.864522337913513,-0.0124149257317185,0.930839240550995,0.365218192338943,-0.0239490047097206,0.989548444747925,-0.142198547720909,0.101702108979225,0.507939100265503,0.855368077754974,0.282148152589798,0.79037868976593,0.543777704238892,-0.235090464353561,-0.444222658872604,0.864522337913513,0.0892390832304955,-0.173305585980415,0.980816841125488,0.0949175134301186,-0.759380578994751,0.64368611574173,0.253974825143814,0.0333646014332771,0.966635167598724,0.24050098657608,0.906824588775635,0.346162468194962,0.0204748027026653,0.99752676486969,0.0672391578555107,-0.00622872728854418,0.732450306415558,-0.680792152881622,-0.431235641241074,0.47797042131424,-0.76523220539093,0.0204748027026653,0.99752676486969,0.0672391578555107,0.24050098657608,0.906824588775635,0.346162468194962,0.166038826107979,0.816034495830536,0.553641438484192,0.012436755001545,0.793498158454895,0.608445525169373,0.012436755001545,0.793498158454895,0.608445525169373,0.166038826107979,0.816034495830536,0.553641438484192,0.542347073554993,-0.412257790565491,0.732054114341736,0.0171795040369034,0.443363100290298,0.896177530288696,0.0171795040369034,0.443363100290298,0.896177530288696,0.542347073554993,-0.412257790565491,0.732054114341736,0.190471470355988,-0.491895288228989,0.849564492702484,0.190471470355988,-0.491895288228989,0.849564492702484,-0.179851964116097,0.0440219901502132,0.982708156108856,-0.271684497594833,-0.349331945180893,0.896746754646301,0.0171795040369034,0.443363100290298,0.896177530288696,0.190471470355988,-0.491895288228989,0.849564492702484,-0.271684497594833,-0.349331945180893,0.896746754646301,-0.0157016981393099,-0.317562848329544,0.948107242584229,-0.00622872728854418,0.732450306415558,-0.680792152881622,0.0254746247082949,-0.323715090751648,-0.945811688899994,0.0187404211610556,0.465672820806503,-0.884758651256561,-0.431235641241074,0.47797042131424,-0.76523220539093,0.0187404211610556,0.465672820806503,-0.884758651256561,-0.185453787446022,0.461770623922348,-0.867395401000977,
- 0.301015675067902,0.476293057203293,-0.826156497001648,-0.431235641241074,0.47797042131424,-0.76523220539093,-0.0682114362716675,0.426867067813873,-0.901738226413727,-0.111295059323311,0.453801423311234,-0.884125471115112,-0.0946754589676857,0.48014235496521,-0.87206643819809,-0.11415546387434,0.476611763238907,-0.871670663356781,-0.111837610602379,0.47329643368721,-0.873775124549866,-0.0974016189575195,0.465318918228149,-0.879767715930939,0.0915201231837273,0.790073037147522,0.606142461299896,0.386711984872818,0.480422884225845,0.787177085876465,-0.0610445737838745,0.929853737354279,-0.362830013036728,0.00505382288247347,0.989984691143036,0.141084462404251,0.122435376048088,0.820201933383942,-0.558818876743317,0.465994715690613,-0.405887991189957,-0.786195874214172,-0.317708671092987,-0.442233830690384,-0.838743448257446,0.188740938901901,0.804632246494293,-0.56297767162323,0.205827757716179,0.905385613441467,-0.371364891529083,0.122435376048088,0.820201933383942,-0.558818876743317,0.188740938901901,0.804632246494293,-0.56297767162323,-0.0610445737838745,0.929853737354279,-0.362830013036728,0.465994715690613,-0.405887991189957,-0.786195874214172,0.14585979282856,-0.490347534418106,-0.859234631061554,-0.243061631917953,-0.0404443629086018,-0.969167351722717,0.0490121766924858,-0.0490636415779591,-0.997592449188232,-0.317708671092987,-0.442233830690384,-0.838743448257446,-0.0610445737838745,0.929853737354279,-0.362830013036728,0.386711984872818,0.480422884225845,0.787177085876465,-0.354498505592346,0.478939324617386,0.803086638450623,0.205827757716179,0.905385613441467,-0.371364891529083,0.188740938901901,0.804632246494293,-0.56297767162323,-0.317708671092987,-0.442233830690384,-0.838743448257446,-0.123738318681717,-0.178958177566528,-0.976044476032257,-0.0821294039487839,0.509592294692993,-0.856487393379211,-0.0610445737838745,0.929853737354279,-0.362830013036728,0.188740938901901,0.804632246494293,-0.56297767162323,-0.0821294039487839,0.509592294692993,-0.856487393379211,0.00505382288247347,0.989984691143036,0.141084462404251,
- -0.317708671092987,-0.442233830690384,-0.838743448257446,0.0490121766924858,-0.0490636415779591,-0.997592449188232,-0.0461076162755489,-0.760746538639069,-0.647409439086914,-0.123738318681717,-0.178958177566528,-0.976044476032257,-0.0106724090874195,0.728972792625427,0.684459447860718,-0.354498505592346,0.478939324617386,0.803086638450623,-0.0443826876580715,0.471500188112259,0.880748391151428,0.00358296046033502,-0.045124027878046,0.998974978923798,0.205827757716179,0.905385613441467,-0.371364891529083,-0.354498505592346,0.478939324617386,0.803086638450623,-0.0106724090874195,0.728972792625427,0.684459447860718,0.0213806834071875,0.997306227684021,-0.0701659321784973,0.0213806834071875,0.997306227684021,-0.0701659321784973,0.0154161127284169,0.792096018791199,-0.610201895236969,0.122435376048088,0.820201933383942,-0.558818876743317,0.205827757716179,0.905385613441467,-0.371364891529083,0.0154161127284169,0.792096018791199,-0.610201895236969,0.0234875995665789,0.439930319786072,-0.897724807262421,0.465994715690613,-0.405887991189957,-0.786195874214172,0.122435376048088,0.820201933383942,-0.558818876743317,0.0234875995665789,0.439930319786072,-0.897724807262421,0.14585979282856,-0.490347534418106,-0.859234631061554,0.465994715690613,-0.405887991189957,-0.786195874214172,0.14585979282856,-0.490347534418106,-0.859234631061554,-0.258180648088455,-0.363277196884155,-0.895194113254547,-0.243061631917953,-0.0404443629086018,-0.969167351722717,0.0234875995665789,0.439930319786072,-0.897724807262421,-0.0100443568080664,-0.319158524274826,-0.947648108005524,-0.258180648088455,-0.363277196884155,-0.895194113254547,0.14585979282856,-0.490347534418106,-0.859234631061554,0.128437250852585,0.47052675485611,0.872988283634186,-0.0443826876580715,0.471500188112259,0.880748391151428,-0.354498505592346,0.478939324617386,0.803086638450623,0.386711984872818,0.480422884225845,0.787177085876465,0.082254558801651,0.453823953866959,0.887286901473999,0.123043112456799,0.426974564790726,0.895853340625763,0.0930624529719353,0.465318024158478,0.880237877368927,
- 0.0745074599981308,0.473271280527115,0.877760231494904,0.071347750723362,0.476556956768036,0.876243770122528,0.0941950455307961,0.480107456445694,0.872137784957886,0.0958189964294434,-0.139208659529686,0.985616445541382,0.128437250852585,0.47052675485611,0.872988283634186,0.386711984872818,0.480422884225845,0.787177085876465,0.0915201231837273,0.790073037147522,0.606142461299896,0.0106927743181586,-0.000237948770518415,-0.99994283914566,-0.00411353213712573,0.000243503149249591,-0.999991595745087,0.00301829166710377,1.42440705985791e-006,-0.999995529651642,0.0103091271594167,-5.09035016875714e-005,-0.999946892261505,-0.00740954140201211,0.000678682932630181,-0.999972343444824,-0.00964272022247314,0.000523219991009682,-0.99995344877243,-0.0339023806154728,0.000664695980958641,-0.999424934387207,-3.56153323082253e-005,9.35084026423283e-005,-1,0.0361273400485516,-0.000899337814189494,-0.999346852302551,0.0125888809561729,-0.000185584387509152,-0.999920845031738,-0.185453787446022,0.461770623922348,-0.867395401000977,-0.121315360069275,-0.673667132854462,-0.729009747505188,-0.0409476719796658,0.796064913272858,-0.603824496269226,0.301015675067902,0.476293057203293,-0.826156497001648,-0.472018927335739,-0.431537866592407,-0.768747866153717,-0.185453787446022,0.461770623922348,-0.867395401000977,0.0187404211610556,0.465672820806503,-0.884758651256561,-0.0817608684301376,-0.468380630016327,-0.879735589027405,-0.472018927335739,-0.431537866592407,-0.768747866153717,-0.121315360069275,-0.673667132854462,-0.729009747505188,-0.185453787446022,0.461770623922348,-0.867395401000977,0.142100438475609,-0.46873477101326,-0.871834397315979,0.0187404211610556,0.465672820806503,-0.884758651256561,0.0254746247082949,-0.323715090751648,-0.945811688899994,-0.643015205860138,0.543899238109589,-0.539170742034912,-0.485134541988373,-0.719177663326263,-0.49742129445076,-0.39718309044838,0.781689703464508,-0.480839669704437,-0.228938981890678,0.596273005008698,-0.769444823265076,-0.382726192474365,0.556597173213959,-0.737373888492584,-0.505269527435303,-0.565446317195892,-0.651899755001068,
- -0.805393576622009,-0.526923298835754,-0.271464765071869,-0.643015205860138,0.543899238109589,-0.539170742034912,-0.452101200819016,-0.562153279781342,-0.692523062229156,-0.500807285308838,0.559656202793121,-0.660285651683807,-0.416287153959274,0.559292256832123,-0.716866254806519,-0.221895098686218,-0.564103007316589,-0.795330286026001,-0.287774533033371,-0.547660529613495,-0.785654902458191,-0.382726192474365,0.556597173213959,-0.737373888492584,-0.604380548000336,-0.0291175469756126,-0.796163558959961,-0.805393576622009,-0.526923298835754,-0.271464765071869,-0.485134541988373,-0.719177663326263,-0.49742129445076,-0.643015205860138,0.543899238109589,-0.539170742034912,-0.729920089244843,-0.51380842924118,-0.450796574354172,-0.604380548000336,-0.0291175469756126,-0.796163558959961,-0.500807285308838,0.559656202793121,-0.660285651683807,-0.221895098686218,-0.564103007316589,-0.795330286026001,-0.416287153959274,0.559292256832123,-0.716866254806519,-0.268826752901077,-0.793043911457062,-0.546638488769531,0.485414892435074,0.819303035736084,0.305147439241409,0.511800587177277,0.82705146074295,0.232478156685829,0.747531533241272,-0.664020717144012,-0.0165255963802338,0.370635390281677,-0.476247489452362,0.797381937503815,0.511800587177277,0.82705146074295,0.232478156685829,0.485414892435074,0.819303035736084,0.305147439241409,0.207130059599876,0.921135783195496,0.329554468393326,0.222105532884598,0.941592693328857,0.253125429153442,0.370635390281677,-0.476247489452362,0.797381937503815,0.747531533241272,-0.664020717144012,-0.0165255963802338,0.888549268245697,0.0875095725059509,0.450357973575592,0.906508207321167,0.0536651387810707,0.418763637542725,-0.599461913108826,0.781391799449921,-0.173414245247841,-0.184748873114586,0.981885194778442,-0.0420638285577297,0.292210549116135,0.953031122684479,0.0796542316675186,-0.616040766239166,0.565687894821167,-0.548170506954193,0.534566283226013,0.833771288394928,0.138074278831482,0.61427915096283,0.753804981708527,-0.233322411775589,0.651326179504395,-0.509783387184143,0.562045514583588,
- 0.835143685340881,-0.528251230716705,-0.153250515460968,0.386624693870544,0.892662942409515,-0.231677353382111,0.292210549116135,0.953031122684479,0.0796542316675186,0.61427915096283,0.753804981708527,-0.233322411775589,0.534566283226013,0.833771288394928,0.138074278831482,0.835143685340881,-0.528251230716705,-0.153250515460968,0.651326179504395,-0.509783387184143,0.562045514583588,0.99544769525528,0.0310679376125336,0.0901036709547043,0.839917063713074,0.060250099748373,0.539359986782074,0.222105532884598,0.941592693328857,0.253125429153442,0.207130059599876,0.921135783195496,0.329554468393326,-0.526409029960632,0.583604216575623,-0.618303894996643,-0.786717653274536,0.592316746711731,-0.173885643482208,0.292210549116135,0.953031122684479,0.0796542316675186,0.386624693870544,0.892662942409515,-0.231677353382111,-0.793201506137848,0.608145833015442,-0.0314658805727959,-0.616040766239166,0.565687894821167,-0.548170506954193,0.61427915096283,0.753804981708527,-0.233322411775589,0.771501362323761,0.605648756027222,0.194872200489044,0.955973148345947,-0.0808130353689194,0.282107383012772,0.651326179504395,-0.509783387184143,0.562045514583588,0.292210549116135,0.953031122684479,0.0796542316675186,-0.184748873114586,0.981885194778442,-0.0420638285577297,0.771501362323761,0.605648756027222,0.194872200489044,0.61427915096283,0.753804981708527,-0.233322411775589,0.651326179504395,-0.509783387184143,0.562045514583588,0.955973148345947,-0.0808130353689194,0.282107383012772,0.709322571754456,-0.684646904468536,0.16769090294838,0.99544769525528,0.0310679376125336,0.0901036709547043,-0.526409029960632,0.583604216575623,-0.618303894996643,-0.79737788438797,0.551903188228607,-0.244113445281982,-0.947754681110382,-0.0291791167110205,-0.317662954330444,-0.786717653274536,0.592316746711731,-0.173885643482208,0.207130059599876,0.921135783195496,0.329554468393326,0.237102389335632,0.931424796581268,0.276098221540451,-0.832250952720642,0.546700119972229,0.0920729264616966,-0.526409029960632,0.583604216575623,-0.618303894996643,0.485414892435074,0.819303035736084,0.305147439241409,
- 0.472684621810913,0.822374105453491,0.316654801368713,0.237102389335632,0.931424796581268,0.276098221540451,0.207130059599876,0.921135783195496,0.329554468393326,0.472684621810913,0.822374105453491,0.316654801368713,0.485414892435074,0.819303035736084,0.305147439241409,0.370635390281677,-0.476247489452362,0.797381937503815,0.865458965301514,-0.499983131885529,-0.0315881073474884,0.865458965301514,-0.499983131885529,-0.0315881073474884,0.370635390281677,-0.476247489452362,0.797381937503815,0.906508207321167,0.0536651387810707,0.418763637542725,0.970828831195831,0.0636646375060081,0.231167376041412,-0.526409029960632,0.583604216575623,-0.618303894996643,-0.832250952720642,0.546700119972229,0.0920729264616966,-0.755477547645569,0.559007585048676,-0.341707706451416,-0.79737788438797,0.551903188228607,-0.244113445281982,0.386624693870544,0.892662942409515,-0.231677353382111,0.222105532884598,0.941592693328857,0.253125429153442,-0.786717653274536,0.592316746711731,-0.173885643482208,-0.793201506137848,0.608145833015442,-0.0314658805727959,0.222105532884598,0.941592693328857,0.253125429153442,0.386624693870544,0.892662942409515,-0.231677353382111,0.534566283226013,0.833771288394928,0.138074278831482,0.511800587177277,0.82705146074295,0.232478156685829,0.511800587177277,0.82705146074295,0.232478156685829,0.534566283226013,0.833771288394928,0.138074278831482,0.835143685340881,-0.528251230716705,-0.153250515460968,0.747531533241272,-0.664020717144012,-0.0165255963802338,0.835143685340881,-0.528251230716705,-0.153250515460968,0.839917063713074,0.060250099748373,0.539359986782074,0.898868381977081,-0.0433682538568974,0.436067700386047,0.747531533241272,-0.664020717144012,-0.0165255963802338,0.835143685340881,-0.528251230716705,-0.153250515460968,0.898868381977081,-0.0433682538568974,0.436067700386047,0.888549268245697,0.0875095725059509,0.450357973575592,-0.793201506137848,0.608145833015442,-0.0314658805727959,-0.786717653274536,0.592316746711731,-0.173885643482208,-0.947754681110382,-0.0291791167110205,-0.317662954330444,-0.738840699195862,0.546477019786835,-0.394306033849716,
- -0.738840699195862,0.546477019786835,-0.394306033849716,-0.826994597911835,0.555187225341797,-0.0885836407542229,-0.616040766239166,0.565687894821167,-0.548170506954193,-0.793201506137848,0.608145833015442,-0.0314658805727959,-0.858332931995392,0.44544643163681,-0.254640996456146,-0.8690465092659,0.445187509059906,-0.215792030096054,-0.863502144813538,0.445793360471725,-0.235865339636803,-0.869080781936646,0.447859019041061,-0.2100500613451,-0.868979394435883,0.44629579782486,-0.213763609528542,-0.868684768676758,0.445038735866547,-0.21754877269268,-0.550222337245941,0.823297619819641,-0.13941478729248,-0.843571305274963,-0.471438348293304,0.257164239883423,-0.655608117580414,-0.645166456699371,-0.392349600791931,-0.52961128950119,0.831484913825989,-0.167763993144035,-0.52961128950119,0.831484913825989,-0.167763993144035,-0.324103116989136,0.945777773857117,0.0214818771928549,-0.377911239862442,0.923755884170532,0.0621150434017181,-0.550222337245941,0.823297619819641,-0.13941478729248,-0.843571305274963,-0.471438348293304,0.257164239883423,-0.937363803386688,-0.0537608675658703,-0.34417861700058,-0.95398473739624,-0.0354534424841404,-0.297752201557159,-0.655608117580414,-0.645166456699371,-0.392349600791931,0.613315939903259,0.776527404785156,0.144390881061554,0.816441833972931,0.570838093757629,-0.0869870632886887,-0.289666891098022,0.952373027801514,-0.0952826291322708,0.179330110549927,0.982249557971954,0.0550147257745266,-0.5025634765625,0.840596079826355,-0.202059894800186,-0.493796139955521,-0.487770318984985,-0.719892680644989,-0.857171416282654,-0.511147141456604,0.0631331875920296,-0.372558981180191,0.776268661022186,-0.50853419303894,-0.181111544370651,0.893534064292908,-0.410847365856171,-0.5025634765625,0.840596079826355,-0.202059894800186,-0.372558981180191,0.776268661022186,-0.50853419303894,-0.289666891098022,0.952373027801514,-0.0952826291322708,-0.493796139955521,-0.487770318984985,-0.719892680644989,-0.923273324966431,-0.058225043118,-0.379705667495728,-0.916721940040588,-0.0649222806096077,-0.394215792417526,
- -0.857171416282654,-0.511147141456604,0.0631331875920296,-0.324103116989136,0.945777773857117,0.0214818771928549,0.707309603691101,0.598114013671875,0.376792967319489,0.811299741268158,0.583528876304626,-0.0358709618449211,-0.377911239862442,0.923755884170532,0.0621150434017181,0.811299741268158,0.583528876304626,-0.0358709618449211,0.707309603691101,0.598114013671875,0.376792967319489,0.917027354240417,0.0378418229520321,0.39702507853508,0.770552396774292,0.563824951648712,0.297238141298294,-0.289666891098022,0.952373027801514,-0.0952826291322708,0.816441833972931,0.570838093757629,-0.0869870632886887,0.65530663728714,0.608053922653198,0.448155909776688,-0.181111544370651,0.893534064292908,-0.410847365856171,-0.372558981180191,0.776268661022186,-0.50853419303894,-0.857171416282654,-0.511147141456604,0.0631331875920296,-0.971140265464783,-0.0868784934282303,-0.222123324871063,-0.767778217792511,0.604995250701904,-0.210944071412086,-0.289666891098022,0.952373027801514,-0.0952826291322708,-0.372558981180191,0.776268661022186,-0.50853419303894,-0.767778217792511,0.604995250701904,-0.210944071412086,0.179330110549927,0.982249557971954,0.0550147257745266,-0.857171416282654,-0.511147141456604,0.0631331875920296,-0.916721940040588,-0.0649222806096077,-0.394215792417526,-0.700992822647095,-0.684119462966919,-0.201468676328659,-0.971140265464783,-0.0868784934282303,-0.222123324871063,-0.377911239862442,0.923755884170532,0.0621150434017181,0.811299741268158,0.583528876304626,-0.0358709618449211,0.49431037902832,0.553944528102875,0.669927477836609,-0.348293483257294,0.937313258647919,-0.0116496160626411,-0.550222337245941,0.823297619819641,-0.13941478729248,-0.377911239862442,0.923755884170532,0.0621150434017181,-0.348293483257294,0.937313258647919,-0.0116496160626411,-0.534885585308075,0.829784750938416,-0.159231603145599,-0.534885585308075,0.829784750938416,-0.159231603145599,-0.564678728580475,-0.498648822307587,-0.657637596130371,-0.843571305274963,-0.471438348293304,0.257164239883423,-0.550222337245941,0.823297619819641,-0.13941478729248,
- -0.564678728580475,-0.498648822307587,-0.657637596130371,-0.788883745670319,-0.0342984981834888,-0.613584578037262,-0.937363803386688,-0.0537608675658703,-0.34417861700058,-0.843571305274963,-0.471438348293304,0.257164239883423,0.811299741268158,0.583528876304626,-0.0358709618449211,0.770552396774292,0.563824951648712,0.297238141298294,0.639340758323669,0.548142552375793,0.539243221282959,0.49431037902832,0.553944528102875,0.669927477836609,-0.181111544370651,0.893534064292908,-0.410847365856171,0.65530663728714,0.608053922653198,0.448155909776688,0.707309603691101,0.598114013671875,0.376792967319489,-0.324103116989136,0.945777773857117,0.0214818771928549,-0.324103116989136,0.945777773857117,0.0214818771928549,-0.52961128950119,0.831484913825989,-0.167763993144035,-0.5025634765625,0.840596079826355,-0.202059894800186,-0.181111544370651,0.893534064292908,-0.410847365856171,-0.52961128950119,0.831484913825989,-0.167763993144035,-0.655608117580414,-0.645166456699371,-0.392349600791931,-0.493796139955521,-0.487770318984985,-0.719892680644989,-0.5025634765625,0.840596079826355,-0.202059894800186,-0.655608117580414,-0.645166456699371,-0.392349600791931,-0.923273324966431,-0.058225043118,-0.379705667495728,-0.493796139955521,-0.487770318984985,-0.719892680644989,-0.655608117580414,-0.645166456699371,-0.392349600791931,-0.95398473739624,-0.0354534424841404,-0.297752201557159,-0.922023177146912,-0.362904369831085,-0.134809821844101,-0.923273324966431,-0.058225043118,-0.379705667495728,0.790983438491821,0.565449118614197,0.233693361282349,0.7826828956604,0.565949499607086,0.259053438901901,0.65530663728714,0.608053922653198,0.448155909776688,0.816441833972931,0.570838093757629,-0.0869870632886887,0.863283097743988,0.445255666971207,0.237675756216049,0.871629416942596,0.445625245571136,0.204157546162605,0.863130569458008,0.445076167583466,0.238564282655716,0.861058294773102,0.446302801370621,0.24370539188385,0.85909515619278,0.447876632213593,0.247713997960091,0.868044018745422,0.445811003446579,0.218522787094116,0.960037589073181,-0.101611502468586,0.260773837566376,
- 0.790983438491821,0.565449118614197,0.233693361282349,0.816441833972931,0.570838093757629,-0.0869870632886887,0.613315939903259,0.776527404785156,0.144390881061554,0.65530663728714,0.608053922653198,0.448155909776688,0.7826828956604,0.565949499607086,0.259053438901901,0.917027354240417,0.0378418229520321,0.39702507853508,0.707309603691101,0.598114013671875,0.376792967319489,0.884411752223969,0.0891063660383224,0.458122193813324,0.906504094600677,0.0893941894173622,0.412624537944794,0.889932870864868,0.0893342047929764,0.447257250547409,0.871755838394165,0.0896967723965645,0.481660008430481,0.892849981784821,0.0900646448135376,0.441256463527679,0.893091797828674,0.0884803608059883,0.44108772277832,0.90324878692627,0.085534542798996,0.420506149530411,0.887210011482239,0.0891377702355385,0.452673047780991,0.868961274623871,0.0927442461252213,0.4861119389534,0.884069383144379,0.0903173387050629,0.458545744419098,-0.832250952720642,0.546700119972229,0.0920729264616966,-0.10385823994875,0.994516015052795,-0.0123015008866787,-0.523141503334045,-0.799788057804108,-0.294384360313416,-0.755477547645569,0.559007585048676,-0.341707706451416,0.49431037902832,0.553944528102875,0.669927477836609,0.639340758323669,0.548142552375793,0.539243221282959,0.888542115688324,0.0739827156066895,0.4527907371521,0.0812065005302429,0.993027806282043,0.0854482799768448,-0.348293483257294,0.937313258647919,-0.0116496160626411,0.49431037902832,0.553944528102875,0.669927477836609,0.0812065005302429,0.993027806282043,0.0854482799768448,-0.411521732807159,0.885333657264709,-0.216412425041199,-0.534885585308075,0.829784750938416,-0.159231603145599,-0.348293483257294,0.937313258647919,-0.0116496160626411,-0.411521732807159,0.885333657264709,-0.216412425041199,-0.553102374076843,0.781721949577332,-0.288077712059021,-0.553102374076843,0.781721949577332,-0.288077712059021,-0.780602812767029,0.413631230592728,-0.468581289052963,-0.564678728580475,-0.498648822307587,-0.657637596130371,-0.534885585308075,0.829784750938416,-0.159231603145599,-0.780602812767029,0.413631230592728,-0.468581289052963,
- -0.889536440372467,-0.0980738550424576,-0.446213632822037,-0.788883745670319,-0.0342984981834888,-0.613584578037262,-0.564678728580475,-0.498648822307587,-0.657637596130371,0.828241765499115,0.435566544532776,0.352558612823486,0.865458965301514,-0.499983131885529,-0.0315881073474884,0.970828831195831,0.0636646375060081,0.231167376041412,0.887792885303497,-0.0394607707858086,0.458548456430435,0.555847644805908,0.784128904342651,0.275998711585999,0.472684621810913,0.822374105453491,0.316654801368713,0.865458965301514,-0.499983131885529,-0.0315881073474884,0.828241765499115,0.435566544532776,0.352558612823486,0.237102389335632,0.931424796581268,0.276098221540451,0.472684621810913,0.822374105453491,0.316654801368713,0.555847644805908,0.784128904342651,0.275998711585999,0.414806365966797,0.886800527572632,0.203766152262688,-0.832250952720642,0.546700119972229,0.0920729264616966,0.237102389335632,0.931424796581268,0.276098221540451,0.414806365966797,0.886800527572632,0.203766152262688,-0.10385823994875,0.994516015052795,-0.0123015008866787,-0.607910811901093,0.793604075908661,-0.0252436548471451,-0.142682731151581,0.989731431007385,0.00856994930654764,0.364640086889267,0.930550277233124,0.0333727486431599,-0.808490812778473,0.475787103176117,-0.346365809440613,0.557625770568848,0.817156791687012,-0.145974084734917,0.555543780326843,0.79673570394516,-0.237872511148453,0.841831147670746,-0.433019906282425,0.322201937437058,0.762367188930511,-0.40739119052887,-0.502820730209351,0.360262453556061,0.904953718185425,-0.226428180932999,0.364640086889267,0.930550277233124,0.0333727486431599,0.555543780326843,0.79673570394516,-0.237872511148453,0.557625770568848,0.817156791687012,-0.145974084734917,0.762367188930511,-0.40739119052887,-0.502820730209351,0.841831147670746,-0.433019906282425,0.322201937437058,0.988368988037109,-0.00845165550708771,-0.151840269565582,0.997471213340759,0.00113567209336907,-0.0710627436637878,0.364640086889267,0.930550277233124,0.0333727486431599,0.360262453556061,0.904953718185425,-0.226428180932999,
- -0.787197887897491,0.476016342639923,0.392081499099731,-0.808490812778473,0.475787103176117,-0.346365809440613,0.555543780326843,0.79673570394516,-0.237872511148453,0.860669553279877,0.509059071540833,-0.0103328432887793,0.984070718288422,-0.176931336522102,0.0173274911940098,0.841831147670746,-0.433019906282425,0.322201937437058,0.364640086889267,0.930550277233124,0.0333727486431599,-0.142682731151581,0.989731431007385,0.00856994930654764,0.860669553279877,0.509059071540833,-0.0103328432887793,0.555543780326843,0.79673570394516,-0.237872511148453,0.841831147670746,-0.433019906282425,0.322201937437058,0.984070718288422,-0.176931336522102,0.0173274911940098,0.648494362831116,-0.76084566116333,-0.0238534789532423,0.988368988037109,-0.00845165550708771,-0.151840269565582,-0.787197887897491,0.476016342639923,0.392081499099731,-0.684179484844208,0.729309439659119,-0.00248120375908911,-0.883653283119202,0.462483018636703,-0.0725705698132515,0.360262453556061,0.904953718185425,-0.226428180932999,0.0677297189831734,0.99752289056778,-0.0189934074878693,-0.684179484844208,0.729309439659119,-0.00248120375908911,-0.787197887897491,0.476016342639923,0.392081499099731,0.0677297189831734,0.99752289056778,-0.0189934074878693,0.360262453556061,0.904953718185425,-0.226428180932999,0.557625770568848,0.817156791687012,-0.145974084734917,0.608777105808258,0.793244659900665,-0.0123909376561642,0.608777105808258,0.793244659900665,-0.0123909376561642,0.557625770568848,0.817156791687012,-0.145974084734917,0.762367188930511,-0.40739119052887,-0.502820730209351,0.941481709480286,0.333180278539658,-0.0510214865207672,0.997471213340759,0.00113567209336907,-0.0710627436637878,0.755463242530823,-0.653537094593048,0.0465240962803364,0.941481709480286,0.333180278539658,-0.0510214865207672,0.762367188930511,-0.40739119052887,-0.502820730209351,-0.883653283119202,0.462483018636703,-0.0725705698132515,-0.684179484844208,0.729309439659119,-0.00248120375908911,-0.881104409694672,-0.472607672214508,-0.0172359384596348,-0.883653283119202,0.462483018636703,-0.0725705698132515,
- -0.878291845321655,0.46024677157402,0.12952433526516,-0.808490812778473,0.475787103176117,-0.346365809440613,-0.787197887897491,0.476016342639923,0.392081499099731,-0.904272377490997,0.426324337720871,-0.0232158657163382,-0.89116644859314,0.453453838825226,0.0142155215144157,-0.877273738384247,0.479990512132645,2.10851430892944e-006,-0.878907561302185,0.476517081260681,0.0212841369211674,-0.880718469619751,0.473277300596237,0.0185368452221155,-0.885255575180054,0.465100824832916,0.00193420797586441,0.60689651966095,0.794378757476807,-0.0252825953066349,0.808695733547211,0.476257652044296,-0.345238894224167,-0.364549934864044,0.930607795715332,0.0327512174844742,0.143385097384453,0.989629805088043,0.00858087465167046,-0.557569622993469,0.817209899425507,-0.145891413092613,-0.762258529663086,-0.407598912715912,-0.502817094326019,-0.841534912586212,-0.433110564947128,0.322853267192841,-0.555451512336731,0.796790182590485,-0.237905591726303,-0.360173881053925,0.905017554759979,-0.226314350962639,-0.557569622993469,0.817209899425507,-0.145891413092613,-0.555451512336731,0.796790182590485,-0.237905591726303,-0.364549934864044,0.930607795715332,0.0327512174844742,-0.762258529663086,-0.407598912715912,-0.502817094326019,-0.997462153434753,0.00112803466618061,-0.0711903795599937,-0.988546788692474,-0.00838719680905342,-0.15068194270134,-0.841534912586212,-0.433110564947128,0.322853267192841,-0.364549934864044,0.930607795715332,0.0327512174844742,0.808695733547211,0.476257652044296,-0.345238894224167,0.785926222801209,0.480410903692245,0.389262676239014,-0.360173881053925,0.905017554759979,-0.226314350962639,-0.555451512336731,0.796790182590485,-0.237905591726303,-0.841534912586212,-0.433110564947128,0.322853267192841,-0.984415233135223,-0.174990937113762,0.0174626559019089,-0.860229730606079,0.509802222251892,-0.0103240134194493,-0.364549934864044,0.930607795715332,0.0327512174844742,-0.555451512336731,0.796790182590485,-0.237905591726303,-0.860229730606079,0.509802222251892,-0.0103240134194493,0.143385097384453,0.989629805088043,0.00858087465167046,
- -0.841534912586212,-0.433110564947128,0.322853267192841,-0.988546788692474,-0.00838719680905342,-0.15068194270134,-0.648898780345917,-0.760501146316528,-0.023844825103879,-0.984415233135223,-0.174990937113762,0.0174626559019089,0.687926590442657,0.725726187229156,0.00886485632508993,0.785926222801209,0.480410903692245,0.389262676239014,0.880475640296936,0.468175530433655,0.0746624022722244,0.9979567527771,-0.0623737089335918,-0.0138510605320334,-0.360173881053925,0.905017554759979,-0.226314350962639,0.785926222801209,0.480410903692245,0.389262676239014,0.687926590442657,0.725726187229156,0.00886485632508993,-0.0677320286631584,0.99752277135849,-0.0189951024949551,-0.0677320286631584,0.99752277135849,-0.0189951024949551,-0.608852624893188,0.793186545372009,-0.0123916659504175,-0.557569622993469,0.817209899425507,-0.145891413092613,-0.360173881053925,0.905017554759979,-0.226314350962639,-0.608852624893188,0.793186545372009,-0.0123916659504175,-0.941498339176178,0.333134800195694,-0.051012359559536,-0.762258529663086,-0.407598912715912,-0.502817094326019,-0.557569622993469,0.817209899425507,-0.145891413092613,-0.997462153434753,0.00112803466618061,-0.0711903795599937,-0.762258529663086,-0.407598912715912,-0.502817094326019,-0.941498339176178,0.333134800195694,-0.051012359559536,-0.756041407585144,-0.652871310710907,0.0464818589389324,0.881992101669312,0.465608209371567,-0.0727940797805786,0.880475640296936,0.468175530433655,0.0746624022722244,0.785926222801209,0.480410903692245,0.389262676239014,0.808695733547211,0.476257652044296,-0.345238894224167,0.891083836555481,0.453615963459015,0.0142235504463315,0.904209911823273,0.426453292369843,-0.0232815500348806,0.885189056396484,0.465227544307709,0.00194169231690466,0.880718469619751,0.473277270793915,0.0185380522161722,0.878857791423798,0.476608544588089,0.0212948750704527,0.87717080116272,0.480178564786911,-2.93366611003876e-006,0.991200506687164,-0.132174357771873,0.00717461621388793,0.881992101669312,0.465608209371567,-0.0727940797805786,0.808695733547211,0.476257652044296,-0.345238894224167,
- 0.60689651966095,0.794378757476807,-0.0252825953066349,-0.999958992004395,-0.000720265437848866,-0.00903678126633167,-0.999529421329498,0.000595110352151096,0.0306697152554989,-1,0.000126392813399434,-5.58029660169268e-006,-0.999528586864471,-0.000140703297802247,-0.0307033844292164,-0.999959051609039,0.000575022248085588,0.00903769303113222,-0.999937772750854,0.00101334357168525,0.0111160706728697,-0.999409735202789,0.000978620490059257,0.0343394577503204,-0.999945878982544,0.000299804378300905,0.0104055646806955,-0.999872446060181,-0.000184348769835196,-0.0159763228148222,-0.999938189983368,-0.000206614509806968,-0.0111186876893044,-0.826994597911835,0.555187225341797,-0.0885836407542229,-0.678141474723816,-0.722223937511444,-0.136076673865318,-0.599461913108826,0.781391799449921,-0.173414245247841,-0.616040766239166,0.565687894821167,-0.548170506954193,-0.832433104515076,-0.483388841152191,0.270906716585159,-0.826994597911835,0.555187225341797,-0.0885836407542229,-0.738840699195862,0.546477019786835,-0.394306033849716,-0.803434729576111,-0.561001539230347,-0.199424207210541,-0.742053091526031,-0.560297727584839,-0.367999672889709,-0.79737788438797,0.551903188228607,-0.244113445281982,-0.755477547645569,0.559007585048676,-0.341707706451416,-0.593330204486847,-0.53630518913269,-0.600279986858368,-0.832433104515076,-0.483388841152191,0.270906716585159,-0.678141474723816,-0.722223937511444,-0.136076673865318,-0.826994597911835,0.555187225341797,-0.0885836407542229,-0.660759031772614,-0.561595857143402,-0.498003780841827,-0.738840699195862,0.546477019786835,-0.394306033849716,-0.947754681110382,-0.0291791167110205,-0.317662954330444,-0.842390239238739,-0.536222815513611,0.0533269681036472,-0.947754681110382,-0.0291791167110205,-0.317662954330444,-0.79737788438797,0.551903188228607,-0.244113445281982,-0.593330204486847,-0.53630518913269,-0.600279986858368,-0.755477547645569,0.559007585048676,-0.341707706451416,-0.523141503334045,-0.799788057804108,-0.294384360313416,-0.878291845321655,0.46024677157402,0.12952433526516,
- -0.990161061286926,-0.13972333073616,0.00765048060566187,-0.607910811901093,0.793604075908661,-0.0252436548471451,-0.808490812778473,0.475787103176117,-0.346365809440613,-0.78191864490509,-0.41883647441864,0.461713552474976,-0.878291845321655,0.46024677157402,0.12952433526516,-0.883653283119202,0.462483018636703,-0.0725705698132515,-0.877742528915405,-0.468286097049713,-0.101371675729752,-0.78191864490509,-0.41883647441864,0.461713552474976,-0.540200769901276,-0.0893130302429199,0.836783230304718,-0.878291845321655,0.46024677157402,0.12952433526516,-0.877742528915405,-0.468286097049713,-0.101371675729752,-0.883653283119202,0.462483018636703,-0.0725705698132515,-0.881104409694672,-0.472607672214508,-0.0172359384596348,0.0758246555924416,0.0462170243263245,-0.996049582958221,0.106449708342552,-0.0336524993181229,-0.993748426437378,0.139743208885193,-0.0813091918826103,-0.986843824386597,0.0712039023637772,0.119437232613564,-0.990285217761993,-0.276337921619415,0.960138916969299,-0.042079258710146,0.279692471027374,0.959883630275726,-0.0198912601917982,0.0200318191200495,0.0421841405332088,-0.998909115791321,0.0758246555924416,0.0462170243263245,-0.996049582958221,0.101713769137859,0.994614601135254,-0.019901042804122,-0.344412952661514,0.938410341739655,-0.027672853320837,-0.0489914827048779,0.998657822608948,0.0168080497533083,0.142281055450439,0.989759266376495,-0.0115272914990783,-0.344412952661514,0.938410341739655,-0.027672853320837,-0.692031264305115,0.71015202999115,-0.129525884985924,-0.819591879844666,0.57062840461731,-0.0515030324459076,-0.0489914827048779,0.998657822608948,0.0168080497533083,0.153751477599144,0.170047849416733,-0.973367512226105,0.053908746689558,-0.0751576796174049,-0.995713472366333,0.0687129572033882,-0.0263104308396578,-0.997289538383484,0.0200318191200495,0.0421841405332088,-0.998909115791321,-0.999840080738068,-0.000269372190814465,-0.0178822129964828,-0.958224713802338,0.285873711109161,-0.00904250331223011,-0.157463327050209,0.0303797889500856,0.987057447433472,-0.158545643091202,-0.00721566565334797,0.987325370311737,
- 0.106449708342552,-0.0336524993181229,-0.993748426437378,0.0687129572033882,-0.0263104308396578,-0.997289538383484,-0.2696253657341,-0.958311259746552,-0.0945609733462334,0.281899929046631,-0.959440588951111,-0.00248998776078224,0.139683708548546,0.988405168056488,0.0595294125378132,-0.0425891913473606,0.999043703079224,-0.00989742204546928,-0.344733417034149,0.938101649284363,-0.033531628549099,0.0957325473427773,0.994442939758301,0.0438011437654495,-0.0425891913473606,0.999043703079224,-0.00989742204546928,-0.808454930782318,0.578576147556305,-0.107936337590218,-0.705139875411987,0.708966851234436,-0.0119911376386881,-0.344733417034149,0.938101649284363,-0.033531628549099,-0.0528745800256729,-0.00408211164176464,0.998592853546143,-0.0539542101323605,-0.0357226803898811,0.997904300689697,0.940254747867584,-0.286688715219498,0.183659493923187,0.982190430164337,-0.000245203264057636,0.187888517975807,-0.997884511947632,-0.0622896626591682,-0.0186143051832914,-0.819591879844666,0.57062840461731,-0.0515030324459076,-0.692031264305115,0.71015202999115,-0.129525884985924,-0.999295234680176,-0.0375212393701077,0.00111869163811207,-0.13215571641922,0.0277528055012226,0.990840375423431,-0.0832887813448906,-0.0403782315552235,0.995707154273987,-0.0539542101323605,-0.0357226803898811,0.997904300689697,-0.157463327050209,0.0303797889500856,0.987057447433472,-0.968260705471039,-0.0344605781137943,-0.247555643320084,-0.705139875411987,0.708966851234436,-0.0119911376386881,-0.808454930782318,0.578576147556305,-0.107936337590218,-0.980535984039307,-0.0562881864607334,-0.188098073005676,0.0200318191200495,0.0421841405332088,-0.998909115791321,0.0687129572033882,-0.0263104308396578,-0.997289538383484,0.106449708342552,-0.0336524993181229,-0.993748426437378,0.0758246555924416,0.0462170243263245,-0.996049582958221,-0.0528745800256729,-0.00408211164176464,0.998592853546143,-0.158545643091202,-0.00721566565334797,0.987325370311737,-0.157463327050209,0.0303797889500856,0.987057447433472,-0.0539542101323605,-0.0357226803898811,0.997904300689697,
- -0.705139875411987,0.708966851234436,-0.0119911376386881,-0.692031264305115,0.71015202999115,-0.129525884985924,-0.344412952661514,0.938410341739655,-0.027672853320837,-0.344733417034149,0.938101649284363,-0.033531628549099,-0.999295234680176,-0.0375212393701077,0.00111869163811207,-0.692031264305115,0.71015202999115,-0.129525884985924,-0.705139875411987,0.708966851234436,-0.0119911376386881,-0.968260705471039,-0.0344605781137943,-0.247555643320084,0.101713769137859,0.994614601135254,-0.019901042804122,0.0957325473427773,0.994442939758301,0.0438011437654495,-0.344733417034149,0.938101649284363,-0.033531628549099,-0.344412952661514,0.938410341739655,-0.027672853320837,-0.030549181625247,0.99949699640274,-0.00852029491215944,0.00391956465318799,0.999110281467438,0.0419923551380634,-0.0515703968703747,0.998059511184692,0.0348967909812927,-0.0498215034604073,0.998573124408722,-0.0192248038947582,0.0014475213829428,0.999700009822845,-0.024452717974782,-0.0506358556449413,0.998578369617462,0.0166544523090124,-0.054179172962904,0.997890591621399,0.0357619151473045,0.00359156471677125,0.999665796756744,0.025601789355278,-0.0298126600682735,0.999205529689789,-0.0264487992972136,0.0111565459519625,0.999706089496613,-0.0215270929038525,0.0758246555924416,0.0462170243263245,-0.996049582958221,0.0712039023637772,0.119437232613564,-0.990285217761993,-0.276337921619415,0.960138916969299,-0.042079258710146,0.153751477599144,0.170047849416733,-0.973367512226105,0.0200318191200495,0.0421841405332088,-0.998909115791321,0.279692471027374,0.959883630275726,-0.0198912601917982,0.106449708342552,-0.0336524993181229,-0.993748426437378,0.281899929046631,-0.959440588951111,-0.00248998776078224,0.139743208885193,-0.0813091918826103,-0.986843824386597,0.053908746689558,-0.0751576796174049,-0.995713472366333,-0.2696253657341,-0.958311259746552,-0.0945609733462334,0.0687129572033882,-0.0263104308396578,-0.997289538383484,-0.958224713802338,0.285873711109161,-0.00904250331223011,-0.13215571641922,0.0277528055012226,0.990840375423431,-0.157463327050209,0.0303797889500856,0.987057447433472,
- -0.0832887813448906,-0.0403782315552235,0.995707154273987,0.940254747867584,-0.286688715219498,0.183659493923187,-0.0539542101323605,-0.0357226803898811,0.997904300689697,0.140584990382195,0.988922715187073,0.0476209558546543,0.130486369132996,0.99088841676712,0.0333706513047218,0.0361761897802353,0.99872362613678,0.0352487340569496,0.0275476407259703,0.99868243932724,0.0432963371276855,0.0879761725664139,0.990034520626068,0.109963044524193,-0.328625053167343,0.936951577663422,-0.118859499692917,-0.308615565299988,0.944918811321259,-0.109018541872501,0.0361761897802353,0.99872362613678,0.0352487340569496,0.130486369132996,0.99088841676712,0.0333706513047218,-0.67052298784256,0.697873950004578,-0.251736015081406,-0.467740654945374,0.875862300395966,-0.118676505982876,-0.446689426898956,0.878455936908722,-0.169658064842224,-0.308615565299988,0.944918811321259,-0.109018541872501,-0.328625053167343,0.936951577663422,-0.118859499692917,-0.679000556468964,0.696460425853729,-0.23216649889946,-0.598761916160584,0.774686098098755,-0.20333656668663,-0.467740654945374,0.875862300395966,-0.118676505982876,-0.67052298784256,0.697873950004578,-0.251736015081406,-0.875373303890228,0.349632382392883,-0.333884298801422,-0.221087366342545,0.972481429576874,0.0734861642122269,-0.375126421451569,0.919378042221069,0.118423998355865,-0.182560250163078,0.98216450214386,0.0449962727725506,-0.994759678840637,-0.0298068877309561,-0.0977993682026863,-0.958781957626343,-0.080477237701416,-0.272508084774017,-0.962702512741089,0.172841474413872,0.20815797150135,-0.962255477905273,0.187068715691566,0.197660401463509,-0.958781957626343,-0.080477237701416,-0.272508084774017,-0.940126240253448,-0.128767341375351,-0.315565943717957,-0.907647728919983,-0.113623470067978,-0.404060900211334,-0.910869777202606,-0.123286634683609,-0.393848657608032,-0.944672107696533,-0.16719514131546,-0.282206386327744,-0.940126240253448,-0.128767341375351,-0.315565943717957,-0.994759678840637,-0.0298068877309561,-0.0977993682026863,-0.994759678840637,-0.0298068877309561,-0.0977993682026863,
- -0.940126240253448,-0.128767341375351,-0.315565943717957,-0.958781957626343,-0.080477237701416,-0.272508084774017,-0.147415697574615,0.961180508136749,-0.233239606022835,0.00202817609533668,0.754550635814667,-0.656238794326782,0.00264821108430624,0.999797403812408,-0.0199535172432661,0.0684644356369972,0.997592568397522,-0.0110363606363535,0.00202817609533668,0.754550635814667,-0.656238794326782,0.0585787147283554,0.944126725196838,-0.32433545589447,-0.0177895501255989,0.99980092048645,-0.00904341228306293,0.00264821108430624,0.999797403812408,-0.0199535172432661,0.238058716058731,0.962063491344452,-0.133274331688881,-0.325875699520111,0.895032286643982,0.304503321647644,-0.0193492397665977,0.999513685703278,0.0244570337235928,-0.131498515605927,0.991224586963654,-0.013489150442183,-0.00236894190311432,0.874519824981689,0.48498398065567,0.107723996043205,0.894557952880859,0.433775961399078,0.00726735731586814,0.999659836292267,0.0250502694398165,-0.00178560521453619,0.999677836894989,0.0253210887312889,0.107723996043205,0.894557952880859,0.433775961399078,-0.147415697574615,0.961180508136749,-0.233239606022835,0.0684644356369972,0.997592568397522,-0.0110363606363535,0.00726735731586814,0.999659836292267,0.0250502694398165,1.34899016757117e-006,1,1.90252592346951e-006,1.17221168238757e-006,1,1.65573078447778e-006,9.34169349875447e-007,1,1.82631231382402e-006,1.01934119811631e-006,1,1.80004474259476e-006,0.000152536813402548,1,-0.000134493602672592,6.31245275144465e-005,1,-5.27763113495894e-005,1.17221168238757e-006,1,1.65573078447778e-006,1.34899016757117e-006,1,1.90252592346951e-006,2.33949367611785e-006,1,8.58623536714731e-007,2.5474980702711e-006,1,9.39756432671857e-007,2.200394646934e-006,1,1.17643219255115e-006,2.74468129646266e-006,1,1.34015976982482e-006,1.98488305613864e-006,1,5.26437986536621e-007,2.2581048142456e-006,1,5.95692370097822e-007,2.5474980702711e-006,1,9.39756432671857e-007,2.33949367611785e-006,1,8.58623536714731e-007,-3.83294946004753e-007,1,-1.01585328593501e-007,-3.75398343521738e-007,1,-9.90348638651994e-008,
- -0.00313621922396123,0.999995052814484,-0.000362532096914947,-2.94624044272496e-007,1,-4.66924170439142e-008,3.22307371902752e-008,1,1.1837556712635e-008,-5.88506850363046e-007,1,-2.17093571563964e-007,-3.75398343521738e-007,1,-9.90348638651994e-008,-3.83294946004753e-007,1,-1.01585328593501e-007,0.000260254280874506,1,-7.78795219957829e-005,5.5013795645209e-005,1,-9.08952279132791e-005,5.97703583480325e-005,1,-0.000191296188859269,0.00055015308316797,0.999999761581421,-0.000566504721064121,-2.13166089224615e-007,1,-3.00706972211628e-007,-1.87381814953369e-007,1,-2.64689333562274e-007,5.5013795645209e-005,1,-9.08952279132791e-005,0.000260254280874506,1,-7.78795219957829e-005,8.87777048319549e-007,1,2.34893559536431e-006,9.11335803266411e-007,1,2.41117527366441e-006,9.34169349875447e-007,1,1.82631231382402e-006,8.02643626229838e-007,1,1.61800562636927e-006,1.17221168238757e-006,1,1.65573078447778e-006,6.31245275144465e-005,1,-5.27763113495894e-005,1.59537057697889e-006,1,1.85509918537718e-006,1.0716894394136e-006,1,1.51421670580021e-006,6.31245275144465e-005,1,-5.27763113495894e-005,0.000104704973637126,1,-0.000111945533717517,2.13197381526697e-006,1,1.81782752406434e-006,1.59537057697889e-006,1,1.85509918537718e-006,2.00756107915367e-006,1,1.39480243888102e-006,1.90978175851342e-006,1,1.3266435416881e-006,2.200394646934e-006,1,1.17643219255115e-006,1.68457575000502e-006,1,9.29612610889308e-007,2.5474980702711e-006,1,9.39756432671857e-007,2.2581048142456e-006,1,5.95692370097822e-007,2.6545565106062e-006,1,6.99851227636827e-007,2.55018130701501e-006,1,9.41300413614954e-007,-0.0150956381112337,0.999885737895966,-0.000840635504573584,2.27036684918858e-006,1,2.34163550771882e-007,-0.00752137694507837,0.999971330165863,-0.000868780189193785,-0.0301897339522839,0.999542772769928,-0.00168118509463966,0.209123104810715,0.601779222488403,-0.770797848701477,0.207938253879547,0.60176819562912,-0.771126985549927,0.178066790103912,0.60164874792099,-0.778659701347351,0.18046198785305,0.601646780967712,-0.778109729290009,0.2735515832901,0.601940274238586,-0.750225067138672,
- 0.25765860080719,0.602038323879242,-0.755752682685852,0.207938253879547,0.60176819562912,-0.771126985549927,0.209123104810715,0.601779222488403,-0.770797848701477,-0.583282768726349,0.00318719586357474,0.812262892723084,-0.554527163505554,0.00318714743480086,0.832159578800201,-0.52528965473175,-1.02259230061463e-006,0.850923538208008,-0.525292932987213,-7.72997850617685e-007,0.850921511650085,0.602637410163879,0.602142930030823,-0.523690819740295,0.602172672748566,0.60213428735733,-0.524235129356384,0.591406285762787,0.601689279079437,-0.53685075044632,0.59315025806427,0.601687073707581,-0.534925758838654,0.67140805721283,0.599862039089203,-0.435174375772476,0.644059479236603,0.600597500801086,-0.473782777786255,0.602172672748566,0.60213428735733,-0.524235129356384,0.602637410163879,0.602142930030823,-0.523690819740295,-0.93569278717041,-0.00136703229509294,0.352813214063644,-0.915309607982636,-1.0710209608078e-007,0.40275102853775,-0.915320158004761,-7.60890543460846e-007,0.402727097272873,-0.935680985450745,-0.00136701588053256,0.352844536304474,2.13197381526697e-006,1,1.81782752406434e-006,0.000104704973637126,1,-0.000111945533717517,1.90978175851342e-006,1,1.3266435416881e-006,2.00756107915367e-006,1,1.39480243888102e-006,-0.611131846904755,9.89064687928476e-007,0.791528880596161,-0.61115700006485,-8.86619091033936e-007,0.791509449481964,-0.554527163505554,0.00318714743480086,0.832159578800201,-0.583282768726349,0.00318719586357474,0.812262892723084,1.23719455586979e-005,1,-4.90152206111816e-006,1.27837865875335e-005,1,-5.65044911127188e-006,1.31956367113162e-005,1,-6.39939207758289e-006,1.31956458062632e-005,1,-6.39940981272957e-006,1.29210729937768e-005,1,-5.90010131418239e-006,-0.998608708381653,0.0507950261235237,-0.0141683556139469,-0.998154699802399,0.0276002064347267,-0.0540879666805267,-0.995572924613953,0.00434656068682671,-0.0938922762870789,-0.998154759407043,0.027600210160017,-0.0540879778563976,-4.01596298615914e-006,1,-3.60852709491155e-007,-4.01596298615914e-006,1,-3.60852709491155e-007,-4.01596207666444e-006,1,-3.60852936864831e-007,
- -4.01596116716973e-006,1,-3.60853164238506e-007,-4.01596207666444e-006,1,-3.60852823177993e-007,-2.60094509485498e-007,1,-4.59235309335781e-007,-1.02384973388325e-007,1,-2.00099961489286e-007,-1.87381814953369e-007,1,-2.64689333562274e-007,-2.13166089224615e-007,1,-3.00706972211628e-007,8.02643626229838e-007,1,1.61800562636927e-006,9.34169349875447e-007,1,1.82631231382402e-006,1.17221168238757e-006,1,1.65573078447778e-006,1.0716894394136e-006,1,1.51421670580021e-006,0.69563901424408,0.600756704807281,-0.393926024436951,0.695644795894623,0.600756764411926,-0.393915712833405,0.644059479236603,0.600597500801086,-0.473782777786255,0.67140805721283,0.599862039089203,-0.435174375772476,-4.24096072038083e-007,1,-2.07056828571695e-007,-3.44513580330386e-007,1,-1.84262063385177e-007,-5.88506850363046e-007,1,-2.17093571563964e-007,3.22307371902752e-008,1,1.1837556712635e-008,1.68457575000502e-006,1,9.29612610889308e-007,2.200394646934e-006,1,1.17643219255115e-006,2.5474980702711e-006,1,9.39756432671857e-007,2.55018130701501e-006,1,9.41300413614954e-007,0.287426680326462,0.602088987827301,-0.744899213314056,0.290156573057175,0.602091789245605,-0.743837773799896,0.25765860080719,0.602038323879242,-0.755752682685852,0.2735515832901,0.601940274238586,-0.750225067138672,-8.69482755661011e-005,0.999184966087341,0.0403667911887169,-8.11331046861596e-005,0.99918520450592,0.0403600968420506,-0.000106921404949389,0.999184012413025,0.0403897427022457,-0.000146867707371712,0.999182224273682,0.0404356569051743,-0.000119818389066495,0.999183416366577,0.0404045656323433,0.000449146522441879,0.99999988079071,-0.000467388890683651,0.000104704973637126,1,-0.000111945533717517,6.31245275144465e-005,1,-5.27763113495894e-005,0.000152536813402548,1,-0.000134493602672592,-6.04636568368733e-007,1,5.47791114513529e-006,-6.87653084696649e-007,1,6.23002824795549e-006,-7.70673636907304e-007,1,6.98218082106905e-006,-9.36711728627415e-007,1,8.48645868245512e-006,-6.87656097397849e-007,1,6.23005553279654e-006,-4.38600523011701e-007,1,3.97365147364326e-006,
- 1.95113852896611e-006,1,3.09192216718657e-007,-0.00752137694507837,0.999971330165863,-0.000868780189193785,2.2581048142456e-006,1,5.95692370097822e-007,1.98488305613864e-006,1,5.26437986536621e-007,-0.00752137694507837,0.999971330165863,-0.000868780189193785,2.27036684918858e-006,1,2.34163550771882e-007,2.6545565106062e-006,1,6.99851227636827e-007,2.2581048142456e-006,1,5.95692370097822e-007,0.00261958362534642,0.999996662139893,-0.000107640022179112,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,4.89470075990539e-005,1,1.73614432696922e-006,0,1,2.43462136495509e-006,0.00250530405901372,0.999996900558472,-0.000335396092850715,0.000934981799218804,0.999999582767487,-0.000123615522170439,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,0.00261958362534642,0.999996662139893,-0.000107640022179112,0.00263329432345927,0.999996542930603,-0.000358032702933997,0.000976778217591345,0.999999582767487,-0.00014333357103169,-0.000194175459910184,1,5.02907423651777e-005,-0.000818932254333049,0.999999761581421,0.000169244143762626,0.00297151762060821,0.999995589256287,-0.000128913743537851,0.00107488164212555,0.999999403953552,-2.98462673526956e-005,0.000976778217591345,0.999999582767487,-0.00014333357103169,0.00263329432345927,0.999996542930603,-0.000358032702933997,0.000126308674225584,1,1.83168117473542e-006,0.000126304090372287,1,1.50449363900407e-006,0.000126295475638472,1,8.90499904926401e-007,4.89470075990539e-005,1,1.73614432696922e-006,6.58020144328475e-005,1,1.69687245943351e-006,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,0.000934981799218804,0.999999582767487,-0.000123615522170439,2.43611964378943e-007,1,2.26942165681976e-006,8.64171809666914e-008,1,2.14928377317847e-006,8.87777048319549e-007,1,2.34893559536431e-006,6.3176327103065e-007,1,2.37924973589543e-006,-0.000157649745233357,1,4.37009475717787e-005,9.11335803266411e-007,1,2.41117527366441e-006,0.79453831911087,0.601018965244293,-0.0865167900919914,0.794419705867767,0.601010799407959,-0.0876551643013954,0.789405107498169,0.601287126541138,-0.123666353523731,
- 0.789681851863861,0.601286172866821,-0.121892102062702,0.799200892448425,0.600845277309418,-0.0162188317626715,0.798670649528503,0.600875616073608,-0.0327687375247478,0.794419705867767,0.601010799407959,-0.0876551643013954,0.79453831911087,0.601018965244293,-0.0865167900919914,-0.0123300505802035,0.0433852635324001,-0.99898236989975,-0.0130971763283014,0.0429204627871513,-0.998992681503296,-0.0138642909005284,0.0424556210637093,-0.99900221824646,-0.0130971744656563,0.0429204627871513,-0.998992621898651,-4.85146892970079e-006,1,0,-1.66503491527692e-006,1,0,9.95954337668081e-007,1,-0,-4.27744566877664e-007,1,0,-1.13959811187669e-006,1,0,-2.37688573179184e-006,1,0,-0.95330685377121,-2.68127769231796e-006,0.30200332403183,-0.953335046768188,-2.84519046545029e-007,0.301914423704147,-0.93569278717041,-0.00136703229509294,0.352813214063644,-0.935680985450745,-0.00136701588053256,0.352844536304474,-4.73303259695967e-007,1,-3.29722183778358e-007,6.37200428172946e-005,0.999996364116669,0.00270052626729012,0.00107488164212555,0.999999403953552,-2.98462673526956e-005,0.00297151762060821,0.999995589256287,-0.000128913743537851,6.58020144328475e-005,1,1.69687245943351e-006,4.89470075990539e-005,1,1.73614432696922e-006,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,8.64171809666914e-008,1,2.14928377317847e-006,0.799719989299774,0.600373268127441,3.8710250009899e-006,0.799719989299774,0.600373268127441,2.70971554527932e-006,0.798670649528503,0.600875616073608,-0.0327687375247478,0.799200892448425,0.600845277309418,-0.0162188317626715,1.1032861948479e-006,1,-2.85819083956085e-007,1.10328903701884e-006,1,-2.85819851342239e-007,1.28716601466294e-006,1,-3.33455290046913e-007,1.65492588166671e-006,1,-4.28727872758827e-007,1.37910456032841e-006,1,-3.57273165718652e-007,-0.000668029126245528,0.99999988079071,0.000140868156449869,-0.000157649745233357,1,4.37009475717787e-005,0.000934981799218804,0.999999582767487,-0.000123615522170439,0.00250530405901372,0.999996900558472,-0.000335396092850715,-0.000157649745233357,1,4.37009475717787e-005,
- 6.3176327103065e-007,1,2.37924973589543e-006,2.43611964378943e-007,1,2.26942165681976e-006,0.000934981799218804,0.999999582767487,-0.000123615522170439,-0.00942334160208702,0.999937534332275,-0.00601501855999231,0.0054631195962429,0.999824404716492,0.0179232265800238,-0.00658487854525447,0.99981701374054,0.0179617032408714,0.0125924237072468,0.999902188777924,-0.00610108347609639,0.00060201867017895,0.999904274940491,-0.0138238649815321,-0.662204146385193,0.601367950439453,0.447037309408188,-0.695626318454742,0.600764930248261,0.393936067819595,-0.695608675479889,0.600764870643616,0.393967151641846,-0.679314315319061,0.60101705789566,0.421082675457001,-0.583651423454285,0.599408209323883,0.547778189182281,-0.662204146385193,0.601367950439453,0.447037309408188,-0.679314315319061,0.60101705789566,0.421082675457001,-0.584013700485229,0.599405586719513,0.547394752502441,-0.513565063476563,0.601528882980347,0.611893832683563,-0.583651423454285,0.599408209323883,0.547778189182281,-0.584013700485229,0.599405586719513,0.547394752502441,-0.515054404735565,0.60152804851532,0.610641539096832,-0.297310173511505,0.600072801113129,0.742643475532532,-0.403114289045334,0.601877391338348,0.689378321170807,-0.401004761457443,0.601875722408295,0.690608978271484,-0.351723849773407,0.598936438560486,0.719420313835144,-0.158056244254112,0.599914968013763,0.784296095371246,-0.297310173511505,0.600072801113129,0.742643475532532,-0.351723849773407,0.598936438560486,0.719420313835144,-0.159080982208252,0.599920153617859,0.784084856510162,-0.0762286782264709,0.601501286029816,0.795226633548737,-0.158056244254112,0.599914968013763,0.784296095371246,-0.159080982208252,0.599920153617859,0.784084856510162,-0.0782661885023117,0.601500153541565,0.795029640197754,-0.798927962779999,0.600794792175293,0.0275636799633503,-0.799773991107941,0.600301384925842,7.74295585870277e-007,-0.799773991107941,0.600301384925842,1.54859117174055e-006,-0.798936784267426,0.600777447223663,0.0276875868439674,-0.793361186981201,0.599986672401428,0.102927647531033,-0.798927962779999,0.600794792175293,0.0275636799633503,
- -0.798936784267426,0.600777447223663,0.0276875868439674,-0.786364614963531,0.599421858787537,0.149412751197815,-0.774904191493988,0.601211309432983,0.195111453533173,-0.793361186981201,0.599986672401428,0.102927647531033,-0.786364614963531,0.599421858787537,0.149412751197815,-0.775257587432861,0.60121077299118,0.193703830242157,-0.767982184886932,0.213961273431778,0.603675246238709,-0.611708283424377,0.0195461418479681,0.790841996669769,-0.431656658649445,-0.0196309648454189,0.901824414730072,-0.412814766168594,-0.835275530815125,0.363178700208664,0.071530669927597,0.982255041599274,0.173373833298683,-0.767982184886932,0.213961273431778,0.603675246238709,-0.0974813848733902,0.984172880649567,0.147990539669991,-0.0157353021204472,0.997827768325806,-0.0639703869819641,-0.0256151761859655,0.999388337135315,-0.0238082092255354,-0.0291199870407581,0.998732388019562,-0.0410572290420532,0.0404116101562977,0.99853640794754,0.0359432883560658,0.0352326966822147,0.998483180999756,0.042309544980526,-0.767982184886932,0.213961273431778,0.603675246238709,0.071530669927597,0.982255041599274,0.173373833298683,-0.611708283424377,0.0195461418479681,0.790841996669769,-0.431656658649445,-0.0196309648454189,0.901824414730072,-0.311490565538406,-0.919642925262451,-0.239229187369347,-0.412814766168594,-0.835275530815125,0.363178700208664,0.561679184436798,-0.682483792304993,-0.467688411474228,0.0652133896946907,-0.996604323387146,-0.0502707958221436,0.589057862758636,-0.0315632671117783,-0.807474255561829,-0.311490565538406,-0.919642925262451,-0.239229187369347,0.0652133896946907,-0.996604323387146,-0.0502707958221436,0.561679184436798,-0.682483792304993,-0.467688411474228,-0.412814766168594,-0.835275530815125,0.363178700208664,0.638573825359344,0.00949583109468222,-0.769501984119415,0.713247656822205,-0.363749384880066,-0.599136114120483,0.561679184436798,-0.682483792304993,-0.467688411474228,0.589057862758636,-0.0315632671117783,-0.807474255561829,0.638573825359344,0.00949583109468222,-0.769501984119415,-0.158558622002602,0.961522579193115,-0.224351316690445,
- 0.713247656822205,-0.363749384880066,-0.599136114120483,0.112332157790661,-0.0145723344758153,-0.993563890457153,-0.000731578154955059,-0.610235929489136,-0.792219460010529,0.00249339011497796,0.193430751562119,-0.981110870838165,-0.11717564612627,0.0376771166920662,-0.992396295070648,0.0587151870131493,-0.995998740196228,-0.0673727765679359,0.00192648405209184,-0.0140806743875146,-0.999899089336395,0.188090786337852,-0.528627097606659,-0.827753126621246,-0.000731578154955059,-0.610235929489136,-0.792219460010529,-0.149178251624107,-0.984681785106659,-0.0902641639113426,0.0772447064518929,-0.99186497926712,0.101179122924805,-0.00845310091972351,-0.797663807868958,0.603043079376221,-0.11717564612627,0.0376771166920662,-0.992396295070648,0.444877177476883,0.894677460193634,-0.0404543243348598,-0.185837343335152,0.977411866188049,-0.100650414824486,0.708565354347229,0.035713542252779,-0.704740822315216,0.383506804704666,-0.918081164360046,-0.100247524678707,0.0587151870131493,-0.995998740196228,-0.0673727765679359,0.188090786337852,-0.528627097606659,-0.827753126621246,0.00192648405209184,-0.0140806743875146,-0.999899089336395,-0.164865493774414,-0.0609519965946674,-0.984430968761444,0.188090786337852,-0.528627097606659,-0.827753126621246,-0.0454447120428085,0.998866260051727,0.0141748152673244,-0.0355796925723553,0.999261140823364,0.0145346242934465,0.0341887511312962,0.999411642551422,-0.00277598085813224,0.0392034538090229,0.999129056930542,0.0142951030284166,0.0188345648348331,0.999567091464996,0.0226049609482288,0.112332157790661,-0.0145723344758153,-0.993563890457153,-0.149178251624107,-0.984681785106659,-0.0902641639113426,-0.000731578154955059,-0.610235929489136,-0.792219460010529,0.00249339011497796,0.193430751562119,-0.981110870838165,0.444877177476883,0.894677460193634,-0.0404543243348598,-0.11717564612627,0.0376771166920662,-0.992396295070648,-0.00845310091972351,-0.797663807868958,0.603043079376221,-0.0715003460645676,-0.0184880960732698,0.99726927280426,0.283392786979675,0.00146106234751642,0.95900285243988,
- 0.00727195991203189,0.0432373508810997,0.999038398265839,0.0172884948551655,0.0325097180902958,0.99932187795639,0.283392786979675,0.00146106234751642,0.95900285243988,-0.0715003460645676,-0.0184880960732698,0.99726927280426,-0.043323926627636,-0.0215199310332537,0.998829305171967,-0.501832246780396,0.0288238488137722,0.864484667778015,-0.0715003460645676,-0.0184880960732698,0.99726927280426,0.0772447064518929,-0.99186497926712,0.101179122924805,-0.102414533495903,-0.99096417427063,0.0866097882390022,-0.043323926627636,-0.0215199310332537,0.998829305171967,0.0100320903584361,0.838078320026398,0.545457780361176,-0.21963956952095,0.975572764873505,-0.00403217319399118,-0.052124135196209,0.996147751808167,-0.0705187097191811,-0.0464420765638351,0.989131927490234,0.139503419399261,-0.00165287777781487,0.997657299041748,0.068390004336834,-0.575144350528717,-0.00522039132192731,0.818035364151001,-0.545341908931732,0.03025146946311,0.83766770362854,-0.299612790346146,0.928823947906494,-0.217986911535263,0.549268782138824,0.717800438404083,-0.427862465381622,0.0495752841234207,0.998421192169189,0.0264084376394749,0.109455987811089,0.992282927036285,0.0582589358091354,-0.304304152727127,0.952517628669739,0.0104518895968795,0.283392786979675,0.00146106234751642,0.95900285243988,0.0172884948551655,0.0325097180902958,0.99932187795639,0.0772447064518929,-0.99186497926712,0.101179122924805,-0.0715003460645676,-0.0184880960732698,0.99726927280426,-0.00845310091972351,-0.797663807868958,0.603043079376221,0.0100320903584361,0.838078320026398,0.545457780361176,-0.304304152727127,0.952517628669739,0.0104518895968795,-0.21963956952095,0.975572764873505,-0.00403217319399118,0.0100320903584361,0.838078320026398,0.545457780361176,0.00727195991203189,0.0432373508810997,0.999038398265839,0.283392786979675,0.00146106234751642,0.95900285243988,-0.304304152727127,0.952517628669739,0.0104518895968795,-0.246472552418709,-0.961566209793091,-0.121003024280071,0.345587342977524,-0.0128862783312798,-0.938298165798187,0.339472711086273,-0.020890174433589,-0.940383911132813,
- -0.253408253192902,-0.944080412387848,-0.210942193865776,0.473378121852875,-0.0270454920828342,-0.880444049835205,0.065245158970356,0.99774956703186,0.0154619459062815,0.303159445524216,0.950662195682526,0.0658475011587143,0.337626934051514,0.0219126790761948,-0.941024959087372,-0.392736196517944,-0.480659663677216,0.784043908119202,-0.533071458339691,-0.424929141998291,0.731621503829956,-0.0965144336223602,-0.99409818649292,0.0495369285345078,0.104092113673687,-0.986159145832062,0.129054665565491,0.345587342977524,-0.0128862783312798,-0.938298165798187,0.473378121852875,-0.0270454920828342,-0.880444049835205,0.337626934051514,0.0219126790761948,-0.941024959087372,0.339472711086273,-0.020890174433589,-0.940383911132813,-0.538827955722809,-0.0174195840954781,0.842235684394836,-0.343870341777802,-0.0109529988840222,0.938953340053558,-0.533071458339691,-0.424929141998291,0.731621503829956,-0.392736196517944,-0.480659663677216,0.784043908119202,0.23821197450161,0.0432148315012455,0.970251321792603,-0.34538072347641,0.937992930412292,-0.0296905264258385,-0.0523053482174873,0.562165796756744,0.825369000434875,-0.34538072347641,0.937992930412292,-0.0296905264258385,-0.197218477725983,0.965530335903168,0.169870734214783,-0.0523053482174873,0.562165796756744,0.825369000434875,-0.215427935123444,-0.0528930425643921,-0.975086212158203,0.105753406882286,0.991542994976044,-0.0752246081829071,0.0144980736076832,0.997882008552551,-0.0634147152304649,-0.444037407636642,0.00733501836657524,-0.895978271961212,-0.164466440677643,-0.963067531585693,-0.213194191455841,0.508616030216217,-0.860589146614075,0.0263869427144527,0.188090786337852,-0.528627097606659,-0.827753126621246,0.188090786337852,-0.528627097606659,-0.827753126621246,0.0510945878922939,-0.0409318320453167,-0.997854769229889,0.352691203355789,-0.00988862849771976,-0.935687601566315,0.23821197450161,0.0432148315012455,0.970251321792603,-0.397880375385284,-0.0861771628260612,0.913380920886993,-0.455985546112061,-0.048213753849268,0.888680398464203,-0.445110440254211,-0.111683741211891,0.888483822345734,
- 0.0174160208553076,-0.992365777492523,-0.122094124555588,-0.310943871736526,0.923469066619873,0.224764093756676,-0.935296654701233,-0.182832360267639,0.302972763776779,-0.12499263882637,0.987685739994049,-0.0940944999456406,-0.174600288271904,0.822012662887573,0.54204249382019,-0.275858223438263,0.549198627471924,0.788849234580994,-0.0965456366539001,0.0216318909078836,0.995093524456024,-0.124897971749306,0.992116332054138,0.0102800140157342,-0.124897971749306,0.992116332054138,0.0102800140157342,0.0772027671337128,0.989740371704102,0.120223559439182,-0.174600288271904,0.822012662887573,0.54204249382019,0.884800732135773,0.301437169313431,0.355335623025894,-0.537198841571808,-0.612332105636597,-0.580057561397552,-0.951266884803772,0.0168953947722912,-0.30790588259697,-0.303168177604675,-0.892225027084351,-0.334699273109436,0.811153829097748,0.582749247550964,-0.049323745071888,-0.688266932964325,-0.334989845752716,-0.64348304271698,0.424828737974167,0.875746548175812,0.229322075843811,0.540110528469086,-0.0145280389115214,0.841468751430511,0.248345166444778,-0.870902538299561,0.42409148812294,0.7009397149086,-0.666886627674103,0.252875119447708,-0.303168177604675,-0.892225027084351,-0.334699273109436,0.0641742348670959,-0.988932013511658,0.133773043751717,-0.537198841571808,-0.612332105636597,-0.580057561397552,0.811153829097748,0.582749247550964,-0.049323745071888,0.362263083457947,0.0185434017330408,-0.931891441345215,-0.951266884803772,0.0168953947722912,-0.30790588259697,-0.705644309520721,0.54327118396759,0.454887330532074,-0.613832414150238,-0.0508540272712708,0.78779673576355,-0.207646384835243,0.0103727728128433,0.978148996829987,-0.293602526187897,0.805665194988251,0.514491260051727,-0.493416786193848,0.0194853991270065,0.869574785232544,0.248345166444778,-0.870902538299561,0.42409148812294,0.0641742348670959,-0.988932013511658,0.133773043751717,-0.947624504566193,-0.0276603847742081,0.318186670541763,-0.293602526187897,0.805665194988251,0.514491260051727,-0.241090893745422,0.956691145896912,-0.163148686289787,
- -0.784164011478424,0.619283258914948,-0.0396899245679379,-0.705644309520721,0.54327118396759,0.454887330532074,0.0142796328291297,-0.999729514122009,-0.01836265809834,0.552630245685577,0.00290122255682945,-0.833421528339386,0.782008707523346,-0.0365884490311146,-0.622192740440369,-0.295717120170593,-0.836851358413696,-0.460685431957245,0.720601558685303,0.041816059499979,-0.692087352275848,0.573400437831879,0.713783442974091,-0.402150630950928,0.129002749919891,0.988471508026123,0.079261489212513,0.640131592750549,0.0149509450420737,-0.768119931221008,-0.0975023210048676,-0.995198845863342,-0.00852631870657206,-0.170026138424873,-0.982489347457886,-0.0761963054537773,0.0142796328291297,-0.999729514122009,-0.01836265809834,-0.295717120170593,-0.836851358413696,-0.460685431957245,0.640131592750549,0.0149509450420737,-0.768119931221008,0.693665623664856,-0.00466822506859899,-0.720282077789307,0.720601558685303,0.041816059499979,-0.692087352275848,-0.855104804039001,-0.0171655975282192,0.518170952796936,-0.545341908931732,0.03025146946311,0.83766770362854,-0.575144350528717,-0.00522039132192731,0.818035364151001,-0.627612888813019,-0.00209394842386246,0.778522789478302,-0.855104804039001,-0.0171655975282192,0.518170952796936,-0.0975023210048676,-0.995198845863342,-0.00852631870657206,-0.311490565538406,-0.919642925262451,-0.239229187369347,-0.431656658649445,-0.0196309648454189,0.901824414730072,-0.416796952486038,0.0135361831635237,0.908898949623108,-0.0597069039940834,0.998188018798828,0.00747900828719139,-0.293602526187897,0.805665194988251,0.514491260051727,-0.0597069039940834,0.998188018798828,0.00747900828719139,-0.241090893745422,0.956691145896912,-0.163148686289787,-0.293602526187897,0.805665194988251,0.514491260051727,0.813914120197296,0.0259254705160856,-0.580406546592712,-0.0342252030968666,0.993275105953217,-0.110604599118233,0.573400437831879,0.713783442974091,-0.402150630950928,0.720601558685303,0.041816059499979,-0.692087352275848,0.693665623664856,-0.00466822506859899,-0.720282077789307,0.813914120197296,0.0259254705160856,-0.580406546592712,
- 0.720601558685303,0.041816059499979,-0.692087352275848,0.345877081155777,-0.92628026008606,0.14957931637764,0.50398987531662,-0.0360639132559299,-0.862956404685974,0.552630245685577,0.00290122255682945,-0.833421528339386,0.0142796328291297,-0.999729514122009,-0.01836265809834,-0.153685122728348,-0.98649936914444,-0.0565688014030457,0.345877081155777,-0.92628026008606,0.14957931637764,0.0142796328291297,-0.999729514122009,-0.01836265809834,-0.170026138424873,-0.982489347457886,-0.0761963054537773,-0.947624504566193,-0.0276603847742081,0.318186670541763,0.0641742348670959,-0.988932013511658,0.133773043751717,-0.153685122728348,-0.98649936914444,-0.0565688014030457,-0.469817370176315,-0.0319305434823036,0.882186055183411,-0.293602526187897,0.805665194988251,0.514491260051727,-0.207646384835243,0.0103727728128433,0.978148996829987,-0.416796952486038,0.0135361831635237,0.908898949623108,-0.705644309520721,0.54327118396759,0.454887330532074,-0.784164011478424,0.619283258914948,-0.0396899245679379,-0.401866555213928,0.889534711837769,-0.217328026890755,-0.424093723297119,0.899096488952637,0.108490154147148,0.814196228981018,0.0478688105940819,-0.578613221645355,-0.695951819419861,0.583186626434326,-0.418980360031128,-0.647811770439148,0.397855162620544,-0.649654746055603,0.752199053764343,0.298641413450241,-0.587375581264496,0.202923282980919,-0.0412393398582935,-0.97832590341568,0.814196228981018,0.0478688105940819,-0.578613221645355,0.752199053764343,0.298641413450241,-0.587375581264496,0.0758186206221581,-0.352816939353943,-0.932615518569946,0.463307619094849,-0.873412847518921,0.149986863136292,0.202923282980919,-0.0412393398582935,-0.97832590341568,0.0758186206221581,-0.352816939353943,-0.932615518569946,0.7009397149086,-0.666886627674103,0.252875119447708,0.182977125048637,-0.970677375793457,0.155899897217751,0.463307619094849,-0.873412847518921,0.149986863136292,0.7009397149086,-0.666886627674103,0.252875119447708,0.248345166444778,-0.870902538299561,0.42409148812294,-0.00799307785928249,-0.0211448706686497,0.999744534492493,
- 0.182977125048637,-0.970677375793457,0.155899897217751,0.248345166444778,-0.870902538299561,0.42409148812294,-0.493416786193848,0.0194853991270065,0.869574785232544,-0.424093723297119,0.899096488952637,0.108490154147148,-0.803150057792664,0.00912196654826403,0.59570699930191,-0.613832414150238,-0.0508540272712708,0.78779673576355,-0.705644309520721,0.54327118396759,0.454887330532074,-0.424093723297119,0.899096488952637,0.108490154147148,0.131829887628555,0.98448383808136,0.115812882781029,-0.706084430217743,0.0251433812081814,0.707681179046631,-0.424093723297119,0.899096488952637,0.108490154147148,-0.401866555213928,0.889534711837769,-0.217328026890755,0.131829887628555,0.98448383808136,0.115812882781029,-0.392736196517944,-0.480659663677216,0.784043908119202,0.104092113673687,-0.986159145832062,0.129054665565491,-0.538827955722809,-0.0174195840954781,0.842235684394836,-0.706084430217743,0.0251433812081814,0.707681179046631,-0.803150057792664,0.00912196654826403,0.59570699930191,-0.424093723297119,0.899096488952637,0.108490154147148,0.252322316169739,0.958389043807983,0.133507087826729,-0.478945851325989,0.0228871311992407,0.877546191215515,-0.275858223438263,0.549198627471924,0.788849234580994,-0.174600288271904,0.822012662887573,0.54204249382019,0.0772027671337128,0.989740371704102,0.120223559439182,0.252322316169739,0.958389043807983,0.133507087826729,-0.174600288271904,0.822012662887573,0.54204249382019,-0.444037407636642,0.00733501836657524,-0.895978271961212,0.0144980736076832,0.997882008552551,-0.0634147152304649,-0.0628053322434425,0.994233846664429,-0.0869180038571358,0.539275348186493,0.0313898660242558,-0.841544389724731,0.188090786337852,-0.528627097606659,-0.827753126621246,0.352691203355789,-0.00988862849771976,-0.935687601566315,0.353277921676636,-0.0149686858057976,-0.935398638248444,0.353277921676636,-0.0149686858057976,-0.935398638248444,0.0513278916478157,-0.996743202209473,-0.0621967427432537,0.188090786337852,-0.528627097606659,-0.827753126621246,-0.466828227043152,-0.341260552406311,0.815850853919983,
- -0.227840378880501,-0.973567724227905,0.015956811606884,-0.0965144336223602,-0.99409818649292,0.0495369285345078,-0.533071458339691,-0.424929141998291,0.731621503829956,-0.273794502019882,-0.0286214984953403,0.961362302303314,-0.227840378880501,-0.973567724227905,0.015956811606884,-0.466828227043152,-0.341260552406311,0.815850853919983,-0.273794502019882,-0.0286214984953403,0.961362302303314,-0.466828227043152,-0.341260552406311,0.815850853919983,-0.533071458339691,-0.424929141998291,0.731621503829956,-0.343870341777802,-0.0109529988840222,0.938953340053558,0.708565354347229,0.035713542252779,-0.704740822315216,-0.185837343335152,0.977411866188049,-0.100650414824486,0.105753406882286,0.991542994976044,-0.0752246081829071,-0.974662780761719,-0.152160719037056,0.163950443267822,0.508616030216217,-0.860589146614075,0.0263869427144527,0.383506804704666,-0.918081164360046,-0.100247524678707,0.188090786337852,-0.528627097606659,-0.827753126621246,0.188090786337852,-0.528627097606659,-0.827753126621246,-0.164865493774414,-0.0609519965946674,-0.984430968761444,0.0510945878922939,-0.0409318320453167,-0.997854769229889,-0.370324552059174,0.711888492107391,0.596719861030579,-0.442940562963486,0.0297484248876572,0.896057426929474,-0.397880375385284,-0.0861771628260612,0.913380920886993,-0.0523053482174873,0.562165796756744,0.825369000434875,-0.501832246780396,0.0288238488137722,0.864484667778015,0.030771154910326,0.997429728507996,0.0647069662809372,-0.304304152727127,0.952517628669739,0.0104518895968795,0.0172884948551655,0.0325097180902958,0.99932187795639,0.030771154910326,0.997429728507996,0.0647069662809372,-0.12499263882637,0.987685739994049,-0.0940944999456406,-0.052124135196209,0.996147751808167,-0.0705187097191811,-0.21963956952095,0.975572764873505,-0.00403217319399118,-0.304304152727127,0.952517628669739,0.0104518895968795,-0.627612888813019,-0.00209394842386246,0.778522789478302,-0.469817370176315,-0.0319305434823036,0.882186055183411,-0.426532596349716,0.0140515007078648,0.904363095760345,0.348616629838943,0.876264870166779,0.332605540752411,
- -0.787287771701813,0.0307431519031525,0.615818977355957,-0.575144350528717,-0.00522039132192731,0.818035364151001,-0.00165287777781487,0.997657299041748,0.068390004336834,0.00201140344142914,0.996555626392365,-0.0829030722379684,0.0495752841234207,0.998421192169189,0.0264084376394749,0.549268782138824,0.717800438404083,-0.427862465381622,-0.784164011478424,0.619283258914948,-0.0396899245679379,-0.241090893745422,0.956691145896912,-0.163148686289787,0.425128251314163,0.875541806221008,0.229548960924149,-0.387817323207855,0.818066477775574,-0.424694001674652,-0.401866555213928,0.889534711837769,-0.217328026890755,-0.784164011478424,0.619283258914948,-0.0396899245679379,-0.387817323207855,0.818066477775574,-0.424694001674652,-0.320720016956329,0.915349125862122,-0.243463858962059,-0.613832414150238,-0.0508540272712708,0.78779673576355,-0.803150057792664,0.00912196654826403,0.59570699930191,-0.00799307785928249,-0.0211448706686497,0.999744534492493,-0.493416786193848,0.0194853991270065,0.869574785232544,-0.207646384835243,0.0103727728128433,0.978148996829987,-0.613832414150238,-0.0508540272712708,0.78779673576355,-0.493416786193848,0.0194853991270065,0.869574785232544,-0.947624504566193,-0.0276603847742081,0.318186670541763,-0.275858223438263,0.549198627471924,0.788849234580994,-0.478945851325989,0.0228871311992407,0.877546191215515,-0.332786977291107,-0.00298951799049973,0.942997336387634,-0.340271443128586,-0.0345659889280796,0.939691722393036,0.122388377785683,-0.98466831445694,0.124296382069588,-0.227840378880501,-0.973567724227905,0.015956811606884,-0.273794502019882,-0.0286214984953403,0.961362302303314,0.0513278916478157,-0.996743202209473,-0.0621967427432537,-0.164466440677643,-0.963067531585693,-0.213194191455841,0.188090786337852,-0.528627097606659,-0.827753126621246,-0.0965144336223602,-0.99409818649292,0.0495369285345078,-0.246472552418709,-0.961566209793091,-0.121003024280071,-0.253408253192902,-0.944080412387848,-0.210942193865776,0.104092113673687,-0.986159145832062,0.129054665565491,-0.538827955722809,-0.0174195840954781,0.842235684394836,
- 0.104092113673687,-0.986159145832062,0.129054665565491,0.182977125048637,-0.970677375793457,0.155899897217751,-0.00799307785928249,-0.0211448706686497,0.999744534492493,-0.332786977291107,-0.00298951799049973,0.942997336387634,-0.0965456366539001,0.0216318909078836,0.995093524456024,-0.275858223438263,0.549198627471924,0.788849234580994,-0.855104804039001,-0.0171655975282192,0.518170952796936,-0.627612888813019,-0.00209394842386246,0.778522789478302,-0.426532596349716,0.0140515007078648,0.904363095760345,-0.426532596349716,0.0140515007078648,0.904363095760345,-0.446833461523056,-0.826299369335175,0.342883735895157,-0.0975023210048676,-0.995198845863342,-0.00852631870657206,-0.855104804039001,-0.0171655975282192,0.518170952796936,-0.446833461523056,-0.826299369335175,0.342883735895157,-0.170026138424873,-0.982489347457886,-0.0761963054537773,-0.0975023210048676,-0.995198845863342,-0.00852631870657206,-0.153685122728348,-0.98649936914444,-0.0565688014030457,-0.170026138424873,-0.982489347457886,-0.0761963054537773,-0.446833461523056,-0.826299369335175,0.342883735895157,-0.469817370176315,-0.0319305434823036,0.882186055183411,-0.153685122728348,-0.98649936914444,-0.0565688014030457,-0.446833461523056,-0.826299369335175,0.342883735895157,-0.426532596349716,0.0140515007078648,0.904363095760345,-0.627612888813019,-0.00209394842386246,0.778522789478302,-0.575144350528717,-0.00522039132192731,0.818035364151001,-0.787287771701813,0.0307431519031525,0.615818977355957,-0.469817370176315,-0.0319305434823036,0.882186055183411,-0.455985546112061,-0.048213753849268,0.888680398464203,0.240198895335197,-0.0434738546609879,0.969749689102173,-0.18004022538662,-0.353763818740845,0.917843520641327,-0.445110440254211,-0.111683741211891,0.888483822345734,-0.455985546112061,-0.048213753849268,0.888680398464203,-0.18004022538662,-0.353763818740845,0.917843520641327,-0.340271443128586,-0.0345659889280796,0.939691722393036,-0.445110440254211,-0.111683741211891,0.888483822345734,-0.18004022538662,-0.353763818740845,0.917843520641327,-0.18004022538662,-0.353763818740845,0.917843520641327,
- -0.116143949329853,-0.625906348228455,0.771201550960541,0.122388377785683,-0.98466831445694,0.124296382069588,-0.340271443128586,-0.0345659889280796,0.939691722393036,0.0807952433824539,-0.9958376288414,0.0421849563717842,0.122388377785683,-0.98466831445694,0.124296382069588,-0.116143949329853,-0.625906348228455,0.771201550960541,-0.116143949329853,-0.625906348228455,0.771201550960541,0.61793726682663,-0.778763175010681,0.108081258833408,0.0807952433824539,-0.9958376288414,0.0421849563717842,-0.116143949329853,-0.625906348228455,0.771201550960541,0.342364877462387,-0.939548015594482,0.00599716417491436,0.61793726682663,-0.778763175010681,0.108081258833408,-0.102414533495903,-0.99096417427063,0.0866097882390022,0.342364877462387,-0.939548015594482,0.00599716417491436,-0.116143949329853,-0.625906348228455,0.771201550960541,-0.043323926627636,-0.0215199310332537,0.998829305171967,-0.102414533495903,-0.99096417427063,0.0866097882390022,-0.116143949329853,-0.625906348228455,0.771201550960541,-0.18004022538662,-0.353763818740845,0.917843520641327,0.240198895335197,-0.0434738546609879,0.969749689102173,-0.043323926627636,-0.0215199310332537,0.998829305171967,-0.18004022538662,-0.353763818740845,0.917843520641327,-0.501832246780396,0.0288238488137722,0.864484667778015,-0.442940562963486,0.0297484248876572,0.896057426929474,-0.370324552059174,0.711888492107391,0.596719861030579,-0.370324552059174,0.711888492107391,0.596719861030579,0.030771154910326,0.997429728507996,0.0647069662809372,-0.501832246780396,0.0288238488137722,0.864484667778015,-0.370324552059174,0.711888492107391,0.596719861030579,0.0153129175305367,0.986684739589691,0.161922127008438,0.030771154910326,0.997429728507996,0.0647069662809372,0.759581208229065,-0.0777258947491646,-0.645751714706421,-0.310943871736526,0.923469066619873,0.224764093756676,0.0174160208553076,-0.992365777492523,-0.122094124555588,-0.370324552059174,0.711888492107391,0.596719861030579,-0.397880375385284,-0.0861771628260612,0.913380920886993,-0.442940562963486,0.0297484248876572,0.896057426929474,
- 0.240198895335197,-0.0434738546609879,0.969749689102173,-0.455985546112061,-0.048213753849268,0.888680398464203,-0.0523053482174873,0.562165796756744,0.825369000434875,-0.397880375385284,-0.0861771628260612,0.913380920886993,0.23821197450161,0.0432148315012455,0.970251321792603,-0.34538072347641,0.937992930412292,-0.0296905264258385,-0.15781070291996,0.982802391052246,-0.0958917289972305,0.0451212115585804,0.997392117977142,-0.0563308298587799,-0.197218477725983,0.965530335903168,0.169870734214783,0.109455987811089,0.992282927036285,0.0582589358091354,0.0495752841234207,0.998421192169189,0.0264084376394749,-0.00165287777781487,0.997657299041748,0.068390004336834,-0.299612790346146,0.928823947906494,-0.217986911535263,0.640131592750549,0.0149509450420737,-0.768119931221008,0.129002749919891,0.988471508026123,0.079261489212513,-0.158558622002602,0.961522579193115,-0.224351316690445,0.638573825359344,0.00949583109468222,-0.769501984119415,0.552630245685577,0.00290122255682945,-0.833421528339386,0.693665623664856,-0.00466822506859899,-0.720282077789307,0.640131592750549,0.0149509450420737,-0.768119931221008,0.782008707523346,-0.0365884490311146,-0.622192740440369,0.50398987531662,-0.0360639132559299,-0.862956404685974,0.813914120197296,0.0259254705160856,-0.580406546592712,0.693665623664856,-0.00466822506859899,-0.720282077789307,0.552630245685577,0.00290122255682945,-0.833421528339386,0.362263083457947,0.0185434017330408,-0.931891441345215,0.424828737974167,0.875746548175812,0.229322075843811,-0.0342252030968666,0.993275105953217,-0.110604599118233,0.813914120197296,0.0259254705160856,-0.580406546592712,0.00201140344142914,0.996555626392365,-0.0829030722379684,0.348616629838943,0.876264870166779,0.332605540752411,-0.00165287777781487,0.997657299041748,0.068390004336834,0.0495752841234207,0.998421192169189,0.0264084376394749,-0.538827955722809,-0.0174195840954781,0.842235684394836,-0.0965456366539001,0.0216318909078836,0.995093524456024,-0.332786977291107,-0.00298951799049973,0.942997336387634,-0.343870341777802,-0.0109529988840222,0.938953340053558,
- -0.124897971749306,0.992116332054138,0.0102800140157342,-0.0965456366539001,0.0216318909078836,0.995093524456024,-0.706084430217743,0.0251433812081814,0.707681179046631,0.131829887628555,0.98448383808136,0.115812882781029,0.184660077095032,0.980399489402771,0.0686845853924751,0.0772027671337128,0.989740371704102,0.120223559439182,-0.124897971749306,0.992116332054138,0.0102800140157342,0.149840027093887,0.988636493682861,-0.0120814219117165,0.252322316169739,0.958389043807983,0.133507087826729,0.106550261378288,0.993819713592529,-0.0311372578144073,-0.15781070291996,0.982802391052246,-0.0958917289972305,-0.34538072347641,0.937992930412292,-0.0296905264258385,-0.34538072347641,0.937992930412292,-0.0296905264258385,0.23821197450161,0.0432148315012455,0.970251321792603,-0.478945851325989,0.0228871311992407,0.877546191215515,0.252322316169739,0.958389043807983,0.133507087826729,-0.340271443128586,-0.0345659889280796,0.939691722393036,0.23821197450161,0.0432148315012455,0.970251321792603,-0.445110440254211,-0.111683741211891,0.888483822345734,-0.149178251624107,-0.984681785106659,-0.0902641639113426,0.0587151870131493,-0.995998740196228,-0.0673727765679359,-0.102414533495903,-0.99096417427063,0.0866097882390022,0.0772447064518929,-0.99186497926712,0.101179122924805,-0.149178251624107,-0.984681785106659,-0.0902641639113426,0.112332157790661,-0.0145723344758153,-0.993563890457153,0.00192648405209184,-0.0140806743875146,-0.999899089336395,0.0587151870131493,-0.995998740196228,-0.0673727765679359,0.112332157790661,-0.0145723344758153,-0.993563890457153,-0.11717564612627,0.0376771166920662,-0.992396295070648,0.708565354347229,0.035713542252779,-0.704740822315216,0.00192648405209184,-0.0140806743875146,-0.999899089336395,0.0510945878922939,-0.0409318320453167,-0.997854769229889,-0.164865493774414,-0.0609519965946674,-0.984430968761444,0.708565354347229,0.035713542252779,-0.704740822315216,-0.215427935123444,-0.0528930425643921,-0.975086212158203,0.352691203355789,-0.00988862849771976,-0.935687601566315,0.0510945878922939,-0.0409318320453167,-0.997854769229889,
- -0.215427935123444,-0.0528930425643921,-0.975086212158203,-0.444037407636642,0.00733501836657524,-0.895978271961212,0.353277921676636,-0.0149686858057976,-0.935398638248444,0.352691203355789,-0.00988862849771976,-0.935687601566315,-0.444037407636642,0.00733501836657524,-0.895978271961212,0.539275348186493,0.0313898660242558,-0.841544389724731,0.452668040990829,-0.0123846773058176,-0.891593217849731,0.452668040990829,-0.0123846773058176,-0.891593217849731,0.114784188568592,-0.99194073677063,-0.0536489821970463,0.0513278916478157,-0.996743202209473,-0.0621967427432537,0.353277921676636,-0.0149686858057976,-0.935398638248444,0.0513278916478157,-0.996743202209473,-0.0621967427432537,0.122388377785683,-0.98466831445694,0.124296382069588,0.0807952433824539,-0.9958376288414,0.0421849563717842,-0.164466440677643,-0.963067531585693,-0.213194191455841,0.0807952433824539,-0.9958376288414,0.0421849563717842,0.61793726682663,-0.778763175010681,0.108081258833408,0.508616030216217,-0.860589146614075,0.0263869427144527,-0.164466440677643,-0.963067531585693,-0.213194191455841,0.61793726682663,-0.778763175010681,0.108081258833408,0.342364877462387,-0.939548015594482,0.00599716417491436,0.383506804704666,-0.918081164360046,-0.100247524678707,0.508616030216217,-0.860589146614075,0.0263869427144527,-0.611708283424377,0.0195461418479681,0.790841996669769,-0.545341908931732,0.03025146946311,0.83766770362854,-0.855104804039001,-0.0171655975282192,0.518170952796936,-0.431656658649445,-0.0196309648454189,0.901824414730072,-0.299612790346146,0.928823947906494,-0.217986911535263,-0.545341908931732,0.03025146946311,0.83766770362854,-0.611708283424377,0.0195461418479681,0.790841996669769,0.071530669927597,0.982255041599274,0.173373833298683,0.109455987811089,0.992282927036285,0.0582589358091354,-0.299612790346146,0.928823947906494,-0.217986911535263,0.071530669927597,0.982255041599274,0.173373833298683,-0.0157353021204472,0.997827768325806,-0.0639703869819641,0.425128251314163,0.875541806221008,0.229548960924149,-0.241090893745422,0.956691145896912,-0.163148686289787,
- -0.0597069039940834,0.998188018798828,0.00747900828719139,0.348616629838943,0.876264870166779,0.332605540752411,0.00201140344142914,0.996555626392365,-0.0829030722379684,-0.0597069039940834,0.998188018798828,0.00747900828719139,-0.416796952486038,0.0135361831635237,0.908898949623108,-0.787287771701813,0.0307431519031525,0.615818977355957,0.348616629838943,0.876264870166779,0.332605540752411,-0.469817370176315,-0.0319305434823036,0.882186055183411,-0.787287771701813,0.0307431519031525,0.615818977355957,-0.416796952486038,0.0135361831635237,0.908898949623108,-0.207646384835243,0.0103727728128433,0.978148996829987,-0.947624504566193,-0.0276603847742081,0.318186670541763,0.149840027093887,0.988636493682861,-0.0120814219117165,-0.124897971749306,0.992116332054138,0.0102800140157342,0.131829887628555,0.98448383808136,0.115812882781029,-0.401866555213928,0.889534711837769,-0.217328026890755,-0.320720016956329,0.915349125862122,-0.243463858962059,0.337626934051514,0.0219126790761948,-0.941024959087372,0.303159445524216,0.950662195682526,0.0658475011587143,-0.695951819419861,0.583186626434326,-0.418980360031128,0.814196228981018,0.0478688105940819,-0.578613221645355,0.339472711086273,-0.020890174433589,-0.940383911132813,0.337626934051514,0.0219126790761948,-0.941024959087372,0.814196228981018,0.0478688105940819,-0.578613221645355,0.202923282980919,-0.0412393398582935,-0.97832590341568,-0.253408253192902,-0.944080412387848,-0.210942193865776,0.339472711086273,-0.020890174433589,-0.940383911132813,0.202923282980919,-0.0412393398582935,-0.97832590341568,0.463307619094849,-0.873412847518921,0.149986863136292,0.104092113673687,-0.986159145832062,0.129054665565491,-0.253408253192902,-0.944080412387848,-0.210942193865776,0.463307619094849,-0.873412847518921,0.149986863136292,0.182977125048637,-0.970677375793457,0.155899897217751,-0.227840378880501,-0.973567724227905,0.015956811606884,0.122388377785683,-0.98466831445694,0.124296382069588,0.0513278916478157,-0.996743202209473,-0.0621967427432537,0.114784188568592,-0.99194073677063,-0.0536489821970463,
- -0.273794502019882,-0.0286214984953403,0.961362302303314,-0.478945851325989,0.0228871311992407,0.877546191215515,0.23821197450161,0.0432148315012455,0.970251321792603,-0.340271443128586,-0.0345659889280796,0.939691722393036,-0.332786977291107,-0.00298951799049973,0.942997336387634,-0.478945851325989,0.0228871311992407,0.877546191215515,-0.273794502019882,-0.0286214984953403,0.961362302303314,-0.343870341777802,-0.0109529988840222,0.938953340053558,0.184660077095032,0.980399489402771,0.0686845853924751,0.106550261378288,0.993819713592529,-0.0311372578144073,0.252322316169739,0.958389043807983,0.133507087826729,0.0772027671337128,0.989740371704102,0.120223559439182,0.539275348186493,0.0313898660242558,-0.841544389724731,-0.0628053322434425,0.994233846664429,-0.0869180038571358,0.065245158970356,0.99774956703186,0.0154619459062815,0.473378121852875,-0.0270454920828342,-0.880444049835205,0.452668040990829,-0.0123846773058176,-0.891593217849731,0.539275348186493,0.0313898660242558,-0.841544389724731,0.473378121852875,-0.0270454920828342,-0.880444049835205,0.345587342977524,-0.0128862783312798,-0.938298165798187,-0.246472552418709,-0.961566209793091,-0.121003024280071,0.114784188568592,-0.99194073677063,-0.0536489821970463,0.452668040990829,-0.0123846773058176,-0.891593217849731,0.345587342977524,-0.0128862783312798,-0.938298165798187,-0.227840378880501,-0.973567724227905,0.015956811606884,0.114784188568592,-0.99194073677063,-0.0536489821970463,-0.246472552418709,-0.961566209793091,-0.121003024280071,-0.0965144336223602,-0.99409818649292,0.0495369285345078,-0.706084430217743,0.0251433812081814,0.707681179046631,-0.0965456366539001,0.0216318909078836,0.995093524456024,-0.538827955722809,-0.0174195840954781,0.842235684394836,-0.00799307785928249,-0.0211448706686497,0.999744534492493,-0.803150057792664,0.00912196654826403,0.59570699930191,-0.501832246780396,0.0288238488137722,0.864484667778015,-0.043323926627636,-0.0215199310332537,0.998829305171967,0.240198895335197,-0.0434738546609879,0.969749689102173,-0.442940562963486,0.0297484248876572,0.896057426929474,
- 0.030771154910326,0.997429728507996,0.0647069662809372,0.0153129175305367,0.986684739589691,0.161922127008438,-0.12499263882637,0.987685739994049,-0.0940944999456406,0.00192648405209184,-0.0140806743875146,-0.999899089336395,0.708565354347229,0.035713542252779,-0.704740822315216,-0.164865493774414,-0.0609519965946674,-0.984430968761444,-0.102414533495903,-0.99096417427063,0.0866097882390022,0.0587151870131493,-0.995998740196228,-0.0673727765679359,0.383506804704666,-0.918081164360046,-0.100247524678707,0.342364877462387,-0.939548015594482,0.00599716417491436,0.782008707523346,-0.0365884490311146,-0.622192740440369,0.640131592750549,0.0149509450420737,-0.768119931221008,0.638573825359344,0.00949583109468222,-0.769501984119415,0.589057862758636,-0.0315632671117783,-0.807474255561829,-0.295717120170593,-0.836851358413696,-0.460685431957245,0.782008707523346,-0.0365884490311146,-0.622192740440369,0.589057862758636,-0.0315632671117783,-0.807474255561829,0.0652133896946907,-0.996604323387146,-0.0502707958221436,-0.0975023210048676,-0.995198845863342,-0.00852631870657206,-0.295717120170593,-0.836851358413696,-0.460685431957245,0.0652133896946907,-0.996604323387146,-0.0502707958221436,-0.311490565538406,-0.919642925262451,-0.239229187369347,0.0641742348670959,-0.988932013511658,0.133773043751717,-0.303168177604675,-0.892225027084351,-0.334699273109436,0.345877081155777,-0.92628026008606,0.14957931637764,-0.153685122728348,-0.98649936914444,-0.0565688014030457,-0.303168177604675,-0.892225027084351,-0.334699273109436,0.599650263786316,-0.0255918875336647,-0.799852907657623,0.50398987531662,-0.0360639132559299,-0.862956404685974,0.345877081155777,-0.92628026008606,0.14957931637764,0.599650263786316,-0.0255918875336647,-0.799852907657623,0.362263083457947,0.0185434017330408,-0.931891441345215,0.813914120197296,0.0259254705160856,-0.580406546592712,0.50398987531662,-0.0360639132559299,-0.862956404685974,-0.976252198219299,0.216567322611809,0.0055048163048923,-0.983861088752747,0.0175645295530558,0.178069770336151,-0.919604539871216,-0.0223870575428009,0.392207145690918,
- -0.550636053085327,-0.83403879404068,0.0343413464725018,-0.0545489341020584,0.97458678483963,0.21726730465889,-0.976252198219299,0.216567322611809,0.0055048163048923,-0.174655303359032,0.983120799064636,0.0544901192188263,0.0456503629684448,0.997280776500702,-0.0578542612493038,-0.0056765447370708,0.99935245513916,-0.0355314873158932,0.0020933395717293,0.9986931681633,-0.0510647408664227,0.00994661450386047,0.99863612651825,0.0512554571032524,0.00197870284318924,0.998626828193665,0.0523513443768024,-0.976252198219299,0.216567322611809,0.0055048163048923,-0.0545489341020584,0.97458678483963,0.21726730465889,-0.983861088752747,0.0175645295530558,0.178069770336151,-0.919604539871216,-0.0223870575428009,0.392207145690918,-0.0634314566850662,-0.913793623447418,-0.401195555925369,-0.550636053085327,-0.83403879404068,0.0343413464725018,0.731615245342255,-0.681306660175323,-0.0236747432500124,0.0843877792358398,-0.996432960033417,-0.00028794864192605,0.976346492767334,-0.0329146571457386,-0.213692039251328,-0.0634314566850662,-0.913793623447418,-0.401195555925369,0.0843877792358398,-0.996432960033417,-0.00028794864192605,0.731615245342255,-0.681306660175323,-0.0236747432500124,-0.550636053085327,-0.83403879404068,0.0343413464725018,0.983517408370972,0.00589584140107036,-0.180717617273331,0.929068505764008,-0.368262827396393,-0.0348457023501396,0.731615245342255,-0.681306660175323,-0.0236747432500124,0.976346492767334,-0.0329146571457386,-0.213692039251328,0.983517408370972,0.00589584140107036,-0.180717617273331,0.04680060967803,0.952776551246643,-0.300044298171997,0.929068505764008,-0.368262827396393,-0.0348457023501396,0.852158486843109,-0.0145595166832209,-0.523081362247467,0.624116957187653,-0.610108971595764,-0.48810350894928,0.774859309196472,0.193792477250099,-0.601695597171783,0.710109055042267,0.0376743599772453,-0.703083038330078,0.0892293304204941,-0.995999336242676,0.00484598474577069,0.789431512355804,-0.0140754301100969,-0.613677203655243,0.756978392601013,-0.532811522483826,-0.378279954195023,0.624116957187653,-0.610108971595764,-0.48810350894928,
- -0.0204933658242226,-0.984729588031769,-0.172880753874779,-0.0322282575070858,-0.99186760187149,0.123125612735748,-0.480450630187988,-0.797774493694305,0.364311963319778,0.710109055042267,0.0376743599772453,-0.703083038330078,0.305553942918777,0.894752264022827,0.32566112279892,-0.035218071192503,0.977332413196564,-0.20876082777977,0.991511166095734,0.0357197523117065,0.125018924474716,0.303192257881165,-0.926313519477844,0.223646745085716,0.0892293304204941,-0.995999336242676,0.00484598474577069,0.756978392601013,-0.532811522483826,-0.378279954195023,0.789431512355804,-0.0140754301100969,-0.613677203655243,0.674285173416138,-0.0609720498323441,-0.735949695110321,0.756978392601013,-0.532811522483826,-0.378279954195023,-0.0391474291682243,0.998865365982056,-0.0271223224699497,-0.0333492681384087,0.999260902404785,-0.0191229563206434,0.0232267547398806,0.999412000179291,0.0252211764454842,0.012859751470387,0.999129593372345,0.0396816842257977,-0.00619585439562798,0.999566555023193,0.0287814028561115,0.852158486843109,-0.0145595166832209,-0.523081362247467,-0.0204933658242226,-0.984729588031769,-0.172880753874779,0.624116957187653,-0.610108971595764,-0.48810350894928,0.774859309196472,0.193792477250099,-0.601695597171783,0.305553942918777,0.894752264022827,0.32566112279892,0.710109055042267,0.0376743599772453,-0.703083038330078,-0.480450630187988,-0.797774493694305,0.364311963319778,-0.830190539360046,-0.0184858329594135,0.557173192501068,-0.58167427778244,0.00147070060484111,0.813420414924622,-0.783078551292419,0.0428626909852028,0.620443940162659,-0.777098119258881,0.032502606511116,0.628539800643921,-0.58167427778244,0.00147070060484111,0.813420414924622,-0.830190539360046,-0.0184858329594135,0.557173192501068,-0.813731729984283,-0.0220708213746548,0.580821514129639,-0.990226328372955,0.0288152564316988,0.136461302638054,-0.830190539360046,-0.0184858329594135,0.557173192501068,-0.0322282575070858,-0.99186760187149,0.123125612735748,-0.131124466657639,-0.99098265171051,-0.0275637805461884,-0.813731729984283,-0.0220708213746548,0.580821514129639,
- -0.423922181129456,0.837966501712799,0.3436598777771,-0.132119327783585,0.975508987903595,-0.175860106945038,0.0235149972140789,0.996145188808441,-0.084509901702404,-0.138604581356049,0.989122748374939,0.0492454580962658,-0.0508617572486401,0.982397735118866,-0.179743841290474,-0.998783051967621,0.0322353430092335,0.0373297557234764,-0.964202046394348,0.0280793495476246,0.263677984476089,-0.066169910132885,0.947125971317291,-0.313965171575546,0.698472559452057,0.702870488166809,-0.134570151567459,0.0354278422892094,0.960544466972351,-0.275861144065857,0.0563381463289261,0.990384340286255,0.126352414488792,-0.195474401116371,0.952504992485046,-0.233503937721252,-0.58167427778244,0.00147070060484111,0.813420414924622,-0.777098119258881,0.032502606511116,0.628539800643921,-0.0322282575070858,-0.99186760187149,0.123125612735748,-0.830190539360046,-0.0184858329594135,0.557173192501068,-0.480450630187988,-0.797774493694305,0.364311963319778,-0.423922181129456,0.837966501712799,0.3436598777771,-0.195474401116371,0.952504992485046,-0.233503937721252,-0.132119327783585,0.975508987903595,-0.175860106945038,-0.423922181129456,0.837966501712799,0.3436598777771,-0.783078551292419,0.0428626909852028,0.620443940162659,-0.58167427778244,0.00147070060484111,0.813420414924622,-0.195474401116371,0.952504992485046,-0.233503937721252,0.0275285951793194,-0.999475836753845,0.0170404557138681,0.954769670963287,-0.0116879800334573,-0.29711651802063,0.950158298015594,-0.0208870843052864,-0.311067521572113,0.0103807225823402,-0.944069862365723,-0.329582184553146,0.991075873374939,0.0409755446016788,-0.126845687627792,-0.0193381477147341,0.994874775409698,-0.0992481037974358,0.134648367762566,0.950662732124329,0.279482036828995,0.949510931968689,0.0219093263149261,-0.312968134880066,-0.859697043895721,-0.480612307786942,0.173010930418968,-0.746979355812073,-0.409003436565399,0.524154603481293,-0.0618357211351395,-0.994131505489349,0.0887640118598938,-0.0376716516911983,-0.986160039901733,0.161460012197495,0.954769670963287,-0.0116879800334573,-0.29711651802063,
- 0.991075873374939,0.0409755446016788,-0.126845687627792,0.949510931968689,0.0219093263149261,-0.312968134880066,0.950158298015594,-0.0208870843052864,-0.311067521572113,-0.995470285415649,-0.0174150392413139,0.0934656858444214,-0.949120402336121,-0.0122380908578634,0.314675599336624,-0.746979355812073,-0.409003436565399,0.524154603481293,-0.859697043895721,-0.480612307786942,0.173010930418968,-0.615042328834534,0.0416145734488964,0.787395238876343,-0.170488625764847,0.953917264938354,-0.246932119131088,-0.743846476078033,0.525836884975433,0.412538647651672,-0.170488625764847,0.953917264938354,-0.246932119131088,-0.068585678935051,0.996923744678497,0.0379362814128399,-0.743846476078033,0.525836884975433,0.412538647651672,0.631104707717896,-0.0280637741088867,-0.775189876556396,-0.729208528995514,0.461319088935852,-0.505410432815552,0.0718770548701286,0.997410356998444,-0.00252375588752329,0.433194696903229,0.00811311695724726,-0.901263892650604,0.0673368498682976,-0.962314426898956,-0.263470441102982,0.269949823617935,-0.877715587615967,0.395907342433929,0.756978392601013,-0.532811522483826,-0.378279954195023,0.756978392601013,-0.532811522483826,-0.378279954195023,0.811855554580688,-0.0347182936966419,-0.582825124263763,0.954442858695984,-0.0105542372912169,-0.298207074403763,-0.615042328834534,0.0416145734488964,0.787395238876343,-0.96175754070282,-0.064110241830349,0.266293823719025,-0.985776424407959,-0.057157851755619,0.158043891191483,-0.985252618789673,-0.099746473133564,0.139025375247002,0.0673094466328621,-0.991936862468719,0.107381947338581,-0.394105404615402,0.910986602306366,-0.121591180562973,-0.824768900871277,-0.165782734751701,-0.540622353553772,-0.00296198623254895,0.987627863883972,-0.156788319349289,-0.566721081733704,0.818412721157074,0.0950154215097427,-0.806526899337769,0.549651563167572,0.21770966053009,-0.843817174434662,0.0216304287314415,0.536194682121277,-0.0849536284804344,0.992117822170258,-0.0921157151460648,-0.0849536284804344,0.992117822170258,-0.0921157151460648,-0.0878441408276558,0.994586706161499,-0.0555050075054169,
- -0.566721081733704,0.818412721157074,0.0950154215097427,0.0788004696369171,-0.774978280067444,-0.627056002616882,0.885776042938232,-0.353929162025452,0.300224900245667,0.975283086299896,-0.0387910977005959,0.217527732253075,0.0639198124408722,-0.813716530799866,-0.577736854553223,0.990768074989319,-0.121991232037544,0.0591341704130173,-0.1246747225523,0.741353452205658,-0.659432530403137,0.0859557017683983,0.634273290634155,0.768315732479095,0.889662146568298,0.0314354412257671,-0.455536216497421,-0.375880241394043,-0.749709963798523,-0.544655084609985,0.0788004696369171,-0.774978280067444,-0.627056002616882,0.0639198124408722,-0.813716530799866,-0.577736854553223,-0.0567396134138107,-0.981141924858093,-0.184773489832878,0.885776042938232,-0.353929162025452,0.300224900245667,0.990768074989319,-0.121991232037544,0.0591341704130173,0.889662146568298,0.0314354412257671,-0.455536216497421,0.975283086299896,-0.0387910977005959,0.217527732253075,-0.672418713569641,0.311823666095734,0.671281695365906,-0.986450612545013,-0.0129512269049883,0.163547158241272,-0.895403027534485,0.00531266676262021,0.445224791765213,-0.442225307226181,0.860450983047485,0.253102719783783,-0.99808657169342,0.0357997380197048,0.0504146814346313,-0.375880241394043,-0.749709963798523,-0.544655084609985,-0.0567396134138107,-0.981141924858093,-0.184773489832878,-0.827157497406006,-0.0154415890574455,-0.561758100986481,-0.442225307226181,0.860450983047485,0.253102719783783,0.0199929568916559,0.95489913225174,0.296256810426712,-0.320252537727356,0.80251157283783,0.5034019947052,-0.672418713569641,0.311823666095734,0.671281695365906,0.0363961644470692,-0.988031804561615,0.14989498257637,0.990738987922668,0.0392270013689995,0.129990473389626,0.992831766605377,-0.0333626754581928,0.114770084619522,0.094670444726944,-0.931745231151581,-0.350554198026657,0.994858682155609,0.0814391374588013,0.0601989664137363,0.69850480556488,0.702719151973724,-0.135192289948463,0.0566038489341736,0.986492693424225,0.153714403510094,0.994495153427124,0.0120880687609315,-0.104083374142647,
- -0.0608389787375927,-0.994137644767761,0.0893806666135788,-0.0536334477365017,-0.97551429271698,0.213296607136726,0.0363961644470692,-0.988031804561615,0.14989498257637,0.094670444726944,-0.931745231151581,-0.350554198026657,0.994495153427124,0.0120880687609315,-0.104083374142647,0.996186137199402,0.037778589874506,0.0786513164639473,0.994858682155609,0.0814391374588013,0.0601989664137363,-0.975249290466309,-0.0201964750885963,-0.220183923840523,-0.964202046394348,0.0280793495476246,0.263677984476089,-0.998783051967621,0.0322353430092335,0.0373297557234764,-0.999854803085327,0.00589682534337044,-0.0159934088587761,-0.975249290466309,-0.0201964750885963,-0.220183923840523,-0.0608389787375927,-0.994137644767761,0.0893806666135788,-0.0634314566850662,-0.913793623447418,-0.401195555925369,-0.919604539871216,-0.0223870575428009,0.392207145690918,-0.971611559391022,0.0130839003250003,0.236220091581345,-0.0430718921124935,0.998197793960571,-0.0417848937213421,-0.442225307226181,0.860450983047485,0.253102719783783,-0.0430718921124935,0.998197793960571,-0.0417848937213421,0.0199929568916559,0.95489913225174,0.296256810426712,-0.442225307226181,0.860450983047485,0.253102719783783,0.980550825595856,0.027508333325386,0.194328263401985,0.0549292080104351,0.900761723518372,-0.430826008319855,0.69850480556488,0.702719151973724,-0.135192289948463,0.994858682155609,0.0814391374588013,0.0601989664137363,0.996186137199402,0.037778589874506,0.0786513164639473,0.980550825595856,0.027508333325386,0.194328263401985,0.994858682155609,0.0814391374588013,0.0601989664137363,0.0992183387279511,-0.893686592578888,0.437584459781647,0.989776611328125,-0.0382822118699551,-0.137392967939377,0.990738987922668,0.0392270013689995,0.129990473389626,0.0363961644470692,-0.988031804561615,0.14989498257637,-0.034500777721405,-0.992470264434814,0.117526814341545,0.0992183387279511,-0.893686592578888,0.437584459781647,0.0363961644470692,-0.988031804561615,0.14989498257637,-0.0536334477365017,-0.97551429271698,0.213296607136726,-0.827157497406006,-0.0154415890574455,-0.561758100986481,
- -0.0567396134138107,-0.981141924858093,-0.184773489832878,-0.034500777721405,-0.992470264434814,0.117526814341545,-0.960997700691223,-0.0275383703410625,0.275182157754898,-0.442225307226181,0.860450983047485,0.253102719783783,-0.895403027534485,0.00531266676262021,0.445224791765213,-0.971611559391022,0.0130839003250003,0.236220091581345,-0.672418713569641,0.311823666095734,0.671281695365906,-0.320252537727356,0.80251157283783,0.5034019947052,0.061901718378067,0.910551905632019,0.408734112977982,-0.655600130558014,0.754550337791443,0.0290211997926235,0.890875160694122,0.0377975180745125,0.452673077583313,-0.0286105684936047,0.852968871593475,-0.521176993846893,-0.1246747225523,0.741353452205658,-0.659432530403137,0.0375511832535267,0.638848662376404,-0.76841539144516,0.881354570388794,-0.0305155776441097,-0.471468985080719,0.890875160694122,0.0377975180745125,0.452673077583313,0.990768074989319,-0.121991232037544,0.0591341704130173,0.329920470714569,-0.639069795608521,0.694796621799469,0.107060350477695,-0.981356203556061,0.15961854159832,0.881354570388794,-0.0305155776441097,-0.471468985080719,0.329920470714569,-0.639069795608521,0.694796621799469,0.0788004696369171,-0.774978280067444,-0.627056002616882,-0.161876261234283,-0.88983565568924,-0.426601439714432,0.107060350477695,-0.981356203556061,0.15961854159832,0.0788004696369171,-0.774978280067444,-0.627056002616882,-0.375880241394043,-0.749709963798523,-0.544655084609985,-0.803352832794189,-0.0318370908498764,0.594651758670807,-0.161876261234283,-0.88983565568924,-0.426601439714432,-0.375880241394043,-0.749709963798523,-0.544655084609985,-0.99808657169342,0.0357997380197048,0.0504146814346313,-0.655600130558014,0.754550337791443,0.0290211997926235,-0.986662566661835,0.0125148482620716,-0.16229721903801,-0.986450612545013,-0.0129512269049883,0.163547158241272,-0.672418713569641,0.311823666095734,0.671281695365906,-0.655600130558014,0.754550337791443,0.0290211997926235,-0.0101775508373976,0.984491407871246,0.175137430429459,-0.992318272590637,0.0251390244811773,-0.121129669249058,
- -0.655600130558014,0.754550337791443,0.0290211997926235,0.061901718378067,0.910551905632019,0.408734112977982,-0.0101775508373976,0.984491407871246,0.175137430429459,-0.859697043895721,-0.480612307786942,0.173010930418968,-0.0376716516911983,-0.986160039901733,0.161460012197495,-0.995470285415649,-0.0174150392413139,0.0934656858444214,-0.992318272590637,0.0251390244811773,-0.121129669249058,-0.986662566661835,0.0125148482620716,-0.16229721903801,-0.655600130558014,0.754550337791443,0.0290211997926235,-0.0190251022577286,0.994376838207245,0.104176938533783,-0.994810700416565,0.0186068061739206,0.100027717649937,-0.806526899337769,0.549651563167572,0.21770966053009,-0.566721081733704,0.818412721157074,0.0950154215097427,-0.0878441408276558,0.994586706161499,-0.0555050075054169,-0.0190251022577286,0.994376838207245,0.104176938533783,-0.566721081733704,0.818412721157074,0.0950154215097427,0.433194696903229,0.00811311695724726,-0.901263892650604,0.0718770548701286,0.997410356998444,-0.00252375588752329,-0.13195313513279,0.843650043010712,-0.520425856113434,0.983013927936554,0.0332692861557007,-0.180490210652351,0.756978392601013,-0.532811522483826,-0.378279954195023,0.954442858695984,-0.0105542372912169,-0.298207074403763,0.95471978187561,-0.0150229567661881,-0.297127157449722,0.95471978187561,-0.0150229567661881,-0.297127157449722,0.078905388712883,-0.99688047170639,-0.00182540342211723,0.756978392601013,-0.532811522483826,-0.378279954195023,-0.509818494319916,-0.496366500854492,0.702641785144806,-0.0501545518636703,-0.995157480239868,0.0845350995659828,-0.0618357211351395,-0.994131505489349,0.0887640118598938,-0.746979355812073,-0.409003436565399,0.524154603481293,-0.927509725093842,-0.0273595284670591,0.372796475887299,-0.0501545518636703,-0.995157480239868,0.0845350995659828,-0.509818494319916,-0.496366500854492,0.702641785144806,-0.927509725093842,-0.0273595284670591,0.372796475887299,-0.509818494319916,-0.496366500854492,0.702641785144806,-0.746979355812073,-0.409003436565399,0.524154603481293,-0.949120402336121,-0.0122380908578634,0.314675599336624,
- 0.991511166095734,0.0357197523117065,0.125018924474716,-0.035218071192503,0.977332413196564,-0.20876082777977,-0.729208528995514,0.461319088935852,-0.505410432815552,-0.722912192344666,-0.0948308706283569,-0.684401273727417,0.269949823617935,-0.877715587615967,0.395907342433929,0.303192257881165,-0.926313519477844,0.223646745085716,0.756978392601013,-0.532811522483826,-0.378279954195023,0.756978392601013,-0.532811522483826,-0.378279954195023,0.674285173416138,-0.0609720498323441,-0.735949695110321,0.811855554580688,-0.0347182936966419,-0.582825124263763,-0.655971050262451,0.752633929252625,-0.0569574236869812,-0.980209350585938,0.0186139326542616,0.19708676636219,-0.96175754070282,-0.064110241830349,0.266293823719025,-0.743846476078033,0.525836884975433,0.412538647651672,-0.990226328372955,0.0288152564316988,0.136461302638054,-0.0320754945278168,0.997430801391602,0.0640551447868347,-0.195474401116371,0.952504992485046,-0.233503937721252,-0.777098119258881,0.032502606511116,0.628539800643921,-0.0320754945278168,0.997430801391602,0.0640551447868347,-0.00296198623254895,0.987627863883972,-0.156788319349289,0.0235149972140789,0.996145188808441,-0.084509901702404,-0.132119327783585,0.975508987903595,-0.175860106945038,-0.195474401116371,0.952504992485046,-0.233503937721252,-0.999854803085327,0.00589682534337044,-0.0159934088587761,-0.960997700691223,-0.0275383703410625,0.275182157754898,-0.859585642814636,-0.492251604795456,0.137116700410843,-0.0538088120520115,0.997615277767181,-0.0432245321571827,-0.952130913734436,0.0202052630484104,-0.305022120475769,-0.998783051967621,0.0322353430092335,0.0373297557234764,-0.0508617572486401,0.982397735118866,-0.179743841290474,0.0600839778780937,0.947365462779999,-0.314465880393982,0.0354278422892094,0.960544466972351,-0.275861144065857,0.698472559452057,0.702870488166809,-0.134570151567459,-0.320252537727356,0.80251157283783,0.5034019947052,0.0199929568916559,0.95489913225174,0.296256810426712,0.0866073444485664,0.803675174713135,0.588732182979584,0.155711427330971,0.864176690578461,0.478489965200424,
- 0.061901718378067,0.910551905632019,0.408734112977982,-0.320252537727356,0.80251157283783,0.5034019947052,0.155711427330971,0.864176690578461,0.478489965200424,0.00865736603736877,0.941827952861786,-0.335983902215958,-0.986450612545013,-0.0129512269049883,0.163547158241272,-0.986662566661835,0.0125148482620716,-0.16229721903801,-0.803352832794189,-0.0318370908498764,0.594651758670807,-0.99808657169342,0.0357997380197048,0.0504146814346313,-0.895403027534485,0.00531266676262021,0.445224791765213,-0.986450612545013,-0.0129512269049883,0.163547158241272,-0.99808657169342,0.0357997380197048,0.0504146814346313,-0.827157497406006,-0.0154415890574455,-0.561758100986481,-0.806526899337769,0.549651563167572,0.21770966053009,-0.994810700416565,0.0186068061739206,0.100027717649937,-0.953429341316223,0.00156381912529469,0.301612436771393,-0.950549066066742,-0.0348998829722404,0.308607429265976,-0.0260904990136623,-0.986203670501709,0.163468182086945,-0.0501545518636703,-0.995157480239868,0.0845350995659828,-0.927509725093842,-0.0273595284670591,0.372796475887299,0.078905388712883,-0.99688047170639,-0.00182540342211723,0.0673368498682976,-0.962314426898956,-0.263470441102982,0.756978392601013,-0.532811522483826,-0.378279954195023,-0.0618357211351395,-0.994131505489349,0.0887640118598938,0.0275285951793194,-0.999475836753845,0.0170404557138681,0.0103807225823402,-0.944069862365723,-0.329582184553146,-0.0376716516911983,-0.986160039901733,0.161460012197495,-0.995470285415649,-0.0174150392413139,0.0934656858444214,-0.0376716516911983,-0.986160039901733,0.161460012197495,-0.161876261234283,-0.88983565568924,-0.426601439714432,-0.803352832794189,-0.0318370908498764,0.594651758670807,-0.953429341316223,0.00156381912529469,0.301612436771393,-0.843817174434662,0.0216304287314415,0.536194682121277,-0.806526899337769,0.549651563167572,0.21770966053009,-0.975249290466309,-0.0201964750885963,-0.220183923840523,-0.999854803085327,0.00589682534337044,-0.0159934088587761,-0.859585642814636,-0.492251604795456,0.137116700410843,-0.859585642814636,-0.492251604795456,0.137116700410843,
- -0.523112118244171,-0.802415490150452,0.287198781967163,-0.0608389787375927,-0.994137644767761,0.0893806666135788,-0.975249290466309,-0.0201964750885963,-0.220183923840523,-0.523112118244171,-0.802415490150452,0.287198781967163,-0.0536334477365017,-0.97551429271698,0.213296607136726,-0.0608389787375927,-0.994137644767761,0.0893806666135788,-0.034500777721405,-0.992470264434814,0.117526814341545,-0.0536334477365017,-0.97551429271698,0.213296607136726,-0.523112118244171,-0.802415490150452,0.287198781967163,-0.960997700691223,-0.0275383703410625,0.275182157754898,-0.034500777721405,-0.992470264434814,0.117526814341545,-0.523112118244171,-0.802415490150452,0.287198781967163,-0.859585642814636,-0.492251604795456,0.137116700410843,-0.999854803085327,0.00589682534337044,-0.0159934088587761,-0.998783051967621,0.0322353430092335,0.0373297557234764,-0.952130913734436,0.0202052630484104,-0.305022120475769,-0.960997700691223,-0.0275383703410625,0.275182157754898,-0.985776424407959,-0.057157851755619,0.158043891191483,-0.608939051628113,-0.0283983089029789,0.792708516120911,-0.845227897167206,-0.352594673633575,0.401580572128296,-0.985252618789673,-0.099746473133564,0.139025375247002,-0.985776424407959,-0.057157851755619,0.158043891191483,-0.845227897167206,-0.352594673633575,0.401580572128296,-0.950549066066742,-0.0348998829722404,0.308607429265976,-0.985252618789673,-0.099746473133564,0.139025375247002,-0.845227897167206,-0.352594673633575,0.401580572128296,-0.845227897167206,-0.352594673633575,0.401580572128296,-0.637517929077148,-0.684093177318573,0.354383200407028,-0.0260904990136623,-0.986203670501709,0.163468182086945,-0.950549066066742,-0.0348998829722404,0.308607429265976,0.0167437419295311,-0.995887041091919,0.0890435576438904,-0.0260904990136623,-0.986203670501709,0.163468182086945,-0.637517929077148,-0.684093177318573,0.354383200407028,-0.637517929077148,-0.684093177318573,0.354383200407028,0.300696045160294,-0.815711557865143,0.49416247010231,0.0167437419295311,-0.995887041091919,0.0890435576438904,-0.637517929077148,-0.684093177318573,0.354383200407028,
- 0.174993455410004,-0.95484721660614,0.240092232823372,0.300696045160294,-0.815711557865143,0.49416247010231,-0.131124466657639,-0.99098265171051,-0.0275637805461884,0.174993455410004,-0.95484721660614,0.240092232823372,-0.637517929077148,-0.684093177318573,0.354383200407028,-0.813731729984283,-0.0220708213746548,0.580821514129639,-0.131124466657639,-0.99098265171051,-0.0275637805461884,-0.637517929077148,-0.684093177318573,0.354383200407028,-0.845227897167206,-0.352594673633575,0.401580572128296,-0.608939051628113,-0.0283983089029789,0.792708516120911,-0.813731729984283,-0.0220708213746548,0.580821514129639,-0.845227897167206,-0.352594673633575,0.401580572128296,-0.990226328372955,0.0288152564316988,0.136461302638054,-0.980209350585938,0.0186139326542616,0.19708676636219,-0.655971050262451,0.752633929252625,-0.0569574236869812,-0.655971050262451,0.752633929252625,-0.0569574236869812,-0.0320754945278168,0.997430801391602,0.0640551447868347,-0.990226328372955,0.0288152564316988,0.136461302638054,-0.655971050262451,0.752633929252625,-0.0569574236869812,-0.116442404687405,0.987482488155365,0.106393799185753,-0.0320754945278168,0.997430801391602,0.0640551447868347,-0.743846476078033,0.525836884975433,0.412538647651672,-0.068585678935051,0.996923744678497,0.0379362814128399,-0.116442404687405,0.987482488155365,0.106393799185753,-0.655971050262451,0.752633929252625,-0.0569574236869812,-0.96175754070282,-0.064110241830349,0.266293823719025,-0.980209350585938,0.0186139326542616,0.19708676636219,-0.608939051628113,-0.0283983089029789,0.792708516120911,-0.985776424407959,-0.057157851755619,0.158043891191483,-0.743846476078033,0.525836884975433,0.412538647651672,-0.96175754070282,-0.064110241830349,0.266293823719025,-0.615042328834534,0.0416145734488964,0.787395238876343,-0.170488625764847,0.953917264938354,-0.246932119131088,-0.00766262132674456,0.987421154975891,-0.157926633954048,0.109408743679523,0.993605852127075,0.0278794299811125,-0.068585678935051,0.996923744678497,0.0379362814128399,0.0563381463289261,0.990384340286255,0.126352414488792,
- 0.0354278422892094,0.960544466972351,-0.275861144065857,-0.0508617572486401,0.982397735118866,-0.179743841290474,-0.066169910132885,0.947125971317291,-0.313965171575546,0.994495153427124,0.0120880687609315,-0.104083374142647,0.0566038489341736,0.986492693424225,0.153714403510094,0.04680060967803,0.952776551246643,-0.300044298171997,0.983517408370972,0.00589584140107036,-0.180717617273331,0.990738987922668,0.0392270013689995,0.129990473389626,0.996186137199402,0.037778589874506,0.0786513164639473,0.994495153427124,0.0120880687609315,-0.104083374142647,0.992831766605377,-0.0333626754581928,0.114770084619522,0.989776611328125,-0.0382822118699551,-0.137392967939377,0.980550825595856,0.027508333325386,0.194328263401985,0.996186137199402,0.037778589874506,0.0786513164639473,0.990738987922668,0.0392270013689995,0.129990473389626,0.889662146568298,0.0314354412257671,-0.455536216497421,0.0859557017683983,0.634273290634155,0.768315732479095,0.0549292080104351,0.900761723518372,-0.430826008319855,0.980550825595856,0.027508333325386,0.194328263401985,0.0600839778780937,0.947365462779999,-0.314465880393982,-0.0538088120520115,0.997615277767181,-0.0432245321571827,-0.0508617572486401,0.982397735118866,-0.179743841290474,0.0354278422892094,0.960544466972351,-0.275861144065857,-0.995470285415649,-0.0174150392413139,0.0934656858444214,-0.843817174434662,0.0216304287314415,0.536194682121277,-0.953429341316223,0.00156381912529469,0.301612436771393,-0.949120402336121,-0.0122380908578634,0.314675599336624,-0.0849536284804344,0.992117822170258,-0.0921157151460648,-0.843817174434662,0.0216304287314415,0.536194682121277,-0.992318272590637,0.0251390244811773,-0.121129669249058,-0.0101775508373976,0.984491407871246,0.175137430429459,-0.0192786566913128,0.994906485080719,-0.098942257463932,-0.0878441408276558,0.994586706161499,-0.0555050075054169,-0.0849536284804344,0.992117822170258,-0.0921157151460648,0.101734511554241,0.988639235496521,0.110646292567253,-0.0190251022577286,0.994376838207245,0.104176938533783,-0.0226556230336428,0.968286037445068,-0.248815104365349,
- -0.00766262132674456,0.987421154975891,-0.157926633954048,-0.170488625764847,0.953917264938354,-0.246932119131088,-0.170488625764847,0.953917264938354,-0.246932119131088,-0.615042328834534,0.0416145734488964,0.787395238876343,-0.994810700416565,0.0186068061739206,0.100027717649937,-0.0190251022577286,0.994376838207245,0.104176938533783,-0.950549066066742,-0.0348998829722404,0.308607429265976,-0.615042328834534,0.0416145734488964,0.787395238876343,-0.985252618789673,-0.099746473133564,0.139025375247002,-0.0204933658242226,-0.984729588031769,-0.172880753874779,0.0892293304204941,-0.995999336242676,0.00484598474577069,-0.131124466657639,-0.99098265171051,-0.0275637805461884,-0.0322282575070858,-0.99186760187149,0.123125612735748,-0.0204933658242226,-0.984729588031769,-0.172880753874779,0.852158486843109,-0.0145595166832209,-0.523081362247467,0.789431512355804,-0.0140754301100969,-0.613677203655243,0.0892293304204941,-0.995999336242676,0.00484598474577069,0.852158486843109,-0.0145595166832209,-0.523081362247467,0.710109055042267,0.0376743599772453,-0.703083038330078,0.991511166095734,0.0357197523117065,0.125018924474716,0.789431512355804,-0.0140754301100969,-0.613677203655243,0.811855554580688,-0.0347182936966419,-0.582825124263763,0.674285173416138,-0.0609720498323441,-0.735949695110321,0.991511166095734,0.0357197523117065,0.125018924474716,0.631104707717896,-0.0280637741088867,-0.775189876556396,0.954442858695984,-0.0105542372912169,-0.298207074403763,0.811855554580688,-0.0347182936966419,-0.582825124263763,0.631104707717896,-0.0280637741088867,-0.775189876556396,0.433194696903229,0.00811311695724726,-0.901263892650604,0.95471978187561,-0.0150229567661881,-0.297127157449722,0.954442858695984,-0.0105542372912169,-0.298207074403763,0.433194696903229,0.00811311695724726,-0.901263892650604,0.983013927936554,0.0332692861557007,-0.180490210652351,0.981923937797546,-0.00638483744114637,-0.189168676733971,0.981923937797546,-0.00638483744114637,-0.189168676733971,0.25958389043808,-0.864058971405029,0.431298434734344,0.078905388712883,-0.99688047170639,-0.00182540342211723,
- 0.95471978187561,-0.0150229567661881,-0.297127157449722,0.078905388712883,-0.99688047170639,-0.00182540342211723,-0.0260904990136623,-0.986203670501709,0.163468182086945,0.0167437419295311,-0.995887041091919,0.0890435576438904,0.0673368498682976,-0.962314426898956,-0.263470441102982,0.0167437419295311,-0.995887041091919,0.0890435576438904,0.300696045160294,-0.815711557865143,0.49416247010231,0.269949823617935,-0.877715587615967,0.395907342433929,0.0673368498682976,-0.962314426898956,-0.263470441102982,0.300696045160294,-0.815711557865143,0.49416247010231,0.174993455410004,-0.95484721660614,0.240092232823372,0.303192257881165,-0.926313519477844,0.223646745085716,0.269949823617935,-0.877715587615967,0.395907342433929,-0.983861088752747,0.0175645295530558,0.178069770336151,-0.964202046394348,0.0280793495476246,0.263677984476089,-0.975249290466309,-0.0201964750885963,-0.220183923840523,-0.919604539871216,-0.0223870575428009,0.392207145690918,-0.066169910132885,0.947125971317291,-0.313965171575546,-0.964202046394348,0.0280793495476246,0.263677984476089,-0.983861088752747,0.0175645295530558,0.178069770336151,-0.0545489341020584,0.97458678483963,0.21726730465889,0.0563381463289261,0.990384340286255,0.126352414488792,-0.066169910132885,0.947125971317291,-0.313965171575546,-0.0545489341020584,0.97458678483963,0.21726730465889,0.0456503629684448,0.997280776500702,-0.0578542612493038,0.0866073444485664,0.803675174713135,0.588732182979584,0.0199929568916559,0.95489913225174,0.296256810426712,-0.0430718921124935,0.998197793960571,-0.0417848937213421,-0.0538088120520115,0.997615277767181,-0.0432245321571827,0.0600839778780937,0.947365462779999,-0.314465880393982,-0.0430718921124935,0.998197793960571,-0.0417848937213421,-0.971611559391022,0.0130839003250003,0.236220091581345,-0.952130913734436,0.0202052630484104,-0.305022120475769,-0.0538088120520115,0.997615277767181,-0.0432245321571827,-0.960997700691223,-0.0275383703410625,0.275182157754898,-0.952130913734436,0.0202052630484104,-0.305022120475769,-0.971611559391022,0.0130839003250003,0.236220091581345,
- -0.895403027534485,0.00531266676262021,0.445224791765213,-0.827157497406006,-0.0154415890574455,-0.561758100986481,0.101734511554241,0.988639235496521,0.110646292567253,-0.0849536284804344,0.992117822170258,-0.0921157151460648,-0.0101775508373976,0.984491407871246,0.175137430429459,0.061901718378067,0.910551905632019,0.408734112977982,0.00865736603736877,0.941827952861786,-0.335983902215958,0.949510931968689,0.0219093263149261,-0.312968134880066,0.134648367762566,0.950662732124329,0.279482036828995,-0.0286105684936047,0.852968871593475,-0.521176993846893,0.890875160694122,0.0377975180745125,0.452673077583313,0.950158298015594,-0.0208870843052864,-0.311067521572113,0.949510931968689,0.0219093263149261,-0.312968134880066,0.890875160694122,0.0377975180745125,0.452673077583313,0.881354570388794,-0.0305155776441097,-0.471468985080719,0.0103807225823402,-0.944069862365723,-0.329582184553146,0.950158298015594,-0.0208870843052864,-0.311067521572113,0.881354570388794,-0.0305155776441097,-0.471468985080719,0.107060350477695,-0.981356203556061,0.15961854159832,-0.0376716516911983,-0.986160039901733,0.161460012197495,0.0103807225823402,-0.944069862365723,-0.329582184553146,0.107060350477695,-0.981356203556061,0.15961854159832,-0.161876261234283,-0.88983565568924,-0.426601439714432,-0.0501545518636703,-0.995157480239868,0.0845350995659828,-0.0260904990136623,-0.986203670501709,0.163468182086945,0.078905388712883,-0.99688047170639,-0.00182540342211723,0.25958389043808,-0.864058971405029,0.431298434734344,-0.927509725093842,-0.0273595284670591,0.372796475887299,-0.994810700416565,0.0186068061739206,0.100027717649937,-0.615042328834534,0.0416145734488964,0.787395238876343,-0.950549066066742,-0.0348998829722404,0.308607429265976,-0.953429341316223,0.00156381912529469,0.301612436771393,-0.994810700416565,0.0186068061739206,0.100027717649937,-0.927509725093842,-0.0273595284670591,0.372796475887299,-0.949120402336121,-0.0122380908578634,0.314675599336624,-0.0192786566913128,0.994906485080719,-0.098942257463932,-0.0226556230336428,0.968286037445068,-0.248815104365349,
- -0.0190251022577286,0.994376838207245,0.104176938533783,-0.0878441408276558,0.994586706161499,-0.0555050075054169,0.983013927936554,0.0332692861557007,-0.180490210652351,-0.13195313513279,0.843650043010712,-0.520425856113434,-0.0193381477147341,0.994874775409698,-0.0992481037974358,0.991075873374939,0.0409755446016788,-0.126845687627792,0.981923937797546,-0.00638483744114637,-0.189168676733971,0.983013927936554,0.0332692861557007,-0.180490210652351,0.991075873374939,0.0409755446016788,-0.126845687627792,0.954769670963287,-0.0116879800334573,-0.29711651802063,0.0275285951793194,-0.999475836753845,0.0170404557138681,0.25958389043808,-0.864058971405029,0.431298434734344,0.981923937797546,-0.00638483744114637,-0.189168676733971,0.954769670963287,-0.0116879800334573,-0.29711651802063,-0.0501545518636703,-0.995157480239868,0.0845350995659828,0.25958389043808,-0.864058971405029,0.431298434734344,0.0275285951793194,-0.999475836753845,0.0170404557138681,-0.0618357211351395,-0.994131505489349,0.0887640118598938,-0.992318272590637,0.0251390244811773,-0.121129669249058,-0.843817174434662,0.0216304287314415,0.536194682121277,-0.995470285415649,-0.0174150392413139,0.0934656858444214,-0.803352832794189,-0.0318370908498764,0.594651758670807,-0.986662566661835,0.0125148482620716,-0.16229721903801,-0.990226328372955,0.0288152564316988,0.136461302638054,-0.813731729984283,-0.0220708213746548,0.580821514129639,-0.608939051628113,-0.0283983089029789,0.792708516120911,-0.980209350585938,0.0186139326542616,0.19708676636219,-0.0320754945278168,0.997430801391602,0.0640551447868347,-0.116442404687405,0.987482488155365,0.106393799185753,-0.00296198623254895,0.987627863883972,-0.156788319349289,0.789431512355804,-0.0140754301100969,-0.613677203655243,0.991511166095734,0.0357197523117065,0.125018924474716,0.674285173416138,-0.0609720498323441,-0.735949695110321,-0.131124466657639,-0.99098265171051,-0.0275637805461884,0.0892293304204941,-0.995999336242676,0.00484598474577069,0.303192257881165,-0.926313519477844,0.223646745085716,0.174993455410004,-0.95484721660614,0.240092232823372,
- 0.992831766605377,-0.0333626754581928,0.114770084619522,0.994495153427124,0.0120880687609315,-0.104083374142647,0.983517408370972,0.00589584140107036,-0.180717617273331,0.976346492767334,-0.0329146571457386,-0.213692039251328,0.094670444726944,-0.931745231151581,-0.350554198026657,0.992831766605377,-0.0333626754581928,0.114770084619522,0.976346492767334,-0.0329146571457386,-0.213692039251328,0.0843877792358398,-0.996432960033417,-0.00028794864192605,-0.0608389787375927,-0.994137644767761,0.0893806666135788,0.094670444726944,-0.931745231151581,-0.350554198026657,0.0843877792358398,-0.996432960033417,-0.00028794864192605,-0.0634314566850662,-0.913793623447418,-0.401195555925369,-0.0567396134138107,-0.981141924858093,-0.184773489832878,0.0639198124408722,-0.813716530799866,-0.577736854553223,0.0992183387279511,-0.893686592578888,0.437584459781647,-0.034500777721405,-0.992470264434814,0.117526814341545,0.0639198124408722,-0.813716530799866,-0.577736854553223,0.975283086299896,-0.0387910977005959,0.217527732253075,0.989776611328125,-0.0382822118699551,-0.137392967939377,0.0992183387279511,-0.893686592578888,0.437584459781647,0.975283086299896,-0.0387910977005959,0.217527732253075,0.889662146568298,0.0314354412257671,-0.455536216497421,0.980550825595856,0.027508333325386,0.194328263401985,0.989776611328125,-0.0382822118699551,-0.137392967939377,-3.19852347274718e-007,1,-3.2990183029824e-008,-0.00421269796788692,0.999991178512573,0.000239734203205444,0.000121520817629062,1,0.000256747880484909,-0.00313621922396123,0.999995052814484,-0.000362532096914947,-5.13239683641586e-007,1,-1.35316739147129e-007,-3.19852347274718e-007,1,-3.2990183029824e-008,-0.00313621922396123,0.999995052814484,-0.000362532096914947,-3.75398343521738e-007,1,-9.90348638651994e-008,2.05022502086649e-007,1,1.13133104662211e-007,-7.0022531417635e-007,1,-2.58457305335469e-007,-5.88506850363046e-007,1,-2.17093571563964e-007,-3.44513580330386e-007,1,-1.84262063385177e-007,-2.94514529741718e-006,1,3.84577742806869e-006,2.05022502086649e-007,1,1.13133104662211e-007,
- -3.44513580330386e-007,1,-1.84262063385177e-007,3.62644786946476e-005,1,3.10769282805268e-005,-5.87297499521355e-008,1,-1.1837344260357e-007,-1.72175546708786e-007,1,-2.43285114720493e-007,-1.87381814953369e-007,1,-2.64689333562274e-007,-1.02384973388325e-007,1,-2.00099961489286e-007,-8.08964841780835e-008,1,-2.14081723015624e-007,-5.87297499521355e-008,1,-1.1837344260357e-007,-1.02384973388325e-007,1,-2.00099961489286e-007,-4.034984257828e-008,1,-1.06777015673742e-007,0,1,-4.07793322665384e-007,-7.52013207261371e-009,1,-1.71176182561794e-007,0.00107488164212555,0.999999403953552,-2.98462673526956e-005,6.37200428172946e-005,0.999996364116669,0.00270052626729012,0.000194809370441362,0.99998813867569,0.00486222002655268,0,1,-4.07793322665384e-007,6.37200428172946e-005,0.999996364116669,0.00270052626729012,0.000234891951549798,0.999973356723785,0.00729321641847491,0.000184269825695083,0.999992907047272,0.00378376804292202,0.000194809370441362,0.99998813867569,0.00486222002655268,6.37200428172946e-005,0.999996364116669,0.00270052626729012,-1.02847018013108e-007,1,-3.87368913834507e-007,-8.08964841780835e-008,1,-2.14081723015624e-007,-4.034984257828e-008,1,-1.06777015673742e-007,-0.000194175459910184,1,5.02907423651777e-005,-2.21126441601882e-008,1,-2.00344317136114e-007,-1.02847018013108e-007,1,-3.87368913834507e-007,-0.000194175459910184,1,5.02907423651777e-005,0.000976778217591345,0.999999582767487,-0.00014333357103169,-7.0022531417635e-007,1,-2.58457305335469e-007,-5.13239683641586e-007,1,-1.35316739147129e-007,-3.75398343521738e-007,1,-9.90348638651994e-008,-5.88506850363046e-007,1,-2.17093571563964e-007,-7.63398656999925e-006,1,-2.38681354858272e-006,-2.94514529741718e-006,1,3.84577742806869e-006,3.62644786946476e-005,1,3.10769282805268e-005,5.97703583480325e-005,1,-0.000191296188859269,7.0700195919926e-007,1,-1.04154219116026e-006,-7.63398656999925e-006,1,-2.38681354858272e-006,5.97703583480325e-005,1,-0.000191296188859269,5.5013795645209e-005,1,-9.08952279132791e-005,-1.72175546708786e-007,1,-2.43285114720493e-007,
- 7.0700195919926e-007,1,-1.04154219116026e-006,5.5013795645209e-005,1,-9.08952279132791e-005,-1.87381814953369e-007,1,-2.64689333562274e-007,-7.52013207261371e-009,1,-1.71176182561794e-007,-2.21126441601882e-008,1,-2.00344317136114e-007,0.000976778217591345,0.999999582767487,-0.00014333357103169,0.00107488164212555,0.999999403953552,-2.98462673526956e-005,0.123022153973579,0,-0.992403924465179,0.0556002371013165,0,-0.998453199863434,0.0555991977453232,0,-0.998453199863434,0.0893450826406479,0,-0.996000826358795,0.253017395734787,6.48025846317069e-008,-0.967461824417114,0.123022153973579,0,-0.992403924465179,0.0893450826406479,0,-0.996000826358795,0.204961821436882,6.41423483216386e-008,-0.978769958019257,0.393586158752441,4.13327256865159e-008,-0.919287741184235,0.253017395734787,6.48025846317069e-008,-0.967461824417114,0.204961821436882,6.41423483216386e-008,-0.978769958019257,0.347333282232285,3.99051742761003e-008,-0.937741816043854,0.496989697217941,-5.71894354095548e-008,-0.867756426334381,0.393586158752441,4.13327256865159e-008,-0.919287741184235,0.347333282232285,3.99051742761003e-008,-0.937741816043854,0.468104064464569,-5.82395713877304e-008,-0.883673369884491,0.583231091499329,-2.53061944732735e-008,-0.81230640411377,0.496989697217941,-5.71894354095548e-008,-0.867756426334381,0.468104064464569,-5.82395713877304e-008,-0.883673369884491,0.554582536220551,-2.59892285470187e-008,-0.832128703594208,0.650857031345367,-2.41081359320106e-008,-0.75920045375824,0.583231091499329,-2.53061944732735e-008,-0.81230640411377,0.554582536220551,-2.59892285470187e-008,-0.832128703594208,0.650835692882538,-2.41918218790715e-008,-0.759218573570251,0.650857031345367,-2.41081359320106e-008,-0.75920045375824,0.650835692882538,-2.41918218790715e-008,-0.759218573570251,0.740837812423706,-1.50932581988172e-008,-0.671683967113495,0.740848898887634,-1.44292151560421e-008,-0.671671807765961,0.845035195350647,0,-0.534710764884949,0.740848898887634,-1.44292151560421e-008,-0.671671807765961,0.740837812423706,-1.50932581988172e-008,-0.671683967113495,
- 0.817841589450836,0,-0.575443506240845,0.901277124881744,2.80824323795059e-008,-0.433243244886398,0.845035195350647,0,-0.534710764884949,0.817841589450836,0,-0.575443506240845,0.8861985206604,2.98821269950622e-008,-0.463305920362473,0.935669779777527,5.34732969015295e-009,-0.352876991033554,0.901277124881744,2.80824323795059e-008,-0.433243244886398,0.8861985206604,2.98821269950622e-008,-0.463305920362473,0.935681521892548,5.31244381818397e-009,-0.352845788002014,0.935669779777527,5.34732969015295e-009,-0.352876991033554,0.935681521892548,5.31244381818397e-009,-0.352845788002014,0.967300236225128,-1.23094316961669e-008,-0.253634423017502,0.96729838848114,-1.2353453371361e-008,-0.253641247749329,0.999972581863403,0,-0.00740574905648828,0.999890327453613,0,-0.014811092056334,0.999890327453613,0,-0.014811092056334,0.999972641468048,0,-0.00740574952214956,1,0,0,0.999972581863403,0,-0.00740574905648828,0.999972641468048,0,-0.00740574952214956,1,0,0,0.999128520488739,1.79798964605737e-009,-0.0417404286563396,1,0,0,1,0,0,0.999790847301483,9.04392005729449e-010,-0.0204538591206074,0.987420380115509,6.90363766153723e-009,-0.158117100596428,0.999128520488739,1.79798964605737e-009,-0.0417404286563396,0.999790847301483,9.04392005729449e-010,-0.0204538591206074,0.993910551071167,4.90831064681174e-009,-0.110190853476524,0.967300236225128,-1.23094316961669e-008,-0.253634423017502,0.987420380115509,6.90363766153723e-009,-0.158117100596428,0.993910551071167,4.90831064681174e-009,-0.110190853476524,0.96729838848114,-1.2353453371361e-008,-0.253641247749329,0.0161814093589783,0.0493962019681931,-0.998648226261139,0.0728129968047142,0.103622771799564,-0.991947889328003,0.00830114353448153,-0.153993844985962,-0.98803699016571,0.0392495691776276,-0.0309107564389706,-0.998751223087311,0.27922910451889,0.960151195526123,-0.0118722561746836,0.0161814093589783,0.0493962019681931,-0.998648226261139,0.103091008961201,0.0459134131669998,-0.993611693382263,-0.276292413473129,0.960002601146698,-0.0453618839383125,-0.0993537753820419,0.994579553604126,-0.0306661128997803,
- -0.138728931546211,0.990059792995453,-0.0231539327651262,0.0439125038683414,0.998767554759979,0.0231344178318977,0.34864804148674,0.936993181705475,0.0221005789935589,0.34864804148674,0.936993181705475,0.0221005789935589,0.0439125038683414,0.998767554759979,0.0231344178318977,0.817409515380859,0.57517421245575,0.0318816788494587,0.719163239002228,0.694118142127991,-0.0316906794905663,-0.0132107846438885,0.171787768602371,-0.985045492649078,0.103091008961201,0.0459134131669998,-0.993611693382263,0.101896263659,-0.0239089392125607,-0.994507670402527,0.0891887247562408,-0.0348180197179317,-0.995406091213226,0.996514737606049,-0.000411103828810155,0.0834161341190338,0.0159189775586128,-0.0102606872096658,0.999820649623871,0.0149795738980174,0.0215207636356354,0.99965626001358,0.954158425331116,0.285835921764374,0.0887671411037445,0.0392495691776276,-0.0309107564389706,-0.998751223087311,-0.276883959770203,-0.959301233291626,-0.0554657243192196,0.282916367053986,-0.958084523677826,-0.0450827851891518,0.101896263659,-0.0239089392125607,-0.994507670402527,-0.142992123961449,0.989114582538605,0.0347205027937889,-0.102121151983738,0.994238555431366,0.0325735621154308,0.34934264421463,0.93677031993866,0.0205248799175024,0.0430208891630173,0.99907398223877,0.000651616661343724,0.0430208891630173,0.99907398223877,0.000651616661343724,0.34934264421463,0.93677031993866,0.0205248799175024,0.714874386787415,0.692511916160584,0.0968597233295441,0.814354479312897,0.578763723373413,0.0431223623454571,-0.0898682326078415,-0.00743476347997785,0.995926022529602,-0.999983906745911,-0.00126284174621105,0.00554554397240281,-0.90061753988266,-0.434515029191971,0.00920712109655142,-0.0894050523638725,-0.0147933382540941,0.9958855509758,0.99460244178772,-0.0629905164241791,0.0824514254927635,0.99125862121582,-0.0400361754000187,0.125711858272552,0.719163239002228,0.694118142127991,-0.0316906794905663,0.817409515380859,0.57517421245575,0.0318816788494587,0.0224246196448803,0.0238764360547066,0.999463379383087,0.0149795738980174,0.0215207636356354,0.99965626001358,
- -0.0894050523638725,-0.0147933382540941,0.9958855509758,-0.0770000070333481,-0.0422622449696064,0.996135056018829,0.995912313461304,-0.0370755940675735,-0.0823662281036377,0.998132348060608,-0.0607823096215725,-0.00611353013664484,0.814354479312897,0.578763723373413,0.0431223623454571,0.714874386787415,0.692511916160584,0.0968597233295441,0.103091008961201,0.0459134131669998,-0.993611693382263,0.0161814093589783,0.0493962019681931,-0.998648226261139,0.0392495691776276,-0.0309107564389706,-0.998751223087311,0.101896263659,-0.0239089392125607,-0.994507670402527,-0.0898682326078415,-0.00743476347997785,0.995926022529602,-0.0894050523638725,-0.0147933382540941,0.9958855509758,0.0149795738980174,0.0215207636356354,0.99965626001358,0.0159189775586128,-0.0102606872096658,0.999820649623871,0.714874386787415,0.692511916160584,0.0968597233295441,0.34934264421463,0.93677031993866,0.0205248799175024,0.34864804148674,0.936993181705475,0.0221005789935589,0.719163239002228,0.694118142127991,-0.0316906794905663,0.99125862121582,-0.0400361754000187,0.125711858272552,0.995912313461304,-0.0370755940675735,-0.0823662281036377,0.714874386787415,0.692511916160584,0.0968597233295441,0.719163239002228,0.694118142127991,-0.0316906794905663,-0.0993537753820419,0.994579553604126,-0.0306661128997803,0.34864804148674,0.936993181705475,0.0221005789935589,0.34934264421463,0.93677031993866,0.0205248799175024,-0.102121151983738,0.994238555431366,0.0325735621154308,0.0515214912593365,0.998671174049377,0.00124337349552661,0.0582600682973862,0.99814248085022,-0.0178146325051785,0.00255893962457776,0.999968230724335,-0.00755885289981961,0.0333662107586861,0.998423278331757,0.0451420657336712,-0.0116040790453553,0.999048829078674,0.042034350335598,0.0268663484603167,0.999374270439148,0.023006035014987,-0.00910639762878418,0.999757945537567,-0.0200308486819267,0.0446252077817917,0.998815476894379,-0.0194006487727165,0.0453706048429012,0.998466551303864,0.0317207835614681,-0.00617887824773788,0.999095499515533,0.0420724488794804,0.0161814093589783,0.0493962019681931,-0.998648226261139,
- 0.27922910451889,0.960151195526123,-0.0118722561746836,0.0728129968047142,0.103622771799564,-0.991947889328003,-0.0132107846438885,0.171787768602371,-0.985045492649078,-0.276292413473129,0.960002601146698,-0.0453618839383125,0.103091008961201,0.0459134131669998,-0.993611693382263,0.0392495691776276,-0.0309107564389706,-0.998751223087311,0.00830114353448153,-0.153993844985962,-0.98803699016571,-0.276883959770203,-0.959301233291626,-0.0554657243192196,0.0891887247562408,-0.0348180197179317,-0.995406091213226,0.101896263659,-0.0239089392125607,-0.994507670402527,0.282916367053986,-0.958084523677826,-0.0450827851891518,0.954158425331116,0.285835921764374,0.0887671411037445,0.0149795738980174,0.0215207636356354,0.99965626001358,0.0224246196448803,0.0238764360547066,0.999463379383087,-0.0770000070333481,-0.0422622449696064,0.996135056018829,-0.0894050523638725,-0.0147933382540941,0.9958855509758,-0.90061753988266,-0.434515029191971,0.00920712109655142,-0.0605176761746407,0.0400238670408726,-0.997364401817322,-0.0599107816815376,0.101062349975109,-0.993074655532837,-0.127951979637146,-0.099733404815197,-0.986753106117249,-0.0922830551862717,-0.0395733416080475,-0.994946181774139,0.276636838912964,0.959919095039368,-0.045027494430542,-0.0605176761746407,0.0400238670408726,-0.997364401817322,-0.00792429037392139,0.0360662341117859,-0.99931800365448,-0.280177712440491,0.959499895572662,-0.0293332040309906,-0.101830936968327,0.994445443153381,-0.0266244672238827,-0.143789321184158,0.98941832780838,-0.0193914361298084,0.0478710569441319,0.998790144920349,0.0112502910196781,0.344284534454346,0.938412725925446,-0.0291538368910551,0.344284534454346,0.938412725925446,-0.0291538368910551,0.0478710569441319,0.998790144920349,0.0112502910196781,0.819439291954041,0.571356177330017,-0.0455116592347622,0.693120002746582,0.709801375865936,-0.125565752387047,-0.143232583999634,0.164884358644485,-0.975857377052307,-0.00792429037392139,0.0360662341117859,-0.99931800365448,-0.0575582459568977,-0.0322827510535717,-0.997820138931274,-0.0435906201601028,-0.0815581083297729,-0.995714902877808,
- 0.999980926513672,-7.41008261684328e-006,-0.00618863524869084,0.14781741797924,-0.00116359465755522,0.989014029502869,0.14661368727684,0.0381469801068306,0.988458037376404,0.958155393600464,0.286248534917831,0.000429510662797838,-0.0922830551862717,-0.0395733416080475,-0.994946181774139,-0.280938923358917,-0.959725737571716,5.66802991670556e-005,0.271519601345062,-0.958622872829437,-0.0855526626110077,-0.0575582459568977,-0.0322827510535717,-0.997820138931274,-0.140474811196327,0.988730549812317,0.0517559722065926,-0.0971817076206207,0.994568943977356,0.0372605174779892,0.344478905200958,0.938119292259216,-0.0355876460671425,0.0424826480448246,0.998973727226257,-0.0157059729099274,0.0424826480448246,0.998973727226257,-0.0157059729099274,0.344478905200958,0.938119292259216,-0.0355876460671425,0.704951405525208,0.709197223186493,-0.00910185277462006,0.808409750461578,0.579715013504028,-0.102001458406448,0.042561948299408,0.0012882441515103,0.999093055725098,-0.984301209449768,-0.000904625281691551,0.176494792103767,-0.885320663452148,-0.43408066034317,0.166676953434944,0.0434736087918282,-0.0234547853469849,0.998779237270355,0.998051822185516,-0.0620470903813839,-0.00653052516281605,0.999241709709167,-0.036844365298748,0.0125943217426538,0.693120002746582,0.709801375865936,-0.125565752387047,0.819439291954041,0.571356177330017,-0.0455116592347622,0.118587426841259,0.0339842587709427,0.992361962795258,0.14661368727684,0.0381469801068306,0.988458037376404,0.0434736087918282,-0.0234547853469849,0.998779237270355,0.0709678083658218,-0.0340122580528259,0.996898591518402,0.970951616764069,-0.0353522449731827,-0.236650064587593,0.982824206352234,-0.0540566965937614,-0.176449686288834,0.808409750461578,0.579715013504028,-0.102001458406448,0.704951405525208,0.709197223186493,-0.00910185277462006,-0.00792429037392139,0.0360662341117859,-0.99931800365448,-0.0605176761746407,0.0400238670408726,-0.997364401817322,-0.0922830551862717,-0.0395733416080475,-0.994946181774139,-0.0575582459568977,-0.0322827510535717,-0.997820138931274,
- 0.042561948299408,0.0012882441515103,0.999093055725098,0.0434736087918282,-0.0234547853469849,0.998779237270355,0.14661368727684,0.0381469801068306,0.988458037376404,0.14781741797924,-0.00116359465755522,0.989014029502869,0.704951405525208,0.709197223186493,-0.00910185277462006,0.344478905200958,0.938119292259216,-0.0355876460671425,0.344284534454346,0.938412725925446,-0.0291538368910551,0.693120002746582,0.709801375865936,-0.125565752387047,0.999241709709167,-0.036844365298748,0.0125943217426538,0.970951616764069,-0.0353522449731827,-0.236650064587593,0.704951405525208,0.709197223186493,-0.00910185277462006,0.693120002746582,0.709801375865936,-0.125565752387047,-0.101830936968327,0.994445443153381,-0.0266244672238827,0.344284534454346,0.938412725925446,-0.0291538368910551,0.344478905200958,0.938119292259216,-0.0355876460671425,-0.0971817076206207,0.994568943977356,0.0372605174779892,0.0497765503823757,0.998624861240387,-0.0164502244442701,0.0530764982104301,0.99792492389679,-0.0364527329802513,6.92559478920884e-005,0.999871671199799,-0.0160270258784294,0.039667509496212,0.998723089694977,0.0312845557928085,-0.00522169144824147,0.999344348907471,0.0358283817768097,0.0283964816480875,0.999514400959015,0.0128347221761942,-0.0112174088135362,0.999544143676758,-0.0280338060110807,0.0423335768282413,0.998571753501892,-0.0325943157076836,0.047563225030899,0.998685836791992,0.0190921630710363,-0.00277082831598818,0.999391317367554,0.0347769781947136,-0.0605176761746407,0.0400238670408726,-0.997364401817322,0.276636838912964,0.959919095039368,-0.045027494430542,-0.0599107816815376,0.101062349975109,-0.993074655532837,-0.143232583999634,0.164884358644485,-0.975857377052307,-0.280177712440491,0.959499895572662,-0.0293332040309906,-0.00792429037392139,0.0360662341117859,-0.99931800365448,-0.0922830551862717,-0.0395733416080475,-0.994946181774139,-0.127951979637146,-0.099733404815197,-0.986753106117249,-0.280938923358917,-0.959725737571716,5.66802991670556e-005,-0.0435906201601028,-0.0815581083297729,-0.995714902877808,-0.0575582459568977,-0.0322827510535717,-0.997820138931274,
- 0.271519601345062,-0.958622872829437,-0.0855526626110077,0.958155393600464,0.286248534917831,0.000429510662797838,0.14661368727684,0.0381469801068306,0.988458037376404,0.118587426841259,0.0339842587709427,0.992361962795258,0.0709678083658218,-0.0340122580528259,0.996898591518402,0.0434736087918282,-0.0234547853469849,0.998779237270355,-0.885320663452148,-0.43408066034317,0.166676953434944,-0.422347545623779,0.0287970323115587,-0.905976414680481,-0.391039311885834,0.0803489238023758,-0.916860044002533,-0.450759321451187,-0.116396263241768,-0.88502424955368,-0.450806051492691,-0.0496704950928688,-0.891238987445831,0.237777128815651,0.959598898887634,-0.150439247488976,-0.422347545623779,0.0287970323115587,-0.905976414680481,-0.313436359167099,0.0259468331933022,-0.9492546916008,-0.279123395681381,0.958824932575226,0.0523919090628624,-0.109605774283409,0.99397474527359,0.000864803674630821,-0.154046759009361,0.987876415252686,0.0192317869514227,0.0355436578392982,0.999211668968201,-0.017686452716589,0.310737729072571,0.943344414234161,-0.116376228630543,0.310737729072571,0.943344414234161,-0.116376228630543,0.0355436578392982,0.999211668968201,-0.017686452716589,0.344601392745972,0.926627457141876,-0.150371506810188,0.413347274065018,0.882859528064728,-0.222942113876343,-0.461389183998108,0.158365875482559,-0.872949182987213,-0.313436359167099,0.0259468331933022,-0.9492546916008,-0.390585660934448,-0.0424541011452675,-0.919587135314941,-0.374964684247971,-0.0907322615385056,-0.922588348388672,0.939783096313477,0.000456362962722778,-0.341771245002747,0.469748347997665,0.0097988722845912,0.882746040821075,0.468065321445465,0.0518223196268082,0.88217306137085,0.900599479675293,0.286926507949829,-0.326487094163895,-0.450806051492691,-0.0496704950928688,-0.891238987445831,-0.258709460496902,-0.960037589073181,0.106758140027523,0.231739208102226,-0.958994030952454,-0.163178846240044,-0.390585660934448,-0.0424541011452675,-0.919587135314941,-0.118377760052681,0.989333748817444,0.0848857462406158,-0.0827658995985985,0.994886934757233,0.0578788444399834,
- 0.299515664577484,0.942249417304993,-0.149855315685272,0.0319722443819046,0.998591125011444,-0.0423509329557419,0.0319722443819046,0.998591125011444,-0.0423509329557419,0.299515664577484,0.942249417304993,-0.149855315685272,0.643742203712463,0.720301151275635,-0.258384168148041,0.727124333381653,0.571163892745972,-0.38087010383606,0.375464379787445,0.012150164693594,0.926757276058197,-0.864615499973297,-0.000305247493088245,0.502434134483337,-0.772280097007751,-0.433733612298965,0.464175254106522,0.376186639070511,-0.00962437689304352,0.926494002342224,0.938532948493958,-0.0610513053834438,-0.339747875928879,0.941914200782776,-0.0456890948116779,-0.332731485366821,0.932868480682373,0.00535515369847417,-0.360177546739578,0.917038559913635,0.112093761563301,-0.382721036672592,0.430765062570572,0.0304953269660473,0.901948750019073,0.468065321445465,0.0518223196268082,0.88217306137085,0.376186639070511,-0.00962437689304352,0.926494002342224,0.392806053161621,-0.0272279530763626,0.919218242168427,0.867495059967041,-0.0455557741224766,-0.495355665683746,0.863255321979523,-0.0648681223392487,-0.500582039356232,0.727124333381653,0.571163892745972,-0.38087010383606,0.643742203712463,0.720301151275635,-0.258384168148041,-0.313436359167099,0.0259468331933022,-0.9492546916008,-0.422347545623779,0.0287970323115587,-0.905976414680481,-0.450806051492691,-0.0496704950928688,-0.891238987445831,-0.390585660934448,-0.0424541011452675,-0.919587135314941,0.375464379787445,0.012150164693594,0.926757276058197,0.376186639070511,-0.00962437689304352,0.926494002342224,0.468065321445465,0.0518223196268082,0.88217306137085,0.469748347997665,0.0097988722845912,0.882746040821075,0.643742203712463,0.720301151275635,-0.258384168148041,0.299515664577484,0.942249417304993,-0.149855315685272,0.310737729072571,0.943344414234161,-0.116376228630543,0.413347274065018,0.882859528064728,-0.222942113876343,0.420161962509155,0.883315145969391,-0.207889959216118,0.624077022075653,0.716289460659027,-0.312181532382965,0.941914200782776,-0.0456890948116779,-0.332731485366821,
- 0.867495059967041,-0.0455557741224766,-0.495355665683746,0.643742203712463,0.720301151275635,-0.258384168148041,0.624077022075653,0.716289460659027,-0.312181532382965,0.906384229660034,0.00436304043978453,-0.422431886196136,0.932868480682373,0.00535515369847417,-0.360177546739578,-0.109605774283409,0.99397474527359,0.000864803674630821,0.310737729072571,0.943344414234161,-0.116376228630543,0.299515664577484,0.942249417304993,-0.149855315685272,-0.0827658995985985,0.994886934757233,0.0578788444399834,0.0351291671395302,0.998419284820557,-0.0438743233680725,0.0313692949712276,0.997452616691589,-0.0640656277537346,-0.0113309295848012,0.999581217765808,-0.0266299992799759,0.0423049181699753,0.999091625213623,0.00511909648776054,0.00158980302512646,0.999700725078583,0.0244122371077538,0.0446226187050343,0.998767077922821,-0.0217532627284527,-0.0262232068926096,0.998967230319977,-0.0371069274842739,0.0263997595757246,0.997806549072266,-0.0607067868113518,-0.00535423634573817,0.99998551607132,0.000575211481191218,0.0735228359699249,0.996735811233521,-0.0333503820002079,0.0632055327296257,0.99733966588974,-0.0363153032958508,0.0406519658863544,0.999051094055176,-0.0156330615282059,-0.422347545623779,0.0287970323115587,-0.905976414680481,0.237777128815651,0.959598898887634,-0.150439247488976,-0.391039311885834,0.0803489238023758,-0.916860044002533,-0.461389183998108,0.158365875482559,-0.872949182987213,-0.279123395681381,0.958824932575226,0.0523919090628624,-0.313436359167099,0.0259468331933022,-0.9492546916008,-0.450806051492691,-0.0496704950928688,-0.891238987445831,-0.450759321451187,-0.116396263241768,-0.88502424955368,-0.258709460496902,-0.960037589073181,0.106758140027523,-0.374964684247971,-0.0907322615385056,-0.922588348388672,-0.390585660934448,-0.0424541011452675,-0.919587135314941,0.231739208102226,-0.958994030952454,-0.163178846240044,0.900599479675293,0.286926507949829,-0.326487094163895,0.468065321445465,0.0518223196268082,0.88217306137085,0.430765062570572,0.0304953269660473,0.901948750019073,0.392806053161621,-0.0272279530763626,0.919218242168427,
- 0.376186639070511,-0.00962437689304352,0.926494002342224,-0.772280097007751,-0.433733612298965,0.464175254106522,-0.636586368083954,0.0400982201099396,-0.770162284374237,-0.608863949775696,0.0870398133993149,-0.788485169410706,-0.659878671169281,-0.112332083284855,-0.742927730083466,-0.659912586212158,-0.0393961295485497,-0.750308930873871,0.201009154319763,0.959945738315582,-0.19519117474556,-0.636586368083954,0.0400982201099396,-0.770162284374237,-0.547385811805725,0.0370195731520653,-0.836061179637909,-0.247774034738541,0.959546685218811,0.133709460496902,-0.0994057059288025,0.994397103786469,0.0359587818384171,-0.130990445613861,0.989241003990173,0.0651437342166901,0.044069979339838,0.998866260051727,-0.0180038623511791,0.267311125993729,0.93834662437439,-0.219204053282738,0.267311125993729,0.93834662437439,-0.219204053282738,0.044069979339838,0.998866260051727,-0.0180038623511791,0.645618975162506,0.576196432113647,-0.501172482967377,0.502799093723297,0.709326207637787,-0.494013547897339,-0.66762638092041,0.164310455322266,-0.726138532161713,-0.547385811805725,0.0370195731520653,-0.836061179637909,-0.611929655075073,-0.0320638902485371,-0.790262043476105,-0.596368432044983,-0.0819127708673477,-0.798520565032959,0.819875121116638,3.78936529159546e-005,-0.572542488574982,0.678749322891235,-0.00115192565135658,0.734369039535522,0.677343547344208,0.0402715429663658,0.734563827514648,0.789029359817505,0.286380350589752,-0.543524503707886,-0.659912586212158,-0.0393961295485497,-0.750308930873871,-0.23043991625309,-0.959700763225555,0.160847350955009,0.175965830683708,-0.958570122718811,-0.224007874727249,-0.611929655075073,-0.0320638902485371,-0.790262043476105,-0.086150586605072,0.988966584205627,0.120512507855892,-0.0586014091968536,0.994648814201355,0.0850859060883522,0.263728529214859,0.93817663192749,-0.224213972687721,0.0265321061015129,0.998890101909637,-0.0389184355735779,0.0265321061015129,0.998890101909637,-0.0389184355735779,0.263728529214859,0.93817663192749,-0.224213972687721,0.577722072601318,0.709772109985352,-0.403064280748367,
- 0.610677659511566,0.572957098484039,-0.546619534492493,0.597431123256683,0.00132269028108567,0.801919102668762,-0.710137724876404,-0.000869784504175186,0.704062283039093,-0.633869349956512,-0.434260010719299,0.640021800994873,0.597993969917297,-0.0214946605265141,0.801212310791016,0.818396151065826,-0.0583571940660477,-0.571683585643768,0.851803004741669,-0.0354064404964447,-0.522664368152618,0.502799093723297,0.709326207637787,-0.494013547897339,0.645618975162506,0.576196432113647,-0.501172482967377,0.655131161212921,0.0340316295623779,0.754748404026031,0.677343547344208,0.0402715429663658,0.734563827514648,0.597993969917297,-0.0214946605265141,0.801212310791016,0.616837859153748,-0.033737238496542,0.786366939544678,0.695537984371185,-0.0368907414376736,-0.717541694641113,0.708840668201447,-0.0609578900039196,-0.702729761600494,0.610677659511566,0.572957098484039,-0.546619534492493,0.577722072601318,0.709772109985352,-0.403064280748367,-0.547385811805725,0.0370195731520653,-0.836061179637909,-0.636586368083954,0.0400982201099396,-0.770162284374237,-0.659912586212158,-0.0393961295485497,-0.750308930873871,-0.611929655075073,-0.0320638902485371,-0.790262043476105,0.597431123256683,0.00132269028108567,0.801919102668762,0.597993969917297,-0.0214946605265141,0.801212310791016,0.677343547344208,0.0402715429663658,0.734563827514648,0.678749322891235,-0.00115192565135658,0.734369039535522,0.577722072601318,0.709772109985352,-0.403064280748367,0.263728529214859,0.93817663192749,-0.224213972687721,0.267311125993729,0.93834662437439,-0.219204053282738,0.502799093723297,0.709326207637787,-0.494013547897339,0.851803004741669,-0.0354064404964447,-0.522664368152618,0.695537984371185,-0.0368907414376736,-0.717541694641113,0.577722072601318,0.709772109985352,-0.403064280748367,0.502799093723297,0.709326207637787,-0.494013547897339,-0.0994057059288025,0.994397103786469,0.0359587818384171,0.267311125993729,0.93834662437439,-0.219204053282738,0.263728529214859,0.93817663192749,-0.224213972687721,-0.0586014091968536,0.994648814201355,0.0850859060883522,
- 0.0308731179684401,0.998614311218262,-0.0426202230155468,0.0222732294350863,0.99789035320282,-0.0609831213951111,-0.00973909255117178,0.999853372573853,-0.0140892639756203,0.0496399253606796,0.998764395713806,0.00239511043764651,0.0151324141770601,0.999392747879028,0.031386960297823,0.0299608260393143,0.999530255794525,-0.00646557519212365,-0.0260838754475117,0.999500155448914,-0.0178679209202528,0.01558006554842,0.998536229133606,-0.0517954453825951,0.049344252794981,0.998708486557007,-0.0121068712323904,0.0166959427297115,0.999427437782288,0.0294298268854618,-0.636586368083954,0.0400982201099396,-0.770162284374237,0.201009154319763,0.959945738315582,-0.19519117474556,-0.608863949775696,0.0870398133993149,-0.788485169410706,-0.66762638092041,0.164310455322266,-0.726138532161713,-0.247774034738541,0.959546685218811,0.133709460496902,-0.547385811805725,0.0370195731520653,-0.836061179637909,-0.659912586212158,-0.0393961295485497,-0.750308930873871,-0.659878671169281,-0.112332083284855,-0.742927730083466,-0.23043991625309,-0.959700763225555,0.160847350955009,-0.596368432044983,-0.0819127708673477,-0.798520565032959,-0.611929655075073,-0.0320638902485371,-0.790262043476105,0.175965830683708,-0.958570122718811,-0.224007874727249,0.789029359817505,0.286380350589752,-0.543524503707886,0.677343547344208,0.0402715429663658,0.734563827514648,0.655131161212921,0.0340316295623779,0.754748404026031,0.616837859153748,-0.033737238496542,0.786366939544678,0.597993969917297,-0.0214946605265141,0.801212310791016,-0.633869349956512,-0.434260010719299,0.640021800994873,-0.790364384651184,0.00946761202067137,-0.612563908100128,-0.761706590652466,0.0660285204648972,-0.644548952579498,-0.792662560939789,-0.107090450823307,-0.600181460380554,-0.807206571102142,-0.0694893077015877,-0.586164474487305,0.129180580377579,0.958390235900879,-0.254559427499771,-0.790364384651184,0.00946761202067137,-0.612563908100128,-0.718928813934326,0.00645209942013025,-0.695053815841675,-0.23679606616497,0.957479000091553,0.164808243513107,-0.128144398331642,0.990019917488098,0.0586497634649277,
- -0.142403110861778,0.986847400665283,0.0765098258852959,0.010897102765739,0.998968124389648,-0.0440911650657654,0.195212259888649,0.936957478523254,-0.289832592010498,0.195212259888649,0.936957478523254,-0.289832592010498,0.010897102765739,0.998968124389648,-0.0440911650657654,0.504640221595764,0.578340351581573,-0.640984117984772,0.390132933855057,0.696477234363556,-0.602258861064911,-0.815504729747772,0.134371638298035,-0.562935531139374,-0.718928813934326,0.00645209942013025,-0.695053815841675,-0.77103716135025,-0.06239889934659,-0.633725464344025,-0.756660401821136,-0.112519107758999,-0.644053101539612,0.674533009529114,0.0012957378057763,-0.738243639469147,0.824259519577026,0.0292790569365025,0.565454840660095,0.822218358516693,0.0654537975788116,0.565396189689636,0.643764555454254,0.287560611963272,-0.709137558937073,-0.807206571102142,-0.0694893077015877,-0.586164474487305,-0.164478436112404,-0.960304737091064,0.225303560495377,0.142356097698212,-0.959526419639587,-0.242989212274551,-0.77103716135025,-0.06239889934659,-0.633725464344025,-0.0549171790480614,0.91270524263382,-0.404911547899246,-0.0237360037863255,0.919399976730347,-0.392607271671295,-0.0175697300583124,0.97249448299408,-0.232262447476387,-0.0175697300583124,0.97249448299408,-0.232262447476387,0.000705589598510414,0.982183575630188,-0.18792299926281,-0.0011491512414068,0.998482525348663,0.0550583079457283,0.00515907723456621,0.998458802700043,0.0552576594054699,0.76043576002121,0.0317005105316639,0.64863908290863,-0.529678404331207,0.000828158925287426,0.848198115825653,-0.459202706813812,-0.431819379329681,0.776315093040466,0.761337339878082,0.00662682112306356,0.64832216501236,0.674874365329742,-0.054768480360508,-0.735897481441498,0.717414677143097,-0.0310703981667757,-0.695953130722046,0.390132933855057,0.696477234363556,-0.602258861064911,0.504640221595764,0.578340351581573,-0.640984117984772,0.804359197616577,0.0651625618338585,0.590559124946594,0.822218358516693,0.0654537975788116,0.565396189689636,0.761337339878082,0.00662682112306356,0.64832216501236,
- 0.775766789913177,-0.00211993441917002,0.631016254425049,0.522574722766876,-0.040131002664566,-0.851648509502411,0.53028279542923,-0.0782240927219391,-0.844204545021057,0.536132037639618,0.350789457559586,-0.767795085906982,0.406804502010345,0.697897911071777,-0.589447736740112,-0.718928813934326,0.00645209942013025,-0.695053815841675,-0.790364384651184,0.00946761202067137,-0.612563908100128,-0.807206571102142,-0.0694893077015877,-0.586164474487305,-0.77103716135025,-0.06239889934659,-0.633725464344025,0.76043576002121,0.0317005105316639,0.64863908290863,0.761337339878082,0.00662682112306356,0.64832216501236,0.822218358516693,0.0654537975788116,0.565396189689636,0.824259519577026,0.0292790569365025,0.565454840660095,0.0380566716194153,0.938976407051086,-0.341869950294495,0.000705589598510414,0.982183575630188,-0.18792299926281,-0.0237360037863255,0.919399976730347,-0.392607271671295,0.717414677143097,-0.0310703981667757,-0.695953130722046,0.522574722766876,-0.040131002664566,-0.851648509502411,0.406804502010345,0.697897911071777,-0.589447736740112,0.390132933855057,0.696477234363556,-0.602258861064911,-0.000966218765825033,0.999933481216431,0.0114958714693785,-0.0211715959012508,0.999501585960388,-0.0234188716858625,0.0217304620891809,0.996053040027618,-0.0860592722892761,0.0140741318464279,0.995483100414276,-0.0938904285430908,-0.0499579980969429,0.998035192489624,-0.0378143042325974,0.000791579601354897,0.995803952217102,-0.0915090590715408,0.019473273307085,0.999689936637878,-0.015522388741374,0.00282844924367964,0.999424159526825,-0.0338139310479164,-0.0545295178890228,0.997978448867798,-0.0326424986124039,-0.0212823916226625,0.996963202953339,-0.0749092921614647,0.0205788239836693,0.998840153217316,-0.0435297675430775,-0.00217876560054719,0.999989151954651,0.00412516575306654,-0.790364384651184,0.00946761202067137,-0.612563908100128,0.129180580377579,0.958390235900879,-0.254559427499771,-0.761706590652466,0.0660285204648972,-0.644548952579498,-0.815504729747772,0.134371638298035,-0.562935531139374,-0.23679606616497,0.957479000091553,0.164808243513107,
- -0.718928813934326,0.00645209942013025,-0.695053815841675,-0.807206571102142,-0.0694893077015877,-0.586164474487305,-0.792662560939789,-0.107090450823307,-0.600181460380554,-0.164478436112404,-0.960304737091064,0.225303560495377,-0.756660401821136,-0.112519107758999,-0.644053101539612,-0.77103716135025,-0.06239889934659,-0.633725464344025,0.142356097698212,-0.959526419639587,-0.242989212274551,0.643764555454254,0.287560611963272,-0.709137558937073,0.822218358516693,0.0654537975788116,0.565396189689636,0.804359197616577,0.0651625618338585,0.590559124946594,0.775766789913177,-0.00211993441917002,0.631016254425049,0.761337339878082,0.00662682112306356,0.64832216501236,-0.459202706813812,-0.431819379329681,0.776315093040466,-0.979691028594971,0.0346882976591587,-0.197489827871323,-0.973561108112335,0.10922684520483,-0.200619548559189,-0.986688733100891,-0.092692494392395,-0.133617013692856,-0.984797954559326,-0.0449746660888195,-0.16778077185154,0.0232426412403584,0.959729731082916,-0.279961884021759,-0.979691028594971,0.0346882976591587,-0.197489827871323,-0.966885447502136,0.0307140648365021,-0.253355860710144,-0.107005998492241,0.959283649921417,0.261389970779419,-0.0575330965220928,0.994217038154602,0.0906774625182152,-0.0622055120766163,0.989132583141327,0.133218720555305,0.0173354744911194,0.998902082443237,-0.0435212925076485,0.0571907423436642,0.938383400440216,-0.340831160545349,0.0571907423436642,0.938383400440216,-0.340831160545349,0.0173354744911194,0.998902082443237,-0.0435212925076485,0.166765064001083,0.572554230690002,-0.802727341651917,0.0573541224002838,0.709369778633118,-0.702499151229858,-0.980200827121735,0.159145683050156,-0.117809474468231,-0.966885447502136,0.0307140648365021,-0.253355860710144,-0.978019833564758,-0.0376910269260406,-0.205077484250069,-0.971776187419891,-0.0875059589743614,-0.21907477080822,0.25546994805336,0.000249304779572412,-0.966816961765289,0.993160724639893,0.00429407507181168,0.116676062345505,0.992038488388062,0.0447517074644566,0.117715775966644,0.249286472797394,0.286577790975571,-0.925056457519531,
- -0.984797954559326,-0.0449746660888195,-0.16778077185154,-0.0677047297358513,-0.959870100021362,0.272149860858917,-0.0060508456081152,-0.958825767040253,-0.283930659294128,-0.978019833564758,-0.0376910269260406,-0.205077484250069,0.00766364205628634,0.98908805847168,0.147126719355583,0.00541011150926352,0.994735777378082,0.102330200374126,0.0512326881289482,0.938140034675598,-0.34244504570961,-0.00970070715993643,0.998844087123871,-0.0470801740884781,-0.00970070715993643,0.998844087123871,-0.0470801740884781,0.0512326881289482,0.938140034675598,-0.34244504570961,0.172765165567398,0.70965850353241,-0.683035135269165,0.109692722558975,0.577356159687042,-0.809090495109558,0.975240349769592,0.00673940870910883,0.221045359969139,-0.0867875069379807,-0.000661654630675912,0.996226668357849,-0.0679097920656204,-0.433960407972336,0.898368895053864,0.975303411483765,-0.0178835429251194,0.220144182443619,0.255040675401688,-0.0615981072187424,-0.964966356754303,0.274356544017792,-0.0362547487020493,-0.960944354534149,0.0573541224002838,0.709369778633118,-0.702499151229858,0.166765064001083,0.572554230690002,-0.802727341651917,0.988245069980621,0.0396331809461117,0.147651508450508,0.992038488388062,0.0447517074644566,0.117715775966644,0.975303411483765,-0.0178835429251194,0.220144182443619,0.980619668960571,-0.028422499075532,0.193848982453346,0.02753871306777,-0.0361527428030968,-0.998966753482819,0.086861327290535,-0.0577297508716583,-0.994546294212341,0.109692722558975,0.577356159687042,-0.809090495109558,0.172765165567398,0.70965850353241,-0.683035135269165,-0.966885447502136,0.0307140648365021,-0.253355860710144,-0.979691028594971,0.0346882976591587,-0.197489827871323,-0.984797954559326,-0.0449746660888195,-0.16778077185154,-0.978019833564758,-0.0376910269260406,-0.205077484250069,0.975240349769592,0.00673940870910883,0.221045359969139,0.975303411483765,-0.0178835429251194,0.220144182443619,0.992038488388062,0.0447517074644566,0.117715775966644,0.993160724639893,0.00429407507181168,0.116676062345505,0.172765165567398,0.70965850353241,-0.683035135269165,
- 0.0512326881289482,0.938140034675598,-0.34244504570961,0.0571907423436642,0.938383400440216,-0.340831160545349,0.0573541224002838,0.709369778633118,-0.702499151229858,0.274356544017792,-0.0362547487020493,-0.960944354534149,0.02753871306777,-0.0361527428030968,-0.998966753482819,0.172765165567398,0.70965850353241,-0.683035135269165,0.0573541224002838,0.709369778633118,-0.702499151229858,-0.0575330965220928,0.994217038154602,0.0906774625182152,0.0571907423436642,0.938383400440216,-0.340831160545349,0.0512326881289482,0.938140034675598,-0.34244504570961,0.00541011150926352,0.994735777378082,0.102330200374126,-0.00871200114488602,0.998551309108734,-0.053098950535059,-0.027160782366991,0.997736155986786,-0.0615220740437508,-0.0212688893079758,0.999761164188385,-0.00502208760008216,0.0347552113234997,0.998919069766998,-0.0308674518018961,0.0273613799363375,0.999532878398895,0.0136222895234823,0.0139612052589655,0.999581634998322,-0.0253325812518597,-0.0358107872307301,0.999356091022491,0.00224519474431872,-0.0261040031909943,0.998376846313477,-0.0506192147731781,0.0250398740172386,0.998796105384827,-0.0421828404068947,0.0269898064434528,0.999580144882202,0.0105430614203215,-0.979691028594971,0.0346882976591587,-0.197489827871323,0.0232426412403584,0.959729731082916,-0.279961884021759,-0.973561108112335,0.10922684520483,-0.200619548559189,-0.980200827121735,0.159145683050156,-0.117809474468231,-0.107005998492241,0.959283649921417,0.261389970779419,-0.966885447502136,0.0307140648365021,-0.253355860710144,-0.984797954559326,-0.0449746660888195,-0.16778077185154,-0.986688733100891,-0.092692494392395,-0.133617013692856,-0.0677047297358513,-0.959870100021362,0.272149860858917,-0.971776187419891,-0.0875059589743614,-0.21907477080822,-0.978019833564758,-0.0376910269260406,-0.205077484250069,-0.0060508456081152,-0.958825767040253,-0.283930659294128,0.249286472797394,0.286577790975571,-0.925056457519531,0.992038488388062,0.0447517074644566,0.117715775966644,0.988245069980621,0.0396331809461117,0.147651508450508,0.980619668960571,-0.028422499075532,0.193848982453346,
- 0.975303411483765,-0.0178835429251194,0.220144182443619,-0.0679097920656204,-0.433960407972336,0.898368895053864,0.00605454947799444,0.0300762541592121,-0.999529302120209,0.00551208481192589,0.0304050799459219,-0.999522507190704,0.0049696178175509,0.0307338889688253,-0.999515235424042,0.00551208620890975,0.0304050762206316,-0.99952244758606,-0.994150280952454,0.0521274842321873,-0.09459438174963,-0.998078167438507,0.0289042741060257,-0.0548143833875656,-0.999872922897339,0.00561928888782859,-0.0149172283709049,-0.998078107833862,0.0289042703807354,-0.054814375936985,0.150022819638252,0.973828315734863,-0.170738235116005,0.184825509786606,0.897771954536438,-0.399806320667267,0.529164791107178,0.793352425098419,-0.300959378480911,0.621160209178925,-0.225736171007156,-0.750468611717224,-0.561088263988495,0.51410973072052,0.648745894432068,-0.555179476737976,0.777913451194763,0.294323861598969,-0.336141705513,0.904756426811218,0.261581063270569,-0.561088263988495,0.51410973072052,0.648745894432068,-0.336141705513,0.904756426811218,0.261581063270569,0.184825509786606,0.897771954536438,-0.399806320667267,0.150022819638252,0.973828315734863,-0.170738235116005,-0.484242886304855,0.592982411384583,0.643335580825806,-0.555179476737976,0.777913451194763,0.294323861598969,-0.555504143238068,0.576621830463409,0.599101305007935,0.511143326759338,0.821922779083252,-0.251347422599792,0.481003373861313,0.831770718097687,-0.277116000652313,0.335289388895035,-0.715949296951294,-0.612370491027832,0.87624204158783,-0.478348284959793,0.0581628978252411,0.481003373861313,0.831770718097687,-0.277116000652313,0.511143326759338,0.821922779083252,-0.251347422599792,0.381999015808105,0.923884332180023,-0.0226838160306215,0.31950581073761,0.946206867694855,-0.0510744452476501,0.444187223911285,0.890982270240784,0.0940654277801514,0.487879484891891,0.872508943080902,0.0264907293021679,-0.599139451980591,0.59912234544754,0.531116247177124,-0.604306101799011,0.609904646873474,0.51267009973526,0.87624204158783,-0.478348284959793,0.0581628978252411,
- 0.335289388895035,-0.715949296951294,-0.612370491027832,0.942031145095825,0.0441633053123951,-0.332606464624405,0.842857480049133,-0.0535376891493797,-0.535467088222504,0.636116743087769,-0.564201593399048,-0.526338338851929,0.539174973964691,-0.580531179904938,-0.610142648220062,0.462229907512665,0.847488760948181,-0.260971784591675,0.508660137653351,0.824507355690002,-0.247896432876587,0.578967213630676,-0.596661269664764,-0.555690765380859,0.706059813499451,-0.28307044506073,-0.649115264415741,0.628468751907349,-0.236990123987198,-0.740852773189545,-0.582525253295898,0.444625496864319,0.680420875549316,-0.592966675758362,0.435804158449173,0.677100718021393,-0.604894936084747,0.282696008682251,0.744436144828796,-0.559993147850037,0.515026330947876,0.648965001106262,-0.561088263988495,0.51410973072052,0.648745894432068,-0.608091831207275,0.394805908203125,0.688732624053955,0.487879484891891,0.872508943080902,0.0264907293021679,0.444187223911285,0.890982270240784,0.0940654277801514,0.508660137653351,0.824507355690002,-0.247896432876587,-0.555179476737976,0.777913451194763,0.294323861598969,-0.484242886304855,0.592982411384583,0.643335580825806,0.186344385147095,0.912260413169861,-0.36476942896843,-0.336141705513,0.904756426811218,0.261581063270569,-0.336141705513,0.904756426811218,0.261581063270569,0.186344385147095,0.912260413169861,-0.36476942896843,0.184825509786606,0.897771954536438,-0.399806320667267,-0.555179476737976,0.777913451194763,0.294323861598969,-0.561088263988495,0.51410973072052,0.648745894432068,-0.559993147850037,0.515026330947876,0.648965001106262,-0.555504143238068,0.576621830463409,0.599101305007935,0.496047228574753,-0.562277972698212,-0.661650002002716,0.621160209178925,-0.225736171007156,-0.750468611717224,0.529164791107178,0.793352425098419,-0.300959378480911,0.487879484891891,0.872508943080902,0.0264907293021679,-0.0234685093164444,0.84093713760376,-0.540623784065247,-0.670671045780182,0.590457022190094,0.448955357074738,-0.599139451980591,0.59912234544754,0.531116247177124,-0.572100698947906,0.777319431304932,0.261678159236908,
- -0.162663877010345,0.982597351074219,0.0896833911538124,0.271196991205215,0.951571702957153,-0.144787609577179,-0.809500873088837,0.579014539718628,0.0972143039107323,0.45138481259346,0.842536389827728,-0.293911993503571,0.268655836582184,0.784744322299957,-0.558570086956024,0.830266535282135,-0.529574275016785,-0.17380627989769,0.341895192861557,-0.480886518955231,-0.807375967502594,0.101976945996284,0.90067195892334,-0.42236316204071,0.271196991205215,0.951571702957153,-0.144787609577179,0.268655836582184,0.784744322299957,-0.558570086956024,0.45138481259346,0.842536389827728,-0.293911993503571,0.341895192861557,-0.480886518955231,-0.807375967502594,0.830266535282135,-0.529574275016785,-0.17380627989769,0.821676909923553,-0.0638008862733841,-0.566371381282806,0.948632001876831,-0.0495637059211731,-0.312475472688675,0.504128217697144,-0.5630242228508,-0.654872834682465,0.31950581073761,0.946206867694855,-0.0510744452476501,0.381999015808105,0.923884332180023,-0.0226838160306215,-0.791019141674042,0.592839121818542,0.15109771490097,-0.518879294395447,0.588543295860291,0.619984805583954,0.706059813499451,-0.28307044506073,-0.649115264415741,0.745482861995697,-0.549806535243988,-0.376786649227142,0.236038058996201,0.788486480712891,-0.567956924438477,0.428606778383255,0.797762095928192,-0.424113273620605,0.359796464443207,0.908437192440033,-0.212811157107353,0.470043778419495,0.880478620529175,-0.061776265501976,-0.452387303113937,0.582600295543671,0.675220429897308,-0.559346616268158,0.587887465953827,0.58439689874649,0.539174973964691,-0.580531179904938,-0.610142648220062,0.628468751907349,-0.236990123987198,-0.740852773189545,0.38997083902359,0.875434637069702,-0.285546809434891,0.462229907512665,0.847488760948181,-0.260971784591675,0.745482861995697,-0.549806535243988,-0.376786649227142,0.496047228574753,-0.562277972698212,-0.661650002002716,0.529164791107178,0.793352425098419,-0.300959378480911,0.236038058996201,0.788486480712891,-0.567956924438477,0.745482861995697,-0.549806535243988,-0.376786649227142,0.706059813499451,-0.28307044506073,-0.649115264415741,
- 0.578967213630676,-0.596661269664764,-0.555690765380859,0.636116743087769,-0.564201593399048,-0.526338338851929,0.952582240104675,-0.0847797021269798,-0.292232125997543,0.949990451335907,-0.0400644429028034,-0.3096983730793,-0.0234685093164444,0.84093713760376,-0.540623784065247,0.487879484891891,0.872508943080902,0.0264907293021679,0.508660137653351,0.824507355690002,-0.247896432876587,0.462229907512665,0.847488760948181,-0.260971784591675,0.38997083902359,0.875434637069702,-0.285546809434891,0.470043778419495,0.880478620529175,-0.061776265501976,0.359796464443207,0.908437192440033,-0.212811157107353,0.428606778383255,0.797762095928192,-0.424113273620605,0.236038058996201,0.788486480712891,-0.567956924438477,0.271196991205215,0.951571702957153,-0.144787609577179,0.101976945996284,0.90067195892334,-0.42236316204071,-0.633114576339722,0.612082958221436,0.473836004734039,-0.809500873088837,0.579014539718628,0.0972143039107323,0.268655836582184,0.784744322299957,-0.558570086956024,0.710519909858704,0.60573822259903,-0.358110040426254,0.908639669418335,-0.0892341509461403,-0.407935440540314,0.830266535282135,-0.529574275016785,-0.17380627989769,0.271196991205215,0.951571702957153,-0.144787609577179,-0.162663877010345,0.982597351074219,0.0896833911538124,0.710519909858704,0.60573822259903,-0.358110040426254,0.268655836582184,0.784744322299957,-0.558570086956024,0.830266535282135,-0.529574275016785,-0.17380627989769,0.908639669418335,-0.0892341509461403,-0.407935440540314,0.645884454250336,-0.684771776199341,-0.337521880865097,0.821676909923553,-0.0638008862733841,-0.566371381282806,0.381999015808105,0.923884332180023,-0.0226838160306215,0.444187223911285,0.890982270240784,0.0940654277801514,-0.604306101799011,0.609904646873474,0.51267009973526,-0.791019141674042,0.592839121818542,0.15109771490097,0.511143326759338,0.821922779083252,-0.251347422599792,0.508660137653351,0.824507355690002,-0.247896432876587,0.444187223911285,0.890982270240784,0.0940654277801514,0.381999015808105,0.923884332180023,-0.0226838160306215,0.508660137653351,0.824507355690002,-0.247896432876587,
- 0.511143326759338,0.821922779083252,-0.251347422599792,0.87624204158783,-0.478348284959793,0.0581628978252411,0.636116743087769,-0.564201593399048,-0.526338338851929,0.636116743087769,-0.564201593399048,-0.526338338851929,0.87624204158783,-0.478348284959793,0.0581628978252411,0.842857480049133,-0.0535376891493797,-0.535467088222504,0.952582240104675,-0.0847797021269798,-0.292232125997543,0.101976945996284,0.90067195892334,-0.42236316204071,0.31950581073761,0.946206867694855,-0.0510744452476501,-0.518879294395447,0.588543295860291,0.619984805583954,-0.633114576339722,0.612082958221436,0.473836004734039,0.31950581073761,0.946206867694855,-0.0510744452476501,0.101976945996284,0.90067195892334,-0.42236316204071,0.45138481259346,0.842536389827728,-0.293911993503571,0.481003373861313,0.831770718097687,-0.277116000652313,0.481003373861313,0.831770718097687,-0.277116000652313,0.45138481259346,0.842536389827728,-0.293911993503571,0.341895192861557,-0.480886518955231,-0.807375967502594,0.335289388895035,-0.715949296951294,-0.612370491027832,0.335289388895035,-0.715949296951294,-0.612370491027832,0.341895192861557,-0.480886518955231,-0.807375967502594,0.504128217697144,-0.5630242228508,-0.654872834682465,0.504128217697144,-0.5630242228508,-0.654872834682465,0.948632001876831,-0.0495637059211731,-0.312475472688675,0.865406513214111,-0.377337515354156,-0.32967871427536,0.335289388895035,-0.715949296951294,-0.612370491027832,0.504128217697144,-0.5630242228508,-0.654872834682465,0.865406513214111,-0.377337515354156,-0.32967871427536,0.942031145095825,0.0441633053123951,-0.332606464624405,0.636116743087769,-0.564201593399048,-0.526338338851929,0.949990451335907,-0.0400644429028034,-0.3096983730793,0.705099403858185,-0.053256306797266,-0.707105815410614,0.578967213630676,-0.596661269664764,-0.555690765380859,0.539174973964691,-0.580531179904938,-0.610142648220062,0.470043778419495,0.880478620529175,-0.061776265501976,0.186344385147095,0.912260413169861,-0.36476942896843,-0.484242886304855,0.592982411384583,0.643335580825806,-0.452387303113937,0.582600295543671,0.675220429897308,
- 0.184825509786606,0.897771954536438,-0.399806320667267,0.186344385147095,0.912260413169861,-0.36476942896843,0.470043778419495,0.880478620529175,-0.061776265501976,0.236038058996201,0.788486480712891,-0.567956924438477,0.529164791107178,0.793352425098419,-0.300959378480911,-0.0234685093164444,0.84093713760376,-0.540623784065247,0.359796464443207,0.908437192440033,-0.212811157107353,-0.559346616268158,0.587887465953827,0.58439689874649,-0.670671045780182,0.590457022190094,0.448955357074738,0.359796464443207,0.908437192440033,-0.212811157107353,-0.0234685093164444,0.84093713760376,-0.540623784065247,0.38997083902359,0.875434637069702,-0.285546809434891,0.428606778383255,0.797762095928192,-0.424113273620605,0.628468751907349,-0.236990123987198,-0.740852773189545,0.706059813499451,-0.28307044506073,-0.649115264415741,0.428606778383255,0.797762095928192,-0.424113273620605,0.38997083902359,0.875434637069702,-0.285546809434891,0.578967213630676,-0.596661269664764,-0.555690765380859,0.628468751907349,-0.236990123987198,-0.740852773189545,0.539174973964691,-0.580531179904938,-0.610142648220062,-0.604894936084747,0.282696008682251,0.744436144828796,-0.649105429649353,0.543805360794067,0.531919062137604,-0.555504143238068,0.576621830463409,0.599101305007935,-0.559993147850037,0.515026330947876,0.648965001106262,0.803273797035217,-0.0666215196251869,-0.59187239408493,0.600964188575745,-0.406713724136353,-0.688059628009796,0.621160209178925,-0.225736171007156,-0.750468611717224,0.496047228574753,-0.562277972698212,-0.661650002002716,0.705099403858185,-0.053256306797266,-0.707105815410614,0.803273797035217,-0.0666215196251869,-0.59187239408493,0.496047228574753,-0.562277972698212,-0.661650002002716,0.745482861995697,-0.549806535243988,-0.376786649227142,0.578967213630676,-0.596661269664764,-0.555690765380859,-0.812539160251617,0.455442577600479,0.363802462816238,-0.796379327774048,0.450260192155838,0.403789341449738,-0.807822644710541,0.445865154266357,0.385521531105042,-0.792562127113342,0.447731345891953,0.413983076810837,-0.79533576965332,0.446302205324173,0.410189539194107,
- -0.79718554019928,0.448465555906296,0.404195547103882,-0.144672378897667,0.97385036945343,0.175172463059425,-0.640482306480408,-0.221310213208199,0.73539400100708,-0.253985494375229,0.794231653213501,0.551985085010529,-0.368442833423615,0.906347036361694,0.206845462322235,0.55008590221405,0.514400124549866,-0.65787398815155,0.214437991380692,0.90142023563385,-0.376108884811401,0.220024555921555,0.762566685676575,-0.608343005180359,0.55008590221405,0.514400124549866,-0.65787398815155,-0.144672378897667,0.97385036945343,0.175172463059425,-0.368442833423615,0.906347036361694,0.206845462322235,0.214437991380692,0.90142023563385,-0.376108884811401,0.606019914150238,0.593630254268646,-0.529474377632141,0.505835890769959,0.577166438102722,-0.641099810600281,0.220024555921555,0.762566685676575,-0.608343005180359,-0.408335626125336,0.818034648895264,0.405069649219513,-0.203257709741592,-0.483116626739502,0.851636528968811,-0.668708860874176,-0.743520140647888,-0.00248675071634352,-0.450079262256622,0.827589213848114,0.335447490215302,-0.450079262256622,0.827589213848114,0.335447490215302,-0.165510028600693,0.94209498167038,0.29165643453598,-0.134072527289391,0.920657157897949,0.366626590490341,-0.408335626125336,0.818034648895264,0.405069649219513,-0.00888124201446772,0.865397691726685,0.501007080078125,0.657483220100403,0.605856895446777,-0.447943389415741,0.621046483516693,0.597138941287994,-0.507667720317841,-0.0156628955155611,0.862436652183533,0.505922734737396,-0.203257709741592,-0.483116626739502,0.851636528968811,-0.796422839164734,0.0529241040349007,0.602419912815094,-0.615910589694977,0.118970662355423,0.778781235218048,-0.668708860874176,-0.743520140647888,-0.00248675071634352,-0.648186504840851,-0.573506772518158,0.50094336271286,-0.350675582885742,0.815563917160034,0.460306733846664,-0.28717240691185,0.834617972373962,0.470047891139984,-0.663603365421295,-0.586061298847198,0.464933097362518,-0.571324110031128,-0.596671223640442,0.563535451889038,-0.766836047172546,-0.228023022413254,0.599973380565643,-0.663366615772247,-0.288151770830154,0.690589129924774,
- 0.578135073184967,0.444493174552917,-0.684241056442261,0.583212614059448,0.395187556743622,-0.709711074829102,0.55008590221405,0.514400124549866,-0.65787398815155,0.550276815891266,0.515031039714813,-0.657220363616943,0.607206463813782,0.450888931751251,-0.654216766357422,0.570374429225922,0.436206430196762,-0.695986330509186,-0.0156628955155611,0.862436652183533,0.505922734737396,-0.350675582885742,0.815563917160034,0.460306733846664,-0.00888124201446772,0.865397691726685,0.501007080078125,0.220024555921555,0.762566685676575,-0.608343005180359,0.214437991380692,0.90142023563385,-0.376108884811401,-0.361919820308685,0.917820811271667,0.163153901696205,0.606019914150238,0.593630254268646,-0.529474377632141,0.214437991380692,0.90142023563385,-0.376108884811401,-0.368442833423615,0.906347036361694,0.206845462322235,-0.361919820308685,0.917820811271667,0.163153901696205,0.220024555921555,0.762566685676575,-0.608343005180359,0.505835890769959,0.577166438102722,-0.641099810600281,0.550276815891266,0.515031039714813,-0.657220363616943,0.55008590221405,0.514400124549866,-0.65787398815155,-0.621051073074341,-0.564342856407166,0.543886661529541,-0.253985494375229,0.794231653213501,0.551985085010529,-0.640482306480408,-0.221310213208199,0.73539400100708,-0.0156628955155611,0.862436652183533,0.505922734737396,0.621046483516693,0.597138941287994,-0.507667720317841,0.494311422109604,0.581848740577698,-0.645839273929596,-0.560247719287872,0.820295572280884,-0.115055307745934,0.550881028175354,0.783199489116669,-0.288320481777191,0.50516152381897,0.576773166656494,-0.641984820365906,-0.266883581876755,0.952242434024811,0.148349329829216,0.171906679868698,0.982174515724182,-0.0760352611541748,-0.487630873918533,0.835152566432953,0.254433333873749,-0.864433825016022,-0.490197569131851,-0.11162668466568,-0.563805103302002,-0.531762838363647,0.631943106651306,-0.640762090682983,0.762818455696106,-0.0867877304553986,-0.412592858076096,0.902475357055664,-0.123715497553349,-0.487630873918533,0.835152566432953,0.254433333873749,-0.640762090682983,0.762818455696106,-0.0867877304553986,
- -0.266883581876755,0.952242434024811,0.148349329829216,-0.864433825016022,-0.490197569131851,-0.11162668466568,-0.812659621238709,-0.567268311977386,0.133382976055145,-0.719113111495972,0.0601430684328079,0.692285478115082,-0.955583453178406,0.0402486436069012,0.291959643363953,-0.563805103302002,-0.531762838363647,0.631943106651306,-0.165510028600693,0.94209498167038,0.29165643453598,0.788909018039703,0.580663323402405,-0.201128587126732,0.391981571912766,0.593315660953522,-0.703083992004395,-0.134072527289391,0.920657157897949,0.366626590490341,-0.663366615772247,-0.288151770830154,0.690589129924774,-0.425585985183716,0.800357222557068,0.422261714935303,-0.629171788692474,0.759784698486328,0.163921386003494,-0.302596360445023,-0.551119029521942,0.777626812458038,-0.210367321968079,0.904303073883057,0.371458649635315,0.591889321804047,0.582999467849731,-0.556577622890472,0.66207218170166,0.580869317054749,-0.47355192899704,-0.065970815718174,0.902493834495544,0.425620317459106,-0.663603365421295,-0.586061298847198,0.464933097362518,-0.28717240691185,0.834617972373962,0.470047891139984,-0.292332172393799,0.867920458316803,0.401566922664642,-0.766836047172546,-0.228023022413254,0.599973380565643,-0.302596360445023,-0.551119029521942,0.777626812458038,-0.629171788692474,0.759784698486328,0.163921386003494,-0.253985494375229,0.794231653213501,0.551985085010529,-0.621051073074341,-0.564342856407166,0.543886661529541,-0.302596360445023,-0.551119029521942,0.777626812458038,-0.571324110031128,-0.596671223640442,0.563535451889038,-0.663366615772247,-0.288151770830154,0.690589129924774,-0.648186504840851,-0.573506772518158,0.50094336271286,-0.429774165153503,0.057157464325428,0.901125550270081,-0.499049931764603,0.00557148456573486,0.866555333137512,-0.560247719287872,0.820295572280884,-0.115055307745934,-0.292332172393799,0.867920458316803,0.401566922664642,-0.28717240691185,0.834617972373962,0.470047891139984,-0.350675582885742,0.815563917160034,0.460306733846664,-0.0156628955155611,0.862436652183533,0.505922734737396,-0.065970815718174,0.902493834495544,0.425620317459106,
- -0.629171788692474,0.759784698486328,0.163921386003494,-0.425585985183716,0.800357222557068,0.422261714935303,-0.210367321968079,0.904303073883057,0.371458649635315,-0.266883581876755,0.952242434024811,0.148349329829216,0.50516152381897,0.576773166656494,-0.641984820365906,0.721795618534088,0.610828578472137,-0.32542222738266,-0.412592858076096,0.902475357055664,-0.123715497553349,-0.640762090682983,0.762818455696106,-0.0867877304553986,-0.563805103302002,-0.531762838363647,0.631943106651306,-0.88025838136673,-0.0812535732984543,0.467485904693604,-0.717946946620941,0.605085551738739,0.344127506017685,-0.266883581876755,0.952242434024811,0.148349329829216,-0.640762090682983,0.762818455696106,-0.0867877304553986,-0.717946946620941,0.605085551738739,0.344127506017685,0.171906679868698,0.982174515724182,-0.0760352611541748,-0.563805103302002,-0.531762838363647,0.631943106651306,-0.955583453178406,0.0402486436069012,0.291959643363953,-0.666636943817139,-0.680213391780853,0.304803311824799,-0.88025838136673,-0.0812535732984543,0.467485904693604,-0.134072527289391,0.920657157897949,0.366626590490341,0.391981571912766,0.593315660953522,-0.703083992004395,0.657483220100403,0.605856895446777,-0.447943389415741,-0.00888124201446772,0.865397691726685,0.501007080078125,-0.408335626125336,0.818034648895264,0.405069649219513,-0.134072527289391,0.920657157897949,0.366626590490341,-0.00888124201446772,0.865397691726685,0.501007080078125,-0.350675582885742,0.815563917160034,0.460306733846664,-0.350675582885742,0.815563917160034,0.460306733846664,-0.648186504840851,-0.573506772518158,0.50094336271286,-0.203257709741592,-0.483116626739502,0.851636528968811,-0.408335626125336,0.818034648895264,0.405069649219513,-0.648186504840851,-0.573506772518158,0.50094336271286,-0.499049931764603,0.00557148456573486,0.866555333137512,-0.796422839164734,0.0529241040349007,0.602419912815094,-0.203257709741592,-0.483116626739502,0.851636528968811,-0.412592858076096,0.902475357055664,-0.123715497553349,0.721795618534088,0.610828578472137,-0.32542222738266,
- 0.788909018039703,0.580663323402405,-0.201128587126732,-0.165510028600693,0.94209498167038,0.29165643453598,-0.165510028600693,0.94209498167038,0.29165643453598,-0.450079262256622,0.827589213848114,0.335447490215302,-0.487630873918533,0.835152566432953,0.254433333873749,-0.412592858076096,0.902475357055664,-0.123715497553349,-0.450079262256622,0.827589213848114,0.335447490215302,-0.668708860874176,-0.743520140647888,-0.00248675071634352,-0.864433825016022,-0.490197569131851,-0.11162668466568,-0.487630873918533,0.835152566432953,0.254433333873749,-0.668708860874176,-0.743520140647888,-0.00248675071634352,-0.812659621238709,-0.567268311977386,0.133382976055145,-0.864433825016022,-0.490197569131851,-0.11162668466568,-0.812659621238709,-0.567268311977386,0.133382976055145,-0.643094420433044,-0.365300238132477,0.673041820526123,-0.719113111495972,0.0601430684328079,0.692285478115082,-0.668708860874176,-0.743520140647888,-0.00248675071634352,-0.615910589694977,0.118970662355423,0.778781235218048,-0.643094420433044,-0.365300238132477,0.673041820526123,-0.812659621238709,-0.567268311977386,0.133382976055145,-0.648186504840851,-0.573506772518158,0.50094336271286,-0.663603365421295,-0.586061298847198,0.464933097362518,-0.571324110031128,-0.596671223640442,0.563535451889038,-0.721440851688385,0.0531896352767944,0.690430343151093,-0.429774165153503,0.057157464325428,0.901125550270081,-0.065970815718174,0.902493834495544,0.425620317459106,0.66207218170166,0.580869317054749,-0.47355192899704,0.606019914150238,0.593630254268646,-0.529474377632141,-0.361919820308685,0.917820811271667,0.163153901696205,-0.368442833423615,0.906347036361694,0.206845462322235,-0.253985494375229,0.794231653213501,0.551985085010529,-0.629171788692474,0.759784698486328,0.163921386003494,-0.065970815718174,0.902493834495544,0.425620317459106,-0.361919820308685,0.917820811271667,0.163153901696205,-0.560247719287872,0.820295572280884,-0.115055307745934,0.494311422109604,0.581848740577698,-0.645839273929596,0.591889321804047,0.582999467849731,-0.556577622890472,
- -0.210367321968079,0.904303073883057,0.371458649635315,-0.210367321968079,0.904303073883057,0.371458649635315,-0.425585985183716,0.800357222557068,0.422261714935303,-0.292332172393799,0.867920458316803,0.401566922664642,-0.560247719287872,0.820295572280884,-0.115055307745934,-0.766836047172546,-0.228023022413254,0.599973380565643,-0.292332172393799,0.867920458316803,0.401566922664642,-0.425585985183716,0.800357222557068,0.422261714935303,-0.663366615772247,-0.288151770830154,0.690589129924774,-0.571324110031128,-0.596671223640442,0.563535451889038,-0.663603365421295,-0.586061298847198,0.464933097362518,-0.766836047172546,-0.228023022413254,0.599973380565643,-0.580308854579926,-0.405752241611481,0.706120908260345,-0.415231376886368,0.0212092380970716,0.909468650817871,-0.621051073074341,-0.564342856407166,0.543886661529541,-0.640482306480408,-0.221310213208199,0.73539400100708,-0.415231376886368,0.0212092380970716,0.909468650817871,-0.721440851688385,0.0531896352767944,0.690430343151093,-0.571324110031128,-0.596671223640442,0.563535451889038,-0.302596360445023,-0.551119029521942,0.777626812458038,-0.621051073074341,-0.564342856407166,0.543886661529541,0.807546257972717,0.450257301330566,-0.380969107151031,0.782529830932617,0.455476313829422,-0.424486041069031,0.807137608528137,0.448439300060272,-0.383967846632004,0.809928774833679,0.446312814950943,-0.380552679300308,0.810859501361847,0.447854280471802,-0.376740545034409,0.799560308456421,0.445822387933731,-0.402425140142441,0.896277368068695,-0.0790847316384315,-0.436385691165924,0.737271249294281,0.562488734722137,-0.374215990304947,0.50516152381897,0.576773166656494,-0.641984820365906,0.550881028175354,0.783199489116669,-0.288320481777191,-0.624669253826141,0.55720454454422,0.547093570232391,-0.678807377815247,-0.623941600322723,0.387191861867905,-0.572100698947906,0.777319431304932,0.261678159236908,-0.809500873088837,0.579014539718628,0.0972143039107323,0.563778698444366,0.551568627357483,-0.61475658416748,0.607206463813782,0.450888931751251,-0.654216766357422,
- 0.550276815891266,0.515031039714813,-0.657220363616943,0.505835890769959,0.577166438102722,-0.641099810600281,-0.836567640304565,0.529858887195587,0.139298796653748,-0.700000464916229,-0.561000347137451,0.441902816295624,-0.471412986516953,-0.522769033908844,0.710269212722778,-0.624669253826141,0.55720454454422,0.547093570232391,-0.4245645403862,-0.481685698032379,0.766631543636322,-0.836567640304565,0.529858887195587,0.139298796653748,-0.537978410720825,0.556802093982697,0.632890701293945,-0.593791306018829,-0.534945785999298,0.601036608219147,-0.593791306018829,-0.534945785999298,0.601036608219147,-0.537978410720825,0.556802093982697,0.632890701293945,-0.625918865203857,0.562151491641998,0.540565729141235,-0.817420959472656,-0.524342596530914,0.238511711359024,-0.75213748216629,0.528786420822144,0.393286347389221,-0.590271413326263,-0.545579254627228,0.594914317131042,-0.588364005088806,-0.549067080020905,0.59359335899353,-0.704351544380188,0.547424495220184,0.451901972293854,-0.181116953492165,-0.429934561252594,0.884507298469543,-0.75213748216629,0.528786420822144,0.393286347389221,-0.711143553256989,0.566344618797302,0.416567623615265,-0.444727838039398,-0.563117980957031,0.696502268314362,-0.444727838039398,-0.563117980957031,0.696502268314362,-0.711143553256989,0.566344618797302,0.416567623615265,-0.6206374168396,0.550892174243927,0.557967007160187,-0.883859038352966,-0.132301509380341,-0.448653012514114,-0.515612304210663,-0.552229881286621,0.655122995376587,-0.6206374168396,0.550892174243927,0.557967007160187,-0.649105429649353,0.543805360794067,0.531919062137604,-0.517384648323059,-0.547911763191223,0.657347679138184,-0.669082164764404,0.570653200149536,0.476113557815552,-0.80559515953064,-0.523696422576904,0.277053505182266,-0.696599245071411,-0.560542464256287,0.447818726301193,-0.625918865203857,0.562151491641998,0.540565729141235,-0.80559515953064,-0.523696422576904,0.277053505182266,-0.669082164764404,0.570653200149536,0.476113557815552,-0.704351544380188,0.547424495220184,0.451901972293854,-0.90642923116684,-0.329199701547623,-0.264601290225983,
- -0.604306101799011,0.609904646873474,0.51267009973526,-0.599139451980591,0.59912234544754,0.531116247177124,-0.704351544380188,0.547424495220184,0.451901972293854,-0.669082164764404,0.570653200149536,0.476113557815552,-0.791019141674042,0.592839121818542,0.15109771490097,-0.625918865203857,0.562151491641998,0.540565729141235,-0.537978410720825,0.556802093982697,0.632890701293945,-0.518879294395447,0.588543295860291,0.619984805583954,-0.791019141674042,0.592839121818542,0.15109771490097,-0.604306101799011,0.609904646873474,0.51267009973526,-0.669082164764404,0.570653200149536,0.476113557815552,-0.625918865203857,0.562151491641998,0.540565729141235,-0.518879294395447,0.588543295860291,0.619984805583954,-0.537978410720825,0.556802093982697,0.632890701293945,-0.836567640304565,0.529858887195587,0.139298796653748,-0.633114576339722,0.612082958221436,0.473836004734039,-0.599139451980591,0.59912234544754,0.531116247177124,-0.670671045780182,0.590457022190094,0.448955357074738,-0.75213748216629,0.528786420822144,0.393286347389221,-0.704351544380188,0.547424495220184,0.451901972293854,-0.75213748216629,0.528786420822144,0.393286347389221,-0.670671045780182,0.590457022190094,0.448955357074738,-0.559346616268158,0.587887465953827,0.58439689874649,-0.711143553256989,0.566344618797302,0.416567623615265,-0.836567640304565,0.529858887195587,0.139298796653748,-0.624669253826141,0.55720454454422,0.547093570232391,-0.809500873088837,0.579014539718628,0.0972143039107323,-0.633114576339722,0.612082958221436,0.473836004734039,-0.6206374168396,0.550892174243927,0.557967007160187,-0.711143553256989,0.566344618797302,0.416567623615265,-0.559346616268158,0.587887465953827,0.58439689874649,-0.452387303113937,0.582600295543671,0.675220429897308,-0.649105429649353,0.543805360794067,0.531919062137604,-0.6206374168396,0.550892174243927,0.557967007160187,-0.452387303113937,0.582600295543671,0.675220429897308,-0.484242886304855,0.592982411384583,0.643335580825806,-0.555504143238068,0.576621830463409,0.599101305007935,0.391981571912766,0.593315660953522,-0.703083992004395,
- 0.788909018039703,0.580663323402405,-0.201128587126732,0.806277394294739,0.550895392894745,-0.215478777885437,0.656942069530487,0.564588963985443,-0.499666452407837,0.391981571912766,0.593315660953522,-0.703083992004395,0.656942069530487,0.564588963985443,-0.499666452407837,0.636687755584717,0.564020693302155,-0.525841653347015,0.657483220100403,0.605856895446777,-0.447943389415741,0.788909018039703,0.580663323402405,-0.201128587126732,0.721795618534088,0.610828578472137,-0.32542222738266,0.600198984146118,0.540721416473389,-0.589390814304352,0.806277394294739,0.550895392894745,-0.215478777885437,0.621046483516693,0.597138941287994,-0.507667720317841,0.613354861736298,0.549727737903595,-0.567093729972839,0.51544988155365,0.533058643341064,-0.670939564704895,0.494311422109604,0.581848740577698,-0.645839273929596,0.51544988155365,0.533058643341064,-0.670939564704895,0.507102251052856,0.556102335453033,-0.658481299877167,0.591889321804047,0.582999467849731,-0.556577622890472,0.494311422109604,0.581848740577698,-0.645839273929596,0.737271249294281,0.562488734722137,-0.374215990304947,0.600198984146118,0.540721416473389,-0.589390814304352,0.721795618534088,0.610828578472137,-0.32542222738266,0.50516152381897,0.576773166656494,-0.641984820365906,0.507102251052856,0.556102335453033,-0.658481299877167,0.636131107807159,0.545342862606049,-0.54583728313446,0.66207218170166,0.580869317054749,-0.47355192899704,0.591889321804047,0.582999467849731,-0.556577622890472,0.657483220100403,0.605856895446777,-0.447943389415741,0.636687755584717,0.564020693302155,-0.525841653347015,0.613354861736298,0.549727737903595,-0.567093729972839,0.621046483516693,0.597138941287994,-0.507667720317841,0.636131107807159,0.545342862606049,-0.54583728313446,0.563778698444366,0.551568627357483,-0.61475658416748,0.505835890769959,0.577166438102722,-0.641099810600281,0.606019914150238,0.593630254268646,-0.529474377632141,0.66207218170166,0.580869317054749,-0.47355192899704,-0.471412986516953,-0.522769033908844,0.710269212722778,-0.678807377815247,-0.623941600322723,0.387191861867905,
- -0.624669253826141,0.55720454454422,0.547093570232391,-0.104396253824234,-0.448669791221619,0.887579202651978,-0.649105429649353,0.543805360794067,0.531919062137604,-0.604894936084747,0.282696008682251,0.744436144828796,-0.115136325359344,0.973719716072083,0.196503803133965,-0.0570031180977821,0.903500854969025,0.424778789281845,-0.453057527542114,0.784983217716217,0.422540277242661,-0.470247805118561,-0.223755687475204,0.853698134422302,0.428277164697647,0.516548573970795,-0.741455554962158,0.492187738418579,0.765642642974854,-0.414177089929581,0.277910649776459,0.902348935604095,-0.329442083835602,0.428277164697647,0.516548573970795,-0.741455554962158,0.277910649776459,0.902348935604095,-0.329442083835602,-0.0570031180977821,0.903500854969025,0.424778789281845,-0.115136325359344,0.973719716072083,0.196503803133965,0.308515012264252,0.599463164806366,-0.738554298877716,0.492187738418579,0.765642642974854,-0.414177089929581,0.425477981567383,0.57878440618515,-0.695684611797333,-0.165734186768532,0.8262540102005,0.538364708423615,-0.140257000923157,0.82725977897644,0.544030547142029,0.242520242929459,-0.73698228597641,0.630905032157898,-0.652806878089905,-0.48064649105072,0.58551025390625,-0.140257000923157,0.82725977897644,0.544030547142029,-0.165734186768532,0.8262540102005,0.538364708423615,-0.25722947716713,0.932118773460388,0.254926592111588,-0.205240666866302,0.942546486854553,0.263595402240753,-0.350825905799866,0.907164037227631,0.232324838638306,-0.459314346313477,0.867724478244781,0.189959228038788,0.270046144723892,0.592544198036194,-0.75892448425293,0.20485894382,0.605584502220154,-0.76896059513092,-0.652806878089905,-0.48064649105072,0.58551025390625,0.242520242929459,-0.73698228597641,0.630905032157898,-0.470219701528549,0.110387913882732,0.875618577003479,-0.261437356472015,0.059949804097414,0.963356912136078,-0.323395371437073,-0.566747963428497,0.757767975330353,-0.224095270037651,-0.582614600658417,0.781243681907654,-0.3375304043293,0.83704000711441,0.430624425411224,-0.29345491528511,0.817374646663666,0.495765000581741,
- -0.347645789384842,-0.594977676868439,0.724668204784393,-0.431923389434814,-0.286973208189011,0.855037212371826,-0.3122738301754,-0.229690864682198,0.921806573867798,0.443965762853622,0.44477367401123,-0.777863025665283,0.458100020885468,0.43566906452179,-0.774814069271088,0.450895011425018,0.280503243207932,-0.847355604171753,0.428137272596359,0.515310823917389,-0.742396950721741,0.428277164697647,0.516548573970795,-0.741455554962158,0.466486006975174,0.39468714594841,-0.791588842868805,-0.459314346313477,0.867724478244781,0.189959228038788,-0.350825905799866,0.907164037227631,0.232324838638306,-0.29345491528511,0.817374646663666,0.495765000581741,0.492187738418579,0.765642642974854,-0.414177089929581,0.308515012264252,0.599463164806366,-0.738554298877716,-0.0357825569808483,0.913209199905396,0.40591698884964,0.277910649776459,0.902348935604095,-0.329442083835602,0.277910649776459,0.902348935604095,-0.329442083835602,-0.0357825569808483,0.913209199905396,0.40591698884964,-0.0570031180977821,0.903500854969025,0.424778789281845,0.492187738418579,0.765642642974854,-0.414177089929581,0.428277164697647,0.516548573970795,-0.741455554962158,0.428137272596359,0.515310823917389,-0.742396950721741,0.425477981567383,0.57878440618515,-0.695684611797333,-0.316975504159927,-0.566586852073669,0.760595798492432,-0.470247805118561,-0.223755687475204,0.853698134422302,-0.453057527542114,0.784983217716217,0.422540277242661,-0.459314346313477,0.867724478244781,0.189959228038788,0.293915420770645,0.820014595985413,0.491110861301422,0.44353848695755,0.57795387506485,-0.685013115406036,0.270046144723892,0.592544198036194,-0.75892448425293,0.0758035033941269,0.782097399234772,-0.618528544902802,0.0103600351139903,0.982232749462128,-0.18738067150116,-0.104558780789375,0.94687831401825,0.304119884967804,0.366694420576096,0.60619729757309,-0.705733716487885,-0.101666539907455,0.840231478214264,0.532611548900604,0.342413127422333,0.76100766658783,0.551017820835114,-0.353117167949677,-0.552054882049561,0.755343556404114,0.435432314872742,-0.44506961107254,0.782503664493561,
- 0.198993712663651,0.927960336208344,0.315104901790619,-0.104558780789375,0.94687831401825,0.304119884967804,0.342413127422333,0.76100766658783,0.551017820835114,-0.101666539907455,0.840231478214264,0.532611548900604,0.435432314872742,-0.44506961107254,0.782503664493561,-0.353117167949677,-0.552054882049561,0.755343556404114,0.0697676464915276,0.0537811294198036,0.996112525463104,-0.366492658853531,0.0330446735024452,0.929834008216858,0.176204204559326,-0.545671343803406,0.819264829158783,-0.205240666866302,0.942546486854553,0.263595402240753,-0.25722947716713,0.932118773460388,0.254926592111588,0.513493418693542,0.56695955991745,-0.644112825393677,-0.106061033904552,0.580825209617615,-0.807089328765869,-0.431923389434814,-0.286973208189011,0.855037212371826,-0.632884204387665,-0.541317284107208,0.553564012050629,-0.0194953680038452,0.768834292888641,0.639150857925415,-0.255317479372025,0.799848735332489,0.543189644813538,-0.276449501514435,0.904895901679993,0.323634177446365,-0.410625994205475,0.892746984958649,0.185443431138992,0.234508991241455,0.586465418338776,-0.775283098220825,0.326965659856796,0.582589149475098,-0.744099080562592,-0.224095270037651,-0.582614600658417,0.781243681907654,-0.3122738301754,-0.229690864682198,0.921806573867798,-0.274436175823212,0.870351433753967,0.408868402242661,-0.3375304043293,0.83704000711441,0.430624425411224,-0.632884204387665,-0.541317284107208,0.553564012050629,-0.316975504159927,-0.566586852073669,0.760595798492432,-0.453057527542114,0.784983217716217,0.422540277242661,-0.0194953680038452,0.768834292888641,0.639150857925415,-0.632884204387665,-0.541317284107208,0.553564012050629,-0.431923389434814,-0.286973208189011,0.855037212371826,-0.347645789384842,-0.594977676868439,0.724668204784393,-0.323395371437073,-0.566747963428497,0.757767975330353,-0.519645571708679,0.0569471567869186,0.852482080459595,-0.685925841331482,0.0638223588466644,0.724867224693298,0.293915420770645,0.820014595985413,0.491110861301422,-0.459314346313477,0.867724478244781,0.189959228038788,-0.29345491528511,0.817374646663666,0.495765000581741,
- -0.3375304043293,0.83704000711441,0.430624425411224,-0.274436175823212,0.870351433753967,0.408868402242661,-0.410625994205475,0.892746984958649,0.185443431138992,-0.276449501514435,0.904895901679993,0.323634177446365,-0.255317479372025,0.799848735332489,0.543189644813538,-0.0194953680038452,0.768834292888641,0.639150857925415,-0.104558780789375,0.94687831401825,0.304119884967804,0.198993712663651,0.927960336208344,0.315104901790619,-0.0186402052640915,0.599174737930298,-0.800401329994202,0.366694420576096,0.60619729757309,-0.705733716487885,0.342413127422333,0.76100766658783,0.551017820835114,-0.0684415176510811,0.605023145675659,0.793260872364044,-0.127383127808571,-0.0827739611268044,0.988393723964691,-0.353117167949677,-0.552054882049561,0.755343556404114,-0.104558780789375,0.94687831401825,0.304119884967804,0.0103600351139903,0.982232749462128,-0.18738067150116,-0.0684415176510811,0.605023145675659,0.793260872364044,0.342413127422333,0.76100766658783,0.551017820835114,-0.353117167949677,-0.552054882049561,0.755343556404114,-0.127383127808571,-0.0827739611268044,0.988393723964691,-0.0493736155331135,-0.681059241294861,0.730561792850494,0.0697676464915276,0.0537811294198036,0.996112525463104,-0.25722947716713,0.932118773460388,0.254926592111588,-0.350825905799866,0.907164037227631,0.232324838638306,0.20485894382,0.605584502220154,-0.76896059513092,0.513493418693542,0.56695955991745,-0.644112825393677,-0.165734186768532,0.8262540102005,0.538364708423615,-0.29345491528511,0.817374646663666,0.495765000581741,-0.350825905799866,0.907164037227631,0.232324838638306,-0.25722947716713,0.932118773460388,0.254926592111588,-0.29345491528511,0.817374646663666,0.495765000581741,-0.165734186768532,0.8262540102005,0.538364708423615,-0.652806878089905,-0.48064649105072,0.58551025390625,-0.323395371437073,-0.566747963428497,0.757767975330353,-0.323395371437073,-0.566747963428497,0.757767975330353,-0.652806878089905,-0.48064649105072,0.58551025390625,-0.261437356472015,0.059949804097414,0.963356912136078,-0.519645571708679,0.0569471567869186,0.852482080459595,
- 0.198993712663651,0.927960336208344,0.315104901790619,-0.205240666866302,0.942546486854553,0.263595402240753,-0.106061033904552,0.580825209617615,-0.807089328765869,-0.0186402052640915,0.599174737930298,-0.800401329994202,-0.205240666866302,0.942546486854553,0.263595402240753,0.198993712663651,0.927960336208344,0.315104901790619,-0.101666539907455,0.840231478214264,0.532611548900604,-0.140257000923157,0.82725977897644,0.544030547142029,-0.140257000923157,0.82725977897644,0.544030547142029,-0.101666539907455,0.840231478214264,0.532611548900604,0.435432314872742,-0.44506961107254,0.782503664493561,0.242520242929459,-0.73698228597641,0.630905032157898,0.242520242929459,-0.73698228597641,0.630905032157898,0.435432314872742,-0.44506961107254,0.782503664493561,0.176204204559326,-0.545671343803406,0.819264829158783,0.176204204559326,-0.545671343803406,0.819264829158783,-0.366492658853531,0.0330446735024452,0.929834008216858,-0.382708609104156,-0.359395563602448,0.851098656654358,0.242520242929459,-0.73698228597641,0.630905032157898,0.176204204559326,-0.545671343803406,0.819264829158783,-0.382708609104156,-0.359395563602448,0.851098656654358,-0.470219701528549,0.110387913882732,0.875618577003479,-0.323395371437073,-0.566747963428497,0.757767975330353,-0.685925841331482,0.0638223588466644,0.724867224693298,-0.403620213270187,0.0534198433160782,0.91336590051651,-0.347645789384842,-0.594977676868439,0.724668204784393,-0.224095270037651,-0.582614600658417,0.781243681907654,-0.410625994205475,0.892746984958649,0.185443431138992,-0.0357825569808483,0.913209199905396,0.40591698884964,0.308515012264252,0.599463164806366,-0.738554298877716,0.234508991241455,0.586465418338776,-0.775283098220825,-0.0570031180977821,0.903500854969025,0.424778789281845,-0.0357825569808483,0.913209199905396,0.40591698884964,-0.410625994205475,0.892746984958649,0.185443431138992,-0.0194953680038452,0.768834292888641,0.639150857925415,-0.453057527542114,0.784983217716217,0.422540277242661,0.293915420770645,0.820014595985413,0.491110861301422,-0.276449501514435,0.904895901679993,0.323634177446365,
- 0.326965659856796,0.582589149475098,-0.744099080562592,0.44353848695755,0.57795387506485,-0.685013115406036,-0.276449501514435,0.904895901679993,0.323634177446365,0.293915420770645,0.820014595985413,0.491110861301422,-0.274436175823212,0.870351433753967,0.408868402242661,-0.255317479372025,0.799848735332489,0.543189644813538,-0.3122738301754,-0.229690864682198,0.921806573867798,-0.431923389434814,-0.286973208189011,0.855037212371826,-0.255317479372025,0.799848735332489,0.543189644813538,-0.274436175823212,0.870351433753967,0.408868402242661,-0.347645789384842,-0.594977676868439,0.724668204784393,-0.3122738301754,-0.229690864682198,0.921806573867798,-0.224095270037651,-0.582614600658417,0.781243681907654,0.450895011425018,0.280503243207932,-0.847355604171753,0.465993255376816,0.545094788074493,-0.696937561035156,0.425477981567383,0.57878440618515,-0.695684611797333,0.428137272596359,0.515310823917389,-0.742396950721741,-0.714914858341217,0.0291642490774393,0.698603093624115,-0.464347153902054,-0.404308795928955,0.78798234462738,-0.470247805118561,-0.223755687475204,0.853698134422302,-0.316975504159927,-0.566586852073669,0.760595798492432,-0.403620213270187,0.0534198433160782,0.91336590051651,-0.714914858341217,0.0291642490774393,0.698603093624115,-0.316975504159927,-0.566586852073669,0.760595798492432,-0.632884204387665,-0.541317284107208,0.553564012050629,-0.347645789384842,-0.594977676868439,0.724668204784393,0.122052222490311,0.455350577831268,-0.881906509399414,0.0711942538619041,0.450229227542877,-0.890070199966431,0.0945935100317001,0.445800602436066,-0.890120148658752,0.0659742206335068,0.447671443223953,-0.891761124134064,0.0699662864208221,0.446254044771194,-0.892167091369629,0.0742583274841309,0.448442667722702,-0.890721619129181,0.108481772243977,0.973907172679901,-0.19934044778347,0.4915831387043,-0.226522237062454,-0.840852916240692,0.123555645346642,0.790693640708923,-0.599614560604095,0.32002267241478,0.897381782531738,-0.303795218467712,-0.41609799861908,0.515224158763886,0.749270737171173,-0.130953326821327,0.905951261520386,0.402620911598206,
- -0.0875382274389267,0.781435489654541,0.61781519651413,-0.41609799861908,0.515224158763886,0.749270737171173,0.108481772243977,0.973907172679901,-0.19934044778347,0.32002267241478,0.897381782531738,-0.303795218467712,-0.130953326821327,0.905951261520386,0.402620911598206,-0.424855679273605,0.59940630197525,0.678387701511383,-0.366174936294556,0.581023633480072,0.726861417293549,-0.0875382274389267,0.781435489654541,0.61781519651413,0.0978565961122513,0.830839455127716,-0.547841191291809,-0.281252086162567,-0.475164234638214,-0.833736300468445,0.43411910533905,-0.71031653881073,-0.55406779050827,0.0756483897566795,0.831862688064575,-0.549801647663116,0.0756483897566795,0.831862688064575,-0.549801647663116,-0.0709602162241936,0.946586191654205,-0.314546316862106,-0.110195875167847,0.930437922477722,-0.349488347768784,0.0978565961122513,0.830839455127716,-0.547841191291809,-0.146966010332108,0.920488655567169,-0.362079709768295,-0.26018813252449,0.61242812871933,0.74648106098175,-0.286325752735138,0.595037579536438,0.75096470117569,-0.183871209621429,0.876822829246521,-0.444266945123672,-0.281252086162567,-0.475164234638214,-0.833736300468445,0.153145059943199,-0.0520687773823738,-0.98683100938797,-0.0353063009679317,0.0398797243833542,-0.998580515384674,0.43411910533905,-0.71031653881073,-0.55406779050827,0.174819424748421,-0.558065235614777,-0.811172842979431,0.0742104426026344,0.827722311019897,-0.556209146976471,0.0958224609494209,0.850738644599915,-0.516780138015747,0.375972777605057,-0.577071011066437,-0.725005865097046,0.325260043144226,-0.594747245311737,-0.735174655914307,0.4877849817276,-0.238171890377998,-0.839845240116119,0.376923948526382,-0.282732993364334,-0.882037758827209,-0.43896672129631,0.444412887096405,0.780900418758392,-0.437575399875641,0.394989758729935,0.807781517505646,-0.41609799861908,0.515224158763886,0.749270737171173,-0.416897594928741,0.515508532524109,0.748630464076996,-0.470867186784744,0.451727330684662,0.757777333259583,-0.431881576776505,0.43601655960083,0.789536476135254,-0.183871209621429,0.876822829246521,-0.444266945123672,
- 0.0742104426026344,0.827722311019897,-0.556209146976471,-0.146966010332108,0.920488655567169,-0.362079709768295,-0.0875382274389267,0.781435489654541,0.61781519651413,-0.130953326821327,0.905951261520386,0.402620911598206,0.303505688905716,0.9069584608078,-0.292080044746399,-0.424855679273605,0.59940630197525,0.678387701511383,-0.130953326821327,0.905951261520386,0.402620911598206,0.32002267241478,0.897381782531738,-0.303795218467712,0.303505688905716,0.9069584608078,-0.292080044746399,-0.0875382274389267,0.781435489654541,0.61781519651413,-0.366174936294556,0.581023633480072,0.726861417293549,-0.416897594928741,0.515508532524109,0.748630464076996,-0.41609799861908,0.515224158763886,0.749270737171173,0.440752774477005,-0.565187752246857,-0.697352051734924,0.123555645346642,0.790693640708923,-0.599614560604095,0.4915831387043,-0.226522237062454,-0.840852916240692,-0.183871209621429,0.876822829246521,-0.444266945123672,-0.286325752735138,0.595037579536438,0.75096470117569,-0.196599185466766,0.588171601295471,0.784476280212402,0.516238331794739,0.840536534786224,-0.164305597543716,-0.0426298193633556,0.777397334575653,0.62756359577179,0.155621692538261,0.607299029827118,0.779082715511322,-0.00799203757196665,0.947242617607117,-0.320418000221252,-0.0266692880541086,0.982707977294922,0.183231562376022,0.0674937665462494,0.845818638801575,-0.529183745384216,0.637054204940796,-0.444306492805481,-0.629883885383606,-0.112705208361149,-0.548760175704956,-0.828347682952881,0.443197667598724,0.781030893325806,-0.439961969852448,0.287542700767517,0.92498242855072,-0.248448848724365,0.0674937665462494,0.845818638801575,-0.529183745384216,0.443197667598724,0.781030893325806,-0.439961969852448,-0.00799203757196665,0.947242617607117,-0.320418000221252,0.637054204940796,-0.444306492805481,-0.629883885383606,0.423815369606018,-0.544057369232178,-0.72414243221283,-0.0398091226816177,-0.0646200776100159,-0.997115552425385,0.237972170114517,-0.0506756640970707,-0.969949126243591,-0.112705208361149,-0.548760175704956,-0.828347682952881,
- -0.0709602162241936,0.946586191654205,-0.314546316862106,-0.374078571796417,0.589227974414825,0.716153383255005,0.140160948038101,0.568563342094421,0.810611367225647,-0.110195875167847,0.930437922477722,-0.349488347768784,0.376923948526382,-0.282732993364334,-0.882037758827209,0.258274406194687,0.797237098217011,-0.545625686645508,0.472658485174179,0.777789711952209,-0.41429141163826,0.107642590999603,-0.542612969875336,-0.833057224750519,0.0824040547013283,0.908857822418213,-0.40888512134552,-0.365729510784149,0.588087141513824,0.721384406089783,-0.460025131702423,0.588569521903992,0.664802849292755,-0.0721308216452599,0.889698803424835,-0.450814068317413,0.375972777605057,-0.577071011066437,-0.725005865097046,0.0958224609494209,0.850738644599915,-0.516780138015747,0.14030247926712,0.878355383872986,-0.456954121589661,0.4877849817276,-0.238171890377998,-0.839845240116119,0.107642590999603,-0.542612969875336,-0.833057224750519,0.472658485174179,0.777789711952209,-0.41429141163826,0.123555645346642,0.790693640708923,-0.599614560604095,0.440752774477005,-0.565187752246857,-0.697352051734924,0.107642590999603,-0.542612969875336,-0.833057224750519,0.325260043144226,-0.594747245311737,-0.735174655914307,0.376923948526382,-0.282732993364334,-0.882037758827209,0.174819424748421,-0.558065235614777,-0.811172842979431,0.189409673213959,-0.0489555299282074,-0.980677008628845,0.0208794865757227,-0.0547095276415348,-0.998283982276917,0.516238331794739,0.840536534786224,-0.164305597543716,0.14030247926712,0.878355383872986,-0.456954121589661,0.0958224609494209,0.850738644599915,-0.516780138015747,0.0742104426026344,0.827722311019897,-0.556209146976471,-0.183871209621429,0.876822829246521,-0.444266945123672,-0.0721308216452599,0.889698803424835,-0.450814068317413,0.472658485174179,0.777789711952209,-0.41429141163826,0.258274406194687,0.797237098217011,-0.545625686645508,0.0824040547013283,0.908857822418213,-0.40888512134552,-0.00799203757196665,0.947242617607117,-0.320418000221252,0.155621692538261,0.607299029827118,0.779082715511322,
- -0.249605536460876,0.601383447647095,0.758969783782959,0.287542700767517,0.92498242855072,-0.248448848724365,0.443197667598724,0.781030893325806,-0.439961969852448,-0.112705208361149,-0.548760175704956,-0.828347682952881,0.0603709816932678,-0.0896114781498909,-0.994145512580872,0.084488533437252,0.605751931667328,-0.79115504026413,-0.00799203757196665,0.947242617607117,-0.320418000221252,0.443197667598724,0.781030893325806,-0.439961969852448,0.084488533437252,0.605751931667328,-0.79115504026413,-0.0266692880541086,0.982707977294922,0.183231562376022,-0.112705208361149,-0.548760175704956,-0.828347682952881,0.237972170114517,-0.0506756640970707,-0.969949126243591,0.0885445177555084,-0.682766973972321,-0.725251138210297,0.0603709816932678,-0.0896114781498909,-0.994145512580872,-0.110195875167847,0.930437922477722,-0.349488347768784,0.140160948038101,0.568563342094421,0.810611367225647,-0.26018813252449,0.61242812871933,0.74648106098175,-0.146966010332108,0.920488655567169,-0.362079709768295,0.0978565961122513,0.830839455127716,-0.547841191291809,-0.110195875167847,0.930437922477722,-0.349488347768784,-0.146966010332108,0.920488655567169,-0.362079709768295,0.0742104426026344,0.827722311019897,-0.556209146976471,0.0742104426026344,0.827722311019897,-0.556209146976471,0.174819424748421,-0.558065235614777,-0.811172842979431,-0.281252086162567,-0.475164234638214,-0.833736300468445,0.0978565961122513,0.830839455127716,-0.547841191291809,0.174819424748421,-0.558065235614777,-0.811172842979431,0.0208794865757227,-0.0547095276415348,-0.998283982276917,0.153145059943199,-0.0520687773823738,-0.98683100938797,-0.281252086162567,-0.475164234638214,-0.833736300468445,0.287542700767517,0.92498242855072,-0.248448848724365,-0.249605536460876,0.601383447647095,0.758969783782959,-0.374078571796417,0.589227974414825,0.716153383255005,-0.0709602162241936,0.946586191654205,-0.314546316862106,-0.0709602162241936,0.946586191654205,-0.314546316862106,0.0756483897566795,0.831862688064575,-0.549801647663116,0.0674937665462494,0.845818638801575,-0.529183745384216,
- 0.287542700767517,0.92498242855072,-0.248448848724365,0.0756483897566795,0.831862688064575,-0.549801647663116,0.43411910533905,-0.71031653881073,-0.55406779050827,0.637054204940796,-0.444306492805481,-0.629883885383606,0.0674937665462494,0.845818638801575,-0.529183745384216,0.43411910533905,-0.71031653881073,-0.55406779050827,0.423815369606018,-0.544057369232178,-0.72414243221283,0.637054204940796,-0.444306492805481,-0.629883885383606,0.423815369606018,-0.544057369232178,-0.72414243221283,-0.0224669147282839,-0.372383624315262,-0.927806973457336,-0.0398091226816177,-0.0646200776100159,-0.997115552425385,0.43411910533905,-0.71031653881073,-0.55406779050827,-0.0353063009679317,0.0398797243833542,-0.998580515384674,-0.0224669147282839,-0.372383624315262,-0.927806973457336,0.423815369606018,-0.544057369232178,-0.72414243221283,0.174819424748421,-0.558065235614777,-0.811172842979431,0.375972777605057,-0.577071011066437,-0.725005865097046,0.325260043144226,-0.594747245311737,-0.735174655914307,0.440568447113037,-0.054480567574501,-0.896064341068268,0.189409673213959,-0.0489555299282074,-0.980677008628845,-0.0721308216452599,0.889698803424835,-0.450814068317413,-0.460025131702423,0.588569521903992,0.664802849292755,-0.424855679273605,0.59940630197525,0.678387701511383,0.303505688905716,0.9069584608078,-0.292080044746399,0.32002267241478,0.897381782531738,-0.303795218467712,0.123555645346642,0.790693640708923,-0.599614560604095,0.472658485174179,0.777789711952209,-0.41429141163826,-0.0721308216452599,0.889698803424835,-0.450814068317413,0.303505688905716,0.9069584608078,-0.292080044746399,0.516238331794739,0.840536534786224,-0.164305597543716,-0.196599185466766,0.588171601295471,0.784476280212402,-0.365729510784149,0.588087141513824,0.721384406089783,0.0824040547013283,0.908857822418213,-0.40888512134552,0.0824040547013283,0.908857822418213,-0.40888512134552,0.258274406194687,0.797237098217011,-0.545625686645508,0.14030247926712,0.878355383872986,-0.456954121589661,0.516238331794739,0.840536534786224,-0.164305597543716,0.4877849817276,-0.238171890377998,-0.839845240116119,
- 0.14030247926712,0.878355383872986,-0.456954121589661,0.258274406194687,0.797237098217011,-0.545625686645508,0.376923948526382,-0.282732993364334,-0.882037758827209,0.325260043144226,-0.594747245311737,-0.735174655914307,0.375972777605057,-0.577071011066437,-0.725005865097046,0.4877849817276,-0.238171890377998,-0.839845240116119,0.439366191625595,-0.407258301973343,-0.800686120986938,0.278812080621719,-0.0584720820188522,-0.958563923835754,0.440752774477005,-0.565187752246857,-0.697352051734924,0.4915831387043,-0.226522237062454,-0.840852916240692,0.278812080621719,-0.0584720820188522,-0.958563923835754,0.440568447113037,-0.054480567574501,-0.896064341068268,0.325260043144226,-0.594747245311737,-0.735174655914307,0.107642590999603,-0.542612969875336,-0.833057224750519,0.440752774477005,-0.565187752246857,-0.697352051734924,-0.0971546620130539,0.450292378664017,0.887579739093781,-0.0528373457491398,0.455550521612167,0.888640582561493,-0.0971639454364777,0.448470145463943,0.888500809669495,-0.103546634316444,0.446246355772018,0.888899564743042,-0.108145341277123,0.447673618793488,0.887633383274078,-0.0754565894603729,0.44581013917923,0.891941547393799,-0.103806585073471,-0.0761643573641777,0.991677045822144,-0.157717302441597,0.563599586486816,0.810851991176605,0.155621692538261,0.607299029827118,0.779082715511322,-0.0426298193633556,0.777397334575653,0.62756359577179,-0.0770149007439613,0.536604523658752,-0.840312123298645,0.0292706191539764,-0.623990118503571,-0.78088390827179,0.0758035033941269,0.782097399234772,-0.618528544902802,0.366694420576096,0.60619729757309,-0.705733716487885,-0.388581156730652,0.555912911891937,0.734823524951935,-0.470867186784744,0.451727330684662,0.757777333259583,-0.416897594928741,0.515508532524109,0.748630464076996,-0.366174936294556,0.581023633480072,0.726861417293549,0.475325405597687,0.530246794223785,-0.702071249485016,0.13063757121563,-0.564369797706604,-0.815120041370392,-0.275347769260406,-0.552496075630188,-0.786722183227539,-0.0770149007439613,0.536604523658752,-0.840312123298645,
- -0.302548974752426,-0.522123634815216,-0.797402739524841,0.475325405597687,0.530246794223785,-0.702071249485016,-0.0879955217242241,0.551596701145172,-0.829456508159637,-0.0176865383982658,-0.541109025478363,-0.840766549110413,-0.0176865383982658,-0.541109025478363,-0.840766549110413,-0.0879955217242241,0.551596701145172,-0.829456508159637,0.144995257258415,0.558788180351257,-0.816536784172058,0.425765961408615,-0.55230176448822,-0.716718971729279,0.522428572177887,0.516165018081665,-0.678706288337708,0.267411559820175,-0.545077383518219,-0.794595420360565,0.266802191734314,-0.547271907329559,-0.793290615081787,0.396391063928604,0.541886866092682,-0.741102457046509,-0.162407457828522,-0.456864684820175,-0.874584794044495,0.522428572177887,0.516165018081665,-0.678706288337708,0.526323437690735,0.563787758350372,-0.636495888233185,0.192127272486687,-0.563847064971924,-0.803220748901367,0.192127272486687,-0.563847064971924,-0.803220748901367,0.526323437690735,0.563787758350372,-0.636495888233185,0.481588184833527,0.550342500209808,-0.682052731513977,0.967098236083984,-0.188531279563904,0.170812740921974,0.287918120622635,-0.55078399181366,-0.783415675163269,0.481588184833527,0.550342500209808,-0.682052731513977,0.465993255376816,0.545094788074493,-0.696937561035156,0.28965163230896,-0.544934809207916,-0.786859512329102,0.30937647819519,0.554157078266144,-0.772784650325775,0.435788512229919,-0.552701711654663,-0.710358500480652,0.199650049209595,-0.562904298305511,-0.802046537399292,0.144995257258415,0.558788180351257,-0.816536784172058,0.435788512229919,-0.552701711654663,-0.710358500480652,0.30937647819519,0.554157078266144,-0.772784650325775,0.396391063928604,0.541886866092682,-0.741102457046509,0.899026930332184,-0.368854403495789,-0.236002504825592,0.20485894382,0.605584502220154,-0.76896059513092,0.270046144723892,0.592544198036194,-0.75892448425293,0.396391063928604,0.541886866092682,-0.741102457046509,0.30937647819519,0.554157078266144,-0.772784650325775,0.513493418693542,0.56695955991745,-0.644112825393677,0.144995257258415,0.558788180351257,-0.816536784172058,
- -0.0879955217242241,0.551596701145172,-0.829456508159637,-0.106061033904552,0.580825209617615,-0.807089328765869,0.513493418693542,0.56695955991745,-0.644112825393677,0.20485894382,0.605584502220154,-0.76896059513092,0.30937647819519,0.554157078266144,-0.772784650325775,0.144995257258415,0.558788180351257,-0.816536784172058,-0.106061033904552,0.580825209617615,-0.807089328765869,-0.0879955217242241,0.551596701145172,-0.829456508159637,0.475325405597687,0.530246794223785,-0.702071249485016,-0.0186402052640915,0.599174737930298,-0.800401329994202,0.270046144723892,0.592544198036194,-0.75892448425293,0.44353848695755,0.57795387506485,-0.685013115406036,0.522428572177887,0.516165018081665,-0.678706288337708,0.396391063928604,0.541886866092682,-0.741102457046509,0.522428572177887,0.516165018081665,-0.678706288337708,0.44353848695755,0.57795387506485,-0.685013115406036,0.326965659856796,0.582589149475098,-0.744099080562592,0.526323437690735,0.563787758350372,-0.636495888233185,0.475325405597687,0.530246794223785,-0.702071249485016,-0.0770149007439613,0.536604523658752,-0.840312123298645,0.366694420576096,0.60619729757309,-0.705733716487885,-0.0186402052640915,0.599174737930298,-0.800401329994202,0.481588184833527,0.550342500209808,-0.682052731513977,0.526323437690735,0.563787758350372,-0.636495888233185,0.326965659856796,0.582589149475098,-0.744099080562592,0.234508991241455,0.586465418338776,-0.775283098220825,0.465993255376816,0.545094788074493,-0.696937561035156,0.481588184833527,0.550342500209808,-0.682052731513977,0.234508991241455,0.586465418338776,-0.775283098220825,0.308515012264252,0.599463164806366,-0.738554298877716,0.425477981567383,0.57878440618515,-0.695684611797333,0.140160948038101,0.568563342094421,0.810611367225647,-0.374078571796417,0.589227974414825,0.716153383255005,-0.370551615953445,0.557777166366577,0.742681682109833,-0.121047928929329,0.559096276760101,0.820218861103058,0.140160948038101,0.568563342094421,0.810611367225647,-0.121047928929329,0.559096276760101,0.820218861103058,-0.208090960979462,0.5673947930336,0.796719193458557,
- -0.26018813252449,0.61242812871933,0.74648106098175,-0.374078571796417,0.589227974414825,0.716153383255005,-0.249605536460876,0.601383447647095,0.758969783782959,0.150001227855682,0.549466073513031,0.821940779685974,-0.370551615953445,0.557777166366577,0.742681682109833,-0.286325752735138,0.595037579536438,0.75096470117569,-0.254011034965515,0.546791195869446,0.797808229923248,-0.182583123445511,0.535790741443634,0.824373662471771,-0.196599185466766,0.588171601295471,0.784476280212402,-0.182583123445511,0.535790741443634,0.824373662471771,-0.258454561233521,0.558083355426788,0.788507640361786,-0.365729510784149,0.588087141513824,0.721384406089783,-0.196599185466766,0.588171601295471,0.784476280212402,-0.157717302441597,0.563599586486816,0.810851991176605,0.150001227855682,0.549466073513031,0.821940779685974,-0.249605536460876,0.601383447647095,0.758969783782959,0.155621692538261,0.607299029827118,0.779082715511322,-0.258454561233521,0.558083355426788,0.788507640361786,-0.438833147287369,0.551933586597443,0.709080278873444,-0.460025131702423,0.588569521903992,0.664802849292755,-0.365729510784149,0.588087141513824,0.721384406089783,-0.26018813252449,0.61242812871933,0.74648106098175,-0.208090960979462,0.5673947930336,0.796719193458557,-0.254011034965515,0.546791195869446,0.797808229923248,-0.286325752735138,0.595037579536438,0.75096470117569,-0.438833147287369,0.551933586597443,0.709080278873444,-0.388581156730652,0.555912911891937,0.734823524951935,-0.366174936294556,0.581023633480072,0.726861417293549,-0.424855679273605,0.59940630197525,0.678387701511383,-0.460025131702423,0.588569521903992,0.664802849292755,-0.275347769260406,-0.552496075630188,-0.786722183227539,0.0292706191539764,-0.623990118503571,-0.78088390827179,-0.0770149007439613,0.536604523658752,-0.840312123298645,-0.0684356167912483,-0.456956595182419,-0.886852383613586,0.465993255376816,0.545094788074493,-0.696937561035156,0.450895011425018,0.280503243207932,-0.847355604171753,-0.227686896920204,0.973727524280548,-0.00366303604096174,-0.417906373739243,0.897096753120422,0.143428787589073,
- -0.583182394504547,0.789906919002533,-0.189592808485031,-0.974279284477234,-0.224992901086807,0.0125742591917515,0.856545984745026,0.516019523143768,0.00727972434833646,0.590893089771271,0.774063646793365,0.227312430739403,0.418893307447433,0.904259622097015,0.0827229842543602,0.856545984745026,0.516019523143768,0.00727972434833646,0.418893307447433,0.904259622097015,0.0827229842543602,-0.417906373739243,0.897096753120422,0.143428787589073,-0.227686896920204,0.973727524280548,-0.00366303604096174,0.79864364862442,0.598040282726288,-0.0672036781907082,0.590893089771271,0.774063646793365,0.227312430739403,0.814980030059814,0.578502357006073,0.0338030941784382,-0.571728825569153,0.820368587970734,-0.0110245570540428,-0.558256268501282,0.827530980110168,0.0595186725258827,-0.507025361061096,-0.736482977867126,0.447792589664459,-0.729278028011322,-0.47738316655159,-0.490162014961243,-0.558256268501282,0.827530980110168,0.0595186725258827,-0.571728825569153,0.820368587970734,-0.0110245570540428,-0.341757982969284,0.926203429698944,-0.159212648868561,-0.318781852722168,0.942597508430481,-0.0994389578700066,-0.339712083339691,0.871807098388672,-0.352913826704025,-0.341170251369476,0.875969290733337,-0.340999692678452,0.805537045001984,0.592166900634766,-0.0211767721921206,0.792716026306152,0.603197574615479,-0.0880577117204666,-0.729278028011322,-0.47738316655159,-0.490162014961243,-0.507025361061096,-0.736482977867126,0.447792589664459,-0.985628724098206,0.108815670013428,-0.129210114479065,-0.994093894958496,0.0584532916545868,0.0914365649223328,-0.82220733165741,-0.569182276725769,-0.00257888622581959,-0.809340596199036,-0.581697165966034,0.0812177881598473,-0.520710647106171,0.845971465110779,-0.11485943198204,-0.562808513641357,0.822349309921265,-0.0835962221026421,-0.804377257823944,-0.593892991542816,-0.0163850095123053,-0.958076000213623,-0.284814268350601,-0.0311636850237846,-0.967353463172913,-0.23449569940567,0.0961208641529083,0.895717442035675,0.444614082574844,0.00293632037937641,0.899946570396423,0.435737043619156,0.0151520418003201,
- 0.959414422512054,0.280998259782791,-0.023749390617013,0.857157707214355,0.515013098716736,0.00650402810424566,0.856545984745026,0.516019523143768,0.00727972434833646,0.918584525585175,0.39487236738205,0.0166823677718639,-0.341170251369476,0.875969290733337,-0.340999692678452,-0.339712083339691,0.871807098388672,-0.352913826704025,-0.562808513641357,0.822349309921265,-0.0835962221026421,0.590893089771271,0.774063646793365,0.227312430739403,0.79864364862442,0.598040282726288,-0.0672036781907082,-0.390866339206696,0.910126090049744,0.137455463409424,0.418893307447433,0.904259622097015,0.0827229842543602,0.418893307447433,0.904259622097015,0.0827229842543602,-0.390866339206696,0.910126090049744,0.137455463409424,-0.417906373739243,0.897096753120422,0.143428787589073,0.590893089771271,0.774063646793365,0.227312430739403,0.856545984745026,0.516019523143768,0.00727972434833646,0.857157707214355,0.515013098716736,0.00650402810424566,0.814980030059814,0.578502357006073,0.0338030941784382,-0.821748316287994,-0.565718054771423,0.0685052871704102,-0.974279284477234,-0.224992901086807,0.0125742591917515,-0.583182394504547,0.789906919002533,-0.189592808485031,-0.341170251369476,0.875969290733337,-0.340999692678452,-0.345361828804016,0.82720273733139,0.443239212036133,0.804986119270325,0.577907800674438,0.134238362312317,0.805537045001984,0.592166900634766,-0.0211767721921206,0.605452597141266,0.781729578971863,-0.149418696761131,0.179235801100731,0.9821417927742,-0.0572024248540401,-0.314536482095718,0.948877274990082,0.0264349058270454,0.793623685836792,0.599587857723236,0.103227272629738,-0.532868087291718,0.839583873748779,0.10559668391943,-0.394301295280457,0.756298959255219,0.52205216884613,-0.834016263484955,-0.547306597232819,-0.0698039457201958,-0.576081573963165,-0.457304298877716,0.677497506141663,-0.224252119660378,0.922616839408875,0.313830226659775,-0.314536482095718,0.948877274990082,0.0264349058270454,-0.394301295280457,0.756298959255219,0.52205216884613,-0.532868087291718,0.839583873748779,0.10559668391943,-0.576081573963165,-0.457304298877716,0.677497506141663,
- -0.834016263484955,-0.547306597232819,-0.0698039457201958,-0.907105386257172,0.0503367483615875,0.417882800102234,-0.999064266681671,0.0396139398217201,-0.017358535900712,-0.702086985111237,-0.551691830158234,0.450233459472656,-0.318781852722168,0.942597508430481,-0.0994389578700066,-0.341757982969284,0.926203429698944,-0.159212648868561,0.769538700580597,0.580922305583954,0.265216320753098,0.719248235225677,0.580837368965149,-0.381195425987244,-0.958076000213623,-0.284814268350601,-0.0311636850237846,-0.786077558994293,-0.543255805969238,-0.294881790876389,-0.577649533748627,0.777849078178406,0.247531846165657,-0.602296829223633,0.798272013664246,0.000696860312018543,-0.407588601112366,0.907079339027405,-0.105255797505379,-0.356231063604355,0.891126871109009,-0.281056016683578,0.798242449760437,0.588756918907166,-0.127179056406021,0.810394525527954,0.58550089597702,-0.0212039221078157,-0.809340596199036,-0.581697165966034,0.0812177881598473,-0.967353463172913,-0.23449569940567,0.0961208641529083,-0.481119066476822,0.874281644821167,-0.0644680634140968,-0.520710647106171,0.845971465110779,-0.11485943198204,-0.786077558994293,-0.543255805969238,-0.294881790876389,-0.821748316287994,-0.565718054771423,0.0685052871704102,-0.583182394504547,0.789906919002533,-0.189592808485031,-0.577649533748627,0.777849078178406,0.247531846165657,-0.786077558994293,-0.543255805969238,-0.294881790876389,-0.958076000213623,-0.284814268350601,-0.0311636850237846,-0.804377257823944,-0.593892991542816,-0.0163850095123053,-0.82220733165741,-0.569182276725769,-0.00257888622581959,-0.943988144397736,0.0267032328993082,-0.328897386789322,-0.927824139595032,0.0433056689798832,-0.370495826005936,-0.345361828804016,0.82720273733139,0.443239212036133,-0.341170251369476,0.875969290733337,-0.340999692678452,-0.562808513641357,0.822349309921265,-0.0835962221026421,-0.520710647106171,0.845971465110779,-0.11485943198204,-0.481119066476822,0.874281644821167,-0.0644680634140968,-0.356231063604355,0.891126871109009,-0.281056016683578,-0.407588601112366,0.907079339027405,-0.105255797505379,
- -0.602296829223633,0.798272013664246,0.000696860312018543,-0.577649533748627,0.777849078178406,0.247531846165657,-0.314536482095718,0.948877274990082,0.0264349058270454,-0.224252119660378,0.922616839408875,0.313830226659775,0.745091557502747,0.603012323379517,-0.284981936216354,0.793623685836792,0.599587857723236,0.103227272629738,-0.394301295280457,0.756298959255219,0.52205216884613,-0.764958322048187,0.606024324893951,0.218113243579865,-0.969052672386169,-0.0825522989034653,0.232641741633415,-0.834016263484955,-0.547306597232819,-0.0698039457201958,-0.314536482095718,0.948877274990082,0.0264349058270454,0.179235801100731,0.9821417927742,-0.0572024248540401,-0.764958322048187,0.606024324893951,0.218113243579865,-0.394301295280457,0.756298959255219,0.52205216884613,-0.834016263484955,-0.547306597232819,-0.0698039457201958,-0.969052672386169,-0.0825522989034653,0.232641741633415,-0.69958233833313,-0.681817591190338,0.213797554373741,-0.907105386257172,0.0503367483615875,0.417882800102234,-0.341757982969284,0.926203429698944,-0.159212648868561,-0.339712083339691,0.871807098388672,-0.352913826704025,0.792716026306152,0.603197574615479,-0.0880577117204666,0.769538700580597,0.580922305583954,0.265216320753098,-0.571728825569153,0.820368587970734,-0.0110245570540428,-0.562808513641357,0.822349309921265,-0.0835962221026421,-0.339712083339691,0.871807098388672,-0.352913826704025,-0.341757982969284,0.926203429698944,-0.159212648868561,-0.562808513641357,0.822349309921265,-0.0835962221026421,-0.571728825569153,0.820368587970734,-0.0110245570540428,-0.729278028011322,-0.47738316655159,-0.490162014961243,-0.82220733165741,-0.569182276725769,-0.00257888622581959,-0.82220733165741,-0.569182276725769,-0.00257888622581959,-0.729278028011322,-0.47738316655159,-0.490162014961243,-0.994093894958496,0.0584532916545868,0.0914365649223328,-0.943988144397736,0.0267032328993082,-0.328897386789322,-0.224252119660378,0.922616839408875,0.313830226659775,-0.318781852722168,0.942597508430481,-0.0994389578700066,0.719248235225677,0.580837368965149,-0.381195425987244,
- 0.745091557502747,0.603012323379517,-0.284981936216354,-0.318781852722168,0.942597508430481,-0.0994389578700066,-0.224252119660378,0.922616839408875,0.313830226659775,-0.532868087291718,0.839583873748779,0.10559668391943,-0.558256268501282,0.827530980110168,0.0595186725258827,-0.558256268501282,0.827530980110168,0.0595186725258827,-0.532868087291718,0.839583873748779,0.10559668391943,-0.576081573963165,-0.457304298877716,0.677497506141663,-0.507025361061096,-0.736482977867126,0.447792589664459,-0.507025361061096,-0.736482977867126,0.447792589664459,-0.576081573963165,-0.457304298877716,0.677497506141663,-0.702086985111237,-0.551691830158234,0.450233459472656,-0.702086985111237,-0.551691830158234,0.450233459472656,-0.999064266681671,0.0396139398217201,-0.017358535900712,-0.931591212749481,-0.358433812856674,-0.0605243816971779,-0.507025361061096,-0.736482977867126,0.447792589664459,-0.702086985111237,-0.551691830158234,0.450233459472656,-0.931591212749481,-0.358433812856674,-0.0605243816971779,-0.985628724098206,0.108815670013428,-0.129210114479065,-0.82220733165741,-0.569182276725769,-0.00257888622581959,-0.927824139595032,0.0433056689798832,-0.370495826005936,-0.999847292900085,0.00855134520679712,0.0152391754090786,-0.804377257823944,-0.593892991542816,-0.0163850095123053,-0.809340596199036,-0.581697165966034,0.0812177881598473,-0.356231063604355,0.891126871109009,-0.281056016683578,-0.390866339206696,0.910126090049744,0.137455463409424,0.79864364862442,0.598040282726288,-0.0672036781907082,0.798242449760437,0.588756918907166,-0.127179056406021,-0.417906373739243,0.897096753120422,0.143428787589073,-0.390866339206696,0.910126090049744,0.137455463409424,-0.356231063604355,0.891126871109009,-0.281056016683578,-0.577649533748627,0.777849078178406,0.247531846165657,-0.583182394504547,0.789906919002533,-0.189592808485031,-0.345361828804016,0.82720273733139,0.443239212036133,-0.407588601112366,0.907079339027405,-0.105255797505379,0.810394525527954,0.58550089597702,-0.0212039221078157,0.804986119270325,0.577907800674438,0.134238362312317,
- -0.407588601112366,0.907079339027405,-0.105255797505379,-0.345361828804016,0.82720273733139,0.443239212036133,-0.481119066476822,0.874281644821167,-0.0644680634140968,-0.602296829223633,0.798272013664246,0.000696860312018543,-0.967353463172913,-0.23449569940567,0.0961208641529083,-0.958076000213623,-0.284814268350601,-0.0311636850237846,-0.602296829223633,0.798272013664246,0.000696860312018543,-0.481119066476822,0.874281644821167,-0.0644680634140968,-0.804377257823944,-0.593892991542816,-0.0163850095123053,-0.967353463172913,-0.23449569940567,0.0961208641529083,-0.809340596199036,-0.581697165966034,0.0812177881598473,0.959414422512054,0.280998259782791,-0.023749390617013,0.832790434360504,0.547030508518219,0.0849575102329254,0.814980030059814,0.578502357006073,0.0338030941784382,0.857157707214355,0.515013098716736,0.00650402810424566,-0.967272639274597,-0.0122521631419659,-0.253443330526352,-0.913963198661804,-0.405551999807358,-0.0141021609306335,-0.974279284477234,-0.224992901086807,0.0125742591917515,-0.821748316287994,-0.565718054771423,0.0685052871704102,-0.999847292900085,0.00855134520679712,0.0152391754090786,-0.967272639274597,-0.0122521631419659,-0.253443330526352,-0.821748316287994,-0.565718054771423,0.0685052871704102,-0.786077558994293,-0.543255805969238,-0.294881790876389,-0.804377257823944,-0.593892991542816,-0.0163850095123053,0.867633044719696,0.455363869667053,-0.199641779065132,0.857107102870941,0.450235068798065,-0.250311672687531,0.865498661994934,0.445815145969391,-0.228387475013733,0.856816470623016,0.447715014219284,-0.255767166614532,0.85862934589386,0.446273386478424,-0.252182275056839,0.858810901641846,0.448444962501526,-0.247671097517014,0.226772055029869,0.973941028118134,-0.00365192000754178,0.974992096424103,-0.221867650747299,0.0128506878390908,0.583313465118408,0.789997160434723,-0.188811838626862,0.417793452739716,0.897148668766022,0.143432646989822,-0.854568779468536,0.519287884235382,0.00723183387890458,-0.417984127998352,0.904850006103516,0.0808444619178772,-0.589659929275513,0.776060581207275,0.223676517605782,
- -0.854568779468536,0.519287884235382,0.00723183387890458,0.226772055029869,0.973941028118134,-0.00365192000754178,0.417793452739716,0.897148668766022,0.143432646989822,-0.417984127998352,0.904850006103516,0.0808444619178772,-0.798436284065247,0.598287880420685,-0.0674623027443886,-0.814818441867828,0.578668594360352,0.0348361320793629,-0.589659929275513,0.776060581207275,0.223676517605782,0.546728193759918,0.824794232845306,-0.144231915473938,0.617695987224579,-0.469662994146347,-0.630768060684204,0.672831475734711,-0.709277927875519,0.210292011499405,0.541336297988892,0.83197546005249,-0.121539764106274,0.541336297988892,0.83197546005249,-0.121539764106274,0.26984179019928,0.946650385856628,-0.176177531480789,0.29951748251915,0.927277445793152,-0.224601596593857,0.546728193759918,0.824794232845306,-0.144231915473938,0.269891619682312,0.89733213186264,-0.349218726158142,-0.793274402618408,0.60838520526886,0.0241523534059525,-0.804956257343292,0.593148112297058,0.0148596931248903,0.342400461435318,0.88181072473526,-0.324301898479462,0.617695987224579,-0.469662994146347,-0.630768060684204,0.983514010906219,-0.0579906404018402,-0.171281427145004,0.924965739250183,0.0376037396490574,-0.378185510635376,0.672831475734711,-0.709277927875519,0.210292011499405,0.821316063404083,-0.561876535415649,-0.0986655578017235,0.540749788284302,0.826006233692169,-0.159070298075676,0.521573066711426,0.848139584064484,-0.0928491503000259,0.809686243534088,-0.581167876720428,0.0815609768033028,0.803727507591248,-0.59475302696228,-0.0170565582811832,0.967300534248352,-0.234480619430542,0.0966877937316895,0.958045125007629,-0.284914702177048,-0.0311978124082088,-0.895484387874603,0.445083320140839,0.00292154378257692,-0.918419599533081,0.395255357027054,0.0166936181485653,-0.854568779468536,0.519287884235382,0.00723183387890458,-0.857274830341339,0.514817595481873,0.00654417648911476,-0.891562640666962,0.451286166906357,-0.0381692014634609,-0.899686753749847,0.436272263526917,0.0151764545589685,0.342400461435318,0.88181072473526,-0.324301898479462,
- 0.540749788284302,0.826006233692169,-0.159070298075676,0.269891619682312,0.89733213186264,-0.349218726158142,-0.589659929275513,0.776060581207275,0.223676517605782,-0.417984127998352,0.904850006103516,0.0808444619178772,0.390834629535675,0.910132706165314,0.137502700090408,-0.798436284065247,0.598287880420685,-0.0674623027443886,-0.417984127998352,0.904850006103516,0.0808444619178772,0.417793452739716,0.897148668766022,0.143432646989822,0.390834629535675,0.910132706165314,0.137502700090408,-0.589659929275513,0.776060581207275,0.223676517605782,-0.814818441867828,0.578668594360352,0.0348361320793629,-0.857274830341339,0.514817595481873,0.00654417648911476,-0.854568779468536,0.519287884235382,0.00723183387890458,0.821541965007782,-0.565891623497009,0.0695390328764915,0.583313465118408,0.789997160434723,-0.188811838626862,0.974992096424103,-0.221867650747299,0.0128506878390908,0.342400461435318,0.88181072473526,-0.324301898479462,-0.804956257343292,0.593148112297058,0.0148596931248903,-0.801843464374542,0.58106917142868,0.139304593205452,0.351612061262131,0.826469540596008,0.439678639173508,-0.602015793323517,0.777075409889221,0.183659449219704,-0.642473220825195,0.592004597187042,0.486578613519669,0.297205150127411,0.94865483045578,-0.108273297548294,-0.180880412459373,0.98267787694931,0.0403304174542427,0.522054493427277,0.845380663871765,-0.113096654415131,0.80982768535614,-0.454639583826065,0.370785683393478,0.735256314277649,-0.544530928134918,-0.403589218854904,0.56974470615387,0.777976036071777,0.264847576618195,0.344425827264786,0.902953028678894,0.256995439529419,0.522054493427277,0.845380663871765,-0.113096654415131,0.56974470615387,0.777976036071777,0.264847576618195,0.297205150127411,0.94865483045578,-0.108273297548294,0.80982768535614,-0.454639583826065,0.370785683393478,0.823596060276031,-0.549501419067383,0.140491038560867,0.917858242988586,-0.060779295861721,-0.392227381467819,0.991013705730438,-0.0540901198983192,-0.122335851192474,0.735256314277649,-0.544530928134918,-0.403589218854904,0.26984179019928,0.946650385856628,-0.176177531480789,
- -0.801864743232727,0.58930766582489,-0.098638541996479,-0.691639482975006,0.579762160778046,0.430709660053253,0.29951748251915,0.927277445793152,-0.224601596593857,0.958045125007629,-0.284914702177048,-0.0311978124082088,0.602153360843658,0.798380255699158,0.000500053109135479,0.577738463878632,0.777753412723541,0.24762487411499,0.785820543766022,-0.543428003787994,-0.295249670743942,0.407597690820694,0.907064855098724,-0.105344347655773,-0.81030660867691,0.585574984550476,-0.0224766805768013,-0.79806786775589,0.589017748832703,-0.127066344022751,0.356258630752563,0.891217052936554,-0.28073462843895,0.809686243534088,-0.581167876720428,0.0815609768033028,0.521573066711426,0.848139584064484,-0.0928491503000259,0.480402708053589,0.874499976634979,-0.0668072775006294,0.967300534248352,-0.234480619430542,0.0966877937316895,0.785820543766022,-0.543428003787994,-0.295249670743942,0.577738463878632,0.777753412723541,0.24762487411499,0.583313465118408,0.789997160434723,-0.188811838626862,0.821541965007782,-0.565891623497009,0.0695390328764915,0.785820543766022,-0.543428003787994,-0.295249670743942,0.803727507591248,-0.59475302696228,-0.0170565582811832,0.958045125007629,-0.284914702177048,-0.0311978124082088,0.821316063404083,-0.561876535415649,-0.0986655578017235,0.980723679065704,-0.0154142277315259,-0.194791153073311,0.897266209125519,-0.0751895308494568,-0.435040086507797,0.351612061262131,0.826469540596008,0.439678639173508,0.480402708053589,0.874499976634979,-0.0668072775006294,0.521573066711426,0.848139584064484,-0.0928491503000259,0.540749788284302,0.826006233692169,-0.159070298075676,0.342400461435318,0.88181072473526,-0.324301898479462,0.356258630752563,0.891217052936554,-0.28073462843895,0.577738463878632,0.777753412723541,0.24762487411499,0.602153360843658,0.798380255699158,0.000500053109135479,0.407597690820694,0.907064855098724,-0.105344347655773,0.297205150127411,0.94865483045578,-0.108273297548294,-0.642473220825195,0.592004597187042,0.486578613519669,-0.793268799781799,0.605887591838837,0.0602067857980728,
- 0.344425827264786,0.902953028678894,0.256995439529419,0.56974470615387,0.777976036071777,0.264847576618195,0.735256314277649,-0.544530928134918,-0.403589218854904,0.950420558452606,-0.0907340869307518,-0.297436028718948,0.769116878509521,0.606189370155334,-0.202469289302826,0.297205150127411,0.94865483045578,-0.108273297548294,0.56974470615387,0.777976036071777,0.264847576618195,0.769116878509521,0.606189370155334,-0.202469289302826,-0.180880412459373,0.98267787694931,0.0403304174542427,0.735256314277649,-0.544530928134918,-0.403589218854904,0.991013705730438,-0.0540901198983192,-0.122335851192474,0.710151612758636,-0.681812107563019,-0.175547763705254,0.950420558452606,-0.0907340869307518,-0.297436028718948,0.29951748251915,0.927277445793152,-0.224601596593857,-0.691639482975006,0.579762160778046,0.430709660053253,-0.793274402618408,0.60838520526886,0.0241523534059525,0.269891619682312,0.89733213186264,-0.349218726158142,0.546728193759918,0.824794232845306,-0.144231915473938,0.29951748251915,0.927277445793152,-0.224601596593857,0.269891619682312,0.89733213186264,-0.349218726158142,0.540749788284302,0.826006233692169,-0.159070298075676,0.540749788284302,0.826006233692169,-0.159070298075676,0.821316063404083,-0.561876535415649,-0.0986655578017235,0.617695987224579,-0.469662994146347,-0.630768060684204,0.546728193759918,0.824794232845306,-0.144231915473938,0.821316063404083,-0.561876535415649,-0.0986655578017235,0.897266209125519,-0.0751895308494568,-0.435040086507797,0.983514010906219,-0.0579906404018402,-0.171281427145004,0.617695987224579,-0.469662994146347,-0.630768060684204,0.344425827264786,0.902953028678894,0.256995439529419,-0.793268799781799,0.605887591838837,0.0602067857980728,-0.801864743232727,0.58930766582489,-0.098638541996479,0.26984179019928,0.946650385856628,-0.176177531480789,0.26984179019928,0.946650385856628,-0.176177531480789,0.541336297988892,0.83197546005249,-0.121539764106274,0.522054493427277,0.845380663871765,-0.113096654415131,0.344425827264786,0.902953028678894,0.256995439529419,0.541336297988892,0.83197546005249,-0.121539764106274,
- 0.672831475734711,-0.709277927875519,0.210292011499405,0.80982768535614,-0.454639583826065,0.370785683393478,0.522054493427277,0.845380663871765,-0.113096654415131,0.672831475734711,-0.709277927875519,0.210292011499405,0.823596060276031,-0.549501419067383,0.140491038560867,0.80982768535614,-0.454639583826065,0.370785683393478,0.823596060276031,-0.549501419067383,0.140491038560867,0.86132800579071,-0.371913999319077,-0.34611302614212,0.917858242988586,-0.060779295861721,-0.392227381467819,0.672831475734711,-0.709277927875519,0.210292011499405,0.924965739250183,0.0376037396490574,-0.378185510635376,0.86132800579071,-0.371913999319077,-0.34611302614212,0.823596060276031,-0.549501419067383,0.140491038560867,0.821316063404083,-0.561876535415649,-0.0986655578017235,0.809686243534088,-0.581167876720428,0.0815609768033028,0.803727507591248,-0.59475302696228,-0.0170565582811832,0.999908804893494,-0.00939147267490625,0.00970528926700354,0.980723679065704,-0.0154142277315259,-0.194791153073311,0.356258630752563,0.891217052936554,-0.28073462843895,-0.79806786775589,0.589017748832703,-0.127066344022751,-0.798436284065247,0.598287880420685,-0.0674623027443886,0.390834629535675,0.910132706165314,0.137502700090408,0.417793452739716,0.897148668766022,0.143432646989822,0.583313465118408,0.789997160434723,-0.188811838626862,0.577738463878632,0.777753412723541,0.24762487411499,0.356258630752563,0.891217052936554,-0.28073462843895,0.390834629535675,0.910132706165314,0.137502700090408,0.351612061262131,0.826469540596008,0.439678639173508,-0.801843464374542,0.58106917142868,0.139304593205452,-0.81030660867691,0.585574984550476,-0.0224766805768013,0.407597690820694,0.907064855098724,-0.105344347655773,0.407597690820694,0.907064855098724,-0.105344347655773,0.602153360843658,0.798380255699158,0.000500053109135479,0.480402708053589,0.874499976634979,-0.0668072775006294,0.351612061262131,0.826469540596008,0.439678639173508,0.967300534248352,-0.234480619430542,0.0966877937316895,0.480402708053589,0.874499976634979,-0.0668072775006294,0.602153360843658,0.798380255699158,0.000500053109135479,
- 0.958045125007629,-0.284914702177048,-0.0311978124082088,0.803727507591248,-0.59475302696228,-0.0170565582811832,0.809686243534088,-0.581167876720428,0.0815609768033028,0.967300534248352,-0.234480619430542,0.0966877937316895,0.913934230804443,-0.405617088079453,-0.0141103127971292,0.967518031597137,-0.0122100664302707,-0.25250706076622,0.821541965007782,-0.565891623497009,0.0695390328764915,0.974992096424103,-0.221867650747299,0.0128506878390908,0.967518031597137,-0.0122100664302707,-0.25250706076622,0.999908804893494,-0.00939147267490625,0.00970528926700354,0.803727507591248,-0.59475302696228,-0.0170565582811832,0.785820543766022,-0.543428003787994,-0.295249670743942,0.821541965007782,-0.565891623497009,0.0695390328764915,-0.864081561565399,0.450238674879074,0.225052013993263,-0.849201321601868,0.455554455518723,0.267071753740311,-0.864951729774475,0.448393225669861,0.225393563508987,-0.867549598217011,0.44628569483757,0.219515010714531,-0.867928087711334,0.447874158620834,0.214731872081757,-0.860386669635773,0.445798844099045,0.246978104114532,-0.963615834712982,-0.0776172652840614,0.255773544311523,-0.81209409236908,0.564817905426025,0.14657436311245,-0.642473220825195,0.592004597187042,0.486578613519669,-0.602015793323517,0.777075409889221,0.183659449219704,0.759797394275665,0.541923463344574,-0.359203010797501,0.740477800369263,-0.623502552509308,-0.250872761011124,0.605452597141266,0.781729578971863,-0.149418696761131,0.793623685836792,0.599587857723236,0.103227272629738,-0.832471430301666,0.554057359695435,0.00344499200582504,-0.891562640666962,0.451286166906357,-0.0381692014634609,-0.857274830341339,0.514817595481873,0.00654417648911476,-0.814818441867828,0.578668594360352,0.0348361320793629,0.828405857086182,0.524044096469879,0.19779172539711,0.805567920207977,-0.56497848033905,-0.178493082523346,0.635889887809753,-0.543216526508331,-0.548233509063721,0.759797394275665,0.541923463344574,-0.359203010797501,0.647997200489044,-0.518537282943726,-0.557869911193848,0.828405857086182,0.524044096469879,0.19779172539711,
- 0.746660530567169,0.551596522331238,-0.371805459260941,0.781366407871246,-0.54118937253952,-0.310774326324463,0.781366407871246,-0.54118937253952,-0.310774326324463,0.746660530567169,0.551596522331238,-0.371805459260941,0.816270470619202,0.555218756198883,-0.159482136368752,0.827746331691742,-0.544306516647339,0.136259168386459,0.830594062805176,0.514953434467316,0.211982160806656,0.838159918785095,-0.541028797626495,-0.0691079944372177,0.83589631319046,-0.544486939907074,-0.0693637952208519,0.835565984249115,0.539568901062012,0.103416405618191,0.748211741447449,-0.438606679439545,-0.497798502445221,0.830594062805176,0.514953434467316,0.211982160806656,0.800594389438629,0.564425706863403,0.201177150011063,0.809965252876282,-0.562359213829041,-0.166458860039711,0.809965252876282,-0.562359213829041,-0.166458860039711,0.800594389438629,0.564425706863403,0.201177150011063,0.825772881507874,0.548634469509125,0.130765289068222,0.277101308107376,-0.175601467490196,0.944658219814301,0.830047190189362,-0.551384687423706,-0.0836452320218086,0.825772881507874,0.548634469509125,0.130765289068222,0.832790434360504,0.547030508518219,0.0849575102329254,0.832675099372864,-0.547401249408722,-0.0836910381913185,0.829690515995026,0.558147668838501,0.00921881850808859,0.823979258537292,-0.537970900535584,0.177891805768013,0.824842572212219,-0.562481641769409,-0.057002067565918,0.816270470619202,0.555218756198883,-0.159482136368752,0.823979258537292,-0.537970900535584,0.177891805768013,0.829690515995026,0.558147668838501,0.00921881850808859,0.835565984249115,0.539568901062012,0.103416405618191,0.540974915027618,-0.368855983018875,0.755838215351105,0.792716026306152,0.603197574615479,-0.0880577117204666,0.805537045001984,0.592166900634766,-0.0211767721921206,0.835565984249115,0.539568901062012,0.103416405618191,0.829690515995026,0.558147668838501,0.00921881850808859,0.769538700580597,0.580922305583954,0.265216320753098,0.816270470619202,0.555218756198883,-0.159482136368752,0.746660530567169,0.551596522331238,-0.371805459260941,0.719248235225677,0.580837368965149,-0.381195425987244,
- 0.769538700580597,0.580922305583954,0.265216320753098,0.792716026306152,0.603197574615479,-0.0880577117204666,0.829690515995026,0.558147668838501,0.00921881850808859,0.816270470619202,0.555218756198883,-0.159482136368752,0.719248235225677,0.580837368965149,-0.381195425987244,0.746660530567169,0.551596522331238,-0.371805459260941,0.828405857086182,0.524044096469879,0.19779172539711,0.745091557502747,0.603012323379517,-0.284981936216354,0.805537045001984,0.592166900634766,-0.0211767721921206,0.804986119270325,0.577907800674438,0.134238362312317,0.830594062805176,0.514953434467316,0.211982160806656,0.835565984249115,0.539568901062012,0.103416405618191,0.830594062805176,0.514953434467316,0.211982160806656,0.804986119270325,0.577907800674438,0.134238362312317,0.810394525527954,0.58550089597702,-0.0212039221078157,0.800594389438629,0.564425706863403,0.201177150011063,0.828405857086182,0.524044096469879,0.19779172539711,0.759797394275665,0.541923463344574,-0.359203010797501,0.793623685836792,0.599587857723236,0.103227272629738,0.745091557502747,0.603012323379517,-0.284981936216354,0.825772881507874,0.548634469509125,0.130765289068222,0.800594389438629,0.564425706863403,0.201177150011063,0.810394525527954,0.58550089597702,-0.0212039221078157,0.798242449760437,0.588756918907166,-0.127179056406021,0.832790434360504,0.547030508518219,0.0849575102329254,0.825772881507874,0.548634469509125,0.130765289068222,0.798242449760437,0.588756918907166,-0.127179056406021,0.79864364862442,0.598040282726288,-0.0672036781907082,0.814980030059814,0.578502357006073,0.0338030941784382,-0.691639482975006,0.579762160778046,0.430709660053253,-0.801864743232727,0.58930766582489,-0.098638541996479,-0.825556576251984,0.557802796363831,-0.0855128392577171,-0.815457284450531,0.563839793205261,0.130821377038956,-0.691639482975006,0.579762160778046,0.430709660053253,-0.815457284450531,0.563839793205261,0.130821377038956,-0.821440756320953,0.566148519515991,0.0686384811997414,-0.793274402618408,0.60838520526886,0.0241523534059525,-0.801864743232727,0.58930766582489,-0.098638541996479,
- -0.793268799781799,0.605887591838837,0.0602067857980728,-0.717098236083984,0.545457005500793,0.433874189853668,-0.825556576251984,0.557802796363831,-0.0855128392577171,-0.804956257343292,0.593148112297058,0.0148596931248903,-0.836364090442657,0.545009434223175,0.0588196739554405,-0.833904325962067,0.529409885406494,0.155976951122284,-0.801843464374542,0.58106917142868,0.139304593205452,-0.833904325962067,0.529409885406494,0.155976951122284,-0.824302792549133,0.556513726711273,0.104007557034492,-0.81030660867691,0.585574984550476,-0.0224766805768013,-0.801843464374542,0.58106917142868,0.139304593205452,-0.81209409236908,0.564817905426025,0.14657436311245,-0.717098236083984,0.545457005500793,0.433874189853668,-0.793268799781799,0.605887591838837,0.0602067857980728,-0.642473220825195,0.592004597187042,0.486578613519669,-0.824302792549133,0.556513726711273,0.104007557034492,-0.831299245357513,0.550839781761169,-0.0742770880460739,-0.79806786775589,0.589017748832703,-0.127066344022751,-0.81030660867691,0.585574984550476,-0.0224766805768013,-0.793274402618408,0.60838520526886,0.0241523534059525,-0.821440756320953,0.566148519515991,0.0686384811997414,-0.836364090442657,0.545009434223175,0.0588196739554405,-0.804956257343292,0.593148112297058,0.0148596931248903,-0.831299245357513,0.550839781761169,-0.0742770880460739,-0.832471430301666,0.554057359695435,0.00344499200582504,-0.814818441867828,0.578668594360352,0.0348361320793629,-0.798436284065247,0.598287880420685,-0.0674623027443886,-0.79806786775589,0.589017748832703,-0.127066344022751,0.635889887809753,-0.543216526508331,-0.548233509063721,0.740477800369263,-0.623502552509308,-0.250872761011124,0.759797394275665,0.541923463344574,-0.359203010797501,0.744787216186523,-0.454615890979767,-0.488483875989914,0.832790434360504,0.547030508518219,0.0849575102329254,0.959414422512054,0.280998259782791,-0.023749390617013,-0.539050459861755,0.828157842159271,0.153555482625961,-0.536968946456909,0.827336072921753,0.164861902594566,-0.769144713878632,-0.582180202007294,0.263595461845398,
- -0.845129013061523,-0.466762125492096,-0.260557562112808,-0.536968946456909,0.827336072921753,0.164861902594566,-0.539050459861755,0.828157842159271,0.153555482625961,-0.337804168462753,0.940651595592499,-0.0326052829623222,-0.334958106279373,0.941227495670319,-0.0435201488435268,-0.845129013061523,-0.466762125492096,-0.260557562112808,-0.769144713878632,-0.582180202007294,0.263595461845398,-0.949373424053192,0.106153748929501,0.295671194791794,-0.964274525642395,0.0581083223223686,0.258453369140625,0.56300687789917,0.781587362289429,-0.268597483634949,0.166326403617859,0.981858491897583,-0.0910461843013763,-0.30743396282196,0.948264956474304,0.0792337730526924,0.801989376544952,0.596289694309235,-0.0353801660239697,-0.503048181533813,0.839218735694885,0.206529602408409,-0.270224899053574,0.74871152639389,0.605317711830139,-0.852883040904999,-0.515855669975281,-0.0805203914642334,-0.482028782367706,-0.478900194168091,0.733691275119781,-0.15003114938736,0.918715596199036,0.365311354398727,-0.30743396282196,0.948264956474304,0.0792337730526924,-0.270224899053574,0.74871152639389,0.605317711830139,-0.503048181533813,0.839218735694885,0.206529602408409,-0.482028782367706,-0.478900194168091,0.733691275119781,-0.852883040904999,-0.515855669975281,-0.0805203914642334,-0.832781255245209,0.0529404506087303,0.55106520652771,-0.895858108997345,0.0646351203322411,0.439614057540894,-0.334958106279373,0.941227495670319,-0.0435201488435268,-0.337804168462753,0.940651595592499,-0.0326052829623222,0.822664082050323,0.539656281471252,0.178871586918831,0.703031182289124,0.592366993427277,-0.393508017063141,-0.30743396282196,0.948264956474304,0.0792337730526924,-0.15003114938736,0.918715596199036,0.365311354398727,0.584915280342102,0.581189036369324,-0.565768003463745,0.801989376544952,0.596289694309235,-0.0353801660239697,-0.270224899053574,0.74871152639389,0.605317711830139,-0.707225382328033,0.603856861591339,0.367680907249451,-0.901672065258026,-0.0816459804773331,0.424642950296402,-0.852883040904999,-0.515855669975281,-0.0805203914642334,
- -0.30743396282196,0.948264956474304,0.0792337730526924,0.166326403617859,0.981858491897583,-0.0910461843013763,-0.707225382328033,0.603856861591339,0.367680907249451,-0.270224899053574,0.74871152639389,0.605317711830139,-0.852883040904999,-0.515855669975281,-0.0805203914642334,-0.901672065258026,-0.0816459804773331,0.424642950296402,-0.641462564468384,-0.685056328773499,0.345287710428238,-0.832781255245209,0.0529404506087303,0.55106520652771,0.822664082050323,0.539656281471252,0.178871586918831,0.76207023859024,0.559649646282196,-0.325639933347702,0.9191535115242,-0.0290089957416058,-0.392829984426498,0.703031182289124,0.592366993427277,-0.393508017063141,-0.337804168462753,0.940651595592499,-0.0326052829623222,-0.35340017080307,0.935448408126831,-0.00669601652771235,0.556531488895416,0.581931889057159,-0.592982351779938,0.822664082050323,0.539656281471252,0.178871586918831,-0.539050459861755,0.828157842159271,0.153555482625961,-0.558650255203247,0.822853744029999,0.104028053581715,-0.35340017080307,0.935448408126831,-0.00669601652771235,-0.337804168462753,0.940651595592499,-0.0326052829623222,-0.558650255203247,0.822853744029999,0.104028053581715,-0.539050459861755,0.828157842159271,0.153555482625961,-0.845129013061523,-0.466762125492096,-0.260557562112808,-0.584083139896393,-0.517315208911896,0.625485301017761,-0.584083139896393,-0.517315208911896,0.625485301017761,-0.845129013061523,-0.466762125492096,-0.260557562112808,-0.964274525642395,0.0581083223223686,0.258453369140625,-0.897321105003357,0.0474145151674747,0.438824415206909,0.822664082050323,0.539656281471252,0.178871586918831,0.556531488895416,0.581931889057159,-0.592982351779938,0.796360731124878,0.559301435947418,-0.230199068784714,0.76207023859024,0.559649646282196,-0.325639933347702,-0.15003114938736,0.918715596199036,0.365311354398727,-0.334958106279373,0.941227495670319,-0.0435201488435268,0.703031182289124,0.592366993427277,-0.393508017063141,0.584915280342102,0.581189036369324,-0.565768003463745,-0.334958106279373,0.941227495670319,-0.0435201488435268,
- -0.15003114938736,0.918715596199036,0.365311354398727,-0.503048181533813,0.839218735694885,0.206529602408409,-0.536968946456909,0.827336072921753,0.164861902594566,-0.536968946456909,0.827336072921753,0.164861902594566,-0.503048181533813,0.839218735694885,0.206529602408409,-0.482028782367706,-0.478900194168091,0.733691275119781,-0.769144713878632,-0.582180202007294,0.263595461845398,-0.769144713878632,-0.582180202007294,0.263595461845398,-0.482028782367706,-0.478900194168091,0.733691275119781,-0.895858108997345,0.0646351203322411,0.439614057540894,-0.769144713878632,-0.582180202007294,0.263595461845398,-0.895858108997345,0.0646351203322411,0.439614057540894,-0.949373424053192,0.106153748929501,0.295671194791794,0.703031182289124,0.592366993427277,-0.393508017063141,0.9191535115242,-0.0290089957416058,-0.392829984426498,0.808354258537292,0.556565463542938,-0.191829264163971,0.584915280342102,0.581189036369324,-0.565768003463745,0.808354258537292,0.556565463542938,-0.191829264163971,0.679131031036377,0.543901145458221,-0.492902278900146,0.801989376544952,0.596289694309235,-0.0353801660239697,0.584915280342102,0.581189036369324,-0.565768003463745,0.810739934444427,0.445211797952652,-0.380114912986755,0.79316508769989,0.444985568523407,-0.41578483581543,0.802169740200043,0.445588618516922,-0.39746019244194,0.789346277713776,0.447632819414139,-0.420187443494797,0.791715383529663,0.446084976196289,-0.417366683483124,0.793988704681396,0.444837808609009,-0.414368599653244,0.516604900360107,0.831847071647644,-0.202854782342911,0.543247044086456,-0.464885920286179,-0.699116468429565,0.74800717830658,-0.598902344703674,-0.286009401082993,0.507407665252686,0.831322014331818,-0.226806789636612,0.507407665252686,0.831322014331818,-0.226806789636612,0.227494060993195,0.945596039295197,-0.232582718133926,0.231908485293388,0.931722819805145,-0.279483765363693,0.516604900360107,0.831847071647644,-0.202854782342911,0.543247044086456,-0.464885920286179,-0.699116468429565,0.906849801540375,-0.0434265844523907,-0.41921067237854,0.904913067817688,-0.0968941152095795,-0.414420068264008,
- 0.74800717830658,-0.598902344703674,-0.286009401082993,-0.553371369838715,0.777438461780548,0.298947393894196,-0.560563206672668,0.597670257091522,0.573200881481171,0.266623497009277,0.948251128196716,-0.172429129481316,-0.170601218938828,0.982217848300934,0.07837975025177,0.487955331802368,0.845426261425018,-0.217149719595909,0.870451152324677,-0.472541600465775,0.137910261750221,0.531851887702942,-0.515741229057312,-0.671672999858856,0.614098846912384,0.770755767822266,0.169759050011635,0.37718191742897,0.91489040851593,0.143907725811005,0.487955331802368,0.845426261425018,-0.217149719595909,0.614098846912384,0.770755767822266,0.169759050011635,0.266623497009277,0.948251128196716,-0.172429129481316,0.870451152324677,-0.472541600465775,0.137910261750221,0.956343650817871,-0.0511344224214554,-0.287736415863037,0.940332293510437,-0.0550831966102123,-0.335769355297089,0.531851887702942,-0.515741229057312,-0.671672999858856,0.227494060993195,0.945596039295197,-0.232582718133926,-0.779610455036163,0.598169088363647,0.185475796461105,-0.599379658699036,0.560206234455109,0.571763098239899,0.231908485293388,0.931722819805145,-0.279483765363693,-0.599379658699036,0.560206234455109,0.571763098239899,-0.779610455036163,0.598169088363647,0.185475796461105,-0.950209021568298,0.0382812544703484,0.309253215789795,-0.757425725460052,0.558843076229095,0.337640166282654,0.266623497009277,0.948251128196716,-0.172429129481316,-0.560563206672668,0.597670257091522,0.573200881481171,-0.811227858066559,0.583112120628357,0.0434698835015297,0.37718191742897,0.91489040851593,0.143907725811005,0.614098846912384,0.770755767822266,0.169759050011635,0.531851887702942,-0.515741229057312,-0.671672999858856,0.873776078224182,-0.0849848538637161,-0.478845357894897,0.713297069072723,0.606107592582703,-0.35191023349762,0.266623497009277,0.948251128196716,-0.172429129481316,0.614098846912384,0.770755767822266,0.169759050011635,0.713297069072723,0.606107592582703,-0.35191023349762,-0.170601218938828,0.982217848300934,0.07837975025177,0.531851887702942,-0.515741229057312,-0.671672999858856,
- 0.940332293510437,-0.0550831966102123,-0.335769355297089,0.65730893611908,-0.684479236602783,-0.31533020734787,0.873776078224182,-0.0849848538637161,-0.478845357894897,0.231908485293388,0.931722819805145,-0.279483765363693,-0.599379658699036,0.560206234455109,0.571763098239899,-0.787289679050446,0.564423084259033,-0.248196825385094,0.291579753160477,0.941649913787842,-0.168157264590263,0.516604900360107,0.831847071647644,-0.202854782342911,0.231908485293388,0.931722819805145,-0.279483765363693,0.291579753160477,0.941649913787842,-0.168157264590263,0.517540276050568,0.82953017950058,-0.20983761548996,0.517540276050568,0.82953017950058,-0.20983761548996,0.841755151748657,-0.512380063533783,0.170044362545013,0.543247044086456,-0.464885920286179,-0.699116468429565,0.516604900360107,0.831847071647644,-0.202854782342911,0.841755151748657,-0.512380063533783,0.170044362545013,0.991534888744354,-0.0563963912427425,-0.116953685879707,0.906849801540375,-0.0434265844523907,-0.41921067237854,0.543247044086456,-0.464885920286179,-0.699116468429565,-0.599379658699036,0.560206234455109,0.571763098239899,-0.757425725460052,0.558843076229095,0.337640166282654,-0.817104578018188,0.567907631397247,0.0991017147898674,-0.787289679050446,0.564423084259033,-0.248196825385094,-0.779610455036163,0.598169088363647,0.185475796461105,-0.811227858066559,0.583112120628357,0.0434698835015297,-0.772831439971924,0.564961671829224,0.289050161838531,-0.950209021568298,0.0382812544703484,0.309253215789795,0.37718191742897,0.91489040851593,0.143907725811005,-0.811227858066559,0.583112120628357,0.0434698835015297,-0.779610455036163,0.598169088363647,0.185475796461105,0.227494060993195,0.945596039295197,-0.232582718133926,0.227494060993195,0.945596039295197,-0.232582718133926,0.507407665252686,0.831322014331818,-0.226806789636612,0.487955331802368,0.845426261425018,-0.217149719595909,0.37718191742897,0.91489040851593,0.143907725811005,0.507407665252686,0.831322014331818,-0.226806789636612,0.74800717830658,-0.598902344703674,-0.286009401082993,0.870451152324677,-0.472541600465775,0.137910261750221,
- 0.487955331802368,0.845426261425018,-0.217149719595909,0.956343650817871,-0.0511344224214554,-0.287736415863037,0.870451152324677,-0.472541600465775,0.137910261750221,0.74800717830658,-0.598902344703674,-0.286009401082993,0.904913067817688,-0.0968941152095795,-0.414420068264008,-0.757162153720856,0.566547155380249,0.325161218643188,-0.772831439971924,0.564961671829224,0.289050161838531,-0.811227858066559,0.583112120628357,0.0434698835015297,-0.560563206672668,0.597670257091522,0.573200881481171,-0.803062915802002,0.445183008909225,0.396108627319336,-0.787319242954254,0.445347726345062,0.426372915506363,-0.803552746772766,0.445062398910522,0.39524981379509,-0.805372536182404,0.446358561515808,0.390050232410431,-0.806559443473816,0.447884798049927,0.385825335979462,-0.79401046037674,0.445884585380554,0.413200050592422,-0.89093554019928,-0.0992711633443832,0.443146973848343,-0.757162153720856,0.566547155380249,0.325161218643188,-0.560563206672668,0.597670257091522,0.573200881481171,-0.553371369838715,0.777438461780548,0.298947393894196,-0.965981900691986,0.0898680090904236,0.242492765188217,-0.952438533306122,0.091156043112278,0.290777534246445,-0.96300220489502,0.0895993188023567,0.25416287779808,-0.972041130065918,0.0902673676609993,0.216767266392708,-0.96124804019928,0.0902054980397224,0.260509490966797,-0.961317896842957,0.0887422263622284,0.260753959417343,-0.954417765140533,0.0853929221630096,0.285998106002808,-0.96470445394516,0.0896248370409012,0.247614249587059,-0.973877847194672,0.0931234583258629,0.207099214196205,-0.96613347530365,0.0896249786019325,0.241978481411934,0.556531488895416,0.581931889057159,-0.592982351779938,0.0831452459096909,0.995154023170471,-0.0524930991232395,0.596218883991241,-0.792518377304077,-0.128209620714188,0.796360731124878,0.559301435947418,-0.230199068784714,-0.787289679050446,0.564423084259033,-0.248196825385094,-0.817104578018188,0.567907631397247,0.0991017147898674,-0.966903626918793,0.0538726858794689,0.249389633536339,-0.11064538359642,0.993844151496887,-0.00562241999432445,
- 0.291579753160477,0.941649913787842,-0.168157264590263,-0.787289679050446,0.564423084259033,-0.248196825385094,-0.11064538359642,0.993844151496887,-0.00562241999432445,0.461583882570267,0.881166160106659,-0.102404177188873,0.517540276050568,0.82953017950058,-0.20983761548996,0.291579753160477,0.941649913787842,-0.168157264590263,0.461583882570267,0.881166160106659,-0.102404177188873,0.612816154956818,0.777194678783417,-0.142915859818459,0.612816154956818,0.777194678783417,-0.142915859818459,0.895862460136414,0.414175242185593,-0.160901829600334,0.841755151748657,-0.512380063533783,0.170044362545013,0.517540276050568,0.82953017950058,-0.20983761548996,0.895862460136414,0.414175242185593,-0.160901829600334,0.962575376033783,-0.0933622270822525,-0.254425376653671,0.991534888744354,-0.0563963912427425,-0.116953685879707,0.841755151748657,-0.512380063533783,0.170044362545013,-0.853146076202393,0.435294657945633,0.287506997585297,-0.584083139896393,-0.517315208911896,0.625485301017761,-0.897321105003357,0.0474145151674747,0.438824415206909,-0.96921980381012,-0.0394687317311764,0.243012800812721,-0.602012634277344,0.780132055282593,0.170219764113426,-0.558650255203247,0.822853744029999,0.104028053581715,-0.584083139896393,-0.517315208911896,0.625485301017761,-0.853146076202393,0.435294657945633,0.287506997585297,-0.35340017080307,0.935448408126831,-0.00669601652771235,-0.558650255203247,0.822853744029999,0.104028053581715,-0.602012634277344,0.780132055282593,0.170219764113426,-0.449638515710831,0.883310377597809,0.132620513439178,0.556531488895416,0.581931889057159,-0.592982351779938,-0.35340017080307,0.935448408126831,-0.00669601652771235,-0.449638515710831,0.883310377597809,0.132620513439178,0.0831452459096909,0.995154023170471,-0.0524930991232395,0.609352469444275,0.792504012584686,0.0250397250056267,0.142292723059654,0.989780008792877,-0.0094021949917078,-0.365284472703934,0.930274367332459,-0.0340127870440483,0.786290526390076,0.462285608053207,0.40992596745491,-0.556374967098236,0.817791104316711,0.147189259529114,
- -0.551167786121368,0.798517167568207,0.24204233288765,-0.856666445732117,-0.44224825501442,-0.26559191942215,-0.755921602249146,-0.410735279321671,0.509783506393433,-0.356784522533417,0.907232701778412,0.222786396741867,-0.365284472703934,0.930274367332459,-0.0340127870440483,-0.551167786121368,0.798517167568207,0.24204233288765,-0.556374967098236,0.817791104316711,0.147189259529114,-0.755921602249146,-0.410735279321671,0.509783506393433,-0.856666445732117,-0.44224825501442,-0.26559191942215,-0.98788857460022,-0.0123468190431595,0.15467295050621,-0.979285657405853,0.00632980512455106,-0.202384695410728,-0.853745937347412,-0.491245806217194,0.172613367438316,-0.365284472703934,0.930274367332459,-0.0340127870440483,-0.356784522533417,0.907232701778412,0.222786396741867,0.802317142486572,0.488586068153381,-0.342886000871658,0.786290526390076,0.462285608053207,0.40992596745491,-0.551167786121368,0.798517167568207,0.24204233288765,-0.860772848129272,0.508895099163055,0.00979718845337629,-0.984070777893066,-0.176922172307968,-0.0174191389232874,-0.856666445732117,-0.44224825501442,-0.26559191942215,-0.365284472703934,0.930274367332459,-0.0340127870440483,0.142292723059654,0.989780008792877,-0.0094021949917078,-0.860772848129272,0.508895099163055,0.00979718845337629,-0.551167786121368,0.798517167568207,0.24204233288765,-0.856666445732117,-0.44224825501442,-0.26559191942215,-0.984070777893066,-0.176922172307968,-0.0174191389232874,-0.649314165115356,-0.760123372077942,0.024567011743784,-0.98788857460022,-0.0123468190431595,0.15467295050621,-0.356784522533417,0.907232701778412,0.222786396741867,-0.0686619207262993,0.99741929769516,0.020985571667552,0.682801783084869,0.730554580688477,-0.00847141724079847,0.802317142486572,0.488586068153381,-0.342886000871658,-0.0686619207262993,0.99741929769516,0.020985571667552,-0.356784522533417,0.907232701778412,0.222786396741867,-0.556374967098236,0.817791104316711,0.147189259529114,-0.608860850334167,0.793154060840607,0.0139746256172657,-0.608860850334167,0.793154060840607,0.0139746256172657,
- -0.556374967098236,0.817791104316711,0.147189259529114,-0.755921602249146,-0.410735279321671,0.509783506393433,-0.89654278755188,0.442486137151718,0.0204246174544096,-0.89654278755188,0.442486137151718,0.0204246174544096,-0.755921602249146,-0.410735279321671,0.509783506393433,-0.853745937347412,-0.491245806217194,0.172613367438316,-0.853745937347412,-0.491245806217194,0.172613367438316,-0.979285657405853,0.00632980512455106,-0.202384695410728,-0.896196246147156,-0.355805903673172,-0.265017986297607,-0.89654278755188,0.442486137151718,0.0204246174544096,-0.853745937347412,-0.491245806217194,0.172613367438316,-0.896196246147156,-0.355805903673172,-0.265017986297607,-0.947973966598511,-0.318087190389633,-0.0128800002858043,0.682801783084869,0.730554580688477,-0.00847141724079847,0.94609147310257,-0.32289457321167,0.0254958216100931,0.88355964422226,0.466763824224472,0.0381318852305412,0.802317142486572,0.488586068153381,-0.342886000871658,0.88355964422226,0.466763824224472,0.0381318852305412,0.876552700996399,0.464454770088196,-0.126242369413376,0.786290526390076,0.462285608053207,0.40992596745491,0.802317142486572,0.488586068153381,-0.342886000871658,0.903902053833008,0.426846146583557,0.0276304297149181,0.891031324863434,0.453704923391342,-0.0146628227084875,0.877272367477417,0.479992806911469,-0.000241300091147423,0.87887978553772,0.476554036140442,-0.0216035824269056,0.880672514438629,0.473350435495377,-0.0188473537564278,0.885176658630371,0.465250074863434,-0.00218181149102747,-0.608568847179413,0.793105185031891,0.0250651314854622,-0.806081771850586,0.479518055915833,0.346835136413574,0.364592462778091,0.930410742759705,-0.0375275649130344,-0.142588436603546,0.989737451076508,-0.00940780527889729,0.557478666305542,0.818216264247894,0.140498176217079,0.765676379203796,-0.407414019107819,0.497748613357544,0.850119829177856,-0.443968236446381,-0.283176004886627,0.559880256652832,0.796761214733124,0.227388828992844,0.362169146537781,0.905073881149292,0.2228784263134,0.557478666305542,0.818216264247894,0.140498176217079,
- 0.559880256652832,0.796761214733124,0.227388828992844,0.364592462778091,0.930410742759705,-0.0375275649130344,0.765676379203796,-0.407414019107819,0.497748613357544,0.856005311012268,-0.490391492843628,0.163618594408035,0.975416958332062,-0.00230787927284837,-0.220355600118637,0.989021360874176,-0.00290320068597794,0.147744610905647,0.850119829177856,-0.443968236446381,-0.283176004886627,0.364592462778091,0.930410742759705,-0.0375275649130344,-0.806081771850586,0.479518055915833,0.346835136413574,-0.788623750209808,0.477239608764648,-0.38770467042923,0.362169146537781,0.905073881149292,0.2228784263134,0.559880256652832,0.796761214733124,0.227388828992844,0.850119829177856,-0.443968236446381,-0.283176004886627,0.984413981437683,-0.174988582730293,-0.0175546929240227,0.860370516777039,0.509575307369232,0.00978627149015665,0.364592462778091,0.930410742759705,-0.0375275649130344,0.559880256652832,0.796761214733124,0.227388828992844,0.860370516777039,0.509575307369232,0.00978627149015665,-0.142588436603546,0.989737451076508,-0.00940780527889729,0.850119829177856,-0.443968236446381,-0.283176004886627,0.989021360874176,-0.00290320068597794,0.147744610905647,0.649700403213501,-0.759793639183044,0.0245584584772587,0.984413981437683,-0.174988582730293,-0.0175546929240227,-0.682722926139832,0.730628490447998,-0.00845586881041527,-0.788623750209808,0.477239608764648,-0.38770467042923,-0.8791543841362,0.470989137887955,-0.0725043788552284,-0.998910486698151,-0.0465223453938961,0.00368464551866055,0.362169146537781,0.905073881149292,0.2228784263134,-0.788623750209808,0.477239608764648,-0.38770467042923,-0.682722926139832,0.730628490447998,-0.00845586881041527,0.0686612129211426,0.997419357299805,0.0209840834140778,0.0686612129211426,0.997419357299805,0.0209840834140778,0.609157502651215,0.792926371097565,0.0139651857316494,0.557478666305542,0.818216264247894,0.140498176217079,0.362169146537781,0.905073881149292,0.2228784263134,0.609157502651215,0.792926371097565,0.0139651857316494,0.896799802780151,0.441965728998184,0.0204099211841822,
- 0.765676379203796,-0.407414019107819,0.497748613357544,0.557478666305542,0.818216264247894,0.140498176217079,0.896799802780151,0.441965728998184,0.0204099211841822,0.856005311012268,-0.490391492843628,0.163618594408035,0.765676379203796,-0.407414019107819,0.497748613357544,0.856005311012268,-0.490391492843628,0.163618594408035,0.896296620368958,-0.355690389871597,-0.264833360910416,0.975416958332062,-0.00230787927284837,-0.220355600118637,0.896799802780151,0.441965728998184,0.0204099211841822,0.947948455810547,-0.318163067102432,-0.0128867523744702,0.896296620368958,-0.355690389871597,-0.264833360910416,0.856005311012268,-0.490391492843628,0.163618594408035,-0.879920184612274,0.469555169343948,0.072515681385994,-0.8791543841362,0.470989137887955,-0.0725043788552284,-0.788623750209808,0.477239608764648,-0.38770467042923,-0.806081771850586,0.479518055915833,0.346835136413574,-0.890945255756378,0.453873842954636,-0.0146711692214012,-0.903832197189331,0.426988989114761,0.0277106687426567,-0.885108232498169,0.465380132198334,-0.00218705832958221,-0.880672454833984,0.473350435495377,-0.0188521854579449,-0.878829956054688,0.476645439863205,-0.0216147135943174,-0.877169549465179,0.480180770158768,-0.000237481639487669,-0.990257620811462,-0.138959184288979,-0.00896772183477879,-0.879920184612274,0.469555169343948,0.072515681385994,-0.806081771850586,0.479518055915833,0.346835136413574,-0.608568847179413,0.793105185031891,0.0250651314854622,0.999958693981171,-8.60923319123685e-005,0.00908840727061033,0.999973833560944,0.000453369342721999,-0.00722947204485536,1,-0.000224513016291894,-1.10330483948928e-005,0.999973833560944,-0.000240335037233308,0.00723625579848886,0.999958634376526,0.000638832454569638,-0.00907719135284424,0.999937772750854,0.00015177670866251,-0.0111579988151789,0.999383687973022,0.000404037011321634,-0.0351025760173798,1,3.3451880199209e-007,-9.92066907201661e-006,0.999381244182587,-0.00164200377184898,0.0351350195705891,0.99993759393692,-0.000541502493433654,0.0111630829051137,0.876552700996399,0.464454770088196,-0.126242369413376,
- 0.736637890338898,-0.674869477748871,-0.0437704101204872,0.609352469444275,0.792504012584686,0.0250397250056267,0.786290526390076,0.462285608053207,0.40992596745491,0.842601895332336,-0.455736547708511,-0.286925792694092,0.876552700996399,0.464454770088196,-0.126242369413376,0.88355964422226,0.466763824224472,0.0381318852305412,0.882666170597076,-0.46743580698967,-0.049032524228096,0.842601895332336,-0.455736547708511,-0.286925792694092,0.736637890338898,-0.674869477748871,-0.0437704101204872,0.876552700996399,0.464454770088196,-0.126242369413376,0.871567726135254,-0.469950348138809,0.139701053500175,0.88355964422226,0.466763824224472,0.0381318852305412,0.94609147310257,-0.32289457321167,0.0254958216100931,0.679131031036377,0.543901145458221,-0.492902278900146,0.600114464759827,-0.719391345977783,-0.349769562482834,0.56300687789917,0.781587362289429,-0.268597483634949,0.801989376544952,0.596289694309235,-0.0353801660239697,0.808354258537292,0.556565463542938,-0.191829264163971,0.755066812038422,-0.565432846546173,-0.331903606653214,0.458970308303833,-0.52694046497345,-0.715318262577057,0.679131031036377,0.543901145458221,-0.492902278900146,0.781584918498993,-0.562152922153473,-0.270387351512909,0.76207023859024,0.559649646282196,-0.325639933347702,0.796360731124878,0.559301435947418,-0.230199068784714,0.825374901294708,-0.564137399196625,-0.0224782228469849,0.8322634100914,-0.5474813580513,-0.0871885195374489,0.808354258537292,0.556565463542938,-0.191829264163971,0.9191535115242,-0.0290089957416058,-0.392829984426498,0.458970308303833,-0.52694046497345,-0.715318262577057,0.600114464759827,-0.719391345977783,-0.349769562482834,0.679131031036377,0.543901145458221,-0.492902278900146,0.614074409008026,-0.513632893562317,-0.59924453496933,0.9191535115242,-0.0290089957416058,-0.392829984426498,0.76207023859024,0.559649646282196,-0.325639933347702,0.825374901294708,-0.564137399196625,-0.0224782228469849,0.796360731124878,0.559301435947418,-0.230199068784714,0.596218883991241,-0.792518377304077,-0.128209620714188,-0.413542628288269,0.819302916526794,0.397146582603455,
- -0.350072085857391,0.827235639095306,0.439466506242752,-0.165881142020226,-0.664073348045349,0.729033648967743,-0.863573253154755,-0.476205587387085,0.165739446878433,-0.350072085857391,0.827235639095306,0.439466506242752,-0.413542628288269,0.819302916526794,0.397146582603455,-0.369926154613495,0.921141624450684,0.12104856222868,-0.299242675304413,0.941635966300964,0.154193043708801,-0.863573253154755,-0.476205587387085,0.165739446878433,-0.165881142020226,-0.664073348045349,0.729033648967743,-0.654603362083435,0.086754783987999,0.750978112220764,-0.626239478588104,0.0536972433328629,0.777779400348663,0.313546001911163,0.781765460968018,-0.539010047912598,0.085396870970726,0.981996834278107,-0.168492659926414,-0.148825004696846,0.952984750270844,0.263953477144241,0.682588875293732,0.565278828144073,-0.463176429271698,-0.264860868453979,0.833879709243774,0.484245359897614,0.0777570754289627,0.753651738166809,0.65265828371048,-0.703866302967072,-0.509639620780945,0.494812905788422,-0.0542348250746727,-0.52827775478363,0.847337782382965,0.131032690405846,0.89251720905304,0.431559324264526,-0.148825004696846,0.952984750270844,0.263953477144241,0.0777570754289627,0.753651738166809,0.65265828371048,-0.264860868453979,0.833879709243774,0.484245359897614,-0.0542348250746727,-0.52827775478363,0.847337782382965,-0.703866302967072,-0.509639620780945,0.494812905788422,-0.33057177066803,0.0312797091901302,0.943262338638306,-0.727001965045929,0.0602719597518444,0.683984994888306,-0.299242675304413,0.941635966300964,0.154193043708801,-0.369926154613495,0.921141624450684,0.12104856222868,0.727314829826355,0.583709061145782,-0.360966563224792,0.359414368867874,0.59237140417099,-0.721052944660187,-0.148825004696846,0.952984750270844,0.263953477144241,0.131032690405846,0.89251720905304,0.431559324264526,0.223121583461761,0.60814380645752,-0.761825382709503,0.682588875293732,0.565278828144073,-0.463176429271698,0.0777570754289627,0.753651738166809,0.65265828371048,-0.376749098300934,0.604555487632751,0.701835334300995,-0.505852997303009,-0.0798849314451218,0.858912765979767,
- -0.703866302967072,-0.509639620780945,0.494812905788422,-0.148825004696846,0.952984750270844,0.263953477144241,0.085396870970726,0.981996834278107,-0.168492659926414,-0.376749098300934,0.604555487632751,0.701835334300995,0.0777570754289627,0.753651738166809,0.65265828371048,-0.703866302967072,-0.509639620780945,0.494812905788422,-0.505852997303009,-0.0798849314451218,0.858912765979767,-0.33530580997467,-0.68370395898819,0.648165822029114,-0.33057177066803,0.0312797091901302,0.943262338638306,0.727314829826355,0.583709061145782,-0.360966563224792,0.430405169725418,0.551928460597992,-0.714231371879578,0.538244545459747,-0.0298003107309341,-0.842261791229248,0.359414368867874,0.59237140417099,-0.721052944660187,-0.369926154613495,0.921141624450684,0.12104856222868,-0.325354546308517,0.931430578231812,0.163038700819016,0.11288944631815,0.546728193759918,-0.829665184020996,0.727314829826355,0.583709061145782,-0.360966563224792,-0.413542628288269,0.819302916526794,0.397146582603455,-0.421872347593308,0.822370707988739,0.381746232509613,-0.325354546308517,0.931430578231812,0.163038700819016,-0.369926154613495,0.921141624450684,0.12104856222868,-0.421872347593308,0.822370707988739,0.381746232509613,-0.413542628288269,0.819302916526794,0.397146582603455,-0.863573253154755,-0.476205587387085,0.165739446878433,-0.179357722401619,-0.499946266412735,0.847280740737915,-0.179357722401619,-0.499946266412735,0.847280740737915,-0.863573253154755,-0.476205587387085,0.165739446878433,-0.626239478588104,0.0536972433328629,0.777779400348663,-0.460282742977142,0.0636562705039978,0.88548731803894,0.727314829826355,0.583709061145782,-0.360966563224792,0.11288944631815,0.546728193759918,-0.829665184020996,0.515021622180939,0.559013068675995,-0.649813115596771,0.430405169725418,0.551928460597992,-0.714231371879578,0.131032690405846,0.89251720905304,0.431559324264526,-0.299242675304413,0.941635966300964,0.154193043708801,0.359414368867874,0.59237140417099,-0.721052944660187,0.223121583461761,0.60814380645752,-0.761825382709503,-0.299242675304413,0.941635966300964,0.154193043708801,
- 0.131032690405846,0.89251720905304,0.431559324264526,-0.264860868453979,0.833879709243774,0.484245359897614,-0.350072085857391,0.827235639095306,0.439466506242752,-0.350072085857391,0.827235639095306,0.439466506242752,-0.264860868453979,0.833879709243774,0.484245359897614,-0.0542348250746727,-0.52827775478363,0.847337782382965,-0.165881142020226,-0.664073348045349,0.729033648967743,-0.0542348250746727,-0.52827775478363,0.847337782382965,-0.727001965045929,0.0602719597518444,0.683984994888306,-0.641857624053955,-0.0444514453411102,0.765534460544586,-0.165881142020226,-0.664073348045349,0.729033648967743,-0.0542348250746727,-0.52827775478363,0.847337782382965,-0.641857624053955,-0.0444514453411102,0.765534460544586,-0.654603362083435,0.086754783987999,0.750978112220764,0.223121583461761,0.60814380645752,-0.761825382709503,0.359414368867874,0.59237140417099,-0.721052944660187,0.538244545459747,-0.0298003107309341,-0.842261791229248,0.561773240566254,0.546493530273438,-0.62109237909317,0.561773240566254,0.546493530273438,-0.62109237909317,0.287053138017654,0.555193364620209,-0.7806156873703,0.682588875293732,0.565278828144073,-0.463176429271698,0.223121583461761,0.60814380645752,-0.761825382709503,0.455380946397781,0.445458322763443,-0.770840525627136,0.420297801494598,0.445210486650467,-0.790656208992004,0.438472479581833,0.44573637843132,-0.780423700809479,0.414850443601608,0.44761848449707,-0.792172193527222,0.418399751186371,0.446193307638168,-0.791108906269073,0.421939045190811,0.445065885782242,-0.789863169193268,0.268749475479126,0.823240876197815,-0.500048398971558,-0.0446040816605091,-0.4714495241642,-0.880764424800873,0.539066195487976,-0.644628643989563,-0.542090117931366,0.290531039237976,0.831489384174347,-0.473515778779984,0.290531039237976,0.831489384174347,-0.473515778779984,0.0577953159809113,0.945828855037689,-0.319480031728745,0.0312903858721256,0.923704147338867,-0.381826937198639,0.268749475479126,0.823240876197815,-0.500048398971558,-0.0446040816605091,-0.4714495241642,-0.880764424800873,0.561087012290955,-0.0537921860814095,-0.82600724697113,
- 0.523525893688202,-0.0349825993180275,-0.851291298866272,0.539066195487976,-0.644628643989563,-0.542090117931366,-0.288829237222672,0.776809692382813,0.559593200683594,-0.113191030919552,0.570703506469727,0.813317596912384,0.162613347172737,0.952377796173096,-0.257940888404846,-0.0966954901814461,0.982345998287201,0.160145297646523,0.31766140460968,0.840592622756958,-0.438743054866791,0.818430840969086,-0.487649321556091,-0.303922832012177,0.146384313702583,-0.51102340221405,-0.847010493278503,0.583948135375977,0.776166498661041,-0.237844869494438,0.44249364733696,0.893550038337708,-0.0759459212422371,0.31766140460968,0.840592622756958,-0.438743054866791,0.583948135375977,0.776166498661041,-0.237844869494438,0.162613347172737,0.952377796173096,-0.257940888404846,0.818430840969086,-0.487649321556091,-0.303922832012177,0.592321157455444,-0.058242354542017,-0.803594172000885,0.604755997657776,-0.0649113655090332,-0.793761134147644,0.146384313702583,-0.51102340221405,-0.847010493278503,0.0577953159809113,0.945828855037689,-0.319480031728745,-0.537448465824127,0.598124802112579,0.594471156597137,-0.162453785538673,0.583577752113342,0.795641839504242,0.0312903858721256,0.923704147338867,-0.381826937198639,-0.162453785538673,0.583577752113342,0.795641839504242,-0.537448465824127,0.598124802112579,0.594471156597137,-0.607746124267578,0.0384723506867886,0.793198943138123,-0.47563362121582,0.563799321651459,0.675205945968628,0.162613347172737,0.952377796173096,-0.257940888404846,-0.113191030919552,0.570703506469727,0.813317596912384,-0.593906044960022,0.608061671257019,0.526817560195923,0.44249364733696,0.893550038337708,-0.0759459212422371,0.583948135375977,0.776166498661041,-0.237844869494438,0.146384313702583,-0.51102340221405,-0.847010493278503,0.451270639896393,-0.0865531712770462,-0.888179838657379,0.391104012727737,0.604782521724701,-0.693740487098694,0.162613347172737,0.952377796173096,-0.257940888404846,0.583948135375977,0.776166498661041,-0.237844869494438,0.391104012727737,0.604782521724701,-0.693740487098694,-0.0966954901814461,0.982345998287201,0.160145297646523,
- 0.146384313702583,-0.51102340221405,-0.847010493278503,0.604755997657776,-0.0649113655090332,-0.793761134147644,0.36527806520462,-0.684959292411804,-0.630398869514465,0.451270639896393,-0.0865531712770462,-0.888179838657379,0.0312903858721256,0.923704147338867,-0.381826937198639,-0.162453785538673,0.583577752113342,0.795641839504242,-0.77002340555191,0.553874671459198,0.316681295633316,0.0958866104483604,0.937362551689148,-0.334898889064789,0.268749475479126,0.823240876197815,-0.500048398971558,0.0312903858721256,0.923704147338867,-0.381826937198639,0.0958866104483604,0.937362551689148,-0.334898889064789,0.284775525331497,0.829774618148804,-0.479976058006287,0.284775525331497,0.829774618148804,-0.479976058006287,0.77522486448288,-0.498596012592316,-0.387850999832153,-0.0446040816605091,-0.4714495241642,-0.880764424800873,0.268749475479126,0.823240876197815,-0.500048398971558,0.77522486448288,-0.498596012592316,-0.387850999832153,0.787270963191986,-0.0342480316758156,-0.615655362606049,0.561087012290955,-0.0537921860814095,-0.82600724697113,-0.0446040816605091,-0.4714495241642,-0.880764424800873,-0.162453785538673,0.583577752113342,0.795641839504242,-0.47563362121582,0.563799321651459,0.675205945968628,-0.678512215614319,0.548112869262695,0.489074170589447,-0.77002340555191,0.553874671459198,0.316681295633316,0.44249364733696,0.893550038337708,-0.0759459212422371,-0.593906044960022,0.608061671257019,0.526817560195923,-0.537448465824127,0.598124802112579,0.594471156597137,0.0577953159809113,0.945828855037689,-0.319480031728745,0.0577953159809113,0.945828855037689,-0.319480031728745,0.290531039237976,0.831489384174347,-0.473515778779984,0.31766140460968,0.840592622756958,-0.438743054866791,0.44249364733696,0.893550038337708,-0.0759459212422371,0.290531039237976,0.831489384174347,-0.473515778779984,0.539066195487976,-0.644628643989563,-0.542090117931366,0.818430840969086,-0.487649321556091,-0.303922832012177,0.31766140460968,0.840592622756958,-0.438743054866791,0.539066195487976,-0.644628643989563,-0.542090117931366,0.592321157455444,-0.058242354542017,-0.803594172000885,
- 0.818430840969086,-0.487649321556091,-0.303922832012177,0.539066195487976,-0.644628643989563,-0.542090117931366,0.523525893688202,-0.0349825993180275,-0.851291298866272,0.355563551187515,-0.362026035785675,-0.861691236495972,0.592321157455444,-0.058242354542017,-0.803594172000885,-0.41865548491478,0.565443217754364,0.710634708404541,-0.441327393054962,0.565936863422394,0.696380436420441,-0.593906044960022,0.608061671257019,0.526817560195923,-0.113191030919552,0.570703506469727,0.813317596912384,-0.440158635377884,0.445243239402771,0.779755651950836,-0.409739047288895,0.445570528507233,0.795978009700775,-0.441010743379593,0.445078134536743,0.77936840057373,-0.445523023605347,0.446128159761429,0.776195228099823,-0.449010968208313,0.44749516248703,0.773393332958221,-0.422781735658646,0.445707976818085,0.789050102233887,-0.486058712005615,-0.10187965631485,0.867967545986176,-0.41865548491478,0.565443217754364,0.710634708404541,-0.113191030919552,0.570703506469727,0.813317596912384,-0.288829237222672,0.776809692382813,0.559593200683594,-0.593906044960022,0.608061671257019,0.526817560195923,-0.441327393054962,0.565936863422394,0.696380436420441,-0.607746124267578,0.0384723506867886,0.793198943138123,-0.537448465824127,0.598124802112579,0.594471156597137,-0.659100294113159,0.0897295251488686,0.74668300151825,-0.620204627513886,0.0909722074866295,0.779147148132324,-0.64987051486969,0.0895702317357063,0.754748642444611,-0.678962647914886,0.089070588350296,0.728749752044678,-0.64486163854599,0.0897240117192268,0.759014487266541,-0.644717276096344,0.0886483788490295,0.759263575077057,-0.627223014831543,0.085710272192955,0.774109184741974,-0.654564201831818,0.089164711534977,0.750729978084564,-0.682549476623535,0.0932626873254776,0.724864423274994,-0.65945953130722,0.0906293466687202,0.746257066726685,0.11288944631815,0.546728193759918,-0.829665184020996,0.037495069205761,0.994474947452545,-0.0980502068996429,0.412179291248322,-0.800260841846466,-0.435535252094269,0.515021622180939,0.559013068675995,-0.649813115596771,-0.77002340555191,0.553874671459198,0.316681295633316,
- -0.678512215614319,0.548112869262695,0.489074170589447,-0.654975533485413,0.0751283839344978,0.751906156539917,-0.102403096854687,0.993056654930115,0.0578970275819302,0.0958866104483604,0.937362551689148,-0.334898889064789,-0.77002340555191,0.553874671459198,0.316681295633316,-0.102403096854687,0.993056654930115,0.0578970275819302,0.309865474700928,0.885373413562775,-0.346550583839417,0.284775525331497,0.829774618148804,-0.479976058006287,0.0958866104483604,0.937362551689148,-0.334898889064789,0.309865474700928,0.885373413562775,-0.346550583839417,0.413526743650436,0.782065749168396,-0.466228157281876,0.413526743650436,0.782065749168396,-0.466228157281876,0.643590092658997,0.415541648864746,-0.642741739749908,0.77522486448288,-0.498596012592316,-0.387850999832153,0.284775525331497,0.829774618148804,-0.479976058006287,0.643590092658997,0.415541648864746,-0.642741739749908,0.649715662002563,-0.0908138379454613,-0.754733383655548,0.787270963191986,-0.0342480316758156,-0.615655362606049,0.77522486448288,-0.498596012592316,-0.387850999832153,-0.543679893016815,0.433856666088104,0.718457043170929,-0.179357722401619,-0.499946266412735,0.847280740737915,-0.460282742977142,0.0636562705039978,0.88548731803894,-0.660599112510681,-0.0467874780297279,0.749279499053955,-0.40257716178894,0.7842156291008,0.47216272354126,-0.421872347593308,0.822370707988739,0.381746232509613,-0.179357722401619,-0.499946266412735,0.847280740737915,-0.543679893016815,0.433856666088104,0.718457043170929,-0.325354546308517,0.931430578231812,0.163038700819016,-0.421872347593308,0.822370707988739,0.381746232509613,-0.40257716178894,0.7842156291008,0.47216272354126,-0.298270344734192,0.886843919754028,0.352906137704849,0.11288944631815,0.546728193759918,-0.829665184020996,-0.325354546308517,0.931430578231812,0.163038700819016,-0.298270344734192,0.886843919754028,0.352906137704849,0.037495069205761,0.994474947452545,-0.0980502068996429,0.0247278995811939,0.796950876712799,-0.603537797927856,-0.00763949938118458,0.989462316036224,-0.144589319825172,-0.0481202602386475,0.93117481470108,0.361383348703384,
- 0.391465127468109,0.474118560552597,-0.788648545742035,0.107791051268578,0.815227746963501,0.569021105766296,0.224915251135826,0.789349853992462,0.571261644363403,-0.374988913536072,-0.433604419231415,0.819372057914734,0.458247572183609,-0.410856783390045,0.788166224956512,0.205890685319901,0.90551084280014,0.371024519205093,-0.0481202602386475,0.93117481470108,0.361383348703384,0.224915251135826,0.789349853992462,0.571261644363403,0.107791051268578,0.815227746963501,0.569021105766296,0.458247572183609,-0.410856783390045,0.788166224956512,-0.374988913536072,-0.433604419231415,0.819372057914734,0.148758381605148,0.0323306992650032,0.98834490776062,-0.00650919694453478,0.0453503355383873,0.998950004577637,-0.0481202602386475,0.93117481470108,0.361383348703384,0.205890685319901,0.90551084280014,0.371024519205093,-0.345430880784988,0.475699335336685,-0.808942437171936,0.391465127468109,0.474118560552597,-0.788648545742035,0.224915251135826,0.789349853992462,0.571261644363403,0.00907780416309834,0.508047461509705,0.861281275749207,-0.0172922182828188,-0.173450320959091,0.98469090461731,-0.374988913536072,-0.433604419231415,0.819372057914734,-0.0481202602386475,0.93117481470108,0.361383348703384,-0.00763949938118458,0.989462316036224,-0.144589319825172,0.00907780416309834,0.508047461509705,0.861281275749207,0.224915251135826,0.789349853992462,0.571261644363403,-0.374988913536072,-0.433604419231415,0.819372057914734,-0.0172922182828188,-0.173450320959091,0.98469090461731,0.0239969938993454,-0.760210633277893,0.649233520030975,0.148758381605148,0.0323306992650032,0.98834490776062,-0.345430880784988,0.475699335336685,-0.808942437171936,0.0792787820100784,0.73057347536087,-0.678216218948364,0.135275527834892,0.46051287651062,-0.87728476524353,0.205890685319901,0.90551084280014,0.371024519205093,0.011324904859066,0.997624397277832,0.0679518207907677,0.0792787820100784,0.73057347536087,-0.678216218948364,-0.345430880784988,0.475699335336685,-0.808942437171936,0.011324904859066,0.997624397277832,0.0679518207907677,0.205890685319901,0.90551084280014,0.371024519205093,
- 0.107791051268578,0.815227746963501,0.569021105766296,-0.0551901087164879,0.793968975543976,0.605448186397552,-0.0551901087164879,0.793968975543976,0.605448186397552,0.107791051268578,0.815227746963501,0.569021105766296,0.458247572183609,-0.410856783390045,0.788166224956512,-0.0546549335122108,0.337041229009628,0.939902186393738,-0.00650919694453478,0.0453503355383873,0.998950004577637,-0.13111512362957,-0.651603043079376,0.747142851352692,-0.0546549335122108,0.337041229009628,0.939902186393738,0.458247572183609,-0.410856783390045,0.788166224956512,0.135275527834892,0.46051287651062,-0.87728476524353,0.0792787820100784,0.73057347536087,-0.678216218948364,0.114873684942722,-0.470225512981415,-0.875038385391235,0.135275527834892,0.46051287651062,-0.87728476524353,-0.0951603576540947,0.458169132471085,-0.883756577968597,0.391465127468109,0.474118560552597,-0.788648545742035,-0.345430880784988,0.475699335336685,-0.808942437171936,0.0251027755439281,0.426341861486435,-0.904213786125183,-0.0145423207432032,0.453541457653046,-0.891116619110107,0.000472985208034515,0.480132281780243,-0.87719601392746,-0.0188855919986963,0.476606398820877,-0.878913998603821,-0.0163607653230429,0.473293095827103,-0.88075315952301,-0.00139176670927554,0.465180903673172,-0.885214686393738,0.0256597027182579,0.791090667247772,0.611160576343536,0.302223742008209,0.478338271379471,0.824532270431519,-0.0185791105031967,0.930203557014465,-0.366573512554169,-0.00942840147763491,0.989873349666595,0.141640350222588,0.184578746557236,0.81952291727066,-0.542506217956543,0.547856271266937,-0.404470264911652,-0.732295989990234,-0.27297031879425,-0.432437062263489,-0.859351754188538,0.251369118690491,0.803919434547424,-0.539005756378174,0.248102858662605,0.904376447200775,-0.347200691699982,0.184578746557236,0.81952291727066,-0.542506217956543,0.251369118690491,0.803919434547424,-0.539005756378174,-0.0185791105031967,0.930203557014465,-0.366573512554169,0.547856271266937,-0.404470264911652,-0.732295989990234,0.149150997400284,-0.0429326184093952,-0.987882018089294,
- 0.157458558678627,-0.0500513538718224,-0.986256420612335,-0.27297031879425,-0.432437062263489,-0.859351754188538,-0.0185791105031967,0.930203557014465,-0.366573512554169,0.302223742008209,0.478338271379471,0.824532270431519,-0.436509937047958,0.4810531437397,0.760294020175934,0.248102858662605,0.904376447200775,-0.347200691699982,0.251369118690491,0.803919434547424,-0.539005756378174,-0.27297031879425,-0.432437062263489,-0.859351754188538,-0.0173577442765236,-0.179058015346527,-0.983685374259949,0.0115187941119075,0.509772300720215,-0.860232293605804,-0.0185791105031967,0.930203557014465,-0.366573512554169,0.251369118690491,0.803919434547424,-0.539005756378174,0.0115187941119075,0.509772300720215,-0.860232293605804,-0.00942840147763491,0.989873349666595,0.141640350222588,-0.27297031879425,-0.432437062263489,-0.859351754188538,0.157458558678627,-0.0500513538718224,-0.986256420612335,0.0234558377414942,-0.761491894721985,-0.647750020027161,-0.0173577442765236,-0.179058015346527,-0.983685374259949,-0.0859741568565369,0.723469913005829,0.684981524944305,-0.436509937047958,0.4810531437397,0.760294020175934,-0.134549409151077,0.468932121992111,0.872925639152527,-0.0957850962877274,-0.0643994361162186,0.99331670999527,0.248102858662605,0.904376447200775,-0.347200691699982,-0.436509937047958,0.4810531437397,0.760294020175934,-0.0859741568565369,0.723469913005829,0.684981524944305,0.026949604973197,0.997421503067017,-0.0665132999420166,0.026949604973197,0.997421503067017,-0.0665132999420166,0.0802028551697731,0.792624890804291,-0.604411602020264,0.184578746557236,0.81952291727066,-0.542506217956543,0.248102858662605,0.904376447200775,-0.347200691699982,0.0802028551697731,0.792624890804291,-0.604411602020264,0.156128793954849,0.329487472772598,-0.931161522865295,0.547856271266937,-0.404470264911652,-0.732295989990234,0.184578746557236,0.81952291727066,-0.542506217956543,0.149150997400284,-0.0429326184093952,-0.987882018089294,0.547856271266937,-0.404470264911652,-0.732295989990234,0.156128793954849,0.329487472772598,-0.931161522865295,
- 0.0384734198451042,-0.655174553394318,-0.754497408866882,0.0381154008209705,0.466942101716995,0.883466064929962,-0.134549409151077,0.468932121992111,0.872925639152527,-0.436509937047958,0.4810531437397,0.760294020175934,0.302223742008209,0.478338271379471,0.824532270431519,-0.0137446820735931,0.453569948673248,0.891114711761475,0.0211787335574627,0.426446616649628,0.904264807701111,-0.00241169543005526,0.465185046195984,0.885210275650024,-0.0205606855452061,0.47326135635376,0.880682110786438,-0.0235368981957436,0.476554363965988,0.878829836845398,-0.00042492343345657,0.480107873678207,0.877209424972534,-0.0094425780698657,-0.134315386414528,0.990893661975861,0.0381154008209705,0.466942101716995,0.883466064929962,0.302223742008209,0.478338271379471,0.824532270431519,0.0256597027182579,0.791090667247772,0.611160576343536,0.119370095431805,-0.000187143188668415,-0.992849826812744,0.0814040973782539,0.000758655020035803,-0.996680974960327,0.112384118139744,-7.00876189512201e-005,-0.993664920330048,0.142151862382889,-0.000642385391984135,-0.989844679832459,0.101453550159931,0.00072278268635273,-0.994840085506439,0.0992263332009315,0.000503504415974021,-0.995064795017242,0.0757516473531723,0.000585610454436392,-0.997126519680023,0.0996639430522919,0.000321427389280871,-0.995021164417267,0.125543877482414,-0.000555993930902332,-0.99208801984787,0.121259994804859,-0.000259092310443521,-0.992620766162872,0.287053138017654,0.555193364620209,-0.7806156873703,0.296638458967209,-0.722384452819824,-0.624632954597473,0.313546001911163,0.781765460968018,-0.539010047912598,0.682588875293732,0.565278828144073,-0.463176429271698,-0.0610286593437195,-0.483299940824509,-0.873325169086456,0.287053138017654,0.555193364620209,-0.7806156873703,0.561773240566254,0.546493530273438,-0.62109237909317,0.38853645324707,-0.560992062091827,-0.730976998806,0.537209630012512,-0.56027740240097,-0.63047206401825,0.430405169725418,0.551928460597992,-0.714231371879578,0.515021622180939,0.559013068675995,-0.649813115596771,0.726382911205292,-0.536311149597168,-0.429811805486679,
- -0.0610286593437195,-0.483299940824509,-0.873325169086456,0.296638458967209,-0.722384452819824,-0.624632954597473,0.287053138017654,0.555193364620209,-0.7806156873703,0.643215358257294,-0.561621785163879,-0.520437359809875,0.561773240566254,0.546493530273438,-0.62109237909317,0.538244545459747,-0.0298003107309341,-0.842261791229248,0.153571590781212,-0.536329686641693,-0.829919517040253,0.538244545459747,-0.0298003107309341,-0.842261791229248,0.430405169725418,0.551928460597992,-0.714231371879578,0.726382911205292,-0.536311149597168,-0.429811805486679,0.515021622180939,0.559013068675995,-0.649813115596771,0.412179291248322,-0.800260841846466,-0.435535252094269,-0.0951603576540947,0.458169132471085,-0.883756577968597,-0.00524644320830703,-0.136335790157318,-0.990648865699768,0.0247278995811939,0.796950876712799,-0.603537797927856,0.391465127468109,0.474118560552597,-0.788648545742035,-0.443479239940643,-0.414257973432541,-0.794805943965912,-0.0951603576540947,0.458169132471085,-0.883756577968597,0.135275527834892,0.46051287651062,-0.87728476524353,0.166232049465179,-0.468778878450394,-0.867532908916473,-0.443479239940643,-0.414257973432541,-0.794805943965912,-0.835551559925079,-0.0898619964718819,-0.542013347148895,-0.0951603576540947,0.458169132471085,-0.883756577968597,0.166232049465179,-0.468778878450394,-0.867532908916473,0.135275527834892,0.46051287651062,-0.87728476524353,0.114873684942722,-0.470225512981415,-0.875038385391235,0.947764456272125,0.0462196096777916,0.31560492515564,0.938058435916901,-0.0336441360414028,0.344839781522751,0.923392832279205,-0.0804753825068474,0.375325918197632,0.94333028793335,0.119647242128849,0.309536129236221,0.107884928584099,0.960138976573944,-0.257864266633987,-0.0487226992845535,0.959823906421661,0.276341050863266,0.964189469814301,0.0421953424811363,0.261836290359497,0.947764456272125,0.0462196096777916,0.31560492515564,-0.00532914185896516,0.994605541229248,0.103592686355114,0.110381655395031,0.938411176204681,-0.327414751052856,-0.00443874998018146,0.998658895492554,-0.0515823736786842,
- -0.0233738701790571,0.989773869514465,0.140717834234238,0.110381655395031,0.938411176204681,-0.327414751052856,0.293600797653198,0.710176348686218,-0.639881491661072,0.248952582478523,0.570638716220856,-0.782556056976318,-0.00443874998018146,0.998658895492554,-0.0515823736786842,0.906952202320099,0.169754594564438,0.3855140209198,0.952755689620972,-0.0757490247488022,0.294140636920929,0.950681746006012,-0.0263279229402542,0.30904883146286,0.964189469814301,0.0421953424811363,0.261836290359497,0.260129988193512,-0.00025431250105612,-0.96557354927063,0.241441041231155,0.285880625247955,-0.927350282669067,-0.919287025928497,0.0304374247789383,-0.392409384250641,-0.919283211231232,-0.00723420130088925,-0.393530160188675,0.938058435916901,-0.0336441360414028,0.344839781522751,0.950681746006012,-0.0263279229402542,0.30904883146286,0.15729558467865,-0.95823335647583,-0.238845258951187,-0.0659988969564438,-0.959474921226501,0.273956596851349,-0.0916132405400276,0.988425254821777,0.120923541486263,0.0199091006070375,0.999048888683319,-0.0387941934168339,0.116424337029457,0.938106775283813,-0.326191812753677,-0.0658039972186089,0.994437694549561,0.0822406709194183,0.0199091006070375,0.999048888683319,-0.0387941934168339,0.300960034132004,0.578775942325592,-0.757919132709503,0.18282550573349,0.708937406539917,-0.681162774562836,0.116424337029457,0.938106775283813,-0.326191812753677,-0.955845713615417,-0.00408322643488646,-0.293840646743774,-0.954908013343811,-0.0359332971274853,-0.294719249010086,-0.406457901000977,-0.286730349063873,0.867512345314026,-0.420750468969345,-0.000244595110416412,0.907176375389099,0.260383248329163,-0.0642003268003464,-0.963368535041809,0.248952582478523,0.570638716220856,-0.782556056976318,0.293600797653198,0.710176348686218,-0.639881491661072,0.241683050990105,-0.0375283025205135,-0.969629347324371,-0.929231464862823,0.0277463048696518,-0.368455171585083,-0.945626318454742,-0.0404173098504543,-0.32273405790329,-0.954908013343811,-0.0359332971274853,-0.294719249010086,-0.919287025928497,0.0304374247789383,-0.392409384250641,
- 0.47549444437027,-0.0344328135251999,-0.879044651985168,0.18282550573349,0.708937406539917,-0.681162774562836,0.300960034132004,0.578775942325592,-0.757919132709503,0.420628875494003,-0.0539657659828663,-0.90562641620636,0.964189469814301,0.0421953424811363,0.261836290359497,0.950681746006012,-0.0263279229402542,0.30904883146286,0.938058435916901,-0.0336441360414028,0.344839781522751,0.947764456272125,0.0462196096777916,0.31560492515564,-0.955845713615417,-0.00408322643488646,-0.293840646743774,-0.919283211231232,-0.00723420130088925,-0.393530160188675,-0.919287025928497,0.0304374247789383,-0.392409384250641,-0.954908013343811,-0.0359332971274853,-0.294719249010086,0.18282550573349,0.708937406539917,-0.681162774562836,0.293600797653198,0.710176348686218,-0.639881491661072,0.110381655395031,0.938411176204681,-0.327414751052856,0.116424337029457,0.938106775283813,-0.326191812753677,0.241683050990105,-0.0375283025205135,-0.969629347324371,0.293600797653198,0.710176348686218,-0.639881491661072,0.18282550573349,0.708937406539917,-0.681162774562836,0.47549444437027,-0.0344328135251999,-0.879044651985168,-0.00532914185896516,0.994605541229248,0.103592686355114,-0.0658039972186089,0.994437694549561,0.0822406709194183,0.116424337029457,0.938106775283813,-0.326191812753677,0.110381655395031,0.938411176204681,-0.327414751052856,0.0156922563910484,0.99949699640274,-0.0275622084736824,-0.0416829995810986,0.999110519886017,-0.00639078207314014,-0.0213180780410767,0.99806010723114,-0.0584946721792221,0.0307300630956888,0.998573422431946,-0.0436690337955952,0.0233685709536076,0.999699950218201,0.00734305661171675,-0.00387938367202878,0.998577892780304,-0.053171806037426,-0.0215418990701437,0.99789023399353,-0.0612452998757362,-0.0257360711693764,0.999665021896362,-0.00274230889044702,0.0328477174043655,0.999206840991974,-0.0225131753832102,0.0181351266801357,0.999706923961639,0.0160386171191931,0.947764456272125,0.0462196096777916,0.31560492515564,0.94333028793335,0.119647242128849,0.309536129236221,0.107884928584099,0.960138976573944,-0.257864266633987,
- 0.906952202320099,0.169754594564438,0.3855140209198,0.964189469814301,0.0421953424811363,0.261836290359497,-0.0487226992845535,0.959823906421661,0.276341050863266,0.938058435916901,-0.0336441360414028,0.344839781522751,-0.0659988969564438,-0.959474921226501,0.273956596851349,0.923392832279205,-0.0804753825068474,0.375325918197632,0.952755689620972,-0.0757490247488022,0.294140636920929,0.15729558467865,-0.95823335647583,-0.238845258951187,0.950681746006012,-0.0263279229402542,0.30904883146286,0.241441041231155,0.285880625247955,-0.927350282669067,-0.929231464862823,0.0277463048696518,-0.368455171585083,-0.919287025928497,0.0304374247789383,-0.392409384250641,-0.945626318454742,-0.0404173098504543,-0.32273405790329,-0.406457901000977,-0.286730349063873,0.867512345314026,-0.954908013343811,-0.0359332971274853,-0.294719249010086,-0.0801600590348244,0.988970994949341,0.124542504549026,-0.0640116184949875,0.99087917804718,0.118579588830471,-0.0429809801280499,0.998723208904266,0.0265479050576687,-0.0486271679401398,0.998687088489532,0.0161096081137657,-0.128144398331642,0.990019917488098,0.0586497634649277,0.195212259888649,0.936957478523254,-0.289832592010498,0.180665850639343,0.944906115531921,-0.272969365119934,-0.0429809801280499,0.998723208904266,0.0265479050576687,-0.0640116184949875,0.99087917804718,0.118579588830471,0.406804502010345,0.697897911071777,-0.589447736740112,0.228725612163544,0.875859022140503,-0.424918472766876,0.273049026727676,0.878450989723206,-0.39213290810585,0.180665850639343,0.944906115531921,-0.272969365119934,0.195212259888649,0.936957478523254,-0.289832592010498,0.390132933855057,0.696477234363556,-0.602258861064911,0.342314183712006,0.775119662284851,-0.531046807765961,0.228725612163544,0.875859022140503,-0.424918472766876,0.406804502010345,0.697897911071777,-0.589447736740112,0.536132037639618,0.350789457559586,-0.767795085906982,-0.0175697300583124,0.97249448299408,-0.232262447476387,-0.0237360037863255,0.919399976730347,-0.392607271671295,0.000705589598510414,0.982183575630188,-0.18792299926281,
- 0.33637335896492,-0.0298165567219257,-0.941256642341614,0.496964365243912,-0.0805066451430321,-0.864028453826904,0.0320116095244884,0.172936946153641,-0.984412550926209,0.0419962890446186,0.187032997608185,-0.981455564498901,0.496964365243912,-0.0805066451430321,-0.864028453826904,0.5342937707901,-0.12864550948143,-0.835452318191528,0.612106561660767,-0.113665387034416,-0.782563626766205,0.602825105190277,-0.123492911458015,-0.788258492946625,0.503197133541107,-0.16700254380703,-0.847881436347961,0.5342937707901,-0.12864550948143,-0.835452318191528,0.33637335896492,-0.0298165567219257,-0.941256642341614,0.33637335896492,-0.0298165567219257,-0.941256642341614,0.5342937707901,-0.12864550948143,-0.835452318191528,0.496964365243912,-0.0805066451430321,-0.864028453826904,0.1504225730896,0.964755058288574,-0.215918645262718,-0.154788121581078,0.911149978637695,0.381898492574692,0.0054631195962429,0.999824404716492,0.0179232265800238,-0.00942334160208702,0.999937534332275,-0.00601501855999231,-0.154788121581078,0.911149978637695,0.381898492574692,0.100623734295368,0.907269597053528,0.408334076404572,-0.00658487854525447,0.99981701374054,0.0179617032408714,0.0054631195962429,0.999824404716492,0.0179232265800238,0.100623734295368,0.907269597053528,0.408334076404572,-0.148816034197807,0.964664340019226,-0.217431530356407,0.0125924237072468,0.999902188777924,-0.00610108347609639,-0.00658487854525447,0.99981701374054,0.0179617032408714,-0.148816034197807,0.964664340019226,-0.217431530356407,0.00184740545228124,0.786278307437897,-0.617869734764099,0.00060201867017895,0.999904274940491,-0.0138238649815321,0.0125924237072468,0.999902188777924,-0.00610108347609639,0.00184740545228124,0.786278307437897,-0.617869734764099,0.1504225730896,0.964755058288574,-0.215918645262718,-0.00942334160208702,0.999937534332275,-0.00601501855999231,0.00060201867017895,0.999904274940491,-0.0138238649815321
- }
- BinormalsW: *10086 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,
- 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,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,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,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,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,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,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,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,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,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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *30258 {
- a: 0.6509108543396,-2.33221408052486e-006,-0.759154200553894,0.651456534862518,-2.02859746423201e-006,-0.758686006069183,0.753064930438995,-2.05134142561292e-006,-0.657946228981018,0.724509060382843,-2.06843446903804e-006,-0.689265251159668,0.578949213027954,2.96870257443516e-006,-0.815363645553589,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.651456534862518,-2.02859746423201e-006,-0.758686006069183,0.6509108543396,-2.33221408052486e-006,-0.759154200553894,0.107522211968899,-2.45844012169982e-006,-0.994202613830566,0.109125234186649,-2.69744600700506e-006,-0.994028031826019,0.243217185139656,-2.49509912464418e-006,-0.969971835613251,0.207417622208595,-3.05433832181734e-006,-0.978252589702606,0.0420542545616627,-1.9501812857925e-006,-0.999115347862244,0.0415232516825199,-2.19628850572917e-006,-0.999137580394745,0.109125234186649,-2.69744600700506e-006,-0.994028031826019,0.107522211968899,-2.45844012169982e-006,-0.994202613830566,-0.0457791239023209,-2.04389181135411e-008,0.998951613903046,-0.0452568829059601,-5.12700033539204e-008,0.998975455760956,0.00208741286769509,-0.00338267744518816,0.99999213218689,0,9.23915877137915e-008,1,-0.110614366829395,1.55515181177179e-007,0.99386340379715,-0.111984856426716,-3.66685839026104e-007,0.993709921836853,-0.0452568829059601,-5.12700033539204e-008,0.998975455760956,-0.0457791239023209,-2.04389181135411e-008,0.998951613903046,-0.578867197036743,0.000110284694528673,0.81542181968689,-0.577682375907898,-3.27771485899575e-005,0.816261649131775,-0.456887483596802,-8.09725024737418e-005,0.889524459838867,-0.493546664714813,7.56578901928151e-006,0.869719386100769,-0.650957226753235,-1.81304624646828e-008,0.759114384651184,-0.651438474655151,0,0.75870144367218,-0.577682375907898,-3.27771485899575e-005,0.816261649131775,-0.578867197036743,0.000110284694528673,0.81542181968689,0.821582794189453,-2.51126061812101e-006,-0.570089221000671,0.821575462818146,-2.57781402979163e-006,-0.570099771022797,0.753064930438995,-2.05134142561292e-006,-0.657946228981018,
- 0.761096119880676,-1.80615916178795e-006,-0.64863908290863,0.651456534862518,-2.02859746423201e-006,-0.758686006069183,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.577181041240692,-2.44672310145688e-006,-0.816616177558899,0.651568055152893,-1.85506473826536e-006,-0.758590221405029,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.457064718008041,-4.91772743771435e-006,-0.889433562755585,0.444650411605835,-2.80175527223037e-006,-0.895704209804535,0.577181041240692,-2.44672310145688e-006,-0.816616177558899,0.354086190462112,-2.44455304709845e-006,-0.935212910175323,0.354012072086334,-2.32536967814667e-006,-0.935240864753723,0.243217185139656,-2.49509912464418e-006,-0.969971835613251,0.256068408489227,-1.92402649190626e-006,-0.966658711433411,0.109125234186649,-2.69744600700506e-006,-0.994028031826019,0.0415232516825199,-2.19628850572917e-006,-0.999137580394745,0.0414580591022968,-2.58825593846268e-006,-0.99914026260376,0.109310194849968,-2.69086058324319e-006,-0.994007706642151,-0.0049360110424459,0.0135891567915678,-0.999895572662354,-0.00265056546777487,-2.05631090466341e-006,-0.999996542930603,-0.00205424427986145,0.00679332902655005,-0.99997490644455,-0.00493464339524508,0.027177520096302,-0.999618470668793,0.996863543987274,-0.0688461661338806,-0.0390282981097698,0.999996483325958,-0.00264768511988223,5.27769552718382e-005,0.999053537845612,0.0181338768452406,0.0395376421511173,0.998802840709686,0.000545102113392204,0.0489134229719639,0.99877792596817,-0.0060317125171423,-0.0490539819002151,0.0635925531387329,-5.03421979374252e-005,-0.997975945472717,0.0635244250297546,5.38072663403e-006,-0.997980237007141,0.064163014292717,-1.24364612474892e-006,-0.99793952703476,0.064163014292717,-1.24356097330747e-006,-0.99793952703476,0.0908188000321388,-0.00533753167837858,-0.995853126049042,0.0922101140022278,-0.00636645033955574,-0.995719254016876,0.0635244250297546,5.38072663403e-006,-0.997980237007141,0.0635925531387329,-5.03421979374252e-005,-0.997975945472717,-0.36859717965126,-0.000121625911560841,0.929589211940765,
- -0.335849672555923,0.000140680887852795,0.94191563129425,-0.302305519580841,0.06331717222929,0.951105833053589,-0.302307575941086,0.0633171796798706,0.951105296611786,0.575456440448761,0.00401027174666524,-0.817822575569153,0.574902951717377,0.00427906401455402,-0.818210363388062,0.555066764354706,-7.18319861334749e-005,-0.831805884838104,0.556774199008942,-0.00161981966812164,-0.830662429332733,0.664828300476074,-0.0303758475929499,-0.746378302574158,0.636796534061432,-0.00127188302576542,-0.771030843257904,0.574902951717377,0.00427906401455402,-0.818210363388062,0.575456440448761,0.00401027174666524,-0.817822575569153,-0.822013914585114,1.24254393085721e-005,0.569467425346375,-0.789849400520325,-0.0250292643904686,0.612789928913116,-0.789834678173065,-0.0250292606651783,0.612808883190155,-0.822001039981842,-1.10526407297584e-005,0.569486021995544,0.444650411605835,-2.80175527223037e-006,-0.895704209804535,0.457064718008041,-4.91772743771435e-006,-0.889433562755585,0.354012072086334,-2.32536967814667e-006,-0.935240864753723,0.354086190462112,-2.44455304709845e-006,-0.935212910175323,-0.399979799985886,-0.0588156208395958,0.914634823799133,-0.400000810623169,-0.0588156208395958,0.914625644683838,-0.335849672555923,0.000140680887852795,0.94191563129425,-0.36859717965126,-0.000121625911560841,0.929589211940765,-0.967031955718994,-1.02565172710456e-005,-0.254655450582504,-0.967031955718994,-1.05414173958707e-005,-0.254655450582504,-0.967031896114349,-1.0826332072611e-005,-0.25465539097786,-0.967031955718994,-1.08263475340209e-005,-0.254655450582504,-0.967031896114349,-1.06363941085874e-005,-0.254655420780182,-0.864398658275604,-0.502592504024506,0.0146883027628064,-0.864398658275604,-0.502592504024506,0.0146882282570004,-0.864398658275604,-0.502592504024506,0.0146881528198719,-0.864398658275604,-0.50259256362915,0.0146882282570004,-0.655209302902222,3.98857991967816e-006,-0.755447387695313,-0.655209302902222,3.70368024960044e-006,-0.755447387695313,-0.655209362506866,3.41878330800682e-006,-0.755447387695313,-0.655209422111511,3.4187862638646e-006,-0.755447447299957,
- -0.655209422111511,3.60871536031482e-006,-0.755447328090668,-0.724440097808838,-0,0.689337849617004,-0.752995431423187,6.97071982358466e-008,0.658025860786438,-0.651438474655151,0,0.75870144367218,-0.650957226753235,-1.81304624646828e-008,0.759114384651184,0.761096119880676,-1.80615916178795e-006,-0.64863908290863,0.753064930438995,-2.05134142561292e-006,-0.657946228981018,0.651456534862518,-2.02859746423201e-006,-0.758686006069183,0.651568055152893,-1.85506473826536e-006,-0.758590221405029,0.724502265453339,-2.0300652977312e-005,-0.689272522926331,0.724486708641052,-3.42745715897763e-006,-0.689288735389709,0.636796534061432,-0.00127188302576542,-0.771030843257904,0.664828300476074,-0.0303758475929499,-0.746378302574158,-0.207422360777855,-3.46618321600545e-007,0.978251457214355,-0.243395552039146,-1.41971213452052e-007,0.969927132129669,-0.111984856426716,-3.66685839026104e-007,0.993709921836853,-0.110614366829395,1.55515181177179e-007,0.99386340379715,0.256068408489227,-1.92402649190626e-006,-0.966658711433411,0.243217185139656,-2.49509912464418e-006,-0.969971835613251,0.109125234186649,-2.69744600700506e-006,-0.994028031826019,0.109310194849968,-2.69086058324319e-006,-0.994007706642151,0.12405639141798,0.00185818038880825,-0.992273449897766,0.126400545239449,7.6564829214476e-005,-0.9919793009758,0.0922101140022278,-0.00636645033955574,-0.995719254016876,0.0908188000321388,-0.00533753167837858,-0.995853126049042,0.890818476676941,-0.0305216088891029,0.453333288431168,0.89081871509552,-0.0305127091705799,0.453333169221878,0.890817284584045,-0.0305522121489048,0.453333586454391,0.890814781188965,-0.0306134205311537,0.453334152698517,0.890816450119019,-0.0305719617754221,0.453333675861359,0.493551254272461,-2.64095729107794e-006,-0.869716703891754,0.457064718008041,-4.91772743771435e-006,-0.889433562755585,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.578949213027954,2.96870257443516e-006,-0.815363645553589,1,-4.75144497613655e-006,-0,1,-5.69795611227164e-006,-0,1,-6.64431490804418e-006,-0,1,-8.53700839797966e-006,-0,
- 1,-5.69779513170943e-006,-0,1,-2.85839837488311e-006,-0,0,-1.78485890955926e-006,-1,-0.00205424427986145,0.00679332902655005,-0.99997490644455,0.0415232516825199,-2.19628850572917e-006,-0.999137580394745,0.0420542545616627,-1.9501812857925e-006,-0.999115347862244,-0.00205424427986145,0.00679332902655005,-0.99997490644455,-0.00265056546777487,-2.05631090466341e-006,-0.999996542930603,0.0414580591022968,-2.58825593846268e-006,-0.99914026260376,0.0415232516825199,-2.19628850572917e-006,-0.999137580394745,0.967112362384796,8.32047078347387e-007,-0.254349887371063,0.968207240104675,-4.65588818769902e-005,-0.250149667263031,0.993331074714661,-5.56611803403939e-006,-0.115297257900238,0.987380385398865,-1.86293891601963e-006,-0.158366724848747,0.938457369804382,8.14115846878849e-005,-0.345395028591156,0.93842488527298,2.77702820312697e-005,-0.345483511686325,0.968207240104675,-4.65588818769902e-005,-0.250149667263031,0.967112362384796,8.32047078347387e-007,-0.254349887371063,-0.938485026359558,-0.000101657715276815,0.345319926738739,-0.938390851020813,-5.13745690113865e-005,0.345575779676437,-0.881437063217163,1.69989448295382e-006,0.472301572561264,-0.900482058525085,-2.64937739302695e-007,0.434893190860748,-0.966938436031342,-1.54945905705972e-006,0.255010068416595,-0.968263804912567,3.63249382644426e-005,0.249930262565613,-0.938390851020813,-5.13745690113865e-005,0.345575779676437,-0.938485026359558,-0.000101657715276815,0.345319926738739,0.998635292053223,-1.30485068439157e-005,-0.0522259324789047,0.998635292053223,-2.54268957178283e-006,-0.0522259287536144,0.998635292053223,-8.9820996436174e-006,-0.0522259399294853,0.993331074714661,-5.56611803403939e-006,-0.115297257900238,0.994938492774963,-5.49991000298178e-006,-0.100485645234585,0.968207240104675,-4.65588818769902e-005,-0.250149667263031,0.93842488527298,2.77702820312697e-005,-0.345483511686325,0.939087629318237,-2.30656860367162e-006,-0.343677818775177,0.967732548713684,-2.26647989620687e-006,-0.251979678869247,0.821582794189453,-2.51126061812101e-006,-0.570089221000671,
- 0.875285387039185,-2.46159174821514e-006,-0.48360687494278,0.881404399871826,-3.87683940061834e-006,-0.47236242890358,0.821575462818146,-2.57781402979163e-006,-0.570099771022797,0.93636953830719,0.013985762372613,-0.350737184286118,0.943186342716217,-0.000998188625089824,-0.33226278424263,0.92077362537384,-5.25522336829454e-005,-0.390097498893738,0.921329915523529,-0.00112854409962893,-0.388780325651169,0.971307039260864,-0.00779967801645398,-0.237701267004013,0.971398890018463,-0.00718804076313972,-0.23734475672245,0.943186342716217,-0.000998188625089824,-0.33226278424263,0.93636953830719,0.013985762372613,-0.350737184286118,0.0124935479834676,0.516508519649506,-0.856191039085388,-0.0334929227828979,0.518795132637024,-0.854242205619812,-0.0794082656502724,0.519980072975159,-0.850479423999786,-0.0334929153323174,0.518795192241669,-0.854242146015167,-0.105675533413887,4.85108830616809e-006,-0.994400680065155,-0.105675540864468,2.54185943049379e-006,-0.994400680065155,-0.105675525963306,4.95259712351981e-007,-0.994400680065155,-0.105675540864468,1.68457700056024e-006,-0.994400680065155,-0.105675525963306,2.27924124374113e-006,-0.994400680065155,-0.105675533413887,3.13651980832219e-006,-0.994400680065155,-0.851220309734344,0.0256960205733776,0.524179100990295,-0.851231575012207,0.0256960205733776,0.524160742759705,-0.822013914585114,1.24254393085721e-005,0.569467425346375,-0.822001039981842,-1.10526407297584e-005,0.569486021995544,-0.987378358840942,-1.17939907795517e-006,0.158379316329956,-0.993279814720154,0.00324509246274829,0.115691915154457,-0.968263804912567,3.63249382644426e-005,0.249930262565613,-0.966938436031342,-1.54945905705972e-006,0.255010068416595,0.994938492774963,-5.49991000298178e-006,-0.100485645234585,0.993331074714661,-5.56611803403939e-006,-0.115297257900238,0.968207240104675,-4.65588818769902e-005,-0.250149667263031,0.967732548713684,-2.26647989620687e-006,-0.251979678869247,0.986762285232544,-6.09575226917514e-006,-0.16217328608036,0.986761450767517,-2.07427819987061e-006,-0.162178575992584,0.971398890018463,-0.00718804076313972,-0.23734475672245,
- 0.971307039260864,-0.00779967801645398,-0.237701267004013,0.478270441293716,1.13965120362991e-006,0.878212630748749,0.478270441293716,1.13965415948769e-006,0.878212630748749,0.478270471096039,1.32959189613757e-006,0.878212630748749,0.478270441293716,1.7094732811529e-006,0.878212630748749,0.478270441293716,1.42456076446251e-006,0.878212630748749,0.900496602058411,-2.22029370888777e-006,-0.434863328933716,0.881404399871826,-3.87683940061834e-006,-0.47236242890358,0.93842488527298,2.77702820312697e-005,-0.345483511686325,0.938457369804382,8.14115846878849e-005,-0.345395028591156,0.881404399871826,-3.87683940061834e-006,-0.47236242890358,0.875285387039185,-2.46159174821514e-006,-0.48360687494278,0.939087629318237,-2.30656860367162e-006,-0.343677818775177,0.93842488527298,2.77702820312697e-005,-0.345483511686325,-0.667285919189453,-0.00152562535367906,0.744800090789795,-0.724450469017029,-2.78521156360512e-007,0.689326882362366,-0.724443852901459,6.93241008775658e-006,0.68933379650116,-0.685937404632568,-0.0193331353366375,0.727403700351715,-0.555613160133362,0.0232296157628298,0.831116378307343,-0.667285919189453,-0.00152562535367906,0.744800090789795,-0.685937404632568,-0.0193331353366375,0.727403700351715,-0.554805815219879,0.0210253819823265,0.831714153289795,-0.437841475009918,0.000161468648002483,0.899052202701569,-0.555613160133362,0.0232296157628298,0.831116378307343,-0.554805815219879,0.0210253819823265,0.831714153289795,-0.439241260290146,-0.00101164856459945,0.89836859703064,-0.136598989367485,-0.00218722014687955,0.990624010562897,-0.280069708824158,-6.11065843258984e-005,0.959979653358459,-0.278182715177536,0.00141966564115137,0.960527122020721,-0.183972239494324,-0.0348823852837086,0.982312321662903,-0.00910449866205454,0.0124014727771282,0.999881565570831,-0.136598989367485,-0.00218722014687955,0.990624010562897,-0.183972239494324,-0.0348823852837086,0.982312321662903,-0.00827078334987164,0.0108931139111519,0.999906480312347,0.0641744285821915,1.09316499674605e-006,0.997938692569733,-0.00910449866205454,0.0124014727771282,0.999881565570831,
- -0.00827078334987164,0.0108931139111519,0.999906480312347,0.0641733929514885,3.08419373595825e-007,0.997938871383667,-0.970408380031586,-0.00810309685766697,0.241333290934563,-0.986760258674622,8.96518486115383e-007,0.162186279892921,-0.986760199069977,7.47374656384636e-007,0.162186071276665,-0.970518350601196,-0.00760909169912338,0.240907073020935,-0.930917918682098,-0.0014068610034883,0.36522588133812,-0.970408380031586,-0.00810309685766697,0.241333290934563,-0.970518350601196,-0.00760909169912338,0.240907073020935,-0.915678560733795,0.0257565136998892,0.401085257530212,-0.881436169147491,3.64726984116714e-005,0.472303181886673,-0.930917918682098,-0.0014068610034883,0.36522588133812,-0.915678560733795,0.0257565136998892,0.401085257530212,-0.881992280483246,-0.000850873359013349,0.471263080835342,-0.192277610301971,0.975788354873657,-0.104242242872715,-0.402460336685181,0.0281792096793652,0.915003538131714,-0.199361935257912,0.00560770276933908,0.979909837245941,0.632572531700134,0.547631025314331,0.547679007053375,-0.551255166530609,0.177115768194199,0.815320670604706,-0.192277610301971,0.975788354873657,-0.104242242872715,-0.780039846897125,0.168259724974632,-0.602682650089264,-0.564798474311829,-0.0584786161780357,0.823154330253601,-0.795093297958374,0.00516027817502618,-0.60646516084671,-0.777122437953949,-0.00140793877653778,-0.629347920417786,-0.777375757694244,-0.0106826983392239,-0.628945767879486,-0.797071635723114,-0.000948315602727234,-0.603884160518646,-0.192277610301971,0.975788354873657,-0.104242242872715,-0.551255166530609,0.177115768194199,0.815320670604706,-0.402460336685181,0.0281792096793652,0.915003538131714,-0.199361935257912,0.00560770276933908,0.979909837245941,-0.494591295719147,0.388865560293198,0.777279257774353,0.632572531700134,0.547631025314331,0.547679007053375,0.506703078746796,-0.729009985923767,0.460213631391525,-0.515991926193237,-0.0102814147248864,0.856531739234924,-0.374939918518066,-0.0192275457084179,0.926849663257599,-0.494591295719147,0.388865560293198,0.777279257774353,-0.515991926193237,-0.0102814147248864,0.856531739234924,
- 0.506703078746796,-0.729009985923767,0.460213631391525,0.632572531700134,0.547631025314331,0.547679007053375,-0.43269482254982,-0.0276842396706343,0.901115298271179,0.259715259075165,-0.929718613624573,0.261096119880676,0.506703078746796,-0.729009985923767,0.460213631391525,-0.374939918518066,-0.0192275457084179,0.926849663257599,-0.43269482254982,-0.0276842396706343,0.901115298271179,-0.538847386837006,-0.272871613502502,0.796984732151031,0.259715259075165,-0.929718613624573,0.261096119880676,-0.0530525855720043,0.024366470053792,0.998294413089752,-0.610239028930664,0.790870428085327,0.0461770296096802,0.193561419844627,0.980017244815826,0.0458290241658688,0.23429973423481,0.0113066984340549,0.972098648548126,0.00027751550078392,-0.0479107163846493,0.998851478099823,0.109968341886997,-0.000308932649204507,0.99393504858017,0.0345196574926376,-0.0932781100273132,0.995041489601135,-0.610239028930664,0.790870428085327,0.0461770296096802,-0.0180867165327072,0.156053557991982,0.987582981586456,-0.0171138849109411,-0.0793876349925995,0.996696889400482,-0.79620635509491,-0.603141367435455,0.0477079302072525,0.23429973423481,0.0113066984340549,0.972098648548126,0.0275223720818758,0.298322558403015,0.954068183898926,-0.0103681972250342,-0.254078656435013,0.967128038406372,-0.514081180095673,0.00966120604425669,0.85768711566925,0.142563432455063,-0.378474473953247,0.914566934108734,0.00027751550078392,-0.0479107163846493,0.998851478099823,0.0345196574926376,-0.0932781100273132,0.995041489601135,0.109968341886997,-0.000308932649204507,0.99393504858017,0.322965085506439,-0.0885051190853119,0.942263424396515,0.0345196574926376,-0.0932781100273132,0.995041489601135,0.999843895435333,-0.014567481353879,0.0100002065300941,0.999439418315887,-0.0134307034313679,-0.0306683070957661,0.999449670314789,0.00159477617125958,-0.0331333614885807,0.999885678291321,-0.0145108886063099,-0.00423635495826602,0.999691843986511,-0.022446421906352,0.0106094097718596,-0.0530525855720043,0.024366470053792,0.998294413089752,-0.0180867165327072,0.156053557991982,0.987582981586456,
- -0.610239028930664,0.790870428085327,0.0461770296096802,0.193561419844627,0.980017244815826,0.0458290241658688,0.0275223720818758,0.298322558403015,0.954068183898926,0.23429973423481,0.0113066984340549,0.972098648548126,-0.79620635509491,-0.603141367435455,0.0477079302072525,-0.0261569321155548,-0.0205715745687485,0.999446153640747,0.321150362491608,-0.00517060793936253,0.947014033794403,0.0448425449430943,-0.998232364654541,0.0390032082796097,0.0910621583461761,0.0131227299571037,0.995758771896362,0.321150362491608,-0.00517060793936253,0.947014033794403,-0.0261569321155548,-0.0205715745687485,0.999446153640747,0.0751016885042191,0.0135778207331896,0.997083425521851,-0.390610843896866,0.00507187843322754,0.920541942119598,-0.0261569321155548,-0.0205715745687485,0.999446153640747,-0.0171138849109411,-0.0793876349925995,0.996696889400482,-0.00296549941413105,0.0818884149193764,0.996637046337128,0.0751016885042191,0.0135778207331896,0.997083425521851,0.838562607765198,-0.54449200630188,0.0184748079627752,0.0341515950858593,-0.193149268627167,0.980574786663055,0.0505571737885475,-0.0413476713001728,0.997864842414856,0.989842534065247,-0.142106458544731,0.00419784430414438,-0.543054580688477,0.0489554479718208,0.838268995285034,-0.348017305135727,0.236126691102982,0.907264113426209,-0.325226098299026,-0.0164407081902027,0.945493280887604,-0.520687997341156,-0.363546192646027,0.772475302219391,-0.527985870838165,0.100510112941265,0.843284487724304,-0.53620445728302,0.0533173866569996,0.842402458190918,-0.540413975715637,0.117365844547749,0.833173394203186,0.00371577683836222,-0.282268524169922,0.959328234195709,0.321150362491608,-0.00517060793936253,0.947014033794403,0.0910621583461761,0.0131227299571037,0.995758771896362,-0.0171138849109411,-0.0793876349925995,0.996696889400482,-0.0261569321155548,-0.0205715745687485,0.999446153640747,-0.79620635509491,-0.603141367435455,0.0477079302072525,0.838562607765198,-0.54449200630188,0.0184748079627752,0.00371577683836222,-0.282268524169922,0.959328234195709,0.0341515950858593,-0.193149268627167,0.980574786663055,
- 0.838562607765198,-0.54449200630188,0.0184748079627752,0.0448425449430943,-0.998232364654541,0.0390032082796097,0.321150362491608,-0.00517060793936253,0.947014033794403,0.00371577683836222,-0.282268524169922,0.959328234195709,-0.10657837241888,0.273471891880035,0.955957233905792,-0.101657845079899,0.446078807115555,0.889201521873474,-0.101625867187977,0.0382277332246304,0.994087934494019,-0.179169207811356,0.319957107305527,0.930336475372314,-0.23649737238884,0.384173661470413,0.892457008361816,-0.172030299901962,0.0658385679125786,0.98288905620575,-0.219562143087387,0.300465255975723,0.928177356719971,-0.0984002724289894,0.0326037928462029,0.994612634181976,-0.415519624948502,-0.417059063911438,0.808334827423096,-0.272143810987473,0.213237181305885,0.938332319259644,-0.0973744094371796,0.0745505318045616,0.992451727390289,-0.20383308827877,-0.150459870696068,0.967374742031097,-0.101657845079899,0.446078807115555,0.889201521873474,-0.23649737238884,0.384173661470413,0.892457008361816,-0.0984002724289894,0.0326037928462029,0.994612634181976,-0.101625867187977,0.0382277332246304,0.994087934494019,-0.318163126707077,0.000942465150728822,0.948035538196564,-0.10434714704752,0.0901875793933868,0.990443229675293,-0.272143810987473,0.213237181305885,0.938332319259644,-0.415519624948502,-0.417059063911438,0.808334827423096,0.386194735765457,-0.0383422262966633,0.921620070934296,-0.016946429386735,-0.35042878985405,0.936436057090759,0.286314368247986,-0.422824203968048,0.859792828559875,-0.016946429386735,-0.35042878985405,0.936436057090759,0.658061921596527,0.0167528837919235,0.752777397632599,0.286314368247986,-0.422824203968048,0.859792828559875,0.419091701507568,-0.147577404975891,0.8958700299263,0.509640038013458,0.128403380513191,0.850752294063568,0.0445799790322781,0.00280977808870375,0.999001860618591,0.63872241973877,-0.0251758843660355,0.769025266170502,-0.118879057466984,0.194269970059395,0.973718106746674,-0.13815039396286,-0.45577684044838,0.879307568073273,0.0345196574926376,-0.0932781100273132,0.995041489601135,
- 0.0345196574926376,-0.0932781100273132,0.995041489601135,0.150143325328827,-0.229005038738251,0.961776316165924,-0.128029003739357,-0.0151386801153421,0.991654932498932,0.386194735765457,-0.0383422262966633,0.921620070934296,-0.246259123086929,-0.45106366276741,0.857845008373261,-0.295750588178635,-0.189100950956345,0.936361253261566,-0.271794348955154,-0.284148901700974,0.919449388980865,-0.68749612569809,-0.0832307264208794,0.721402704715729,-0.606069564819336,0.326774954795837,-0.725188136100769,-0.518651604652405,0.122563645243645,-0.846155226230621,-0.0219030790030956,-0.105921231210232,0.994133293628693,-0.211653232574463,0.101719692349434,0.972037076950073,-0.177993267774582,0.134716361761093,0.974766612052917,0.147928148508072,0.00300312414765358,0.988993525505066,-0.217175975441933,-0.107221350073814,0.970225811004639,-0.217175975441933,-0.107221350073814,0.970225811004639,-0.206524685025215,0.122478365898132,0.970745444297791,-0.211653232574463,0.101719692349434,0.972037076950073,-0.0102717177942395,0.9529629945755,0.30291274189949,-0.879211068153381,0.122830331325531,-0.460326671600342,-0.997522592544556,-0.0212508738040924,-0.0670593827962875,-0.339992463588715,0.44383442401886,0.829105615615845,0.950496971607208,0.301642566919327,-0.0746140256524086,-0.2029829621315,0.94167023897171,0.268431097269058,-0.344361454248428,0.47870722413063,0.807622909545898,0.728417694568634,-0.0123727340251207,0.685021698474884,-0.492329895496368,-0.483739286661148,0.723607361316681,-0.106215722858906,-0.74443507194519,0.659192383289337,-0.339992463588715,0.44383442401886,0.829105615615845,-0.406356662511826,-0.133460476994514,0.903915166854858,-0.879211068153381,0.122830331325531,-0.460326671600342,0.950496971607208,0.301642566919327,-0.0746140256524086,-0.124996915459633,0.00446033524349332,0.992147147655487,-0.997522592544556,-0.0212508738040924,-0.0670593827962875,-0.185984566807747,-0.607055366039276,0.772588849067688,-0.360280901193619,-0.566948890686035,0.74078780412674,0.0358179844915867,-0.0174623001366854,0.999205708503723,
- 0.268397659063339,-0.366919100284576,0.890692472457886,-0.212883129715919,-0.553733587265015,0.805021703243256,-0.492329895496368,-0.483739286661148,0.723607361316681,-0.406356662511826,-0.133460476994514,0.903915166854858,-0.842522621154785,-0.00796477403491735,0.538602113723755,0.268397659063339,-0.366919100284576,0.890692472457886,-0.335208088159561,-0.29101437330246,0.896072626113892,-0.145639196038246,-0.75697124004364,0.637011528015137,-0.185984566807747,-0.607055366039276,0.772588849067688,-0.473030775785446,0.00196750368922949,0.88104373216629,-0.331678450107574,0.103695377707481,0.937676250934601,-0.608576893806458,0.0702011734247208,0.790383458137512,-0.437131464481354,0.539042532444,0.719964742660522,-0.527618885040283,0.0716267451643944,0.846456170082092,-0.547150671482086,0.125967308878899,0.82750129699707,-0.539319038391113,0.146032497286797,0.829342842102051,-0.43395984172821,0.028805173933506,0.90047162771225,-0.567265689373016,0.0709001794457436,0.820477068424225,-0.450951159000397,0.178327143192291,0.874552726745605,-0.473030775785446,0.00196750368922949,0.88104373216629,-0.437131464481354,0.539042532444,0.719964742660522,-0.43395984172821,0.028805173933506,0.90047162771225,-0.497086763381958,0.0727051869034767,0.864649415016174,-0.527618885040283,0.0716267451643944,0.846456170082092,-0.703918814659119,-0.00900076981633902,0.710223317146301,-0.325226098299026,-0.0164407081902027,0.945493280887604,-0.348017305135727,0.236126691102982,0.907264113426209,-0.406388163566589,0.245909288525581,0.879987120628357,-0.703918814659119,-0.00900076981633902,0.710223317146301,-0.567265689373016,0.0709001794457436,0.820477068424225,-0.494591295719147,0.388865560293198,0.777279257774353,-0.199361935257912,0.00560770276933908,0.979909837245941,-0.183698162436485,0.00133142876438797,0.98298180103302,-0.380290955305099,-0.0436384603381157,0.923836886882782,0.268397659063339,-0.366919100284576,0.890692472457886,-0.380290955305099,-0.0436384603381157,0.923836886882782,-0.335208088159561,-0.29101437330246,0.896072626113892,
- 0.268397659063339,-0.366919100284576,0.890692472457886,-0.649161875247955,-0.0267887711524963,0.76017826795578,-0.393070876598358,-0.094478540122509,0.914641499519348,-0.547150671482086,0.125967308878899,0.82750129699707,-0.527618885040283,0.0716267451643944,0.846456170082092,-0.497086763381958,0.0727051869034767,0.864649415016174,-0.649161875247955,-0.0267887711524963,0.76017826795578,-0.527618885040283,0.0716267451643944,0.846456170082092,-0.372433304786682,-0.366752654314041,0.852517426013947,-0.276508122682571,-0.0680065304040909,0.958602249622345,-0.331678450107574,0.103695377707481,0.937676250934601,-0.473030775785446,0.00196750368922949,0.88104373216629,-0.366877615451813,0.157936215400696,0.916764438152313,-0.372433304786682,-0.366752654314041,0.852517426013947,-0.473030775785446,0.00196750368922949,0.88104373216629,-0.450951159000397,0.178327143192291,0.874552726745605,-0.842522621154785,-0.00796477403491735,0.538602113723755,-0.406356662511826,-0.133460476994514,0.903915166854858,-0.366877615451813,0.157936215400696,0.916764438152313,-0.240864753723145,0.0225249547511339,0.970297276973724,0.268397659063339,-0.366919100284576,0.890692472457886,0.0358179844915867,-0.0174623001366854,0.999205708503723,-0.183698162436485,0.00133142876438797,0.98298180103302,-0.185984566807747,-0.607055366039276,0.772588849067688,-0.145639196038246,-0.75697124004364,0.637011528015137,-0.228781133890152,-0.457204848527908,0.859431743621826,-0.946981847286224,0.0868909657001495,0.309314012527466,-0.65105152130127,-0.0451531186699867,0.757689356803894,-0.0891513228416443,-0.809540748596191,0.580254912376404,-0.163668438792229,-0.91634601354599,0.365407437086105,-0.630673289299011,-0.584041595458984,0.511025130748749,0.0430539734661579,-0.0570554435253143,0.997442305088043,-0.65105152130127,-0.0451531186699867,0.757689356803894,-0.630673289299011,-0.584041595458984,0.511025130748749,0.327766537666321,-0.51542603969574,0.79177337884903,-0.202112480998039,-0.482042133808136,0.852517366409302,0.0430539734661579,-0.0570554435253143,0.997442305088043,
- 0.327766537666321,-0.51542603969574,0.79177337884903,-0.106215722858906,-0.74443507194519,0.659192383289337,-0.157087877392769,-0.230368569493294,0.960340440273285,-0.202112480998039,-0.482042133808136,0.852517366409302,-0.106215722858906,-0.74443507194519,0.659192383289337,-0.492329895496368,-0.483739286661148,0.723607361316681,0.235050737857819,0.00555512122809887,0.971967220306396,-0.157087877392769,-0.230368569493294,0.960340440273285,-0.492329895496368,-0.483739286661148,0.723607361316681,-0.212883129715919,-0.553733587265015,0.805021703243256,-0.946981847286224,0.0868909657001495,0.309314012527466,-0.634655773639679,0.0117447953671217,0.772705614566803,-0.360280901193619,-0.566948890686035,0.74078780412674,-0.185984566807747,-0.607055366039276,0.772588849067688,-0.946981847286224,0.0868909657001495,0.309314012527466,-0.224454790353775,0.170287907123566,0.959490537643433,-0.513332664966583,0.00633821869269013,0.8581662774086,-0.946981847286224,0.0868909657001495,0.309314012527466,-0.228781133890152,-0.457204848527908,0.859431743621826,-0.224454790353775,0.170287907123566,0.959490537643433,-0.415519624948502,-0.417059063911438,0.808334827423096,-0.20383308827877,-0.150459870696068,0.967374742031097,-0.318163126707077,0.000942465150728822,0.948035538196564,-0.513332664966583,0.00633821869269013,0.8581662774086,-0.634655773639679,0.0117447953671217,0.772705614566803,-0.946981847286224,0.0868909657001495,0.309314012527466,-0.0443791672587395,0.277865171432495,0.959594428539276,-0.293513029813766,0.00630700960755348,0.955934286117554,-0.177993267774582,0.134716361761093,0.974766612052917,-0.211653232574463,0.101719692349434,0.972037076950073,-0.206524685025215,0.122478365898132,0.970745444297791,-0.0443791672587395,0.277865171432495,0.959594428539276,-0.211653232574463,0.101719692349434,0.972037076950073,0.63872241973877,-0.0251758843660355,0.769025266170502,0.0445799790322781,0.00280977808870375,0.999001860618591,-0.0766414478421211,-0.0871272385120392,0.993244647979736,-0.325440376996994,-0.022005919367075,0.945306479930878,
- 0.0345196574926376,-0.0932781100273132,0.995041489601135,-0.128029003739357,-0.0151386801153421,0.991654932498932,-0.120707385241985,-0.0228759832680225,0.992424488067627,-0.120707385241985,-0.0228759832680225,0.992424488067627,-0.0384561605751514,-0.0335997827351093,0.998695194721222,0.0345196574926376,-0.0932781100273132,0.995041489601135,-0.0583412125706673,0.491981029510498,0.868648886680603,-0.0544035509228706,0.214548423886299,0.975197017192841,-0.0973744094371796,0.0745505318045616,0.992451727390289,-0.272143810987473,0.213237181305885,0.938332319259644,-0.0314022973179817,0.00679409829899669,0.999483704566956,-0.0544035509228706,0.214548423886299,0.975197017192841,-0.0583412125706673,0.491981029510498,0.868648886680603,-0.0314022973179817,0.00679409829899669,0.999483704566956,-0.0583412125706673,0.491981029510498,0.868648886680603,-0.272143810987473,0.213237181305885,0.938332319259644,-0.10434714704752,0.0901875793933868,0.990443229675293,-0.514081180095673,0.00966120604425669,0.85768711566925,-0.0103681972250342,-0.254078656435013,0.967128038406372,0.509640038013458,0.128403380513191,0.850752294063568,-0.947644114494324,-0.042220551520586,0.316525012254715,-0.13815039396286,-0.45577684044838,0.879307568073273,0.142563432455063,-0.378474473953247,0.914566934108734,0.0345196574926376,-0.0932781100273132,0.995041489601135,0.0345196574926376,-0.0932781100273132,0.995041489601135,0.322965085506439,-0.0885051190853119,0.942263424396515,0.150143325328827,-0.229005038738251,0.961776316165924,-0.700641810894012,0.248972982168198,0.668665409088135,-0.295051425695419,0.0704829692840576,0.95287823677063,-0.246259123086929,-0.45106366276741,0.857845008373261,0.286314368247986,-0.422824203968048,0.859792828559875,-0.390610843896866,0.00507187843322754,0.920541942119598,0.00241752224974334,0.0362050831317902,0.999341368675232,0.00371577683836222,-0.282268524169922,0.959328234195709,0.0910621583461761,0.0131227299571037,0.995758771896362,0.00241752224974334,0.0362050831317902,0.999341368675232,-0.0219030790030956,-0.105921231210232,0.994133293628693,
- 0.0505571737885475,-0.0413476713001728,0.997864842414856,0.0341515950858593,-0.193149268627167,0.980574786663055,0.00371577683836222,-0.282268524169922,0.959328234195709,-0.406388163566589,0.245909288525581,0.879987120628357,-0.240864753723145,0.0225249547511339,0.970297276973724,-0.193614587187767,0.167164504528046,0.966731309890747,-0.330158233642578,0.478657424449921,0.813561677932739,-0.614900410175323,0.0483864396810532,0.787118971347809,-0.348017305135727,0.236126691102982,0.907264113426209,-0.543054580688477,0.0489554479718208,0.838268995285034,-0.397184044122696,-0.0489596761763096,0.916432023048401,-0.53620445728302,0.0533173866569996,0.842402458190918,-0.527985870838165,0.100510112941265,0.843284487724304,-0.145639196038246,-0.75697124004364,0.637011528015137,-0.335208088159561,-0.29101437330246,0.896072626113892,-0.344310313463211,0.479081720113754,0.807422578334808,-0.386796623468399,-0.573630750179291,0.722036123275757,-0.228781133890152,-0.457204848527908,0.859431743621826,-0.145639196038246,-0.75697124004364,0.637011528015137,-0.386796623468399,-0.573630750179291,0.722036123275757,-0.198168888688087,-0.396887719631195,0.896219313144684,-0.360280901193619,-0.566948890686035,0.74078780412674,-0.634655773639679,0.0117447953671217,0.772705614566803,0.235050737857819,0.00555512122809887,0.971967220306396,-0.212883129715919,-0.553733587265015,0.805021703243256,0.0358179844915867,-0.0174623001366854,0.999205708503723,-0.360280901193619,-0.566948890686035,0.74078780412674,-0.212883129715919,-0.553733587265015,0.805021703243256,-0.842522621154785,-0.00796477403491735,0.538602113723755,-0.177993267774582,0.134716361761093,0.974766612052917,-0.293513029813766,0.00630700960755348,0.955934286117554,-0.0930614545941353,0.0997808650135994,0.990647912025452,-0.129668548703194,-0.0419106855988503,0.990671277046204,-0.0366865806281567,-0.125873506069183,0.991367757320404,-0.0544035509228706,0.214548423886299,0.975197017192841,-0.0314022973179817,0.00679409829899669,0.999483704566956,-0.0384561605751514,-0.0335997827351093,0.998695194721222,
- -0.118879057466984,0.194269970059395,0.973718106746674,0.0345196574926376,-0.0932781100273132,0.995041489601135,-0.0973744094371796,0.0745505318045616,0.992451727390289,-0.10657837241888,0.273471891880035,0.955957233905792,-0.179169207811356,0.319957107305527,0.930336475372314,-0.20383308827877,-0.150459870696068,0.967374742031097,-0.318163126707077,0.000942465150728822,0.948035538196564,-0.20383308827877,-0.150459870696068,0.967374742031097,-0.157087877392769,-0.230368569493294,0.960340440273285,0.235050737857819,0.00555512122809887,0.971967220306396,-0.0930614545941353,0.0997808650135994,0.990647912025452,0.147928148508072,0.00300312414765358,0.988993525505066,-0.177993267774582,0.134716361761093,0.974766612052917,-0.703918814659119,-0.00900076981633902,0.710223317146301,-0.406388163566589,0.245909288525581,0.879987120628357,-0.193614587187767,0.167164504528046,0.966731309890747,-0.193614587187767,0.167164504528046,0.966731309890747,-0.413791805505753,0.158774569630623,0.896418988704681,-0.567265689373016,0.0709001794457436,0.820477068424225,-0.703918814659119,-0.00900076981633902,0.710223317146301,-0.413791805505753,0.158774569630623,0.896418988704681,-0.450951159000397,0.178327143192291,0.874552726745605,-0.567265689373016,0.0709001794457436,0.820477068424225,-0.366877615451813,0.157936215400696,0.916764438152313,-0.450951159000397,0.178327143192291,0.874552726745605,-0.413791805505753,0.158774569630623,0.896418988704681,-0.240864753723145,0.0225249547511339,0.970297276973724,-0.366877615451813,0.157936215400696,0.916764438152313,-0.413791805505753,0.158774569630623,0.896418988704681,-0.193614587187767,0.167164504528046,0.966731309890747,-0.406388163566589,0.245909288525581,0.879987120628357,-0.348017305135727,0.236126691102982,0.907264113426209,-0.614900410175323,0.0483864396810532,0.787118971347809,-0.240864753723145,0.0225249547511339,0.970297276973724,-0.295750588178635,-0.189100950956345,0.936361253261566,0.392342984676361,0.0608631260693073,0.917803168296814,-0.0559422373771667,-0.109668664634228,0.992392718791962,
- -0.271794348955154,-0.284148901700974,0.919449388980865,-0.295750588178635,-0.189100950956345,0.936361253261566,-0.0559422373771667,-0.109668664634228,0.992392718791962,-0.129668548703194,-0.0419106855988503,0.990671277046204,-0.271794348955154,-0.284148901700974,0.919449388980865,-0.0559422373771667,-0.109668664634228,0.992392718791962,-0.0559422373771667,-0.109668664634228,0.992392718791962,-0.00538524426519871,-0.0509567596018314,0.998686373233795,-0.0366865806281567,-0.125873506069183,0.991367757320404,-0.129668548703194,-0.0419106855988503,0.990671277046204,-0.168353736400604,-0.0662306174635887,0.983499109745026,-0.0366865806281567,-0.125873506069183,0.991367757320404,-0.00538524426519871,-0.0509567596018314,0.998686373233795,-0.00538524426519871,-0.0509567596018314,0.998686373233795,-0.0807153880596161,-0.582693874835968,0.808673560619354,-0.168353736400604,-0.0662306174635887,0.983499109745026,-0.00538524426519871,-0.0509567596018314,0.998686373233795,0.188400879502296,-0.343285113573074,0.920141518115997,-0.0807153880596161,-0.582693874835968,0.808673560619354,-0.00296549941413105,0.0818884149193764,0.996637046337128,0.188400879502296,-0.343285113573074,0.920141518115997,-0.00538524426519871,-0.0509567596018314,0.998686373233795,0.0751016885042191,0.0135778207331896,0.997083425521851,-0.00296549941413105,0.0818884149193764,0.996637046337128,-0.00538524426519871,-0.0509567596018314,0.998686373233795,-0.0559422373771667,-0.109668664634228,0.992392718791962,0.392342984676361,0.0608631260693073,0.917803168296814,0.0751016885042191,0.0135778207331896,0.997083425521851,-0.0559422373771667,-0.109668664634228,0.992392718791962,-0.390610843896866,0.00507187843322754,0.920541942119598,-0.295051425695419,0.0704829692840576,0.95287823677063,-0.700641810894012,0.248972982168198,0.668665409088135,-0.700641810894012,0.248972982168198,0.668665409088135,0.00241752224974334,0.0362050831317902,0.999341368675232,-0.390610843896866,0.00507187843322754,0.920541942119598,-0.700641810894012,0.248972982168198,0.668665409088135,-0.669457674026489,0.137604549527168,0.729994118213654,
- 0.00241752224974334,0.0362050831317902,0.999341368675232,0.286314368247986,-0.422824203968048,0.859792828559875,0.658061921596527,0.0167528837919235,0.752777397632599,-0.669457674026489,0.137604549527168,0.729994118213654,-0.700641810894012,0.248972982168198,0.668665409088135,-0.246259123086929,-0.45106366276741,0.857845008373261,-0.295051425695419,0.0704829692840576,0.95287823677063,0.392342984676361,0.0608631260693073,0.917803168296814,-0.295750588178635,-0.189100950956345,0.936361253261566,0.286314368247986,-0.422824203968048,0.859792828559875,-0.246259123086929,-0.45106366276741,0.857845008373261,0.386194735765457,-0.0383422262966633,0.921620070934296,-0.016946429386735,-0.35042878985405,0.936436057090759,0.0554745309054852,-0.175688505172729,0.982881486415863,0.51525491476059,0.0615056119859219,0.854827284812927,0.658061921596527,0.0167528837919235,0.752777397632599,-0.540413975715637,0.117365844547749,0.833173394203186,-0.53620445728302,0.0533173866569996,0.842402458190918,-0.543054580688477,0.0489554479718208,0.838268995285034,-0.520687997341156,-0.363546192646027,0.772475302219391,-0.43395984172821,0.028805173933506,0.90047162771225,-0.539319038391113,0.146032497286797,0.829342842102051,-0.538847386837006,-0.272871613502502,0.796984732151031,-0.43269482254982,-0.0276842396706343,0.901115298271179,-0.331678450107574,0.103695377707481,0.937676250934601,-0.497086763381958,0.0727051869034767,0.864649415016174,-0.43395984172821,0.028805173933506,0.90047162771225,-0.608576893806458,0.0702011734247208,0.790383458137512,-0.276508122682571,-0.0680065304040909,0.958602249622345,-0.649161875247955,-0.0267887711524963,0.76017826795578,-0.497086763381958,0.0727051869034767,0.864649415016174,-0.331678450107574,0.103695377707481,0.937676250934601,-0.124996915459633,0.00446033524349332,0.992147147655487,-0.344361454248428,0.47870722413063,0.807622909545898,-0.393070876598358,-0.094478540122509,0.914641499519348,-0.649161875247955,-0.0267887711524963,0.76017826795578,-0.397184044122696,-0.0489596761763096,0.916432023048401,
- -0.330158233642578,0.478657424449921,0.813561677932739,-0.543054580688477,0.0489554479718208,0.838268995285034,-0.53620445728302,0.0533173866569996,0.842402458190918,-0.318163126707077,0.000942465150728822,0.948035538196564,0.147928148508072,0.00300312414765358,0.988993525505066,-0.0930614545941353,0.0997808650135994,0.990647912025452,-0.10434714704752,0.0901875793933868,0.990443229675293,-0.217175975441933,-0.107221350073814,0.970225811004639,0.147928148508072,0.00300312414765358,0.988993525505066,-0.513332664966583,0.00633821869269013,0.8581662774086,-0.224454790353775,0.170287907123566,0.959490537643433,-0.170649796724319,0.196502596139908,0.965538859367371,-0.206524685025215,0.122478365898132,0.970745444297791,-0.217175975441933,-0.107221350073814,0.970225811004639,-0.214431628584862,0.128963187336922,0.968187689781189,-0.0443791672587395,0.277865171432495,0.959594428539276,-0.0875968188047409,0.0902555510401726,0.992058753967285,0.0554745309054852,-0.175688505172729,0.982881486415863,-0.016946429386735,-0.35042878985405,0.936436057090759,-0.016946429386735,-0.35042878985405,0.936436057090759,0.386194735765457,-0.0383422262966633,0.921620070934296,-0.293513029813766,0.00630700960755348,0.955934286117554,-0.0443791672587395,0.277865171432495,0.959594428539276,-0.129668548703194,-0.0419106855988503,0.990671277046204,0.386194735765457,-0.0383422262966633,0.921620070934296,-0.271794348955154,-0.284148901700974,0.919449388980865,-0.0180867165327072,0.156053557991982,0.987582981586456,0.00027751550078392,-0.0479107163846493,0.998851478099823,-0.00296549941413105,0.0818884149193764,0.996637046337128,-0.0171138849109411,-0.0793876349925995,0.996696889400482,-0.0180867165327072,0.156053557991982,0.987582981586456,-0.0530525855720043,0.024366470053792,0.998294413089752,0.109968341886997,-0.000308932649204507,0.99393504858017,0.00027751550078392,-0.0479107163846493,0.998851478099823,-0.0530525855720043,0.024366470053792,0.998294413089752,0.23429973423481,0.0113066984340549,0.972098648548126,-0.514081180095673,0.00966120604425669,0.85768711566925,
- 0.109968341886997,-0.000308932649204507,0.99393504858017,0.150143325328827,-0.229005038738251,0.961776316165924,0.322965085506439,-0.0885051190853119,0.942263424396515,-0.514081180095673,0.00966120604425669,0.85768711566925,0.419091701507568,-0.147577404975891,0.8958700299263,-0.128029003739357,-0.0151386801153421,0.991654932498932,0.150143325328827,-0.229005038738251,0.961776316165924,0.419091701507568,-0.147577404975891,0.8958700299263,0.63872241973877,-0.0251758843660355,0.769025266170502,-0.120707385241985,-0.0228759832680225,0.992424488067627,-0.128029003739357,-0.0151386801153421,0.991654932498932,0.63872241973877,-0.0251758843660355,0.769025266170502,-0.325440376996994,-0.022005919367075,0.945306479930878,-0.221814304590225,-0.0348384864628315,0.974466383457184,-0.221814304590225,-0.0348384864628315,0.974466383457184,-0.0533090084791183,-0.0941484719514847,0.99412989616394,-0.0384561605751514,-0.0335997827351093,0.998695194721222,-0.120707385241985,-0.0228759832680225,0.992424488067627,-0.0384561605751514,-0.0335997827351093,0.998695194721222,-0.0366865806281567,-0.125873506069183,0.991367757320404,-0.168353736400604,-0.0662306174635887,0.983499109745026,-0.118879057466984,0.194269970059395,0.973718106746674,-0.168353736400604,-0.0662306174635887,0.983499109745026,-0.0807153880596161,-0.582693874835968,0.808673560619354,-0.13815039396286,-0.45577684044838,0.879307568073273,-0.118879057466984,0.194269970059395,0.973718106746674,-0.0807153880596161,-0.582693874835968,0.808673560619354,0.188400879502296,-0.343285113573074,0.920141518115997,0.142563432455063,-0.378474473953247,0.914566934108734,-0.13815039396286,-0.45577684044838,0.879307568073273,-0.402460336685181,0.0281792096793652,0.915003538131714,-0.325226098299026,-0.0164407081902027,0.945493280887604,-0.703918814659119,-0.00900076981633902,0.710223317146301,-0.199361935257912,0.00560770276933908,0.979909837245941,-0.520687997341156,-0.363546192646027,0.772475302219391,-0.325226098299026,-0.0164407081902027,0.945493280887604,-0.402460336685181,0.0281792096793652,0.915003538131714,
- -0.551255166530609,0.177115768194199,0.815320670604706,-0.540413975715637,0.117365844547749,0.833173394203186,-0.520687997341156,-0.363546192646027,0.772475302219391,-0.551255166530609,0.177115768194199,0.815320670604706,-0.564798474311829,-0.0584786161780357,0.823154330253601,-0.344310313463211,0.479081720113754,0.807422578334808,-0.335208088159561,-0.29101437330246,0.896072626113892,-0.380290955305099,-0.0436384603381157,0.923836886882782,-0.330158233642578,0.478657424449921,0.813561677932739,-0.397184044122696,-0.0489596761763096,0.916432023048401,-0.380290955305099,-0.0436384603381157,0.923836886882782,-0.183698162436485,0.00133142876438797,0.98298180103302,-0.614900410175323,0.0483864396810532,0.787118971347809,-0.330158233642578,0.478657424449921,0.813561677932739,-0.240864753723145,0.0225249547511339,0.970297276973724,-0.614900410175323,0.0483864396810532,0.787118971347809,-0.183698162436485,0.00133142876438797,0.98298180103302,0.0358179844915867,-0.0174623001366854,0.999205708503723,-0.842522621154785,-0.00796477403491735,0.538602113723755,-0.214431628584862,0.128963187336922,0.968187689781189,-0.217175975441933,-0.107221350073814,0.970225811004639,-0.224454790353775,0.170287907123566,0.959490537643433,-0.228781133890152,-0.457204848527908,0.859431743621826,-0.198168888688087,-0.396887719631195,0.896219313144684,-0.0984002724289894,0.0326037928462029,0.994612634181976,-0.219562143087387,0.300465255975723,0.928177356719971,-0.0891513228416443,-0.809540748596191,0.580254912376404,-0.65105152130127,-0.0451531186699867,0.757689356803894,-0.101625867187977,0.0382277332246304,0.994087934494019,-0.0984002724289894,0.0326037928462029,0.994612634181976,-0.65105152130127,-0.0451531186699867,0.757689356803894,0.0430539734661579,-0.0570554435253143,0.997442305088043,-0.179169207811356,0.319957107305527,0.930336475372314,-0.101625867187977,0.0382277332246304,0.994087934494019,0.0430539734661579,-0.0570554435253143,0.997442305088043,-0.202112480998039,-0.482042133808136,0.852517366409302,-0.20383308827877,-0.150459870696068,0.967374742031097,
- -0.179169207811356,0.319957107305527,0.930336475372314,-0.202112480998039,-0.482042133808136,0.852517366409302,-0.157087877392769,-0.230368569493294,0.960340440273285,-0.0544035509228706,0.214548423886299,0.975197017192841,-0.0366865806281567,-0.125873506069183,0.991367757320404,-0.0384561605751514,-0.0335997827351093,0.998695194721222,-0.0533090084791183,-0.0941484719514847,0.99412989616394,-0.0314022973179817,0.00679409829899669,0.999483704566956,-0.293513029813766,0.00630700960755348,0.955934286117554,0.386194735765457,-0.0383422262966633,0.921620070934296,-0.129668548703194,-0.0419106855988503,0.990671277046204,-0.0930614545941353,0.0997808650135994,0.990647912025452,-0.293513029813766,0.00630700960755348,0.955934286117554,-0.0314022973179817,0.00679409829899669,0.999483704566956,-0.10434714704752,0.0901875793933868,0.990443229675293,-0.170649796724319,0.196502596139908,0.965538859367371,-0.0875968188047409,0.0902555510401726,0.992058753967285,-0.0443791672587395,0.277865171432495,0.959594428539276,-0.206524685025215,0.122478365898132,0.970745444297791,-0.325440376996994,-0.022005919367075,0.945306479930878,-0.0766414478421211,-0.0871272385120392,0.993244647979736,-0.172030299901962,0.0658385679125786,0.98288905620575,-0.23649737238884,0.384173661470413,0.892457008361816,-0.221814304590225,-0.0348384864628315,0.974466383457184,-0.325440376996994,-0.022005919367075,0.945306479930878,-0.23649737238884,0.384173661470413,0.892457008361816,-0.101657845079899,0.446078807115555,0.889201521873474,-0.10657837241888,0.273471891880035,0.955957233905792,-0.0533090084791183,-0.0941484719514847,0.99412989616394,-0.221814304590225,-0.0348384864628315,0.974466383457184,-0.101657845079899,0.446078807115555,0.889201521873474,-0.0544035509228706,0.214548423886299,0.975197017192841,-0.0533090084791183,-0.0941484719514847,0.99412989616394,-0.10657837241888,0.273471891880035,0.955957233905792,-0.0973744094371796,0.0745505318045616,0.992451727390289,-0.513332664966583,0.00633821869269013,0.8581662774086,0.147928148508072,0.00300312414765358,0.988993525505066,
- -0.318163126707077,0.000942465150728822,0.948035538196564,0.235050737857819,0.00555512122809887,0.971967220306396,-0.634655773639679,0.0117447953671217,0.772705614566803,-0.390610843896866,0.00507187843322754,0.920541942119598,0.0751016885042191,0.0135778207331896,0.997083425521851,0.392342984676361,0.0608631260693073,0.917803168296814,-0.295051425695419,0.0704829692840576,0.95287823677063,0.00241752224974334,0.0362050831317902,0.999341368675232,-0.669457674026489,0.137604549527168,0.729994118213654,-0.0219030790030956,-0.105921231210232,0.994133293628693,0.109968341886997,-0.000308932649204507,0.99393504858017,-0.514081180095673,0.00966120604425669,0.85768711566925,0.322965085506439,-0.0885051190853119,0.942263424396515,-0.00296549941413105,0.0818884149193764,0.996637046337128,0.00027751550078392,-0.0479107163846493,0.998851478099823,0.142563432455063,-0.378474473953247,0.914566934108734,0.188400879502296,-0.343285113573074,0.920141518115997,-0.608576893806458,0.0702011734247208,0.790383458137512,-0.43395984172821,0.028805173933506,0.90047162771225,-0.43269482254982,-0.0276842396706343,0.901115298271179,-0.374939918518066,-0.0192275457084179,0.926849663257599,-0.437131464481354,0.539042532444,0.719964742660522,-0.608576893806458,0.0702011734247208,0.790383458137512,-0.374939918518066,-0.0192275457084179,0.926849663257599,-0.515991926193237,-0.0102814147248864,0.856531739234924,-0.567265689373016,0.0709001794457436,0.820477068424225,-0.437131464481354,0.539042532444,0.719964742660522,-0.515991926193237,-0.0102814147248864,0.856531739234924,-0.494591295719147,0.388865560293198,0.777279257774353,-0.406356662511826,-0.133460476994514,0.903915166854858,-0.339992463588715,0.44383442401886,0.829105615615845,-0.372433304786682,-0.366752654314041,0.852517426013947,-0.366877615451813,0.157936215400696,0.916764438152313,-0.339992463588715,0.44383442401886,0.829105615615845,-0.387805789709091,0.00907289609313011,0.921696484088898,-0.276508122682571,-0.0680065304040909,0.958602249622345,-0.372433304786682,-0.366752654314041,0.852517426013947,
- -0.387805789709091,0.00907289609313011,0.921696484088898,-0.124996915459633,0.00446033524349332,0.992147147655487,-0.649161875247955,-0.0267887711524963,0.76017826795578,-0.276508122682571,-0.0680065304040909,0.958602249622345,-0.0360874347388744,0.975919306278229,-0.215125739574432,-0.968854188919067,0.0281864479184151,0.246022462844849,-0.895125091075897,0.00560710811987519,0.445779889822006,-0.0424223691225052,0.547682225704193,0.835610330104828,-0.981870174407959,0.177269995212555,0.0671290159225464,-0.0360874347388744,0.975919306278229,-0.215125739574432,-0.00489093037322164,0.168265730142593,-0.985729515552521,-0.996387243270874,-0.0587805844843388,0.0612956881523132,-0.0111580472439528,0.00514824874699116,-0.999924600124359,0.0178873930126429,-0.00141026615165174,-0.999839007854462,0.017418161034584,-0.0106671145185828,-0.999791383743286,-0.014416198246181,-0.000950416899286211,-0.999895691871643,-0.0360874347388744,0.975919306278229,-0.215125739574432,-0.981870174407959,0.177269995212555,0.0671290159225464,-0.968854188919067,0.0281864479184151,0.246022462844849,-0.895125091075897,0.00560710811987519,0.445779889822006,-0.916906833648682,0.389206528663635,0.0883185863494873,-0.0424223691225052,0.547682225704193,0.835610330104828,-0.0509445406496525,-0.729105830192566,0.682502269744873,-0.992691397666931,-0.0102994600310922,0.120240099728107,-0.961388349533081,-0.0192396957427263,0.274521619081497,-0.916906833648682,0.389206528663635,0.0883185863494873,-0.992691397666931,-0.0102994600310922,0.120240099728107,-0.0509445406496525,-0.729105830192566,0.682502269744873,-0.0424223691225052,0.547682225704193,0.835610330104828,-0.976574242115021,-0.027693185955286,0.213391318917274,-0.0459608808159828,-0.929654121398926,0.365555346012115,-0.0509445406496525,-0.729105830192566,0.682502269744873,-0.961388349533081,-0.0192396957427263,0.274521619081497,-0.976574242115021,-0.027693185955286,0.213391318917274,-0.959704339504242,-0.273233085870743,0.0656599327921867,-0.0459608808159828,-0.929654121398926,0.365555346012115,
- -0.699876010417938,0.0234756506979465,0.713878452777863,-0.508913636207581,0.791340708732605,-0.338801890611649,0.123273178935051,0.980115711688995,0.155489310622215,-0.479263663291931,0.0106239700689912,0.877606749534607,-0.682617366313934,-0.0525616407394409,0.728883147239685,-0.616853594779968,-0.000902993022464216,0.787077307701111,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.508913636207581,0.791340708732605,-0.338801890611649,-0.683456897735596,0.157788947224617,0.712733805179596,-0.68877112865448,-0.0872895196080208,0.719704747200012,-0.657003402709961,-0.601125717163086,-0.454966247081757,-0.479263663291931,0.0106239700689912,0.877606749534607,-0.637807607650757,0.292616188526154,0.712444603443146,-0.656974852085114,-0.296929478645325,0.692976891994476,-0.972429692745209,0.0137444278225303,0.232791066169739,-0.570657551288605,-0.364729851484299,0.735745966434479,-0.682617366313934,-0.0525616407394409,0.728883147239685,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.616853594779968,-0.000902993022464216,0.787077307701111,-0.468808323144913,-0.0926094353199005,0.878431677818298,-0.722254514694214,-0.0814892575144768,0.686809957027435,0.781511664390564,-0.0146768372505903,0.623717963695526,0.805823802947998,-0.0134837850928307,0.592001736164093,0.807218611240387,0.00171803496778011,0.590250253677368,0.791279375553131,-0.0144869349896908,0.611283183097839,0.781047761440277,-0.0223821587860584,0.624070048332214,-0.699876010417938,0.0234756506979465,0.713878452777863,-0.683456897735596,0.157788947224617,0.712733805179596,-0.508913636207581,0.791340708732605,-0.338801890611649,0.123273178935051,0.980115711688995,0.155489310622215,-0.637807607650757,0.292616188526154,0.712444603443146,-0.479263663291931,0.0106239700689912,0.877606749534607,-0.657003402709961,-0.601125717163086,-0.454966247081757,-0.670718789100647,-0.0199689455330372,0.741442918777466,-0.367043882608414,-0.0059815114364028,0.930184364318848,0.00966334529221058,-0.998340427875519,0.0567718669772148,-0.601870775222778,0.0140213072299957,0.798470437526703,
- -0.367043882608414,-0.0059815114364028,0.930184364318848,-0.670718789100647,-0.0199689455330372,0.741442918777466,-0.648207783699036,0.0137517610564828,0.761339247226715,-0.927899479866028,0.00282424269244075,0.372819811105728,-0.670718789100647,-0.0199689455330372,0.741442918777466,-0.68877112865448,-0.0872895196080208,0.719704747200012,-0.683819949626923,0.0942350551486015,0.72353994846344,-0.648207783699036,0.0137517610564828,0.761339247226715,0.648393929004669,-0.545612275600433,0.530935645103455,-0.643279790878296,-0.219898670911789,0.733372807502747,-0.64742523431778,-0.0552028715610504,0.760127127170563,0.777430355548859,-0.140108361840248,0.613165378570557,-0.974998652935028,-0.173057675361633,0.139386460185051,-0.954854369163513,-0.212994426488876,0.207090675830841,-0.945403337478638,-0.0164435934275389,0.325487375259399,-0.929259538650513,-0.363693088293076,0.0648388862609863,-0.967493951320648,-0.218618735671043,0.12712636590004,-0.959718465805054,-0.264950782060623,0.0934966430068016,-0.989301800727844,0.117361456155777,0.0866499319672585,-0.648540675640106,-0.302602738142014,0.698445677757263,-0.367043882608414,-0.0059815114364028,0.930184364318848,-0.601870775222778,0.0140213072299957,0.798470437526703,-0.68877112865448,-0.0872895196080208,0.719704747200012,-0.670718789100647,-0.0199689455330372,0.741442918777466,-0.657003402709961,-0.601125717163086,-0.454966247081757,0.648393929004669,-0.545612275600433,0.530935645103455,-0.648540675640106,-0.302602738142014,0.698445677757263,-0.643279790878296,-0.219898670911789,0.733372807502747,0.648393929004669,-0.545612275600433,0.530935645103455,0.00966334529221058,-0.998340427875519,0.0567718669772148,-0.367043882608414,-0.0059815114364028,0.930184364318848,-0.648540675640106,-0.302602738142014,0.698445677757263,-0.848634719848633,-0.0248739700764418,0.528394222259521,-0.851444005966187,0.0883471593260765,0.516950368881226,-0.846176564693451,0.0382219143211842,0.5315300822258,-0.843633234500885,0.319939970970154,0.431186020374298,-0.931543409824371,-0.0111669786274433,0.363458544015884,
- -0.901195168495178,-0.101310305297375,0.421406477689743,-0.866771280765533,0.300456792116165,0.398036628961563,-0.844516217708588,0.0325968042016029,0.534536838531494,-0.892420947551727,-0.417628318071365,0.170796185731888,-0.699443459510803,-0.161826908588409,0.696125566959381,-0.847263514995575,-0.0657803937792778,0.527083873748779,-0.887987554073334,-0.150451064109802,0.434560090303421,-0.851444005966187,0.0883471593260765,0.516950368881226,-0.931543409824371,-0.0111669786274433,0.363458544015884,-0.844516217708588,0.0325968042016029,0.534536838531494,-0.846176564693451,0.0382219143211842,0.5315300822258,-0.943123459815979,0.000942951766774058,0.332441359758377,-0.843440711498261,-0.056247066706419,0.534269690513611,-0.699443459510803,-0.161826908588409,0.696125566959381,-0.892420947551727,-0.417628318071365,0.170796185731888,-0.404439866542816,-0.0308931842446327,0.91404265165329,-0.755339324474335,-0.295198827981949,0.585081338882446,-0.456421136856079,-0.420948177576065,0.783889174461365,-0.755339324474335,-0.295198827981949,0.585081338882446,-0.196648508310318,-0.0459309704601765,0.979397714138031,-0.456421136856079,-0.420948177576065,0.783889174461365,-0.419857650995255,-0.0930211991071701,0.902810454368591,-0.12294789403677,-0.886755585670471,0.445587635040283,-0.756308317184448,0.0302318297326565,0.653516352176666,-0.201660454273224,-0.0252857841551304,0.979128956794739,-0.820789933204651,0.23131862282753,0.522298276424408,-0.778379321098328,-0.458039939403534,0.429330945014954,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.631748735904694,-0.173649430274963,0.755473017692566,-0.85350775718689,-0.0127590736374259,0.520923912525177,-0.404439866542816,-0.0308931842446327,0.91404265165329,-0.821171820163727,-0.364678889513016,0.438960254192352,-0.908289134502411,-0.180030882358551,0.377623796463013,-0.913120806217194,-0.213276043534279,0.347453325986862,-0.995977163314819,-0.0891239568591118,0.00928950123488903,0.202585741877556,0.407424300909042,-0.890485525131226,
- -0.0907594561576843,0.985260426998138,0.144998982548714,-0.691494762897491,-0.135742157697678,0.709513187408447,-0.885734081268311,-0.048369150608778,0.46166604757309,-0.863670527935028,-0.0282898936420679,0.503262221813202,-0.688565313816071,0.00300574349239469,0.725168108940125,-0.898455083370209,-0.107227206230164,0.425770789384842,-0.898455083370209,-0.107227206230164,0.425770789384842,-0.895948648452759,-0.0728404596447945,0.438143938779831,-0.885734081268311,-0.048369150608778,0.46166604757309,-0.762074828147888,0.630999863147736,0.145193368196487,-0.784349620342255,0.556003272533417,-0.275056779384613,-0.999125421047211,0.0374794453382492,0.0185354892164469,-0.783731997013092,0.573058784008026,0.239515721797943,-0.773165345191956,0.630713045597076,0.066456563770771,-0.642907857894897,-0.670149803161621,0.370902508497238,-0.61898946762085,0.774070739746094,0.132915243506432,-0.755787074565887,0.0358675718307495,0.653834462165833,-0.591171860694885,0.653671562671661,0.472471654415131,-0.762074828147888,0.630999863147736,0.145193368196487,-0.783731997013092,0.573058784008026,0.239515721797943,-0.96288925409317,0.182642206549644,0.198711648583412,-0.784349620342255,0.556003272533417,-0.275056779384613,-0.773165345191956,0.630713045597076,0.066456563770771,-0.755787074565887,0.0358675718307495,0.653834462165833,-0.999125421047211,0.0374794453382492,0.0185354892164469,-0.52036452293396,0.766392529010773,0.376647502183914,-0.721401333808899,0.613358736038208,0.32151398062706,-0.761513113975525,-0.00189454632345587,0.648146629333496,-0.542837500572205,-0.131759643554688,0.829437613487244,-0.761762917041779,0.613168776035309,0.209144577383995,-0.591171860694885,0.653671562671661,0.472471654415131,-0.96288925409317,0.182642206549644,0.198711648583412,-0.938151478767395,0.00823567435145378,-0.346127212047577,-0.542837500572205,-0.131759643554688,0.829437613487244,-0.909189403057098,0.299883842468262,0.28886741399765,-0.824404418468475,0.554701149463654,0.112534679472446,-0.52036452293396,0.766392529010773,0.376647502183914,
- -0.96619838476181,-0.143198475241661,0.214371085166931,-0.959968686103821,-0.279905200004578,0.0106419138610363,-0.998700737953186,0.0505797863006592,-0.00619894918054342,-0.926454782485962,0.365542203187943,0.0897804126143456,-0.966452121734619,-0.242738142609596,0.0839550569653511,-0.967350363731384,-0.219030410051346,0.127510905265808,-0.985615015029907,0.145982950925827,0.0851577594876289,-0.977008938789368,0.0224712304770947,0.212010607123375,-0.993095219135284,-0.0962534174323082,0.0670613944530487,-0.955008924007416,-0.232290536165237,0.18438832461834,-0.96619838476181,-0.143198475241661,0.214371085166931,-0.926454782485962,0.365542203187943,0.0897804126143456,-0.977008938789368,0.0224712304770947,0.212010607123375,-0.947694778442383,-0.311385482549667,0.0700965151190758,-0.966452121734619,-0.242738142609596,0.0839550569653511,-0.993286490440369,-0.0102146752178669,-0.115228168666363,-0.945403337478638,-0.0164435934275389,0.325487375259399,-0.954854369163513,-0.212994426488876,0.207090675830841,-0.962829887866974,-0.218192473053932,0.159218892455101,-0.993286490440369,-0.0102146752178669,-0.115228168666363,-0.993095219135284,-0.0962534174323082,0.0670613944530487,-0.916906833648682,0.389206528663635,0.0883185863494873,-0.895125091075897,0.00560710811987519,0.445779889822006,-0.88793009519577,0.001323904376477,0.459976494312286,-0.962244212627411,-0.043608769774437,0.268671184778214,-0.542837500572205,-0.131759643554688,0.829437613487244,-0.962244212627411,-0.043608769774437,0.268671184778214,-0.909189403057098,0.299883842468262,0.28886741399765,-0.542837500572205,-0.131759643554688,0.829437613487244,-0.99807870388031,-0.0548372231423855,0.0288380272686481,-0.874290764331818,-0.41428342461586,0.252952605485916,-0.967350363731384,-0.219030410051346,0.127510905265808,-0.966452121734619,-0.242738142609596,0.0839550569653511,-0.947694778442383,-0.311385482549667,0.0700965151190758,-0.99807870388031,-0.0548372231423855,0.0288380272686481,-0.966452121734619,-0.242738142609596,0.0839550569653511,-0.865652024745941,-0.45228385925293,0.214676350355148,
- -0.929544985294342,-0.109113775193691,0.352193564176559,-0.959968686103821,-0.279905200004578,0.0106419138610363,-0.96619838476181,-0.143198475241661,0.214371085166931,-0.950024306774139,-0.12152025103569,0.287552744150162,-0.865652024745941,-0.45228385925293,0.214676350355148,-0.96619838476181,-0.143198475241661,0.214371085166931,-0.955008924007416,-0.232290536165237,0.18438832461834,-0.938151478767395,0.00823567435145378,-0.346127212047577,-0.96288925409317,0.182642206549644,0.198711648583412,-0.950024306774139,-0.12152025103569,0.287552744150162,-0.872872829437256,-0.00700331246480346,0.487897455692291,-0.542837500572205,-0.131759643554688,0.829437613487244,-0.761513113975525,-0.00189454632345587,0.648146629333496,-0.88793009519577,0.001323904376477,0.459976494312286,-0.52036452293396,0.766392529010773,0.376647502183914,-0.824404418468475,0.554701149463654,0.112534679472446,-0.835461914539337,0.413420349359512,0.362059384584427,-0.734374761581421,0.532833814620972,-0.420454382896423,-0.974699914455414,-0.00879613775759935,-0.223344147205353,-0.769325852394104,-0.517585337162018,0.374490469694138,-0.642907857894897,-0.670149803161621,0.370902508497238,-0.24924410879612,-0.0671268925070763,-0.966111481189728,-0.740203022956848,-0.0243221055716276,0.671943426132202,-0.974699914455414,-0.00879613775759935,-0.223344147205353,-0.773165345191956,0.630713045597076,0.066456563770771,0.517594397068024,-0.160819634795189,0.840376853942871,-0.880815923213959,-0.179239898920059,0.438219606876373,-0.740203022956848,-0.0243221055716276,0.671943426132202,0.517594397068024,-0.160819634795189,0.840376853942871,-0.762074828147888,0.630999863147736,0.145193368196487,-0.809158146381378,0.450747579336166,0.376947730779648,-0.880815923213959,-0.179239898920059,0.438219606876373,-0.762074828147888,0.630999863147736,0.145193368196487,-0.591171860694885,0.653671562671661,0.472471654415131,-0.634489178657532,0.0250070579349995,0.772527098655701,-0.809158146381378,0.450747579336166,0.376947730779648,-0.591171860694885,0.653671562671661,0.472471654415131,
- -0.761762917041779,0.613168776035309,0.209144577383995,-0.734374761581421,0.532833814620972,-0.420454382896423,-0.996221423149109,0.0295838359743357,0.0816554352641106,-0.721401333808899,0.613358736038208,0.32151398062706,-0.52036452293396,0.766392529010773,0.376647502183914,-0.734374761581421,0.532833814620972,-0.420454382896423,-0.894457459449768,0.170337006449699,0.413438022136688,-0.992344319820404,0.00633834721520543,0.123339235782623,-0.734374761581421,0.532833814620972,-0.420454382896423,-0.835461914539337,0.413420349359512,0.362059384584427,-0.894457459449768,0.170337006449699,0.413438022136688,-0.892420947551727,-0.417628318071365,0.170796185731888,-0.887987554073334,-0.150451064109802,0.434560090303421,-0.943123459815979,0.000942951766774058,0.332441359758377,-0.992344319820404,0.00633834721520543,0.123339235782623,-0.996221423149109,0.0295838359743357,0.0816554352641106,-0.734374761581421,0.532833814620972,-0.420454382896423,-0.813683450222015,0.0904052555561066,0.574235141277313,-0.940510332584381,-0.0227025635540485,0.339005798101425,-0.863670527935028,-0.0282898936420679,0.503262221813202,-0.885734081268311,-0.048369150608778,0.46166604757309,-0.895948648452759,-0.0728404596447945,0.438143938779831,-0.813683450222015,0.0904052555561066,0.574235141277313,-0.885734081268311,-0.048369150608778,0.46166604757309,-0.201660454273224,-0.0252857841551304,0.979128956794739,-0.756308317184448,0.0302318297326565,0.653516352176666,-0.678034722805023,-0.532712578773499,0.506444692611694,-0.909580707550049,-0.0564251132309437,0.411678522825241,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.85350775718689,-0.0127590736374259,0.520923912525177,-0.853720963001251,-0.022696340456605,0.520236015319824,-0.853720963001251,-0.022696340456605,0.520236015319824,-0.807907938957214,-0.0279708858579397,0.588644504547119,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.37969771027565,-0.011759927496314,0.925035834312439,-0.807843208312988,-0.0599408820271492,0.586341619491577,-0.847263514995575,-0.0657803937792778,0.527083873748779,
- -0.699443459510803,-0.161826908588409,0.696125566959381,-0.809812128543854,-0.0199689790606499,0.586349427700043,-0.807843208312988,-0.0599408820271492,0.586341619491577,-0.37969771027565,-0.011759927496314,0.925035834312439,-0.809812128543854,-0.0199689790606499,0.586349427700043,-0.37969771027565,-0.011759927496314,0.925035834312439,-0.699443459510803,-0.161826908588409,0.696125566959381,-0.843440711498261,-0.056247066706419,0.534269690513611,-0.972429692745209,0.0137444278225303,0.232791066169739,-0.656974852085114,-0.296929478645325,0.692976891994476,-0.12294789403677,-0.886755585670471,0.445587635040283,-0.869897365570068,-0.0207949467003345,-0.492794185876846,-0.778379321098328,-0.458039939403534,0.429330945014954,-0.570657551288605,-0.364729851484299,0.735745966434479,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.468808323144913,-0.0926094353199005,0.878431677818298,-0.631748735904694,-0.173649430274963,0.755473017692566,-0.984172523021698,0.172305777668953,-0.0414141975343227,-0.902708411216736,0.0329771153628826,0.428987085819244,-0.821171820163727,-0.364678889513016,0.438960254192352,-0.456421136856079,-0.420948177576065,0.783889174461365,-0.927899479866028,0.00282424269244075,0.372819811105728,-0.683559238910675,0.0365442670881748,0.728979527950287,-0.648540675640106,-0.302602738142014,0.698445677757263,-0.601870775222778,0.0140213072299957,0.798470437526703,-0.683559238910675,0.0365442670881748,0.728979527950287,-0.691494762897491,-0.135742157697678,0.709513187408447,-0.64742523431778,-0.0552028715610504,0.760127127170563,-0.643279790878296,-0.219898670911789,0.733372807502747,-0.648540675640106,-0.302602738142014,0.698445677757263,-0.962829887866974,-0.218192473053932,0.159218892455101,-0.872872829437256,-0.00700331246480346,0.487897455692291,-0.95276802778244,-0.193724453449249,0.233888700604439,-0.9699746966362,-0.0432118959724903,0.239336222410202,-0.996344268321991,-0.00869412068277597,-0.08498515188694,-0.954854369163513,-0.212994426488876,0.207090675830841,
- -0.974998652935028,-0.173057675361633,0.139386460185051,-0.919638454914093,-0.297637492418289,0.256275594234467,-0.959718465805054,-0.264950782060623,0.0934966430068016,-0.967493951320648,-0.218618735671043,0.12712636590004,-0.824404418468475,0.554701149463654,0.112534679472446,-0.909189403057098,0.299883842468262,0.28886741399765,-0.780227363109589,0.594790160655975,0.193571895360947,-0.776824414730072,0.501228630542755,0.381200194358826,-0.835461914539337,0.413420349359512,0.362059384584427,-0.824404418468475,0.554701149463654,0.112534679472446,-0.776824414730072,0.501228630542755,0.381200194358826,-0.856114029884338,-0.329183965921402,0.39837983250618,-0.721401333808899,0.613358736038208,0.32151398062706,-0.996221423149109,0.0295838359743357,0.0816554352641106,-0.634489178657532,0.0250070579349995,0.772527098655701,-0.761762917041779,0.613168776035309,0.209144577383995,-0.761513113975525,-0.00189454632345587,0.648146629333496,-0.721401333808899,0.613358736038208,0.32151398062706,-0.761762917041779,0.613168776035309,0.209144577383995,-0.938151478767395,0.00823567435145378,-0.346127212047577,-0.863670527935028,-0.0282898936420679,0.503262221813202,-0.940510332584381,-0.0227025635540485,0.339005798101425,-0.850499093532562,-0.0507859736680985,0.523518979549408,-0.847679376602173,-0.0411222875118256,0.528912723064423,-0.798308670520782,-0.14202792942524,0.585261642932892,-0.807843208312988,-0.0599408820271492,0.586341619491577,-0.809812128543854,-0.0199689790606499,0.586349427700043,-0.807907938957214,-0.0279708858579397,0.588644504547119,-0.820789933204651,0.23131862282753,0.522298276424408,-0.722254514694214,-0.0814892575144768,0.686809957027435,-0.847263514995575,-0.0657803937792778,0.527083873748779,-0.848634719848633,-0.0248739700764418,0.528394222259521,-0.843633234500885,0.319939970970154,0.431186020374298,-0.887987554073334,-0.150451064109802,0.434560090303421,-0.943123459815979,0.000942951766774058,0.332441359758377,-0.887987554073334,-0.150451064109802,0.434560090303421,-0.809158146381378,0.450747579336166,0.376947730779648,
- -0.634489178657532,0.0250070579349995,0.772527098655701,-0.850499093532562,-0.0507859736680985,0.523518979549408,-0.688565313816071,0.00300574349239469,0.725168108940125,-0.863670527935028,-0.0282898936420679,0.503262221813202,-0.993286490440369,-0.0102146752178669,-0.115228168666363,-0.962829887866974,-0.218192473053932,0.159218892455101,-0.95276802778244,-0.193724453449249,0.233888700604439,-0.95276802778244,-0.193724453449249,0.233888700604439,-0.914319634437561,-0.332475870847702,0.231256142258644,-0.993095219135284,-0.0962534174323082,0.0670613944530487,-0.993286490440369,-0.0102146752178669,-0.115228168666363,-0.914319634437561,-0.332475870847702,0.231256142258644,-0.955008924007416,-0.232290536165237,0.18438832461834,-0.993095219135284,-0.0962534174323082,0.0670613944530487,-0.950024306774139,-0.12152025103569,0.287552744150162,-0.955008924007416,-0.232290536165237,0.18438832461834,-0.914319634437561,-0.332475870847702,0.231256142258644,-0.872872829437256,-0.00700331246480346,0.487897455692291,-0.950024306774139,-0.12152025103569,0.287552744150162,-0.914319634437561,-0.332475870847702,0.231256142258644,-0.95276802778244,-0.193724453449249,0.233888700604439,-0.962829887866974,-0.218192473053932,0.159218892455101,-0.954854369163513,-0.212994426488876,0.207090675830841,-0.996344268321991,-0.00869412068277597,-0.08498515188694,-0.872872829437256,-0.00700331246480346,0.487897455692291,-0.908289134502411,-0.180030882358551,0.377623796463013,-0.397212356328964,0.0344508215785027,0.917079865932465,-0.789272844791412,-0.0857768878340721,0.608021974563599,-0.913120806217194,-0.213276043534279,0.347453325986862,-0.908289134502411,-0.180030882358551,0.377623796463013,-0.789272844791412,-0.0857768878340721,0.608021974563599,-0.847679376602173,-0.0411222875118256,0.528912723064423,-0.913120806217194,-0.213276043534279,0.347453325986862,-0.789272844791412,-0.0857768878340721,0.608021974563599,-0.789272844791412,-0.0857768878340721,0.608021974563599,-0.756540715694427,-0.0437876954674721,0.652478933334351,-0.798308670520782,-0.14202792942524,0.585261642932892,
- -0.847679376602173,-0.0411222875118256,0.528912723064423,-0.866279542446136,-0.0900925099849701,0.491368591785431,-0.798308670520782,-0.14202792942524,0.585261642932892,-0.756540715694427,-0.0437876954674721,0.652478933334351,-0.756540715694427,-0.0437876954674721,0.652478933334351,-0.646617233753204,-0.574729979038239,0.501569151878357,-0.866279542446136,-0.0900925099849701,0.491368591785431,-0.756540715694427,-0.0437876954674721,0.652478933334351,-0.561263859272003,-0.296427130699158,0.772731304168701,-0.646617233753204,-0.574729979038239,0.501569151878357,-0.683819949626923,0.0942350551486015,0.72353994846344,-0.561263859272003,-0.296427130699158,0.772731304168701,-0.756540715694427,-0.0437876954674721,0.652478933334351,-0.648207783699036,0.0137517610564828,0.761339247226715,-0.683819949626923,0.0942350551486015,0.72353994846344,-0.756540715694427,-0.0437876954674721,0.652478933334351,-0.789272844791412,-0.0857768878340721,0.608021974563599,-0.397212356328964,0.0344508215785027,0.917079865932465,-0.648207783699036,0.0137517610564828,0.761339247226715,-0.789272844791412,-0.0857768878340721,0.608021974563599,-0.927899479866028,0.00282424269244075,0.372819811105728,-0.902708411216736,0.0329771153628826,0.428987085819244,-0.984172523021698,0.172305777668953,-0.0414141975343227,-0.984172523021698,0.172305777668953,-0.0414141975343227,-0.683559238910675,0.0365442670881748,0.728979527950287,-0.927899479866028,0.00282424269244075,0.372819811105728,-0.984172523021698,0.172305777668953,-0.0414141975343227,-0.991170585155487,0.129384055733681,0.028992623090744,-0.683559238910675,0.0365442670881748,0.728979527950287,-0.456421136856079,-0.420948177576065,0.783889174461365,-0.196648508310318,-0.0459309704601765,0.979397714138031,-0.991170585155487,0.129384055733681,0.028992623090744,-0.984172523021698,0.172305777668953,-0.0414141975343227,-0.821171820163727,-0.364678889513016,0.438960254192352,-0.902708411216736,0.0329771153628826,0.428987085819244,-0.397212356328964,0.0344508215785027,0.917079865932465,-0.908289134502411,-0.180030882358551,0.377623796463013,
- -0.456421136856079,-0.420948177576065,0.783889174461365,-0.821171820163727,-0.364678889513016,0.438960254192352,-0.404439866542816,-0.0308931842446327,0.91404265165329,-0.755339324474335,-0.295198827981949,0.585081338882446,-0.741286873817444,-0.143995761871338,0.655560076236725,-0.33658242225647,0.10650597512722,0.935611546039581,-0.196648508310318,-0.0459309704601765,0.979397714138031,-0.989301800727844,0.117361456155777,0.0866499319672585,-0.959718465805054,-0.264950782060623,0.0934966430068016,-0.974998652935028,-0.173057675361633,0.139386460185051,-0.929259538650513,-0.363693088293076,0.0648388862609863,-0.977008938789368,0.0224712304770947,0.212010607123375,-0.985615015029907,0.145982950925827,0.0851577594876289,-0.959704339504242,-0.273233085870743,0.0656599327921867,-0.976574242115021,-0.027693185955286,0.213391318917274,-0.959968686103821,-0.279905200004578,0.0106419138610363,-0.947694778442383,-0.311385482549667,0.0700965151190758,-0.977008938789368,0.0224712304770947,0.212010607123375,-0.998700737953186,0.0505797863006592,-0.00619894918054342,-0.929544985294342,-0.109113775193691,0.352193564176559,-0.99807870388031,-0.0548372231423855,0.0288380272686481,-0.947694778442383,-0.311385482549667,0.0700965151190758,-0.959968686103821,-0.279905200004578,0.0106419138610363,-0.755787074565887,0.0358675718307495,0.653834462165833,-0.61898946762085,0.774070739746094,0.132915243506432,-0.874290764331818,-0.41428342461586,0.252952605485916,-0.99807870388031,-0.0548372231423855,0.0288380272686481,-0.919638454914093,-0.297637492418289,0.256275594234467,-0.9699746966362,-0.0432118959724903,0.239336222410202,-0.974998652935028,-0.173057675361633,0.139386460185051,-0.959718465805054,-0.264950782060623,0.0934966430068016,-0.943123459815979,0.000942951766774058,0.332441359758377,-0.688565313816071,0.00300574349239469,0.725168108940125,-0.850499093532562,-0.0507859736680985,0.523518979549408,-0.843440711498261,-0.056247066706419,0.534269690513611,-0.898455083370209,-0.107227206230164,0.425770789384842,-0.688565313816071,0.00300574349239469,0.725168108940125,
- -0.992344319820404,0.00633834721520543,0.123339235782623,-0.894457459449768,0.170337006449699,0.413438022136688,-0.901223957538605,-0.100998751819134,0.421419948339462,-0.895948648452759,-0.0728404596447945,0.438143938779831,-0.898455083370209,-0.107227206230164,0.425770789384842,-0.89516144990921,0.128896698355675,0.426698446273804,-0.813683450222015,0.0904052555561066,0.574235141277313,-0.792243182659149,-0.240724712610245,0.560715913772583,-0.741286873817444,-0.143995761871338,0.655560076236725,-0.755339324474335,-0.295198827981949,0.585081338882446,-0.755339324474335,-0.295198827981949,0.585081338882446,-0.404439866542816,-0.0308931842446327,0.91404265165329,-0.940510332584381,-0.0227025635540485,0.339005798101425,-0.813683450222015,0.0904052555561066,0.574235141277313,-0.847679376602173,-0.0411222875118256,0.528912723064423,-0.404439866542816,-0.0308931842446327,0.91404265165329,-0.913120806217194,-0.213276043534279,0.347453325986862,-0.683456897735596,0.157788947224617,0.712733805179596,-0.682617366313934,-0.0525616407394409,0.728883147239685,-0.683819949626923,0.0942350551486015,0.72353994846344,-0.68877112865448,-0.0872895196080208,0.719704747200012,-0.683456897735596,0.157788947224617,0.712733805179596,-0.699876010417938,0.0234756506979465,0.713878452777863,-0.616853594779968,-0.000902993022464216,0.787077307701111,-0.682617366313934,-0.0525616407394409,0.728883147239685,-0.699876010417938,0.0234756506979465,0.713878452777863,-0.479263663291931,0.0106239700689912,0.877606749534607,-0.972429692745209,0.0137444278225303,0.232791066169739,-0.616853594779968,-0.000902993022464216,0.787077307701111,-0.631748735904694,-0.173649430274963,0.755473017692566,-0.468808323144913,-0.0926094353199005,0.878431677818298,-0.972429692745209,0.0137444278225303,0.232791066169739,-0.419857650995255,-0.0930211991071701,0.902810454368591,-0.85350775718689,-0.0127590736374259,0.520923912525177,-0.631748735904694,-0.173649430274963,0.755473017692566,-0.419857650995255,-0.0930211991071701,0.902810454368591,-0.201660454273224,-0.0252857841551304,0.979128956794739,
- -0.853720963001251,-0.022696340456605,0.520236015319824,-0.85350775718689,-0.0127590736374259,0.520923912525177,-0.201660454273224,-0.0252857841551304,0.979128956794739,-0.909580707550049,-0.0564251132309437,0.411678522825241,-0.903600573539734,-0.0799911320209503,0.420841217041016,-0.903600573539734,-0.0799911320209503,0.420841217041016,-0.727793574333191,-0.495282799005508,0.474353730678558,-0.807907938957214,-0.0279708858579397,0.588644504547119,-0.853720963001251,-0.022696340456605,0.520236015319824,-0.807907938957214,-0.0279708858579397,0.588644504547119,-0.798308670520782,-0.14202792942524,0.585261642932892,-0.866279542446136,-0.0900925099849701,0.491368591785431,-0.820789933204651,0.23131862282753,0.522298276424408,-0.866279542446136,-0.0900925099849701,0.491368591785431,-0.646617233753204,-0.574729979038239,0.501569151878357,-0.778379321098328,-0.458039939403534,0.429330945014954,-0.820789933204651,0.23131862282753,0.522298276424408,-0.646617233753204,-0.574729979038239,0.501569151878357,-0.561263859272003,-0.296427130699158,0.772731304168701,-0.570657551288605,-0.364729851484299,0.735745966434479,-0.778379321098328,-0.458039939403534,0.429330945014954,-0.968854188919067,0.0281864479184151,0.246022462844849,-0.945403337478638,-0.0164435934275389,0.325487375259399,-0.993286490440369,-0.0102146752178669,-0.115228168666363,-0.895125091075897,0.00560710811987519,0.445779889822006,-0.929259538650513,-0.363693088293076,0.0648388862609863,-0.945403337478638,-0.0164435934275389,0.325487375259399,-0.968854188919067,0.0281864479184151,0.246022462844849,-0.981870174407959,0.177269995212555,0.0671290159225464,-0.989301800727844,0.117361456155777,0.0866499319672585,-0.929259538650513,-0.363693088293076,0.0648388862609863,-0.981870174407959,0.177269995212555,0.0671290159225464,-0.996387243270874,-0.0587805844843388,0.0612956881523132,-0.780227363109589,0.594790160655975,0.193571895360947,-0.909189403057098,0.299883842468262,0.28886741399765,-0.962244212627411,-0.043608769774437,0.268671184778214,-0.9699746966362,-0.0432118959724903,0.239336222410202,
- -0.919638454914093,-0.297637492418289,0.256275594234467,-0.962244212627411,-0.043608769774437,0.268671184778214,-0.88793009519577,0.001323904376477,0.459976494312286,-0.996344268321991,-0.00869412068277597,-0.08498515188694,-0.9699746966362,-0.0432118959724903,0.239336222410202,-0.872872829437256,-0.00700331246480346,0.487897455692291,-0.996344268321991,-0.00869412068277597,-0.08498515188694,-0.88793009519577,0.001323904376477,0.459976494312286,-0.761513113975525,-0.00189454632345587,0.648146629333496,-0.938151478767395,0.00823567435145378,-0.346127212047577,-0.89516144990921,0.128896698355675,0.426698446273804,-0.898455083370209,-0.107227206230164,0.425770789384842,-0.894457459449768,0.170337006449699,0.413438022136688,-0.835461914539337,0.413420349359512,0.362059384584427,-0.856114029884338,-0.329183965921402,0.39837983250618,-0.844516217708588,0.0325968042016029,0.534536838531494,-0.866771280765533,0.300456792116165,0.398036628961563,-0.769325852394104,-0.517585337162018,0.374490469694138,-0.974699914455414,-0.00879613775759935,-0.223344147205353,-0.846176564693451,0.0382219143211842,0.5315300822258,-0.844516217708588,0.0325968042016029,0.534536838531494,-0.974699914455414,-0.00879613775759935,-0.223344147205353,-0.740203022956848,-0.0243221055716276,0.671943426132202,-0.843633234500885,0.319939970970154,0.431186020374298,-0.846176564693451,0.0382219143211842,0.5315300822258,-0.740203022956848,-0.0243221055716276,0.671943426132202,-0.880815923213959,-0.179239898920059,0.438219606876373,-0.887987554073334,-0.150451064109802,0.434560090303421,-0.843633234500885,0.319939970970154,0.431186020374298,-0.880815923213959,-0.179239898920059,0.438219606876373,-0.809158146381378,0.450747579336166,0.376947730779648,-0.807843208312988,-0.0599408820271492,0.586341619491577,-0.798308670520782,-0.14202792942524,0.585261642932892,-0.807907938957214,-0.0279708858579397,0.588644504547119,-0.727793574333191,-0.495282799005508,0.474353730678558,-0.809812128543854,-0.0199689790606499,0.586349427700043,-0.940510332584381,-0.0227025635540485,0.339005798101425,
- -0.404439866542816,-0.0308931842446327,0.91404265165329,-0.847679376602173,-0.0411222875118256,0.528912723064423,-0.850499093532562,-0.0507859736680985,0.523518979549408,-0.940510332584381,-0.0227025635540485,0.339005798101425,-0.809812128543854,-0.0199689790606499,0.586349427700043,-0.843440711498261,-0.056247066706419,0.534269690513611,-0.901223957538605,-0.100998751819134,0.421419948339462,-0.792243182659149,-0.240724712610245,0.560715913772583,-0.813683450222015,0.0904052555561066,0.574235141277313,-0.895948648452759,-0.0728404596447945,0.438143938779831,-0.909580707550049,-0.0564251132309437,0.411678522825241,-0.678034722805023,-0.532712578773499,0.506444692611694,-0.901195168495178,-0.101310305297375,0.421406477689743,-0.931543409824371,-0.0111669786274433,0.363458544015884,-0.903600573539734,-0.0799911320209503,0.420841217041016,-0.909580707550049,-0.0564251132309437,0.411678522825241,-0.931543409824371,-0.0111669786274433,0.363458544015884,-0.851444005966187,0.0883471593260765,0.516950368881226,-0.848634719848633,-0.0248739700764418,0.528394222259521,-0.727793574333191,-0.495282799005508,0.474353730678558,-0.903600573539734,-0.0799911320209503,0.420841217041016,-0.851444005966187,0.0883471593260765,0.516950368881226,-0.807843208312988,-0.0599408820271492,0.586341619491577,-0.727793574333191,-0.495282799005508,0.474353730678558,-0.848634719848633,-0.0248739700764418,0.528394222259521,-0.847263514995575,-0.0657803937792778,0.527083873748779,-0.992344319820404,0.00633834721520543,0.123339235782623,-0.688565313816071,0.00300574349239469,0.725168108940125,-0.943123459815979,0.000942951766774058,0.332441359758377,-0.634489178657532,0.0250070579349995,0.772527098655701,-0.996221423149109,0.0295838359743357,0.0816554352641106,-0.927899479866028,0.00282424269244075,0.372819811105728,-0.648207783699036,0.0137517610564828,0.761339247226715,-0.397212356328964,0.0344508215785027,0.917079865932465,-0.902708411216736,0.0329771153628826,0.428987085819244,-0.683559238910675,0.0365442670881748,0.728979527950287,-0.991170585155487,0.129384055733681,0.028992623090744,
- -0.691494762897491,-0.135742157697678,0.709513187408447,-0.616853594779968,-0.000902993022464216,0.787077307701111,-0.972429692745209,0.0137444278225303,0.232791066169739,-0.468808323144913,-0.0926094353199005,0.878431677818298,-0.683819949626923,0.0942350551486015,0.72353994846344,-0.682617366313934,-0.0525616407394409,0.728883147239685,-0.570657551288605,-0.364729851484299,0.735745966434479,-0.561263859272003,-0.296427130699158,0.772731304168701,-0.998700737953186,0.0505797863006592,-0.00619894918054342,-0.977008938789368,0.0224712304770947,0.212010607123375,-0.976574242115021,-0.027693185955286,0.213391318917274,-0.961388349533081,-0.0192396957427263,0.274521619081497,-0.926454782485962,0.365542203187943,0.0897804126143456,-0.998700737953186,0.0505797863006592,-0.00619894918054342,-0.961388349533081,-0.0192396957427263,0.274521619081497,-0.992691397666931,-0.0102994600310922,0.120240099728107,-0.993095219135284,-0.0962534174323082,0.0670613944530487,-0.926454782485962,0.365542203187943,0.0897804126143456,-0.992691397666931,-0.0102994600310922,0.120240099728107,-0.916906833648682,0.389206528663635,0.0883185863494873,-0.96288925409317,0.182642206549644,0.198711648583412,-0.783731997013092,0.573058784008026,0.239515721797943,-0.865652024745941,-0.45228385925293,0.214676350355148,-0.950024306774139,-0.12152025103569,0.287552744150162,-0.783731997013092,0.573058784008026,0.239515721797943,-0.999125421047211,0.0374794453382492,0.0185354892164469,-0.929544985294342,-0.109113775193691,0.352193564176559,-0.865652024745941,-0.45228385925293,0.214676350355148,-0.999125421047211,0.0374794453382492,0.0185354892164469,-0.755787074565887,0.0358675718307495,0.653834462165833,-0.99807870388031,-0.0548372231423855,0.0288380272686481,-0.929544985294342,-0.109113775193691,0.352193564176559,0.00269331480376422,0.00115618808194995,0.999995708465576,0.00501597160473466,-0.00676546478644013,0.999964594841003,0.00501536065712571,-0.0169987697154284,0.999842941761017,0.00208741286769509,-0.00338267744518816,0.99999213218689,-0.0451926700770855,-2.05247189910551e-007,0.998978316783905,
- 0.00269331480376422,0.00115618808194995,0.999995708465576,0.00208741286769509,-0.00338267744518816,0.99999213218689,-0.0452568829059601,-5.12700033539204e-008,0.998975455760956,-0.256068408489227,4.79328093661024e-007,0.966658711433411,-0.1121691390872,-4.59083139503491e-007,0.993689179420471,-0.111984856426716,-3.66685839026104e-007,0.993709921836853,-0.243395552039146,-1.41971213452052e-007,0.969927132129669,-0.354073345661163,2.09173549592379e-008,0.935217678546906,-0.256068408489227,4.79328093661024e-007,0.966658711433411,-0.243395552039146,-1.41971213452052e-007,0.969927132129669,-0.354011356830597,4.77541398140602e-005,0.935241103172302,-0.761086583137512,1.1149176515346e-007,0.648650288581848,-0.651549935340881,0,0.758605718612671,-0.651438474655151,0,0.75870144367218,-0.752995431423187,6.97071982358466e-008,0.658025860786438,-0.821608603000641,-2.79442735617863e-009,0.570051968097687,-0.761086583137512,1.1149176515346e-007,0.648650288581848,-0.752995431423187,6.97071982358466e-008,0.658025860786438,-0.821602642536163,1.11906103938964e-007,0.570060789585114,-0.98831695318222,-2.07146456432383e-007,0.152412757277489,-0.967730820178986,1.30715122281799e-007,0.25198620557785,-0.968263804912567,3.63249382644426e-005,0.249930262565613,-0.993279814720154,0.00324509246274829,0.115691915154457,-0.998627722263336,0.00432689534500241,0.0521906912326813,-0.98831695318222,-2.07146456432383e-007,0.152412757277489,-0.993279814720154,0.00324509246274829,0.115691915154457,-0.999997198581696,0.000122128214570694,-0.0023670254740864,-0.999986231327057,-0.00421193009242415,-0.00311643932946026,-0.998627722263336,0.00432689534500241,0.0521906912326813,-0.993279814720154,0.00324509246274829,0.115691915154457,-0.875287652015686,-6.67078765559381e-008,0.483602732419968,-0.821608603000641,-2.79442735617863e-009,0.570051968097687,-0.821602642536163,1.11906103938964e-007,0.570060789585114,-0.881437063217163,1.69989448295382e-006,0.472301572561264,-0.939085066318512,9.16421072361118e-008,0.343685120344162,-0.875287652015686,-6.67078765559381e-008,0.483602732419968,
- -0.881437063217163,1.69989448295382e-006,0.472301572561264,-0.938390851020813,-5.13745690113865e-005,0.345575779676437,-0.1121691390872,-4.59083139503491e-007,0.993689179420471,-0.0451926700770855,-2.05247189910551e-007,0.998978316783905,-0.0452568829059601,-5.12700033539204e-008,0.998975455760956,-0.111984856426716,-3.66685839026104e-007,0.993709921836853,-0.444656759500504,-7.15666556061478e-006,0.895701169967651,-0.354073345661163,2.09173549592379e-008,0.935217678546906,-0.354011356830597,4.77541398140602e-005,0.935241103172302,-0.456887483596802,-8.09725024737418e-005,0.889524459838867,-0.577181279659271,2.92514812372247e-009,0.816616058349609,-0.444656759500504,-7.15666556061478e-006,0.895701169967651,-0.456887483596802,-8.09725024737418e-005,0.889524459838867,-0.577682375907898,-3.27771485899575e-005,0.816261649131775,-0.651549935340881,0,0.758605718612671,-0.577181279659271,2.92514812372247e-009,0.816616058349609,-0.577682375907898,-3.27771485899575e-005,0.816261649131775,-0.651438474655151,0,0.75870144367218,-0.967730820178986,1.30715122281799e-007,0.25198620557785,-0.939085066318512,9.16421072361118e-008,0.343685120344162,-0.938390851020813,-5.13745690113865e-005,0.345575779676437,-0.968263804912567,3.63249382644426e-005,0.249930262565613,0.00248814560472965,0,0.999996900558472,0.00493646645918489,0,0.999987840652466,0.00497627630829811,0,0.999987721443176,0.00250805076211691,0,0.999996900558472,-0.031294260174036,-4.45788259639812e-008,0.999510288238525,0.00248814560472965,0,0.999996900558472,0.00250805076211691,0,0.999996900558472,-0.0319068431854248,-4.34264606496981e-008,0.999490797519684,-0.135958328843117,-1.29235344648038e-009,0.990714550018311,-0.031294260174036,-4.45788259639812e-008,0.999510288238525,-0.0319068431854248,-4.34264606496981e-008,0.999490797519684,-0.136566713452339,1.36112754400841e-009,0.990630924701691,-0.271377414464951,6.33989003517854e-008,0.962473034858704,-0.135958328843117,-1.29235344648038e-009,0.990714550018311,-0.136566713452339,1.36112754400841e-009,0.990630924701691,-0.239511147141457,6.40243058569467e-008,0.970893621444702,
- -0.368517845869064,0,0.929620683193207,-0.271377414464951,6.33989003517854e-008,0.962473034858704,-0.239511147141457,6.40243058569467e-008,0.970893621444702,-0.335891485214233,0,0.941900670528412,-0.447049617767334,1.42023317550866e-008,0.894509136676788,-0.368517845869064,0,0.929620683193207,-0.335891485214233,0,0.941900670528412,-0.447041392326355,1.4250783664238e-008,0.894513189792633,-0.447049617767334,1.42023317550866e-008,0.894509136676788,-0.447041392326355,1.4250783664238e-008,0.894513189792633,-0.555622696876526,-2.67408566401173e-008,0.831434488296509,-0.555615127086639,-2.79472160968908e-008,0.831439614295959,-0.689928770065308,-1.06236475172494e-009,0.723877251148224,-0.555615127086639,-2.79472160968908e-008,0.831439614295959,-0.555622696876526,-2.67408566401173e-008,0.831434488296509,-0.653637528419495,1.23719146039036e-009,0.756807684898376,-0.769099652767181,6.19234228338428e-008,0.639129042625427,-0.689928770065308,-1.06236475172494e-009,0.723877251148224,-0.653637528419495,1.23719146039036e-009,0.756807684898376,-0.747195661067963,6.45385966890899e-008,0.664604187011719,-0.821987509727478,1.721185149961e-008,0.569505393505096,-0.769099652767181,6.19234228338428e-008,0.639129042625427,-0.747195661067963,6.45385966890899e-008,0.664604187011719,-0.822000503540039,1.7195581847318e-008,0.569486856460571,-0.821987509727478,1.721185149961e-008,0.569505393505096,-0.822000503540039,1.7195581847318e-008,0.569486856460571,-0.876775026321411,-3.12396899460055e-008,0.480900883674622,-0.876773595809937,-3.11136147956859e-008,0.480903297662735,-0.996356129646301,1.25239330017735e-009,0.0852910056710243,-0.998772323131561,1.58414659168216e-009,0.0495362468063831,-0.998772144317627,1.5842612777206e-009,0.0495398342609406,-0.997724592685699,1.05596720256784e-009,0.0674212574958801,-0.990580081939697,2.10721839977168e-009,0.136934190988541,-0.996356129646301,1.25239330017735e-009,0.0852910056710243,-0.997724592685699,1.05596720256784e-009,0.0674212574958801,-0.992768526077271,1.96489335912986e-009,0.120044082403183,
- -0.967944860458374,2.81650458511251e-009,0.251162886619568,-0.990580081939697,2.10721839977168e-009,0.136934190988541,-0.992768526077271,1.96489335912986e-009,0.120044082403183,-0.979249358177185,2.17310480721267e-009,0.202658802270889,-0.920207798480988,-1.77208345775171e-008,0.391430139541626,-0.967944860458374,2.81650458511251e-009,0.251162886619568,-0.979249358177185,2.17310480721267e-009,0.202658802270889,-0.938405752182007,-1.49370418256467e-008,0.345535337924957,-0.876775026321411,-3.12396899460055e-008,0.480900883674622,-0.920207798480988,-1.77208345775171e-008,0.391430139541626,-0.938405752182007,-1.49370418256467e-008,0.345535337924957,-0.876773595809937,-3.11136147956859e-008,0.480903297662735,-0.0725649446249008,-0.0135370641946793,-0.99727189540863,-0.0879752188920975,-0.991463780403137,-0.096227839589119,0.103882357478142,-0.987855792045593,-0.11554042994976,-0.101525388658047,-0.0131326830014586,-0.994746267795563,-0.0520507134497166,-0.278674155473709,-0.958974182605743,-0.0725649446249008,-0.0135370641946793,-0.99727189540863,-0.00613712565973401,0.027836823835969,-0.999593675136566,-0.00999480299651623,0.279348701238632,-0.960137724876404,-0.998837471008301,-0.0233855433762074,0.042153138667345,-0.062065627425909,0.140499621629715,-0.988133549690247,-0.0786086395382881,-0.0472653321921825,-0.995784401893616,-0.998652398586273,-0.00256390171125531,0.0518341362476349,-0.998652398586273,-0.00256390171125531,0.0518341362476349,-0.0786086395382881,-0.0472653321921825,-0.995784401893616,-0.0789175108075142,-0.819918394088745,-0.567014992237091,-0.993618190288544,-0.0530944354832172,0.0995179712772369,0.165773317217827,0.985374450683594,-0.0394507385790348,-0.00613712565973401,0.027836823835969,-0.999593675136566,-0.0560804419219494,0.0338214784860611,-0.99785327911377,-0.073833629488945,0.997195303440094,-0.0122539680451155,0.0232670493423939,-0.999729335308075,0.000286810303805396,-0.0073731979355216,-0.999836206436157,0.0165354162454605,0.0242250170558691,-0.999250113964081,-0.0302044954150915,-0.0276087131351233,-0.957887589931488,-0.285812884569168,
- -0.101525388658047,-0.0131326830014586,-0.994746267795563,-0.124656073749065,-0.278828412294388,-0.952216148376465,-0.153635919094086,0.282695919275284,-0.946825742721558,-0.0560804419219494,0.0338214784860611,-0.99785327911377,0.109591990709305,-0.146276891231537,0.983154475688934,-0.990074455738068,0.031552467495203,0.136956110596657,-0.991269707679749,0.0199943520128727,0.130325108766556,0.0995945110917091,0.0428427197039127,0.994105339050293,0.0995945110917091,0.0428427197039127,0.994105339050293,-0.991269707679749,0.0199943520128727,0.130325108766556,-0.993945419788361,0.0874484032392502,0.0665225461125374,0.0409696288406849,0.815216600894928,0.577705264091492,-0.00597362406551838,-0.999864220619202,0.0153519529849291,-0.0459389612078667,-0.998914301395416,0.0077372775413096,-0.0437808744609356,-0.957959651947021,-0.283542841672897,-0.0399592965841293,-0.998914301395416,-0.0239472184330225,-0.0277350377291441,-0.997600674629211,0.0634320303797722,-0.998214423656464,-0.0318184681236744,-0.0505507476627827,-0.993618190288544,-0.0530944354832172,0.0995179712772369,-0.0789175108075142,-0.819918394088745,-0.567014992237091,-0.115333393216133,-0.041415698826313,-0.992463052272797,0.0242250170558691,-0.999250113964081,-0.0302044954150915,-0.0399592965841293,-0.998914301395416,-0.0239472184330225,-0.0709661766886711,-0.0417080856859684,-0.996606409549713,-0.979181826114655,0.0482016652822495,0.197178959846497,-0.0161579605191946,0.99848461151123,-0.0526062361896038,0.0409696288406849,0.815216600894928,0.577705264091492,-0.993945419788361,0.0874484032392502,0.0665225461125374,-0.00613712565973401,0.027836823835969,-0.999593675136566,-0.0725649446249008,-0.0135370641946793,-0.99727189540863,-0.101525388658047,-0.0131326830014586,-0.994746267795563,-0.0560804419219494,0.0338214784860611,-0.99785327911377,-0.00597362406551838,-0.999864220619202,0.0153519529849291,-0.0399592965841293,-0.998914301395416,-0.0239472184330225,0.0242250170558691,-0.999250113964081,-0.0302044954150915,-0.0073731979355216,-0.999836206436157,0.0165354162454605,
- -0.993945419788361,0.0874484032392502,0.0665225461125374,-0.991269707679749,0.0199943520128727,0.130325108766556,-0.998652398586273,-0.00256390171125531,0.0518341362476349,-0.993618190288544,-0.0530944354832172,0.0995179712772369,-0.998214423656464,-0.0318184681236744,-0.0505507476627827,-0.979181826114655,0.0482016652822495,0.197178959846497,-0.993945419788361,0.0874484032392502,0.0665225461125374,-0.993618190288544,-0.0530944354832172,0.0995179712772369,-0.998837471008301,-0.0233855433762074,0.042153138667345,-0.998652398586273,-0.00256390171125531,0.0518341362476349,-0.991269707679749,0.0199943520128727,0.130325108766556,-0.990074455738068,0.031552467495203,0.136956110596657,0.0995347201824188,0.0514884889125824,0.993701100349426,0.0997034385800362,0.0568504147231579,0.993391752243042,0.174738332629204,0.00254203821532428,0.984611630439758,0.175146862864494,0.0331293232738972,0.983984768390656,0.116794981062412,-0.00935939978808165,0.993111968040466,-0.0781868770718575,-0.0269936379045248,-0.996573150157928,-0.0600850209593773,0.00956883747130632,-0.998147487640381,-0.00263671693392098,-0.0429130829870701,-0.999075353145599,-0.00415464770048857,-0.0478216484189034,-0.998847246170044,-0.0762323662638664,0.0057371761649847,-0.997073590755463,-0.0725649446249008,-0.0135370641946793,-0.99727189540863,-0.0520507134497166,-0.278674155473709,-0.958974182605743,-0.0879752188920975,-0.991463780403137,-0.096227839589119,0.165773317217827,0.985374450683594,-0.0394507385790348,-0.00999480299651623,0.279348701238632,-0.960137724876404,-0.00613712565973401,0.027836823835969,-0.999593675136566,-0.101525388658047,-0.0131326830014586,-0.994746267795563,0.103882357478142,-0.987855792045593,-0.11554042994976,-0.124656073749065,-0.278828412294388,-0.952216148376465,-0.073833629488945,0.997195303440094,-0.0122539680451155,-0.0560804419219494,0.0338214784860611,-0.99785327911377,-0.153635919094086,0.282695919275284,-0.946825742721558,-0.0276087131351233,-0.957887589931488,-0.285812884569168,0.0242250170558691,-0.999250113964081,-0.0302044954150915,
- -0.115333393216133,-0.041415698826313,-0.992463052272797,-0.0709661766886711,-0.0417080856859684,-0.996606409549713,-0.0399592965841293,-0.998914301395416,-0.0239472184330225,-0.0437808744609356,-0.957959651947021,-0.283542841672897,-0.301336884498596,-0.0141697498038411,-0.953412413597107,-0.124514013528824,-0.989992916584015,-0.0664100721478462,0.0552201978862286,-0.989833056926727,-0.131077125668526,-0.331064611673355,-0.012594691477716,-0.94352400302887,-0.28362849354744,-0.278911381959915,-0.917476654052734,-0.301336884498596,-0.0141697498038411,-0.953412413597107,-0.249798685312271,0.02836006693542,-0.967882394790649,-0.247655406594276,0.279536962509155,-0.92764538526535,-0.957171678543091,-0.0314991921186447,0.287802428007126,-0.304121047258377,0.141935527324677,-0.942000389099121,-0.320444017648697,-0.0469674058258533,-0.946102380752563,-0.954965710639954,-0.0106809502467513,0.296523690223694,-0.954965710639954,-0.0106809502467513,0.296523690223694,-0.320444017648697,-0.0469674058258533,-0.946102380752563,-0.208957210183144,-0.820522844791412,-0.532051742076874,-0.935230255126953,-0.0683805122971535,0.347373455762863,0.145928859710693,0.986251533031464,-0.0775410234928131,-0.249798685312271,0.02836006693542,-0.967882394790649,-0.299610316753387,0.034155610948801,-0.95345002412796,-0.0828093811869621,0.996521890163422,0.00931536685675383,0.0313270501792431,-0.999476671218872,-0.00805992167443037,0.0049821543507278,-0.999873995780945,0.0150780994445086,0.0253471881151199,-0.998933732509613,-0.0385872609913349,-0.0890031605958939,-0.957960367202759,-0.272746056318283,-0.331064611673355,-0.012594691477716,-0.94352400302887,-0.352073132991791,-0.278624206781387,-0.893539667129517,-0.383779168128967,0.282393276691437,-0.879185736179352,-0.299610316753387,0.034155610948801,-0.95345002412796,0.348587274551392,-0.145424649119377,0.92592591047287,-0.925866365432739,0.0232601761817932,0.377134323120117,-0.928786754608154,0.0116652017459273,0.370430946350098,0.339744836091995,0.0439091250300407,0.939492046833038,0.339744836091995,0.0439091250300407,0.939492046833038,
- -0.928786754608154,0.0116652017459273,0.370430946350098,-0.945030689239502,0.0678194761276245,0.319871455430985,0.174505904316902,0.814533770084381,0.553247213363647,0.00539855239912868,-0.999892234802246,0.0136552564799786,-0.034833800047636,-0.999285101890564,0.0146964751183987,-0.165665119886398,-0.900625467300415,-0.401782006025314,-0.0300650615245104,-0.999382972717285,-0.0181550588458776,-0.00280544650740922,-0.997743785381317,0.0670780539512634,-0.971868336200714,-0.0390511751174927,0.232264548540115,-0.935230255126953,-0.0683805122971535,0.347373455762863,-0.208957210183144,-0.820522844791412,-0.532051742076874,-0.354402661323547,-0.0415916033089161,-0.934167504310608,0.0253471881151199,-0.998933732509613,-0.0385872609913349,-0.0300650615245104,-0.999382972717285,-0.0181550588458776,-0.312421411275864,-0.0415483303368092,-0.949034512042999,-0.88504034280777,0.0404120422899723,0.46375697851181,-0.0369793139398098,0.998359560966492,-0.0437117703258991,0.174505904316902,0.814533770084381,0.553247213363647,-0.945030689239502,0.0678194761276245,0.319871455430985,-0.249798685312271,0.02836006693542,-0.967882394790649,-0.301336884498596,-0.0141697498038411,-0.953412413597107,-0.331064611673355,-0.012594691477716,-0.94352400302887,-0.299610316753387,0.034155610948801,-0.95345002412796,0.00539855239912868,-0.999892234802246,0.0136552564799786,-0.0300650615245104,-0.999382972717285,-0.0181550588458776,0.0253471881151199,-0.998933732509613,-0.0385872609913349,0.0049821543507278,-0.999873995780945,0.0150780994445086,-0.945030689239502,0.0678194761276245,0.319871455430985,-0.928786754608154,0.0116652017459273,0.370430946350098,-0.954965710639954,-0.0106809502467513,0.296523690223694,-0.935230255126953,-0.0683805122971535,0.347373455762863,-0.971868336200714,-0.0390511751174927,0.232264548540115,-0.88504034280777,0.0404120422899723,0.46375697851181,-0.945030689239502,0.0678194761276245,0.319871455430985,-0.935230255126953,-0.0683805122971535,0.347373455762863,-0.957171678543091,-0.0314991921186447,0.287802428007126,-0.954965710639954,-0.0106809502467513,0.296523690223694,
- -0.928786754608154,0.0116652017459273,0.370430946350098,-0.925866365432739,0.0232601761817932,0.377134323120117,0.339549541473389,0.0511907413601875,0.939194083213806,0.339615046977997,0.0565328896045685,0.938864052295685,0.411141693592072,0.00291369296610355,0.911566913127899,0.411166816949844,0.0334967337548733,0.91094446182251,0.356811434030533,-0.00946610141545534,0.93412858247757,-0.320396721363068,-0.0272676032036543,-0.946890830993652,-0.303553879261017,0.00943030323833227,-0.952767610549927,-0.247265070676804,-0.0425128825008869,-0.96801483631134,-0.248612657189369,-0.047452874481678,-0.967439949512482,-0.318867951631546,0.00552064785733819,-0.947783052921295,-0.301336884498596,-0.0141697498038411,-0.953412413597107,-0.28362849354744,-0.278911381959915,-0.917476654052734,-0.124514013528824,-0.989992916584015,-0.0664100721478462,0.145928859710693,0.986251533031464,-0.0775410234928131,-0.247655406594276,0.279536962509155,-0.92764538526535,-0.249798685312271,0.02836006693542,-0.967882394790649,-0.331064611673355,-0.012594691477716,-0.94352400302887,0.0552201978862286,-0.989833056926727,-0.131077125668526,-0.352073132991791,-0.278624206781387,-0.893539667129517,-0.0828093811869621,0.996521890163422,0.00931536685675383,-0.299610316753387,0.034155610948801,-0.95345002412796,-0.383779168128967,0.282393276691437,-0.879185736179352,-0.0890031605958939,-0.957960367202759,-0.272746056318283,0.0253471881151199,-0.998933732509613,-0.0385872609913349,-0.354402661323547,-0.0415916033089161,-0.934167504310608,-0.312421411275864,-0.0415483303368092,-0.949034512042999,-0.0300650615245104,-0.999382972717285,-0.0181550588458776,-0.165665119886398,-0.900625467300415,-0.401782006025314,-0.630119860172272,-0.0127824600785971,-0.776392698287964,-0.124996684491634,-0.991606593132019,-0.033052247017622,0.0207974705845118,-0.988207519054413,-0.151702165603638,-0.653995394706726,-0.0142183862626553,-0.756364941596985,-0.576585710048676,-0.27850216627121,-0.768105149269104,-0.630119860172272,-0.0127824600785971,-0.776392698287964,-0.53465610742569,0.0283244680613279,-0.844594895839691,
- -0.548484027385712,0.279906213283539,-0.787919938564301,-0.803818583488464,-0.0411613471806049,0.59344869852066,-0.609067738056183,0.148876011371613,-0.779020190238953,-0.617678821086884,-0.0395478084683418,-0.785435378551483,-0.80073493719101,0.0137471212074161,0.598861157894135,-0.80073493719101,0.0137471212074161,0.598861157894135,-0.617678821086884,-0.0395478084683418,-0.785435378551483,-0.570374548435211,-0.37550961971283,-0.730524122714996,-0.775181770324707,-0.0299461837857962,0.631028056144714,0.106534287333488,0.987276315689087,-0.11805022507906,-0.53465610742569,0.0283244680613279,-0.844594895839691,-0.603058934211731,0.0347289703786373,-0.796940326690674,-0.0796297043561935,0.995987176895142,0.0408519506454468,0.0395910032093525,-0.998842418193817,-0.0273236278444529,0.0183093510568142,-0.999816417694092,0.0056653511710465,0.0212967991828918,-0.99834817647934,-0.0533605590462685,-0.159275591373444,-0.957928419113159,-0.238755941390991,-0.653995394706726,-0.0142183862626553,-0.756364941596985,-0.633508503437042,-0.279105722904205,-0.721641898155212,-0.663733899593353,0.282379597425461,-0.692617535591125,-0.603058934211731,0.0347289703786373,-0.796940326690674,0.645490884780884,-0.144119530916214,0.750047385692596,-0.74552047252655,0.0127338133752346,0.666361033916473,-0.748643338680267,0.0053367861546576,0.662951529026031,0.639577031135559,0.0472040548920631,0.767276346683502,0.639577031135559,0.0472040548920631,0.767276346683502,-0.748643338680267,0.0053367861546576,0.662951529026031,-0.77537727355957,0.0522320605814457,0.629334330558777,0.339611500501633,0.819372117519379,0.461836785078049,0.0180635899305344,-0.999828457832336,0.00410224264487624,-0.0187046974897385,-0.999668180942535,0.0177126247435808,-0.284136891365051,-0.900717794895172,-0.328593522310257,-0.0239828545600176,-0.999594211578369,-0.0153650501742959,0.0356810726225376,-0.998079895973206,0.0506300181150436,-0.832378327846527,-0.0354391410946846,0.553073525428772,-0.817417621612549,-0.025955667719245,0.575460433959961,-0.0649532377719879,-0.993695735931396,-0.0913776829838753,
- -0.634992837905884,-0.0491195879876614,-0.770954847335815,0.0212967991828918,-0.99834817647934,-0.0533605590462685,-0.0239828545600176,-0.999594211578369,-0.0153650501742959,-0.605583310127258,-0.0489002279937267,-0.794278144836426,-0.722709834575653,0.0325893871486187,0.690382838249207,-0.0666477307677269,0.997403502464294,-0.0272835176438093,0.339611500501633,0.819372117519379,0.461836785078049,-0.77537727355957,0.0522320605814457,0.629334330558777,-0.53465610742569,0.0283244680613279,-0.844594895839691,-0.630119860172272,-0.0127824600785971,-0.776392698287964,-0.653995394706726,-0.0142183862626553,-0.756364941596985,-0.603058934211731,0.0347289703786373,-0.796940326690674,0.0180635899305344,-0.999828457832336,0.00410224264487624,-0.0239828545600176,-0.999594211578369,-0.0153650501742959,0.0212967991828918,-0.99834817647934,-0.0533605590462685,0.0183093510568142,-0.999816417694092,0.0056653511710465,-0.77537727355957,0.0522320605814457,0.629334330558777,-0.748643338680267,0.0053367861546576,0.662951529026031,-0.80073493719101,0.0137471212074161,0.598861157894135,-0.775181770324707,-0.0299461837857962,0.631028056144714,-0.774269998073578,-0.0103880194947124,0.63277006149292,-0.770251035690308,-0.0171550903469324,0.637510180473328,-0.832378327846527,-0.0354391410946846,0.553073525428772,-0.722709834575653,0.0325893871486187,0.690382838249207,-0.77537727355957,0.0522320605814457,0.629334330558777,-0.770251035690308,-0.0171550903469324,0.637510180473328,-0.77669233083725,-0.0112189343199134,0.629780292510986,-0.817417621612549,-0.025955667719245,0.575460433959961,-0.803818583488464,-0.0411613471806049,0.59344869852066,-0.80073493719101,0.0137471212074161,0.598861157894135,-0.748643338680267,0.0053367861546576,0.662951529026031,-0.74552047252655,0.0127338133752346,0.666361033916473,0.639400959014893,0.0507192984223366,0.767198741436005,0.639087975025177,0.0561380311846733,0.767082214355469,0.697940528392792,0.00360854505561292,0.7161465883255,0.697572827339172,0.0339919291436672,0.715707182884216,0.654592335224152,-0.00960416439920664,0.755921065807343,
- -0.61738783121109,-0.0496170185506344,-0.785092532634735,-0.610927402973175,0.00917932018637657,-0.791633546352386,-0.557343780994415,-0.045510433614254,-0.829033613204956,-0.558599889278412,0.00523293716832995,-0.829420745372772,-0.595372080802917,-0.0807051807641983,-0.799386441707611,-0.595395386219025,-0.0723249018192291,-0.80017077922821,-0.614225387573242,-0.0435033924877644,-0.78793066740036,-0.630119860172272,-0.0127824600785971,-0.776392698287964,-0.576585710048676,-0.27850216627121,-0.768105149269104,-0.124996684491634,-0.991606593132019,-0.033052247017622,0.106534287333488,0.987276315689087,-0.11805022507906,-0.548484027385712,0.279906213283539,-0.787919938564301,-0.53465610742569,0.0283244680613279,-0.844594895839691,-0.653995394706726,-0.0142183862626553,-0.756364941596985,0.0207974705845118,-0.988207519054413,-0.151702165603638,-0.633508503437042,-0.279105722904205,-0.721641898155212,-0.0796297043561935,0.995987176895142,0.0408519506454468,-0.603058934211731,0.0347289703786373,-0.796940326690674,-0.663733899593353,0.282379597425461,-0.692617535591125,-0.159275591373444,-0.957928419113159,-0.238755941390991,0.0212967991828918,-0.99834817647934,-0.0533605590462685,-0.634992837905884,-0.0491195879876614,-0.770954847335815,-0.605583310127258,-0.0489002279937267,-0.794278144836426,-0.0239828545600176,-0.999594211578369,-0.0153650501742959,-0.284136891365051,-0.900717794895172,-0.328593522310257,-0.805285274982452,-0.0128650180995464,-0.592747926712036,-0.132935881614685,-0.991112351417542,0.00493177864700556,-0.0210371538996696,-0.988665640354156,-0.148653626441956,-0.822660148143768,-0.0138417510315776,-0.568365037441254,-0.754444420337677,-0.278620392084122,-0.594293057918549,-0.805285274982452,-0.0128650180995464,-0.592747926712036,-0.733790874481201,0.0272605270147324,-0.678828299045563,-0.730522513389587,0.279663503170013,-0.622996807098389,-0.628471910953522,-0.0312499906867743,0.77720433473587,-0.785429000854492,0.143148466944695,-0.602170884609222,-0.801292240619659,-0.0455224923789501,-0.596538603305817,
- -0.621501982212067,-0.0118153216317296,0.783323466777802,-0.621501982212067,-0.0118153216317296,0.783323466777802,-0.801292240619659,-0.0455224923789501,-0.596538603305817,-0.47812819480896,-0.816572189331055,-0.323424398899078,-0.577593803405762,-0.068067342042923,0.813481628894806,0.0767496377229691,0.986337304115295,-0.145767733454704,-0.733790874481201,0.0272605270147324,-0.678828299045563,-0.786037147045136,0.0341890640556812,-0.617233157157898,-0.0627141445875168,0.996585071086884,0.0537130385637283,0.0220415499061346,-0.999436318874359,-0.0253222603350878,0.0125987408682704,-0.999874234199524,0.00963746942579746,0.000579127576202154,-0.998837828636169,-0.0481941215693951,-0.227311119437218,-0.957993388175964,-0.174866303801537,-0.822660148143768,-0.0138417510315776,-0.568365037441254,-0.797132730484009,-0.279022723436356,-0.535467624664307,-0.815182089805603,0.282513469457626,-0.50563257932663,-0.786037147045136,0.0341890640556812,-0.617233157157898,0.813242554664612,-0.144318461418152,0.563745319843292,-0.552431643009186,0.0233730524778366,0.833230495452881,-0.558370649814606,0.0105051016435027,0.829525113105774,0.813394129276276,0.0454752184450626,0.579932689666748,0.813394129276276,0.0454752184450626,0.579932689666748,-0.558370649814606,0.0105051016435027,0.829525113105774,-0.601320445537567,0.068167045712471,0.796094834804535,0.452391594648361,0.818778455257416,0.353473663330078,0.0121675748378038,-0.999892354011536,0.0082105714827776,-0.0197202395647764,-0.999327778816223,0.0309064816683531,-0.363581150770187,-0.900808155536652,-0.237388744950294,-0.0336847268044949,-0.999432444572449,0.000325190660078079,0.0305556040257216,-0.998239398002625,0.0508377365767956,-0.698520839214325,-0.0403481349349022,0.714451253414154,-0.577593803405762,-0.068067342042923,0.813481628894806,-0.47812819480896,-0.816572189331055,-0.323424398899078,-0.817170977592468,-0.0414207093417645,-0.574905276298523,0.000579127576202154,-0.998837828636169,-0.0481941215693951,-0.0336847268044949,-0.999432444572449,0.000325190660078079,
- -0.789831519126892,-0.041792243719101,-0.611898422241211,-0.501855075359344,0.0390001460909843,0.86407208442688,-0.0628859549760818,0.997852444648743,-0.0183266792446375,0.452391594648361,0.818778455257416,0.353473663330078,-0.601320445537567,0.068167045712471,0.796094834804535,-0.733790874481201,0.0272605270147324,-0.678828299045563,-0.805285274982452,-0.0128650180995464,-0.592747926712036,-0.822660148143768,-0.0138417510315776,-0.568365037441254,-0.786037147045136,0.0341890640556812,-0.617233157157898,0.0121675748378038,-0.999892354011536,0.0082105714827776,-0.0336847268044949,-0.999432444572449,0.000325190660078079,0.000579127576202154,-0.998837828636169,-0.0481941215693951,0.0125987408682704,-0.999874234199524,0.00963746942579746,-0.601320445537567,0.068167045712471,0.796094834804535,-0.558370649814606,0.0105051016435027,0.829525113105774,-0.621501982212067,-0.0118153216317296,0.783323466777802,-0.577593803405762,-0.068067342042923,0.813481628894806,-0.698520839214325,-0.0403481349349022,0.714451253414154,-0.501855075359344,0.0390001460909843,0.86407208442688,-0.601320445537567,0.068167045712471,0.796094834804535,-0.577593803405762,-0.068067342042923,0.813481628894806,-0.628471910953522,-0.0312499906867743,0.77720433473587,-0.621501982212067,-0.0118153216317296,0.783323466777802,-0.558370649814606,0.0105051016435027,0.829525113105774,-0.552431643009186,0.0233730524778366,0.833230495452881,0.813130021095276,0.0511464141309261,0.579830706119537,0.81285560131073,0.0565387792885304,0.579714596271515,0.855911374092102,0.00301924115046859,0.517113745212555,0.855599224567413,0.0335416123270988,0.516550898551941,0.824408113956451,-0.00945598725229502,0.565916776657104,-0.801673054695129,-0.027291176840663,-0.597139418125153,-0.791077733039856,0.00943223666399717,-0.611642897129059,-0.752883553504944,-0.0424058735370636,-0.656786262989044,-0.753608644008636,-0.0473954044282436,-0.655612349510193,-0.80081433057785,0.00563804991543293,-0.598886132240295,-0.805285274982452,-0.0128650180995464,-0.592747926712036,-0.754444420337677,-0.278620392084122,-0.594293057918549,
- -0.132935881614685,-0.991112351417542,0.00493177864700556,0.0767496377229691,0.986337304115295,-0.145767733454704,-0.730522513389587,0.279663503170013,-0.622996807098389,-0.733790874481201,0.0272605270147324,-0.678828299045563,-0.822660148143768,-0.0138417510315776,-0.568365037441254,-0.0210371538996696,-0.988665640354156,-0.148653626441956,-0.797132730484009,-0.279022723436356,-0.535467624664307,-0.0627141445875168,0.996585071086884,0.0537130385637283,-0.786037147045136,0.0341890640556812,-0.617233157157898,-0.815182089805603,0.282513469457626,-0.50563257932663,-0.227311119437218,-0.957993388175964,-0.174866303801537,0.000579127576202154,-0.998837828636169,-0.0481941215693951,-0.817170977592468,-0.0414207093417645,-0.574905276298523,-0.789831519126892,-0.041792243719101,-0.611898422241211,-0.0336847268044949,-0.999432444572449,0.000325190660078079,-0.363581150770187,-0.900808155536652,-0.237388744950294,-0.915477275848389,-0.0129481544718146,-0.402161359786987,-0.144205391407013,-0.989545464515686,0.00210092728957534,-0.0818364322185516,-0.985251069068909,-0.150276750326157,-0.9271479845047,-0.0142314406111836,-0.374425023794174,-0.862470030784607,-0.278159379959106,-0.422815352678299,-0.915477275848389,-0.0129481544718146,-0.402161359786987,-0.865401327610016,0.030637389048934,-0.500141859054565,-0.853232502937317,0.280606031417847,-0.439607232809067,-0.454878211021423,-0.0582804083824158,0.888644576072693,-0.899642884731293,0.148770168423653,-0.410499781370163,-0.912118077278137,-0.0415570959448814,-0.407815486192703,-0.444922298192978,-0.0425700061023235,0.894556879997253,-0.444922298192978,-0.0425700061023235,0.894556879997253,-0.912118077278137,-0.0415570959448814,-0.407815486192703,-0.528063654899597,-0.815820395946503,-0.235766589641571,-0.402616918087006,-0.0888235345482826,0.911048829555511,0.0310090743005276,0.990608930587769,-0.13316236436367,-0.865401327610016,0.030637389048934,-0.500141859054565,-0.903695702552795,0.0354276485741138,-0.426707029342651,-0.0608841255307198,0.99372124671936,0.0938690081238747,
- 0.0303173493593931,-0.99779886007309,-0.0589771158993244,0.0266990065574646,-0.999415934085846,-0.021332086995244,0.000390452827559784,-0.997518658638,-0.0704029947519302,-0.246643468737602,-0.957576751708984,-0.149043127894402,-0.9271479845047,-0.0142314406111836,-0.374425023794174,-0.897356271743774,-0.279502719640732,-0.341511160135269,-0.912134826183319,0.281780660152435,-0.297673583030701,-0.903695702552795,0.0354276485741138,-0.426707029342651,0.373950332403183,0.00134893762879074,0.927447855472565,0.352714121341705,0.0234224442392588,0.935437977313995,0.327407985925674,0.00303377956151962,0.944878160953522,0.327407985925674,0.00303377956151962,0.944878160953522,0.277085959911346,0.00748524675145745,0.960815966129303,0.211999997496605,0.00059877271996811,0.977269530296326,0.212333634495735,0.00688919750973582,0.97717297077179,0.0255673546344042,-0.999415755271912,-0.0226810686290264,-0.00175918487366289,-0.999964952468872,0.00819147098809481,-0.398028314113617,-0.900785028934479,-0.173665925860405,-0.0218802746385336,-0.999595522880554,-0.0181688312441111,0.0543853044509888,-0.998432219028473,0.0132427895441651,-0.523982346057892,-0.0712270736694336,0.84874564409256,-0.402616918087006,-0.0888235345482826,0.911048829555511,-0.528063654899597,-0.815820395946503,-0.235766589641571,-0.923175036907196,-0.0421931222081184,-0.382057130336761,0.000390452827559784,-0.997518658638,-0.0704029947519302,-0.0218802746385336,-0.999595522880554,-0.0181688312441111,-0.904857993125916,-0.040775440633297,-0.423756152391434,-0.301055073738098,0.00745314499363303,0.95357757806778,-0.0901898071169853,0.99570232629776,0.0210446678102016,0.302121043205261,0.934791028499603,0.186784848570824,-0.369331032037735,-0.0197168234735727,0.929088771343231,-0.865401327610016,0.030637389048934,-0.500141859054565,-0.915477275848389,-0.0129481544718146,-0.402161359786987,-0.9271479845047,-0.0142314406111836,-0.374425023794174,-0.903695702552795,0.0354276485741138,-0.426707029342651,0.0255673546344042,-0.999415755271912,-0.0226810686290264,-0.0218802746385336,-0.999595522880554,-0.0181688312441111,
- 0.000390452827559784,-0.997518658638,-0.0704029947519302,0.0266990065574646,-0.999415934085846,-0.021332086995244,0.124666802585125,-0.00348843773826957,0.992192625999451,0.277085959911346,0.00748524675145745,0.960815966129303,0.352714121341705,0.0234224442392588,0.935437977313995,-0.523982346057892,-0.0712270736694336,0.84874564409256,-0.301055073738098,0.00745314499363303,0.95357757806778,-0.369331032037735,-0.0197168234735727,0.929088771343231,-0.402616918087006,-0.0888235345482826,0.911048829555511,0.933934807777405,-0.00997213274240494,0.357304513454437,0.934975862503052,0.00713651115074754,0.354639619588852,0.932910799980164,0.0831979960203171,0.350364953279495,0.923579335212708,0.0842339098453522,0.374039828777313,0.925717771053314,0.000924234802369028,0.378214240074158,0.947707295417786,0.0779985934495926,0.309462696313858,0.951211214065552,0.0234792623668909,0.307645887136459,-0.912640631198883,-0.0283500868827105,-0.40777850151062,-0.905994832515717,0.00906260777264833,-0.423191756010056,-0.877855539321899,-0.040848396718502,-0.477180302143097,-0.878181636333466,-0.0459930375218391,-0.476110875606537,-0.91264146566391,0.00458858767524362,-0.408735275268555,-0.915477275848389,-0.0129481544718146,-0.402161359786987,-0.862470030784607,-0.278159379959106,-0.422815352678299,-0.144205391407013,-0.989545464515686,0.00210092728957534,0.0310090743005276,0.990608930587769,-0.13316236436367,-0.853232502937317,0.280606031417847,-0.439607232809067,-0.865401327610016,0.030637389048934,-0.500141859054565,-0.9271479845047,-0.0142314406111836,-0.374425023794174,-0.0818364322185516,-0.985251069068909,-0.150276750326157,-0.897356271743774,-0.279502719640732,-0.341511160135269,-0.0608841255307198,0.99372124671936,0.0938690081238747,-0.903695702552795,0.0354276485741138,-0.426707029342651,-0.912134826183319,0.281780660152435,-0.297673583030701,-0.246643468737602,-0.957576751708984,-0.149043127894402,0.000390452827559784,-0.997518658638,-0.0704029947519302,-0.923175036907196,-0.0421931222081184,-0.382057130336761,-0.904857993125916,-0.040775440633297,-0.423756152391434,
- -0.0218802746385336,-0.999595522880554,-0.0181688312441111,-0.398028314113617,-0.900785028934479,-0.173665925860405,-0.999803245067596,-0.0115271592512727,-0.0161421168595552,-0.108701474964619,-0.990854144096375,0.0799502208828926,-0.101835444569588,-0.980273246765137,-0.169393301010132,-0.999115526676178,-0.0121928760781884,-0.0402427949011326,-0.959758222103119,-0.278753727674484,-0.0340660884976387,-0.999803245067596,-0.0115271592512727,-0.0161421168595552,-0.993894696235657,0.0301058553159237,-0.106145545840263,-0.957558631896973,0.27972674369812,-0.0695294886827469,-0.0860465690493584,-0.0363249741494656,0.995628714561462,-0.990053296089172,0.139211773872375,-0.020361203700304,-0.998995304107666,-0.0441244132816792,-0.00784208532422781,-0.0750092267990112,-0.018759997561574,0.997006356716156,-0.0750092267990112,-0.018759997561574,0.997006356716156,-0.998995304107666,-0.0441244132816792,-0.00784208532422781,-0.574690341949463,-0.818191289901733,0.0171436537057161,-0.0164645072072744,-0.0773575380444527,0.996867477893829,-0.0184098724275827,0.987056732177734,-0.15931136906147,-0.993894696235657,0.0301058553159237,-0.106145545840263,-0.994304656982422,0.0367147959768772,-0.10005159676075,-0.0187813676893711,0.998528122901917,0.0508827865123749,0.00290628429502249,-0.999282956123352,-0.0377507768571377,0.0160209648311138,-0.999860405921936,-0.00476708728820086,-0.0258280895650387,-0.99900758266449,-0.0362857431173325,-0.286643773317337,-0.957966148853302,-0.0116708995774388,-0.999115526676178,-0.0121928760781884,-0.0402427949011326,-0.959303677082062,-0.279158651828766,-0.0425067692995071,-0.959456205368042,0.281839340925217,-0.00322743970900774,-0.994304656982422,0.0367147959768772,-0.10005159676075,0.988524258136749,-0.140409380197525,0.0557227320969105,0.0109731713309884,0.0173354540020227,0.999789476394653,0.00119557313155383,0.00798680912703276,0.999967396259308,0.996609926223755,0.0430927537381649,0.0700831040740013,0.996609926223755,0.0430927537381649,0.0700831040740013,0.00119557313155383,0.00798680912703276,0.999967396259308,
- -0.0569783113896847,0.0660329237580299,0.99618935585022,0.575917541980743,0.814552783966064,0.0694472193717957,0.0147963520139456,-0.999868869781494,-0.00657186144962907,0.000412146357120946,-0.999532759189606,0.0305626485496759,-0.286265254020691,-0.957952260971069,-0.0194843076169491,-0.0259375888854265,-0.999663531780243,1.86206470971229e-005,0.061641126871109,-0.997930109500885,0.0183319207280874,-0.1240429058671,-0.0442570969462395,0.991289436817169,-0.0164645072072744,-0.0773575380444527,0.996867477893829,-0.574690341949463,-0.818191289901733,0.0171436537057161,-0.998810648918152,-0.0447970405220985,0.0192512571811676,-0.0258280895650387,-0.99900758266449,-0.0362857431173325,-0.0259375888854265,-0.999663531780243,1.86206470971229e-005,-0.996151208877563,-0.0437370203435421,-0.0759597718715668,0.080439880490303,0.0345969535410404,0.99615889787674,-0.0587969496846199,0.99801242351532,0.022674473002553,0.575917541980743,0.814552783966064,0.0694472193717957,-0.0569783113896847,0.0660329237580299,0.99618935585022,-0.993894696235657,0.0301058553159237,-0.106145545840263,-0.999803245067596,-0.0115271592512727,-0.0161421168595552,-0.999115526676178,-0.0121928760781884,-0.0402427949011326,-0.994304656982422,0.0367147959768772,-0.10005159676075,0.0147963520139456,-0.999868869781494,-0.00657186144962907,-0.0259375888854265,-0.999663531780243,1.86206470971229e-005,-0.0258280895650387,-0.99900758266449,-0.0362857431173325,0.0160209648311138,-0.999860405921936,-0.00476708728820086,-0.0569783113896847,0.0660329237580299,0.99618935585022,0.00119557313155383,0.00798680912703276,0.999967396259308,-0.0750092267990112,-0.018759997561574,0.997006356716156,-0.0164645072072744,-0.0773575380444527,0.996867477893829,-0.1240429058671,-0.0442570969462395,0.991289436817169,0.080439880490303,0.0345969535410404,0.99615889787674,-0.0569783113896847,0.0660329237580299,0.99618935585022,-0.0164645072072744,-0.0773575380444527,0.996867477893829,-0.0860465690493584,-0.0363249741494656,0.995628714561462,-0.0750092267990112,-0.018759997561574,0.997006356716156,
- 0.00119557313155383,0.00798680912703276,0.999967396259308,0.0109731713309884,0.0173354540020227,0.999789476394653,0.99622768163681,0.0510220117866993,0.0701932087540627,0.995922923088074,0.0564243942499161,0.0703829452395439,0.999972999095917,0.00327589618973434,-0.00657992996275425,0.999408066272736,0.0337530411779881,-0.00664762081578374,0.998569309711456,-0.00959073752164841,0.0526060275733471,-0.999589920043945,-0.0275013223290443,-0.00798123888671398,-0.999640583992004,0.00941640883684158,-0.0251004584133625,-0.995493650436401,-0.0421546250581741,-0.0849436968564987,-0.995378494262695,-0.0472069978713989,-0.083624504506588,-0.999942004680634,0.00536310113966465,-0.00934226997196674,-0.999803245067596,-0.0115271592512727,-0.0161421168595552,-0.959758222103119,-0.278753727674484,-0.0340660884976387,-0.108701474964619,-0.990854144096375,0.0799502208828926,-0.0184098724275827,0.987056732177734,-0.15931136906147,-0.957558631896973,0.27972674369812,-0.0695294886827469,-0.993894696235657,0.0301058553159237,-0.106145545840263,-0.999115526676178,-0.0121928760781884,-0.0402427949011326,-0.101835444569588,-0.980273246765137,-0.169393301010132,-0.959303677082062,-0.279158651828766,-0.0425067692995071,-0.0187813676893711,0.998528122901917,0.0508827865123749,-0.994304656982422,0.0367147959768772,-0.10005159676075,-0.959456205368042,0.281839340925217,-0.00322743970900774,-0.286643773317337,-0.957966148853302,-0.0116708995774388,-0.0258280895650387,-0.99900758266449,-0.0362857431173325,-0.998810648918152,-0.0447970405220985,0.0192512571811676,-0.996151208877563,-0.0437370203435421,-0.0759597718715668,-0.0259375888854265,-0.999663531780243,1.86206470971229e-005,-0.286265254020691,-0.957952260971069,-0.0194843076169491,-0.100279375910759,-0.516758859157562,-0.850237846374512,-0.0558393113315105,-0.518827855587006,-0.853053152561188,-0.0112882880493999,-0.519865989685059,-0.854173243045807,-0.0558393113315105,-0.518827855587006,-0.853053152561188,-0.864405155181885,0.502581357955933,-0.0146879032254219,-0.86440509557724,0.502581417560577,-0.0146879041567445,
- -0.864405155181885,0.502581357955933,-0.0146879032254219,-0.86440509557724,0.502581417560577,-0.0146879041567445,-0.864729285240173,-0.227215856313705,-0.447902083396912,0.382521897554398,0.100413151085377,-0.918473839759827,0.542655885219574,-0.168712198734283,-0.822836995124817,0.230698853731155,-0.972239136695862,0.0391035862267017,-0.453451007604599,0.858385860919952,-0.23990797996521,0.207666710019112,0.417699187994003,-0.88453483581543,0.0736695677042007,0.251745790243149,-0.964985430240631,-0.453451007604599,0.858385860919952,-0.23990797996521,0.0736695677042007,0.251745790243149,-0.964985430240631,0.382521897554398,0.100413151085377,-0.918473839759827,-0.864729285240173,-0.227215856313705,-0.447902083396912,0.416372537612915,-0.0403846576809883,-0.908296704292297,0.207666710019112,0.417699187994003,-0.88453483581543,0.467286020517349,0.0219767596572638,-0.883832991123199,0.682003200054169,-0.0792778059840202,-0.727039635181427,0.668592154979706,-0.0469758175313473,-0.742144048213959,0.0715827196836472,0.17442025244236,-0.982065856456757,0.902389883995056,0.286675989627838,-0.321728765964508,0.668592154979706,-0.0469758175313473,-0.742144048213959,0.682003200054169,-0.0792778059840202,-0.727039635181427,0.688095450401306,-0.191399604082108,-0.69992196559906,0.690397977828979,-0.131025835871696,-0.711465299129486,0.670309007167816,-0.326739013195038,-0.666278839111328,0.643322944641113,-0.315150529146194,-0.697721838951111,0.570061564445496,-0.00969167519360781,-0.821544826030731,0.633159160614014,-0.0872233584523201,-0.769091427326202,0.902389883995056,0.286675989627838,-0.321728765964508,0.0715827196836472,0.17442025244236,-0.982065856456757,0.808379828929901,0.282109290361404,-0.516658961772919,0.68905246257782,-0.00535616185516119,-0.724691689014435,0.601544618606567,-0.0159980244934559,-0.798678994178772,0.481765359640121,-0.0346230827271938,-0.875615954399109,0.610804677009583,-0.0937766954302788,-0.78620833158493,0.643344342708588,-0.113799050450325,-0.757071852684021,0.529042601585388,0.00456374790519476,-0.848582863807678,
- 0.423184335231781,0.356442272663116,-0.832984983921051,0.48541322350502,-0.27656814455986,-0.829387664794922,-0.428395569324493,0.893357872962952,-0.135605961084366,-0.404531359672546,0.899419724941254,-0.165525317192078,-0.218238532543182,0.955964684486389,-0.196223020553589,-0.429947227239609,0.855277240276337,-0.289216697216034,-0.453451007604599,0.858385860919952,-0.23990797996521,-0.350917607545853,0.918703258037567,-0.181220948696136,0.643322944641113,-0.315150529146194,-0.697721838951111,0.670309007167816,-0.326739013195038,-0.666278839111328,0.643344342708588,-0.113799050450325,-0.757071852684021,0.207666710019112,0.417699187994003,-0.88453483581543,0.416372537612915,-0.0403846576809883,-0.908296704292297,0.414671063423157,0.0898940488696098,-0.905520260334015,0.0736695677042007,0.251745790243149,-0.964985430240631,0.0736695677042007,0.251745790243149,-0.964985430240631,0.414671063423157,0.0898940488696098,-0.905520260334015,0.382521897554398,0.100413151085377,-0.918473839759827,0.207666710019112,0.417699187994003,-0.88453483581543,-0.453451007604599,0.858385860919952,-0.23990797996521,-0.429947227239609,0.855277240276337,-0.289216697216034,0.467286020517349,0.0219767596572638,-0.883832991123199,0.448745310306549,-0.102624304592609,-0.887747645378113,0.230698853731155,-0.972239136695862,0.0391035862267017,0.542655885219574,-0.168712198734283,-0.822836995124817,0.643322944641113,-0.315150529146194,-0.697721838951111,0.377522170543671,0.38738077878952,-0.841078639030457,0.593833982944489,0.127301633358002,-0.794452905654907,0.570061564445496,-0.00969167519360781,-0.821544826030731,0.551185190677643,-0.627039015293121,0.550469636917114,0.646019995212555,-0.185698017477989,0.740387976169586,0.739198803901672,-0.00148729258216918,-0.673485577106476,0.858609616756439,0.193614691495895,-0.474660694599152,0.701298773288727,0.018217459321022,-0.712634682655334,0.561266779899597,0.31208074092865,-0.766541063785553,0.83085161447525,0.178982898592949,-0.526925802230835,0.297705501317978,-0.278717011213303,-0.913065373897552,
- 0.601836502552032,0.293396800756454,-0.74277251958847,0.739198803901672,-0.00148729258216918,-0.673485577106476,0.561266779899597,0.31208074092865,-0.766541063785553,0.701298773288727,0.018217459321022,-0.712634682655334,0.297705501317978,-0.278717011213303,-0.913065373897552,0.83085161447525,0.178982898592949,-0.526925802230835,0.656350314617157,0.0679722800850868,-0.751388013362885,0.843983352184296,0.035755667835474,-0.535176396369934,0.50367933511734,-0.182976990938187,-0.844290494918823,0.690397977828979,-0.131025835871696,-0.711465299129486,0.688095450401306,-0.191399604082108,-0.69992196559906,0.834094345569611,0.170588329434395,-0.524581909179688,0.503527104854584,-0.108652547001839,-0.857120215892792,0.423184335231781,0.356442272663116,-0.832984983921051,0.682440459728241,0.144170671701431,-0.716582059860229,0.352063864469528,0.165179625153542,-0.921285331249237,0.562426447868347,0.0397461839020252,-0.825891494750977,0.558500528335571,-0.088852122426033,-0.824731767177582,0.554560661315918,-0.282260000705719,-0.782810270786285,0.419526308774948,-0.12736414372921,-0.898763656616211,0.567165195941925,-0.122304819524288,-0.814472377300262,0.481765359640121,-0.0346230827271938,-0.875615954399109,0.48541322350502,-0.27656814455986,-0.829387664794922,0.579824805259705,-0.0410284101963043,-0.81370747089386,0.610804677009583,-0.0937766954302788,-0.78620833158493,0.682440459728241,0.144170671701431,-0.716582059860229,0.448745310306549,-0.102624304592609,-0.887747645378113,0.542655885219574,-0.168712198734283,-0.822836995124817,0.352063864469528,0.165179625153542,-0.921285331249237,0.682440459728241,0.144170671701431,-0.716582059860229,0.423184335231781,0.356442272663116,-0.832984983921051,0.529042601585388,0.00456374790519476,-0.848582863807678,0.601544618606567,-0.0159980244934559,-0.798678994178772,0.856991827487946,-0.0821521058678627,-0.508739650249481,0.845505237579346,0.0407954901456833,-0.532406449317932,0.377522170543671,0.38738077878952,-0.841078639030457,0.643322944641113,-0.315150529146194,-0.697721838951111,
- 0.643344342708588,-0.113799050450325,-0.757071852684021,0.610804677009583,-0.0937766954302788,-0.78620833158493,0.579824805259705,-0.0410284101963043,-0.81370747089386,0.554560661315918,-0.282260000705719,-0.782810270786285,0.558500528335571,-0.088852122426033,-0.824731767177582,0.562426447868347,0.0397461839020252,-0.825891494750977,0.352063864469528,0.165179625153542,-0.921285331249237,0.739198803901672,-0.00148729258216918,-0.673485577106476,0.601836502552032,0.293396800756454,-0.74277251958847,0.644351184368134,-0.0228892490267754,-0.76438707113266,0.858609616756439,0.193614691495895,-0.474660694599152,0.561266779899597,0.31208074092865,-0.766541063785553,0.406489431858063,0.795752882957459,0.448936104774475,-0.00995325762778521,0.994447886943817,-0.104758620262146,0.83085161447525,0.178982898592949,-0.526925802230835,0.739198803901672,-0.00148729258216918,-0.673485577106476,0.646019995212555,-0.185698017477989,0.740387976169586,0.406489431858063,0.795752882957459,0.448936104774475,0.561266779899597,0.31208074092865,-0.766541063785553,0.83085161447525,0.178982898592949,-0.526925802230835,-0.00995325762778521,0.994447886943817,-0.104758620262146,-0.425564765930176,0.728594899177551,-0.536697566509247,0.656350314617157,0.0679722800850868,-0.751388013362885,0.688095450401306,-0.191399604082108,-0.69992196559906,0.670309007167816,-0.326739013195038,-0.666278839111328,0.633159160614014,-0.0872233584523201,-0.769091427326202,0.834094345569611,0.170588329434395,-0.524581909179688,0.682003200054169,-0.0792778059840202,-0.727039635181427,0.643344342708588,-0.113799050450325,-0.757071852684021,0.670309007167816,-0.326739013195038,-0.666278839111328,0.688095450401306,-0.191399604082108,-0.69992196559906,0.643344342708588,-0.113799050450325,-0.757071852684021,0.682003200054169,-0.0792778059840202,-0.727039635181427,0.902389883995056,0.286675989627838,-0.321728765964508,0.601544618606567,-0.0159980244934559,-0.798678994178772,0.601544618606567,-0.0159980244934559,-0.798678994178772,0.902389883995056,0.286675989627838,-0.321728765964508,
- 0.68905246257782,-0.00535616185516119,-0.724691689014435,0.856991827487946,-0.0821521058678627,-0.508739650249481,0.601836502552032,0.293396800756454,-0.74277251958847,0.690397977828979,-0.131025835871696,-0.711465299129486,0.503527104854584,-0.108652547001839,-0.857120215892792,0.644351184368134,-0.0228892490267754,-0.76438707113266,0.690397977828979,-0.131025835871696,-0.711465299129486,0.601836502552032,0.293396800756454,-0.74277251958847,0.701298773288727,0.018217459321022,-0.712634682655334,0.668592154979706,-0.0469758175313473,-0.742144048213959,0.668592154979706,-0.0469758175313473,-0.742144048213959,0.701298773288727,0.018217459321022,-0.712634682655334,0.297705501317978,-0.278717011213303,-0.913065373897552,0.0715827196836472,0.17442025244236,-0.982065856456757,0.0715827196836472,0.17442025244236,-0.982065856456757,0.297705501317978,-0.278717011213303,-0.913065373897552,0.50367933511734,-0.182976990938187,-0.844290494918823,0.50367933511734,-0.182976990938187,-0.844290494918823,0.843983352184296,0.035755667835474,-0.535176396369934,0.611708283424377,-0.79039865732193,-0.0329102203249931,0.0715827196836472,0.17442025244236,-0.982065856456757,0.50367933511734,-0.182976990938187,-0.844290494918823,0.611708283424377,-0.79039865732193,-0.0329102203249931,0.808379828929901,0.282109290361404,-0.516658961772919,0.601544618606567,-0.0159980244934559,-0.798678994178772,0.845505237579346,0.0407954901456833,-0.532406449317932,0.512938022613525,0.00223198067396879,-0.858422696590424,0.529042601585388,0.00456374790519476,-0.848582863807678,0.481765359640121,-0.0346230827271938,-0.875615954399109,0.554560661315918,-0.282260000705719,-0.782810270786285,0.414671063423157,0.0898940488696098,-0.905520260334015,0.416372537612915,-0.0403846576809883,-0.908296704292297,0.419526308774948,-0.12736414372921,-0.898763656616211,0.382521897554398,0.100413151085377,-0.918473839759827,0.414671063423157,0.0898940488696098,-0.905520260334015,0.554560661315918,-0.282260000705719,-0.782810270786285,0.352063864469528,0.165179625153542,-0.921285331249237,
- 0.542655885219574,-0.168712198734283,-0.822836995124817,0.377522170543671,0.38738077878952,-0.841078639030457,0.558500528335571,-0.088852122426033,-0.824731767177582,0.567165195941925,-0.122304819524288,-0.814472377300262,0.593833982944489,0.127301633358002,-0.794452905654907,0.558500528335571,-0.088852122426033,-0.824731767177582,0.377522170543671,0.38738077878952,-0.841078639030457,0.579824805259705,-0.0410284101963043,-0.81370747089386,0.562426447868347,0.0397461839020252,-0.825891494750977,0.48541322350502,-0.27656814455986,-0.829387664794922,0.423184335231781,0.356442272663116,-0.832984983921051,0.562426447868347,0.0397461839020252,-0.825891494750977,0.579824805259705,-0.0410284101963043,-0.81370747089386,0.529042601585388,0.00456374790519476,-0.848582863807678,0.48541322350502,-0.27656814455986,-0.829387664794922,0.481765359640121,-0.0346230827271938,-0.875615954399109,-0.218238532543182,0.955964684486389,-0.196223020553589,0.542736113071442,0.096488744020462,-0.834342539310455,0.467286020517349,0.0219767596572638,-0.883832991123199,-0.429947227239609,0.855277240276337,-0.289216697216034,0.638757646083832,-0.0759034231305122,-0.765654921531677,0.378299355506897,-0.913102924823761,0.152094274759293,0.230698853731155,-0.972239136695862,0.0391035862267017,0.448745310306549,-0.102624304592609,-0.887747645378113,0.512938022613525,0.00223198067396879,-0.858422696590424,0.638757646083832,-0.0759034231305122,-0.765654921531677,0.448745310306549,-0.102624304592609,-0.887747645378113,0.682440459728241,0.144170671701431,-0.716582059860229,0.529042601585388,0.00456374790519476,-0.848582863807678,-0.345896929502487,0.887174427509308,-0.305412918329239,-0.2711361348629,0.892441689968109,-0.360601127147675,-0.234522804617882,0.893280804157257,-0.383469134569168,-0.287872731685638,0.89409065246582,-0.343120098114014,-0.289972484111786,0.894847571849823,-0.33935809135437,-0.339542925357819,0.892105519771576,-0.298091351985931,0.879967331886292,-0.227276101708412,0.417136758565903,-0.171403452754021,-0.973554968833923,-0.151034861803055,
- 0.40805983543396,-0.179729700088501,-0.895089089870453,0.573068201541901,0.0922737047076225,-0.814296305179596,0.468148231506348,0.856396436691284,0.217766791582108,0.778577148914337,0.287106901407242,-0.558020830154419,0.620817363262177,0.467579632997513,-0.629249513149261,0.468148231506348,0.856396436691284,0.217766791582108,0.879967331886292,-0.227276101708412,0.417136758565903,0.573068201541901,0.0922737047076225,-0.814296305179596,0.778577148914337,0.287106901407242,-0.558020830154419,0.546418190002441,-0.0393333546817303,-0.836588263511658,0.4479139149189,0.0611314997076988,-0.891984343528748,0.620817363262177,0.467579632997513,-0.629249513149261,0.599326610565186,-0.0703122466802597,-0.797410666942596,0.148810610175133,0.288258045911789,-0.94591897726059,0.986012518405914,0.149759218096733,-0.0731543600559235,0.685892999172211,-0.0476699136197567,-0.726139307022095,0.685892999172211,-0.0476699136197567,-0.726139307022095,0.649828732013702,-0.152199059724808,-0.744686603546143,0.561438620090485,-0.20085421204567,-0.802772879600525,0.599326610565186,-0.0703122466802597,-0.797410666942596,0.503251612186432,-0.384560406208038,-0.773854672908783,0.619755446910858,-0.0753428786993027,-0.781170129776001,0.580195665359497,-0.0289004053920507,-0.813964247703552,0.398301690816879,-0.334645956754684,-0.854030251502991,0.148810610175133,0.288258045911789,-0.94591897726059,0.627492547035217,-0.00972377136349678,-0.778561890125275,0.370423644781113,0.260074764490128,-0.89171040058136,0.986012518405914,0.149759218096733,-0.0731543600559235,0.606229245662689,-0.0233761053532362,-0.794946253299713,0.546650230884552,-0.124362207949162,-0.82807457447052,0.481619298458099,-0.132354751229286,-0.866328477859497,0.637109994888306,-0.03188581392169,-0.770113050937653,0.521729469299316,0.00239374465309083,-0.853107631206512,0.51832503080368,-0.327071130275726,-0.790166854858398,0.555948853492737,0.413613349199295,-0.721002697944641,0.371364384889603,0.893885016441345,0.251114040613174,0.357117623090744,0.918523490428925,0.169651433825493,
- 0.468148231506348,0.856396436691284,0.217766791582108,0.488748908042908,0.855625629425049,0.170380204916,0.4381944835186,0.888491034507751,0.136269390583038,0.378167659044266,0.899234890937805,0.219922557473183,0.398301690816879,-0.334645956754684,-0.854030251502991,0.546650230884552,-0.124362207949162,-0.82807457447052,0.503251612186432,-0.384560406208038,-0.773854672908783,0.620817363262177,0.467579632997513,-0.629249513149261,0.778577148914337,0.287106901407242,-0.558020830154419,0.559775590896606,0.127755895256996,-0.818736672401428,0.546418190002441,-0.0393333546817303,-0.836588263511658,0.778577148914337,0.287106901407242,-0.558020830154419,0.573068201541901,0.0922737047076225,-0.814296305179596,0.559775590896606,0.127755895256996,-0.818736672401428,0.620817363262177,0.467579632997513,-0.629249513149261,0.4479139149189,0.0611314997076988,-0.891984343528748,0.488748908042908,0.855625629425049,0.170380204916,0.468148231506348,0.856396436691284,0.217766791582108,0.504682838916779,-0.106705591082573,-0.856684923171997,0.40805983543396,-0.179729700088501,-0.895089089870453,-0.171403452754021,-0.973554968833923,-0.151034861803055,0.398301690816879,-0.334645956754684,-0.854030251502991,0.580195665359497,-0.0289004053920507,-0.813964247703552,0.491706192493439,0.155617937445641,-0.85674262046814,0.647087633609772,0.423050910234451,-0.634275674819946,-0.458885073661804,-0.619540333747864,-0.636862754821777,0.520347654819489,0.190143078565598,-0.832516610622406,0.707113087177277,0.0106040919199586,-0.707020998001099,-0.623530626296997,-0.187952622771263,-0.758869826793671,0.740396201610565,0.00769472122192383,-0.672126710414886,0.923997521400452,-0.275849342346191,-0.264831334352493,0.557784020900726,0.189086616039276,-0.808160364627838,0.794604361057281,0.345944255590439,-0.4989253282547,0.769834816455841,0.288290828466415,-0.569423079490662,0.740396201610565,0.00769472122192383,-0.672126710414886,0.794604361057281,0.345944255590439,-0.4989253282547,0.707113087177277,0.0106040919199586,-0.707020998001099,0.923997521400452,-0.275849342346191,-0.264831334352493,
- 0.855564832687378,-0.162894755601883,-0.491400092840195,0.529949843883514,0.010765410028398,-0.847960710525513,0.852208077907562,0.0841042548418045,-0.516398906707764,0.557784020900726,0.189086616039276,-0.808160364627838,0.649828732013702,-0.152199059724808,-0.744686603546143,0.828324615955353,-0.123354516923428,-0.546499729156494,0.370299130678177,0.162352755665779,-0.914614737033844,0.561438620090485,-0.20085421204567,-0.802772879600525,0.555948853492737,0.413613349199295,-0.721002697944641,0.465402752161026,0.0437956526875496,-0.884014844894409,0.644181668758392,0.272574186325073,-0.714655995368958,0.224989905953407,0.154222533106804,-0.962078511714935,0.468231856822968,-0.10282651335001,-0.877602338790894,0.454601645469666,-0.129665076732636,-0.881206154823303,0.554527163505554,-0.150023743510246,-0.818530678749084,0.403915613889694,-0.230839475989342,-0.885192215442657,0.637109994888306,-0.03188581392169,-0.770113050937653,0.481619298458099,-0.132354751229286,-0.866328477859497,0.516652643680573,-0.091792993247509,-0.851260423660278,0.51832503080368,-0.327071130275726,-0.790166854858398,0.224989905953407,0.154222533106804,-0.962078511714935,0.644181668758392,0.272574186325073,-0.714655995368958,0.40805983543396,-0.179729700088501,-0.895089089870453,0.504682838916779,-0.106705591082573,-0.856684923171997,0.224989905953407,0.154222533106804,-0.962078511714935,0.521729469299316,0.00239374465309083,-0.853107631206512,0.555948853492737,0.413613349199295,-0.721002697944641,0.606229245662689,-0.0233761053532362,-0.794946253299713,0.199750572443008,-0.000832007615827024,-0.9798464179039,0.273586571216583,-0.11789770424366,-0.954594433307648,0.647087633609772,0.423050910234451,-0.634275674819946,0.516652643680573,-0.091792993247509,-0.851260423660278,0.481619298458099,-0.132354751229286,-0.866328477859497,0.546650230884552,-0.124362207949162,-0.82807457447052,0.398301690816879,-0.334645956754684,-0.854030251502991,0.403915613889694,-0.230839475989342,-0.885192215442657,0.644181668758392,0.272574186325073,-0.714655995368958,
- 0.465402752161026,0.0437956526875496,-0.884014844894409,0.468231856822968,-0.10282651335001,-0.877602338790894,0.707113087177277,0.0106040919199586,-0.707020998001099,0.520347654819489,0.190143078565598,-0.832516610622406,0.781607568264008,-0.00639863731339574,-0.623737692832947,0.769834816455841,0.288290828466415,-0.569423079490662,0.794604361057281,0.345944255590439,-0.4989253282547,0.557784020900726,0.189086616039276,-0.808160364627838,0.0936446413397789,0.995280146598816,0.0254575908184052,-0.376231104135513,0.79697322845459,-0.472529321908951,0.707113087177277,0.0106040919199586,-0.707020998001099,0.794604361057281,0.345944255590439,-0.4989253282547,-0.376231104135513,0.79697322845459,-0.472529321908951,-0.623530626296997,-0.187952622771263,-0.758869826793671,0.557784020900726,0.189086616039276,-0.808160364627838,0.852208077907562,0.0841042548418045,-0.516398906707764,0.454632103443146,0.731918632984161,0.507547795772552,0.0936446413397789,0.995280146598816,0.0254575908184052,0.561438620090485,-0.20085421204567,-0.802772879600525,0.370299130678177,0.162352755665779,-0.914614737033844,0.619755446910858,-0.0753428786993027,-0.781170129776001,0.503251612186432,-0.384560406208038,-0.773854672908783,0.599326610565186,-0.0703122466802597,-0.797410666942596,0.561438620090485,-0.20085421204567,-0.802772879600525,0.503251612186432,-0.384560406208038,-0.773854672908783,0.546650230884552,-0.124362207949162,-0.82807457447052,0.546650230884552,-0.124362207949162,-0.82807457447052,0.606229245662689,-0.0233761053532362,-0.794946253299713,0.148810610175133,0.288258045911789,-0.94591897726059,0.599326610565186,-0.0703122466802597,-0.797410666942596,0.606229245662689,-0.0233761053532362,-0.794946253299713,0.273586571216583,-0.11789770424366,-0.954594433307648,0.627492547035217,-0.00972377136349678,-0.778561890125275,0.148810610175133,0.288258045911789,-0.94591897726059,0.769834816455841,0.288290828466415,-0.569423079490662,0.781607568264008,-0.00639863731339574,-0.623737692832947,0.828324615955353,-0.123354516923428,-0.546499729156494,
- 0.649828732013702,-0.152199059724808,-0.744686603546143,0.649828732013702,-0.152199059724808,-0.744686603546143,0.685892999172211,-0.0476699136197567,-0.726139307022095,0.740396201610565,0.00769472122192383,-0.672126710414886,0.769834816455841,0.288290828466415,-0.569423079490662,0.685892999172211,-0.0476699136197567,-0.726139307022095,0.986012518405914,0.149759218096733,-0.0731543600559235,0.923997521400452,-0.275849342346191,-0.264831334352493,0.740396201610565,0.00769472122192383,-0.672126710414886,0.986012518405914,0.149759218096733,-0.0731543600559235,0.855564832687378,-0.162894755601883,-0.491400092840195,0.923997521400452,-0.275849342346191,-0.264831334352493,0.855564832687378,-0.162894755601883,-0.491400092840195,-0.0145244672894478,-0.796336710453033,-0.604679226875305,0.529949843883514,0.010765410028398,-0.847960710525513,0.986012518405914,0.149759218096733,-0.0731543600559235,0.370423644781113,0.260074764490128,-0.89171040058136,-0.0145244672894478,-0.796336710453033,-0.604679226875305,0.855564832687378,-0.162894755601883,-0.491400092840195,0.606229245662689,-0.0233761053532362,-0.794946253299713,0.637109994888306,-0.03188581392169,-0.770113050937653,0.521729469299316,0.00239374465309083,-0.853107631206512,0.532812476158142,0.00347501039505005,-0.846226096153259,0.199750572443008,-0.000832007615827024,-0.9798464179039,0.403915613889694,-0.230839475989342,-0.885192215442657,0.554527163505554,-0.150023743510246,-0.818530678749084,0.546418190002441,-0.0393333546817303,-0.836588263511658,0.559775590896606,0.127755895256996,-0.818736672401428,0.573068201541901,0.0922737047076225,-0.814296305179596,0.40805983543396,-0.179729700088501,-0.895089089870453,0.644181668758392,0.272574186325073,-0.714655995368958,0.403915613889694,-0.230839475989342,-0.885192215442657,0.559775590896606,0.127755895256996,-0.818736672401428,0.647087633609772,0.423050910234451,-0.634275674819946,0.491706192493439,0.155617937445641,-0.85674262046814,0.454601645469666,-0.129665076732636,-0.881206154823303,0.468231856822968,-0.10282651335001,-0.877602338790894,
- 0.468231856822968,-0.10282651335001,-0.877602338790894,0.465402752161026,0.0437956526875496,-0.884014844894409,0.516652643680573,-0.091792993247509,-0.851260423660278,0.647087633609772,0.423050910234451,-0.634275674819946,0.51832503080368,-0.327071130275726,-0.790166854858398,0.516652643680573,-0.091792993247509,-0.851260423660278,0.465402752161026,0.0437956526875496,-0.884014844894409,0.555948853492737,0.413613349199295,-0.721002697944641,0.521729469299316,0.00239374465309083,-0.853107631206512,0.637109994888306,-0.03188581392169,-0.770113050937653,0.51832503080368,-0.327071130275726,-0.790166854858398,-0.351128965616226,-0.913130164146423,-0.207127392292023,0.182825326919556,-0.0987377464771271,-0.978174686431885,0.504682838916779,-0.106705591082573,-0.856684923171997,-0.171403452754021,-0.973554968833923,-0.151034861803055,0.182825326919556,-0.0987377464771271,-0.978174686431885,0.532812476158142,0.00347501039505005,-0.846226096153259,0.521729469299316,0.00239374465309083,-0.853107631206512,0.224989905953407,0.154222533106804,-0.962078511714935,0.504682838916779,-0.106705591082573,-0.856684923171997,0.309443265199661,0.892455816268921,0.328279823064804,0.245510667562485,0.887159824371338,0.390732616186142,0.241393759846687,0.892398536205292,0.381253033876419,0.286261916160584,0.894912898540497,0.342323064804077,0.28977906703949,0.894155859947205,0.341340571641922,0.334882110357285,0.893622219562531,0.298820048570633,0.106899671256542,-0.994199633598328,0.011814758181572,0.741454124450684,-0.0293597541749477,-0.670360863208771,0.520347654819489,0.190143078565598,-0.832516610622406,-0.458885073661804,-0.619540333747864,-0.636862754821777,0.621281981468201,-0.101568453013897,-0.776976466178894,-0.361237287521362,-0.77774852514267,-0.514407217502594,0.551185190677643,-0.627039015293121,0.550469636917114,0.858609616756439,0.193614691495895,-0.474660694599152,0.500088810920715,0.0404013469815254,-0.865031123161316,0.4381944835186,0.888491034507751,0.136269390583038,0.488748908042908,0.855625629425049,0.170380204916,0.4479139149189,0.0611314997076988,-0.891984343528748,
- 0.840368449687958,0.201173961162567,-0.503298997879028,0.719613969326019,0.0630813762545586,-0.69150310754776,0.444595694541931,0.209982573986053,-0.870770871639252,0.621281981468201,-0.101568453013897,-0.776976466178894,0.39748215675354,0.295238077640533,-0.868816673755646,0.840368449687958,0.201173961162567,-0.503298997879028,0.487931609153748,-0.0785461589694023,-0.869340658187866,0.586080968379974,0.158094868063927,-0.794679224491119,0.586080968379974,0.158094868063927,-0.794679224491119,0.487931609153748,-0.0785461589694023,-0.869340658187866,0.619457185268402,-0.0847777649760246,-0.78043931722641,0.769187569618225,-0.213873744010925,-0.602169930934906,0.663741946220398,0.166501089930534,-0.729194223880768,0.55704128742218,0.087371751666069,-0.825876116752625,0.526110231876373,0.0281043499708176,-0.849951863288879,0.594767272472382,0.0255884658545256,-0.803490579128265,0.124492101371288,0.34736704826355,-0.92942875623703,0.663741946220398,0.166501089930534,-0.729194223880768,0.736078321933746,-0.0478127487003803,-0.675205647945404,0.267295569181442,-0.0750222951173782,-0.960689723491669,0.267295569181442,-0.0750222951173782,-0.960689723491669,0.736078321933746,-0.0478127487003803,-0.675205647945404,0.55304479598999,0.0101786106824875,-0.833089470863342,0.835911691188812,-0.536147773265839,0.117462076246738,0.410789877176285,0.00271477131173015,-0.911725997924805,0.55304479598999,0.0101786106824875,-0.833089470863342,0.542736113071442,0.096488744020462,-0.834342539310455,0.452535450458527,0.0753432661294937,-0.888557851314545,0.683127462863922,-0.0521451383829117,-0.728435158729553,0.811039865016937,-0.30590346455574,-0.498635470867157,0.641887247562408,-0.0802225768566132,-0.762591063976288,0.619457185268402,-0.0847777649760246,-0.78043931722641,0.811039865016937,-0.30590346455574,-0.498635470867157,0.683127462863922,-0.0521451383829117,-0.728435158729553,0.594767272472382,0.0255884658545256,-0.803490579128265,0.889722943305969,-0.410150557756424,-0.2004234790802,0.633159160614014,-0.0872233584523201,-0.769091427326202,
- 0.570061564445496,-0.00969167519360781,-0.821544826030731,0.594767272472382,0.0255884658545256,-0.803490579128265,0.683127462863922,-0.0521451383829117,-0.728435158729553,0.834094345569611,0.170588329434395,-0.524581909179688,0.619457185268402,-0.0847777649760246,-0.78043931722641,0.487931609153748,-0.0785461589694023,-0.869340658187866,0.503527104854584,-0.108652547001839,-0.857120215892792,0.834094345569611,0.170588329434395,-0.524581909179688,0.633159160614014,-0.0872233584523201,-0.769091427326202,0.683127462863922,-0.0521451383829117,-0.728435158729553,0.619457185268402,-0.0847777649760246,-0.78043931722641,0.503527104854584,-0.108652547001839,-0.857120215892792,0.487931609153748,-0.0785461589694023,-0.869340658187866,0.840368449687958,0.201173961162567,-0.503298997879028,0.644351184368134,-0.0228892490267754,-0.76438707113266,0.570061564445496,-0.00969167519360781,-0.821544826030731,0.593833982944489,0.127301633358002,-0.794452905654907,0.663741946220398,0.166501089930534,-0.729194223880768,0.594767272472382,0.0255884658545256,-0.803490579128265,0.663741946220398,0.166501089930534,-0.729194223880768,0.593833982944489,0.127301633358002,-0.794452905654907,0.567165195941925,-0.122304819524288,-0.814472377300262,0.736078321933746,-0.0478127487003803,-0.675205647945404,0.840368449687958,0.201173961162567,-0.503298997879028,0.621281981468201,-0.101568453013897,-0.776976466178894,0.858609616756439,0.193614691495895,-0.474660694599152,0.644351184368134,-0.0228892490267754,-0.76438707113266,0.55304479598999,0.0101786106824875,-0.833089470863342,0.736078321933746,-0.0478127487003803,-0.675205647945404,0.567165195941925,-0.122304819524288,-0.814472377300262,0.419526308774948,-0.12736414372921,-0.898763656616211,0.542736113071442,0.096488744020462,-0.834342539310455,0.55304479598999,0.0101786106824875,-0.833089470863342,0.419526308774948,-0.12736414372921,-0.898763656616211,0.416372537612915,-0.0403846576809883,-0.908296704292297,0.467286020517349,0.0219767596572638,-0.883832991123199,0.370299130678177,0.162352755665779,-0.914614737033844,
- 0.828324615955353,-0.123354516923428,-0.546499729156494,0.841878831386566,-0.0872809961438179,-0.532561659812927,0.601054847240448,-0.0434047691524029,-0.798028230667114,0.370299130678177,0.162352755665779,-0.914614737033844,0.601054847240448,-0.0434047691524029,-0.798028230667114,0.566182613372803,-0.0480160415172577,-0.82288008928299,0.619755446910858,-0.0753428786993027,-0.781170129776001,0.828324615955353,-0.123354516923428,-0.546499729156494,0.781607568264008,-0.00639863731339574,-0.623737692832947,0.600845396518707,0.162476062774658,-0.7826789021492,0.841878831386566,-0.0872809961438179,-0.532561659812927,0.580195665359497,-0.0289004053920507,-0.813964247703552,0.551498889923096,0.00843142718076706,-0.834132969379425,0.476325958967209,0.145544409751892,-0.867139101028442,0.491706192493439,0.155617937445641,-0.85674262046814,0.476325958967209,0.145544409751892,-0.867139101028442,0.323980450630188,-0.116074793040752,-0.938916027545929,0.454601645469666,-0.129665076732636,-0.881206154823303,0.491706192493439,0.155617937445641,-0.85674262046814,0.741454124450684,-0.0293597541749477,-0.670360863208771,0.600845396518707,0.162476062774658,-0.7826789021492,0.781607568264008,-0.00639863731339574,-0.623737692832947,0.520347654819489,0.190143078565598,-0.832516610622406,0.323980450630188,-0.116074793040752,-0.938916027545929,0.5293248295784,-0.0873602107167244,-0.843909621238709,0.554527163505554,-0.150023743510246,-0.818530678749084,0.454601645469666,-0.129665076732636,-0.881206154823303,0.619755446910858,-0.0753428786993027,-0.781170129776001,0.566182613372803,-0.0480160415172577,-0.82288008928299,0.551498889923096,0.00843142718076706,-0.834132969379425,0.580195665359497,-0.0289004053920507,-0.813964247703552,0.5293248295784,-0.0873602107167244,-0.843909621238709,0.500088810920715,0.0404013469815254,-0.865031123161316,0.4479139149189,0.0611314997076988,-0.891984343528748,0.546418190002441,-0.0393333546817303,-0.836588263511658,0.554527163505554,-0.150023743510246,-0.818530678749084,0.444595694541931,0.209982573986053,-0.870770871639252,
- -0.361237287521362,-0.77774852514267,-0.514407217502594,0.621281981468201,-0.101568453013897,-0.776976466178894,0.0428167246282101,0.322941541671753,-0.945449888706207,0.542736113071442,0.096488744020462,-0.834342539310455,-0.218238532543182,0.955964684486389,-0.196223020553589,0.933748424053192,-0.228080868721008,0.27584969997406,-0.126630201935768,0.111385211348534,0.985676527023315,-0.329707115888596,-0.179180517792702,0.926923632621765,-0.2306809425354,-0.97302907705307,-0.000791628961451352,0.495035499334335,0.855790853500366,0.150205582380295,0.0369635596871376,0.46144637465477,0.886397778987885,0.199397936463356,0.282927602529526,0.938185751438141,0.495035499334335,0.855790853500366,0.150205582380295,0.199397936463356,0.282927602529526,0.938185751438141,-0.126630201935768,0.111385211348534,0.985676527023315,0.933748424053192,-0.228080868721008,0.27584969997406,-0.144496634602547,0.00738631188869476,0.989477694034576,0.0369635596871376,0.46144637465477,0.886397778987885,-0.233014911413193,0.0954998508095741,0.967772603034973,-0.0759967118501663,0.00152441801037639,0.997106909751892,0.0120525090023875,-0.0470788180828094,0.998818457126617,0.627848029136658,0.168302536010742,0.759921848773956,-0.398021072149277,0.289020657539368,0.870658457279205,0.0120525090023875,-0.0470788180828094,0.998818457126617,-0.0759967118501663,0.00152441801037639,0.997106909751892,-0.114357233047485,-0.158555537462235,0.980705142021179,-0.0258544404059649,-0.137981981039047,0.990097224712372,-0.122974991798401,-0.260589927434921,0.957585573196411,-0.275992572307587,-0.32252448797226,0.9054314494133,-0.109322406351566,-0.0180202275514603,0.993843019008636,-0.0116873132064939,0.00500008929520845,0.999919235706329,-0.398021072149277,0.289020657539368,0.870658457279205,0.627848029136658,0.168302536010742,0.759921848773956,-0.26728343963623,0.267841875553131,0.92564594745636,-0.0543077737092972,0.0677214413881302,0.996225118637085,-0.118395403027534,0.0609485246241093,0.991094291210175,-0.0490122772753239,-0.0206849481910467,0.998583972454071,
- -0.226449653506279,-0.121923319995403,0.966361880302429,-0.157727092504501,-0.0933386832475662,0.983061611652374,-0.178748160600662,0.0298337191343308,0.983442485332489,-0.080949991941452,0.406412452459335,0.910096764564514,-0.151915699243546,-0.320133477449417,0.935112953186035,0.444579809904099,0.893797338008881,0.0589504279196262,0.428249567747116,0.899440705776215,0.0872278660535812,0.249737128615379,0.956307291984558,0.152011588215828,0.477202266454697,0.855753779411316,0.199909195303917,0.495035499334335,0.855790853500366,0.150205582380295,0.378479897975922,0.918877422809601,0.111432693898678,-0.275992572307587,-0.32252448797226,0.9054314494133,-0.122974991798401,-0.260589927434921,0.957585573196411,-0.157727092504501,-0.0933386832475662,0.983061611652374,0.0369635596871376,0.46144637465477,0.886397778987885,-0.144496634602547,0.00738631188869476,0.989477694034576,-0.147267282009125,0.133393153548241,0.980060577392578,0.199397936463356,0.282927602529526,0.938185751438141,0.199397936463356,0.282927602529526,0.938185751438141,-0.147267282009125,0.133393153548241,0.980060577392578,-0.126630201935768,0.111385211348534,0.985676527023315,0.0369635596871376,0.46144637465477,0.886397778987885,0.495035499334335,0.855790853500366,0.150205582380295,0.477202266454697,0.855753779411316,0.199909195303917,-0.233014911413193,0.0954998508095741,0.967772603034973,-0.199353933334351,-0.074754998087883,0.97707200050354,-0.2306809425354,-0.97302907705307,-0.000791628961451352,-0.329707115888596,-0.179180517792702,0.926923632621765,-0.275992572307587,-0.32252448797226,0.9054314494133,0.0485657081007957,0.421954184770584,0.905315339565277,-0.214009970426559,0.155879497528076,0.964313924312592,-0.109322406351566,-0.0180202275514603,0.993843019008636,-0.778276205062866,-0.624570846557617,0.0647873356938362,-0.982336282730103,-0.186528638005257,0.0149203483015299,-0.0133857009932399,-0.053452130407095,0.998480677604675,-0.256769150495529,0.0975658595561981,0.961535513401031,0.0549994371831417,-0.054652526974678,0.996989607810974,0.230695873498917,0.32214817404747,0.918150246143341,
- -0.211308225989342,0.105937160551548,0.971661567687988,0.422312945127487,-0.342131912708282,0.83940315246582,0.133917272090912,0.214687719941139,0.967458248138428,-0.0133857009932399,-0.053452130407095,0.998480677604675,0.230695873498917,0.32214817404747,0.918150246143341,0.0549994371831417,-0.054652526974678,0.996989607810974,0.422312945127487,-0.342131912708282,0.83940315246582,-0.211308225989342,0.105937160551548,0.971661567687988,0.152267917990685,-0.0129570048302412,0.988254368305206,-0.206851407885551,-0.07362250238657,0.975598335266113,0.201955214142799,-0.236993312835693,0.950288474559784,-0.0258544404059649,-0.137981981039047,0.990097224712372,-0.114357233047485,-0.158555537462235,0.980705142021179,-0.268015503883362,0.215080574154854,0.939099609851837,0.218066915869713,-0.112303197383881,0.969450771808624,-0.080949991941452,0.406412452459335,0.910096764564514,-0.459756195545197,0.181893929839134,0.869217336177826,-0.06983782351017,0.228852272033691,0.970952749252319,-0.252230912446976,0.0439920239150524,0.966666579246521,-0.245913103222847,-0.0999987721443176,0.964119791984558,-0.323023229837418,-0.259480953216553,0.910124063491821,-0.131552889943123,-0.116603903472424,0.984427452087402,-0.25640395283699,-0.127793446183205,0.958084464073181,-0.0490122772753239,-0.0206849481910467,0.998583972454071,-0.151915699243546,-0.320133477449417,0.935112953186035,-0.192150443792343,-0.085578978061676,0.977626919746399,-0.226449653506279,-0.121923319995403,0.966361880302429,-0.459756195545197,0.181893929839134,0.869217336177826,-0.199353933334351,-0.074754998087883,0.97707200050354,-0.329707115888596,-0.179180517792702,0.926923632621765,-0.06983782351017,0.228852272033691,0.970952749252319,-0.459756195545197,0.181893929839134,0.869217336177826,-0.080949991941452,0.406412452459335,0.910096764564514,-0.178748160600662,0.0298337191343308,0.983442485332489,-0.118395403027534,0.0609485246241093,0.991094291210175,-0.302048325538635,-0.00564572168514133,0.953275859355927,-0.490941762924194,0.00911635439842939,0.871144652366638,
- 0.0485657081007957,0.421954184770584,0.905315339565277,-0.275992572307587,-0.32252448797226,0.9054314494133,-0.157727092504501,-0.0933386832475662,0.983061611652374,-0.226449653506279,-0.121923319995403,0.966361880302429,-0.192150443792343,-0.085578978061676,0.977626919746399,-0.323023229837418,-0.259480953216553,0.910124063491821,-0.245913103222847,-0.0999987721443176,0.964119791984558,-0.252230912446976,0.0439920239150524,0.966666579246521,-0.06983782351017,0.228852272033691,0.970952749252319,-0.0133857009932399,-0.053452130407095,0.998480677604675,0.133917272090912,0.214687719941139,0.967458248138428,0.0925040766596794,-0.100158199667931,0.990662097930908,-0.256769150495529,0.0975658595561981,0.961535513401031,0.230695873498917,0.32214817404747,0.918150246143341,-0.605839729309082,0.795342445373535,0.0197126548737288,0.0840774402022362,0.994701504707336,0.059159480035305,-0.211308225989342,0.105937160551548,0.971661567687988,-0.0133857009932399,-0.053452130407095,0.998480677604675,-0.982336282730103,-0.186528638005257,0.0149203483015299,-0.605839729309082,0.795342445373535,0.0197126548737288,0.230695873498917,0.32214817404747,0.918150246143341,-0.211308225989342,0.105937160551548,0.971661567687988,0.0840774402022362,0.994701504707336,0.059159480035305,0.682284355163574,0.73077780008316,0.0212568938732147,0.152267917990685,-0.0129570048302412,0.988254368305206,-0.114357233047485,-0.158555537462235,0.980705142021179,-0.122974991798401,-0.260589927434921,0.957585573196411,-0.0116873132064939,0.00500008929520845,0.999919235706329,-0.268015503883362,0.215080574154854,0.939099609851837,-0.0759967118501663,0.00152441801037639,0.997106909751892,-0.157727092504501,-0.0933386832475662,0.983061611652374,-0.122974991798401,-0.260589927434921,0.957585573196411,-0.114357233047485,-0.158555537462235,0.980705142021179,-0.157727092504501,-0.0933386832475662,0.983061611652374,-0.0759967118501663,0.00152441801037639,0.997106909751892,-0.398021072149277,0.289020657539368,0.870658457279205,-0.118395403027534,0.0609485246241093,0.991094291210175,
- -0.118395403027534,0.0609485246241093,0.991094291210175,-0.398021072149277,0.289020657539368,0.870658457279205,-0.0543077737092972,0.0677214413881302,0.996225118637085,-0.302048325538635,-0.00564572168514133,0.953275859355927,0.133917272090912,0.214687719941139,0.967458248138428,-0.0258544404059649,-0.137981981039047,0.990097224712372,0.218066915869713,-0.112303197383881,0.969450771808624,0.0925040766596794,-0.100158199667931,0.990662097930908,-0.0258544404059649,-0.137981981039047,0.990097224712372,0.133917272090912,0.214687719941139,0.967458248138428,0.0549994371831417,-0.054652526974678,0.996989607810974,0.0120525090023875,-0.0470788180828094,0.998818457126617,0.0120525090023875,-0.0470788180828094,0.998818457126617,0.0549994371831417,-0.054652526974678,0.996989607810974,0.422312945127487,-0.342131912708282,0.83940315246582,0.627848029136658,0.168302536010742,0.759921848773956,0.627848029136658,0.168302536010742,0.759921848773956,0.422312945127487,-0.342131912708282,0.83940315246582,0.201955214142799,-0.236993312835693,0.950288474559784,0.201955214142799,-0.236993312835693,0.950288474559784,-0.206851407885551,-0.07362250238657,0.975598335266113,-0.419624358415604,-0.790289759635925,0.44649475812912,0.627848029136658,0.168302536010742,0.759921848773956,0.201955214142799,-0.236993312835693,0.950288474559784,-0.419624358415604,-0.790289759635925,0.44649475812912,-0.26728343963623,0.267841875553131,0.92564594745636,-0.118395403027534,0.0609485246241093,0.991094291210175,-0.490941762924194,0.00911635439842939,0.871144652366638,-0.171403393149376,0.0270824898034334,0.984828591346741,-0.178748160600662,0.0298337191343308,0.983442485332489,-0.0490122772753239,-0.0206849481910467,0.998583972454071,-0.323023229837418,-0.259480953216553,0.910124063491821,-0.147267282009125,0.133393153548241,0.980060577392578,-0.144496634602547,0.00738631188869476,0.989477694034576,-0.131552889943123,-0.116603903472424,0.984427452087402,-0.126630201935768,0.111385211348534,0.985676527023315,-0.147267282009125,0.133393153548241,0.980060577392578,
- -0.323023229837418,-0.259480953216553,0.910124063491821,-0.06983782351017,0.228852272033691,0.970952749252319,-0.329707115888596,-0.179180517792702,0.926923632621765,0.0485657081007957,0.421954184770584,0.905315339565277,-0.245913103222847,-0.0999987721443176,0.964119791984558,-0.25640395283699,-0.127793446183205,0.958084464073181,-0.214009970426559,0.155879497528076,0.964313924312592,-0.245913103222847,-0.0999987721443176,0.964119791984558,0.0485657081007957,0.421954184770584,0.905315339565277,-0.192150443792343,-0.085578978061676,0.977626919746399,-0.252230912446976,0.0439920239150524,0.966666579246521,-0.151915699243546,-0.320133477449417,0.935112953186035,-0.080949991941452,0.406412452459335,0.910096764564514,-0.252230912446976,0.0439920239150524,0.966666579246521,-0.192150443792343,-0.085578978061676,0.977626919746399,-0.178748160600662,0.0298337191343308,0.983442485332489,-0.151915699243546,-0.320133477449417,0.935112953186035,-0.0490122772753239,-0.0206849481910467,0.998583972454071,0.249737128615379,0.956307291984558,0.152011588215828,-0.253815084695816,0.130531489849091,0.958404660224915,-0.233014911413193,0.0954998508095741,0.967772603034973,0.477202266454697,0.855753779411316,0.199909195303917,-0.520429134368896,-0.0671961009502411,0.851256847381592,-0.398760318756104,-0.913689911365509,-0.0784918218851089,-0.2306809425354,-0.97302907705307,-0.000791628961451352,-0.199353933334351,-0.074754998087883,0.97707200050354,-0.171403393149376,0.0270824898034334,0.984828591346741,-0.520429134368896,-0.0671961009502411,0.851256847381592,-0.199353933334351,-0.074754998087883,0.97707200050354,-0.459756195545197,0.181893929839134,0.869217336177826,-0.178748160600662,0.0298337191343308,0.983442485332489,0.456707119941711,0.887011408805847,-0.0680414065718651,0.45038902759552,0.892455041408539,0.0259590148925781,0.444226264953613,0.893374085426331,0.0674225464463234,0.447874128818512,0.894095659255981,0.00139271304942667,0.446291536092758,0.894884526729584,-0.00238455156795681,0.446771591901779,0.892212688922882,-0.0659669786691666,
- -0.943387806415558,-0.226639792323112,-0.242185831069946,0.198063373565674,-0.972007751464844,0.12637934088707,-0.142853662371635,-0.142011597752571,0.979502737522125,-0.325953811407089,0.112736292183399,0.93863970041275,-0.499000042676926,0.857772827148438,-0.123388521373272,-0.581770360469818,0.248266637325287,0.774536609649658,-0.429837137460709,0.412503570318222,0.803169250488281,-0.499000042676926,0.857772827148438,-0.123388521373272,-0.943387806415558,-0.226639792323112,-0.242185831069946,-0.325953811407089,0.112736292183399,0.93863970041275,-0.581770360469818,0.248266637325287,0.774536609649658,-0.310282111167908,0.00186002324335277,0.950642764568329,-0.262187927961349,0.0627859309315681,0.962972164154053,-0.429837137460709,0.412503570318222,0.803169250488281,0.0306262578815222,-0.0101508321240544,0.999479293823242,0.370964109897614,0.294671446084976,0.880655705928802,-0.628169775009155,0.167286947369576,0.759880185127258,-0.011998450383544,-0.047180388122797,0.998814284801483,-0.011998450383544,-0.047180388122797,0.998814284801483,0.0257816780358553,-0.1380295753479,0.990092515945435,0.0705293193459511,-0.178228512406349,0.981458187103271,0.0306262578815222,-0.0101508321240544,0.999479293823242,0.0575853250920773,-0.220948308706284,0.973584055900574,-0.0733901858329773,-0.0244586504995823,0.997003376483917,-0.122918322682381,0.00491294777020812,0.992404580116272,0.0105360196903348,-0.305913656949997,0.952000916004181,0.370964109897614,0.294671446084976,0.880655705928802,0.0549077093601227,0.0707329139113426,0.995982885360718,0.268594115972519,0.26768097281456,0.925312936306,-0.628169775009155,0.167286947369576,0.759880185127258,-0.0192461870610714,0.0708709135651588,0.997299790382385,-0.00987143069505692,-0.0799372494220734,0.996751010417938,-0.0710368975996971,-0.0818980932235718,0.994105935096741,-0.216658771038055,-0.0206215567886829,0.976029574871063,-0.183442384004593,0.0183296911418438,0.982859551906586,-0.202138110995293,-0.270628392696381,0.941222906112671,-0.248133540153503,0.34891140460968,0.903709292411804,
- -0.408762633800507,0.89348840713501,-0.18598809838295,-0.382614642381668,0.918616056442261,-0.0987453460693359,-0.499000042676926,0.857772827148438,-0.123388521373272,-0.513690948486328,0.855140268802643,-0.0696892887353897,-0.456657111644745,0.888342440128326,-0.0480828396975994,-0.411929875612259,0.899260342121124,-0.147121429443359,0.0105360196903348,-0.305913656949997,0.952000916004181,-0.00987143069505692,-0.0799372494220734,0.996751010417938,0.0575853250920773,-0.220948308706284,0.973584055900574,-0.429837137460709,0.412503570318222,0.803169250488281,-0.581770360469818,0.248266637325287,0.774536609649658,-0.296677142381668,0.116718307137489,0.947818338871002,-0.310282111167908,0.00186002324335277,0.950642764568329,-0.581770360469818,0.248266637325287,0.774536609649658,-0.325953811407089,0.112736292183399,0.93863970041275,-0.296677142381668,0.116718307137489,0.947818338871002,-0.429837137460709,0.412503570318222,0.803169250488281,-0.262187927961349,0.0627859309315681,0.962972164154053,-0.513690948486328,0.855140268802643,-0.0696892887353897,-0.499000042676926,0.857772827148438,-0.123388521373272,-0.264364093542099,-0.0730603933334351,0.961651563644409,-0.142853662371635,-0.142011597752571,0.979502737522125,0.198063373565674,-0.972007751464844,0.12637934088707,0.0105360196903348,-0.305913656949997,0.952000916004181,-0.122918322682381,0.00491294777020812,0.992404580116272,-0.0900764390826225,0.124116465449333,0.988170742988586,-0.276444464921951,0.388554722070694,0.878978848457336,0.77920788526535,-0.623412430286407,0.0647462531924248,0.256624490022659,0.0974475592374802,0.961586058139801,0.0133947664871812,-0.0534796565771103,0.998479127883911,0.982327401638031,-0.186574518680573,0.014925604686141,-0.0548566766083241,-0.054812029004097,0.996988713741302,-0.422278136014938,-0.342184960842133,0.839398980140686,0.211682364344597,0.106340460479259,0.971536040306091,-0.230676531791687,0.322092592716217,0.918174684047699,-0.133913934230804,0.214616119861603,0.967474460601807,-0.0548566766083241,-0.054812029004097,0.996988713741302,
- -0.230676531791687,0.322092592716217,0.918174684047699,0.0133947664871812,-0.0534796565771103,0.998479127883911,-0.422278136014938,-0.342184960842133,0.839398980140686,-0.202752709388733,-0.237665593624115,0.949950814247131,0.206623733043671,-0.0736126601696014,0.975647389888763,-0.151024997234344,-0.0129530252888799,0.988445103168488,0.211682364344597,0.106340460479259,0.971536040306091,0.0257816780358553,-0.1380295753479,0.990092515945435,-0.218008130788803,-0.112376198172569,0.969455599784851,0.240147635340691,0.225914984941483,0.944082319736481,0.0705293193459511,-0.178228512406349,0.981458187103271,-0.248133540153503,0.34891140460968,0.903709292411804,-0.144162520766258,0.0394000858068466,0.988769292831421,-0.347969830036163,0.1910679936409,0.917828857898712,0.00643652165308595,0.168772250413895,0.985633969306946,-0.145912155508995,-0.0875077471137047,0.985419750213623,-0.133103772997856,-0.120622262358665,0.983734548091888,-0.28905588388443,-0.0893891975283623,0.953129649162292,-0.113211743533611,-0.247336685657501,0.962292909622192,-0.216658771038055,-0.0206215567886829,0.976029574871063,-0.0710368975996971,-0.0818980932235718,0.994105935096741,-0.110829994082451,-0.0315466821193695,0.993338525295258,-0.202138110995293,-0.270628392696381,0.941222906112671,0.00643652165308595,0.168772250413895,0.985633969306946,-0.347969830036163,0.1910679936409,0.917828857898712,-0.142853662371635,-0.142011597752571,0.979502737522125,-0.264364093542099,-0.0730603933334351,0.961651563644409,0.00643652165308595,0.168772250413895,0.985633969306946,-0.183442384004593,0.0183296911418438,0.982859551906586,-0.248133540153503,0.34891140460968,0.903709292411804,-0.0192461870610714,0.0708709135651588,0.997299790382385,0.052668534219265,0.0419636890292168,0.997729957103729,0.217407941818237,0.0157321859151125,0.975953936576843,-0.276444464921951,0.388554722070694,0.878978848457336,-0.110829994082451,-0.0315466821193695,0.993338525295258,-0.0710368975996971,-0.0818980932235718,0.994105935096741,-0.00987143069505692,-0.0799372494220734,0.996751010417938,
- 0.0105360196903348,-0.305913656949997,0.952000916004181,-0.113211743533611,-0.247336685657501,0.962292909622192,-0.347969830036163,0.1910679936409,0.917828857898712,-0.144162520766258,0.0394000858068466,0.988769292831421,-0.145912155508995,-0.0875077471137047,0.985419750213623,0.0133947664871812,-0.0534796565771103,0.998479127883911,0.256624490022659,0.0974475592374802,0.961586058139801,-0.0927459374070168,-0.100462391972542,0.990608692169189,-0.133913934230804,0.214616119861603,0.967474460601807,-0.230676531791687,0.322092592716217,0.918174684047699,0.211682364344597,0.106340460479259,0.971536040306091,-0.0830438658595085,0.99478816986084,0.0591633357107639,0.605511009693146,0.795592486858368,0.019722405821085,0.0133947664871812,-0.0534796565771103,0.998479127883911,-0.230676531791687,0.322092592716217,0.918174684047699,0.605511009693146,0.795592486858368,0.019722405821085,0.982327401638031,-0.186574518680573,0.014925604686141,0.211682364344597,0.106340460479259,0.971536040306091,-0.151024997234344,-0.0129530252888799,0.988445103168488,-0.681907773017883,0.731128990650177,0.0212638825178146,-0.0830438658595085,0.99478816986084,0.0591633357107639,0.0705293193459511,-0.178228512406349,0.981458187103271,0.240147635340691,0.225914984941483,0.944082319736481,-0.0733901858329773,-0.0244586504995823,0.997003376483917,0.0575853250920773,-0.220948308706284,0.973584055900574,0.0306262578815222,-0.0101508321240544,0.999479293823242,0.0705293193459511,-0.178228512406349,0.981458187103271,0.0575853250920773,-0.220948308706284,0.973584055900574,-0.00987143069505692,-0.0799372494220734,0.996751010417938,-0.00987143069505692,-0.0799372494220734,0.996751010417938,-0.0192461870610714,0.0708709135651588,0.997299790382385,0.370964109897614,0.294671446084976,0.880655705928802,0.0306262578815222,-0.0101508321240544,0.999479293823242,-0.0192461870610714,0.0708709135651588,0.997299790382385,0.217407941818237,0.0157321859151125,0.975953936576843,0.0549077093601227,0.0707329139113426,0.995982885360718,0.370964109897614,0.294671446084976,0.880655705928802,
- -0.133913934230804,0.214616119861603,0.967474460601807,-0.0927459374070168,-0.100462391972542,0.990608692169189,-0.218008130788803,-0.112376198172569,0.969455599784851,0.0257816780358553,-0.1380295753479,0.990092515945435,0.0257816780358553,-0.1380295753479,0.990092515945435,-0.011998450383544,-0.047180388122797,0.998814284801483,-0.0548566766083241,-0.054812029004097,0.996988713741302,-0.133913934230804,0.214616119861603,0.967474460601807,-0.011998450383544,-0.047180388122797,0.998814284801483,-0.628169775009155,0.167286947369576,0.759880185127258,-0.422278136014938,-0.342184960842133,0.839398980140686,-0.0548566766083241,-0.054812029004097,0.996988713741302,-0.628169775009155,0.167286947369576,0.759880185127258,-0.202752709388733,-0.237665593624115,0.949950814247131,-0.422278136014938,-0.342184960842133,0.839398980140686,-0.202752709388733,-0.237665593624115,0.949950814247131,0.419543474912643,-0.790305435657501,0.446543037891388,0.206623733043671,-0.0736126601696014,0.975647389888763,-0.628169775009155,0.167286947369576,0.759880185127258,0.268594115972519,0.26768097281456,0.925312936306,0.419543474912643,-0.790305435657501,0.446543037891388,-0.202752709388733,-0.237665593624115,0.949950814247131,-0.0192461870610714,0.0708709135651588,0.997299790382385,-0.216658771038055,-0.0206215567886829,0.976029574871063,-0.183442384004593,0.0183296911418438,0.982859551906586,-0.211454704403877,0.0248784366995096,0.977071166038513,0.052668534219265,0.0419636890292168,0.997729957103729,-0.113211743533611,-0.247336685657501,0.962292909622192,-0.28905588388443,-0.0893891975283623,0.953129649162292,-0.310282111167908,0.00186002324335277,0.950642764568329,-0.296677142381668,0.116718307137489,0.947818338871002,-0.325953811407089,0.112736292183399,0.93863970041275,-0.142853662371635,-0.142011597752571,0.979502737522125,-0.347969830036163,0.1910679936409,0.917828857898712,-0.113211743533611,-0.247336685657501,0.962292909622192,-0.296677142381668,0.116718307137489,0.947818338871002,-0.276444464921951,0.388554722070694,0.878978848457336,
- -0.0900764390826225,0.124116465449333,0.988170742988586,-0.133103772997856,-0.120622262358665,0.983734548091888,-0.145912155508995,-0.0875077471137047,0.985419750213623,-0.145912155508995,-0.0875077471137047,0.985419750213623,-0.144162520766258,0.0394000858068466,0.988769292831421,-0.110829994082451,-0.0315466821193695,0.993338525295258,-0.276444464921951,0.388554722070694,0.878978848457336,-0.202138110995293,-0.270628392696381,0.941222906112671,-0.110829994082451,-0.0315466821193695,0.993338525295258,-0.144162520766258,0.0394000858068466,0.988769292831421,-0.248133540153503,0.34891140460968,0.903709292411804,-0.183442384004593,0.0183296911418438,0.982859551906586,-0.216658771038055,-0.0206215567886829,0.976029574871063,-0.202138110995293,-0.270628392696381,0.941222906112671,0.38339564204216,-0.912964940071106,0.139653161168098,-0.0352268144488335,-0.0441939756274223,0.998401701450348,-0.264364093542099,-0.0730603933334351,0.961651563644409,0.198063373565674,-0.972007751464844,0.12637934088707,-0.0352268144488335,-0.0441939756274223,0.998401701450348,-0.211454704403877,0.0248784366995096,0.977071166038513,-0.183442384004593,0.0183296911418438,0.982859551906586,0.00643652165308595,0.168772250413895,0.985633969306946,-0.264364093542099,-0.0730603933334351,0.961651563644409,-0.450585722923279,0.892355918884277,0.0259540025144815,-0.456881493330002,0.886923909187317,-0.0680095255374908,-0.446977704763412,0.89211106300354,-0.0659460425376892,-0.44643771648407,0.894811570644379,-0.00238811201415956,-0.447943150997162,0.894060969352722,0.00139331992249936,-0.444394290447235,0.893286347389221,0.0674777776002884,-0.0766079425811768,-0.994141638278961,0.0762472674250603,0.0159239154309034,-0.106342412531376,0.994202077388763,0.256624490022659,0.0974475592374802,0.961586058139801,0.77920788526535,-0.623412430286407,0.0647462531924248,0.101666748523712,-0.184827625751495,0.977498173713684,0.625623881816864,-0.777841806411743,0.0596389397978783,-0.778276205062866,-0.624570846557617,0.0647873356938362,-0.256769150495529,0.0975658595561981,0.961535513401031,
- -0.281240433454514,0.0667154416441917,0.957315444946289,-0.456657111644745,0.888342440128326,-0.0480828396975994,-0.513690948486328,0.855140268802643,-0.0696892887353897,-0.262187927961349,0.0627859309315681,0.962972164154053,-0.304454177618027,0.179356962442398,0.93548846244812,0.00341325346380472,-0.0276815798133612,0.999611020088196,0.350393950939178,0.130897745490074,0.927410244941711,0.101666748523712,-0.184827625751495,0.977498173713684,0.376096695661545,0.229386210441589,0.897737979888916,-0.304454177618027,0.179356962442398,0.93548846244812,0.233228877186775,-0.0775334313511848,0.969325959682465,0.110105089843273,0.153773173689842,0.981952488422394,0.110105089843273,0.153773173689842,0.981952488422394,0.233228877186775,-0.0775334313511848,0.969325959682465,0.0622640773653984,-0.0317380614578724,0.997555017471313,-0.242927134037018,-0.124559096992016,0.962014257907867,-0.288440823554993,0.18369659781456,0.939711272716522,-0.129639595746994,0.0781549215316772,0.988476276397705,-0.099762924015522,0.0317332185804844,0.994505107402802,-0.206436350941658,0.0568631179630756,0.976806282997131,0.247217312455177,0.307715177536011,0.918800950050354,-0.288440823554993,0.18369659781456,0.939711272716522,-0.466616302728653,-0.058986771851778,0.882490694522858,0.055444747209549,-0.0654213950037956,0.996316194534302,0.055444747209549,-0.0654213950037956,0.996316194534302,-0.466616302728653,-0.058986771851778,0.882490694522858,-0.324593901634216,0.0575409382581711,0.944101631641388,-0.838989317417145,-0.520211219787598,0.159616217017174,-0.141584426164627,0.053387239575386,0.988485634326935,-0.324593901634216,0.0575409382581711,0.944101631641388,-0.253815084695816,0.130531489849091,0.958404660224915,-0.189085900783539,0.128542304039001,0.97351086139679,-0.0947001352906227,0.0527905113995075,0.994105160236359,-0.329833447933197,-0.201626464724541,0.922256231307983,-0.0218416955322027,0.026825025677681,0.999401569366455,0.0622640773653984,-0.0317380614578724,0.997555017471313,-0.329833447933197,-0.201626464724541,0.922256231307983,
- -0.0947001352906227,0.0527905113995075,0.994105160236359,-0.206436350941658,0.0568631179630756,0.976806282997131,-0.711498320102692,-0.405616283416748,0.57379937171936,-0.0116873132064939,0.00500008929520845,0.999919235706329,-0.109322406351566,-0.0180202275514603,0.993843019008636,-0.206436350941658,0.0568631179630756,0.976806282997131,-0.0947001352906227,0.0527905113995075,0.994105160236359,-0.268015503883362,0.215080574154854,0.939099609851837,0.0622640773653984,-0.0317380614578724,0.997555017471313,0.233228877186775,-0.0775334313511848,0.969325959682465,0.218066915869713,-0.112303197383881,0.969450771808624,-0.268015503883362,0.215080574154854,0.939099609851837,-0.0116873132064939,0.00500008929520845,0.999919235706329,-0.0947001352906227,0.0527905113995075,0.994105160236359,0.0622640773653984,-0.0317380614578724,0.997555017471313,0.218066915869713,-0.112303197383881,0.969450771808624,0.233228877186775,-0.0775334313511848,0.969325959682465,-0.304454177618027,0.179356962442398,0.93548846244812,0.0925040766596794,-0.100158199667931,0.990662097930908,-0.109322406351566,-0.0180202275514603,0.993843019008636,-0.214009970426559,0.155879497528076,0.964313924312592,-0.288440823554993,0.18369659781456,0.939711272716522,-0.206436350941658,0.0568631179630756,0.976806282997131,-0.288440823554993,0.18369659781456,0.939711272716522,-0.214009970426559,0.155879497528076,0.964313924312592,-0.25640395283699,-0.127793446183205,0.958084464073181,-0.466616302728653,-0.058986771851778,0.882490694522858,-0.304454177618027,0.179356962442398,0.93548846244812,0.101666748523712,-0.184827625751495,0.977498173713684,-0.256769150495529,0.0975658595561981,0.961535513401031,0.0925040766596794,-0.100158199667931,0.990662097930908,-0.324593901634216,0.0575409382581711,0.944101631641388,-0.466616302728653,-0.058986771851778,0.882490694522858,-0.25640395283699,-0.127793446183205,0.958084464073181,-0.131552889943123,-0.116603903472424,0.984427452087402,-0.253815084695816,0.130531489849091,0.958404660224915,-0.324593901634216,0.0575409382581711,0.944101631641388,
- -0.131552889943123,-0.116603903472424,0.984427452087402,-0.144496634602547,0.00738631188869476,0.989477694034576,-0.233014911413193,0.0954998508095741,0.967772603034973,0.240147635340691,0.225914984941483,0.944082319736481,-0.218008130788803,-0.112376198172569,0.969455599784851,-0.233905106782913,-0.0781273394823074,0.969115316867828,0.0369587428867817,0.066577211022377,0.997096478939056,0.240147635340691,0.225914984941483,0.944082319736481,0.0369587428867817,0.066577211022377,0.997096478939056,-0.0216108839958906,0.0116558475419879,0.999698460102081,-0.0733901858329773,-0.0244586504995823,0.997003376483917,-0.218008130788803,-0.112376198172569,0.969455599784851,-0.0927459374070168,-0.100462391972542,0.990608692169189,0.244373723864555,0.13774336874485,0.959847986698151,-0.233905106782913,-0.0781273394823074,0.969115316867828,-0.122918322682381,0.00491294777020812,0.992404580116272,-0.0889489874243736,0.0388185195624828,0.995279431343079,-0.0533907562494278,0.127217411994934,0.990436851978302,-0.0900764390826225,0.124116465449333,0.988170742988586,-0.0533907562494278,0.127217411994934,0.990436851978302,-0.000756908790208399,-0.103564403951168,0.994622409343719,-0.133103772997856,-0.120622262358665,0.983734548091888,-0.0900764390826225,0.124116465449333,0.988170742988586,0.0159239154309034,-0.106342412531376,0.994202077388763,0.244373723864555,0.13774336874485,0.959847986698151,-0.0927459374070168,-0.100462391972542,0.990608692169189,0.256624490022659,0.0974475592374802,0.961586058139801,-0.000756908790208399,-0.103564403951168,0.994622409343719,-0.27925568819046,-0.0400939397513866,0.959379315376282,-0.28905588388443,-0.0893891975283623,0.953129649162292,-0.133103772997856,-0.120622262358665,0.983734548091888,-0.0733901858329773,-0.0244586504995823,0.997003376483917,-0.0216108839958906,0.0116558475419879,0.999698460102081,-0.0889489874243736,0.0388185195624828,0.995279431343079,-0.122918322682381,0.00491294777020812,0.992404580116272,-0.27925568819046,-0.0400939397513866,0.959379315376282,-0.281240433454514,0.0667154416441917,0.957315444946289,
- -0.262187927961349,0.0627859309315681,0.962972164154053,-0.310282111167908,0.00186002324335277,0.950642764568329,-0.28905588388443,-0.0893891975283623,0.953129649162292,0.350393950939178,0.130897745490074,0.927410244941711,0.625623881816864,-0.777841806411743,0.0596389397978783,0.101666748523712,-0.184827625751495,0.977498173713684,0.136473596096039,0.323054909706116,0.936488389968872,-0.253815084695816,0.130531489849091,0.958404660224915,0.249737128615379,0.956307291984558,0.152011588215828,0.0731103792786598,-0.227138996124268,0.971114158630371,-0.966397523880005,0.111447922885418,0.231635928153992,-0.982810795307159,-0.182957470417023,0.0246859304606915,-0.0810658410191536,-0.973589241504669,-0.213430047035217,0.0351686775684357,0.855280756950378,0.516970217227936,-0.816459119319916,0.460456222295761,0.348388344049454,-0.807353258132935,0.282227694988251,0.518197178840637,0.0351686775684357,0.855280756950378,0.516970217227936,-0.807353258132935,0.282227694988251,0.518197178840637,-0.966397523880005,0.111447922885418,0.231635928153992,0.0731103792786598,-0.227138996124268,0.971114158630371,-0.976637840270996,-0.00315343332476914,0.214868932962418,-0.816459119319916,0.460456222295761,0.348388344049454,-0.989288806915283,0.0854239612817764,0.118365630507469,-0.953907608985901,-0.0518834292888641,0.295581668615341,-0.912044167518616,-0.0473100803792477,0.40735387802124,-0.412145704030991,0.155087649822235,0.897821605205536,-0.939885556697845,0.297489702701569,-0.167675599455833,-0.912044167518616,-0.0473100803792477,0.40735387802124,-0.953907608985901,-0.0518834292888641,0.295581668615341,-0.949001550674438,-0.177279248833656,0.260707139968872,-0.91784131526947,-0.148053511977196,0.368303656578064,-0.906723141670227,-0.368085861206055,0.205829828977585,-0.949062526226044,-0.307429313659668,0.0690471529960632,-0.96644651889801,-0.00160554994363338,0.256863087415695,-0.946713507175446,-0.0402796231210232,0.319548457860947,-0.939885556697845,0.297489702701569,-0.167675599455833,-0.412145704030991,0.155087649822235,0.897821605205536,
- -0.963061928749084,0.25591117143631,0.0837924927473068,-0.943821668624878,0.00339383981190622,0.330437660217285,-0.966974973678589,0.0301409047096968,0.25308284163475,-0.947072386741638,-0.00248940847814083,0.321010440587997,-0.985114991664886,-0.105628363788128,0.135613709688187,-0.968438565731049,-0.095046229660511,0.230419501662254,-0.981784403324127,0.0300845131278038,0.187601551413536,-0.87625116109848,0.404912441968918,0.261208385229111,-0.925223112106323,-0.319298624992371,0.204964831471443,0.102796785533428,0.893775224685669,0.436576098203659,0.0704025998711586,0.899294972419739,0.4316386282444,-0.0538165010511875,0.956100225448608,0.288055717945099,-0.0178419277071953,0.855452179908752,0.517574369907379,0.0351686775684357,0.855280756950378,0.516970217227936,0.030075341463089,0.918637275695801,0.393955439329147,-0.949062526226044,-0.307429313659668,0.0690471529960632,-0.906723141670227,-0.368085861206055,0.205829828977585,-0.968438565731049,-0.095046229660511,0.230419501662254,-0.816459119319916,0.460456222295761,0.348388344049454,-0.976637840270996,-0.00315343332476914,0.214868932962418,-0.969049155712128,0.126758068799973,0.211839765310287,-0.807353258132935,0.282227694988251,0.518197178840637,-0.807353258132935,0.282227694988251,0.518197178840637,-0.969049155712128,0.126758068799973,0.211839765310287,-0.966397523880005,0.111447922885418,0.231635928153992,-0.816459119319916,0.460456222295761,0.348388344049454,0.0351686775684357,0.855280756950378,0.516970217227936,-0.0178419277071953,0.855452179908752,0.517574369907379,-0.989288806915283,0.0854239612817764,0.118365630507469,-0.98287707567215,-0.0702152773737907,0.170359820127487,-0.0810658410191536,-0.973589241504669,-0.213430047035217,-0.982810795307159,-0.182957470417023,0.0246859304606915,-0.949062526226044,-0.307429313659668,0.0690471529960632,-0.82159298658371,0.434450328350067,0.369104325771332,-0.970381259918213,0.178303301334381,0.162997305393219,-0.96644651889801,-0.00160554994363338,0.256863087415695,-0.437814205884933,-0.621220767498016,-0.649925768375397,
- -0.494484931230545,-0.18767486512661,-0.848682940006256,-0.901012122631073,-0.0393094755709171,0.432009279727936,-0.972368001937866,0.118133597075939,0.201357781887054,-0.870813310146332,-0.0459985956549644,0.489457130432129,-0.703176975250244,0.351446151733398,0.618083894252777,-0.961566269397736,0.128631740808487,0.242578312754631,-0.563569009304047,-0.328230321407318,0.758060038089752,-0.804073393344879,0.228850856423378,0.548719525337219,-0.901012122631073,-0.0393094755709171,0.432009279727936,-0.703176975250244,0.351446151733398,0.618083894252777,-0.870813310146332,-0.0459985956549644,0.489457130432129,-0.563569009304047,-0.328230321407318,0.758060038089752,-0.961566269397736,0.128631740808487,0.242578312754631,-0.77992045879364,0.0201696716248989,0.625553607940674,-0.971918106079102,-0.0602666512131691,0.227471351623535,-0.765964210033417,-0.214731931686401,0.605961203575134,-0.91784131526947,-0.148053511977196,0.368303656578064,-0.949001550674438,-0.177279248833656,0.260707139968872,-0.981918275356293,0.183510333299637,0.0464809611439705,-0.792785584926605,-0.120557874441147,0.59745854139328,-0.87625116109848,0.404912441968918,0.261208385229111,-0.97730827331543,0.178028300404549,-0.11477991938591,-0.931111514568329,0.224392861127853,0.287539839744568,-0.991358518600464,0.0440150275826454,0.123575195670128,-0.986731886863709,-0.0996740311384201,0.128160446882248,-0.96341997385025,-0.266305893659592,0.0300528835505247,-0.963882744312286,-0.116247870028019,0.239617258310318,-0.985108554363251,-0.126993969082832,0.11590363830328,-0.947072386741638,-0.00248940847814083,0.321010440587997,-0.925223112106323,-0.319298624992371,0.204964831471443,-0.982609629631042,-0.0743129104375839,0.17016413807869,-0.985114991664886,-0.105628363788128,0.135613709688187,-0.97730827331543,0.178028300404549,-0.11477991938591,-0.98287707567215,-0.0702152773737907,0.170359820127487,-0.982810795307159,-0.182957470417023,0.0246859304606915,-0.931111514568329,0.224392861127853,0.287539839744568,-0.97730827331543,0.178028300404549,-0.11477991938591,
- -0.87625116109848,0.404912441968918,0.261208385229111,-0.981784403324127,0.0300845131278038,0.187601551413536,-0.966974973678589,0.0301409047096968,0.25308284163475,-0.993054389953613,-0.0795191675424576,-0.086716465651989,-0.988520443439484,0.0285781752318144,-0.148360192775726,-0.82159298658371,0.434450328350067,0.369104325771332,-0.949062526226044,-0.307429313659668,0.0690471529960632,-0.968438565731049,-0.095046229660511,0.230419501662254,-0.985114991664886,-0.105628363788128,0.135613709688187,-0.982609629631042,-0.0743129104375839,0.17016413807869,-0.96341997385025,-0.266305893659592,0.0300528835505247,-0.986731886863709,-0.0996740311384201,0.128160446882248,-0.991358518600464,0.0440150275826454,0.123575195670128,-0.931111514568329,0.224392861127853,0.287539839744568,-0.901012122631073,-0.0393094755709171,0.432009279727936,-0.804073393344879,0.228850856423378,0.548719525337219,-0.849074482917786,-0.077616885304451,0.522540152072906,-0.972368001937866,0.118133597075939,0.201357781887054,-0.703176975250244,0.351446151733398,0.618083894252777,-0.31231701374054,0.796888470649719,-0.517133235931396,-0.00946557428687811,0.99509072303772,0.098513662815094,-0.961566269397736,0.128631740808487,0.242578312754631,-0.901012122631073,-0.0393094755709171,0.432009279727936,-0.494484931230545,-0.18767486512661,-0.848682940006256,-0.31231701374054,0.796888470649719,-0.517133235931396,-0.703176975250244,0.351446151733398,0.618083894252777,-0.961566269397736,0.128631740808487,0.242578312754631,-0.00946557428687811,0.99509072303772,0.098513662815094,0.317113012075424,0.731332659721375,0.603814423084259,-0.77992045879364,0.0201696716248989,0.625553607940674,-0.949001550674438,-0.177279248833656,0.260707139968872,-0.906723141670227,-0.368085861206055,0.205829828977585,-0.946713507175446,-0.0402796231210232,0.319548457860947,-0.981918275356293,0.183510333299637,0.0464809611439705,-0.953907608985901,-0.0518834292888641,0.295581668615341,-0.968438565731049,-0.095046229660511,0.230419501662254,-0.906723141670227,-0.368085861206055,0.205829828977585,
- -0.949001550674438,-0.177279248833656,0.260707139968872,-0.968438565731049,-0.095046229660511,0.230419501662254,-0.953907608985901,-0.0518834292888641,0.295581668615341,-0.939885556697845,0.297489702701569,-0.167675599455833,-0.966974973678589,0.0301409047096968,0.25308284163475,-0.966974973678589,0.0301409047096968,0.25308284163475,-0.939885556697845,0.297489702701569,-0.167675599455833,-0.943821668624878,0.00339383981190622,0.330437660217285,-0.993054389953613,-0.0795191675424576,-0.086716465651989,-0.804073393344879,0.228850856423378,0.548719525337219,-0.91784131526947,-0.148053511977196,0.368303656578064,-0.792785584926605,-0.120557874441147,0.59745854139328,-0.849074482917786,-0.077616885304451,0.522540152072906,-0.91784131526947,-0.148053511977196,0.368303656578064,-0.804073393344879,0.228850856423378,0.548719525337219,-0.870813310146332,-0.0459985956549644,0.489457130432129,-0.912044167518616,-0.0473100803792477,0.40735387802124,-0.912044167518616,-0.0473100803792477,0.40735387802124,-0.870813310146332,-0.0459985956549644,0.489457130432129,-0.563569009304047,-0.328230321407318,0.758060038089752,-0.412145704030991,0.155087649822235,0.897821605205536,-0.412145704030991,0.155087649822235,0.897821605205536,-0.563569009304047,-0.328230321407318,0.758060038089752,-0.765964210033417,-0.214731931686401,0.605961203575134,-0.765964210033417,-0.214731931686401,0.605961203575134,-0.971918106079102,-0.0602666512131691,0.227471351623535,-0.573137164115906,-0.793341755867004,-0.205237925052643,-0.412145704030991,0.155087649822235,0.897821605205536,-0.765964210033417,-0.214731931686401,0.605961203575134,-0.573137164115906,-0.793341755867004,-0.205237925052643,-0.963061928749084,0.25591117143631,0.0837924927473068,-0.966974973678589,0.0301409047096968,0.25308284163475,-0.988520443439484,0.0285781752318144,-0.148360192775726,-0.979940235614777,0.034190408885479,0.196336925029755,-0.981784403324127,0.0300845131278038,0.187601551413536,-0.947072386741638,-0.00248940847814083,0.321010440587997,-0.96341997385025,-0.266305893659592,0.0300528835505247,
- -0.969049155712128,0.126758068799973,0.211839765310287,-0.976637840270996,-0.00315343332476914,0.214868932962418,-0.963882744312286,-0.116247870028019,0.239617258310318,-0.966397523880005,0.111447922885418,0.231635928153992,-0.969049155712128,0.126758068799973,0.211839765310287,-0.96341997385025,-0.266305893659592,0.0300528835505247,-0.931111514568329,0.224392861127853,0.287539839744568,-0.982810795307159,-0.182957470417023,0.0246859304606915,-0.82159298658371,0.434450328350067,0.369104325771332,-0.986731886863709,-0.0996740311384201,0.128160446882248,-0.985108554363251,-0.126993969082832,0.11590363830328,-0.970381259918213,0.178303301334381,0.162997305393219,-0.986731886863709,-0.0996740311384201,0.128160446882248,-0.82159298658371,0.434450328350067,0.369104325771332,-0.982609629631042,-0.0743129104375839,0.17016413807869,-0.991358518600464,0.0440150275826454,0.123575195670128,-0.925223112106323,-0.319298624992371,0.204964831471443,-0.87625116109848,0.404912441968918,0.261208385229111,-0.991358518600464,0.0440150275826454,0.123575195670128,-0.982609629631042,-0.0743129104375839,0.17016413807869,-0.981784403324127,0.0300845131278038,0.187601551413536,-0.925223112106323,-0.319298624992371,0.204964831471443,-0.947072386741638,-0.00248940847814083,0.321010440587997,-0.0538165010511875,0.956100225448608,0.288055717945099,-0.988554298877716,0.11618609726429,0.096234142780304,-0.989288806915283,0.0854239612817764,0.118365630507469,-0.0178419277071953,0.855452179908752,0.517574369907379,-0.980837881565094,-0.0623638331890106,-0.184574723243713,-0.0680124387145042,-0.914188981056213,-0.399540811777115,-0.0810658410191536,-0.973589241504669,-0.213430047035217,-0.98287707567215,-0.0702152773737907,0.170359820127487,-0.979940235614777,0.034190408885479,0.196336925029755,-0.980837881565094,-0.0623638331890106,-0.184574723243713,-0.98287707567215,-0.0702152773737907,0.170359820127487,-0.97730827331543,0.178028300404549,-0.11477991938591,-0.981784403324127,0.0300845131278038,0.187601551413536,0.282628238201141,0.887012422084808,0.36514413356781,
- 0.19917269051075,0.892433702945709,0.40483620762825,0.16197943687439,0.893521189689636,0.418786942958832,0.218991354107857,0.894179880619049,0.390493452548981,0.221244946122169,0.894907116889954,0.38754615187645,0.274639308452606,0.892319858074188,0.358243614435196,-0.108067654073238,-0.226553738117218,-0.967984974384308,-0.0483415052294731,-0.972243368625641,0.228923216462135,-0.964780509471893,-0.140792950987816,0.222206756472588,-0.992189824581146,0.118544034659863,0.0388155095279217,-0.0621295385062695,0.854855597019196,-0.51513284444809,-0.931306600570679,0.244513496756554,-0.269964933395386,-0.905865550041199,0.406126111745834,-0.12028818577528,-0.0621295385062695,0.854855597019196,-0.51513284444809,-0.108067654073238,-0.226553738117218,-0.967984974384308,-0.992189824581146,0.118544034659863,0.0388155095279217,-0.931306600570679,0.244513496756554,-0.269964933395386,-0.998094439506531,-0.00897748116403818,0.0610480085015297,-0.992914736270905,0.0470432341098785,0.109121046960354,-0.905865550041199,0.406126111745834,-0.12028818577528,-0.9181307554245,-0.0693800151348114,0.390156656503677,-0.612848103046417,0.300232887268066,0.730942904949188,-0.955189824104309,0.178435325622559,-0.236163794994354,-0.921185493469238,-0.0465323776006699,0.386331647634506,-0.921185493469238,-0.0465323776006699,0.386331647634506,-0.89969527721405,-0.1278957426548,0.417362153530121,-0.897416949272156,-0.178464189171791,0.403476625680923,-0.9181307554245,-0.0693800151348114,0.390156656503677,-0.861243069171906,-0.308049887418747,0.40418529510498,-0.945903897285461,-0.0633594021201134,0.31820023059845,-0.970741868019104,0.0158343184739351,0.239602878689766,-0.887824892997742,-0.291517049074173,0.356068521738052,-0.612848103046417,0.300232887268066,0.730942904949188,-0.91417407989502,0.00809076800942421,0.405241042375565,-0.768293738365173,0.275388419628143,0.577828705310822,-0.955189824104309,0.178435325622559,-0.236163794994354,-0.940123677253723,0.037848949432373,0.338725388050079,-0.93629252910614,-0.0836321264505386,0.341118842363358,
- -0.951864302158356,-0.0723245590925217,0.29786491394043,-0.988926351070404,-0.00182689656503499,0.148395746946335,-0.982756972312927,0.0282733365893364,0.18272764980793,-0.949482321739197,-0.269967705011368,0.160002514719963,-0.931751549243927,0.348055273294449,0.103424370288849,0.0292768459767103,0.893299460411072,-0.448507726192474,-0.0433877296745777,0.918592512607574,-0.392817258834839,-0.0621295385062695,0.854855597019196,-0.51513284444809,-0.117284312844276,0.855264127254486,-0.504745006561279,-0.117268599569798,0.88834422826767,-0.443951010704041,-0.00834945961833,0.899200022220612,-0.437458217144012,-0.887824892997742,-0.291517049074173,0.356068521738052,-0.93629252910614,-0.0836321264505386,0.341118842363358,-0.861243069171906,-0.308049887418747,0.40418529510498,-0.905865550041199,0.406126111745834,-0.12028818577528,-0.931306600570679,0.244513496756554,-0.269964933395386,-0.991020679473877,0.114162996411324,0.0696054622530937,-0.998094439506531,-0.00897748116403818,0.0610480085015297,-0.931306600570679,0.244513496756554,-0.269964933395386,-0.992189824581146,0.118544034659863,0.0388155095279217,-0.991020679473877,0.114162996411324,0.0696054622530937,-0.905865550041199,0.406126111745834,-0.12028818577528,-0.992914736270905,0.0470432341098785,0.109121046960354,-0.117284312844276,0.855264127254486,-0.504745006561279,-0.0621295385062695,0.854855597019196,-0.51513284444809,-0.992723882198334,-0.0704461559653282,0.0976556614041328,-0.964780509471893,-0.140792950987816,0.222206756472588,-0.0483415052294731,-0.972243368625641,0.228923216462135,-0.887824892997742,-0.291517049074173,0.356068521738052,-0.970741868019104,0.0158343184739351,0.239602878689766,-0.953303635120392,0.147359251976013,0.263623803853989,-0.916469693183899,0.395284682512283,0.061913225799799,0.322425693273544,-0.627128660678864,0.70904952287674,-0.70785927772522,0.161624610424042,0.687613844871521,-0.886842310428619,-0.0379812717437744,0.460508465766907,0.468755185604095,-0.185385331511498,0.863655507564545,-0.915241479873657,-0.0284763108938932,0.401897966861725,
- -0.946469247341156,-0.322668939828873,-0.00898807216435671,-0.779508709907532,0.122879631817341,0.614220440387726,-0.920776605606079,0.318745940923691,0.224881380796433,-0.910483777523041,0.294849097728729,0.289970964193344,-0.915241479873657,-0.0284763108938932,0.401897966861725,-0.920776605606079,0.318745940923691,0.224881380796433,-0.886842310428619,-0.0379812717437744,0.460508465766907,-0.946469247341156,-0.322668939828873,-0.00898807216435671,-0.948717355728149,-0.225899904966354,0.221143990755081,-0.794733047485352,-0.0387613512575626,0.605720043182373,-0.932823896408081,0.00398372393101454,0.360310554504395,-0.779508709907532,0.122879631817341,0.614220440387726,-0.89969527721405,-0.1278957426548,0.417362153530121,-0.974469304084778,-0.106370352208614,0.197724685072899,-0.775438070297241,0.197086051106453,0.59987735748291,-0.897416949272156,-0.178464189171791,0.403476625680923,-0.931751549243927,0.348055273294449,0.103424370288849,-0.972015023231506,0.0385782271623611,0.231729164719582,-0.982692897319794,0.185045152902603,0.00855028443038464,-0.915307819843292,0.167010903358459,0.366495341062546,-0.969614028930664,-0.0872298777103424,0.228559762239456,-0.963503122329712,-0.11971914768219,0.23943455517292,-0.993488848209381,-0.0965032353997231,0.0605550855398178,-0.935860455036163,-0.254801362752914,0.243395641446114,-0.988926351070404,-0.00182689656503499,0.148395746946335,-0.951864302158356,-0.0723245590925217,0.29786491394043,-0.964640021324158,-0.0283120647072792,0.262045830488205,-0.949482321739197,-0.269967705011368,0.160002514719963,-0.915307819843292,0.167010903358459,0.366495341062546,-0.982692897319794,0.185045152902603,0.00855028443038464,-0.964780509471893,-0.140792950987816,0.222206756472588,-0.992723882198334,-0.0704461559653282,0.0976556614041328,-0.915307819843292,0.167010903358459,0.366495341062546,-0.982756972312927,0.0282733365893364,0.18272764980793,-0.931751549243927,0.348055273294449,0.103424370288849,-0.940123677253723,0.037848949432373,0.338725388050079,-0.911169648170471,0.0609267093241215,0.40750190615654,
- -0.765000820159912,-0.0372791551053524,0.642949402332306,-0.916469693183899,0.395284682512283,0.061913225799799,-0.964640021324158,-0.0283120647072792,0.262045830488205,-0.951864302158356,-0.0723245590925217,0.29786491394043,-0.93629252910614,-0.0836321264505386,0.341118842363358,-0.887824892997742,-0.291517049074173,0.356068521738052,-0.935860455036163,-0.254801362752914,0.243395641446114,-0.982692897319794,0.185045152902603,0.00855028443038464,-0.972015023231506,0.0385782271623611,0.231729164719582,-0.969614028930664,-0.0872298777103424,0.228559762239456,-0.886842310428619,-0.0379812717437744,0.460508465766907,-0.70785927772522,0.161624610424042,0.687613844871521,-0.928362309932709,-0.0705931112170219,0.364910870790482,-0.910483777523041,0.294849097728729,0.289970964193344,-0.920776605606079,0.318745940923691,0.224881380796433,-0.779508709907532,0.122879631817341,0.614220440387726,-0.0967681631445885,0.994244575500488,-0.0459741614758968,0.278595805168152,0.795885682106018,0.537541091442108,-0.886842310428619,-0.0379812717437744,0.460508465766907,-0.920776605606079,0.318745940923691,0.224881380796433,0.278595805168152,0.795885682106018,0.537541091442108,0.468755185604095,-0.185385331511498,0.863655507564545,-0.779508709907532,0.122879631817341,0.614220440387726,-0.932823896408081,0.00398372393101454,0.360310554504395,-0.354548066854477,0.730544447898865,-0.583609879016876,-0.0967681631445885,0.994244575500488,-0.0459741614758968,-0.897416949272156,-0.178464189171791,0.403476625680923,-0.775438070297241,0.197086051106453,0.59987735748291,-0.945903897285461,-0.0633594021201134,0.31820023059845,-0.861243069171906,-0.308049887418747,0.40418529510498,-0.9181307554245,-0.0693800151348114,0.390156656503677,-0.897416949272156,-0.178464189171791,0.403476625680923,-0.861243069171906,-0.308049887418747,0.40418529510498,-0.93629252910614,-0.0836321264505386,0.341118842363358,-0.93629252910614,-0.0836321264505386,0.341118842363358,-0.940123677253723,0.037848949432373,0.338725388050079,-0.612848103046417,0.300232887268066,0.730942904949188,
- -0.9181307554245,-0.0693800151348114,0.390156656503677,-0.940123677253723,0.037848949432373,0.338725388050079,-0.765000820159912,-0.0372791551053524,0.642949402332306,-0.91417407989502,0.00809076800942421,0.405241042375565,-0.612848103046417,0.300232887268066,0.730942904949188,-0.910483777523041,0.294849097728729,0.289970964193344,-0.928362309932709,-0.0705931112170219,0.364910870790482,-0.974469304084778,-0.106370352208614,0.197724685072899,-0.89969527721405,-0.1278957426548,0.417362153530121,-0.89969527721405,-0.1278957426548,0.417362153530121,-0.921185493469238,-0.0465323776006699,0.386331647634506,-0.915241479873657,-0.0284763108938932,0.401897966861725,-0.910483777523041,0.294849097728729,0.289970964193344,-0.921185493469238,-0.0465323776006699,0.386331647634506,-0.955189824104309,0.178435325622559,-0.236163794994354,-0.946469247341156,-0.322668939828873,-0.00898807216435671,-0.915241479873657,-0.0284763108938932,0.401897966861725,-0.955189824104309,0.178435325622559,-0.236163794994354,-0.948717355728149,-0.225899904966354,0.221143990755081,-0.946469247341156,-0.322668939828873,-0.00898807216435671,-0.948717355728149,-0.225899904966354,0.221143990755081,-0.243570700287819,-0.787384688854218,0.566302478313446,-0.794733047485352,-0.0387613512575626,0.605720043182373,-0.955189824104309,0.178435325622559,-0.236163794994354,-0.768293738365173,0.275388419628143,0.577828705310822,-0.243570700287819,-0.787384688854218,0.566302478313446,-0.948717355728149,-0.225899904966354,0.221143990755081,-0.940123677253723,0.037848949432373,0.338725388050079,-0.988926351070404,-0.00182689656503499,0.148395746946335,-0.982756972312927,0.0282733365893364,0.18272764980793,-0.98707526922226,0.0320564471185207,0.157017901539803,-0.911169648170471,0.0609267093241215,0.40750190615654,-0.935860455036163,-0.254801362752914,0.243395641446114,-0.993488848209381,-0.0965032353997231,0.0605550855398178,-0.998094439506531,-0.00897748116403818,0.0610480085015297,-0.991020679473877,0.114162996411324,0.0696054622530937,-0.992189824581146,0.118544034659863,0.0388155095279217,
- -0.964780509471893,-0.140792950987816,0.222206756472588,-0.982692897319794,0.185045152902603,0.00855028443038464,-0.935860455036163,-0.254801362752914,0.243395641446114,-0.991020679473877,0.114162996411324,0.0696054622530937,-0.916469693183899,0.395284682512283,0.061913225799799,-0.953303635120392,0.147359251976013,0.263623803853989,-0.963503122329712,-0.11971914768219,0.23943455517292,-0.969614028930664,-0.0872298777103424,0.228559762239456,-0.969614028930664,-0.0872298777103424,0.228559762239456,-0.972015023231506,0.0385782271623611,0.231729164719582,-0.964640021324158,-0.0283120647072792,0.262045830488205,-0.916469693183899,0.395284682512283,0.061913225799799,-0.949482321739197,-0.269967705011368,0.160002514719963,-0.964640021324158,-0.0283120647072792,0.262045830488205,-0.972015023231506,0.0385782271623611,0.231729164719582,-0.931751549243927,0.348055273294449,0.103424370288849,-0.982756972312927,0.0282733365893364,0.18272764980793,-0.988926351070404,-0.00182689656503499,0.148395746946335,-0.949482321739197,-0.269967705011368,0.160002514719963,0.00530035002157092,-0.912548959255219,0.408933132886887,-0.945774376392365,-0.0377053394913673,0.322628885507584,-0.992723882198334,-0.0704461559653282,0.0976556614041328,-0.0483415052294731,-0.972243368625641,0.228923216462135,-0.945774376392365,-0.0377053394913673,0.322628885507584,-0.98707526922226,0.0320564471185207,0.157017901539803,-0.982756972312927,0.0282733365893364,0.18272764980793,-0.915307819843292,0.167010903358459,0.366495341062546,-0.992723882198334,-0.0704461559653282,0.0976556614041328,-0.244409754872322,0.89239239692688,-0.379341304302216,-0.163886085152626,0.886906504631042,-0.4319007396698,-0.159621715545654,0.892017662525177,-0.422877490520477,-0.217159882187843,0.894875526428223,-0.389922291040421,-0.221527144312859,0.894115149974823,-0.389209270477295,-0.279347807168961,0.893203675746918,-0.35235208272934,-0.103978477418423,-0.994144678115845,-0.0294081475585699,-0.886062741279602,-0.0768311396241188,0.457154035568237,-0.70785927772522,0.161624610424042,0.687613844871521,
- 0.322425693273544,-0.627128660678864,0.70904952287674,-0.82658052444458,-0.16917222738266,0.536791622638702,0.253795832395554,-0.777626156806946,0.575226128101349,-0.437814205884933,-0.621220767498016,-0.649925768375397,-0.972368001937866,0.118133597075939,0.201357781887054,-0.991981744766235,0.0619222298264503,0.110171347856522,-0.117268599569798,0.88834422826767,-0.443951010704041,-0.117284312844276,0.855264127254486,-0.504745006561279,-0.992914736270905,0.0470432341098785,0.109121046960354,-0.969485521316528,0.203918486833572,0.136070147156715,-0.893184304237366,-0.00460713403299451,0.449667185544968,-0.655312836170197,0.172544181346893,0.735386610031128,-0.82658052444458,-0.16917222738266,0.536791622638702,-0.66708767414093,0.224781259894371,0.710258722305298,-0.969485521316528,0.203918486833572,0.136070147156715,-0.790718138217926,-0.0789769664406776,0.607064723968506,-0.855312645435333,0.153154566884041,0.494958639144897,-0.855312645435333,0.153154566884041,0.494958639144897,-0.790718138217926,-0.0789769664406776,0.607064723968506,-0.922499775886536,-0.0719265714287758,0.379237115383148,-0.973312497138977,-0.146907925605774,0.176297649741173,-0.975310981273651,0.203620180487633,0.0854834392666817,-0.965366244316101,0.107326835393906,0.23780021071434,-0.960426211357117,0.052307240664959,0.27357891201973,-0.984359502792358,0.0745335668325424,0.159628197550774,-0.77086341381073,0.322934448719025,0.549074649810791,-0.975310981273651,0.203620180487633,0.0854834392666817,-0.992580115795136,-0.0587964542210102,-0.106431305408478,-0.906070709228516,-0.0655533745884895,0.418017476797104,-0.906070709228516,-0.0655533745884895,0.418017476797104,-0.992580115795136,-0.0587964542210102,-0.106431305408478,-0.997676253318787,0.0560793429613113,0.0386965051293373,-0.459419429302216,-0.518451988697052,-0.721208333969116,-0.976944804191589,0.0404438748955727,0.209626287221909,-0.997676253318787,0.0560793429613113,0.0386965051293373,-0.988554298877716,0.11618609726429,0.096234142780304,-0.980319261550903,0.101669043302536,0.169227048754692,
- -0.971973419189453,0.00553114851936698,0.235025584697723,-0.972182035446167,-0.181541129946709,0.14800301194191,-0.941711187362671,-0.0392280258238316,0.33412754535675,-0.922499775886536,-0.0719265714287758,0.379237115383148,-0.972182035446167,-0.181541129946709,0.14800301194191,-0.971973419189453,0.00553114851936698,0.235025584697723,-0.984359502792358,0.0745335668325424,0.159628197550774,-0.789467096328735,-0.40010803937912,-0.465462416410446,-0.946713507175446,-0.0402796231210232,0.319548457860947,-0.96644651889801,-0.00160554994363338,0.256863087415695,-0.984359502792358,0.0745335668325424,0.159628197550774,-0.971973419189453,0.00553114851936698,0.235025584697723,-0.981918275356293,0.183510333299637,0.0464809611439705,-0.922499775886536,-0.0719265714287758,0.379237115383148,-0.790718138217926,-0.0789769664406776,0.607064723968506,-0.792785584926605,-0.120557874441147,0.59745854139328,-0.981918275356293,0.183510333299637,0.0464809611439705,-0.946713507175446,-0.0402796231210232,0.319548457860947,-0.971973419189453,0.00553114851936698,0.235025584697723,-0.922499775886536,-0.0719265714287758,0.379237115383148,-0.792785584926605,-0.120557874441147,0.59745854139328,-0.790718138217926,-0.0789769664406776,0.607064723968506,-0.969485521316528,0.203918486833572,0.136070147156715,-0.849074482917786,-0.077616885304451,0.522540152072906,-0.96644651889801,-0.00160554994363338,0.256863087415695,-0.970381259918213,0.178303301334381,0.162997305393219,-0.975310981273651,0.203620180487633,0.0854834392666817,-0.984359502792358,0.0745335668325424,0.159628197550774,-0.975310981273651,0.203620180487633,0.0854834392666817,-0.970381259918213,0.178303301334381,0.162997305393219,-0.985108554363251,-0.126993969082832,0.11590363830328,-0.992580115795136,-0.0587964542210102,-0.106431305408478,-0.969485521316528,0.203918486833572,0.136070147156715,-0.82658052444458,-0.16917222738266,0.536791622638702,-0.972368001937866,0.118133597075939,0.201357781887054,-0.849074482917786,-0.077616885304451,0.522540152072906,-0.997676253318787,0.0560793429613113,0.0386965051293373,
- -0.992580115795136,-0.0587964542210102,-0.106431305408478,-0.985108554363251,-0.126993969082832,0.11590363830328,-0.963882744312286,-0.116247870028019,0.239617258310318,-0.988554298877716,0.11618609726429,0.096234142780304,-0.997676253318787,0.0560793429613113,0.0386965051293373,-0.963882744312286,-0.116247870028019,0.239617258310318,-0.976637840270996,-0.00315343332476914,0.214868932962418,-0.989288806915283,0.0854239612817764,0.118365630507469,-0.775438070297241,0.197086051106453,0.59987735748291,-0.974469304084778,-0.106370352208614,0.197724685072899,-0.979568839073181,-0.0710172802209854,0.188152760267258,-0.920081257820129,0.00273853214457631,0.391717880964279,-0.775438070297241,0.197086051106453,0.59987735748291,-0.920081257820129,0.00273853214457631,0.391717880964279,-0.935385823249817,-0.0434358678758144,0.350951164960861,-0.945903897285461,-0.0633594021201134,0.31820023059845,-0.974469304084778,-0.106370352208614,0.197724685072899,-0.928362309932709,-0.0705931112170219,0.364910870790482,-0.761131763458252,0.147494211792946,0.631604194641113,-0.979568839073181,-0.0710172802209854,0.188152760267258,-0.970741868019104,0.0158343184739351,0.239602878689766,-0.961262106895447,0.0505227111279964,0.270965844392776,-0.942257881164551,0.149408146739006,0.299711972475052,-0.953303635120392,0.147359251976013,0.263623803853989,-0.942257881164551,0.149408146739006,0.299711972475052,-0.924915254116058,-0.103112831711769,0.365922778844833,-0.963503122329712,-0.11971914768219,0.23943455517292,-0.953303635120392,0.147359251976013,0.263623803853989,-0.886062741279602,-0.0768311396241188,0.457154035568237,-0.761131763458252,0.147494211792946,0.631604194641113,-0.928362309932709,-0.0705931112170219,0.364910870790482,-0.70785927772522,0.161624610424042,0.687613844871521,-0.924915254116058,-0.103112831711769,0.365922778844833,-0.994026482105255,-0.029864676296711,0.104973703622818,-0.993488848209381,-0.0965032353997231,0.0605550855398178,-0.963503122329712,-0.11971914768219,0.23943455517292,-0.945903897285461,-0.0633594021201134,0.31820023059845,
- -0.935385823249817,-0.0434358678758144,0.350951164960861,-0.961262106895447,0.0505227111279964,0.270965844392776,-0.970741868019104,0.0158343184739351,0.239602878689766,-0.994026482105255,-0.029864676296711,0.104973703622818,-0.991981744766235,0.0619222298264503,0.110171347856522,-0.992914736270905,0.0470432341098785,0.109121046960354,-0.998094439506531,-0.00897748116403818,0.0610480085015297,-0.993488848209381,-0.0965032353997231,0.0605550855398178,-0.655312836170197,0.172544181346893,0.735386610031128,0.253795832395554,-0.777626156806946,0.575226128101349,-0.82658052444458,-0.16917222738266,0.536791622638702,-0.82311350107193,0.309422552585602,0.476174235343933,-0.988554298877716,0.11618609726429,0.096234142780304,-0.0538165010511875,0.956100225448608,0.288055717945099,-0.881230533123016,0.021028796210885,0.472218781709671,-0.816125154495239,-0.0484258830547333,0.575842499732971,-0.595543026924133,0.379256457090378,0.70816171169281,-0.942194879055023,0.31452751159668,0.115504920482636,-0.816125154495239,-0.0484258830547333,0.575842499732971,-0.881230533123016,0.021028796210885,0.472218781709671,-0.889172554016113,-0.110722675919533,0.443973690271378,-0.827682793140411,-0.157295003533363,0.538701593875885,-0.942194879055023,0.31452751159668,0.115504920482636,-0.595543026924133,0.379256457090378,0.70816171169281,-0.856027603149414,0.0662411749362946,0.512668490409851,-0.873564600944519,0.0810031965374947,0.479919970035553,-0.55482542514801,-0.621873497962952,-0.552668273448944,-0.653331995010376,-0.189483463764191,-0.732975721359253,-0.79872328042984,-0.0488919802010059,0.59970885515213,-0.917317390441895,0.132364317774773,0.375510990619659,-0.758893549442291,-0.0472300313413143,0.649499654769897,-0.552229046821594,0.367004692554474,0.74856561422348,-0.934122681617737,0.224427103996277,0.277573883533478,-0.46278378367424,-0.295847982168198,0.835646569728851,-0.675185799598694,0.244075700640678,0.696097075939178,-0.79872328042984,-0.0488919802010059,0.59970885515213,-0.552229046821594,0.367004692554474,0.74856561422348,
- -0.758893549442291,-0.0472300313413143,0.649499654769897,-0.46278378367424,-0.295847982168198,0.835646569728851,-0.934122681617737,0.224427103996277,0.277573883533478,-0.676535785198212,0.0152956331148744,0.736250877380371,-0.758364617824554,-0.0772552937269211,0.647236168384552,-0.827682793140411,-0.157295003533363,0.538701593875885,-0.889172554016113,-0.110722675919533,0.443973690271378,-0.937085092067719,0.279791653156281,0.208777651190758,-0.74429589509964,-0.0342159867286682,0.666972935199738,-0.79872328042984,-0.0488919802010059,0.59970885515213,-0.675185799598694,0.244075700640678,0.696097075939178,-0.623484909534454,-0.17869333922863,0.761140644550323,-0.917317390441895,0.132364317774773,0.375510990619659,-0.552229046821594,0.367004692554474,0.74856561422348,-0.407316774129868,0.797323405742645,-0.445385843515396,0.0135730411857367,0.995633721351624,0.0923541560769081,-0.934122681617737,0.224427103996277,0.277573883533478,-0.79872328042984,-0.0488919802010059,0.59970885515213,-0.653331995010376,-0.189483463764191,-0.732975721359253,-0.407316774129868,0.797323405742645,-0.445385843515396,-0.552229046821594,0.367004692554474,0.74856561422348,-0.934122681617737,0.224427103996277,0.277573883533478,0.0135730411857367,0.995633721351624,0.0923541560769081,0.435610413551331,0.728768825531006,0.528336644172668,-0.676535785198212,0.0152956331148744,0.736250877380371,-0.937085092067719,0.279791653156281,0.208777651190758,-0.808312296867371,-0.0295783691108227,0.588010549545288,-0.793959677219391,0.10476366430521,0.598876118659973,-0.74429589509964,-0.0342159867286682,0.666972935199738,-0.889172554016113,-0.110722675919533,0.443973690271378,-0.848407924175262,-0.118135847151279,0.515992283821106,-0.591685116291046,-0.189158573746681,0.783663034439087,-0.937085092067719,0.279791653156281,0.208777651190758,-0.881230533123016,0.021028796210885,0.472218781709671,-0.85898631811142,-0.0714800655841827,0.506984412670136,-0.848407924175262,-0.118135847151279,0.515992283821106,-0.889172554016113,-0.110722675919533,0.443973690271378,
- -0.85898631811142,-0.0714800655841827,0.506984412670136,-0.881230533123016,0.021028796210885,0.472218781709671,-0.942194879055023,0.31452751159668,0.115504920482636,-0.583070635795593,-0.215899497270584,0.783208727836609,-0.583070635795593,-0.215899497270584,0.783208727836609,-0.942194879055023,0.31452751159668,0.115504920482636,-0.873564600944519,0.0810031965374947,0.479919970035553,-0.765427827835083,0.035210657864809,0.642557859420776,-0.937085092067719,0.279791653156281,0.208777651190758,-0.591685116291046,-0.189158573746681,0.783663034439087,-0.835189998149872,0.076426200568676,0.544625222682953,-0.808312296867371,-0.0295783691108227,0.588010549545288,-0.675185799598694,0.244075700640678,0.696097075939178,-0.827682793140411,-0.157295003533363,0.538701593875885,-0.74429589509964,-0.0342159867286682,0.666972935199738,-0.623484909534454,-0.17869333922863,0.761140644550323,-0.827682793140411,-0.157295003533363,0.538701593875885,-0.675185799598694,0.244075700640678,0.696097075939178,-0.758893549442291,-0.0472300313413143,0.649499654769897,-0.816125154495239,-0.0484258830547333,0.575842499732971,-0.816125154495239,-0.0484258830547333,0.575842499732971,-0.758893549442291,-0.0472300313413143,0.649499654769897,-0.46278378367424,-0.295847982168198,0.835646569728851,-0.595543026924133,0.379256457090378,0.70816171169281,-0.595543026924133,0.379256457090378,0.70816171169281,-0.46278378367424,-0.295847982168198,0.835646569728851,-0.758364617824554,-0.0772552937269211,0.647236168384552,-0.595543026924133,0.379256457090378,0.70816171169281,-0.758364617824554,-0.0772552937269211,0.647236168384552,-0.856027603149414,0.0662411749362946,0.512668490409851,-0.74429589509964,-0.0342159867286682,0.666972935199738,-0.793959677219391,0.10476366430521,0.598876118659973,-0.854981303215027,0.0890173017978668,0.510962665081024,-0.623484909534454,-0.17869333922863,0.761140644550323,-0.854981303215027,0.0890173017978668,0.510962665081024,-0.710449457168579,-0.160723477602005,0.685149192810059,-0.917317390441895,0.132364317774773,0.375510990619659,
- -0.623484909534454,-0.17869333922863,0.761140644550323,0.330901563167572,0.893555045127869,0.303420066833496,0.275476902723312,0.895144939422607,0.350468546152115,0.247896984219551,0.89388120174408,0.373528480529785,0.293496668338776,0.894189357757568,0.33806112408638,0.294844716787338,0.894925653934479,0.334924966096878,0.334555834531784,0.894287049770355,0.297192066907883,-0.815657675266266,-0.00160558940842748,0.578532814979553,-0.526400208473206,0.309133440256119,0.792047619819641,-0.820207536220551,0.00124578224495053,0.572064697742462,-0.827407419681549,-0.0472047254443169,0.559614598751068,-0.827407419681549,-0.0472047254443169,0.559614598751068,-0.800306975841522,-0.135593309998512,0.584057569503784,-0.78004115819931,-0.172408401966095,0.601507425308228,-0.815657675266266,-0.00160558940842748,0.578532814979553,-0.526400208473206,0.309133440256119,0.792047619819641,-0.778178751468658,0.0897140726447105,0.621602058410645,-0.783769428730011,0.079110860824585,0.615992605686188,-0.820207536220551,0.00124578224495053,0.572064697742462,0.462222993373871,-0.627026677131653,0.627046465873718,-0.587146818637848,0.140831738710403,0.797135591506958,-0.777420043945313,-0.0464757345616817,0.62726241350174,0.632180988788605,-0.18764939904213,0.751754581928253,-0.816130638122559,-0.0303413029760122,0.577070295810699,-0.923764526844025,-0.297018617391586,0.241741999983788,-0.516050338745117,0.212692245841026,0.829731345176697,-0.858910322189331,0.336613774299622,0.385958909988403,-0.837193429470062,0.256110221147537,0.483233600854874,-0.816130638122559,-0.0303413029760122,0.577070295810699,-0.858910322189331,0.336613774299622,0.385958909988403,-0.777420043945313,-0.0464757345616817,0.62726241350174,-0.923764526844025,-0.297018617391586,0.241741999983788,-0.853575348854065,-0.0868010893464088,0.513687312602997,-0.8323734998703,0.0022425742354244,0.554210424423218,-0.516050338745117,0.212692245841026,0.829731345176697,-0.800306975841522,-0.135593309998512,0.584057569503784,-0.878164768218994,-0.0261244606226683,0.477644294500351,
- -0.649762213230133,0.242239773273468,0.720506131649017,-0.78004115819931,-0.172408401966095,0.601507425308228,-0.649762213230133,0.242239773273468,0.720506131649017,-0.878164768218994,-0.0261244606226683,0.477644294500351,-0.8448765873909,0.101736389100552,0.525198221206665,-0.812402665615082,0.0661139562726021,0.579336643218994,-0.777420043945313,-0.0464757345616817,0.62726241350174,-0.587146818637848,0.140831738710403,0.797135591506958,-0.894287168979645,-0.17885559797287,0.410196572542191,-0.837193429470062,0.256110221147537,0.483233600854874,-0.858910322189331,0.336613774299622,0.385958909988403,-0.516050338745117,0.212692245841026,0.829731345176697,-0.0966862216591835,0.994925737380981,-0.0278333202004433,0.381879448890686,0.796528697013855,0.468732446432114,-0.777420043945313,-0.0464757345616817,0.62726241350174,-0.858910322189331,0.336613774299622,0.385958909988403,0.381879448890686,0.796528697013855,0.468732446432114,0.632180988788605,-0.18764939904213,0.751754581928253,-0.516050338745117,0.212692245841026,0.829731345176697,-0.8323734998703,0.0022425742354244,0.554210424423218,-0.46339350938797,0.727874338626862,-0.50543600320816,-0.0966862216591835,0.994925737380981,-0.0278333202004433,-0.78004115819931,-0.172408401966095,0.601507425308228,-0.649762213230133,0.242239773273468,0.720506131649017,-0.963555872440338,-0.244168177247047,0.109279178082943,-0.851898968219757,-0.0787713900208473,0.517748177051544,-0.815657675266266,-0.00160558940842748,0.578532814979553,-0.78004115819931,-0.172408401966095,0.601507425308228,-0.851898968219757,-0.0787713900208473,0.517748177051544,-0.847345948219299,-0.0489086732268333,0.528784155845642,-0.847345948219299,-0.0489086732268333,0.528784155845642,-0.961744070053101,-0.213450878858566,0.171718001365662,-0.526400208473206,0.309133440256119,0.792047619819641,-0.815657675266266,-0.00160558940842748,0.578532814979553,-0.961744070053101,-0.213450878858566,0.171718001365662,-0.935149312019348,0.0175350774079561,0.353819519281387,-0.778178751468658,0.0897140726447105,0.621602058410645,
- -0.526400208473206,0.309133440256119,0.792047619819641,-0.649762213230133,0.242239773273468,0.720506131649017,-0.812402665615082,0.0661139562726021,0.579336643218994,-0.926778078079224,-0.0272321999073029,0.374620705842972,-0.963555872440338,-0.244168177247047,0.109279178082943,-0.878164768218994,-0.0261244606226683,0.477644294500351,-0.894287168979645,-0.17885559797287,0.410196572542191,-0.813924551010132,-0.0230192523449659,0.580514430999756,-0.8448765873909,0.101736389100552,0.525198221206665,-0.837193429470062,0.256110221147537,0.483233600854874,-0.894287168979645,-0.17885559797287,0.410196572542191,-0.878164768218994,-0.0261244606226683,0.477644294500351,-0.800306975841522,-0.135593309998512,0.584057569503784,-0.800306975841522,-0.135593309998512,0.584057569503784,-0.827407419681549,-0.0472047254443169,0.559614598751068,-0.816130638122559,-0.0303413029760122,0.577070295810699,-0.837193429470062,0.256110221147537,0.483233600854874,-0.827407419681549,-0.0472047254443169,0.559614598751068,-0.820207536220551,0.00124578224495053,0.572064697742462,-0.923764526844025,-0.297018617391586,0.241741999983788,-0.816130638122559,-0.0303413029760122,0.577070295810699,-0.853575348854065,-0.0868010893464088,0.513687312602997,-0.923764526844025,-0.297018617391586,0.241741999983788,-0.820207536220551,0.00124578224495053,0.572064697742462,-0.783769428730011,0.079110860824585,0.615992605686188,-0.768066823482513,-0.0611695647239685,0.637441456317902,-0.813924551010132,-0.0230192523449659,0.580514430999756,-0.894287168979645,-0.17885559797287,0.410196572542191,-0.587146818637848,0.140831738710403,0.797135591506958,-0.308857560157776,0.895144045352936,-0.3214410841465,-0.252362787723541,0.893457114696503,-0.37154757976532,-0.243046566843987,0.894080996513367,-0.37622806429863,-0.289787828922272,0.894935429096222,-0.339284181594849,-0.293703585863113,0.894115090370178,-0.338077574968338,-0.338474035263062,0.893681943416595,-0.294563949108124,-0.11018580943346,-0.993140161037445,-0.0391376726329327,-0.768066823482513,-0.0611695647239685,0.637441456317902,
- -0.587146818637848,0.140831738710403,0.797135591506958,0.462222993373871,-0.627026677131653,0.627046465873718,-0.0195879712700844,0.99565052986145,-0.0910855606198311,0.0162918493151665,0.993195295333862,-0.115315586328506,0.04078733548522,0.991444885730743,-0.123989954590797,0.0286591947078705,0.993129849433899,-0.113453753292561,-0.0202284250408411,0.995618581771851,-0.09129399061203,-0.0222919248044491,0.995796680450439,-0.0888372659683228,-0.0758581981062889,0.995675444602966,-0.0536287352442741,-0.0712853744626045,0.995463073253632,-0.0630229860544205,-0.0715951919555664,0.995042324066162,-0.0690294653177261,-0.022018987685442,0.995665788650513,-0.0903603285551071,-0.591685116291046,-0.189158573746681,0.783663034439087,0.437461316585541,0.0923606753349304,0.894481360912323,-0.397387266159058,0.608295619487762,-0.68706613779068,-0.835189998149872,0.076426200568676,0.544625222682953,-0.963555872440338,-0.244168177247047,0.109279178082943,-0.926778078079224,-0.0272321999073029,0.374620705842972,-0.0579973384737968,0.99757319688797,-0.0385230295360088,-0.514400601387024,0.103148326277733,-0.851323843002319,-0.851898968219757,-0.0787713900208473,0.517748177051544,-0.963555872440338,-0.244168177247047,0.109279178082943,-0.514400601387024,0.103148326277733,-0.851323843002319,-0.438493102788925,-0.472600013017654,-0.764442980289459,-0.847345948219299,-0.0489086732268333,0.528784155845642,-0.851898968219757,-0.0787713900208473,0.517748177051544,-0.438493102788925,-0.472600013017654,-0.764442980289459,-0.392433911561966,-0.62904304265976,-0.67104434967041,-0.392433911561966,-0.62904304265976,-0.67104434967041,-0.245740339159966,-0.906984210014343,-0.342039704322815,-0.961744070053101,-0.213450878858566,0.171718001365662,-0.847345948219299,-0.0489086732268333,0.528784155845642,-0.245740339159966,-0.906984210014343,-0.342039704322815,-0.0399949438869953,-0.991296172142029,0.12542849779129,-0.935149312019348,0.0175350774079561,0.353819519281387,-0.961744070053101,-0.213450878858566,0.171718001365662,0.165845975279808,-0.897358059883118,0.408954471349716,
- -0.583070635795593,-0.215899497270584,0.783208727836609,-0.765427827835083,0.035210657864809,0.642557859420776,-0.103669680655003,-0.994579195976257,0.00806386303156614,0.352476745843887,-0.624885559082031,0.696619033813477,-0.85898631811142,-0.0714800655841827,0.506984412670136,-0.583070635795593,-0.215899497270584,0.783208727836609,0.165845975279808,-0.897358059883118,0.408954471349716,-0.848407924175262,-0.118135847151279,0.515992283821106,-0.85898631811142,-0.0714800655841827,0.506984412670136,0.352476745843887,-0.624885559082031,0.696619033813477,0.405218988656998,-0.46811854839325,0.785278677940369,-0.591685116291046,-0.189158573746681,0.783663034439087,-0.848407924175262,-0.118135847151279,0.515992283821106,0.405218988656998,-0.46811854839325,0.785278677940369,0.437461316585541,0.0923606753349304,0.894481360912323,-0.142241552472115,-0.602820515632629,-0.785095393657684,-0.121442303061485,-0.144065618515015,-0.982087969779968,-0.999502003192902,-0.0221498385071754,0.0224775094538927,-0.953389883041382,0.169308319687843,-0.249764934182167,-0.983010768890381,0.0924252197146416,0.158578798174858,-0.95918220281601,0.221164330840111,0.176226258277893,-0.970274686813354,0.159820899367332,-0.181726098060608,-0.839315950870514,-0.226939037442207,0.494011491537094,-0.967310428619385,0.19436115026474,0.16289359331131,-0.999502003192902,-0.0221498385071754,0.0224775094538927,-0.95918220281601,0.221164330840111,0.176226258277893,-0.983010768890381,0.0924252197146416,0.158578798174858,-0.839315950870514,-0.226939037442207,0.494011491537094,-0.970274686813354,0.159820899367332,-0.181726098060608,-0.966071963310242,0.0572344213724136,0.251851320266724,-0.983668327331543,-0.000878900231327862,-0.179988324642181,-0.981452465057373,-0.0762703791260719,0.175880283117294,-0.999502003192902,-0.0221498385071754,0.0224775094538927,-0.967310428619385,0.19436115026474,0.16289359331131,-0.900297880172729,-0.172349020838737,0.399699300527573,-0.953389883041382,0.169308319687843,-0.249764934182167,-0.95918220281601,0.221164330840111,0.176226258277893,
- -0.0720633193850517,0.861329078674316,-0.502910673618317,-0.0316469632089138,0.983755111694336,0.17670413851738,-0.970274686813354,0.159820899367332,-0.181726098060608,-0.999502003192902,-0.0221498385071754,0.0224775094538927,-0.121442303061485,-0.144065618515015,-0.982087969779968,-0.0720633193850517,0.861329078674316,-0.502910673618317,-0.95918220281601,0.221164330840111,0.176226258277893,-0.970274686813354,0.159820899367332,-0.181726098060608,-0.0316469632089138,0.983755111694336,0.17670413851738,0.0617324002087116,0.649851024150848,0.757550537586212,-0.966071963310242,0.0572344213724136,0.251851320266724,-0.967310428619385,0.19436115026474,0.16289359331131,-0.0139956204220653,-0.0669606998562813,0.997657477855682,-0.0550073757767677,0.679523527622223,0.73158872127533,-0.900297880172729,-0.172349020838737,0.399699300527573,-0.0139956204220653,-0.0669606998562813,0.997657477855682,-0.967310428619385,0.19436115026474,0.16289359331131,-0.983010768890381,0.0924252197146416,0.158578798174858,-0.0230098329484463,-0.608104407787323,0.793523550033569,-0.0230098329484463,-0.608104407787323,0.793523550033569,-0.983010768890381,0.0924252197146416,0.158578798174858,-0.839315950870514,-0.226939037442207,0.494011491537094,-0.0254210587590933,-0.895826399326324,0.443676680326462,-0.0254210587590933,-0.895826399326324,0.443676680326462,-0.839315950870514,-0.226939037442207,0.494011491537094,-0.981452465057373,-0.0762703791260719,0.175880283117294,-0.981452465057373,-0.0762703791260719,0.175880283117294,-0.983668327331543,-0.000878900231327862,-0.179988324642181,-0.531297326087952,-0.722490191459656,-0.442414909601212,-0.0254210587590933,-0.895826399326324,0.443676680326462,-0.981452465057373,-0.0762703791260719,0.175880283117294,-0.531297326087952,-0.722490191459656,-0.442414909601212,-0.0373458676040173,-0.947376251220703,-0.317936509847641,-0.0550073757767677,0.679523527622223,0.73158872127533,-0.0742872655391693,0.94288969039917,-0.324715882539749,-0.997151136398315,0.0733715146780014,0.017496395856142,-0.900297880172729,-0.172349020838737,0.399699300527573,
- -0.997151136398315,0.0733715146780014,0.017496395856142,-0.982629835605621,-0.0810756012797356,0.166929736733437,-0.953389883041382,0.169308319687843,-0.249764934182167,-0.900297880172729,-0.172349020838737,0.399699300527573,0.10318498313427,0.902014672756195,0.419192582368851,0.0208239778876305,0.890522003173828,0.454463273286819,-0.0013022810453549,0.875940799713135,0.482416868209839,0.0500495955348015,0.879051268100739,0.474092781543732,0.0530483536422253,0.880881071090698,0.470355629920959,0.111455358564854,0.883510172367096,0.45495879650116,0.0236149616539478,-0.610247731208801,0.791858494281769,-0.921543478965759,0.169097945094109,0.349519073963165,-0.995804667472839,-0.0319103561341763,0.0857605636119843,0.088791660964489,-0.140973225235939,0.986023545265198,-0.992380261421204,0.109012998640537,-0.0574242919683456,-0.884686172008514,-0.227193132042885,-0.40707939863205,-0.948173940181732,0.153061404824257,0.278457194566727,-0.979875802993774,0.192231893539429,-0.0537617951631546,-0.978374242782593,0.198324859142303,-0.0587457232177258,-0.992380261421204,0.109012998640537,-0.0574242919683456,-0.979875802993774,0.192231893539429,-0.0537617951631546,-0.995804667472839,-0.0319103561341763,0.0857605636119843,-0.884686172008514,-0.227193132042885,-0.40707939863205,-0.988849937915802,-0.0986078828573227,-0.111589208245277,-0.96998518705368,0.0174058005213737,0.242540374398232,-0.99769538640976,0.0445166826248169,-0.0512066520750523,-0.948173940181732,0.153061404824257,0.278457194566727,-0.995804667472839,-0.0319103561341763,0.0857605636119843,-0.921543478965759,0.169097945094109,0.349519073963165,-0.93504273891449,-0.176897868514061,-0.307249456644058,-0.978374242782593,0.198324859142303,-0.0587457232177258,-0.979875802993774,0.192231893539429,-0.0537617951631546,-0.948173940181732,0.153061404824257,0.278457194566727,-0.0734928175806999,0.982554972171783,-0.170834809541702,0.0339989140629768,0.860323011875153,0.508614242076874,-0.995804667472839,-0.0319103561341763,0.0857605636119843,-0.979875802993774,0.192231893539429,-0.0537617951631546,
- 0.0339989140629768,0.860323011875153,0.508614242076874,0.088791660964489,-0.140973225235939,0.986023545265198,-0.948173940181732,0.153061404824257,0.278457194566727,-0.99769538640976,0.0445166826248169,-0.0512066520750523,-0.103413350880146,0.648251473903656,-0.754371047019959,-0.0734928175806999,0.982554972171783,-0.170834809541702,-0.0564136356115341,0.682969272136688,-0.728265345096588,-0.93504273891449,-0.176897868514061,-0.307249456644058,-0.998852014541626,-0.0050364788621664,-0.0476379357278347,-0.0784520134329796,0.995889782905579,0.0452660471200943,-0.978374242782593,0.198324859142303,-0.0587457232177258,-0.93504273891449,-0.176897868514061,-0.307249456644058,-0.0564136356115341,0.682969272136688,-0.728265345096588,-0.0111774327233434,-0.069939136505127,-0.997488617897034,-0.0111774327233434,-0.069939136505127,-0.997488617897034,-0.0212426483631134,-0.609877228736877,-0.79221123456955,-0.992380261421204,0.109012998640537,-0.0574242919683456,-0.978374242782593,0.198324859142303,-0.0587457232177258,-0.0212426483631134,-0.609877228736877,-0.79221123456955,-0.0244892071932554,-0.897449851036072,-0.44043630361557,-0.884686172008514,-0.227193132042885,-0.40707939863205,-0.992380261421204,0.109012998640537,-0.0574242919683456,-0.0244892071932554,-0.897449851036072,-0.44043630361557,-0.988849937915802,-0.0986078828573227,-0.111589208245277,-0.884686172008514,-0.227193132042885,-0.40707939863205,-0.988849937915802,-0.0986078828573227,-0.111589208245277,-0.537989020347595,-0.715579926967621,0.445548325777054,-0.96998518705368,0.0174058005213737,0.242540374398232,-0.0244892071932554,-0.897449851036072,-0.44043630361557,-0.039247527718544,-0.946839869022369,0.319302290678024,-0.537989020347595,-0.715579926967621,0.445548325777054,-0.988849937915802,-0.0986078828573227,-0.111589208245277,-0.990816831588745,0.0233724676072598,0.133175224065781,-0.998852014541626,-0.0050364788621664,-0.0476379357278347,-0.93504273891449,-0.176897868514061,-0.307249456644058,-0.921543478965759,0.169097945094109,0.349519073963165,-0.0778101086616516,0.890510559082031,-0.448259502649307,
- 0.0126622375100851,0.901963770389557,-0.43162602186203,0.016522228717804,0.883230984210968,-0.468647062778473,-0.0485605970025063,0.88088446855545,-0.47083380818367,-0.053015761077404,0.879052579402924,-0.473767787218094,-0.108810216188431,0.875749468803406,-0.47034364938736,-0.0782217606902123,-0.988163411617279,-0.13196387887001,-0.990816831588745,0.0233724676072598,0.133175224065781,-0.921543478965759,0.169097945094109,0.349519073963165,0.0236149616539478,-0.610247731208801,0.791858494281769,-0.023870263248682,-0.999715089797974,-1.73593398358207e-005,-0.0304047893732786,-0.999537646770477,-0.000118320487672463,-0.0403997972607613,-0.999183595180511,-0.000123362173326314,-0.0323281921446323,-0.99947726726532,-0.000282413529930636,-0.025179460644722,-0.99968284368515,-0.000491913000587374,-0.0221152789890766,-0.999755382537842,-0.000309854978695512,0.0463360287249088,-0.998923420906067,-0.00223616813309491,0.0785338059067726,-0.996911466121674,-9.60166071308777e-005,0.0419457070529461,-0.999117016792297,0.00241550826467574,-0.021368533372879,-0.99977171421051,-8.34704842418432e-005,-0.982629835605621,-0.0810756012797356,0.166929736733437,0.0241356156766415,-0.736219048500061,0.676312685012817,-0.142241552472115,-0.602820515632629,-0.785095393657684,-0.953389883041382,0.169308319687843,-0.249764934182167,-0.880575120449066,0.188988730311394,0.434592843055725,-0.982629835605621,-0.0810756012797356,0.166929736733437,-0.997151136398315,0.0733715146780014,0.017496395856142,-0.99648904800415,0.054381936788559,0.06365817040205,-0.880575120449066,0.188988730311394,0.434592843055725,0.0241356156766415,-0.736219048500061,0.676312685012817,-0.982629835605621,-0.0810756012797356,0.166929736733437,-0.989688217639923,-0.051240086555481,-0.133760631084442,-0.997151136398315,0.0733715146780014,0.017496395856142,-0.0742872655391693,0.94288969039917,-0.324715882539749,-0.710449457168579,-0.160723477602005,0.685149192810059,0.440536022186279,-0.692394316196442,0.571417570114136,-0.55482542514801,-0.621873497962952,-0.552668273448944,
- -0.917317390441895,0.132364317774773,0.375510990619659,-0.854981303215027,0.0890173017978668,0.510962665081024,-0.791599750518799,0.00289827329106629,0.611033260822296,-0.436280131340027,0.216950967907906,0.873265147209167,-0.710449457168579,-0.160723477602005,0.685149192810059,-0.846680641174316,0.0262213330715895,0.531455099582672,-0.808312296867371,-0.0295783691108227,0.588010549545288,-0.835189998149872,0.076426200568676,0.544625222682953,-0.946656286716461,-0.0708431228995323,0.314361482858658,-0.89393138885498,-0.1407330930233,0.425536245107651,-0.854981303215027,0.0890173017978668,0.510962665081024,-0.793959677219391,0.10476366430521,0.598876118659973,-0.436280131340027,0.216950967907906,0.873265147209167,0.440536022186279,-0.692394316196442,0.571417570114136,-0.710449457168579,-0.160723477602005,0.685149192810059,-0.62328177690506,0.229575246572495,0.747539401054382,-0.793959677219391,0.10476366430521,0.598876118659973,-0.808312296867371,-0.0295783691108227,0.588010549545288,-0.946656286716461,-0.0708431228995323,0.314361482858658,-0.835189998149872,0.076426200568676,0.544625222682953,-0.397387266159058,0.608295619487762,-0.68706613779068,-0.449962437152863,-0.0651368871331215,0.890668869018555,-0.34734445810318,-0.0482957921922207,0.936493098735809,0.107898853719234,0.0968445986509323,0.989433646202087,-0.784737110137939,0.298653960227966,0.543133139610291,-0.34734445810318,-0.0482957921922207,0.936493098735809,-0.449962437152863,-0.0651368871331215,0.890668869018555,-0.472534537315369,-0.200761005282402,0.85814106464386,-0.378615885972977,-0.155947551131248,0.912321448326111,-0.784737110137939,0.298653960227966,0.543133139610291,0.107898853719234,0.0968445986509323,0.989433646202087,-0.455074459314346,0.292648643255234,0.840989887714386,-0.41920194029808,-0.00335453380830586,0.907886862754822,-0.769712150096893,-0.622203946113586,-0.142848134040833,-0.95286351442337,-0.189440757036209,-0.236987859010696,-0.332971215248108,0.0233063958585262,0.942648947238922,-0.528228640556335,0.219573885202408,0.820220470428467,
- -0.281381517648697,0.0215345676988363,0.959354281425476,-0.10203044116497,0.369079351425171,0.923780381679535,-0.517097055912018,0.243885383009911,0.820445239543915,0.0588664263486862,-0.191180109977722,0.979788184165955,-0.166947260499001,0.314806014299393,0.934358537197113,-0.332971215248108,0.0233063958585262,0.942648947238922,-0.10203044116497,0.369079351425171,0.923780381679535,-0.281381517648697,0.0215345676988363,0.959354281425476,0.0588664263486862,-0.191180109977722,0.979788184165955,-0.517097055912018,0.243885383009911,0.820445239543915,-0.0930772721767426,0.113482102751732,0.989170610904694,-0.540629029273987,0.0058407885953784,0.84124082326889,-0.378615885972977,-0.155947551131248,0.912321448326111,-0.472534537315369,-0.200761005282402,0.85814106464386,-0.65938413143158,0.178872048854828,0.730217337608337,-0.239963948726654,-0.0339038670063019,0.970189571380615,-0.332971215248108,0.0233063958585262,0.942648947238922,-0.166947260499001,0.314806014299393,0.934358537197113,-0.0954068079590797,-0.0730729028582573,0.99275267124176,-0.528228640556335,0.219573885202408,0.820220470428467,-0.10203044116497,0.369079351425171,0.923780381679535,-0.589679658412933,0.795690417289734,-0.138399824500084,0.0636018961668015,0.995541334152222,0.0696579068899155,-0.517097055912018,0.243885383009911,0.820445239543915,-0.332971215248108,0.0233063958585262,0.942648947238922,-0.95286351442337,-0.189440757036209,-0.236987859010696,-0.589679658412933,0.795690417289734,-0.138399824500084,-0.10203044116497,0.369079351425171,0.923780381679535,-0.517097055912018,0.243885383009911,0.820445239543915,0.0636018961668015,0.995541334152222,0.0696579068899155,0.657856643199921,0.72843199968338,0.191341206431389,-0.0930772721767426,0.113482102751732,0.989170610904694,-0.65938413143158,0.178872048854828,0.730217337608337,-0.359130352735519,-0.108878239989281,0.926914691925049,-0.318959444761276,0.102609604597092,0.942197501659393,-0.239963948726654,-0.0339038670063019,0.970189571380615,-0.472534537315369,-0.200761005282402,0.85814106464386,
- -0.383773982524872,-0.171284362673759,0.907402515411377,-0.0653143301606178,-0.261607140302658,0.962962031364441,-0.65938413143158,0.178872048854828,0.730217337608337,-0.449962437152863,-0.0651368871331215,0.890668869018555,-0.388655513525009,-0.127949208021164,0.912455976009369,-0.383773982524872,-0.171284362673759,0.907402515411377,-0.472534537315369,-0.200761005282402,0.85814106464386,-0.388655513525009,-0.127949208021164,0.912455976009369,-0.449962437152863,-0.0651368871331215,0.890668869018555,-0.784737110137939,0.298653960227966,0.543133139610291,-0.11443355679512,-0.258679986000061,0.959160923957825,-0.11443355679512,-0.258679986000061,0.959160923957825,-0.784737110137939,0.298653960227966,0.543133139610291,-0.41920194029808,-0.00335453380830586,0.907886862754822,-0.227724701166153,-0.0569611676037312,0.972058117389679,-0.65938413143158,0.178872048854828,0.730217337608337,-0.0653143301606178,-0.261607140302658,0.962962031364441,-0.411821752786636,0.000472097337478772,0.911264181137085,-0.359130352735519,-0.108878239989281,0.926914691925049,-0.166947260499001,0.314806014299393,0.934358537197113,-0.378615885972977,-0.155947551131248,0.912321448326111,-0.239963948726654,-0.0339038670063019,0.970189571380615,-0.0954068079590797,-0.0730729028582573,0.99275267124176,-0.378615885972977,-0.155947551131248,0.912321448326111,-0.166947260499001,0.314806014299393,0.934358537197113,-0.281381517648697,0.0215345676988363,0.959354281425476,-0.34734445810318,-0.0482957921922207,0.936493098735809,-0.34734445810318,-0.0482957921922207,0.936493098735809,-0.281381517648697,0.0215345676988363,0.959354281425476,0.0588664263486862,-0.191180109977722,0.979788184165955,0.107898853719234,0.0968445986509323,0.989433646202087,0.0588664263486862,-0.191180109977722,0.979788184165955,-0.540629029273987,0.0058407885953784,0.84124082326889,-0.282487481832504,-0.818088352680206,0.50093138217926,0.107898853719234,0.0968445986509323,0.989433646202087,0.0588664263486862,-0.191180109977722,0.979788184165955,-0.282487481832504,-0.818088352680206,0.50093138217926,
- -0.455074459314346,0.292648643255234,0.840989887714386,-0.0954068079590797,-0.0730729028582573,0.99275267124176,-0.239963948726654,-0.0339038670063019,0.970189571380615,-0.318959444761276,0.102609604597092,0.942197501659393,-0.372903436422348,0.15582112967968,0.914692759513855,-0.372903436422348,0.15582112967968,0.914692759513855,-0.164513543248177,-0.0883053317666054,0.982414126396179,-0.528228640556335,0.219573885202408,0.820220470428467,-0.0954068079590797,-0.0730729028582573,0.99275267124176,0.444717347621918,0.893396317958832,0.0637942925095558,0.425055235624313,0.895076990127563,0.134779393672943,0.415083169937134,0.893813014030457,0.169718459248543,0.433168768882751,0.894067168235779,0.114055640995502,0.432384073734283,0.894877910614014,0.110624171793461,0.44406995177269,0.894232213497162,0.0561307221651077,-0.349346429109573,-0.0753192827105522,0.933961391448975,0.122131623327732,0.297904640436172,0.946750640869141,-0.689454317092896,0.299556314945221,0.659483671188354,-0.36802476644516,-0.0470486581325531,0.928624868392944,-0.36802476644516,-0.0470486581325531,0.928624868392944,-0.331450313329697,-0.134792476892471,0.933794319629669,-0.320455580949783,-0.193452626466751,0.927299439907074,-0.349346429109573,-0.0753192827105522,0.933961391448975,0.122131623327732,0.297904640436172,0.946750640869141,-0.34472668170929,0.000984473852440715,0.938702642917633,-0.294152736663818,0.303387880325317,0.906327664852142,-0.689454317092896,0.299556314945221,0.659483671188354,0.73430198431015,-0.627921462059021,0.257905244827271,-0.0469418056309223,0.215762078762054,0.975316941738129,-0.278325319290161,0.0114341722801328,0.960418820381165,0.945979952812195,-0.187522381544113,0.264494389295578,-0.332764595746994,0.0276319961994886,0.942604959011078,-0.70074725151062,-0.266990631818771,0.661565840244293,-0.0656468719244003,0.230014145374298,0.970970571041107,-0.441442787647247,0.333770483732224,0.832901835441589,-0.406897813081741,0.312241792678833,0.85845160484314,-0.332764595746994,0.0276319961994886,0.942604959011078,-0.441442787647247,0.333770483732224,0.832901835441589,
- -0.278325319290161,0.0114341722801328,0.960418820381165,-0.70074725151062,-0.266990631818771,0.661565840244293,-0.381191551685333,0.0165539681911469,0.924347937107086,-0.39899930357933,0.0981249436736107,0.911685824394226,-0.0656468719244003,0.230014145374298,0.970970571041107,-0.331450313329697,-0.134792476892471,0.933794319629669,-0.452940315008163,-0.0257757436484098,0.891168177127838,-0.0913811475038528,0.187174454331398,0.97806704044342,-0.320455580949783,-0.193452626466751,0.927299439907074,-0.0913811475038528,0.187174454331398,0.97806704044342,-0.452940315008163,-0.0257757436484098,0.891168177127838,-0.3987917304039,0.0997403934597969,0.911601305007935,-0.344019621610641,-0.0246777404099703,0.938638091087341,-0.278325319290161,0.0114341722801328,0.960418820381165,-0.0469418056309223,0.215762078762054,0.975316941738129,-0.507014930248261,-0.0857118144631386,0.857665061950684,-0.406897813081741,0.312241792678833,0.85845160484314,-0.441442787647247,0.333770483732224,0.832901835441589,-0.0656468719244003,0.230014145374298,0.970970571041107,-0.0964084789156914,0.994814157485962,0.0324063375592232,0.580006957054138,0.796166360378265,0.172368809580803,-0.278325319290161,0.0114341722801328,0.960418820381165,-0.441442787647247,0.333770483732224,0.832901835441589,0.580006957054138,0.796166360378265,0.172368809580803,0.945979952812195,-0.187522381544113,0.264494389295578,-0.0656468719244003,0.230014145374298,0.970970571041107,-0.39899930357933,0.0981249436736107,0.911685824394226,-0.66672545671463,0.728927373886108,-0.155377104878426,-0.0964084789156914,0.994814157485962,0.0324063375592232,-0.320455580949783,-0.193452626466751,0.927299439907074,-0.0913811475038528,0.187174454331398,0.97806704044342,-0.665325582027435,-0.254904001951218,0.701687872409821,-0.416023969650269,-0.143428489565849,0.897971332073212,-0.349346429109573,-0.0753192827105522,0.933961391448975,-0.320455580949783,-0.193452626466751,0.927299439907074,-0.416023969650269,-0.143428489565849,0.897971332073212,-0.420749366283417,-0.0981574878096581,0.901850938796997,
- -0.420749366283417,-0.0981574878096581,0.901850938796997,-0.633490204811096,-0.248857662081718,0.732639074325562,0.122131623327732,0.297904640436172,0.946750640869141,-0.349346429109573,-0.0753192827105522,0.933961391448975,-0.633490204811096,-0.248857662081718,0.732639074325562,-0.609942138195038,-0.0782391875982285,0.78857409954071,-0.34472668170929,0.000984473852440715,0.938702642917633,0.122131623327732,0.297904640436172,0.946750640869141,-0.0913811475038528,0.187174454331398,0.97806704044342,-0.344019621610641,-0.0246777404099703,0.938638091087341,-0.570558786392212,-0.131941825151443,0.810588657855988,-0.665325582027435,-0.254904001951218,0.701687872409821,-0.406897813081741,0.312241792678833,0.85845160484314,-0.507014930248261,-0.0857118144631386,0.857665061950684,-0.452940315008163,-0.0257757436484098,0.891168177127838,-0.331450313329697,-0.134792476892471,0.933794319629669,-0.331450313329697,-0.134792476892471,0.933794319629669,-0.36802476644516,-0.0470486581325531,0.928624868392944,-0.332764595746994,0.0276319961994886,0.942604959011078,-0.406897813081741,0.312241792678833,0.85845160484314,-0.36802476644516,-0.0470486581325531,0.928624868392944,-0.689454317092896,0.299556314945221,0.659483671188354,-0.70074725151062,-0.266990631818771,0.661565840244293,-0.332764595746994,0.0276319961994886,0.942604959011078,-0.689454317092896,0.299556314945221,0.659483671188354,-0.381191551685333,0.0165539681911469,0.924347937107086,-0.70074725151062,-0.266990631818771,0.661565840244293,-0.689454317092896,0.299556314945221,0.659483671188354,-0.294152736663818,0.303387880325317,0.906327664852142,0.194001659750938,-0.734472513198853,0.650318026542664,-0.381191551685333,0.0165539681911469,0.924347937107086,-0.293478488922119,0.0154976770281792,0.955840051174164,-0.352634459733963,0.0602378398180008,0.933820366859436,-0.507014930248261,-0.0857118144631386,0.857665061950684,-0.0469418056309223,0.215762078762054,0.975316941738129,-0.436641931533813,0.895043015480042,-0.0907850190997124,-0.418056309223175,0.893307030200958,-0.165019527077675,
- -0.412748754024506,0.893972873687744,-0.174502044916153,-0.430831551551819,0.894870162010193,-0.116583243012428,-0.433413326740265,0.894039571285248,-0.11334090679884,-0.44599062204361,0.893563568592072,-0.0513491481542587,-0.113299645483494,-0.993103444576263,0.0301455948501825,-0.293478488922119,0.0154976770281792,0.955840051174164,-0.0469418056309223,0.215762078762054,0.975316941738129,0.73430198431015,-0.627921462059021,0.257905244827271,-0.507014930248261,-0.0857118144631386,0.857665061950684,-0.352634459733963,0.0602378398180008,0.933820366859436,-0.3987917304039,0.0997403934597969,0.911601305007935,-0.452940315008163,-0.0257757436484098,0.891168177127838,-0.0724007785320282,0.995916128158569,-0.0539383627474308,-0.0551724955439568,0.994028687477112,-0.09414441883564,-0.0410737246274948,0.992343246936798,-0.116481803357601,-0.0464328490197659,0.993799149990082,-0.101030744612217,-0.073724552989006,0.995811402797699,-0.0540783666074276,-0.0736623480916023,0.995996475219727,-0.0506450161337852,-0.0960509181022644,0.995369017124176,0.00385118485428393,-0.0943115949630737,0.995479941368103,-0.0111795300617814,-0.10038922727108,0.994894325733185,-0.0103605128824711,-0.0746394470334053,0.995841264724731,-0.0522418506443501,-0.0653143301606178,-0.261607140302658,0.962962031364441,0.868553519248962,0.0967161729931831,0.486066669225693,-0.722744226455688,0.599387228488922,-0.344057887792587,-0.411821752786636,0.000472097337478772,0.911264181137085,-0.665325582027435,-0.254904001951218,0.701687872409821,-0.570558786392212,-0.131941825151443,0.810588657855988,-0.0808030441403389,0.996720850467682,-0.00429162057116628,-0.904704034328461,0.109414152801037,-0.411751359701157,-0.416023969650269,-0.143428489565849,0.897971332073212,-0.665325582027435,-0.254904001951218,0.701687872409821,-0.904704034328461,0.109414152801037,-0.411751359701157,-0.79604583978653,-0.464781850576401,-0.387671083211899,-0.420749366283417,-0.0981574878096581,0.901850938796997,-0.416023969650269,-0.143428489565849,0.897971332073212,-0.79604583978653,-0.464781850576401,-0.387671083211899,
- -0.704765260219574,-0.623428225517273,-0.338589817285538,-0.704765260219574,-0.623428225517273,-0.338589817285538,-0.390862226486206,-0.908070266246796,-0.150450021028519,-0.633490204811096,-0.248857662081718,0.732639074325562,-0.420749366283417,-0.0981574878096581,0.901850938796997,-0.390862226486206,-0.908070266246796,-0.150450021028519,0.0489129535853863,-0.991517663002014,0.120417878031731,-0.609942138195038,-0.0782391875982285,0.78857409954071,-0.633490204811096,-0.248857662081718,0.732639074325562,0.372571349143982,-0.897978782653809,0.234146550297737,-0.11443355679512,-0.258679986000061,0.959160923957825,-0.227724701166153,-0.0569611676037312,0.972058117389679,-0.0741031393408775,-0.995574414730072,0.0577956512570381,0.691707670688629,-0.620427787303925,0.369607895612717,-0.388655513525009,-0.127949208021164,0.912455976009369,-0.11443355679512,-0.258679986000061,0.959160923957825,0.372571349143982,-0.897978782653809,0.234146550297737,-0.383773982524872,-0.171284362673759,0.907402515411377,-0.388655513525009,-0.127949208021164,0.912455976009369,0.691707670688629,-0.620427787303925,0.369607895612717,0.784273862838745,-0.461997717618942,0.414092659950256,-0.0653143301606178,-0.261607140302658,0.962962031364441,-0.383773982524872,-0.171284362673759,0.907402515411377,0.784273862838745,-0.461997717618942,0.414092659950256,0.868553519248962,0.0967161729931831,0.486066669225693,-0.793377935886383,-0.605859696865082,0.0590381249785423,-0.989609003067017,-0.142809823155403,0.0167156755924225,-0.0321128517389297,-0.0232517011463642,0.999213755130768,-0.299385219812393,0.174184873700142,0.938098073005676,0.106211602687836,0.104170143604279,0.988871932029724,0.114364452660084,0.210144773125649,0.970958352088928,-0.268600553274155,0.181687593460083,0.945961594581604,0.447842359542847,-0.228758960962296,0.864353179931641,0.109726570546627,0.199933484196663,0.97364604473114,-0.0321128517389297,-0.0232517011463642,0.999213755130768,0.114364452660084,0.210144773125649,0.970958352088928,0.106211602687836,0.104170143604279,0.988871932029724,
- 0.447842359542847,-0.228758960962296,0.864353179931641,-0.268600553274155,0.181687593460083,0.945961594581604,0.152075290679932,0.0549291521310806,0.986841380596161,0.0710718184709549,-0.0158706847578287,0.997344970703125,-0.0321128517389297,-0.0232517011463642,0.999213755130768,0.109726570546627,0.199933484196663,0.97364604473114,0.349254608154297,-0.179879888892174,0.919600248336792,-0.299385219812393,0.174184873700142,0.938098073005676,0.114364452660084,0.210144773125649,0.970958352088928,-0.508832335472107,0.860664248466492,0.018621277064085,0.175838321447372,0.983058452606201,0.0517394877970219,-0.268600553274155,0.181687593460083,0.945961594581604,-0.0321128517389297,-0.0232517011463642,0.999213755130768,-0.989609003067017,-0.142809823155403,0.0167156755924225,-0.508832335472107,0.860664248466492,0.018621277064085,0.114364452660084,0.210144773125649,0.970958352088928,-0.268600553274155,0.181687593460083,0.945961594581604,0.175838321447372,0.983058452606201,0.0517394877970219,0.761219441890717,0.648175835609436,0.0203233249485493,0.152075290679932,0.0549291521310806,0.986841380596161,0.349254608154297,-0.179879888892174,0.919600248336792,0.729138731956482,0.684085965156555,0.0195745620876551,-0.0504800267517567,0.0599813833832741,0.996922194957733,0.109726570546627,0.199933484196663,0.97364604473114,0.997641742229462,-0.0675010532140732,0.0124333593994379,0.729138731956482,0.684085965156555,0.0195745620876551,0.349254608154297,-0.179879888892174,0.919600248336792,0.997641742229462,-0.0675010532140732,0.0124333593994379,0.109726570546627,0.199933484196663,0.97364604473114,0.106211602687836,0.104170143604279,0.988871932029724,0.793289661407471,-0.608484983444214,0.0209146440029144,0.793289661407471,-0.608484983444214,0.0209146440029144,0.106211602687836,0.104170143604279,0.988871932029724,0.447842359542847,-0.228758960962296,0.864353179931641,0.335668504238129,-0.940540373325348,0.0520615912973881,0.0710718184709549,-0.0158706847578287,0.997344970703125,-0.65519106388092,-0.7535560131073,0.0536494515836239,0.335668504238129,-0.940540373325348,0.0520615912973881,
- 0.447842359542847,-0.228758960962296,0.864353179931641,-0.0504800267517567,0.0599813833832741,0.996922194957733,0.729138731956482,0.684085965156555,0.0195745620876551,-0.472808063030243,0.879507780075073,0.0540231354534626,-0.0504800267517567,0.0599813833832741,0.996922194957733,0.108419463038445,-0.0721297934651375,0.991484999656677,-0.299385219812393,0.174184873700142,0.938098073005676,0.349254608154297,-0.179879888892174,0.919600248336792,0.426955997943878,0.902930498123169,-0.0492458380758762,0.453676611185074,0.890728771686554,0.0279274825006723,0.479275584220886,0.875966846942902,0.0545638017356396,0.476638227701187,0.879099309444427,0.000710237305611372,0.473306834697723,0.880892515182495,-0.00304042361676693,0.46403294801712,0.883489906787872,-0.0641794055700302,0.794154465198517,-0.604848444461823,0.0589670091867447,0.298369735479355,0.173689618706703,0.938513457775116,0.031872846186161,-0.022680776193738,0.999234616756439,0.989507496356964,-0.143512278795242,0.0167118404060602,-0.106142468750477,0.104120068252087,0.988884568214417,-0.447788506746292,-0.228857219219208,0.864355206489563,0.269142746925354,0.182037398219109,0.945740282535553,-0.114374324679375,0.210174754261971,0.970950543880463,-0.109627939760685,0.199853792786598,0.973673582077026,-0.106142468750477,0.104120068252087,0.988884568214417,-0.114374324679375,0.210174754261971,0.970950543880463,0.031872846186161,-0.022680776193738,0.999234616756439,-0.447788506746292,-0.228857219219208,0.864355206489563,-0.0711993128061295,-0.0158712267875671,0.99733579158783,-0.150915175676346,0.0549390241503716,0.987018883228302,0.269142746925354,0.182037398219109,0.945740282535553,0.031872846186161,-0.022680776193738,0.999234616756439,0.298369735479355,0.173689618706703,0.938513457775116,-0.352405726909637,-0.169266179203987,0.920412540435791,-0.109627939760685,0.199853792786598,0.973673582077026,-0.114374324679375,0.210174754261971,0.970950543880463,0.269142746925354,0.182037398219109,0.945740282535553,-0.17389315366745,0.98340380191803,0.0517506115138531,0.509575247764587,0.860224187374115,0.0186383072286844,
- 0.031872846186161,-0.022680776193738,0.999234616756439,-0.114374324679375,0.210174754261971,0.970950543880463,0.509575247764587,0.860224187374115,0.0186383072286844,0.989507496356964,-0.143512278795242,0.0167118404060602,0.269142746925354,0.182037398219109,0.945740282535553,-0.150915175676346,0.0549390241503716,0.987018883228302,-0.760874807834625,0.648580074310303,0.0203334838151932,-0.17389315366745,0.98340380191803,0.0517506115138531,-0.724971175193787,0.686531782150269,0.0555960610508919,-0.352405726909637,-0.169266179203987,0.920412540435791,-0.0899819508194923,0.0104051781818271,0.995889008045197,0.0630455315113068,0.996494650840759,0.0549884140491486,-0.109627939760685,0.199853792786598,0.973673582077026,-0.352405726909637,-0.169266179203987,0.920412540435791,-0.724971175193787,0.686531782150269,0.0555960610508919,-0.997641384601593,-0.0675030648708344,0.0124470228329301,-0.997641384601593,-0.0675030648708344,0.0124470228329301,-0.793231785297394,-0.608560621738434,0.0209149811416864,-0.106142468750477,0.104120068252087,0.988884568214417,-0.109627939760685,0.199853792786598,0.973673582077026,-0.793231785297394,-0.608560621738434,0.0209149811416864,-0.335621684789658,-0.940558731555939,0.0520348101854324,-0.447788506746292,-0.228857219219208,0.864355206489563,-0.106142468750477,0.104120068252087,0.988884568214417,-0.0711993128061295,-0.0158712267875671,0.99733579158783,-0.447788506746292,-0.228857219219208,0.864355206489563,-0.335621684789658,-0.940558731555939,0.0520348101854324,0.654523849487305,-0.754132866859436,0.0536860451102257,0.0706847608089447,0.0220161937177181,0.997255802154541,-0.0899819508194923,0.0104051781818271,0.995889008045197,-0.352405726909637,-0.169266179203987,0.920412540435791,0.298369735479355,0.173689618706703,0.938513457775116,-0.453838855028152,0.89064610004425,0.0279233939945698,-0.427088350057602,0.902869582176209,-0.0492148175835609,-0.46416050195694,0.883426487445831,-0.0641290992498398,-0.473306745290756,0.88089245557785,-0.00304248207248747,-0.47672975063324,0.879049718379974,0.000705946236848831,
- -0.479461669921875,0.875861525535584,0.0546175427734852,-0.132368937134743,-0.989730179309845,0.0539688318967819,0.0706847608089447,0.0220161937177181,0.997255802154541,0.298369735479355,0.173689618706703,0.938513457775116,0.794154465198517,-0.604848444461823,0.0589670091867447,0.000516165106091648,-0.999745190143585,0.0225675515830517,0.00143500615376979,-0.997810184955597,0.0661283582448959,-0.000126469996757805,-0.997475445270538,0.071012370288372,-0.00188951764721423,-0.997812151908875,0.0660846456885338,-0.00037092954153195,-0.99974524974823,0.0225678570568562,-0.000793057784903795,-0.99980354309082,0.0198034085333347,-0.00251110643148422,-0.999001145362854,-0.0446128584444523,-0.000879426312167197,-0.998444736003876,-0.0557433106005192,0.000369370129192248,-0.999933004379272,-0.0115787973627448,-1.34856691147434e-005,-0.999804139137268,0.019791804254055,-0.164513543248177,-0.0883053317666054,0.982414126396179,0.688936233520508,-0.689182102680206,0.224488019943237,-0.769712150096893,-0.622203946113586,-0.142848134040833,-0.528228640556335,0.219573885202408,0.820220470428467,0.137257277965546,0.293782413005829,0.945966362953186,-0.164513543248177,-0.0883053317666054,0.982414126396179,-0.372903436422348,0.15582112967968,0.914692759513855,-0.302384287118912,0.095940925180912,0.948345422744751,-0.401818037033081,-0.067631684243679,0.91321873664856,-0.359130352735519,-0.108878239989281,0.926914691925049,-0.411821752786636,0.000472097337478772,0.911264181137085,-0.61826628446579,-0.173912674188614,0.76648622751236,0.137257277965546,0.293782413005829,0.945966362953186,0.688936233520508,-0.689182102680206,0.224488019943237,-0.164513543248177,-0.0883053317666054,0.982414126396179,-0.548033952713013,-0.0923985317349434,0.831337094306946,-0.372903436422348,0.15582112967968,0.914692759513855,-0.318959444761276,0.102609604597092,0.942197501659393,-0.0497901327908039,0.175990581512451,0.983131885528564,-0.318959444761276,0.102609604597092,0.942197501659393,-0.359130352735519,-0.108878239989281,0.926914691925049,-0.61826628446579,-0.173912674188614,0.76648622751236,
- -0.411821752786636,0.000472097337478772,0.911264181137085,-0.722744226455688,0.599387228488922,-0.344057887792587,0.108419463038445,-0.0721297934651375,0.991484999656677,0.139932602643967,-0.988692700862885,0.0539034344255924,-0.793377935886383,-0.605859696865082,0.0590381249785423,-0.299385219812393,0.174184873700142,0.938098073005676,0.414137274026871,0.204576954245567,0.886926412582397,0.108419463038445,-0.0721297934651375,0.991484999656677,-0.0504800267517567,0.0599813833832741,0.996922194957733,-0.113587252795696,-0.00216747354716063,0.993525683879852,0.414137274026871,0.204576954245567,0.886926412582397,0.841536164283752,-0.0572261735796928,0.537161111831665,0.108419463038445,-0.0721297934651375,0.991484999656677,-0.113587252795696,-0.00216747354716063,0.993525683879852,-0.0504800267517567,0.0599813833832741,0.996922194957733,-0.472808063030243,0.879507780075073,0.0540231354534626,-0.996967792510986,-0.0140062589198351,-0.0765444487333298,-0.99427592754364,-0.0128060756251216,-0.106072545051575,-0.111890576779842,-0.991536200046539,0.0658514127135277,-0.0923222303390503,-0.987754285335541,-0.125770166516304,-0.958180963993073,-0.278632551431656,-0.0652152597904205,-0.959923088550568,0.27919802069664,-0.0244162809103727,-0.999432146549225,0.0279193855822086,-0.0188632663339376,-0.996967792510986,-0.0140062589198351,-0.0765444487333298,0.0569881238043308,-0.0257974732667208,-0.998041450977325,0.0664583295583725,-0.00503214355558157,-0.997776567935944,-0.994556427001953,-0.047227006405592,-0.09288240224123,-0.987030684947968,0.140994921326637,-0.0767516866326332,0.0664583295583725,-0.00503214355558157,-0.997776567935944,0.12098004668951,-0.0627963989973068,-0.990666627883911,-0.565709114074707,-0.820204675197601,-0.0850724577903748,-0.994556427001953,-0.047227006405592,-0.09288240224123,-0.042031891644001,0.985314428806305,0.165495693683624,-0.0109124565497041,0.997059524059296,-0.0758500918745995,-0.996998131275177,0.0339424423873425,-0.0695883482694626,-0.999432146549225,0.0279193855822086,-0.0188632663339376,
- -0.000194324355106801,-0.999663889408112,0.0259237997233868,-0.285507947206497,-0.95792692899704,-0.0293445978313684,-0.0307479314506054,-0.999192893505096,0.0258481372147799,0.0164160057902336,-0.999854385852814,-0.00467113312333822,-0.99427592754364,-0.0128060756251216,-0.106072545051575,-0.996998131275177,0.0339424423873425,-0.0695883482694626,-0.944491684436798,0.282317042350769,-0.168025717139244,-0.950432538986206,-0.278896480798721,-0.137458086013794,0.981467306613922,-0.146166905760765,0.123924188315868,0.992587804794312,0.0434384196996689,0.113500863313675,0.144424423575401,0.0177093409001827,-0.989357352256775,0.151271045207977,0.0289578698575497,-0.988068103790283,0.992587804794312,0.0434384196996689,0.113500863313675,0.577197790145874,0.815261602401733,0.0468100160360336,0.091388426721096,0.0740990564227104,-0.993054628372192,0.144424423575401,0.0177093409001827,-0.989357352256775,0.0151497591286898,-0.999879837036133,-0.00328520662151277,-0.0236957836896181,-0.999032557010651,-0.0370442420244217,-0.283254355192184,-0.957976877689362,-0.045246247202158,0.00802800618112087,-0.999031245708466,-0.0432703197002411,0.0627356469631195,-0.997731447219849,-0.0244208574295044,-0.565709114074707,-0.820204675197601,-0.0850724577903748,0.12098004668951,-0.0627963989973068,-0.990666627883911,0.000120197131764144,-0.0329998359084129,-0.999455332756042,-0.990517973899841,-0.0415526032447815,-0.130948856472969,-0.99551248550415,-0.0416682474315166,-0.0849622413516045,-0.0236957836896181,-0.999032557010651,-0.0370442420244217,-0.0307479314506054,-0.999192893505096,0.0258481372147799,0.245872929692268,0.0466810204088688,-0.968177378177643,0.091388426721096,0.0740990564227104,-0.993054628372192,0.577197790145874,0.815261602401733,0.0468100160360336,-0.0534890405833721,0.998369574546814,-0.0199283491820097,-0.999432146549225,0.0279193855822086,-0.0188632663339376,-0.996998131275177,0.0339424423873425,-0.0695883482694626,-0.99427592754364,-0.0128060756251216,-0.106072545051575,-0.996967792510986,-0.0140062589198351,-0.0765444487333298,
- 0.0151497591286898,-0.999879837036133,-0.00328520662151277,0.0164160057902336,-0.999854385852814,-0.00467113312333822,-0.0307479314506054,-0.999192893505096,0.0258481372147799,-0.0236957836896181,-0.999032557010651,-0.0370442420244217,0.091388426721096,0.0740990564227104,-0.993054628372192,0.12098004668951,-0.0627963989973068,-0.990666627883911,0.0664583295583725,-0.00503214355558157,-0.997776567935944,0.144424423575401,0.0177093409001827,-0.989357352256775,0.000120197131764144,-0.0329998359084129,-0.999455332756042,0.12098004668951,-0.0627963989973068,-0.990666627883911,0.091388426721096,0.0740990564227104,-0.993054628372192,0.245872929692268,0.0466810204088688,-0.968177378177643,0.0569881238043308,-0.0257974732667208,-0.998041450977325,0.151271045207977,0.0289578698575497,-0.988068103790283,0.144424423575401,0.0177093409001827,-0.989357352256775,0.0664583295583725,-0.00503214355558157,-0.997776567935944,0.993031322956085,0.0313200615346432,0.113612651824951,0.991349697113037,-0.00939125660806894,0.130910530686378,0.980868399143219,0.0440520457923412,0.189622312784195,0.980729162693024,0.0525539442896843,0.188171297311783,0.993355214595795,0.00137653842102736,0.115080393850803,-0.994474053382874,-0.0488781593739986,-0.0929102301597595,-0.994395315647125,-0.0506638437509537,-0.0927954316139221,-0.999848186969757,0.00402640458196402,-0.0169534888118505,-0.999395549297333,-0.0302708595991135,-0.0170961413532496,-0.997170627117157,0.00952256191521883,-0.0745672807097435,-0.996967792510986,-0.0140062589198351,-0.0765444487333298,-0.0923222303390503,-0.987754285335541,-0.125770166516304,-0.958180963993073,-0.278632551431656,-0.0652152597904205,-0.042031891644001,0.985314428806305,0.165495693683624,-0.999432146549225,0.0279193855822086,-0.0188632663339376,-0.959923088550568,0.27919802069664,-0.0244162809103727,-0.99427592754364,-0.0128060756251216,-0.106072545051575,-0.950432538986206,-0.278896480798721,-0.137458086013794,-0.111890576779842,-0.991536200046539,0.0658514127135277,-0.0109124565497041,0.997059524059296,-0.0758500918745995,
- -0.944491684436798,0.282317042350769,-0.168025717139244,-0.996998131275177,0.0339424423873425,-0.0695883482694626,-0.285507947206497,-0.95792692899704,-0.0293445978313684,-0.990517973899841,-0.0415526032447815,-0.130948856472969,-0.0307479314506054,-0.999192893505096,0.0258481372147799,-0.99551248550415,-0.0416682474315166,-0.0849622413516045,-0.283254355192184,-0.957976877689362,-0.045246247202158,-0.0236957836896181,-0.999032557010651,-0.0370442420244217,0.923363208770752,-0.148317590355873,0.354121834039688,-0.376311957836151,0.0183592606335878,0.926311075687408,-0.398009061813354,-0.0179548095911741,0.91720575094223,0.934735178947449,-0.041085846722126,0.352962076663971,-0.454878211021423,-0.0582804083824158,0.888644576072693,-0.444922298192978,-0.0425700061023235,0.894556879997253,-0.409439504146576,-0.0285170786082745,0.911891579627991,-0.398009061813354,-0.0179548095911741,0.91720575094223,-0.376311957836151,0.0183592606335878,0.926311075687408,-0.369331032037735,-0.0197168234735727,0.929088771343231,-0.365353643894196,-0.069332055747509,0.928283214569092,-0.407628506422043,-0.0310201719403267,0.912620902061462,-0.409439504146576,-0.0285170786082745,0.911891579627991,-0.444922298192978,-0.0425700061023235,0.894556879997253,-0.402616918087006,-0.0888235345482826,0.911048829555511,0.709515452384949,0.630828320980072,0.314075708389282,-0.365353643894196,-0.069332055747509,0.928283214569092,-0.369331032037735,-0.0197168234735727,0.929088771343231,0.302121043205261,0.934791028499603,0.186784848570824,0.327407985925674,0.00303377956151962,0.944878160953522,0.352714121341705,0.0234224442392588,0.935437977313995,0.277085959911346,0.00748524675145745,0.960815966129303,-0.0341447554528713,-0.804787039756775,0.592580735683441,-0.110382869839668,-0.778234958648682,0.618195593357086,-0.0167597997933626,-0.805971562862396,0.591717004776001,-0.0337833687663078,-0.802788615226746,0.595305919647217,-0.110382869839668,-0.778234958648682,0.618195593357086,-0.10423094779253,-0.772901773452759,0.625906407833099,-0.229928523302078,-0.670777857303619,0.705116987228394,
- -0.21681310236454,-0.669069290161133,0.710871577262878,-0.0316609591245651,-0.809848666191101,0.585784018039703,-0.10423094779253,-0.772901773452759,0.625906407833099,-0.0341447554528713,-0.804787039756775,0.592580735683441,-0.0341447554528713,-0.804787039756775,0.592580735683441,-0.10423094779253,-0.772901773452759,0.625906407833099,-0.110382869839668,-0.778234958648682,0.618195593357086,0.683463931083679,-0.0714642629027367,-0.726477682590485,0.999997973442078,-0.00152729358524084,0.00133450131397694,0.999996483325958,-0.00264768511988223,5.27769552718382e-005,0.996863543987274,-0.0688461661338806,-0.0390282981097698,0.999997973442078,-0.00152729358524084,0.00133450131397694,0.696810364723206,0.193982303142548,0.690526127815247,0.999053537845612,0.0181338768452406,0.0395376421511173,0.999996483325958,-0.00264768511988223,5.27769552718382e-005,-0.657498359680176,0.0586358569562435,-0.751170873641968,-0.825837314128876,-0.1127028465271,-0.55253130197525,-0.998616993427277,-0.0181243102997541,-0.0493511855602264,-0.990521371364594,-0.131925746798515,-0.0382500141859055,0.887804388999939,-0.221358850598335,0.403489351272583,0.881253659725189,0.116049729287624,-0.458175122737885,0.99877792596817,-0.0060317125171423,-0.0490539819002151,0.998802840709686,0.000545102113392204,0.0489134229719639,0.881253659725189,0.116049729287624,-0.458175122737885,0.683463931083679,-0.0714642629027367,-0.726477682590485,0.996863543987274,-0.0688461661338806,-0.0390282981097698,0.99877792596817,-0.0060317125171423,-0.0490539819002151,0.578407764434814,-2.33224773182883e-006,0.815747857093811,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.455389589071274,-2.05136279873841e-006,0.890292286872864,0.492762267589569,-2.06862728191481e-006,0.870164096355438,0.650392651557922,2.95226755042677e-006,0.759598195552826,0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.578407764434814,-2.33224773182883e-006,0.815747857093811,0.938771367073059,-2.492080511729e-006,0.344540923833847,
- 0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.881871819496155,-2.49514118877414e-006,0.47148922085762,0.898601949214935,-3.05439107251004e-006,0.438765019178391,0.966581284999847,-2.05350852411357e-006,0.25636026263237,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.938771367073059,-2.492080511729e-006,0.344540923833847,-0.966627240180969,-3.96528150758968e-007,-0.256186902523041,-0.966918587684631,-3.88242028748209e-007,-0.255085438489914,-0.993380188941956,-0.00315710320137441,-0.114830046892166,-0.98767364025116,-2.98301074508345e-007,-0.156527861952782,-0.93869149684906,3.43358124155202e-008,-0.344758272171021,-0.938200652599335,-6.27271788289363e-007,-0.346091657876968,-0.966918587684631,-3.88242028748209e-007,-0.255085438489914,-0.966627240180969,-3.96528150758968e-007,-0.256186902523041,-0.650469720363617,0.000110135501017794,-0.759532332420349,-0.651576936244965,-3.31058108713478e-005,-0.758582532405853,-0.752004563808441,-8.11468053143471e-005,-0.659157872200012,-0.723917901515961,7.44190765544772e-006,-0.689886093139648,-0.57831597328186,-3.68597966371453e-007,-0.815812885761261,-0.577798783779144,-3.24302931176135e-007,-0.816179275512695,-0.651576936244965,-3.31058108713478e-005,-0.758582532405853,-0.650469720363617,0.000110135501017794,-0.759532332420349,0.353540450334549,-2.51110463977966e-006,0.935419261455536,0.353552490472794,-2.57765395872411e-006,0.935414791107178,0.455389589071274,-2.05136279873841e-006,0.890292286872864,0.444394707679749,-1.8061502942146e-006,0.895831108093262,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.65203583240509,-2.44675288740837e-006,0.758188188076019,0.577701151371002,-1.85509315997479e-006,0.81624835729599,0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.751844763755798,-4.91169157612603e-006,0.65934020280838,0.760943353176117,-2.80175117950421e-006,0.648818373680115,0.65203583240509,-2.44675288740837e-006,0.758188188076019,
- 0.821242928504944,-2.44453985942528e-006,0.570578694343567,0.821288108825684,-2.32534921451588e-006,0.570513665676117,0.881871819496155,-2.49514118877414e-006,0.47148922085762,0.875535607337952,-1.92405173038424e-006,0.483153641223907,0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.966959357261658,-2.74526155408239e-006,0.25493061542511,0.93813294172287,-2.7183582460566e-006,0.346275329589844,0.998338937759399,0.01511902641505,0.0555948093533516,0.994723260402679,-2.28241060540313e-006,0.10259485244751,0.993366479873657,0.0075713861733675,0.114741906523705,0.997996628284454,0.0302365105599165,0.0555757507681847,0.963700532913208,0.00696260435506701,0.26689487695694,0.963984131813049,0.0075717750005424,0.265851974487305,0.974846363067627,-6.8783680035267e-005,0.222878336906433,0.974405825138092,-0.00154732458759099,0.224791243672371,0.942228615283966,-0.010929056443274,0.334792226552963,0.946688175201416,-0.000757964560762048,0.322150439023972,0.963984131813049,0.0075717750005424,0.265851974487305,0.963700532913208,0.00696260435506701,0.26689487695694,-0.812267243862152,-0.00012098765000701,-0.583285450935364,-0.832163572311401,0.000140238262247294,-0.554530322551727,-0.849216103553772,0.0633171275258064,-0.524235546588898,-0.84921407699585,0.0633171275258064,-0.524238884449005,0.653642296791077,0.00401268061250448,0.756792962551117,0.654161155223846,0.00429071485996246,0.756343007087708,0.672170579433441,-7.23037665011361e-005,0.740396440029144,0.670632064342499,-0.00163521931972355,0.741788327693939,0.562618613243103,-0.0303800385445356,0.826158165931702,0.593335509300232,-0.00128185306675732,0.80495423078537,0.654161155223846,0.00429071485996246,0.756343007087708,0.653642296791077,0.00401268061250448,0.756792962551117,-0.352813571691513,1.2145580512879e-005,-0.935693621635437,-0.402624845504761,-0.0250284057110548,-0.915022850036621,-0.402600914239883,-0.0250284019857645,-0.915033400058746,-0.35284486413002,-1.13167388917645e-005,-0.935681819915771,
- 0.760943353176117,-2.80175117950421e-006,0.648818373680115,0.751844763755798,-4.91169157612603e-006,0.65934020280838,0.821288108825684,-2.32534921451588e-006,0.570513665676117,0.821242928504944,-2.44453985942528e-006,0.570578694343567,-0.79015851020813,-0.0588180460035801,-0.610073745250702,-0.790139079093933,-0.0588180385529995,-0.610098958015442,-0.832163572311401,0.000140238262247294,-0.554530322551727,-0.812267243862152,-0.00012098765000701,-0.583285450935364,0.481857001781464,-1.02564663393423e-005,-0.876249849796295,0.481857001781464,-1.1111162166344e-005,-0.876249849796295,0.481856971979141,-1.19658761832397e-005,-0.87624990940094,0.481857001781464,-1.19658971016179e-005,-0.876249849796295,0.481857061386108,-1.13960732051055e-005,-0.87624979019165,-0.0132254306226969,-0.501326322555542,-0.865157246589661,0.0328833535313606,-0.503136694431305,-0.863581120967865,0.0789220333099365,-0.503874242305756,-0.860163986682892,0.0328833535313606,-0.50313663482666,-0.86358106136322,0.891945719718933,3.41886402566161e-006,-0.452142715454102,0.891945719718933,3.41886402566161e-006,-0.452142715454102,0.891945660114288,3.41886266141955e-006,-0.452142655849457,0.891945600509644,3.41886175192485e-006,-0.452142685651779,0.891945719718933,3.41886334354058e-006,-0.452142685651779,-0.492813438177109,-5.27774773217971e-007,-0.870135009288788,-0.455504894256592,-2.24772506385307e-007,-0.890233278274536,-0.577798783779144,-3.24302931176135e-007,-0.816179275512695,-0.57831597328186,-3.68597966371453e-007,-0.815812885761261,0.444394707679749,-1.8061502942146e-006,0.895831108093262,0.455389589071274,-2.05136279873841e-006,0.890292286872864,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.577701151371002,-1.85509315997479e-006,0.81624835729599,0.49275416135788,4.9940858843911e-006,0.870168566703796,0.492745965719223,-2.08846427085518e-006,0.870173215866089,0.593335509300232,-0.00128185306675732,0.80495423078537,0.562618613243103,-0.0303800385445356,0.826158165931702,-0.898617506027222,-4.71942797730662e-007,-0.438732892274857,
- -0.881798088550568,-3.90694395946412e-007,-0.471627086400986,-0.938200652599335,-6.27271788289363e-007,-0.346091657876968,-0.93869149684906,3.43358124155202e-008,-0.344758272171021,0.875535607337952,-1.92405173038424e-006,0.483153641223907,0.881871819496155,-2.49514118877414e-006,0.47148922085762,0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.93813294172287,-2.7183582460566e-006,0.346275329589844,0.932454228401184,0.00183936080429703,0.361283391714096,0.931608378887177,7.58571914047934e-005,0.36346361041069,0.946688175201416,-0.000757964560762048,0.322150439023972,0.942228615283966,-0.010929056443274,0.334792226552963,-0.656052947044373,-0.0305224116891623,0.754097461700439,-0.656052947044373,-0.0305135492235422,0.754097759723663,-0.656052947044373,-0.0305528305470943,0.754096210002899,-0.656052887439728,-0.0306136682629585,0.754093766212463,-0.656052947044373,-0.0305724684149027,0.754095375537872,0.723854601383209,-2.64063737631659e-006,0.689952552318573,0.751844763755798,-4.91169157612603e-006,0.65934020280838,0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.650392651557922,2.95226755042677e-006,0.759598195552826,-0.109710916876793,-5.5111790970841e-006,0.993963479995728,-0.109710924327374,-6.26786322754924e-006,0.993963539600372,-0.109710901975632,-7.02458373780246e-006,0.993963479995728,-0.109710931777954,-8.53799792821519e-006,0.993963539600372,-0.109710916876793,-6.26789096713765e-006,0.993963479995728,-0.109710916876793,-3.99778355131275e-006,0.993963539600372,0.987675666809082,-1.97548502001155e-006,0.156514585018158,0.993366479873657,0.0075713861733675,0.114741906523705,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.966581284999847,-2.05350852411357e-006,0.25636026263237,0.993366479873657,0.0075713861733675,0.114741906523705,0.994723260402679,-2.28241060540313e-006,0.10259485244751,0.966959357261658,-2.74526155408239e-006,0.25493061542511,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.0409187190234661,3.59866419330501e-007,0.999162435531616,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,
- 0.0054465401917696,-2.00271051653544e-006,0.999985158443451,0,-2.43462136495509e-006,1,0.107940167188644,6.30137583357282e-005,0.994157373905182,0.108378641307354,2.15553372981958e-005,0.994109690189362,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,0.0409187190234661,3.59866419330501e-007,0.999162435531616,-0.110393427312374,-6.51462178211659e-005,-0.993887960910797,-0.111272692680359,-3.37547280651052e-005,-0.993789970874786,-0.244163706898689,1.35804873480083e-006,-0.969734132289886,-0.203281402587891,-7.63296043260198e-007,-0.979120373725891,-0.0445543117821217,3.60821081812901e-006,-0.999007046222687,-0.0428198613226414,1.62073993124068e-005,-0.999082863330841,-0.111272692680359,-3.37547280651052e-005,-0.993789970874786,-0.110393427312374,-6.51462178211659e-005,-0.993887960910797,0.0140535701066256,-3.60658827958105e-006,0.999901235103607,0.014053569175303,-3.2793682294141e-006,0.999901235103607,0.0140535710379481,-2.66531424131244e-006,0.999901235103607,0.0054465401917696,-2.00271051653544e-006,0.999985158443451,0.00732201291248202,-2.17863043872057e-006,0.999973297119141,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,0.108378641307354,2.15553372981958e-005,0.994109690189362,0.106732234358788,-2.28245971811702e-006,0.99428790807724,0.0401749685406685,-2.1510204533115e-006,0.999192655086517,0.353540450334549,-2.51110463977966e-006,0.935419261455536,0.256637275218964,-2.46169747697422e-006,0.966507852077484,0.2442257553339,-3.87548743674415e-006,0.969718396663666,0.353552490472794,-2.57765395872411e-006,0.935414791107178,0.103492043912411,0.00635931268334389,0.994610011577606,0.104469858109951,0.00695573911070824,0.994503736495972,0.154809221625328,-5.27308729942888e-005,0.987944483757019,0.153391435742378,-0.00113245204556733,0.988164961338043,0.0264482200145721,-0.00819649919867516,0.999616503715515,0.0393129587173462,0.00223876792006195,0.999224483966827,0.104469858109951,0.00695573911070824,0.994503736495972,0.103492043912411,0.00635931268334389,0.994610011577606,0.85520613193512,0.518150269985199,0.0119475098326802,
- 0.855194807052612,0.518189072608948,0.0110514098778367,0.855182647705078,0.518227279186249,0.0101552931591868,0.855194807052612,0.518189013004303,0.0110514089465141,1,4.85146892970079e-006,-0,1,1.66503491527692e-006,-0,1,-9.95954337668081e-007,-0,1,4.27744566877664e-007,-0,1,1.13959811187669e-006,-0,1,2.37688573179184e-006,-0,-0.301903665065765,0.0256964061409235,-0.952992081642151,-0.301814734935761,0.0256964080035686,-0.953020215034485,-0.352813571691513,1.2145580512879e-005,-0.935693621635437,-0.35284486413002,-1.13167388917645e-005,-0.935681819915771,1.56058597034631e-013,-3.29722183778358e-007,-1,-0.0054609919898212,0.00270083430223167,-0.99998152256012,-0.0428198613226414,1.62073993124068e-005,-0.999082863330841,-0.0445543117821217,3.60821081812901e-006,-0.999007046222687,0.00732201291248202,-2.17863043872057e-006,0.999973297119141,0.0054465401917696,-2.00271051653544e-006,0.999985158443451,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,0.0401749685406685,-2.1510204533115e-006,0.999192655086517,-3.09573556478426e-006,-2.32405955102877e-006,1,-2.16701346289483e-006,-1.62684057158913e-006,1,0.0393129587173462,0.00223876792006195,0.999224483966827,0.0264482200145721,-0.00819649919867516,0.999616503715515,-0.968043386936188,1.13970736492774e-006,0.250782877206802,-0.968043446540833,1.13971043447236e-006,0.250782936811447,-0.968043327331543,1.3296573797561e-006,0.250782877206802,-0.968043446540833,1.70955786416016e-006,0.25078296661377,-0.968043446540833,1.42463113661506e-006,0.25078296661377,0.203150376677513,-2.22033440877567e-006,0.979147553443909,0.2442257553339,-3.87548743674415e-006,0.969718396663666,0.108378641307354,2.15553372981958e-005,0.994109690189362,0.107940167188644,6.30137583357282e-005,0.994157373905182,0.2442257553339,-3.87548743674415e-006,0.969718396663666,0.256637275218964,-2.46169747697422e-006,0.966507852077484,0.106732234358788,-2.28245971811702e-006,0.99428790807724,0.108378641307354,2.15553372981958e-005,0.994109690189362,0.999571979045868,0.00958616565912962,0.0276405848562717,
- 0.99939352273941,-0.00607543485239148,0.0342885442078114,0.999386787414551,0.00719767669215798,-0.034268394112587,0.99953705072403,-0.0127563551068306,-0.0276202093809843,0.99999988079071,-0.000601962907239795,8.19499018689385e-006,-0.560468375682831,-0.00152929185424,-0.828174352645874,-0.492774814367294,-1.55534507939592e-006,-0.87015688419342,-0.492799669504166,1.98840443772497e-005,-0.870142817497253,-0.539063155651093,-0.0193397738039494,-0.842043220996857,-0.671364605426788,0.0232408829033375,-0.740762829780579,-0.560468375682831,-0.00152929185424,-0.828174352645874,-0.539063155651093,-0.0193397738039494,-0.842043220996857,-0.672134578227997,0.0210333839058876,-0.740130126476288,-0.765889108181,0.000161442047101446,-0.642972707748413,-0.671364605426788,0.0232408829033375,-0.740762829780579,-0.672134578227997,0.0210333839058876,-0.740130126476288,-0.764888405799866,-0.00100901338737458,-0.644162178039551,-0.929051101207733,-0.00246708607301116,-0.369943231344223,-0.863269209861755,-6.10764327575453e-005,-0.504743695259094,-0.864251255989075,0.00140882469713688,-0.503058671951294,-0.909208178520203,-0.0356749854981899,-0.414810568094254,-0.977058053016663,0.0198029018938541,-0.212050274014473,-0.929051101207733,-0.00246708607301116,-0.369943231344223,-0.909208178520203,-0.0356749854981899,-0.414810568094254,-0.977240979671478,0.0172048229724169,-0.211433708667755,-0.995433390140533,5.17287953698542e-005,-0.0954591780900955,-0.977058053016663,0.0198029018938541,-0.212050274014473,-0.977240979671478,0.0172048229724169,-0.211433708667755,-0.9952751994133,-0.00117955612950027,-0.0970868095755577,-0.0376786328852177,-0.00425878399983048,-0.999280869960785,-6.19261356860079e-007,4.64810653966197e-007,-1,-1.23852271372016e-006,9.29621307932393e-007,-1,-0.0373916327953339,-0.0036710964050144,-0.999293982982636,-0.129792839288712,-0.00152625469490886,-0.991539895534515,-0.0376786328852177,-0.00425878399983048,-0.999280869960785,-0.0373916327953339,-0.0036710964050144,-0.999293982982636,-0.167877539992332,0.0254084691405296,-0.98548036813736,
- -0.244141057133675,3.56155323970597e-005,-0.969739735126495,-0.129792839288712,-0.00152625469490886,-0.991539895534515,-0.167877539992332,0.0254084691405296,-0.98548036813736,-0.24301615357399,-0.000836899620480835,-0.970021903514862,0.14622674882412,0.976229608058929,-0.159979715943336,-0.790340304374695,0.0282204020768404,-0.612017750740051,-0.902031600475311,0.00562638835981488,-0.431633353233337,-0.684941112995148,0.547524571418762,0.48070016503334,-0.657051980495453,0.177179247140884,-0.732727885246277,0.14622674882412,0.976229608058929,-0.159979715943336,0.774019420146942,0.168443709611893,-0.610344707965851,-0.661389410495758,-0.0583689697086811,-0.747768044471741,0.781359612941742,0.00516007700935006,-0.624059677124023,0.799194812774658,-0.00140752783045173,-0.601070463657379,0.798866271972656,-0.0106823099777102,-0.60141396522522,0.779338002204895,-0.000948320026509464,-0.626603186130524,0.14622674882412,0.976229608058929,-0.159979715943336,-0.657051980495453,0.177179247140884,-0.732727885246277,-0.790340304374695,0.0282204020768404,-0.612017750740051,-0.902031600475311,0.00562638835981488,-0.431633353233337,-0.633967161178589,0.388655811548233,-0.668604671955109,-0.684941112995148,0.547524571418762,0.48070016503334,-0.56950581073761,-0.728975355625153,0.379813373088837,-0.705580770969391,-0.0104292212054133,-0.708552718162537,-0.808084964752197,-0.0192145481705666,-0.588752329349518,-0.633967161178589,0.388655811548233,-0.668604671955109,-0.705580770969391,-0.0104292212054133,-0.708552718162537,-0.56950581073761,-0.728975355625153,0.379813373088837,-0.684941112995148,0.547524571418762,0.48070016503334,-0.769073903560638,-0.0276822075247765,-0.638560175895691,-0.316048622131348,-0.929868698120117,0.188301458954811,-0.56950581073761,-0.728975355625153,0.379813373088837,-0.808084964752197,-0.0192145481705666,-0.588752329349518,-0.769073903560638,-0.0276822075247765,-0.638560175895691,-0.642295002937317,-0.27302286028862,-0.716181397438049,-0.316048622131348,-0.929868698120117,0.188301458954811,-0.993356883525848,0.0234822500497103,-0.112653158605099,
- -0.0459858067333698,0.791401982307434,-0.609563827514648,-0.0466465204954147,0.980068325996399,0.193106651306152,-0.992971301078796,0.0123254768550396,0.11771148443222,-0.994587957859039,-0.0525700598955154,-0.0896163806319237,-0.999997735023499,-0.000897083838935941,-0.00191404134966433,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.0459858067333698,0.791401982307434,-0.609563827514648,-0.982343852519989,0.158006623387337,-0.100171700119972,-0.991134166717529,-0.0873962640762329,-0.100074306130409,-0.0456371158361435,-0.602128505706787,-0.79709380865097,-0.992971301078796,0.0123254768550396,0.11771148443222,-0.894389986991882,0.441487699747086,-0.0717994645237923,-0.975227117538452,-0.19598488509655,-0.102576121687889,-0.705531537532806,0.0179340690374374,-0.708451509475708,-0.922873675823212,-0.385083049535751,-0.00389846414327621,-0.994587957859039,-0.0525700598955154,-0.0896163806319237,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.999997735023499,-0.000897083838935941,-0.00191404134966433,-0.981060206890106,-0.092766746878624,0.170044735074043,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.0108116697520018,-0.0146804377436638,0.999833881855011,0.0291430428624153,-0.0135001996532083,0.999484062194824,0.0313898026943207,0.0017024326371029,0.999505758285522,0.00501570384949446,-0.0145026845857501,0.999882280826569,-0.0113633312284946,-0.0223935041576624,0.999684691429138,-0.993356883525848,0.0234822500497103,-0.112653158605099,-0.982343852519989,0.158006623387337,-0.100171700119972,-0.0459858067333698,0.791401982307434,-0.609563827514648,-0.0466465204954147,0.980068325996399,0.193106651306152,-0.894389986991882,0.441487699747086,-0.0717994645237923,-0.992971301078796,0.0123254768550396,0.11771148443222,-0.0456371158361435,-0.602128505706787,-0.79709380865097,-0.997214198112488,-0.0199768617749214,-0.0718667358160019,-0.95898425579071,-0.00597345177084208,0.283396422863007,-0.0388482734560966,-0.998298287391663,0.0434880964457989,-0.9997598528862,0.0140228364616632,0.0168398842215538,
- -0.95898425579071,-0.00597345177084208,0.283396422863007,-0.997214198112488,-0.0199768617749214,-0.0718667358160019,-0.998974561691284,0.0140928300097585,-0.0430265963077545,-0.864799618721008,0.00282060541212559,-0.502109110355377,-0.997214198112488,-0.0199768617749214,-0.0718667358160019,-0.991134166717529,-0.0873962640762329,-0.100074306130409,-0.991121411323547,0.0942326933145523,-0.093800276517868,-0.998974561691284,0.0140928300097585,-0.0430265963077545,-0.0195760577917099,-0.545216083526611,0.83806699514389,-0.974008321762085,-0.219518199563026,-0.0558540485799313,-0.997563123703003,-0.0552172847092152,-0.04264772310853,-0.0050246873870492,-0.139883667230606,0.990155220031738,-0.681406140327454,0.0489313825964928,-0.730268061161041,-0.79561984539032,0.23613928258419,-0.557877480983734,-0.838209271430969,-0.016446040943265,-0.545100569725037,-0.622938454151154,-0.363509118556976,-0.692682325839996,-0.689803600311279,0.100464560091496,-0.716992259025574,-0.687064707279205,0.0532821603119373,-0.72463995218277,-0.677003681659698,0.117336563766003,-0.726566076278687,-0.949659109115601,-0.302496552467346,-0.0815068334341049,-0.95898425579071,-0.00597345177084208,0.283396422863007,-0.9997598528862,0.0140228364616632,0.0168398842215538,-0.991134166717529,-0.0873962640762329,-0.100074306130409,-0.997214198112488,-0.0199768617749214,-0.0718667358160019,-0.0456371158361435,-0.602128505706787,-0.79709380865097,-0.0195760577917099,-0.545216083526611,0.83806699514389,-0.949659109115601,-0.302496552467346,-0.0815068334341049,-0.974008321762085,-0.219518199563026,-0.0558540485799313,-0.0195760577917099,-0.545216083526611,0.83806699514389,-0.0388482734560966,-0.998298287391663,0.0434880964457989,-0.95898425579071,-0.00597345177084208,0.283396422863007,-0.949659109115601,-0.302496552467346,-0.0815068334341049,-0.901503503322601,0.273303061723709,-0.335554599761963,-0.837786138057709,0.446185439825058,-0.314695209264755,-0.939630568027496,0.0382181033492088,-0.340049743652344,-0.859014689922333,0.319884777069092,-0.39970925450325,
- -0.808217465877533,0.384136319160461,-0.446344822645187,-0.911735653877258,0.0659037902951241,-0.405456155538559,-0.84708297252655,0.300491392612457,-0.438355147838593,-0.940991878509521,0.0325908251106739,-0.336856156587601,-0.683684170246124,-0.4176085293293,-0.598480641841888,-0.844411194324493,0.213078245520592,-0.491495072841644,-0.939090847969055,0.0744552686810493,-0.335506737232208,-0.888940513134003,-0.15044429898262,-0.432609915733337,-0.837786138057709,0.446185439825058,-0.314695209264755,-0.808217465877533,0.384136319160461,-0.446344822645187,-0.940991878509521,0.0325908251106739,-0.336856156587601,-0.939630568027496,0.0382181033492088,-0.340049743652344,-0.842372000217438,0.000943985534831882,-0.538895666599274,-0.935520827770233,0.0902038887143135,-0.341561049222946,-0.844411194324493,0.213078245520592,-0.491495072841644,-0.683684170246124,-0.4176085293293,-0.598480641841888,-0.970213532447815,-0.034726407378912,0.239749401807785,-0.909610867500305,-0.342379331588745,-0.235339060425758,-0.923691868782043,-0.34136226773262,0.173968479037285,-0.909610867500305,-0.342379331588745,-0.235339060425758,-0.869481384754181,-0.252313077449799,0.424664855003357,-0.923691868782043,-0.34136226773262,0.173968479037285,-0.963766038417816,-0.149337574839592,0.221027702093124,-0.947806894779205,0.123393401503563,0.294000238180161,-0.981615006923676,0.00213273614645004,-0.190859615802765,-0.895776927471161,-0.0263590961694717,0.443721830844879,-0.917022168636322,0.228904411196709,-0.326608538627625,-0.813091576099396,-0.490173012018204,-0.314026057720184,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.972994685173035,-0.227246761322021,-0.0405000187456608,-0.935676634311676,-0.0153464246541262,-0.352524876594543,-0.970213532447815,-0.034726407378912,0.239749401807785,-0.808342039585114,-0.437933444976807,-0.393442928791046,-0.870652437210083,-0.182840153574944,-0.456654965877533,-0.839121878147125,-0.294399261474609,-0.457387626171112,-0.630830883979797,0.0838341787457466,-0.771378040313721,
- 0.835587739944458,0.378306299448013,-0.398343354463577,-0.186391651630402,0.982321619987488,0.0173899419605732,-0.984875798225403,-0.134985148906708,-0.108621299266815,-0.891502916812897,0.101731956005096,-0.441444426774979,-0.902371466159821,0.134731620550156,-0.409357070922852,-0.995315611362457,0.00300277932547033,-0.0966324657201767,-0.888449728488922,-0.107223182916641,-0.44627371430397,-0.888449728488922,-0.107223182916641,-0.44627371430397,-0.891589939594269,0.122502617537975,-0.435959279537201,-0.891502916812897,0.101731956005096,-0.441444426774979,-0.291089087724686,0.953032076358795,-0.0836489871144295,0.660070896148682,0.122935399413109,-0.741075754165649,0.307538449764252,-0.0212590303272009,-0.951298177242279,-0.721562147140503,0.444350838661194,-0.530943036079407,-0.159103944897652,0.301045596599579,0.940243363380432,-0.212284818291664,0.941177487373352,-0.262907117605209,-0.699962556362152,0.478408843278885,-0.53026157617569,-0.841590285301209,-0.0123589746654034,0.539975166320801,-0.582019865512848,-0.484124541282654,-0.653357744216919,-0.613423764705658,-0.744578182697296,-0.263276904821396,-0.721562147140503,0.444350838661194,-0.530943036079407,-0.778203964233398,-0.133508995175362,-0.613656282424927,0.660070896148682,0.122935399413109,-0.741075754165649,-0.159103944897652,0.301045596599579,0.940243363380432,-0.932072401046753,0.00446655182167888,-0.362244546413422,0.307538449764252,-0.0212590303272009,-0.951298177242279,-0.704470574855804,-0.606829226016998,-0.368075340986252,-0.63157045841217,-0.567083120346069,-0.528711140155792,-0.978090286254883,-0.0174503307789564,-0.207448869943619,-0.929231524467468,-0.366846889257431,0.0441816113889217,-0.729572355747223,-0.553592503070831,-0.401571273803711,-0.582019865512848,-0.484124541282654,-0.653357744216919,-0.778203964233398,-0.133508995175362,-0.613656282424927,-0.318089485168457,-0.00796273350715637,-0.94802725315094,-0.929231524467468,-0.366846889257431,0.0441816113889217,-0.78786027431488,-0.291096180677414,-0.542714715003967,-0.58276230096817,-0.756879866123199,-0.295839309692383,
- -0.704470574855804,-0.606829226016998,-0.368075340986252,-0.739751636981964,0.00179292552638799,-0.672877609729767,-0.829103767871857,0.103631407022476,-0.549406468868256,-0.61905962228775,0.0702087506651878,-0.782199442386627,-0.592279553413391,0.538991928100586,-0.598909616470337,-0.693072438240051,0.0716504976153374,-0.717298150062561,-0.669878482818604,0.125872328877449,-0.731723368167877,-0.673552453517914,0.146004274487495,-0.724575638771057,-0.768162608146667,0.0288037061691284,-0.639606595039368,-0.658178925514221,0.0709050074219704,-0.749515175819397,-0.738781690597534,0.17825685441494,-0.649943113327026,-0.739751636981964,0.00179292552638799,-0.672877609729767,-0.592279553413391,0.538991928100586,-0.598909616470337,-0.768162608146667,0.0288037061691284,-0.639606595039368,-0.7181476354599,0.0727151930332184,-0.692081272602081,-0.693072438240051,0.0716504976153374,-0.717298150062561,-0.518094122409821,-0.00900237821042538,-0.85527628660202,-0.838209271430969,-0.016446040943265,-0.545100569725037,-0.79561984539032,0.23613928258419,-0.557877480983734,-0.754940927028656,0.245911180973053,-0.607940793037415,-0.518094122409821,-0.00900237821042538,-0.85527628660202,-0.658178925514221,0.0709050074219704,-0.749515175819397,-0.633967161178589,0.388655811548233,-0.668604671955109,-0.902031600475311,0.00562638835981488,-0.431633353233337,-0.908973813056946,0.00133077322971076,-0.416851103305817,-0.803851127624512,-0.0436377786099911,-0.593227744102478,-0.929231524467468,-0.366846889257431,0.0441816113889217,-0.803851127624512,-0.0436377786099911,-0.593227744102478,-0.78786027431488,-0.291096180677414,-0.542714715003967,-0.929231524467468,-0.366846889257431,0.0441816113889217,-0.579827427864075,-0.0267915483564138,-0.814298689365387,-0.791828751564026,-0.0944737493991852,-0.603392004966736,-0.669878482818604,0.125872328877449,-0.731723368167877,-0.693072438240051,0.0716504976153374,-0.717298150062561,-0.7181476354599,0.0727151930332184,-0.692081272602081,-0.579827427864075,-0.0267915483564138,-0.814298689365387,-0.693072438240051,0.0716504976153374,-0.717298150062561,
- -0.736581087112427,-0.366804987192154,-0.568245053291321,-0.862754046916962,-0.0680038705468178,-0.501029789447784,-0.829103767871857,0.103631407022476,-0.549406468868256,-0.739751636981964,0.00179292552638799,-0.672877609729767,-0.800267100334167,0.157844975590706,-0.578495860099792,-0.736581087112427,-0.366804987192154,-0.568245053291321,-0.739751636981964,0.00179292552638799,-0.672877609729767,-0.738781690597534,0.17825685441494,-0.649943113327026,-0.318089485168457,-0.00796273350715637,-0.94802725315094,-0.778203964233398,-0.133508995175362,-0.613656282424927,-0.800267100334167,0.157844975590706,-0.578495860099792,-0.88275009393692,0.0225314795970917,-0.469302237033844,-0.929231524467468,-0.366846889257431,0.0441816113889217,-0.978090286254883,-0.0174503307789564,-0.207448869943619,-0.908973813056946,0.00133077322971076,-0.416851103305817,-0.704470574855804,-0.606829226016998,-0.368075340986252,-0.58276230096817,-0.756879866123199,-0.295839309692383,-0.778304755687714,-0.456850707530975,-0.430730938911438,-0.0700303316116333,0.0868795961141586,-0.993754327297211,-0.576921105384827,-0.0451547168195248,-0.815550804138184,-0.541340708732605,-0.809445440769196,-0.227482512593269,-0.314827233552933,-0.916375815868378,-0.247263759374619,-0.342755377292633,-0.583984911441803,-0.735853433609009,-0.978039741516113,-0.0570471882820129,-0.200459226965904,-0.576921105384827,-0.0451547168195248,-0.815550804138184,-0.342755377292633,-0.583984911441803,-0.735853433609009,-0.84766012430191,-0.515348374843597,0.12604895234108,-0.778003513813019,-0.481914967298508,-0.403073757886887,-0.978039741516113,-0.0570471882820129,-0.200459226965904,-0.84766012430191,-0.515348374843597,0.12604895234108,-0.613423764705658,-0.744578182697296,-0.263276904821396,-0.893470108509064,-0.230346739292145,-0.385553658008575,-0.778003513813019,-0.481914967298508,-0.403073757886887,-0.613423764705658,-0.744578182697296,-0.263276904821396,-0.582019865512848,-0.484124541282654,-0.653357744216919,-0.999953508377075,0.00555742159485817,-0.00787720736116171,
- -0.893470108509064,-0.230346739292145,-0.385553658008575,-0.582019865512848,-0.484124541282654,-0.653357744216919,-0.729572355747223,-0.553592503070831,-0.401571273803711,-0.0700303316116333,0.0868795961141586,-0.993754327297211,-0.595604598522186,0.0117465006187558,-0.803191840648651,-0.63157045841217,-0.567083120346069,-0.528711140155792,-0.704470574855804,-0.606829226016998,-0.368075340986252,-0.0700303316116333,0.0868795961141586,-0.993754327297211,-0.876261472702026,0.170359328389168,-0.450714439153671,-0.707778215408325,0.006333087105304,-0.706406235694885,-0.0700303316116333,0.0868795961141586,-0.993754327297211,-0.778304755687714,-0.456850707530975,-0.430730938911438,-0.876261472702026,0.170359328389168,-0.450714439153671,-0.683684170246124,-0.4176085293293,-0.598480641841888,-0.888940513134003,-0.15044429898262,-0.432609915733337,-0.842372000217438,0.000943985534831882,-0.538895666599274,-0.707778215408325,0.006333087105304,-0.706406235694885,-0.595604598522186,0.0117465006187558,-0.803191840648651,-0.0700303316116333,0.0868795961141586,-0.993754327297211,-0.921929597854614,0.280009090900421,-0.267657995223999,-0.877673625946045,0.00723470514640212,-0.479204118251801,-0.902371466159821,0.134731620550156,-0.409357070922852,-0.891502916812897,0.101731956005096,-0.441444426774979,-0.891589939594269,0.122502617537975,-0.435959279537201,-0.921929597854614,0.280009090900421,-0.267657995223999,-0.891502916812897,0.101731956005096,-0.441444426774979,-0.895776927471161,-0.0263590961694717,0.443721830844879,-0.981615006923676,0.00213273614645004,-0.190859615802765,-0.94797945022583,-0.0866615623235703,-0.306308209896088,-0.841403186321259,-0.0214104373008013,-0.539983510971069,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.935676634311676,-0.0153464246541262,-0.352524876594543,-0.935381591320038,-0.0227577295154333,-0.352907299995422,-0.935381591320038,-0.0227577295154333,-0.352907299995422,-0.960960626602173,-0.0323384255170822,-0.274788916110992,-0.982150852680206,-0.10229666531086,-0.157845064997673,
- -0.828227758407593,0.492118924856186,-0.268062829971313,-0.933517158031464,0.213749647140503,-0.287848502397537,-0.939090847969055,0.0744552686810493,-0.335506737232208,-0.844411194324493,0.213078245520592,-0.491495072841644,-0.961787402629852,0.00687825074419379,-0.273710787296295,-0.933517158031464,0.213749647140503,-0.287848502397537,-0.828227758407593,0.492118924856186,-0.268062829971313,-0.961787402629852,0.00687825074419379,-0.273710787296295,-0.828227758407593,0.492118924856186,-0.268062829971313,-0.844411194324493,0.213078245520592,-0.491495072841644,-0.935520827770233,0.0902038887143135,-0.341561049222946,-0.705531537532806,0.0179340690374374,-0.708451509475708,-0.975227117538452,-0.19598488509655,-0.102576121687889,-0.947806894779205,0.123393401503563,0.294000238180161,-0.159018442034721,-0.0441192537546158,-0.986289322376251,-0.813091576099396,-0.490173012018204,-0.314026057720184,-0.922873675823212,-0.385083049535751,-0.00389846414327621,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.981060206890106,-0.092766746878624,0.170044735074043,-0.972994685173035,-0.227246761322021,-0.0405000187456608,-0.60586017370224,0.301837027072906,-0.736089468002319,-0.892997324466705,0.074259914457798,-0.443893253803253,-0.808342039585114,-0.437933444976807,-0.393442928791046,-0.923691868782043,-0.34136226773262,0.173968479037285,-0.864799618721008,0.00282060541212559,-0.502109110355377,-0.995242059230804,0.0365626439452171,-0.0903136283159256,-0.949659109115601,-0.302496552467346,-0.0815068334341049,-0.9997598528862,0.0140228364616632,0.0168398842215538,-0.995242059230804,0.0365626439452171,-0.0903136283159256,-0.984875798225403,-0.134985148906708,-0.108621299266815,-0.997563123703003,-0.0552172847092152,-0.04264772310853,-0.974008321762085,-0.219518199563026,-0.0558540485799313,-0.949659109115601,-0.302496552467346,-0.0815068334341049,-0.754940927028656,0.245911180973053,-0.607940793037415,-0.88275009393692,0.0225314795970917,-0.469302237033844,-0.890729010105133,0.167115554213524,-0.422698795795441,
- -0.709051132202148,0.478644639253616,-0.517827987670898,-0.614215493202209,0.0483875311911106,-0.78765344619751,-0.79561984539032,0.23613928258419,-0.557877480983734,-0.681406140327454,0.0489313825964928,-0.730268061161041,-0.792565524578094,-0.0489644408226013,-0.607817769050598,-0.687064707279205,0.0532821603119373,-0.72463995218277,-0.689803600311279,0.100464560091496,-0.716992259025574,-0.58276230096817,-0.756879866123199,-0.295839309692383,-0.78786027431488,-0.291096180677414,-0.542714715003967,-0.699780702590942,0.478783547878265,-0.530163407325745,-0.606938242912292,-0.573411285877228,-0.550295889377594,-0.778304755687714,-0.456850707530975,-0.430730938911438,-0.58276230096817,-0.756879866123199,-0.295839309692383,-0.606938242912292,-0.573411285877228,-0.550295889377594,-0.821302175521851,-0.396792769432068,-0.409900158643723,-0.63157045841217,-0.567083120346069,-0.528711140155792,-0.595604598522186,0.0117465006187558,-0.803191840648651,-0.999953508377075,0.00555742159485817,-0.00787720736116171,-0.729572355747223,-0.553592503070831,-0.401571273803711,-0.978090286254883,-0.0174503307789564,-0.207448869943619,-0.63157045841217,-0.567083120346069,-0.528711140155792,-0.729572355747223,-0.553592503070831,-0.401571273803711,-0.318089485168457,-0.00796273350715637,-0.94802725315094,-0.902371466159821,0.134731620550156,-0.409357070922852,-0.877673625946045,0.00723470514640212,-0.479204118251801,-0.938393294811249,0.0997947677969933,-0.330845832824707,-0.938912332057953,-0.0423122085630894,-0.341545641422272,-0.951213836669922,-0.152114272117615,-0.268427670001984,-0.933517158031464,0.213749647140503,-0.287848502397537,-0.961787402629852,0.00687825074419379,-0.273710787296295,-0.960960626602173,-0.0323384255170822,-0.274788916110992,-0.917022168636322,0.228904411196709,-0.326608538627625,-0.982150852680206,-0.10229666531086,-0.157845064997673,-0.939090847969055,0.0744552686810493,-0.335506737232208,-0.901503503322601,0.273303061723709,-0.335554599761963,-0.859014689922333,0.319884777069092,-0.39970925450325,-0.888940513134003,-0.15044429898262,-0.432609915733337,
- -0.842372000217438,0.000943985534831882,-0.538895666599274,-0.888940513134003,-0.15044429898262,-0.432609915733337,-0.893470108509064,-0.230346739292145,-0.385553658008575,-0.999953508377075,0.00555742159485817,-0.00787720736116171,-0.938393294811249,0.0997947677969933,-0.330845832824707,-0.995315611362457,0.00300277932547033,-0.0966324657201767,-0.902371466159821,0.134731620550156,-0.409357070922852,-0.518094122409821,-0.00900237821042538,-0.85527628660202,-0.754940927028656,0.245911180973053,-0.607940793037415,-0.890729010105133,0.167115554213524,-0.422698795795441,-0.890729010105133,0.167115554213524,-0.422698795795441,-0.769024729728699,0.158939510583878,-0.619143843650818,-0.658178925514221,0.0709050074219704,-0.749515175819397,-0.518094122409821,-0.00900237821042538,-0.85527628660202,-0.769024729728699,0.158939510583878,-0.619143843650818,-0.738781690597534,0.17825685441494,-0.649943113327026,-0.658178925514221,0.0709050074219704,-0.749515175819397,-0.800267100334167,0.157844975590706,-0.578495860099792,-0.738781690597534,0.17825685441494,-0.649943113327026,-0.769024729728699,0.158939510583878,-0.619143843650818,-0.88275009393692,0.0225314795970917,-0.469302237033844,-0.800267100334167,0.157844975590706,-0.578495860099792,-0.769024729728699,0.158939510583878,-0.619143843650818,-0.890729010105133,0.167115554213524,-0.422698795795441,-0.754940927028656,0.245911180973053,-0.607940793037415,-0.79561984539032,0.23613928258419,-0.557877480983734,-0.614215493202209,0.0483875311911106,-0.78765344619751,-0.88275009393692,0.0225314795970917,-0.469302237033844,-0.870652437210083,-0.182840153574944,-0.456654965877533,-0.968268632888794,0.0602742619812489,0.242534145712852,-0.963146686553955,-0.126162081956863,-0.237553268671036,-0.839121878147125,-0.294399261474609,-0.457387626171112,-0.870652437210083,-0.182840153574944,-0.456654965877533,-0.963146686553955,-0.126162081956863,-0.237553268671036,-0.938912332057953,-0.0423122085630894,-0.341545641422272,-0.839121878147125,-0.294399261474609,-0.457387626171112,-0.963146686553955,-0.126162081956863,-0.237553268671036,
- -0.963146686553955,-0.126162081956863,-0.237553268671036,-0.979479968547821,-0.0565851256251335,-0.193435370922089,-0.951213836669922,-0.152114272117615,-0.268427670001984,-0.938912332057953,-0.0423122085630894,-0.341545641422272,-0.920435607433319,-0.0907836705446243,-0.380206048488617,-0.951213836669922,-0.152114272117615,-0.268427670001984,-0.979479968547821,-0.0565851256251335,-0.193435370922089,-0.979479968547821,-0.0565851256251335,-0.193435370922089,-0.745795667171478,-0.624110817909241,-0.23296907544136,-0.920435607433319,-0.0907836705446243,-0.380206048488617,-0.979479968547821,-0.0565851256251335,-0.193435370922089,-0.938926577568054,-0.341888815164566,0.0391030572354794,-0.745795667171478,-0.624110817909241,-0.23296907544136,-0.991121411323547,0.0942326933145523,-0.093800276517868,-0.938926577568054,-0.341888815164566,0.0391030572354794,-0.979479968547821,-0.0565851256251335,-0.193435370922089,-0.998974561691284,0.0140928300097585,-0.0430265963077545,-0.991121411323547,0.0942326933145523,-0.093800276517868,-0.979479968547821,-0.0565851256251335,-0.193435370922089,-0.963146686553955,-0.126162081956863,-0.237553268671036,-0.968268632888794,0.0602742619812489,0.242534145712852,-0.998974561691284,0.0140928300097585,-0.0430265963077545,-0.963146686553955,-0.126162081956863,-0.237553268671036,-0.864799618721008,0.00282060541212559,-0.502109110355377,-0.892997324466705,0.074259914457798,-0.443893253803253,-0.60586017370224,0.301837027072906,-0.736089468002319,-0.60586017370224,0.301837027072906,-0.736089468002319,-0.995242059230804,0.0365626439452171,-0.0903136283159256,-0.864799618721008,0.00282060541212559,-0.502109110355377,-0.60586017370224,0.301837027072906,-0.736089468002319,-0.630885481834412,0.1351707726717,-0.764010727405548,-0.995242059230804,0.0365626439452171,-0.0903136283159256,-0.528184652328491,-0.65308290719986,-0.542681753635406,0.835587739944458,0.378306299448013,-0.398343354463577,-0.630830883979797,0.0838341787457466,-0.771378040313721,-0.60586017370224,0.301837027072906,-0.736089468002319,
- -0.808342039585114,-0.437933444976807,-0.393442928791046,-0.892997324466705,0.074259914457798,-0.443893253803253,-0.968268632888794,0.0602742619812489,0.242534145712852,-0.870652437210083,-0.182840153574944,-0.456654965877533,-0.923691868782043,-0.34136226773262,0.173968479037285,-0.808342039585114,-0.437933444976807,-0.393442928791046,-0.970213532447815,-0.034726407378912,0.239749401807785,-0.909610867500305,-0.342379331588745,-0.235339060425758,-0.968955159187317,-0.172836273908615,-0.17678689956665,-0.952620506286621,0.059937410056591,0.298197448253632,-0.869481384754181,-0.252313077449799,0.424664855003357,-0.677003681659698,0.117336563766003,-0.726566076278687,-0.687064707279205,0.0532821603119373,-0.72463995218277,-0.681406140327454,0.0489313825964928,-0.730268061161041,-0.622938454151154,-0.363509118556976,-0.692682325839996,-0.768162608146667,0.0288037061691284,-0.639606595039368,-0.673552453517914,0.146004274487495,-0.724575638771057,-0.642295002937317,-0.27302286028862,-0.716181397438049,-0.769073903560638,-0.0276822075247765,-0.638560175895691,-0.829103767871857,0.103631407022476,-0.549406468868256,-0.7181476354599,0.0727151930332184,-0.692081272602081,-0.768162608146667,0.0288037061691284,-0.639606595039368,-0.61905962228775,0.0702087506651878,-0.782199442386627,-0.862754046916962,-0.0680038705468178,-0.501029789447784,-0.579827427864075,-0.0267915483564138,-0.814298689365387,-0.7181476354599,0.0727151930332184,-0.692081272602081,-0.829103767871857,0.103631407022476,-0.549406468868256,-0.932072401046753,0.00446655182167888,-0.362244546413422,-0.699962556362152,0.478408843278885,-0.53026157617569,-0.791828751564026,-0.0944737493991852,-0.603392004966736,-0.579827427864075,-0.0267915483564138,-0.814298689365387,-0.792565524578094,-0.0489644408226013,-0.607817769050598,-0.709051132202148,0.478644639253616,-0.517827987670898,-0.681406140327454,0.0489313825964928,-0.730268061161041,-0.687064707279205,0.0532821603119373,-0.72463995218277,-0.842372000217438,0.000943985534831882,-0.538895666599274,-0.995315611362457,0.00300277932547033,-0.0966324657201767,
- -0.938393294811249,0.0997947677969933,-0.330845832824707,-0.935520827770233,0.0902038887143135,-0.341561049222946,-0.888449728488922,-0.107223182916641,-0.44627371430397,-0.995315611362457,0.00300277932547033,-0.0966324657201767,-0.707778215408325,0.006333087105304,-0.706406235694885,-0.876261472702026,0.170359328389168,-0.450714439153671,-0.895220398902893,0.196632206439972,-0.399895250797272,-0.891589939594269,0.122502617537975,-0.435959279537201,-0.888449728488922,-0.107223182916641,-0.44627371430397,-0.887132048606873,0.129040867090225,-0.443108558654785,-0.921929597854614,0.280009090900421,-0.267657995223999,-0.9440638422966,0.091287799179554,-0.316875249147415,-0.968955159187317,-0.172836273908615,-0.17678689956665,-0.909610867500305,-0.342379331588745,-0.235339060425758,-0.909610867500305,-0.342379331588745,-0.235339060425758,-0.970213532447815,-0.034726407378912,0.239749401807785,-0.877673625946045,0.00723470514640212,-0.479204118251801,-0.921929597854614,0.280009090900421,-0.267657995223999,-0.938912332057953,-0.0423122085630894,-0.341545641422272,-0.970213532447815,-0.034726407378912,0.239749401807785,-0.839121878147125,-0.294399261474609,-0.457387626171112,-0.982343852519989,0.158006623387337,-0.100171700119972,-0.994587957859039,-0.0525700598955154,-0.0896163806319237,-0.991121411323547,0.0942326933145523,-0.093800276517868,-0.991134166717529,-0.0873962640762329,-0.100074306130409,-0.982343852519989,0.158006623387337,-0.100171700119972,-0.993356883525848,0.0234822500497103,-0.112653158605099,-0.999997735023499,-0.000897083838935941,-0.00191404134966433,-0.994587957859039,-0.0525700598955154,-0.0896163806319237,-0.993356883525848,0.0234822500497103,-0.112653158605099,-0.992971301078796,0.0123254768550396,0.11771148443222,-0.705531537532806,0.0179340690374374,-0.708451509475708,-0.999997735023499,-0.000897083838935941,-0.00191404134966433,-0.972994685173035,-0.227246761322021,-0.0405000187456608,-0.981060206890106,-0.092766746878624,0.170044735074043,-0.705531537532806,0.0179340690374374,-0.708451509475708,
- -0.963766038417816,-0.149337574839592,0.221027702093124,-0.935676634311676,-0.0153464246541262,-0.352524876594543,-0.972994685173035,-0.227246761322021,-0.0405000187456608,-0.963766038417816,-0.149337574839592,0.221027702093124,-0.895776927471161,-0.0263590961694717,0.443721830844879,-0.935381591320038,-0.0227577295154333,-0.352907299995422,-0.935676634311676,-0.0153464246541262,-0.352524876594543,-0.895776927471161,-0.0263590961694717,0.443721830844879,-0.841403186321259,-0.0214104373008013,-0.539983510971069,-0.891318619251251,-0.0347148738801479,-0.452046424150467,-0.891318619251251,-0.0347148738801479,-0.452046424150467,-0.951692640781403,-0.0943228974938393,-0.292205899953842,-0.960960626602173,-0.0323384255170822,-0.274788916110992,-0.935381591320038,-0.0227577295154333,-0.352907299995422,-0.960960626602173,-0.0323384255170822,-0.274788916110992,-0.951213836669922,-0.152114272117615,-0.268427670001984,-0.920435607433319,-0.0907836705446243,-0.380206048488617,-0.917022168636322,0.228904411196709,-0.326608538627625,-0.920435607433319,-0.0907836705446243,-0.380206048488617,-0.745795667171478,-0.624110817909241,-0.23296907544136,-0.813091576099396,-0.490173012018204,-0.314026057720184,-0.917022168636322,0.228904411196709,-0.326608538627625,-0.745795667171478,-0.624110817909241,-0.23296907544136,-0.938926577568054,-0.341888815164566,0.0391030572354794,-0.922873675823212,-0.385083049535751,-0.00389846414327621,-0.813091576099396,-0.490173012018204,-0.314026057720184,-0.790340304374695,0.0282204020768404,-0.612017750740051,-0.838209271430969,-0.016446040943265,-0.545100569725037,-0.518094122409821,-0.00900237821042538,-0.85527628660202,-0.902031600475311,0.00562638835981488,-0.431633353233337,-0.622938454151154,-0.363509118556976,-0.692682325839996,-0.838209271430969,-0.016446040943265,-0.545100569725037,-0.790340304374695,0.0282204020768404,-0.612017750740051,-0.657051980495453,0.177179247140884,-0.732727885246277,-0.677003681659698,0.117336563766003,-0.726566076278687,-0.622938454151154,-0.363509118556976,-0.692682325839996,
- -0.657051980495453,0.177179247140884,-0.732727885246277,-0.661389410495758,-0.0583689697086811,-0.747768044471741,-0.699780702590942,0.478783547878265,-0.530163407325745,-0.78786027431488,-0.291096180677414,-0.542714715003967,-0.803851127624512,-0.0436377786099911,-0.593227744102478,-0.709051132202148,0.478644639253616,-0.517827987670898,-0.792565524578094,-0.0489644408226013,-0.607817769050598,-0.803851127624512,-0.0436377786099911,-0.593227744102478,-0.908973813056946,0.00133077322971076,-0.416851103305817,-0.614215493202209,0.0483875311911106,-0.78765344619751,-0.709051132202148,0.478644639253616,-0.517827987670898,-0.88275009393692,0.0225314795970917,-0.469302237033844,-0.614215493202209,0.0483875311911106,-0.78765344619751,-0.908973813056946,0.00133077322971076,-0.416851103305817,-0.978090286254883,-0.0174503307789564,-0.207448869943619,-0.318089485168457,-0.00796273350715637,-0.94802725315094,-0.887132048606873,0.129040867090225,-0.443108558654785,-0.888449728488922,-0.107223182916641,-0.44627371430397,-0.876261472702026,0.170359328389168,-0.450714439153671,-0.778304755687714,-0.456850707530975,-0.430730938911438,-0.821302175521851,-0.396792769432068,-0.409900158643723,-0.940991878509521,0.0325908251106739,-0.336856156587601,-0.84708297252655,0.300491392612457,-0.438355147838593,-0.541340708732605,-0.809445440769196,-0.227482512593269,-0.576921105384827,-0.0451547168195248,-0.815550804138184,-0.939630568027496,0.0382181033492088,-0.340049743652344,-0.940991878509521,0.0325908251106739,-0.336856156587601,-0.576921105384827,-0.0451547168195248,-0.815550804138184,-0.978039741516113,-0.0570471882820129,-0.200459226965904,-0.859014689922333,0.319884777069092,-0.39970925450325,-0.939630568027496,0.0382181033492088,-0.340049743652344,-0.978039741516113,-0.0570471882820129,-0.200459226965904,-0.778003513813019,-0.481914967298508,-0.403073757886887,-0.888940513134003,-0.15044429898262,-0.432609915733337,-0.859014689922333,0.319884777069092,-0.39970925450325,-0.778003513813019,-0.481914967298508,-0.403073757886887,-0.893470108509064,-0.230346739292145,-0.385553658008575,
- -0.933517158031464,0.213749647140503,-0.287848502397537,-0.951213836669922,-0.152114272117615,-0.268427670001984,-0.960960626602173,-0.0323384255170822,-0.274788916110992,-0.951692640781403,-0.0943228974938393,-0.292205899953842,-0.961787402629852,0.00687825074419379,-0.273710787296295,-0.877673625946045,0.00723470514640212,-0.479204118251801,-0.970213532447815,-0.034726407378912,0.239749401807785,-0.938912332057953,-0.0423122085630894,-0.341545641422272,-0.938393294811249,0.0997947677969933,-0.330845832824707,-0.877673625946045,0.00723470514640212,-0.479204118251801,-0.961787402629852,0.00687825074419379,-0.273710787296295,-0.935520827770233,0.0902038887143135,-0.341561049222946,-0.895220398902893,0.196632206439972,-0.399895250797272,-0.9440638422966,0.091287799179554,-0.316875249147415,-0.921929597854614,0.280009090900421,-0.267657995223999,-0.891589939594269,0.122502617537975,-0.435959279537201,-0.841403186321259,-0.0214104373008013,-0.539983510971069,-0.94797945022583,-0.0866615623235703,-0.306308209896088,-0.911735653877258,0.0659037902951241,-0.405456155538559,-0.808217465877533,0.384136319160461,-0.446344822645187,-0.891318619251251,-0.0347148738801479,-0.452046424150467,-0.841403186321259,-0.0214104373008013,-0.539983510971069,-0.808217465877533,0.384136319160461,-0.446344822645187,-0.837786138057709,0.446185439825058,-0.314695209264755,-0.901503503322601,0.273303061723709,-0.335554599761963,-0.951692640781403,-0.0943228974938393,-0.292205899953842,-0.891318619251251,-0.0347148738801479,-0.452046424150467,-0.837786138057709,0.446185439825058,-0.314695209264755,-0.933517158031464,0.213749647140503,-0.287848502397537,-0.951692640781403,-0.0943228974938393,-0.292205899953842,-0.901503503322601,0.273303061723709,-0.335554599761963,-0.939090847969055,0.0744552686810493,-0.335506737232208,-0.707778215408325,0.006333087105304,-0.706406235694885,-0.995315611362457,0.00300277932547033,-0.0966324657201767,-0.842372000217438,0.000943985534831882,-0.538895666599274,-0.999953508377075,0.00555742159485817,-0.00787720736116171,
- -0.595604598522186,0.0117465006187558,-0.803191840648651,-0.864799618721008,0.00282060541212559,-0.502109110355377,-0.998974561691284,0.0140928300097585,-0.0430265963077545,-0.968268632888794,0.0602742619812489,0.242534145712852,-0.892997324466705,0.074259914457798,-0.443893253803253,-0.995242059230804,0.0365626439452171,-0.0903136283159256,-0.630885481834412,0.1351707726717,-0.764010727405548,-0.984875798225403,-0.134985148906708,-0.108621299266815,-0.999997735023499,-0.000897083838935941,-0.00191404134966433,-0.705531537532806,0.0179340690374374,-0.708451509475708,-0.981060206890106,-0.092766746878624,0.170044735074043,-0.991121411323547,0.0942326933145523,-0.093800276517868,-0.994587957859039,-0.0525700598955154,-0.0896163806319237,-0.922873675823212,-0.385083049535751,-0.00389846414327621,-0.938926577568054,-0.341888815164566,0.0391030572354794,-0.61905962228775,0.0702087506651878,-0.782199442386627,-0.768162608146667,0.0288037061691284,-0.639606595039368,-0.769073903560638,-0.0276822075247765,-0.638560175895691,-0.808084964752197,-0.0192145481705666,-0.588752329349518,-0.592279553413391,0.538991928100586,-0.598909616470337,-0.61905962228775,0.0702087506651878,-0.782199442386627,-0.808084964752197,-0.0192145481705666,-0.588752329349518,-0.705580770969391,-0.0104292212054133,-0.708552718162537,-0.658178925514221,0.0709050074219704,-0.749515175819397,-0.592279553413391,0.538991928100586,-0.598909616470337,-0.705580770969391,-0.0104292212054133,-0.708552718162537,-0.633967161178589,0.388655811548233,-0.668604671955109,-0.778203964233398,-0.133508995175362,-0.613656282424927,-0.721562147140503,0.444350838661194,-0.530943036079407,-0.736581087112427,-0.366804987192154,-0.568245053291321,-0.800267100334167,0.157844975590706,-0.578495860099792,-0.721562147140503,0.444350838661194,-0.530943036079407,-0.799942553043365,0.00908040348440409,-0.600008010864258,-0.862754046916962,-0.0680038705468178,-0.501029789447784,-0.736581087112427,-0.366804987192154,-0.568245053291321,-0.799942553043365,0.00908040348440409,-0.600008010864258,
- -0.932072401046753,0.00446655182167888,-0.362244546413422,-0.579827427864075,-0.0267915483564138,-0.814298689365387,-0.862754046916962,-0.0680038705468178,-0.501029789447784,0.216214150190353,0.975618183612823,-0.0376908220350742,-0.177560076117516,0.0272475145757198,-0.983732581138611,-0.392409235239029,0.00530861504375935,-0.919775426387787,-0.834608733654022,0.549335181713104,-0.0407329462468624,0.00418237037956715,0.217812389135361,-0.975981712341309,0.216214150190353,0.975618183612823,-0.0376908220350742,0.984488189220428,0.175300553441048,-0.00725863920524716,0.0103706987574697,-0.0583846382796764,-0.998240292072296,0.99989241361618,0.00519157061353326,-0.0137265659868717,0.999883770942688,-0.00131888338364661,0.0151951480656862,0.999834001064301,-0.0107152797281742,0.0147438403218985,0.999858856201172,-0.00110206252429634,-0.0167689025402069,0.216214150190353,0.975618183612823,-0.0376908220350742,0.00418237037956715,0.217812389135361,-0.975981712341309,-0.177560076117516,0.0272475145757198,-0.983732581138611,-0.392409235239029,0.00530861504375935,-0.919775426387787,-0.0228999778628349,0.40323194861412,-0.914811193943024,-0.834608733654022,0.549335181713104,-0.0407329462468624,-0.681546747684479,-0.730212390422821,-0.0477911606431007,-0.047225583344698,-0.00371087319217622,-0.998877346515656,-0.214404255151749,-0.0198485776782036,-0.976543307304382,-0.0228999778628349,0.40323194861412,-0.914811193943024,-0.047225583344698,-0.00371087319217622,-0.998877346515656,-0.681546747684479,-0.730212390422821,-0.0477911606431007,-0.834608733654022,0.549335181713104,-0.0407329462468624,-0.180497273802757,-0.0270957816392183,-0.983202219009399,-0.369531095027924,-0.92824512720108,-0.0425163917243481,-0.681546747684479,-0.730212390422821,-0.0477911606431007,-0.214404255151749,-0.0198485776782036,-0.976543307304382,-0.180497273802757,-0.0270957816392183,-0.983202219009399,-0.00109956180676818,-0.300324112176895,-0.953836560249329,-0.369531095027924,-0.92824512720108,-0.0425163917243481,-0.522701144218445,0.0234800428152084,-0.852192580699921,
- 0.452102601528168,0.791499257087708,-0.411256790161133,-0.18122510612011,0.979995787143707,0.0822539553046227,-0.703859031200409,0.0123129608109593,-0.7102330327034,-0.541309714317322,-0.052577693015337,-0.83917772769928,-0.613747835159302,-0.000902523985132575,-0.78950172662735,-0.490899682044983,-0.0816164761781693,-0.867384731769562,0.452102601528168,0.791499257087708,-0.411256790161133,-0.525473117828369,0.157716527581215,-0.836064279079437,-0.530945479869843,-0.0873803645372391,-0.84288877248764,0.600345611572266,-0.601982831954956,-0.526499569416046,-0.703859031200409,0.0123129608109593,-0.7102330327034,-0.493774652481079,0.441333502531052,-0.749273896217346,-0.519173979759216,-0.1963831782341,-0.831800401210785,0.124442420899868,0.0179398395121098,-0.992064654827118,-0.574955105781555,-0.364985197782516,-0.73226535320282,-0.541309714317322,-0.052577693015337,-0.83917772769928,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.613747835159302,-0.000902523985132575,-0.78950172662735,-0.737959623336792,-0.0927175581455231,-0.668445229530334,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.794806241989136,-0.0146765476092696,0.606685757637024,-0.769939303398132,-0.0134869199246168,0.637974560260773,-0.768575608730316,0.00171710539143533,0.639756858348846,-0.785109758377075,-0.0144866844639182,0.619187235832214,-0.795033812522888,-0.0223815236240625,0.60615211725235,-0.522701144218445,0.0234800428152084,-0.852192580699921,-0.525473117828369,0.157716527581215,-0.836064279079437,0.452102601528168,0.791499257087708,-0.411256790161133,-0.18122510612011,0.979995787143707,0.0822539553046227,-0.493774652481079,0.441333502531052,-0.749273896217346,-0.703859031200409,0.0123129608109593,-0.7102330327034,0.600345611572266,-0.601982831954956,-0.526499569416046,-0.556850135326386,-0.0199885033071041,-0.830372393131256,-0.813411951065063,-0.00597939267754555,-0.581657350063324,-0.0578846074640751,-0.9983149766922,-0.00409018015488982,-0.628455579280853,0.0140225039795041,-0.777719080448151,-0.813411951065063,-0.00597939267754555,-0.581657350063324,
- -0.556850135326386,-0.0199885033071041,-0.830372393131256,-0.581155121326447,0.0137509871274233,-0.813676595687866,-0.136436641216278,0.00282881292514503,-0.990644693374634,-0.556850135326386,-0.0199885033071041,-0.830372393131256,-0.530945479869843,-0.0873803645372391,-0.84288877248764,-0.535837292671204,0.0942384228110313,-0.839045643806458,-0.581155121326447,0.0137509871274233,-0.813676595687866,-0.672612130641937,-0.545386373996735,0.500146627426147,-0.555240571498871,-0.21980194747448,-0.802119135856628,-0.580192744731903,-0.0552427731454372,-0.812603652477264,-0.783605873584747,-0.139941409230232,0.605291783809662,0.0346832312643528,-0.178130716085434,-0.983395338058472,-0.0431363098323345,-0.203940764069557,-0.978032350540161,-0.264167696237564,-0.0153890140354633,-0.964354038238525,0.000253288104431704,-0.314638823270798,-0.949211478233337,0.0505265109241009,-0.236008182168007,-0.970436632633209,0.084207147359848,-0.277921944856644,-0.956905722618103,-0.0103929461911321,0.127128303050995,-0.99183189868927,-0.520054161548615,-0.30253940820694,-0.798757493495941,-0.813411951065063,-0.00597939267754555,-0.581657350063324,-0.628455579280853,0.0140225039795041,-0.777719080448151,-0.530945479869843,-0.0873803645372391,-0.84288877248764,-0.556850135326386,-0.0199885033071041,-0.830372393131256,0.600345611572266,-0.601982831954956,-0.526499569416046,-0.672612130641937,-0.545386373996735,0.500146627426147,-0.520054161548615,-0.30253940820694,-0.798757493495941,-0.555240571498871,-0.21980194747448,-0.802119135856628,-0.672612130641937,-0.545386373996735,0.500146627426147,-0.0578846074640751,-0.9983149766922,-0.00409018015488982,-0.813411951065063,-0.00597939267754555,-0.581657350063324,-0.520054161548615,-0.30253940820694,-0.798757493495941,-0.306538432836533,-0.0246661510318518,-0.951538622379303,-0.294993430376053,0.0882223099470139,-0.951417744159698,-0.310149073600769,0.0382208824157715,-0.94991934299469,-0.21345691382885,0.319910526275635,-0.92308908700943,-0.126489207148552,-0.0111886709928513,-0.991904854774475,
- -0.189954802393913,-0.10111453384161,-0.976572096347809,-0.175667718052864,0.300484478473663,-0.937470018863678,-0.313555151224136,0.0325860008597374,-0.949010729789734,0.0509109161794186,-0.417636424303055,-0.90718686580658,-0.50585663318634,-0.161954939365387,-0.847277820110321,-0.305626928806305,-0.065802201628685,-0.949874818325043,-0.205918252468109,-0.150446251034737,-0.966935098171234,-0.294993430376053,0.0882223099470139,-0.951417744159698,-0.126489207148552,-0.0111886709928513,-0.991904854774475,-0.313555151224136,0.0325860008597374,-0.949010729789734,-0.310149073600769,0.0382208824157715,-0.94991934299469,-0.0934961885213852,0.00094405998243019,-0.995619177818298,-0.313547551631927,-0.056244008243084,-0.947905302047729,-0.50585663318634,-0.161954939365387,-0.847277820110321,0.0509109161794186,-0.417636424303055,-0.90718686580658,-0.788493096828461,-0.0308981500566006,-0.614266932010651,-0.38418510556221,-0.295119732618332,-0.874817788600922,-0.649103999137878,-0.421319603919983,-0.633366942405701,-0.38418510556221,-0.295119732618332,-0.874817788600922,-0.902318298816681,-0.0457661226391792,-0.428633987903595,-0.649103999137878,-0.421319603919983,-0.633366942405701,-0.773783087730408,-0.0929465666413307,-0.626594543457031,-0.402922362089157,-0.886439383029938,-0.227769285440445,-0.450313746929169,0.030193317681551,-0.892359733581543,-0.900916755199432,-0.02527691796422,-0.433255404233933,-0.307319462299347,0.231226071715355,-0.923086822032928,-0.228092685341835,-0.457761198282242,-0.859318614006042,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.57920378446579,-0.173686042428017,-0.796464860439301,-0.298327893018723,-0.0127496235072613,-0.954378306865692,-0.788493096828461,-0.0308981500566006,-0.614266932010651,-0.225827187299728,-0.364571154117584,-0.903377056121826,-0.145529106259346,-0.180047914385796,-0.972832977771759,-0.115304909646511,-0.213271453976631,-0.970164895057678,0.232736185193062,-0.0890472009778023,-0.968454658985138,
- 0.814594030380249,0.407498300075531,0.412773221731186,-0.117676623165607,0.985447108745575,-0.122662514448166,-0.520358622074127,-0.135411635041237,-0.843143224716187,-0.232738673686981,-0.048393864184618,-0.971334457397461,-0.278435081243515,-0.0283012744039297,-0.96003794670105,-0.536262929439545,0.00300282705575228,-0.844045698642731,-0.194885224103928,-0.107209399342537,-0.974949240684509,-0.194885224103928,-0.107209399342537,-0.974949240684509,-0.20733517408371,-0.0727555304765701,-0.975560665130615,-0.232738673686981,-0.048393864184618,-0.971334457397461,0.0439450182020664,0.631100952625275,-0.774454951286316,0.457389861345291,0.555995166301727,-0.694020092487335,0.2189611941576,0.037572342902422,-0.975009858608246,-0.0499827899038792,0.575583636760712,-0.81621390581131,0.123383618891239,0.630682587623596,-0.766169607639313,-0.20357283949852,-0.6695916056633,-0.714286386966705,0.0133517952635884,0.770367205142975,-0.637460589408875,-0.456470638513565,0.0357507467269897,-0.889019966125488,-0.313979119062424,0.656027317047119,-0.686327397823334,0.0439450182020664,0.631100952625275,-0.774454951286316,-0.0499827899038792,0.575583636760712,-0.81621390581131,0.0304107572883368,0.183287352323532,-0.982588946819305,0.457389861345291,0.555995166301727,-0.694020092487335,0.123383618891239,0.630682587623596,-0.766169607639313,-0.456470638513565,0.0357507467269897,-0.889019966125488,0.2189611941576,0.037572342902422,-0.975009858608246,-0.239173024892807,0.766737639904022,-0.595743000507355,-0.136996984481812,0.613490104675293,-0.777728617191315,-0.445239394903183,-0.00191067100968212,-0.89540958404541,-0.672978103160858,-0.131782829761505,-0.727828145027161,-0.017885522916913,0.613334000110626,-0.789621114730835,-0.313979119062424,0.656027317047119,-0.686327397823334,0.0304107572883368,0.183287352323532,-0.982588946819305,0.561690807342529,0.00880198087543249,-0.827300369739532,-0.672978103160858,-0.131782829761505,-0.727828145027161,-0.0711293816566467,0.296923667192459,-0.952248334884644,0.0911083966493607,0.555017292499542,-0.826834380626678,
- -0.239173024892807,0.766737639904022,-0.595743000507355,-0.0378159135580063,-0.151248618960381,-0.987772107124329,0.135778740048409,-0.290748089551926,-0.947116434574127,0.1164306178689,0.0530256889760494,-0.991782307624817,-0.0196815896779299,0.350315183401108,-0.936425149440765,0.0798656791448593,-0.265407025814056,-0.960822880268097,0.0500786975026131,-0.236458733677864,-0.97035014629364,-0.00883200578391552,0.154449984431267,-0.987961173057556,-0.104323171079159,0.0212715100497007,-0.994315922260284,0.0060329963453114,-0.0899111479520798,-0.995931446552277,-0.0137640871107578,-0.212861508131027,-0.976985394954681,-0.0378159135580063,-0.151248618960381,-0.987772107124329,-0.0196815896779299,0.350315183401108,-0.936425149440765,-0.104323171079159,0.0212715100497007,-0.994315922260284,0.0865610241889954,-0.314519494771957,-0.945296108722687,0.0798656791448593,-0.265407025814056,-0.960822880268097,0.220430359244347,-0.010889352299273,-0.97534191608429,-0.264167696237564,-0.0153890140354633,-0.964354038238525,-0.0431363098323345,-0.203940764069557,-0.978032350540161,0.0144069837406278,-0.209126472473145,-0.977782428264618,0.220430359244347,-0.010889352299273,-0.97534191608429,0.0060329963453114,-0.0899111479520798,-0.995931446552277,-0.0228999778628349,0.40323194861412,-0.914811193943024,-0.392409235239029,0.00530861504375935,-0.919775426387787,-0.236225351691246,0.00116191210690886,-0.971697568893433,-0.0380535945296288,-0.0434324853122234,-0.998331367969513,-0.672978103160858,-0.131782829761505,-0.727828145027161,-0.0380535945296288,-0.0434324853122234,-0.998331367969513,-0.0711293816566467,0.296923667192459,-0.952248334884644,-0.672978103160858,-0.131782829761505,-0.727828145027161,0.195563822984695,-0.0532869957387447,-0.979242205619812,-0.0446229055523872,-0.428831785917282,-0.902281582355499,0.0500786975026131,-0.236458733677864,-0.97035014629364,0.0798656791448593,-0.265407025814056,-0.960822880268097,0.0865610241889954,-0.314519494771957,-0.945296108722687,0.195563822984695,-0.0532869957387447,-0.979242205619812,
- 0.0798656791448593,-0.265407025814056,-0.960822880268097,-0.0077410601079464,-0.440434247255325,-0.89775151014328,-0.140866979956627,-0.111536085605621,-0.983725726604462,0.135778740048409,-0.290748089551926,-0.947116434574127,-0.0378159135580063,-0.151248618960381,-0.987772107124329,-0.0569574609398842,-0.115453086793423,-0.991678595542908,-0.0077410601079464,-0.440434247255325,-0.89775151014328,-0.0378159135580063,-0.151248618960381,-0.987772107124329,-0.0137640871107578,-0.212861508131027,-0.976985394954681,0.561690807342529,0.00880198087543249,-0.827300369739532,0.0304107572883368,0.183287352323532,-0.982588946819305,-0.0569574609398842,-0.115453086793423,-0.991678595542908,-0.275064736604691,-0.0080383662134409,-0.961392104625702,-0.672978103160858,-0.131782829761505,-0.727828145027161,-0.445239394903183,-0.00191067100968212,-0.89540958404541,-0.236225351691246,0.00116191210690886,-0.971697568893433,-0.239173024892807,0.766737639904022,-0.595743000507355,0.0911083966493607,0.555017292499542,-0.826834380626678,-0.14835587143898,0.413364350795746,-0.898398816585541,0.586226105690002,0.532821834087372,-0.61027854681015,0.45327615737915,-0.00880654808133841,-0.891326665878296,-0.176497012376785,-0.517509281635284,-0.837277173995972,-0.20357283949852,-0.6695916056633,-0.714286386966705,0.997714757919312,-0.0671921670436859,-0.00710586085915565,-0.472203731536865,-0.0243202149868011,-0.88115394115448,0.45327615737915,-0.00880654808133841,-0.891326665878296,0.123383618891239,0.630682587623596,-0.766169607639313,-0.94072163105011,-0.16120257973671,0.29842346906662,-0.211184680461884,-0.179323196411133,-0.960855960845947,-0.472203731536865,-0.0243202149868011,-0.88115394115448,-0.94072163105011,-0.16120257973671,0.29842346906662,0.0439450182020664,0.631100952625275,-0.774454951286316,-0.169135868549347,0.450924277305603,-0.87639045715332,-0.211184680461884,-0.179323196411133,-0.960855960845947,0.0439450182020664,0.631100952625275,-0.774454951286316,-0.313979119062424,0.656027317047119,-0.686327397823334,-0.59540730714798,0.0250035300850868,-0.803034842014313,
- -0.169135868549347,0.450924277305603,-0.87639045715332,-0.313979119062424,0.656027317047119,-0.686327397823334,-0.017885522916913,0.613334000110626,-0.789621114730835,0.586226105690002,0.532821834087372,-0.61027854681015,0.162604227662086,0.0295851230621338,-0.986247718334198,-0.136996984481812,0.613490104675293,-0.777728617191315,-0.239173024892807,0.766737639904022,-0.595743000507355,0.586226105690002,0.532821834087372,-0.61027854681015,-0.183877930045128,0.17031717300415,-0.968081057071686,0.121323674917221,0.00633529992774129,-0.992592811584473,0.586226105690002,0.532821834087372,-0.61027854681015,-0.14835587143898,0.413364350795746,-0.898398816585541,-0.183877930045128,0.17031717300415,-0.968081057071686,0.0509109161794186,-0.417636424303055,-0.90718686580658,-0.205918252468109,-0.150446251034737,-0.966935098171234,-0.0934961885213852,0.00094405998243019,-0.995619177818298,0.121323674917221,0.00633529992774129,-0.992592811584473,0.162604227662086,0.0295851230621338,-0.986247718334198,0.586226105690002,0.532821834087372,-0.61027854681015,-0.359480977058411,0.0904247835278511,-0.928760886192322,-0.100439757108688,-0.0227108038961887,-0.994683980941772,-0.278435081243515,-0.0283012744039297,-0.96003794670105,-0.232738673686981,-0.048393864184618,-0.971334457397461,-0.20733517408371,-0.0727555304765701,-0.975560665130615,-0.359480977058411,0.0904247835278511,-0.928760886192322,-0.232738673686981,-0.048393864184618,-0.971334457397461,-0.900916755199432,-0.02527691796422,-0.433255404233933,-0.450313746929169,0.030193317681551,-0.892359733581543,-0.326651602983475,-0.532699227333069,-0.780724167823792,-0.178455322980881,-0.0564128421247005,-0.982329547405243,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.298327893018723,-0.0127496235072613,-0.954378306865692,-0.297409683465958,-0.0226951949298382,-0.954480111598969,-0.297409683465958,-0.0226951949298382,-0.954480111598969,-0.374849766492844,-0.0279733967036009,-0.926663458347321,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.805299520492554,-0.011952324770391,-0.592747747898102,
- -0.372632056474686,-0.05988410115242,-0.926044940948486,-0.305626928806305,-0.065802201628685,-0.949874818325043,-0.50585663318634,-0.161954939365387,-0.847277820110321,-0.372354388237,-0.0199744645506144,-0.927875697612762,-0.372632056474686,-0.05988410115242,-0.926044940948486,-0.805299520492554,-0.011952324770391,-0.592747747898102,-0.372354388237,-0.0199744645506144,-0.927875697612762,-0.805299520492554,-0.011952324770391,-0.592747747898102,-0.50585663318634,-0.161954939365387,-0.847277820110321,-0.313547551631927,-0.056244008243084,-0.947905302047729,0.124442420899868,0.0179398395121098,-0.992064654827118,-0.519173979759216,-0.1963831782341,-0.831800401210785,-0.402922362089157,-0.886439383029938,-0.227769285440445,0.688789784908295,-0.020826505497098,-0.724661886692047,-0.228092685341835,-0.457761198282242,-0.859318614006042,-0.574955105781555,-0.364985197782516,-0.73226535320282,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.737959623336792,-0.0927175581455231,-0.668445229530334,-0.57920378446579,-0.173686042428017,-0.796464860439301,0.279643386602402,0.172248661518097,-0.944526255130768,-0.196412533521652,0.0329460166394711,-0.979967653751373,-0.225827187299728,-0.364571154117584,-0.903377056121826,-0.649103999137878,-0.421319603919983,-0.633366942405701,-0.136436641216278,0.00282881292514503,-0.990644693374634,-0.541165232658386,0.0365498699247837,-0.840121567249298,-0.520054161548615,-0.30253940820694,-0.798757493495941,-0.628455579280853,0.0140225039795041,-0.777719080448151,-0.541165232658386,0.0365498699247837,-0.840121567249298,-0.520358622074127,-0.135411635041237,-0.843143224716187,-0.580192744731903,-0.0552427731454372,-0.812603652477264,-0.555240571498871,-0.21980194747448,-0.802119135856628,-0.520054161548615,-0.30253940820694,-0.798757493495941,0.0144069837406278,-0.209126472473145,-0.977782428264618,-0.275064736604691,-0.0080383662134409,-0.961392104625702,-0.0575786679983139,-0.173319399356842,-0.983181118965149,-0.0099338898435235,-0.0438199080526829,-0.998990058898926,
- 0.304919302463531,-0.00806182716041803,-0.952344000339508,-0.0431363098323345,-0.203940764069557,-0.978032350540161,0.0346832312643528,-0.178130716085434,-0.983395338058472,-0.0373943783342838,-0.312677651643753,-0.949122965335846,0.084207147359848,-0.277921944856644,-0.956905722618103,0.0505265109241009,-0.236008182168007,-0.970436632633209,0.0911083966493607,0.555017292499542,-0.826834380626678,-0.0711293816566467,0.296923667192459,-0.952248334884644,-0.00811316259205341,0.591502070426941,-0.806262671947479,-0.180940985679626,0.501155316829681,-0.846229135990143,-0.14835587143898,0.413364350795746,-0.898398816585541,0.0911083966493607,0.555017292499542,-0.826834380626678,-0.180940985679626,0.501155316829681,-0.846229135990143,-0.178591176867485,-0.329138100147247,-0.927239656448364,-0.136996984481812,0.613490104675293,-0.777728617191315,0.162604227662086,0.0295851230621338,-0.986247718334198,-0.59540730714798,0.0250035300850868,-0.803034842014313,-0.017885522916913,0.613334000110626,-0.789621114730835,-0.445239394903183,-0.00191067100968212,-0.89540958404541,-0.136996984481812,0.613490104675293,-0.777728617191315,-0.017885522916913,0.613334000110626,-0.789621114730835,0.561690807342529,0.00880198087543249,-0.827300369739532,-0.278435081243515,-0.0283012744039297,-0.96003794670105,-0.100439757108688,-0.0227108038961887,-0.994683980941772,-0.301299542188644,-0.0507703796029091,-0.952176988124847,-0.307168334722519,-0.041118711233139,-0.950766503810883,-0.373892217874527,-0.142028406262398,-0.916532874107361,-0.372632056474686,-0.05988410115242,-0.926044940948486,-0.372354388237,-0.0199744645506144,-0.927875697612762,-0.374849766492844,-0.0279733967036009,-0.926663458347321,-0.307319462299347,0.231226071715355,-0.923086822032928,-0.490899682044983,-0.0816164761781693,-0.867384731769562,-0.305626928806305,-0.065802201628685,-0.949874818325043,-0.306538432836533,-0.0246661510318518,-0.951538622379303,-0.21345691382885,0.319910526275635,-0.92308908700943,-0.205918252468109,-0.150446251034737,-0.966935098171234,-0.0934961885213852,0.00094405998243019,-0.995619177818298,
- -0.205918252468109,-0.150446251034737,-0.966935098171234,-0.169135868549347,0.450924277305603,-0.87639045715332,-0.59540730714798,0.0250035300850868,-0.803034842014313,-0.301299542188644,-0.0507703796029091,-0.952176988124847,-0.536262929439545,0.00300282705575228,-0.844045698642731,-0.278435081243515,-0.0283012744039297,-0.96003794670105,0.220430359244347,-0.010889352299273,-0.97534191608429,0.0144069837406278,-0.209126472473145,-0.977782428264618,-0.0575786679983139,-0.173319399356842,-0.983181118965149,-0.0575786679983139,-0.173319399356842,-0.983181118965149,-0.063119038939476,-0.299582034349442,-0.951980412006378,0.0060329963453114,-0.0899111479520798,-0.995931446552277,0.220430359244347,-0.010889352299273,-0.97534191608429,-0.063119038939476,-0.299582034349442,-0.951980412006378,-0.0137640871107578,-0.212861508131027,-0.976985394954681,0.0060329963453114,-0.0899111479520798,-0.995931446552277,-0.0569574609398842,-0.115453086793423,-0.991678595542908,-0.0137640871107578,-0.212861508131027,-0.976985394954681,-0.063119038939476,-0.299582034349442,-0.951980412006378,-0.275064736604691,-0.0080383662134409,-0.961392104625702,-0.0569574609398842,-0.115453086793423,-0.991678595542908,-0.063119038939476,-0.299582034349442,-0.951980412006378,-0.0575786679983139,-0.173319399356842,-0.983181118965149,0.0144069837406278,-0.209126472473145,-0.977782428264618,-0.0431363098323345,-0.203940764069557,-0.978032350540161,0.304919302463531,-0.00806182716041803,-0.952344000339508,-0.275064736604691,-0.0080383662134409,-0.961392104625702,-0.145529106259346,-0.180047914385796,-0.972832977771759,-0.793153524398804,0.0344467423856258,-0.60804682970047,-0.398084074258804,-0.0859287083148956,-0.91331559419632,-0.115304909646511,-0.213271453976631,-0.970164895057678,-0.145529106259346,-0.180047914385796,-0.972832977771759,-0.398084074258804,-0.0859287083148956,-0.91331559419632,-0.307168334722519,-0.041118711233139,-0.950766503810883,-0.115304909646511,-0.213271453976631,-0.970164895057678,-0.398084074258804,-0.0859287083148956,-0.91331559419632,
- -0.398084074258804,-0.0859287083148956,-0.91331559419632,-0.449261665344238,-0.0435857027769089,-0.892336487770081,-0.373892217874527,-0.142028406262398,-0.916532874107361,-0.307168334722519,-0.041118711233139,-0.950766503810883,-0.266287922859192,-0.090281181037426,-0.959656238555908,-0.373892217874527,-0.142028406262398,-0.916532874107361,-0.449261665344238,-0.0435857027769089,-0.892336487770081,-0.449261665344238,-0.0435857027769089,-0.892336487770081,-0.329679846763611,-0.575102925300598,-0.748710632324219,-0.266287922859192,-0.090281181037426,-0.959656238555908,-0.449261665344238,-0.0435857027769089,-0.892336487770081,-0.613184094429016,-0.296483486890793,-0.732190370559692,-0.329679846763611,-0.575102925300598,-0.748710632324219,-0.535837292671204,0.0942384228110313,-0.839045643806458,-0.613184094429016,-0.296483486890793,-0.732190370559692,-0.449261665344238,-0.0435857027769089,-0.892336487770081,-0.581155121326447,0.0137509871274233,-0.813676595687866,-0.535837292671204,0.0942384228110313,-0.839045643806458,-0.449261665344238,-0.0435857027769089,-0.892336487770081,-0.398084074258804,-0.0859287083148956,-0.91331559419632,-0.793153524398804,0.0344467423856258,-0.60804682970047,-0.581155121326447,0.0137509871274233,-0.813676595687866,-0.398084074258804,-0.0859287083148956,-0.91331559419632,-0.136436641216278,0.00282881292514503,-0.990644693374634,-0.196412533521652,0.0329460166394711,-0.979967653751373,0.279643386602402,0.172248661518097,-0.944526255130768,0.279643386602402,0.172248661518097,-0.944526255130768,-0.541165232658386,0.0365498699247837,-0.840121567249298,-0.136436641216278,0.00282881292514503,-0.990644693374634,0.279643386602402,0.172248661518097,-0.944526255130768,0.212456732988358,0.129408001899719,-0.968563675880432,-0.541165232658386,0.0365498699247837,-0.840121567249298,-0.649103999137878,-0.421319603919983,-0.633366942405701,-0.902318298816681,-0.0457661226391792,-0.428633987903595,0.212456732988358,0.129408001899719,-0.968563675880432,0.279643386602402,0.172248661518097,-0.944526255130768,-0.225827187299728,-0.364571154117584,-0.903377056121826,
- -0.196412533521652,0.0329460166394711,-0.979967653751373,-0.793153524398804,0.0344467423856258,-0.60804682970047,-0.145529106259346,-0.180047914385796,-0.972832977771759,-0.649103999137878,-0.421319603919983,-0.633366942405701,-0.225827187299728,-0.364571154117584,-0.903377056121826,-0.788493096828461,-0.0308981500566006,-0.614266932010651,-0.38418510556221,-0.295119732618332,-0.874817788600922,-0.455949664115906,-0.144008636474609,-0.878277540206909,-0.825906217098236,0.106477975845337,-0.553661823272705,-0.902318298816681,-0.0457661226391792,-0.428633987903595,-0.0103929461911321,0.127128303050995,-0.99183189868927,0.084207147359848,-0.277921944856644,-0.956905722618103,0.0346832312643528,-0.178130716085434,-0.983395338058472,0.000253288104431704,-0.314638823270798,-0.949211478233337,-0.104323171079159,0.0212715100497007,-0.994315922260284,-0.00883200578391552,0.154449984431267,-0.987961173057556,-0.00109956180676818,-0.300324112176895,-0.953836560249329,-0.180497273802757,-0.0270957816392183,-0.983202219009399,0.135778740048409,-0.290748089551926,-0.947116434574127,0.0865610241889954,-0.314519494771957,-0.945296108722687,-0.104323171079159,0.0212715100497007,-0.994315922260284,0.1164306178689,0.0530256889760494,-0.991782307624817,-0.140866979956627,-0.111536085605621,-0.983725726604462,0.195563822984695,-0.0532869957387447,-0.979242205619812,0.0865610241889954,-0.314519494771957,-0.945296108722687,0.135778740048409,-0.290748089551926,-0.947116434574127,-0.456470638513565,0.0357507467269897,-0.889019966125488,0.0133517952635884,0.770367205142975,-0.637460589408875,-0.0446229055523872,-0.428831785917282,-0.902281582355499,0.195563822984695,-0.0532869957387447,-0.979242205619812,-0.0373943783342838,-0.312677651643753,-0.949122965335846,-0.0099338898435235,-0.0438199080526829,-0.998990058898926,0.0346832312643528,-0.178130716085434,-0.983395338058472,0.084207147359848,-0.277921944856644,-0.956905722618103,-0.0934961885213852,0.00094405998243019,-0.995619177818298,-0.536262929439545,0.00300282705575228,-0.844045698642731,
- -0.301299542188644,-0.0507703796029091,-0.952176988124847,-0.313547551631927,-0.056244008243084,-0.947905302047729,-0.194885224103928,-0.107209399342537,-0.974949240684509,-0.536262929439545,0.00300282705575228,-0.844045698642731,0.121323674917221,0.00633529992774129,-0.992592811584473,-0.183877930045128,0.17031717300415,-0.968081057071686,-0.189960837364197,-0.100802958011627,-0.976603150367737,-0.20733517408371,-0.0727555304765701,-0.975560665130615,-0.194885224103928,-0.107209399342537,-0.974949240684509,-0.196569114923477,0.129007905721664,-0.971965909004211,-0.359480977058411,0.0904247835278511,-0.928760886192322,-0.351567357778549,-0.24069906771183,-0.904690146446228,-0.455949664115906,-0.144008636474609,-0.878277540206909,-0.38418510556221,-0.295119732618332,-0.874817788600922,-0.38418510556221,-0.295119732618332,-0.874817788600922,-0.788493096828461,-0.0308981500566006,-0.614266932010651,-0.100439757108688,-0.0227108038961887,-0.994683980941772,-0.359480977058411,0.0904247835278511,-0.928760886192322,-0.307168334722519,-0.041118711233139,-0.950766503810883,-0.788493096828461,-0.0308981500566006,-0.614266932010651,-0.115304909646511,-0.213271453976631,-0.970164895057678,-0.525473117828369,0.157716527581215,-0.836064279079437,-0.541309714317322,-0.052577693015337,-0.83917772769928,-0.535837292671204,0.0942384228110313,-0.839045643806458,-0.530945479869843,-0.0873803645372391,-0.84288877248764,-0.525473117828369,0.157716527581215,-0.836064279079437,-0.522701144218445,0.0234800428152084,-0.852192580699921,-0.613747835159302,-0.000902523985132575,-0.78950172662735,-0.541309714317322,-0.052577693015337,-0.83917772769928,-0.522701144218445,0.0234800428152084,-0.852192580699921,-0.703859031200409,0.0123129608109593,-0.7102330327034,0.124442420899868,0.0179398395121098,-0.992064654827118,-0.613747835159302,-0.000902523985132575,-0.78950172662735,-0.57920378446579,-0.173686042428017,-0.796464860439301,-0.737959623336792,-0.0927175581455231,-0.668445229530334,0.124442420899868,0.0179398395121098,-0.992064654827118,-0.773783087730408,-0.0929465666413307,-0.626594543457031,
- -0.298327893018723,-0.0127496235072613,-0.954378306865692,-0.57920378446579,-0.173686042428017,-0.796464860439301,-0.773783087730408,-0.0929465666413307,-0.626594543457031,-0.900916755199432,-0.02527691796422,-0.433255404233933,-0.297409683465958,-0.0226951949298382,-0.954480111598969,-0.298327893018723,-0.0127496235072613,-0.954378306865692,-0.900916755199432,-0.02527691796422,-0.433255404233933,-0.178455322980881,-0.0564128421247005,-0.982329547405243,-0.189067915081978,-0.0799802541732788,-0.978701412677765,-0.189067915081978,-0.0799802541732788,-0.978701412677765,-0.283482581377029,-0.495110720396042,-0.821281373500824,-0.374849766492844,-0.0279733967036009,-0.926663458347321,-0.297409683465958,-0.0226951949298382,-0.954480111598969,-0.374849766492844,-0.0279733967036009,-0.926663458347321,-0.373892217874527,-0.142028406262398,-0.916532874107361,-0.266287922859192,-0.090281181037426,-0.959656238555908,-0.307319462299347,0.231226071715355,-0.923086822032928,-0.266287922859192,-0.090281181037426,-0.959656238555908,-0.329679846763611,-0.575102925300598,-0.748710632324219,-0.228092685341835,-0.457761198282242,-0.859318614006042,-0.307319462299347,0.231226071715355,-0.923086822032928,-0.329679846763611,-0.575102925300598,-0.748710632324219,-0.613184094429016,-0.296483486890793,-0.732190370559692,-0.574955105781555,-0.364985197782516,-0.73226535320282,-0.228092685341835,-0.457761198282242,-0.859318614006042,-0.177560076117516,0.0272475145757198,-0.983732581138611,-0.264167696237564,-0.0153890140354633,-0.964354038238525,0.220430359244347,-0.010889352299273,-0.97534191608429,-0.392409235239029,0.00530861504375935,-0.919775426387787,0.000253288104431704,-0.314638823270798,-0.949211478233337,-0.264167696237564,-0.0153890140354633,-0.964354038238525,-0.177560076117516,0.0272475145757198,-0.983732581138611,0.00418237037956715,0.217812389135361,-0.975981712341309,-0.0103929461911321,0.127128303050995,-0.99183189868927,0.000253288104431704,-0.314638823270798,-0.949211478233337,0.00418237037956715,0.217812389135361,-0.975981712341309,
- 0.0103706987574697,-0.0583846382796764,-0.998240292072296,-0.00811316259205341,0.591502070426941,-0.806262671947479,-0.0711293816566467,0.296923667192459,-0.952248334884644,-0.0380535945296288,-0.0434324853122234,-0.998331367969513,-0.0099338898435235,-0.0438199080526829,-0.998990058898926,-0.0373943783342838,-0.312677651643753,-0.949122965335846,-0.0380535945296288,-0.0434324853122234,-0.998331367969513,-0.236225351691246,0.00116191210690886,-0.971697568893433,0.304919302463531,-0.00806182716041803,-0.952344000339508,-0.0099338898435235,-0.0438199080526829,-0.998990058898926,-0.275064736604691,-0.0080383662134409,-0.961392104625702,0.304919302463531,-0.00806182716041803,-0.952344000339508,-0.236225351691246,0.00116191210690886,-0.971697568893433,-0.445239394903183,-0.00191067100968212,-0.89540958404541,0.561690807342529,0.00880198087543249,-0.827300369739532,-0.196569114923477,0.129007905721664,-0.971965909004211,-0.194885224103928,-0.107209399342537,-0.974949240684509,-0.183877930045128,0.17031717300415,-0.968081057071686,-0.14835587143898,0.413364350795746,-0.898398816585541,-0.178591176867485,-0.329138100147247,-0.927239656448364,-0.313555151224136,0.0325860008597374,-0.949010729789734,-0.175667718052864,0.300484478473663,-0.937470018863678,-0.176497012376785,-0.517509281635284,-0.837277173995972,0.45327615737915,-0.00880654808133841,-0.891326665878296,-0.310149073600769,0.0382208824157715,-0.94991934299469,-0.313555151224136,0.0325860008597374,-0.949010729789734,0.45327615737915,-0.00880654808133841,-0.891326665878296,-0.472203731536865,-0.0243202149868011,-0.88115394115448,-0.21345691382885,0.319910526275635,-0.92308908700943,-0.310149073600769,0.0382208824157715,-0.94991934299469,-0.472203731536865,-0.0243202149868011,-0.88115394115448,-0.211184680461884,-0.179323196411133,-0.960855960845947,-0.205918252468109,-0.150446251034737,-0.966935098171234,-0.21345691382885,0.319910526275635,-0.92308908700943,-0.211184680461884,-0.179323196411133,-0.960855960845947,-0.169135868549347,0.450924277305603,-0.87639045715332,
- -0.372632056474686,-0.05988410115242,-0.926044940948486,-0.373892217874527,-0.142028406262398,-0.916532874107361,-0.374849766492844,-0.0279733967036009,-0.926663458347321,-0.283482581377029,-0.495110720396042,-0.821281373500824,-0.372354388237,-0.0199744645506144,-0.927875697612762,-0.100439757108688,-0.0227108038961887,-0.994683980941772,-0.788493096828461,-0.0308981500566006,-0.614266932010651,-0.307168334722519,-0.041118711233139,-0.950766503810883,-0.301299542188644,-0.0507703796029091,-0.952176988124847,-0.100439757108688,-0.0227108038961887,-0.994683980941772,-0.372354388237,-0.0199744645506144,-0.927875697612762,-0.313547551631927,-0.056244008243084,-0.947905302047729,-0.189960837364197,-0.100802958011627,-0.976603150367737,-0.351567357778549,-0.24069906771183,-0.904690146446228,-0.359480977058411,0.0904247835278511,-0.928760886192322,-0.20733517408371,-0.0727555304765701,-0.975560665130615,-0.178455322980881,-0.0564128421247005,-0.982329547405243,-0.326651602983475,-0.532699227333069,-0.780724167823792,-0.189954802393913,-0.10111453384161,-0.976572096347809,-0.126489207148552,-0.0111886709928513,-0.991904854774475,-0.189067915081978,-0.0799802541732788,-0.978701412677765,-0.178455322980881,-0.0564128421247005,-0.982329547405243,-0.126489207148552,-0.0111886709928513,-0.991904854774475,-0.294993430376053,0.0882223099470139,-0.951417744159698,-0.306538432836533,-0.0246661510318518,-0.951538622379303,-0.283482581377029,-0.495110720396042,-0.821281373500824,-0.189067915081978,-0.0799802541732788,-0.978701412677765,-0.294993430376053,0.0882223099470139,-0.951417744159698,-0.372632056474686,-0.05988410115242,-0.926044940948486,-0.283482581377029,-0.495110720396042,-0.821281373500824,-0.306538432836533,-0.0246661510318518,-0.951538622379303,-0.305626928806305,-0.065802201628685,-0.949874818325043,0.121323674917221,0.00633529992774129,-0.992592811584473,-0.536262929439545,0.00300282705575228,-0.844045698642731,-0.0934961885213852,0.00094405998243019,-0.995619177818298,-0.59540730714798,0.0250035300850868,-0.803034842014313,
- 0.162604227662086,0.0295851230621338,-0.986247718334198,-0.136436641216278,0.00282881292514503,-0.990644693374634,-0.581155121326447,0.0137509871274233,-0.813676595687866,-0.793153524398804,0.0344467423856258,-0.60804682970047,-0.196412533521652,0.0329460166394711,-0.979967653751373,-0.541165232658386,0.0365498699247837,-0.840121567249298,0.212456732988358,0.129408001899719,-0.968563675880432,-0.520358622074127,-0.135411635041237,-0.843143224716187,-0.613747835159302,-0.000902523985132575,-0.78950172662735,0.124442420899868,0.0179398395121098,-0.992064654827118,-0.737959623336792,-0.0927175581455231,-0.668445229530334,-0.535837292671204,0.0942384228110313,-0.839045643806458,-0.541309714317322,-0.052577693015337,-0.83917772769928,-0.574955105781555,-0.364985197782516,-0.73226535320282,-0.613184094429016,-0.296483486890793,-0.732190370559692,0.1164306178689,0.0530256889760494,-0.991782307624817,-0.104323171079159,0.0212715100497007,-0.994315922260284,-0.180497273802757,-0.0270957816392183,-0.983202219009399,-0.214404255151749,-0.0198485776782036,-0.976543307304382,-0.0196815896779299,0.350315183401108,-0.936425149440765,0.1164306178689,0.0530256889760494,-0.991782307624817,-0.214404255151749,-0.0198485776782036,-0.976543307304382,-0.047225583344698,-0.00371087319217622,-0.998877346515656,0.0060329963453114,-0.0899111479520798,-0.995931446552277,-0.0196815896779299,0.350315183401108,-0.936425149440765,-0.047225583344698,-0.00371087319217622,-0.998877346515656,-0.0228999778628349,0.40323194861412,-0.914811193943024,0.0304107572883368,0.183287352323532,-0.982588946819305,-0.0499827899038792,0.575583636760712,-0.81621390581131,-0.0077410601079464,-0.440434247255325,-0.89775151014328,-0.0569574609398842,-0.115453086793423,-0.991678595542908,-0.0499827899038792,0.575583636760712,-0.81621390581131,0.2189611941576,0.037572342902422,-0.975009858608246,-0.140866979956627,-0.111536085605621,-0.983725726604462,-0.0077410601079464,-0.440434247255325,-0.89775151014328,0.2189611941576,0.037572342902422,-0.975009858608246,-0.456470638513565,0.0357507467269897,-0.889019966125488,
- 0.195563822984695,-0.0532869957387447,-0.979242205619812,-0.140866979956627,-0.111536085605621,-0.983725726604462,-0.994722962379456,-3.21549180171132e-007,-0.102597631514072,-0.999986231327057,-0.00421193009242415,-0.00311643932946026,-0.999997198581696,0.000122128214570694,-0.0023670254740864,-0.993380188941956,-0.00315710320137441,-0.114830046892166,-0.966956913471222,-5.30778379470576e-007,-0.254940241575241,-0.994722962379456,-3.21549180171132e-007,-0.102597631514072,-0.993380188941956,-0.00315710320137441,-0.114830046892166,-0.966918587684631,-3.88242028748209e-007,-0.255085438489914,-0.87554657459259,2.34165185020174e-007,-0.483133792877197,-0.938134551048279,-7.46401838114252e-007,-0.346271008253098,-0.938200652599335,-6.27271788289363e-007,-0.346091657876968,-0.881798088550568,-3.90694395946412e-007,-0.471627086400986,-0.821239709854126,-2.24333888354522e-007,-0.570583343505859,-0.87554657459259,2.34165185020174e-007,-0.483133792877197,-0.881798088550568,-3.90694395946412e-007,-0.471627086400986,-0.821277499198914,4.75134875159711e-005,-0.570528924465179,-0.444444894790649,-1.32141792619223e-007,-0.895806193351746,-0.577679038047791,-2.98047098112875e-007,-0.816264092922211,-0.577798783779144,-3.24302931176135e-007,-0.816179275512695,-0.455504894256592,-2.24772506385307e-007,-0.890233278274536,-0.353481501340866,-2.28856379180797e-007,-0.935441613197327,-0.444444894790649,-1.32141792619223e-007,-0.895806193351746,-0.455504894256592,-2.24772506385307e-007,-0.890233278274536,-0.353491485118866,-1.14146573082508e-007,-0.935437738895416,0,-4.07793322665384e-007,-1,-0.0438897795975208,-1.7134129848273e-007,-0.999036371707916,-0.0428198613226414,1.62073993124068e-005,-0.999082863330841,-0.0054609919898212,0.00270083430223167,-0.99998152256012,-0.0140609266236424,0.00486447848379612,-0.999889314174652,0,-4.07793322665384e-007,-1,-0.0054609919898212,0.00270083430223167,-0.99998152256012,-0.0144224241375923,0.00729584647342563,-0.999869465827942,-0.0144231598824263,0.00378603185527027,-0.999888837337494,-0.0140609266236424,0.00486447848379612,-0.999889314174652,
- -0.0054609919898212,0.00270083430223167,-0.99998152256012,-0.256611078977585,-4.00789474497287e-007,-0.966514766216278,-0.353481501340866,-2.28856379180797e-007,-0.935441613197327,-0.353491485118866,-1.14146573082508e-007,-0.935437738895416,-0.244163706898689,1.35804873480083e-006,-0.969734132289886,-0.109706990420818,-2.01560965251701e-007,-0.993964076042175,-0.256611078977585,-4.00789474497287e-007,-0.966514766216278,-0.244163706898689,1.35804873480083e-006,-0.969734132289886,-0.111272692680359,-3.37547280651052e-005,-0.993789970874786,-0.938134551048279,-7.46401838114252e-007,-0.346271008253098,-0.966956913471222,-5.30778379470576e-007,-0.254940241575241,-0.966918587684631,-3.88242028748209e-007,-0.255085438489914,-0.938200652599335,-6.27271788289363e-007,-0.346091657876968,-0.76095712184906,-7.35770663595758e-006,-0.648802161216736,-0.821239709854126,-2.24333888354522e-007,-0.570583343505859,-0.821277499198914,4.75134875159711e-005,-0.570528924465179,-0.752004563808441,-8.11468053143471e-005,-0.659157872200012,-0.652045607566834,-3.2867870913833e-007,-0.758179843425751,-0.76095712184906,-7.35770663595758e-006,-0.648802161216736,-0.752004563808441,-8.11468053143471e-005,-0.659157872200012,-0.651576936244965,-3.31058108713478e-005,-0.758582532405853,-0.577679038047791,-2.98047098112875e-007,-0.816264092922211,-0.652045607566834,-3.2867870913833e-007,-0.758179843425751,-0.651576936244965,-3.31058108713478e-005,-0.758582532405853,-0.577798783779144,-3.24302931176135e-007,-0.816179275512695,-0.0438897795975208,-1.7134129848273e-007,-0.999036371707916,-0.109706990420818,-2.01560965251701e-007,-0.993964076042175,-0.111272692680359,-3.37547280651052e-005,-0.993789970874786,-0.0428198613226414,1.62073993124068e-005,-0.999082863330841,-0.992403924465179,0,-0.123022153973579,-0.998453140258789,0,-0.0556002333760262,-0.998453259468079,0,-0.0555992014706135,-0.996000707149506,0,-0.0893450751900673,-0.967461705207825,1.69476219724629e-008,-0.253017365932465,-0.992403924465179,0,-0.123022153973579,-0.996000707149506,0,-0.0893450751900673,
- -0.978769958019257,1.34318911548803e-008,-0.204961821436882,-0.919287741184235,1.76962977604944e-008,-0.393586158752441,-0.967461705207825,1.69476219724629e-008,-0.253017365932465,-0.978769958019257,1.34318911548803e-008,-0.204961821436882,-0.937741696834564,1.47806087369418e-008,-0.347333252429962,-0.867756426334381,-3.2754080336872e-008,-0.496989697217941,-0.919287741184235,1.76962977604944e-008,-0.393586158752441,-0.937741696834564,1.47806087369418e-008,-0.347333252429962,-0.883673369884491,-3.08509697788395e-008,-0.468104064464569,-0.81230628490448,-1.81696933054809e-008,-0.583231031894684,-0.867756426334381,-3.2754080336872e-008,-0.496989697217941,-0.883673369884491,-3.08509697788395e-008,-0.468104064464569,-0.832128703594208,-1.73208452025619e-008,-0.554582536220551,-0.75920033454895,-2.06677270853106e-008,-0.650856971740723,-0.81230628490448,-1.81696933054809e-008,-0.583231031894684,-0.832128703594208,-1.73208452025619e-008,-0.554582536220551,-0.759218573570251,-2.07382964134695e-008,-0.650835692882538,-0.75920033454895,-2.06677270853106e-008,-0.650856971740723,-0.759218573570251,-2.07382964134695e-008,-0.650835692882538,-0.671683967113495,-1.66472009510699e-008,-0.740837812423706,-0.671671807765961,-1.59153152878844e-008,-0.740848898887634,-0.534710764884949,0,-0.845035195350647,-0.671671807765961,-1.59153152878844e-008,-0.740848898887634,-0.671683967113495,-1.66472009510699e-008,-0.740837812423706,-0.575443506240845,0,-0.817841589450836,-0.433243215084076,5.84199426612031e-008,-0.9012770652771,-0.534710764884949,0,-0.845035195350647,-0.575443506240845,0,-0.817841589450836,-0.46330589056015,5.71576741492663e-008,-0.886198461055756,-0.352876991033554,1.41786937746247e-008,-0.935669779777527,-0.433243215084076,5.84199426612031e-008,-0.9012770652771,-0.46330589056015,5.71576741492663e-008,-0.886198461055756,-0.352845788002014,1.40876155185765e-008,-0.935681521892548,-0.352876991033554,1.41786937746247e-008,-0.935669779777527,-0.352845788002014,1.40876155185765e-008,-0.935681521892548,-0.253634393215179,-4.69451819640199e-008,-0.967300117015839,
- -0.253641217947006,-4.7111711865e-008,-0.967298269271851,-0.00740574905648828,0,-0.999972581863403,-0.014811092056334,0,-0.999890327453613,-0.014811092056334,0,-0.999890327453613,-0.00740574905648828,0,-0.999972581863403,-0,0,-1,-0.00740574905648828,0,-0.999972581863403,-0.00740574905648828,0,-0.999972581863403,-0,0,-1,-0.0417404286563396,4.30379536453529e-008,-0.999128520488739,-0,0,-1,-0,0,-1,-0.0204538591206074,4.42069563177938e-008,-0.999790847301483,-0.158117100596428,4.31123119426502e-008,-0.987420380115509,-0.0417404286563396,4.30379536453529e-008,-0.999128520488739,-0.0204538591206074,4.42069563177938e-008,-0.999790847301483,-0.110190838575363,4.42724719107446e-008,-0.993910431861877,-0.253634393215179,-4.69451819640199e-008,-0.967300117015839,-0.158117100596428,4.31123119426502e-008,-0.987420380115509,-0.110190838575363,4.42724719107446e-008,-0.993910431861877,-0.253641217947006,-4.7111711865e-008,-0.967298269271851,0.999815165996552,-0.0111747309565544,0.0156475808471441,0.109421603381634,-0.989413797855377,-0.0953260585665703,0.102365061640739,-0.982749342918396,0.154029741883278,0.99913889169693,-0.0122429905459285,0.0396437160670757,0.959884166717529,-0.278779655694962,0.0300699323415756,0.999815165996552,-0.0111747309565544,0.0156475808471441,0.994093954563141,0.0292903389781713,0.104494504630566,0.957449495792389,0.279038816690445,0.0736734941601753,0.0860444530844688,-0.0221158899366856,-0.996045827865601,0.990000426769257,0.139248266816139,0.0225620213896036,0.999000549316406,-0.044092521071434,0.00732946395874023,0.0749779716134071,-0.00437864987179637,-0.997175633907318,0.0749779716134071,-0.00437864987179637,-0.997175633907318,0.999000549316406,-0.044092521071434,0.00732946395874023,0.575981676578522,-0.816945374011993,-0.0290744546800852,0.0166836120188236,-0.0628450140357018,-0.997883915901184,0.0178243834525347,0.985015213489532,0.171543449163437,0.994093954563141,0.0292903389781713,0.104494504630566,0.994238317012787,0.0358878932893276,0.101005882024765,0.0179674234241247,0.999282419681549,-0.0333437211811543,
- -0.00233449670486152,-0.999733626842499,0.0229615774005651,-0.0154538685455918,-0.999830484390259,-0.0100147342309356,0.026323800906539,-0.999430239200592,0.0211214441806078,0.287175476551056,-0.957874894142151,-0.0024316122289747,0.99913889169693,-0.0122429905459285,0.0396437160670757,0.95947802066803,-0.279155164957047,0.0383984819054604,0.959128260612488,0.282873123884201,0.00746864220127463,0.994238317012787,0.0358878932893276,0.101005882024765,-0.988340079784393,-0.140849843621254,-0.0578393489122391,-0.01089798938483,0.0316246263682842,-0.999440431594849,-0.00122335448395461,0.0223609805107117,-0.99974924325943,-0.996665298938751,0.0429624207317829,-0.0693716257810593,-0.996665298938751,0.0429624207317829,-0.0693716257810593,-0.00122335448395461,0.0223609805107117,-0.99974924325943,0.0569538213312626,0.0803937613964081,-0.995134711265564,-0.576334834098816,0.81520414352417,-0.0572741627693176,-0.0141829354688525,-0.999861180782318,-0.00874394923448563,0.00101001444272697,-0.99897027015686,-0.0453595109283924,0.434562712907791,-0.900633037090302,0.00393151957541704,0.0262500140815973,-0.999577462673187,-0.0124915996566415,-0.0604485459625721,-0.997626543045044,-0.0329738631844521,0.124559804797173,-0.0300849284976721,-0.991755843162537,0.0166836120188236,-0.0628450140357018,-0.997883915901184,0.575981676578522,-0.816945374011993,-0.0290744546800852,0.998802304267883,-0.0440218225121498,-0.0213581398129463,0.026323800906539,-0.999430239200592,0.0211214441806078,0.0262500140815973,-0.999577462673187,-0.0124915996566415,0.996190965175629,-0.0442680232226849,0.0751262083649635,-0.0805245190858841,0.048694483935833,-0.995562553405762,0.0607331544160843,0.998122572898865,-0.00792800169438124,-0.576334834098816,0.81520414352417,-0.0572741627693176,0.0569538213312626,0.0803937613964081,-0.995134711265564,0.994093954563141,0.0292903389781713,0.104494504630566,0.999815165996552,-0.0111747309565544,0.0156475808471441,0.99913889169693,-0.0122429905459285,0.0396437160670757,0.994238317012787,0.0358878932893276,0.101005882024765,
- -0.0141829354688525,-0.999861180782318,-0.00874394923448563,0.0262500140815973,-0.999577462673187,-0.0124915996566415,0.026323800906539,-0.999430239200592,0.0211214441806078,-0.0154538685455918,-0.999830484390259,-0.0100147342309356,0.0569538213312626,0.0803937613964081,-0.995134711265564,-0.00122335448395461,0.0223609805107117,-0.99974924325943,0.0749779716134071,-0.00437864987179637,-0.997175633907318,0.0166836120188236,-0.0628450140357018,-0.997883915901184,0.124559804797173,-0.0300849284976721,-0.991755843162537,-0.0805245190858841,0.048694483935833,-0.995562553405762,0.0569538213312626,0.0803937613964081,-0.995134711265564,0.0166836120188236,-0.0628450140357018,-0.997883915901184,0.0860444530844688,-0.0221158899366856,-0.996045827865601,0.0749779716134071,-0.00437864987179637,-0.997175633907318,-0.00122335448395461,0.0223609805107117,-0.99974924325943,-0.01089798938483,0.0316246263682842,-0.999440431594849,-0.996262013912201,0.0514835640788078,-0.0693633332848549,-0.995962202548981,0.0568933822214603,-0.0694442465901375,-0.999975144863129,0.00260857841931283,0.0065644234418869,-0.999427556991577,0.0330786891281605,0.00710155582055449,-0.99856299161911,-0.00937843788415194,-0.0527636520564556,0.999604284763336,-0.0270503163337708,0.00772286532446742,0.999631762504578,0.00961366388946772,0.0253755133599043,0.99551784992218,-0.0428401604294777,0.0843154862523079,0.995404183864594,-0.0478664673864841,0.0829415991902351,0.999937474727631,0.0057808943092823,0.00957459956407547,0.999815165996552,-0.0111747309565544,0.0156475808471441,0.959884166717529,-0.278779655694962,0.0300699323415756,0.109421603381634,-0.989413797855377,-0.0953260585665703,0.0178243834525347,0.985015213489532,0.171543449163437,0.957449495792389,0.279038816690445,0.0736734941601753,0.994093954563141,0.0292903389781713,0.104494504630566,0.99913889169693,-0.0122429905459285,0.0396437160670757,0.102365061640739,-0.982749342918396,0.154029741883278,0.95947802066803,-0.279155164957047,0.0383984819054604,0.0179674234241247,0.999282419681549,-0.0333437211811543,
- 0.994238317012787,0.0358878932893276,0.101005882024765,0.959128260612488,0.282873123884201,0.00746864220127463,0.287175476551056,-0.957874894142151,-0.0024316122289747,0.026323800906539,-0.999430239200592,0.0211214441806078,0.998802304267883,-0.0440218225121498,-0.0213581398129463,0.996190965175629,-0.0442680232226849,0.0751262083649635,0.0262500140815973,-0.999577462673187,-0.0124915996566415,0.434562712907791,-0.900633037090302,0.00393151957541704,0.998029947280884,-0.0141382049769163,-0.0611254200339317,0.0947022587060928,-0.989798724651337,-0.106442220509052,0.113858960568905,-0.989830017089844,0.0852803364396095,0.995693206787109,-0.012580756098032,-0.0918519496917725,0.958917558193207,-0.278805673122406,-0.0523892752826214,0.998029947280884,-0.0141382049769163,-0.0611254200339317,0.999574542045593,0.0283417999744415,-0.00690344488248229,0.959928154945374,0.279844135046005,-0.0150019405409694,-0.0467788092792034,-0.0315206907689571,-0.99840784072876,0.987610936164856,0.142227202653885,-0.0663030743598938,0.995602488517761,-0.0468042232096195,-0.0811491534113884,-0.0557115152478218,-0.0105777652934194,-0.998390793800354,-0.0557115152478218,-0.0105777652934194,-0.998390793800354,0.995602488517761,-0.0468042232096195,-0.0811491534113884,0.567646682262421,-0.819979012012482,-0.0735652223229408,-0.109731659293175,-0.0682663917541504,-0.99161422252655,0.0398049093782902,0.9861860871315,0.160787120461464,0.999574542045593,0.0283417999744415,-0.00690344488248229,0.997693121433258,0.0341745242476463,-0.0586565770208836,0.0110604586079717,0.996561884880066,-0.0821116864681244,0.000192864259588532,-0.999476253986359,0.0323604121804237,-0.0158123318105936,-0.999874293804169,0.00118692906107754,0.0312758535146713,-0.998935341835022,0.0339123159646988,0.286199063062668,-0.957959651947021,-0.0200851820409298,0.995693206787109,-0.012580756098032,-0.0918519496917725,0.952246010303497,-0.278756767511368,-0.124588184058666,0.94612854719162,0.282156020402908,-0.158835202455521,0.997693121433258,0.0341745242476463,-0.0586565770208836,
- -0.982835650444031,-0.145569607615471,0.113329350948334,-0.141036406159401,0.0232982356101274,-0.989730179309845,-0.133876085281372,0.0115684606134892,-0.990930616855621,-0.993872821331024,0.0438607968389988,0.101454213261604,-0.993872821331024,0.0438607968389988,0.101454213261604,-0.133876085281372,0.0115684606134892,-0.990930616855621,-0.080964632332325,0.067717581987381,-0.994413912296295,-0.579478085041046,0.814236283302307,0.0349926985800266,-0.0145243601873517,-0.999892711639404,0.00190802151337266,-0.00578471319749951,-0.999284267425537,-0.0373828485608101,0.42975789308548,-0.900736153125763,-0.0631077364087105,0.024932874366641,-0.999387502670288,-0.0245543159544468,-0.0621610507369041,-0.997885286808014,-0.01899872161448,0.0111519331112504,-0.0390950404107571,-0.999173223972321,-0.109731659293175,-0.0682663917541504,-0.99161422252655,0.567646682262421,-0.819979012012482,-0.0735652223229408,0.992242515087128,-0.0416053161025047,-0.117148347198963,0.0312758535146713,-0.998935341835022,0.0339123159646988,0.024932874366641,-0.999387502670288,-0.0245543159544468,0.996512234210968,-0.0415671207010746,-0.0723584890365601,-0.235214531421661,0.0404336042702198,-0.971101999282837,0.0504103749990463,0.998413503170013,-0.0250858925282955,-0.579478085041046,0.814236283302307,0.0349926985800266,-0.080964632332325,0.067717581987381,-0.994413912296295,0.999574542045593,0.0283417999744415,-0.00690344488248229,0.998029947280884,-0.0141382049769163,-0.0611254200339317,0.995693206787109,-0.012580756098032,-0.0918519496917725,0.997693121433258,0.0341745242476463,-0.0586565770208836,-0.0145243601873517,-0.999892711639404,0.00190802151337266,0.024932874366641,-0.999387502670288,-0.0245543159544468,0.0312758535146713,-0.998935341835022,0.0339123159646988,-0.0158123318105936,-0.999874293804169,0.00118692906107754,-0.080964632332325,0.067717581987381,-0.994413912296295,-0.133876085281372,0.0115684606134892,-0.990930616855621,-0.0557115152478218,-0.0105777652934194,-0.998390793800354,-0.109731659293175,-0.0682663917541504,-0.99161422252655,
- 0.0111519331112504,-0.0390950404107571,-0.999173223972321,-0.235214531421661,0.0404336042702198,-0.971101999282837,-0.080964632332325,0.067717581987381,-0.994413912296295,-0.109731659293175,-0.0682663917541504,-0.99161422252655,-0.0467788092792034,-0.0315206907689571,-0.99840784072876,-0.0557115152478218,-0.0105777652934194,-0.998390793800354,-0.133876085281372,0.0115684606134892,-0.990930616855621,-0.141036406159401,0.0232982356101274,-0.989730179309845,-0.993534326553345,0.0511921122670174,0.101336076855659,-0.99322909116745,0.0565339736640453,0.101488798856735,-0.98411613702774,0.0029133572243154,0.177501901984215,-0.983518540859222,0.0334979556500912,0.177677124738693,-0.992810189723969,-0.00946559011936188,0.119325399398804,0.996348023414612,-0.0272675137966871,-0.0809136852622032,0.997960388660431,0.00942887179553509,-0.063136488199234,0.99908447265625,-0.0425122119486332,-0.00480683660134673,0.998853921890259,-0.0474517084658146,-0.00625207275152206,0.996842920780182,0.00552001409232616,-0.0792068094015121,0.998029947280884,-0.0141382049769163,-0.0611254200339317,0.958917558193207,-0.278805673122406,-0.0523892752826214,0.0947022587060928,-0.989798724651337,-0.106442220509052,0.0398049093782902,0.9861860871315,0.160787120461464,0.959928154945374,0.279844135046005,-0.0150019405409694,0.999574542045593,0.0283417999744415,-0.00690344488248229,0.995693206787109,-0.012580756098032,-0.0918519496917725,0.113858960568905,-0.989830017089844,0.0852803364396095,0.952246010303497,-0.278756767511368,-0.124588184058666,0.0110604586079717,0.996561884880066,-0.0821116864681244,0.997693121433258,0.0341745242476463,-0.0586565770208836,0.94612854719162,0.282156020402908,-0.158835202455521,0.286199063062668,-0.957959651947021,-0.0200851820409298,0.0312758535146713,-0.998935341835022,0.0339123159646988,0.992242515087128,-0.0416053161025047,-0.117148347198963,0.996512234210968,-0.0415671207010746,-0.0723584890365601,0.024932874366641,-0.999387502670288,-0.0245543159544468,0.42975789308548,-0.900736153125763,-0.0631077364087105,0.906122803688049,-0.0127729494124651,-0.422821789979935,
- 0.0623909831047058,-0.991576373577118,-0.113506332039833,0.142440959811211,-0.988137006759644,0.057409580796957,0.892569005489349,-0.0142124369740486,-0.450686722993851,0.885277926921844,-0.27783015370369,-0.372952371835709,0.906122803688049,-0.0127729494124651,-0.422821789979935,0.94942444562912,0.0282842107117176,-0.312719285488129,0.897533655166626,0.279898434877396,-0.340720146894455,-0.380514085292816,-0.0411555543541908,-0.923858940601349,0.90361762046814,0.14872770011425,-0.401690781116486,0.911902904510498,-0.0396682806313038,-0.40848445892334,-0.386549353599548,0.0135654862970114,-0.922168910503387,-0.386549353599548,0.0135654862970114,-0.922168910503387,0.911902904510498,-0.0396682806313038,-0.40848445892334,0.84697425365448,-0.375974744558334,-0.375869184732437,-0.423952162265778,-0.0300889369100332,-0.905184626579285,0.0887875109910965,0.987242162227631,0.132172510027885,0.94942444562912,0.0282842107117176,-0.312719285488129,0.91928631067276,0.0346782840788364,-0.392058849334717,-0.0211194157600403,0.995776772499084,-0.0893464982509613,0.0168605633080006,-0.998843431472778,0.0450284741818905,-0.00998519454151392,-0.999815464019775,0.0164119601249695,0.0466967597603798,-0.99833470582962,0.0338696390390396,0.270203918218613,-0.957951724529266,-0.0965313091874123,0.892569005489349,-0.0142124369740486,-0.450686722993851,0.853908777236938,-0.278965353965759,-0.43933829665184,0.833076655864716,0.282258898019791,-0.475723922252655,0.91928631067276,0.0346782840788364,-0.392058849334717,-0.884351432323456,-0.143918961286545,0.444083213806152,-0.465427935123444,0.0127661200240254,-0.884993672370911,-0.461228430271149,0.00550157716497779,-0.887264370918274,-0.899599611759186,0.0472156405448914,0.434155762195587,-0.899599611759186,0.0472156405448914,0.434155762195587,-0.461228430271149,0.00550157716497779,-0.887264370918274,-0.421954184770584,0.0524311736226082,-0.905099868774414,-0.530105769634247,0.819655478000641,0.217147037386894,-0.00843060668557882,-0.999828040599823,0.0165237095206976,-0.0126470243558288,-0.999669790267944,-0.0223710089921951,
- 0.387980163097382,-0.900583505630493,-0.196012124419212,0.0209433156996965,-0.999602258205414,-0.0188874881714582,-0.0569684617221355,-0.998133897781372,0.0219886526465416,-0.334398359060287,-0.0354512557387352,-0.941764831542969,-0.359931617975235,-0.0259595271199942,-0.932617425918579,0.10441143065691,-0.993694484233856,-0.0408590994775295,0.901923477649689,-0.0491357035934925,-0.429091691970825,0.0466967597603798,-0.99833470582962,0.0338696390390396,0.0209433156996965,-0.999602258205414,-0.0188874881714582,0.91793155670166,-0.0489573515951633,-0.393706381320953,-0.494315207004547,0.0326014384627342,-0.868671178817749,0.0416580401360989,0.997480750083923,-0.0574195086956024,-0.530105769634247,0.819655478000641,0.217147037386894,-0.421954184770584,0.0524311736226082,-0.905099868774414,0.94942444562912,0.0282842107117176,-0.312719285488129,0.906122803688049,-0.0127729494124651,-0.422821789979935,0.892569005489349,-0.0142124369740486,-0.450686722993851,0.91928631067276,0.0346782840788364,-0.392058849334717,-0.00843060668557882,-0.999828040599823,0.0165237095206976,0.0209433156996965,-0.999602258205414,-0.0188874881714582,0.0466967597603798,-0.99833470582962,0.0338696390390396,-0.00998519454151392,-0.999815464019775,0.0164119601249695,-0.421954184770584,0.0524311736226082,-0.905099868774414,-0.461228430271149,0.00550157716497779,-0.887264370918274,-0.386549353599548,0.0135654862970114,-0.922168910503387,-0.423952162265778,-0.0300889369100332,-0.905184626579285,-0.425787478685379,-0.0104057155549526,-0.904763400554657,-0.431420981884003,-0.0172325409948826,-0.901986122131348,-0.334398359060287,-0.0354512557387352,-0.941764831542969,-0.494315207004547,0.0326014384627342,-0.868671178817749,-0.421954184770584,0.0524311736226082,-0.905099868774414,-0.431420981884003,-0.0172325409948826,-0.901986122131348,-0.422364920377731,-0.0112186064943671,-0.906356453895569,-0.359931617975235,-0.0259595271199942,-0.932617425918579,-0.380514085292816,-0.0411555543541908,-0.923858940601349,-0.386549353599548,0.0135654862970114,-0.922168910503387,
- -0.461228430271149,0.00550157716497779,-0.887264370918274,-0.465427935123444,0.0127661200240254,-0.884993672370911,-0.899481892585754,0.0507198721170425,0.43400439620018,-0.899298667907715,0.0561397299170494,0.433716982603073,-0.864185690879822,0.00360864261165261,0.503160297870636,-0.863672435283661,0.033994048833847,0.50290584564209,-0.892237782478333,-0.00960563030093908,0.45146369934082,0.911503672599792,-0.0496164560317993,-0.408288151025772,0.916279017925262,0.00917832646518946,-0.400435388088226,0.939563453197479,-0.0455041341483593,-0.339337259531021,0.940245091915131,0.00523020559921861,-0.340458184480667,0.920030295848846,-0.0806947872042656,-0.383448272943497,0.920797348022461,-0.072310782968998,-0.383279949426651,0.913489282131195,-0.0435004644095898,-0.404530555009842,0.906122803688049,-0.0127729494124651,-0.422821789979935,0.885277926921844,-0.27783015370369,-0.372952371835709,0.0623909831047058,-0.991576373577118,-0.113506332039833,0.0887875109910965,0.987242162227631,0.132172510027885,0.897533655166626,0.279898434877396,-0.340720146894455,0.94942444562912,0.0282842107117176,-0.312719285488129,0.892569005489349,-0.0142124369740486,-0.450686722993851,0.142440959811211,-0.988137006759644,0.057409580796957,0.853908777236938,-0.278965353965759,-0.43933829665184,-0.0211194157600403,0.995776772499084,-0.0893464982509613,0.91928631067276,0.0346782840788364,-0.392058849334717,0.833076655864716,0.282258898019791,-0.475723922252655,0.270203918218613,-0.957951724529266,-0.0965313091874123,0.0466967597603798,-0.99833470582962,0.0338696390390396,0.901923477649689,-0.0491357035934925,-0.429091691970825,0.91793155670166,-0.0489573515951633,-0.393706381320953,0.0209433156996965,-0.999602258205414,-0.0188874881714582,0.387980163097382,-0.900583505630493,-0.196012124419212,0.770390033721924,-0.0128455637022853,-0.637443423271179,0.0273122955113649,-0.991072833538055,-0.130493596196175,0.149924248456955,-0.988563001155853,0.0163078103214502,0.751180052757263,-0.0138317421078682,-0.659952461719513,0.759702801704407,-0.278556287288666,-0.587586581707001,
- 0.770390033721924,-0.0128455637022853,-0.637443423271179,0.836876511573792,0.0272368192672729,-0.546713590621948,0.781776070594788,0.279540419578552,-0.557389736175537,-0.601315021514893,-0.0312396436929703,-0.798401176929474,0.774851262569427,0.143148705363274,-0.615722358226776,0.773224055767059,-0.0455149672925472,-0.632497370243073,-0.608978867530823,-0.0117905903607607,-0.793098866939545,-0.608978867530823,-0.0117905903607607,-0.793098866939545,0.773224055767059,-0.0455149672925472,-0.632497370243073,0.429745227098465,-0.816630005836487,-0.385271817445755,-0.648817896842957,-0.0679379776120186,-0.757904827594757,0.123002223670483,0.986281752586365,0.110084891319275,0.836876511573792,0.0272368192672729,-0.546713590621948,0.789534866809845,0.0341772586107254,-0.61275327205658,-0.0372584015130997,0.996532320976257,-0.0743988230824471,0.0192546434700489,-0.99943619966507,0.0275063049048185,-0.0124003915116191,-0.999874234199524,0.00989281479269266,0.0463962592184544,-0.998851299285889,0.0119786374270916,0.224960997700691,-0.957941174507141,-0.178160667419434,0.751180052757263,-0.0138317421078682,-0.659952461719513,0.713027536869049,-0.279015600681305,-0.643227756023407,0.688452482223511,0.282486528158188,-0.668007910251617,0.789534866809845,0.0341772586107254,-0.61275327205658,-0.744371473789215,-0.144293010234833,0.651989758014679,-0.674153506755829,0.0234311055392027,-0.738219380378723,-0.669131338596344,0.0105123175308108,-0.743069708347321,-0.760097801685333,0.045445054769516,0.648217678070068,-0.760097801685333,0.045445054769516,0.648217678070068,-0.669131338596344,0.0105123175308108,-0.743069708347321,-0.626043856143951,0.0684560686349869,-0.77677720785141,-0.45255321264267,0.818964123725891,0.352836161851883,-0.0109319789335132,-0.999892354011536,0.00979357119649649,-0.0252022817730904,-0.999327063560486,-0.0266543049365282,0.318826198577881,-0.900629818439484,-0.295323312282562,0.00793470069766045,-0.999432563781738,-0.032734602689743,-0.058331660926342,-0.998127996921539,0.0183834936469793,-0.523783981800079,-0.0403150580823421,-0.850896596908569,
- -0.648817896842957,-0.0679379776120186,-0.757904827594757,0.429745227098465,-0.816630005836487,-0.385271817445755,0.755460977554321,-0.0414821654558182,-0.653879284858704,0.0463962592184544,-0.998851299285889,0.0119786374270916,0.00793470069766045,-0.999432563781738,-0.032734602689743,0.785256147384644,-0.0417872667312622,-0.617759346961975,-0.716479599475861,0.0390314236283302,-0.696515202522278,0.0313920192420483,0.997998058795929,-0.0549057722091675,-0.45255321264267,0.818964123725891,0.352836161851883,-0.626043856143951,0.0684560686349869,-0.77677720785141,0.836876511573792,0.0272368192672729,-0.546713590621948,0.770390033721924,-0.0128455637022853,-0.637443423271179,0.751180052757263,-0.0138317421078682,-0.659952461719513,0.789534866809845,0.0341772586107254,-0.61275327205658,-0.0109319789335132,-0.999892354011536,0.00979357119649649,0.00793470069766045,-0.999432563781738,-0.032734602689743,0.0463962592184544,-0.998851299285889,0.0119786374270916,-0.0124003915116191,-0.999874234199524,0.00989281479269266,-0.626043856143951,0.0684560686349869,-0.77677720785141,-0.669131338596344,0.0105123175308108,-0.743069708347321,-0.608978867530823,-0.0117905903607607,-0.793098866939545,-0.648817896842957,-0.0679379776120186,-0.757904827594757,-0.523783981800079,-0.0403150580823421,-0.850896596908569,-0.716479599475861,0.0390314236283302,-0.696515202522278,-0.626043856143951,0.0684560686349869,-0.77677720785141,-0.648817896842957,-0.0679379776120186,-0.757904827594757,-0.601315021514893,-0.0312396436929703,-0.798401176929474,-0.608978867530823,-0.0117905903607607,-0.793098866939545,-0.669131338596344,0.0105123175308108,-0.743069708347321,-0.674153506755829,0.0234311055392027,-0.738219380378723,-0.759933829307556,0.0511496588587761,0.647984743118286,-0.759760200977325,0.0565428175032139,0.647740244865417,-0.709468603134155,0.00301999808289111,0.704730629920959,-0.708848774433136,0.0335411392152309,0.704562544822693,-0.749187469482422,-0.00945601332932711,0.662290513515472,0.77389919757843,-0.0272903796285391,-0.632720410823822,
- 0.785412490367889,0.00943284574896097,-0.618900835514069,0.819953083992004,-0.0424048341810703,-0.570857882499695,0.818987190723419,-0.0473968535661697,-0.571851015090942,0.775387704372406,0.00564116891473532,-0.631460309028625,0.770390033721924,-0.0128455637022853,-0.637443423271179,0.759702801704407,-0.278556287288666,-0.587586581707001,0.0273122955113649,-0.991072833538055,-0.130493596196175,0.123002223670483,0.986281752586365,0.110084891319275,0.781776070594788,0.279540419578552,-0.557389736175537,0.836876511573792,0.0272368192672729,-0.546713590621948,0.751180052757263,-0.0138317421078682,-0.659952461719513,0.149924248456955,-0.988563001155853,0.0163078103214502,0.713027536869049,-0.279015600681305,-0.643227756023407,-0.0372584015130997,0.996532320976257,-0.0743988230824471,0.789534866809845,0.0341772586107254,-0.61275327205658,0.688452482223511,0.282486528158188,-0.668007910251617,0.224960997700691,-0.957941174507141,-0.178160667419434,0.0463962592184544,-0.998851299285889,0.0119786374270916,0.755460977554321,-0.0414821654558182,-0.653879284858704,0.785256147384644,-0.0417872667312622,-0.617759346961975,0.00793470069766045,-0.999432563781738,-0.032734602689743,0.318826198577881,-0.900629818439484,-0.295323312282562,0.612443029880524,-0.0129518434405327,-0.790408611297607,0.0330575257539749,-0.98953777551651,-0.140435948967934,0.165649473667145,-0.985247850418091,-0.0429761484265327,0.588327348232269,-0.0142345707863569,-0.808497548103333,0.619544804096222,-0.278444439172745,-0.733916103839874,0.612443029880524,-0.0129518434405327,-0.790408611297607,0.694883763790131,0.0306549444794655,-0.718468427658081,0.633564591407776,0.280781924724579,-0.72094202041626,-0.751577496528625,-0.0583565272390842,-0.657058417797089,0.616639912128448,0.148914664983749,-0.77303272485733,0.617088496685028,-0.0414141900837421,-0.785803198814392,-0.759708285331726,-0.0424368940293789,-0.648877859115601,-0.759708285331726,-0.0424368940293789,-0.648877859115601,0.617088496685028,-0.0414141900837421,-0.785803198814392,0.356947213411331,-0.815795183181763,-0.455046117305756,
- -0.785982847213745,-0.0887997224926949,-0.611837863922119,0.120652079582214,0.990774869918823,0.0617116875946522,0.694883763790131,0.0306549444794655,-0.718468427658081,0.632855296134949,0.0353746712207794,-0.773461580276489,-0.0773085802793503,0.993566870689392,-0.0827554687857628,0.0498173981904984,-0.997799038887024,0.0437668412923813,0.0141834737733006,-0.999416410923004,0.0310742873698473,0.0676340609788895,-0.997563183307648,0.0171283930540085,0.204267486929893,-0.957656681537628,-0.202900230884552,0.588327348232269,-0.0142345707863569,-0.808497548103333,0.549305856227875,-0.27889284491539,-0.787706732749939,0.510244846343994,0.281496286392212,-0.812656104564667,0.632855296134949,0.0353746712207794,-0.773461580276489,-0.990518152713776,0.00134590966627002,0.137375384569168,-0.993106305599213,0.0234076995402575,0.114856295287609,-0.996110677719116,0.00303456978872418,0.0880577117204666,-0.996110677719116,0.00303456978872418,0.0880577117204666,-0.999347269535065,0.00747956056147814,0.0353398621082306,-0.999495387077332,0.000600970233790576,-0.0317595973610878,-0.999482810497284,0.00690277200192213,-0.0314114727079868,0.0157879162579775,-0.999415099620819,0.0303346961736679,-0.00747653190046549,-0.999965310096741,-0.00369256525300443,0.265204668045044,-0.900689542293549,-0.344128966331482,0.0229715593159199,-0.999595642089844,-0.0167585872113705,-0.026507455855608,-0.998397648334503,0.0499954372644424,-0.696108341217041,-0.0712238773703575,-0.714394986629486,-0.785982847213745,-0.0887997224926949,-0.611837863922119,0.356947213411331,-0.815795183181763,-0.455046117305756,0.59351247549057,-0.0423326268792152,-0.80371081829071,0.0676340609788895,-0.997563183307648,0.0171283930540085,0.0229715593159199,-0.999595642089844,-0.0167585872113705,0.630425989627838,-0.0407670587301254,-0.775178074836731,-0.852154195308685,0.00747953681275249,-0.523237466812134,0.000910153496079147,0.995786428451538,-0.091697983443737,-0.255232363939285,0.934356451034546,0.248665481805801,-0.811714291572571,-0.0198619216680527,-0.583716928958893,
- 0.694883763790131,0.0306549444794655,-0.718468427658081,0.612443029880524,-0.0129518434405327,-0.790408611297607,0.588327348232269,-0.0142345707863569,-0.808497548103333,0.632855296134949,0.0353746712207794,-0.773461580276489,0.0157879162579775,-0.999415099620819,0.0303346961736679,0.0229715593159199,-0.999595642089844,-0.0167585872113705,0.0676340609788895,-0.997563183307648,0.0171283930540085,0.0141834737733006,-0.999416410923004,0.0310742873698473,-0.992756068706512,-0.00348941027186811,-0.120096728205681,-0.999347269535065,0.00747956056147814,0.0353398621082306,-0.993106305599213,0.0234076995402575,0.114856295287609,-0.696108341217041,-0.0712238773703575,-0.714394986629486,-0.852154195308685,0.00747953681275249,-0.523237466812134,-0.811714291572571,-0.0198619216680527,-0.583716928958893,-0.785982847213745,-0.0887997224926949,-0.611837863922119,-0.573401391506195,-0.00997227244079113,0.819213926792145,-0.571062564849854,0.00713723059743643,0.820875525474548,-0.566415071487427,0.0831976905465126,0.819909870624542,-0.587116241455078,0.0842355713248253,0.80510801076889,-0.59168004989624,0.000927519053220749,0.806172370910645,-0.530282914638519,0.0780012905597687,0.84422492980957,-0.529373109340668,0.0234798900783062,0.848064184188843,0.617178380489349,-0.028350293636322,-0.786312341690063,0.63051563501358,0.00906542595475912,-0.776123583316803,0.676035225391388,-0.0408498905599117,-0.73573625087738,0.675081133842468,-0.0459970459342003,-0.736308097839355,0.618116736412048,0.00458946218714118,-0.786072909832001,0.612443029880524,-0.0129518434405327,-0.790408611297607,0.619544804096222,-0.278444439172745,-0.733916103839874,0.0330575257539749,-0.98953777551651,-0.140435948967934,0.120652079582214,0.990774869918823,0.0617116875946522,0.633564591407776,0.280781924724579,-0.72094202041626,0.694883763790131,0.0306549444794655,-0.718468427658081,0.588327348232269,-0.0142345707863569,-0.808497548103333,0.165649473667145,-0.985247850418091,-0.0429761484265327,0.549305856227875,-0.27889284491539,-0.787706732749939,-0.0773085802793503,0.993566870689392,-0.0827554687857628,
- 0.632855296134949,0.0353746712207794,-0.773461580276489,0.510244846343994,0.281496286392212,-0.812656104564667,0.204267486929893,-0.957656681537628,-0.202900230884552,0.0676340609788895,-0.997563183307648,0.0171283930540085,0.59351247549057,-0.0423326268792152,-0.80371081829071,0.630425989627838,-0.0407670587301254,-0.775178074836731,0.0229715593159199,-0.999595642089844,-0.0167585872113705,0.265204668045044,-0.900689542293549,-0.344128966331482,0.197123005986214,-0.0137281846255064,-0.980282604694366,-0.0859374552965164,-0.988881528377533,-0.121359281241894,0.104976370930672,-0.990572214126587,-0.0880157425999641,0.168504759669304,-0.012794429436326,-0.985617816448212,0.201676398515701,-0.27878138422966,-0.93893963098526,0.197123005986214,-0.0137281846255064,-0.980282604694366,0.254225969314575,0.028785428032279,-0.966716349124908,0.234911903738976,0.279848963022232,-0.930860340595245,-0.975651800632477,-0.036737859249115,-0.216226428747177,0.193246155977249,0.142887860536575,-0.970689952373505,0.182126730680466,-0.0459543466567993,-0.982200622558594,-0.978005409240723,-0.0159316249191761,-0.207970514893532,-0.978005409240723,-0.0159316249191761,-0.207970514893532,0.182126730680466,-0.0459543466567993,-0.982200622558594,0.0823925286531448,-0.819372415542603,-0.567309617996216,-0.985252857208252,-0.0734031572937965,-0.154560029506683,0.159938544034958,0.987123072147369,0.00275429058820009,0.254225969314575,0.028785428032279,-0.966716349124908,0.203833520412445,0.0343606024980545,-0.978402376174927,-0.0821961984038353,0.996061265468597,-0.0332534462213516,0.0369999557733536,-0.999270021915436,0.00951912719756365,0.00238071102648973,-0.99986058473587,0.0165333636105061,0.0474487692117691,-0.998669266700745,-0.0202084295451641,0.0610496364533901,-0.957963109016418,-0.280320286750793,0.168504759669304,-0.012794429436326,-0.985617816448212,0.130010157823563,-0.278937876224518,-0.951467752456665,0.0922269746661186,0.282190591096878,-0.954915046691895,0.203833520412445,0.0343606024980545,-0.978402376174927,-0.146382495760918,-0.144436404109001,0.978626728057861,
- -0.992242515087128,0.0180497132241726,-0.122999384999275,-0.991405487060547,0.00644518248736858,-0.130665883421898,-0.161882102489471,0.0448926165699959,0.985788464546204,-0.161882102489471,0.0448926165699959,0.985788464546204,-0.991405487060547,0.00644518248736858,-0.130665883421898,-0.981094121932983,0.0625828877091408,-0.183133184909821,-0.122046902775764,0.815666437149048,0.565502166748047,0.0034092110581696,-0.999874949455261,0.0154437320306897,-0.0317861177027225,-0.999488830566406,-0.00343290786258876,0.0566319115459919,-0.900672495365143,-0.430792242288589,-0.011655050329864,-0.999495029449463,-0.0295592788606882,-0.0287235789000988,-0.998011112213135,0.0561158545315266,-0.961061537265778,-0.044632937759161,-0.272706091403961,-0.985252857208252,-0.0734031572937965,-0.154560029506683,0.0823925286531448,-0.819372415542603,-0.567309617996216,0.149273455142975,-0.0416619442403317,-0.987917959690094,0.0474487692117691,-0.998669266700745,-0.0202084295451641,-0.011655050329864,-0.999495029449463,-0.0295592788606882,0.192604929208755,-0.0414322130382061,-0.980401337146759,-0.998975992202759,0.0348918586969376,-0.0288017112761736,-0.0165534000843763,0.998098075389862,-0.0593816563487053,-0.122046902775764,0.815666437149048,0.565502166748047,-0.981094121932983,0.0625828877091408,-0.183133184909821,0.254225969314575,0.028785428032279,-0.966716349124908,0.197123005986214,-0.0137281846255064,-0.980282604694366,0.168504759669304,-0.012794429436326,-0.985617816448212,0.203833520412445,0.0343606024980545,-0.978402376174927,0.0034092110581696,-0.999874949455261,0.0154437320306897,-0.011655050329864,-0.999495029449463,-0.0295592788606882,0.0474487692117691,-0.998669266700745,-0.0202084295451641,0.00238071102648973,-0.99986058473587,0.0165333636105061,-0.981094121932983,0.0625828877091408,-0.183133184909821,-0.991405487060547,0.00644518248736858,-0.130665883421898,-0.978005409240723,-0.0159316249191761,-0.207970514893532,-0.985252857208252,-0.0734031572937965,-0.154560029506683,-0.961061537265778,-0.044632937759161,-0.272706091403961,
- -0.998975992202759,0.0348918586969376,-0.0288017112761736,-0.981094121932983,0.0625828877091408,-0.183133184909821,-0.985252857208252,-0.0734031572937965,-0.154560029506683,-0.975651800632477,-0.036737859249115,-0.216226428747177,-0.978005409240723,-0.0159316249191761,-0.207970514893532,-0.991405487060547,0.00644518248736858,-0.130665883421898,-0.992242515087128,0.0180497132241726,-0.122999384999275,-0.161938458681107,0.0509911514818668,0.985482513904572,-0.161833837628365,0.0563440695405006,0.98520815372467,-0.0858285874128342,0.00317881046794355,0.996304869651794,-0.0856417268514633,0.0337493717670441,0.995754241943359,-0.144006699323654,-0.00954390969127417,0.989530682563782,0.182416439056396,-0.0274560619145632,-0.982837975025177,0.199827879667282,0.00936183333396912,-0.979786276817322,0.256812125444412,-0.0422395020723343,-0.965537846088409,0.255428671836853,-0.0471876487135887,-0.96567565202713,0.184039831161499,0.00539788464084268,-0.982903957366943,0.197123005986214,-0.0137281846255064,-0.980282604694366,0.201676398515701,-0.27878138422966,-0.93893963098526,-0.0859374552965164,-0.988881528377533,-0.121359281241894,0.159938544034958,0.987123072147369,0.00275429058820009,0.234911903738976,0.279848963022232,-0.930860340595245,0.254225969314575,0.028785428032279,-0.966716349124908,0.168504759669304,-0.012794429436326,-0.985617816448212,0.104976370930672,-0.990572214126587,-0.0880157425999641,0.130010157823563,-0.278937876224518,-0.951467752456665,-0.0821961984038353,0.996061265468597,-0.0332534462213516,0.203833520412445,0.0343606024980545,-0.978402376174927,0.0922269746661186,0.282190591096878,-0.954915046691895,0.0610496364533901,-0.957963109016418,-0.280320286750793,0.0474487692117691,-0.998669266700745,-0.0202084295451641,0.149273455142975,-0.0416619442403317,-0.987917959690094,0.192604929208755,-0.0414322130382061,-0.980401337146759,-0.011655050329864,-0.999495029449463,-0.0295592788606882,0.0566319115459919,-0.900672495365143,-0.430792242288589,0.855107307434082,-0.51834636926651,-0.0104175321757793,0.855110943317413,-0.518327236175537,-0.0110516147688031,
- 0.85511440038681,-0.518307864665985,-0.0116856899112463,0.855111002922058,-0.518327236175537,-0.011051612906158,0.107973463833332,0.501271843910217,-0.858526766300201,0.0619110055267811,0.503145396709442,-0.861981272697449,0.0157162249088287,0.503943681716919,-0.863593637943268,0.0619110055267811,0.503145396709442,-0.861981272697449,0.64446359872818,-0.227284252643585,-0.730074286460876,0.798061847686768,0.100304111838341,0.594168663024902,0.666329324245453,-0.168929040431976,0.726269960403442,-0.094040684401989,-0.972167551517487,0.214584633708,0.343578428030014,0.85768461227417,-0.382532179355621,0.807108938694,0.418420225381851,0.416532933712006,0.917890608310699,0.252515077590942,0.306125670671463,0.343578428030014,0.85768461227417,-0.382532179355621,0.917890608310699,0.252515077590942,0.306125670671463,0.798061847686768,0.100304111838341,0.594168663024902,0.64446359872818,-0.227284252643585,-0.730074286460876,0.780059576034546,-0.0404058806598186,0.624399304389954,0.807108938694,0.418420225381851,0.416532933712006,0.743692815303802,0.0222579855471849,0.668150722980499,0.539671063423157,-0.0793103277683258,0.838131844997406,0.558163285255432,-0.0467826314270496,0.828411161899567,0.935303688049316,0.17493662238121,0.307577908039093,0.0931574702262878,0.286585479974747,0.953514814376831,0.558163285255432,-0.0467826314270496,0.828411161899567,0.539671063423157,-0.0793103277683258,0.838131844997406,0.512021124362946,-0.191144406795502,0.83743542432785,0.522942781448364,-0.131120607256889,0.842222273349762,0.483578145503998,-0.326808512210846,0.812002658843994,0.520547568798065,-0.315166801214218,0.793536603450775,0.658123552799225,-0.00925472099334002,0.752853095531464,0.592004418373108,-0.0869258642196655,0.801233291625977,0.0931574702262878,0.286585479974747,0.953514814376831,0.935303688049316,0.17493662238121,0.307577908039093,0.30758735537529,0.282355397939682,0.908661305904388,0.535986185073853,-0.00535361422225833,0.844209790229797,0.628868043422699,-0.0161513146013021,0.777344226837158,0.732356667518616,-0.0345470421016216,0.680044233798981,
- 0.614317536354065,-0.0937994047999382,0.783463895320892,0.578195512294769,-0.11379349976778,0.807923853397369,0.694837689399719,0.00446098716929555,0.719152748584747,0.70578408241272,0.356191337108612,0.612369656562805,0.68725061416626,-0.276900321245193,0.671574950218201,0.235261604189873,0.893518209457397,-0.382462024688721,0.25870680809021,0.899408578872681,-0.352327913045883,0.243940129876137,0.955701053142548,-0.164708197116852,0.384912759065628,0.855365812778473,-0.346686452627182,0.343578428030014,0.85768461227417,-0.382532179355621,0.260891973972321,0.918764352798462,-0.296323001384735,0.520547568798065,-0.315166801214218,0.793536603450775,0.483578145503998,-0.326808512210846,0.812002658843994,0.578195512294769,-0.11379349976778,0.807923853397369,0.807108938694,0.418420225381851,0.416532933712006,0.780059576034546,-0.0404058806598186,0.624399304389954,0.777720510959625,0.0899048671126366,0.622147798538208,0.917890608310699,0.252515077590942,0.306125670671463,0.917890608310699,0.252515077590942,0.306125670671463,0.777720510959625,0.0899048671126366,0.622147798538208,0.798061847686768,0.100304111838341,0.594168663024902,0.807108938694,0.418420225381851,0.416532933712006,0.343578428030014,0.85768461227417,-0.382532179355621,0.384912759065628,0.855365812778473,-0.346686452627182,0.743692815303802,0.0222579855471849,0.668150722980499,0.752123236656189,-0.102520689368248,0.650999486446381,-0.094040684401989,-0.972167551517487,0.214584633708,0.666329324245453,-0.168929040431976,0.726269960403442,0.520547568798065,-0.315166801214218,0.793536603450775,0.724246740341187,0.387072831392288,0.570649862289429,0.626651108264923,0.127184078097343,0.768851518630981,0.658123552799225,-0.00925472099334002,0.752853095531464,-0.668024599552155,-0.626721858978271,0.401201784610748,-0.875092446804047,-0.185658842325211,0.446927309036255,0.473936557769775,-0.00108897336758673,0.88055831193924,0.252222865819931,0.193435609340668,0.948138296604156,0.521141469478607,0.0184575617313385,0.853270709514618,0.607328295707703,0.312098741531372,0.730579733848572,
- 0.309587389230728,0.178866326808929,0.933896422386169,0.813452899456024,-0.278737932443619,0.510489463806152,0.574375152587891,0.293345421552658,0.764226257801056,0.473936557769775,-0.00108897336758673,0.88055831193924,0.607328295707703,0.312098741531372,0.730579733848572,0.521141469478607,0.0184575617313385,0.853270709514618,0.813452899456024,-0.278737932443619,0.510489463806152,0.309587389230728,0.178866326808929,0.933896422386169,0.56978714466095,0.0679377093911171,0.818979322910309,0.314343601465225,0.0357245206832886,0.948636829853058,0.696690678596497,-0.182985633611679,0.693641245365143,0.522942781448364,-0.131120607256889,0.842222273349762,0.512021124362946,-0.191144406795502,0.83743542432785,0.30660292506218,0.170421093702316,0.936456799507141,0.709076523780823,-0.108766257762909,0.69669246673584,0.70578408241272,0.356191337108612,0.612369656562805,0.529124438762665,0.144409149885178,0.836165845394135,0.80822890996933,0.165190115571022,0.56522411108017,0.664864301681519,0.0393502861261368,0.745926916599274,0.664724111557007,-0.0895185992121696,0.741706252098084,0.624670565128326,-0.282400012016296,0.728036284446716,0.769824028015137,-0.127134963870049,0.625466108322144,0.652377665042877,-0.122742399573326,0.747888803482056,0.732356667518616,-0.0345470421016216,0.680044233798981,0.68725061416626,-0.276900321245193,0.671574950218201,0.648545861244202,-0.040983073413372,0.760071456432343,0.614317536354065,-0.0937994047999382,0.783463895320892,0.529124438762665,0.144409149885178,0.836165845394135,0.752123236656189,-0.102520689368248,0.650999486446381,0.666329324245453,-0.168929040431976,0.726269960403442,0.80822890996933,0.165190115571022,0.56522411108017,0.529124438762665,0.144409149885178,0.836165845394135,0.70578408241272,0.356191337108612,0.612369656562805,0.694837689399719,0.00446098716929555,0.719152748584747,0.628868043422699,-0.0161513146013021,0.777344226837158,0.285604566335678,-0.082173764705658,0.9548180103302,0.311243504285812,0.0407751724123955,0.949455142021179,0.724246740341187,0.387072831392288,0.570649862289429,
- 0.520547568798065,-0.315166801214218,0.793536603450775,0.578195512294769,-0.11379349976778,0.807923853397369,0.614317536354065,-0.0937994047999382,0.783463895320892,0.648545861244202,-0.040983073413372,0.760071456432343,0.624670565128326,-0.282400012016296,0.728036284446716,0.664724111557007,-0.0895185992121696,0.741706252098084,0.664864301681519,0.0393502861261368,0.745926916599274,0.80822890996933,0.165190115571022,0.56522411108017,0.473936557769775,-0.00108897336758673,0.88055831193924,0.574375152587891,0.293345421552658,0.764226257801056,0.584872007369995,-0.0227074958384037,0.810807645320892,0.252222865819931,0.193435609340668,0.948138296604156,0.607328295707703,0.312098741531372,0.730579733848572,-0.534361004829407,0.795580983161926,0.285497844219208,0.104673348367214,0.994383811950684,0.0156332664191723,0.309587389230728,0.178866326808929,0.933896422386169,0.473936557769775,-0.00108897336758673,0.88055831193924,-0.875092446804047,-0.185658842325211,0.446927309036255,-0.534361004829407,0.795580983161926,0.285497844219208,0.607328295707703,0.312098741531372,0.730579733848572,0.309587389230728,0.178866326808929,0.933896422386169,0.104673348367214,0.994383811950684,0.0156332664191723,0.624368786811829,0.728211760520935,-0.282615005970001,0.56978714466095,0.0679377093911171,0.818979322910309,0.512021124362946,-0.191144406795502,0.83743542432785,0.483578145503998,-0.326808512210846,0.812002658843994,0.592004418373108,-0.0869258642196655,0.801233291625977,0.30660292506218,0.170421093702316,0.936456799507141,0.539671063423157,-0.0793103277683258,0.838131844997406,0.578195512294769,-0.11379349976778,0.807923853397369,0.483578145503998,-0.326808512210846,0.812002658843994,0.512021124362946,-0.191144406795502,0.83743542432785,0.578195512294769,-0.11379349976778,0.807923853397369,0.539671063423157,-0.0793103277683258,0.838131844997406,0.0931574702262878,0.286585479974747,0.953514814376831,0.628868043422699,-0.0161513146013021,0.777344226837158,0.628868043422699,-0.0161513146013021,0.777344226837158,0.0931574702262878,0.286585479974747,0.953514814376831,
- 0.535986185073853,-0.00535361422225833,0.844209790229797,0.285604566335678,-0.082173764705658,0.9548180103302,0.574375152587891,0.293345421552658,0.764226257801056,0.522942781448364,-0.131120607256889,0.842222273349762,0.709076523780823,-0.108766257762909,0.69669246673584,0.584872007369995,-0.0227074958384037,0.810807645320892,0.522942781448364,-0.131120607256889,0.842222273349762,0.574375152587891,0.293345421552658,0.764226257801056,0.521141469478607,0.0184575617313385,0.853270709514618,0.558163285255432,-0.0467826314270496,0.828411161899567,0.558163285255432,-0.0467826314270496,0.828411161899567,0.521141469478607,0.0184575617313385,0.853270709514618,0.813452899456024,-0.278737932443619,0.510489463806152,0.935303688049316,0.17493662238121,0.307577908039093,0.935303688049316,0.17493662238121,0.307577908039093,0.813452899456024,-0.278737932443619,0.510489463806152,0.696690678596497,-0.182985633611679,0.693641245365143,0.696690678596497,-0.182985633611679,0.693641245365143,0.314343601465225,0.0357245206832886,0.948636829853058,-0.115549184381962,-0.790501713752747,0.601461231708527,0.935303688049316,0.17493662238121,0.307577908039093,0.696690678596497,-0.182985633611679,0.693641245365143,-0.115549184381962,-0.790501713752747,0.601461231708527,0.30758735537529,0.282355397939682,0.908661305904388,0.628868043422699,-0.0161513146013021,0.777344226837158,0.311243504285812,0.0407751724123955,0.949455142021179,0.708193063735962,0.00223406287841499,0.706015288829803,0.694837689399719,0.00446098716929555,0.719152748584747,0.732356667518616,-0.0345470421016216,0.680044233798981,0.624670565128326,-0.282400012016296,0.728036284446716,0.777720510959625,0.0899048671126366,0.622147798538208,0.780059576034546,-0.0404058806598186,0.624399304389954,0.769824028015137,-0.127134963870049,0.625466108322144,0.798061847686768,0.100304111838341,0.594168663024902,0.777720510959625,0.0899048671126366,0.622147798538208,0.624670565128326,-0.282400012016296,0.728036284446716,0.80822890996933,0.165190115571022,0.56522411108017,0.666329324245453,-0.168929040431976,0.726269960403442,
- 0.724246740341187,0.387072831392288,0.570649862289429,0.664724111557007,-0.0895185992121696,0.741706252098084,0.652377665042877,-0.122742399573326,0.747888803482056,0.626651108264923,0.127184078097343,0.768851518630981,0.664724111557007,-0.0895185992121696,0.741706252098084,0.724246740341187,0.387072831392288,0.570649862289429,0.648545861244202,-0.040983073413372,0.760071456432343,0.664864301681519,0.0393502861261368,0.745926916599274,0.68725061416626,-0.276900321245193,0.671574950218201,0.70578408241272,0.356191337108612,0.612369656562805,0.664864301681519,0.0393502861261368,0.745926916599274,0.648545861244202,-0.040983073413372,0.760071456432343,0.694837689399719,0.00446098716929555,0.719152748584747,0.68725061416626,-0.276900321245193,0.671574950218201,0.732356667518616,-0.0345470421016216,0.680044233798981,0.243940129876137,0.955701053142548,-0.164708197116852,0.677899897098541,0.0962725058197975,0.728823304176331,0.743692815303802,0.0222579855471849,0.668150722980499,0.384912759065628,0.855365812778473,-0.346686452627182,0.587394952774048,-0.0758658796548843,0.805736541748047,-0.239542588591576,-0.912932097911835,0.330415338277817,-0.094040684401989,-0.972167551517487,0.214584633708,0.752123236656189,-0.102520689368248,0.650999486446381,0.708193063735962,0.00223406287841499,0.706015288829803,0.587394952774048,-0.0758658796548843,0.805736541748047,0.752123236656189,-0.102520689368248,0.650999486446381,0.529124438762665,0.144409149885178,0.836165845394135,0.694837689399719,0.00446098716929555,0.719152748584747,0.380216926336288,0.887174785137177,-0.261449724435806,0.41567188501358,0.892452001571655,-0.175346657633781,0.428958117961884,0.89328944683075,-0.134271532297134,0.402772277593613,0.894094288349152,-0.195882380008698,0.399609118700027,0.894863665103912,-0.198825672268867,0.371552735567093,0.892123520374298,-0.257029563188553,-0.618367612361908,-0.227189838886261,0.752333879470825,0.188061535358429,-0.973620533943176,-0.129212483763695,0.769264996051788,-0.180053412914276,0.613035142421722,0.650659322738647,0.0924899354577065,0.753716230392456,
- -0.323874056339264,0.857523381710052,0.399698972702026,0.352318346500397,0.287757843732834,0.890543162822723,0.459902703762054,0.468879073858261,0.754083514213562,-0.323874056339264,0.857523381710052,0.399698972702026,-0.618367612361908,-0.227189838886261,0.752333879470825,0.650659322738647,0.0924899354577065,0.753716230392456,0.352318346500397,0.287757843732834,0.890543162822723,0.678976833820343,-0.0392687804996967,0.733108818531036,0.756262362003326,0.0608001239597797,0.65143746137619,0.459902703762054,0.468879073858261,0.754083514213562,0.627961456775665,-0.0703322142362595,0.775059878826141,0.881491601467133,0.288331896066666,0.373948156833649,-0.169588789343834,0.149267077445984,0.974145174026489,0.538666069507599,-0.0479944236576557,0.841151237487793,0.538666069507599,-0.0479944236576557,0.841151237487793,0.564686715602875,-0.151928007602692,0.811200797557831,0.642388701438904,-0.200961112976074,0.73956161737442,0.627961456775665,-0.0703322142362595,0.775059878826141,0.628452479839325,-0.384882092475891,0.675953507423401,0.60773241519928,-0.0749892368912697,0.790593445301056,0.64899867773056,-0.028643062338233,0.760250210762024,0.731808841228485,-0.334896951913834,0.593548476696014,0.881491601467133,0.288331896066666,0.373948156833649,0.602827191352844,-0.00969455204904079,0.797812879085541,0.776329040527344,0.259847939014435,0.574275493621826,-0.169588789343834,0.149267077445984,0.974145174026489,0.624122798442841,-0.023226810619235,0.780981004238129,0.670571446418762,-0.124435417354107,0.731334209442139,0.723554968833923,-0.132556989789009,0.677419245243073,0.592290997505188,-0.0319648459553719,0.805089890956879,0.700947344303131,0.00243075750768185,0.713208913803101,0.640728175640106,-0.327027559280396,0.694636881351471,0.564207911491394,0.413622170686722,0.71455317735672,-0.33368331193924,0.894058763980865,0.298855185508728,-0.251339763402939,0.918600261211395,0.304961979389191,-0.323874056339264,0.857523381710052,0.399698972702026,-0.284020394086838,0.855626404285431,0.432707756757736,-0.238128006458282,0.88880854845047,0.391553819179535,
- -0.305305868387222,0.89921361207962,0.313374102115631,0.731808841228485,-0.334896951913834,0.593548476696014,0.670571446418762,-0.124435417354107,0.731334209442139,0.628452479839325,-0.384882092475891,0.675953507423401,0.459902703762054,0.468879073858261,0.754083514213562,0.352318346500397,0.287757843732834,0.890543162822723,0.658312678337097,0.127719819545746,0.741830229759216,0.678976833820343,-0.0392687804996967,0.733108818531036,0.352318346500397,0.287757843732834,0.890543162822723,0.650659322738647,0.0924899354577065,0.753716230392456,0.658312678337097,0.127719819545746,0.741830229759216,0.459902703762054,0.468879073858261,0.754083514213562,0.756262362003326,0.0608001239597797,0.65143746137619,-0.284020394086838,0.855626404285431,0.432707756757736,-0.323874056339264,0.857523381710052,0.399698972702026,0.708263337612152,-0.106923297047615,0.697804033756256,0.769264996051788,-0.180053412914276,0.613035142421722,0.188061535358429,-0.973620533943176,-0.129212483763695,0.731808841228485,-0.334896951913834,0.593548476696014,0.64899867773056,-0.028643062338233,0.760250210762024,0.711731612682343,0.155666038393974,0.684986412525177,0.458380311727524,0.422720223665237,0.781789600849152,0.729086697101593,-0.619739651679993,-0.290439635515213,0.681267976760864,0.190149277448654,0.706906676292419,0.514201104640961,0.010508538223803,0.857605218887329,0.887554347515106,-0.187909498810768,-0.420639276504517,0.472467690706253,0.00736792664974928,0.881317257881165,0.0324242264032364,-0.275930762290955,0.960630416870117,0.648394405841827,0.188954696059227,0.737482786178589,0.291074842214584,0.345980048179626,0.891949117183685,0.365441054105759,0.288396179676056,0.885031282901764,0.472467690706253,0.00736792664974928,0.881317257881165,0.291074842214584,0.345980048179626,0.891949117183685,0.514201104640961,0.010508538223803,0.857605218887329,0.0324242264032364,-0.275930762290955,0.960630416870117,0.269325166940689,-0.162639707326889,0.949216723442078,0.693967401981354,0.0107522895559669,0.719926059246063,0.294398844242096,0.0840602889657021,0.951978623867035,
- 0.648394405841827,0.188954696059227,0.737482786178589,0.564686715602875,-0.151928007602692,0.811200797557831,0.329291582107544,-0.123119801282883,0.936167001724243,0.797266185283661,0.162254169583321,0.581412136554718,0.642388701438904,-0.200961112976074,0.73956161737442,0.564207911491394,0.413622170686722,0.71455317735672,0.744561970233917,0.04450523853302,0.666068077087402,0.536987006664276,0.272423982620239,0.798392176628113,0.878814220428467,0.154491305351257,0.451462179422379,0.737934648990631,-0.102344423532486,0.667066752910614,0.743872225284576,-0.129222169518471,0.655710160732269,0.659044802188873,-0.150412812829018,0.736909806728363,0.760543048381805,-0.230642214417458,0.606941878795624,0.592290997505188,-0.0319648459553719,0.805089890956879,0.723554968833923,-0.132556989789009,0.677419245243073,0.700325429439545,-0.0916531980037689,0.707915246486664,0.640728175640106,-0.327027559280396,0.694636881351471,0.878814220428467,0.154491305351257,0.451462179422379,0.536987006664276,0.272423982620239,0.798392176628113,0.769264996051788,-0.180053412914276,0.613035142421722,0.708263337612152,-0.106923297047615,0.697804033756256,0.878814220428467,0.154491305351257,0.451462179422379,0.700947344303131,0.00243075750768185,0.713208913803101,0.564207911491394,0.413622170686722,0.71455317735672,0.624122798442841,-0.023226810619235,0.780981004238129,0.902578771114349,-0.000891905860044062,0.430523812770844,0.860193014144897,-0.117936797440052,0.496144115924835,0.458380311727524,0.422720223665237,0.781789600849152,0.700325429439545,-0.0916531980037689,0.707915246486664,0.723554968833923,-0.132556989789009,0.677419245243073,0.670571446418762,-0.124435417354107,0.731334209442139,0.731808841228485,-0.334896951913834,0.593548476696014,0.760543048381805,-0.230642214417458,0.606941878795624,0.536987006664276,0.272423982620239,0.798392176628113,0.744561970233917,0.04450523853302,0.666068077087402,0.737934648990631,-0.102344423532486,0.667066752910614,0.514201104640961,0.010508538223803,0.857605218887329,0.681267976760864,0.190149277448654,0.706906676292419,
- 0.4154112637043,-0.00627680402249098,0.909612059593201,0.365441054105759,0.288396179676056,0.885031282901764,0.291074842214584,0.345980048179626,0.891949117183685,0.648394405841827,0.188954696059227,0.737482786178589,-0.0469465330243111,0.995308816432953,0.0845957472920418,0.550780713558197,0.796103358268738,-0.250719040632248,0.514201104640961,0.010508538223803,0.857605218887329,0.291074842214584,0.345980048179626,0.891949117183685,0.550780713558197,0.796103358268738,-0.250719040632248,0.887554347515106,-0.187909498810768,-0.420639276504517,0.648394405841827,0.188954696059227,0.737482786178589,0.294398844242096,0.0840602889657021,0.951978623867035,-0.602161347866058,0.732471466064453,0.317627519369125,-0.0469465330243111,0.995308816432953,0.0845957472920418,0.642388701438904,-0.200961112976074,0.73956161737442,0.797266185283661,0.162254169583321,0.581412136554718,0.60773241519928,-0.0749892368912697,0.790593445301056,0.628452479839325,-0.384882092475891,0.675953507423401,0.627961456775665,-0.0703322142362595,0.775059878826141,0.642388701438904,-0.200961112976074,0.73956161737442,0.628452479839325,-0.384882092475891,0.675953507423401,0.670571446418762,-0.124435417354107,0.731334209442139,0.670571446418762,-0.124435417354107,0.731334209442139,0.624122798442841,-0.023226810619235,0.780981004238129,0.881491601467133,0.288331896066666,0.373948156833649,0.627961456775665,-0.0703322142362595,0.775059878826141,0.624122798442841,-0.023226810619235,0.780981004238129,0.860193014144897,-0.117936797440052,0.496144115924835,0.602827191352844,-0.00969455204904079,0.797812879085541,0.881491601467133,0.288331896066666,0.373948156833649,0.365441054105759,0.288396179676056,0.885031282901764,0.4154112637043,-0.00627680402249098,0.909612059593201,0.329291582107544,-0.123119801282883,0.936167001724243,0.564686715602875,-0.151928007602692,0.811200797557831,0.564686715602875,-0.151928007602692,0.811200797557831,0.538666069507599,-0.0479944236576557,0.841151237487793,0.472467690706253,0.00736792664974928,0.881317257881165,0.365441054105759,0.288396179676056,0.885031282901764,
- 0.538666069507599,-0.0479944236576557,0.841151237487793,-0.169588789343834,0.149267077445984,0.974145174026489,0.0324242264032364,-0.275930762290955,0.960630416870117,0.472467690706253,0.00736792664974928,0.881317257881165,-0.169588789343834,0.149267077445984,0.974145174026489,0.269325166940689,-0.162639707326889,0.949216723442078,0.0324242264032364,-0.275930762290955,0.960630416870117,0.269325166940689,-0.162639707326889,0.949216723442078,0.590516269207001,-0.796135723590851,0.132130190730095,0.693967401981354,0.0107522895559669,0.719926059246063,-0.169588789343834,0.149267077445984,0.974145174026489,0.776329040527344,0.259847939014435,0.574275493621826,0.590516269207001,-0.796135723590851,0.132130190730095,0.269325166940689,-0.162639707326889,0.949216723442078,0.624122798442841,-0.023226810619235,0.780981004238129,0.592290997505188,-0.0319648459553719,0.805089890956879,0.700947344303131,0.00243075750768185,0.713208913803101,0.691538691520691,0.0034767840988934,0.72233110666275,0.902578771114349,-0.000891905860044062,0.430523812770844,0.760543048381805,-0.230642214417458,0.606941878795624,0.659044802188873,-0.150412812829018,0.736909806728363,0.678976833820343,-0.0392687804996967,0.733108818531036,0.658312678337097,0.127719819545746,0.741830229759216,0.650659322738647,0.0924899354577065,0.753716230392456,0.769264996051788,-0.180053412914276,0.613035142421722,0.536987006664276,0.272423982620239,0.798392176628113,0.760543048381805,-0.230642214417458,0.606941878795624,0.658312678337097,0.127719819545746,0.741830229759216,0.458380311727524,0.422720223665237,0.781789600849152,0.711731612682343,0.155666038393974,0.684986412525177,0.743872225284576,-0.129222169518471,0.655710160732269,0.737934648990631,-0.102344423532486,0.667066752910614,0.737934648990631,-0.102344423532486,0.667066752910614,0.744561970233917,0.04450523853302,0.666068077087402,0.700325429439545,-0.0916531980037689,0.707915246486664,0.458380311727524,0.422720223665237,0.781789600849152,0.640728175640106,-0.327027559280396,0.694636881351471,0.700325429439545,-0.0916531980037689,0.707915246486664,
- 0.744561970233917,0.04450523853302,0.666068077087402,0.564207911491394,0.413622170686722,0.71455317735672,0.700947344303131,0.00243075750768185,0.713208913803101,0.592290997505188,-0.0319648459553719,0.805089890956879,0.640728175640106,-0.327027559280396,0.694636881351471,0.285972565412521,-0.913359820842743,-0.289816349744797,0.904358625411987,-0.0987128540873528,0.415200382471085,0.708263337612152,-0.106923297047615,0.697804033756256,0.188061535358429,-0.973620533943176,-0.129212483763695,0.904358625411987,-0.0987128540873528,0.415200382471085,0.691538691520691,0.0034767840988934,0.72233110666275,0.700947344303131,0.00243075750768185,0.713208913803101,0.878814220428467,0.154491305351257,0.451462179422379,0.708263337612152,-0.106923297047615,0.697804033756256,-0.393537998199463,0.89245343208313,0.220578387379646,-0.438670545816422,0.887157499790192,0.143247231841087,-0.428446501493454,0.89240175485611,0.1416075527668,-0.401646643877029,0.894864022731781,0.194675087928772,-0.401639193296433,0.894055724143982,0.198369190096855,-0.37116339802742,0.893579423427582,0.252494692802429,-0.038361806422472,-0.994108974933624,0.101369090378284,0.470165848731995,-0.0294200740754604,0.882087647914886,0.681267976760864,0.190149277448654,0.706906676292419,0.729086697101593,-0.619739651679993,-0.290439635515213,0.602712392807007,-0.101435728371143,0.791485011577606,0.586519718170166,-0.777948617935181,-0.225367859005928,-0.668024599552155,-0.626721858978271,0.401201784610748,0.252222865819931,0.193435609340668,0.948138296604156,0.717989802360535,0.0405897162854671,0.694869160652161,-0.238128006458282,0.88880854845047,0.391553819179535,-0.284020394086838,0.855626404285431,0.432707756757736,0.756262362003326,0.0608001239597797,0.65143746137619,0.283710807561874,0.201468244194984,0.93750661611557,0.496091306209564,0.0631224438548088,0.865972876548767,0.736474454402924,0.209694087505341,0.643143713474274,0.602712392807007,-0.101435728371143,0.791485011577606,0.74555492401123,0.294422686100006,0.597882211208344,0.283710807561874,0.201468244194984,0.93750661611557,
- 0.724644184112549,-0.0781008079648018,0.68468314409256,0.628576993942261,0.157912075519562,0.76154750585556,0.628576993942261,0.157912075519562,0.76154750585556,0.724644184112549,-0.0781008079648018,0.68468314409256,0.606601238250732,-0.0847157463431358,0.790479719638824,0.397517889738083,-0.213803589344025,0.892338335514069,0.546281158924103,0.166482403874397,0.820890128612518,0.665922045707703,0.0874066427350044,0.74088317155838,0.696811556816101,0.028140040114522,0.716702103614807,0.577649295330048,0.0720207393169403,0.813101708889008,0.871245741844177,0.347063332796097,0.347099334001541,0.546281158924103,0.166482403874397,0.820890128612518,0.47612938284874,-0.0479869246482849,0.87806499004364,0.866861402988434,-0.0749881491065025,0.49287736415863,0.866861402988434,-0.0749881491065025,0.49287736415863,0.47612938284874,-0.0479869246482849,0.87806499004364,0.673610031604767,0.0103870574384928,0.739013969898224,-0.316887468099594,-0.53615415096283,0.782381594181061,0.784709215164185,0.0026760520413518,0.61985844373703,0.673610031604767,0.0103870574384928,0.739013969898224,0.677899897098541,0.0962725058197975,0.728823304176331,0.75210964679718,0.0752876400947571,0.654723525047302,0.546240448951721,-0.0567924566566944,0.835700929164886,0.439594984054565,-0.214839279651642,0.872124016284943,0.583906590938568,-0.0802449434995651,0.807845175266266,0.606601238250732,-0.0847157463431358,0.790479719638824,0.439594984054565,-0.214839279651642,0.872124016284943,0.546240448951721,-0.0567924566566944,0.835700929164886,0.577649295330048,0.0720207393169403,0.813101708889008,-0.100522451102734,-0.44033408164978,0.892188906669617,0.592004418373108,-0.0869258642196655,0.801233291625977,0.658123552799225,-0.00925472099334002,0.752853095531464,0.577649295330048,0.0720207393169403,0.813101708889008,0.546240448951721,-0.0567924566566944,0.835700929164886,0.30660292506218,0.170421093702316,0.936456799507141,0.606601238250732,-0.0847157463431358,0.790479719638824,0.724644184112549,-0.0781008079648018,0.68468314409256,0.709076523780823,-0.108766257762909,0.69669246673584,
- 0.30660292506218,0.170421093702316,0.936456799507141,0.592004418373108,-0.0869258642196655,0.801233291625977,0.546240448951721,-0.0567924566566944,0.835700929164886,0.606601238250732,-0.0847157463431358,0.790479719638824,0.709076523780823,-0.108766257762909,0.69669246673584,0.724644184112549,-0.0781008079648018,0.68468314409256,0.283710807561874,0.201468244194984,0.93750661611557,0.584872007369995,-0.0227074958384037,0.810807645320892,0.658123552799225,-0.00925472099334002,0.752853095531464,0.626651108264923,0.127184078097343,0.768851518630981,0.546281158924103,0.166482403874397,0.820890128612518,0.577649295330048,0.0720207393169403,0.813101708889008,0.546281158924103,0.166482403874397,0.820890128612518,0.626651108264923,0.127184078097343,0.768851518630981,0.652377665042877,-0.122742399573326,0.747888803482056,0.47612938284874,-0.0479869246482849,0.87806499004364,0.283710807561874,0.201468244194984,0.93750661611557,0.602712392807007,-0.101435728371143,0.791485011577606,0.252222865819931,0.193435609340668,0.948138296604156,0.584872007369995,-0.0227074958384037,0.810807645320892,0.673610031604767,0.0103870574384928,0.739013969898224,0.47612938284874,-0.0479869246482849,0.87806499004364,0.652377665042877,-0.122742399573326,0.747888803482056,0.769824028015137,-0.127134963870049,0.625466108322144,0.677899897098541,0.0962725058197975,0.728823304176331,0.673610031604767,0.0103870574384928,0.739013969898224,0.769824028015137,-0.127134963870049,0.625466108322144,0.780059576034546,-0.0404058806598186,0.624399304389954,0.743692815303802,0.0222579855471849,0.668150722980499,0.797266185283661,0.162254169583321,0.581412136554718,0.329291582107544,-0.123119801282883,0.936167001724243,0.312432378530502,-0.087277963757515,0.945922076702118,0.628191649913788,-0.0434331074357033,0.776845574378967,0.797266185283661,0.162254169583321,0.581412136554718,0.628191649913788,-0.0434331074357033,0.776845574378967,0.660950779914856,-0.0479007586836815,0.748898923397064,0.60773241519928,-0.0749892368912697,0.790593445301056,0.329291582107544,-0.123119801282883,0.936167001724243,
- 0.4154112637043,-0.00627680402249098,0.909612059593201,0.613080978393555,0.162253439426422,0.773178815841675,0.312432378530502,-0.087277963757515,0.945922076702118,0.64899867773056,-0.028643062338233,0.760250210762024,0.674918055534363,0.00812165904790163,0.737847983837128,0.725385367870331,0.145413488149643,0.672808289527893,0.711731612682343,0.155666038393974,0.684986412525177,0.725385367870331,0.145413488149643,0.672808289527893,0.831912755966187,-0.116082906723022,0.542628705501556,0.743872225284576,-0.129222169518471,0.655710160732269,0.711731612682343,0.155666038393974,0.684986412525177,0.470165848731995,-0.0294200740754604,0.882087647914886,0.613080978393555,0.162253439426422,0.773178815841675,0.4154112637043,-0.00627680402249098,0.909612059593201,0.681267976760864,0.190149277448654,0.706906676292419,0.831912755966187,-0.116082906723022,0.542628705501556,0.690624117851257,-0.0869839191436768,0.717963814735413,0.659044802188873,-0.150412812829018,0.736909806728363,0.743872225284576,-0.129222169518471,0.655710160732269,0.60773241519928,-0.0749892368912697,0.790593445301056,0.660950779914856,-0.0479007586836815,0.748898923397064,0.674918055534363,0.00812165904790163,0.737847983837128,0.64899867773056,-0.028643062338233,0.760250210762024,0.690624117851257,-0.0869839191436768,0.717963814735413,0.717989802360535,0.0405897162854671,0.694869160652161,0.756262362003326,0.0608001239597797,0.65143746137619,0.678976833820343,-0.0392687804996967,0.733108818531036,0.659044802188873,-0.150412812829018,0.736909806728363,0.736474454402924,0.209694087505341,0.643143713474274,0.586519718170166,-0.777948617935181,-0.225367859005928,0.602712392807007,-0.101435728371143,0.791485011577606,0.906894266605377,0.323374181985855,0.270133167505264,0.677899897098541,0.0962725058197975,0.728823304176331,0.243940129876137,0.955701053142548,-0.164708197116852,-0.494273453950882,-0.227749466896057,0.838942110538483,-0.92545360326767,0.111800312995911,-0.361989408731461,-0.819015681743622,-0.179321333765984,-0.545029640197754,0.0568797327578068,-0.9729984998703,-0.22369310259819,
- -0.26536551117897,0.856229841709137,0.443228542804718,-0.868812680244446,0.461586564779282,-0.179171204566956,-0.958572506904602,0.282811671495438,-0.0340050756931305,-0.26536551117897,0.856229841709137,0.443228542804718,-0.958572506904602,0.282811671495438,-0.0340050756931305,-0.92545360326767,0.111800312995911,-0.361989408731461,-0.494273453950882,-0.227749466896057,0.838942110538483,-0.924807727336884,0.00733586819842458,-0.380364030599594,-0.868812680244446,0.461586564779282,-0.179171204566956,-0.882503747940063,0.0951417535543442,-0.460581332445145,-0.952234506607056,0.00789873208850622,-0.305265456438065,-0.98230504989624,-0.0473854951560497,-0.181193962693214,-0.848009169101715,0.15484593808651,0.506856143474579,-0.748875021934509,0.29300719499588,-0.594418168067932,-0.98230504989624,-0.0473854951560497,-0.181193962693214,-0.952234506607056,0.00789873208850622,-0.305265456438065,-0.925428450107574,-0.161655023694038,-0.342709630727768,-0.964646816253662,-0.149320334196091,-0.217163816094399,-0.901721835136414,-0.260329067707062,-0.34514707326889,-0.811226785182953,-0.322652846574783,-0.487653821706772,-0.937483191490173,-0.0179145615547895,-0.347569316625595,-0.967985689640045,0.00893272925168276,-0.250846385955811,-0.748875021934509,0.29300719499588,-0.594418168067932,-0.848009169101715,0.15484593808651,0.506856143474579,-0.837475776672363,0.257204651832581,-0.482161909341812,-0.961804032325745,0.0677192360162735,-0.265230089426041,-0.933835446834564,0.0617841258645058,-0.3523268699646,-0.956826865673065,-0.0207283832132816,-0.289918541908264,-0.882402300834656,-0.12205770611763,-0.454387634992599,-0.916421830654144,-0.0929026082158089,-0.389281690120697,-0.910572111606598,0.0299179013818502,-0.41226601600647,-0.86326402425766,0.406082540750504,-0.299787074327469,-0.87029105424881,-0.319878697395325,-0.374527961015701,-0.165114194154739,0.893850803375244,0.416855216026306,-0.188597530126572,0.899446487426758,0.394242316484451,-0.208120763301849,0.956208884716034,0.205792084336281,-0.309917062520981,0.855400204658508,0.41502046585083,
- -0.26536551117897,0.856229841709137,0.443228542804718,-0.199883446097374,0.918815433979034,0.340330481529236,-0.811226785182953,-0.322652846574783,-0.487653821706772,-0.901721835136414,-0.260329067707062,-0.34514707326889,-0.916421830654144,-0.0929026082158089,-0.389281690120697,-0.868812680244446,0.461586564779282,-0.179171204566956,-0.924807727336884,0.00733586819842458,-0.380364030599594,-0.914969086647034,0.133424460887909,-0.38082754611969,-0.958572506904602,0.282811671495438,-0.0340050756931305,-0.958572506904602,0.282811671495438,-0.0340050756931305,-0.914969086647034,0.133424460887909,-0.38082754611969,-0.92545360326767,0.111800312995911,-0.361989408731461,-0.868812680244446,0.461586564779282,-0.179171204566956,-0.26536551117897,0.856229841709137,0.443228542804718,-0.309917062520981,0.855400204658508,0.41502046585083,-0.882503747940063,0.0951417535543442,-0.460581332445145,-0.899448752403259,-0.0748163089156151,-0.430574536323547,0.0568797327578068,-0.9729984998703,-0.22369310259819,-0.819015681743622,-0.179321333765984,-0.545029640197754,-0.811226785182953,-0.322652846574783,-0.487653821706772,-0.889910399913788,0.422267496585846,-0.172480598092079,-0.883857905864716,0.155376613140106,-0.44119518995285,-0.937483191490173,-0.0179145615547895,-0.347569316625595,0.0130377439782023,-0.621037721633911,-0.783672332763672,0.0800783634185791,-0.187603816390038,-0.978974997997284,-0.985967636108398,-0.0586799681186676,-0.156283050775528,-0.914223432540894,0.0942019820213318,-0.394108444452286,-0.994105935096741,-0.0655471757054329,-0.0863528326153755,-0.934299230575562,0.337708383798599,0.114184387028217,-0.928655326366425,0.108780391514301,-0.354635208845139,-0.889384686946869,-0.347153395414352,0.297454714775085,-0.977590084075928,0.210502162575722,-0.00254954933188856,-0.985967636108398,-0.0586799681186676,-0.156283050775528,-0.934299230575562,0.337708383798599,0.114184387028217,-0.994105935096741,-0.0655471757054329,-0.0863528326153755,-0.889384686946869,-0.347153395414352,0.297454714775085,-0.928655326366425,0.108780391514301,-0.354635208845139,
- -0.99754798412323,-0.00177010206971318,0.0699637606739998,-0.927994906902313,-0.0851048678159714,-0.36274328827858,-0.970696628093719,-0.234481602907181,0.0525970831513405,-0.964646816253662,-0.149320334196091,-0.217163816094399,-0.925428450107574,-0.161655023694038,-0.342709630727768,-0.847760617733002,0.21905192732811,-0.4830302298069,-0.991721034049988,-0.12087868899107,0.0433329604566097,-0.86326402425766,0.406082540750504,-0.299787074327469,-0.7310591340065,0.182351291179657,-0.657495558261871,-0.924948036670685,0.228840678930283,-0.303485065698624,-0.877303302288055,0.0444874949753284,-0.47787019610405,-0.876283764839172,-0.099078081548214,-0.471497982740402,-0.804587960243225,-0.259083271026611,-0.534335196018219,-0.922897577285767,-0.116231814026833,-0.367083609104156,-0.867368459701538,-0.12759505212307,-0.481031626462936,-0.956826865673065,-0.0207283832132816,-0.289918541908264,-0.87029105424881,-0.319878697395325,-0.374527961015701,-0.901792347431183,-0.0853242352604866,-0.423662930727005,-0.882402300834656,-0.12205770611763,-0.454387634992599,-0.7310591340065,0.182351291179657,-0.657495558261871,-0.899448752403259,-0.0748163089156151,-0.430574536323547,-0.819015681743622,-0.179321333765984,-0.545029640197754,-0.924948036670685,0.228840678930283,-0.303485065698624,-0.7310591340065,0.182351291179657,-0.657495558261871,-0.86326402425766,0.406082540750504,-0.299787074327469,-0.910572111606598,0.0299179013818502,-0.41226601600647,-0.933835446834564,0.0617841258645058,-0.3523268699646,-0.854139566421509,-0.0108631737530231,-0.519930243492126,-0.725915729999542,0.00914184655994177,-0.68772292137146,-0.889910399913788,0.422267496585846,-0.172480598092079,-0.811226785182953,-0.322652846574783,-0.487653821706772,-0.916421830654144,-0.0929026082158089,-0.389281690120697,-0.882402300834656,-0.12205770611763,-0.454387634992599,-0.901792347431183,-0.0853242352604866,-0.423662930727005,-0.804587960243225,-0.259083271026611,-0.534335196018219,-0.876283764839172,-0.099078081548214,-0.471497982740402,-0.877303302288055,0.0444874949753284,-0.47787019610405,
- -0.924948036670685,0.228840678930283,-0.303485065698624,-0.985967636108398,-0.0586799681186676,-0.156283050775528,-0.977590084075928,0.210502162575722,-0.00254954933188856,-0.993288636207581,-0.102495588362217,-0.0535951890051365,-0.914223432540894,0.0942019820213318,-0.394108444452286,-0.934299230575562,0.337708383798599,0.114184387028217,0.0398754104971886,0.796148777008057,-0.603785455226898,-0.0639602318406105,0.995123088359833,0.0750943869352341,-0.928655326366425,0.108780391514301,-0.354635208845139,-0.985967636108398,-0.0586799681186676,-0.156283050775528,0.0800783634185791,-0.187603816390038,-0.978974997997284,0.0398754104971886,0.796148777008057,-0.603785455226898,-0.934299230575562,0.337708383798599,0.114184387028217,-0.928655326366425,0.108780391514301,-0.354635208845139,-0.0639602318406105,0.995123088359833,0.0750943869352341,-0.0853321179747581,0.731655836105347,0.676312208175659,-0.99754798412323,-0.00177010206971318,0.0699637606739998,-0.925428450107574,-0.161655023694038,-0.342709630727768,-0.901721835136414,-0.260329067707062,-0.34514707326889,-0.967985689640045,0.00893272925168276,-0.250846385955811,-0.847760617733002,0.21905192732811,-0.4830302298069,-0.952234506607056,0.00789873208850622,-0.305265456438065,-0.916421830654144,-0.0929026082158089,-0.389281690120697,-0.901721835136414,-0.260329067707062,-0.34514707326889,-0.925428450107574,-0.161655023694038,-0.342709630727768,-0.916421830654144,-0.0929026082158089,-0.389281690120697,-0.952234506607056,0.00789873208850622,-0.305265456438065,-0.748875021934509,0.29300719499588,-0.594418168067932,-0.933835446834564,0.0617841258645058,-0.3523268699646,-0.933835446834564,0.0617841258645058,-0.3523268699646,-0.748875021934509,0.29300719499588,-0.594418168067932,-0.961804032325745,0.0677192360162735,-0.265230089426041,-0.854139566421509,-0.0108631737530231,-0.519930243492126,-0.977590084075928,0.210502162575722,-0.00254954933188856,-0.964646816253662,-0.149320334196091,-0.217163816094399,-0.991721034049988,-0.12087868899107,0.0433329604566097,-0.993288636207581,-0.102495588362217,-0.0535951890051365,
- -0.964646816253662,-0.149320334196091,-0.217163816094399,-0.977590084075928,0.210502162575722,-0.00254954933188856,-0.994105935096741,-0.0655471757054329,-0.0863528326153755,-0.98230504989624,-0.0473854951560497,-0.181193962693214,-0.98230504989624,-0.0473854951560497,-0.181193962693214,-0.994105935096741,-0.0655471757054329,-0.0863528326153755,-0.889384686946869,-0.347153395414352,0.297454714775085,-0.848009169101715,0.15484593808651,0.506856143474579,-0.848009169101715,0.15484593808651,0.506856143474579,-0.889384686946869,-0.347153395414352,0.297454714775085,-0.970696628093719,-0.234481602907181,0.0525970831513405,-0.970696628093719,-0.234481602907181,0.0525970831513405,-0.927994906902313,-0.0851048678159714,-0.36274328827858,-0.354407876729965,-0.793641746044159,-0.49449759721756,-0.848009169101715,0.15484593808651,0.506856143474579,-0.970696628093719,-0.234481602907181,0.0525970831513405,-0.354407876729965,-0.793641746044159,-0.49449759721756,-0.837475776672363,0.257204651832581,-0.482161909341812,-0.933835446834564,0.0617841258645058,-0.3523268699646,-0.725915729999542,0.00914184655994177,-0.68772292137146,-0.913749575614929,0.0270862653851509,-0.405373960733414,-0.910572111606598,0.0299179013818502,-0.41226601600647,-0.956826865673065,-0.0207283832132816,-0.289918541908264,-0.804587960243225,-0.259083271026611,-0.534335196018219,-0.914969086647034,0.133424460887909,-0.38082754611969,-0.924807727336884,0.00733586819842458,-0.380364030599594,-0.922897577285767,-0.116231814026833,-0.367083609104156,-0.92545360326767,0.111800312995911,-0.361989408731461,-0.914969086647034,0.133424460887909,-0.38082754611969,-0.804587960243225,-0.259083271026611,-0.534335196018219,-0.924948036670685,0.228840678930283,-0.303485065698624,-0.819015681743622,-0.179321333765984,-0.545029640197754,-0.889910399913788,0.422267496585846,-0.172480598092079,-0.876283764839172,-0.099078081548214,-0.471497982740402,-0.867368459701538,-0.12759505212307,-0.481031626462936,-0.883857905864716,0.155376613140106,-0.44119518995285,-0.876283764839172,-0.099078081548214,-0.471497982740402,
- -0.889910399913788,0.422267496585846,-0.172480598092079,-0.901792347431183,-0.0853242352604866,-0.423662930727005,-0.877303302288055,0.0444874949753284,-0.47787019610405,-0.87029105424881,-0.319878697395325,-0.374527961015701,-0.86326402425766,0.406082540750504,-0.299787074327469,-0.877303302288055,0.0444874949753284,-0.47787019610405,-0.901792347431183,-0.0853242352604866,-0.423662930727005,-0.910572111606598,0.0299179013818502,-0.41226601600647,-0.87029105424881,-0.319878697395325,-0.374527961015701,-0.956826865673065,-0.0207283832132816,-0.289918541908264,-0.208120763301849,0.956208884716034,0.205792084336281,-0.868292987346649,0.130344316363335,-0.478620588779449,-0.882503747940063,0.0951417535543442,-0.460581332445145,-0.309917062520981,0.855400204658508,0.41502046585083,-0.698720037937164,-0.067256435751915,-0.712226808071136,0.172645226120949,-0.913972616195679,-0.367216199636459,0.0568797327578068,-0.9729984998703,-0.22369310259819,-0.899448752403259,-0.0748163089156151,-0.430574536323547,-0.913749575614929,0.0270862653851509,-0.405373960733414,-0.698720037937164,-0.067256435751915,-0.712226808071136,-0.899448752403259,-0.0748163089156151,-0.430574536323547,-0.7310591340065,0.182351291179657,-0.657495558261871,-0.910572111606598,0.0299179013818502,-0.41226601600647,0.0224983058869839,0.887051999568939,0.461120992898941,-0.0681960135698318,0.892443716526031,0.445975035429001,-0.106627620756626,0.893522918224335,0.436173439025879,-0.0438370816409588,0.894145607948303,0.445625305175781,-0.0403062365949154,0.894893169403076,0.44445663690567,0.0200463980436325,0.892335891723633,0.450926631689072,0.463946878910065,-0.22694656252861,-0.856299340724945,-0.17088557779789,-0.971895039081573,0.161920547485352,-0.915560960769653,-0.142215952277184,-0.376194983720779,-0.831533432006836,0.112381033599377,-0.543987691402435,0.241397500038147,0.857012748718262,-0.455254167318344,-0.609482526779175,0.246736884117126,-0.753426790237427,-0.674275934696198,0.410045057535172,-0.61417829990387,0.241397500038147,0.857012748718262,-0.455254167318344,
- 0.463946878910065,-0.22694656252861,-0.856299340724945,-0.831533432006836,0.112381033599377,-0.543987691402435,-0.609482526779175,0.246736884117126,-0.753426790237427,-0.84681636095047,0.0017481871182099,-0.531882524490356,-0.870359122753143,0.0625101402401924,-0.488433629274368,-0.674275934696198,0.410045057535172,-0.61417829990387,-0.979703605175018,-0.0163446143269539,-0.19978454709053,-0.944180011749268,0.292311638593674,0.151914402842522,-0.650773346424103,0.178017616271973,-0.738108217716217,-0.977660834789276,-0.046561274677515,-0.204966738820076,-0.977660834789276,-0.046561274677515,-0.204966738820076,-0.977479159832001,-0.128820180892944,-0.16715270280838,-0.971182823181152,-0.175565391778946,-0.16118523478508,-0.979703605175018,-0.0163446143269539,-0.19978454709053,-0.960090219974518,-0.220813438296318,-0.1716628074646,-0.950856983661652,-0.0281236208975315,-0.308350771665573,-0.933001935482025,0.00517665455117822,-0.359834223985672,-0.926023960113525,-0.306098490953445,-0.220869407057762,-0.944180011749268,0.292311638593674,0.151914402842522,-0.984867095947266,0.0739507526159287,-0.156742200255394,-0.959805011749268,0.27703669667244,0.044999185949564,-0.650773346424103,0.178017616271973,-0.738108217716217,-0.96406477689743,0.0703650116920471,-0.256179094314575,-0.965909779071808,-0.07905163615942,-0.246514096856117,-0.947088897228241,-0.0818524733185768,-0.310359179973602,-0.894173562526703,-0.0206753425300121,-0.447243005037308,-0.908825278282166,0.018163425847888,-0.416781485080719,-0.863796830177307,-0.270741552114487,-0.424916505813599,-0.816150963306427,0.348908126354218,-0.460609138011932,0.279578536748886,0.893526375293732,-0.351349472999573,0.188527852296829,0.918685376644135,-0.347094058990479,0.241397500038147,0.857012748718262,-0.455254167318344,0.192513599991798,0.855010569095612,-0.481555074453354,0.157812207937241,0.88823413848877,-0.43143418431282,0.242699295282364,0.899278104305267,-0.363862603902817,-0.926023960113525,-0.306098490953445,-0.220869407057762,-0.965909779071808,-0.07905163615942,-0.246514096856117,
- -0.960090219974518,-0.220813438296318,-0.1716628074646,-0.674275934696198,0.410045057535172,-0.61417829990387,-0.609482526779175,0.246736884117126,-0.753426790237427,-0.847396850585938,0.116767905652523,-0.517961204051971,-0.84681636095047,0.0017481871182099,-0.531882524490356,-0.609482526779175,0.246736884117126,-0.753426790237427,-0.831533432006836,0.112381033599377,-0.543987691402435,-0.847396850585938,0.116767905652523,-0.517961204051971,-0.674275934696198,0.410045057535172,-0.61417829990387,-0.870359122753143,0.0625101402401924,-0.488433629274368,0.192513599991798,0.855010569095612,-0.481555074453354,0.241397500038147,0.857012748718262,-0.455254167318344,-0.868729531764984,-0.0730415210127831,-0.489871293306351,-0.915560960769653,-0.142215952277184,-0.376194983720779,-0.17088557779789,-0.971895039081573,0.161920547485352,-0.926023960113525,-0.306098490953445,-0.220869407057762,-0.933001935482025,0.00517665455117822,-0.359834223985672,-0.936647832393646,0.123896859586239,-0.327628552913666,-0.78565514087677,0.388399094343185,-0.481551796197891,-0.141025260090828,-0.626527667045593,0.766534388065338,-0.987778425216675,0.102610900998116,0.11732292175293,-0.990299344062805,-0.0519487448036671,-0.128874018788338,-0.109723202884197,-0.185066923499107,0.976581275463104,-0.979410827159882,-0.0449753925204277,-0.196803390979767,-0.770368993282318,-0.339070230722427,-0.539965748786926,-0.992332756519318,0.10472259670496,0.0656408816576004,-0.886157691478729,0.307658582925797,-0.346512198448181,-0.9378302693367,0.219265580177307,-0.269067108631134,-0.979410827159882,-0.0449753925204277,-0.196803390979767,-0.886157691478729,0.307658582925797,-0.346512198448181,-0.990299344062805,-0.0519487448036671,-0.128874018788338,-0.770368993282318,-0.339070230722427,-0.539965748786926,-0.905641913414001,-0.242270261049271,-0.348019927740097,-0.996948599815369,-0.0644905567169189,0.0439818985760212,-0.971256256103516,-0.0180975310504436,-0.237347364425659,-0.992332756519318,0.10472259670496,0.0656408816576004,-0.977479159832001,-0.128820180892944,-0.16715270280838,
- -0.914577126502991,-0.106432385742664,-0.390154898166656,-0.974589884281158,0.22369559109211,0.0116138700395823,-0.971182823181152,-0.175565391778946,-0.16118523478508,-0.816150963306427,0.348908126354218,-0.460609138011932,-0.924135386943817,0.0392870269715786,-0.380039751529694,-0.805815100669861,0.191156327724457,-0.560465276241302,-0.957655251026154,0.168475419282913,-0.233479097485542,-0.920442283153534,-0.0878940150141716,-0.380868196487427,-0.921578347682953,-0.120446875691414,-0.369033664464951,-0.854358971118927,-0.0895523577928543,-0.511909365653992,-0.906020402908325,-0.247439458966255,-0.343366801738739,-0.894173562526703,-0.0206753425300121,-0.447243005037308,-0.947088897228241,-0.0818524733185768,-0.310359179973602,-0.936721444129944,-0.0317468456923962,-0.348633140325546,-0.863796830177307,-0.270741552114487,-0.424916505813599,-0.957655251026154,0.168475419282913,-0.233479097485542,-0.805815100669861,0.191156327724457,-0.560465276241302,-0.915560960769653,-0.142215952277184,-0.376194983720779,-0.868729531764984,-0.0730415210127831,-0.489871293306351,-0.957655251026154,0.168475419282913,-0.233479097485542,-0.908825278282166,0.018163425847888,-0.416781485080719,-0.816150963306427,0.348908126354218,-0.460609138011932,-0.96406477689743,0.0703650116920471,-0.256179094314575,-0.980597674846649,0.0419549867510796,-0.191488742828369,-0.999574899673462,0.0191795080900192,-0.0219575930386782,-0.78565514087677,0.388399094343185,-0.481551796197891,-0.936721444129944,-0.0317468456923962,-0.348633140325546,-0.947088897228241,-0.0818524733185768,-0.310359179973602,-0.965909779071808,-0.07905163615942,-0.246514096856117,-0.926023960113525,-0.306098490953445,-0.220869407057762,-0.906020402908325,-0.247439458966255,-0.343366801738739,-0.805815100669861,0.191156327724457,-0.560465276241302,-0.924135386943817,0.0392870269715786,-0.380039751529694,-0.920442283153534,-0.0878940150141716,-0.380868196487427,-0.990299344062805,-0.0519487448036671,-0.128874018788338,-0.987778425216675,0.102610900998116,0.11732292175293,-0.965992748737335,-0.100010439753532,-0.238444954156876,
- -0.9378302693367,0.219265580177307,-0.269067108631134,-0.886157691478729,0.307658582925797,-0.346512198448181,-0.992332756519318,0.10472259670496,0.0656408816576004,-0.052786011248827,0.994281768798828,-0.0928292721509933,-0.0790209621191025,0.795566499233246,0.600690841674805,-0.990299344062805,-0.0519487448036671,-0.128874018788338,-0.886157691478729,0.307658582925797,-0.346512198448181,-0.0790209621191025,0.795566499233246,0.600690841674805,-0.109723202884197,-0.185066923499107,0.976581275463104,-0.992332756519318,0.10472259670496,0.0656408816576004,-0.971256256103516,-0.0180975310504436,-0.237347364425659,0.0433495528995991,0.7300626039505,-0.68200409412384,-0.052786011248827,0.994281768798828,-0.0928292721509933,-0.971182823181152,-0.175565391778946,-0.16118523478508,-0.974589884281158,0.22369559109211,0.0116138700395823,-0.950856983661652,-0.0281236208975315,-0.308350771665573,-0.960090219974518,-0.220813438296318,-0.1716628074646,-0.979703605175018,-0.0163446143269539,-0.19978454709053,-0.971182823181152,-0.175565391778946,-0.16118523478508,-0.960090219974518,-0.220813438296318,-0.1716628074646,-0.965909779071808,-0.07905163615942,-0.246514096856117,-0.965909779071808,-0.07905163615942,-0.246514096856117,-0.96406477689743,0.0703650116920471,-0.256179094314575,-0.944180011749268,0.292311638593674,0.151914402842522,-0.979703605175018,-0.0163446143269539,-0.19978454709053,-0.96406477689743,0.0703650116920471,-0.256179094314575,-0.999574899673462,0.0191795080900192,-0.0219575930386782,-0.984867095947266,0.0739507526159287,-0.156742200255394,-0.944180011749268,0.292311638593674,0.151914402842522,-0.9378302693367,0.219265580177307,-0.269067108631134,-0.965992748737335,-0.100010439753532,-0.238444954156876,-0.914577126502991,-0.106432385742664,-0.390154898166656,-0.977479159832001,-0.128820180892944,-0.16715270280838,-0.977479159832001,-0.128820180892944,-0.16715270280838,-0.977660834789276,-0.046561274677515,-0.204966738820076,-0.979410827159882,-0.0449753925204277,-0.196803390979767,-0.9378302693367,0.219265580177307,-0.269067108631134,
- -0.977660834789276,-0.046561274677515,-0.204966738820076,-0.650773346424103,0.178017616271973,-0.738108217716217,-0.770368993282318,-0.339070230722427,-0.539965748786926,-0.979410827159882,-0.0449753925204277,-0.196803390979767,-0.650773346424103,0.178017616271973,-0.738108217716217,-0.905641913414001,-0.242270261049271,-0.348019927740097,-0.770368993282318,-0.339070230722427,-0.539965748786926,-0.905641913414001,-0.242270261049271,-0.348019927740097,-0.521119952201843,-0.787631094455719,0.328741759061813,-0.996948599815369,-0.0644905567169189,0.0439818985760212,-0.650773346424103,0.178017616271973,-0.738108217716217,-0.959805011749268,0.27703669667244,0.044999185949564,-0.521119952201843,-0.787631094455719,0.328741759061813,-0.905641913414001,-0.242270261049271,-0.348019927740097,-0.96406477689743,0.0703650116920471,-0.256179094314575,-0.894173562526703,-0.0206753425300121,-0.447243005037308,-0.908825278282166,0.018163425847888,-0.416781485080719,-0.896519362926483,0.0248839724808931,-0.442305088043213,-0.980597674846649,0.0419549867510796,-0.191488742828369,-0.906020402908325,-0.247439458966255,-0.343366801738739,-0.854358971118927,-0.0895523577928543,-0.511909365653992,-0.84681636095047,0.0017481871182099,-0.531882524490356,-0.847396850585938,0.116767905652523,-0.517961204051971,-0.831533432006836,0.112381033599377,-0.543987691402435,-0.915560960769653,-0.142215952277184,-0.376194983720779,-0.805815100669861,0.191156327724457,-0.560465276241302,-0.906020402908325,-0.247439458966255,-0.343366801738739,-0.847396850585938,0.116767905652523,-0.517961204051971,-0.78565514087677,0.388399094343185,-0.481551796197891,-0.936647832393646,0.123896859586239,-0.327628552913666,-0.921578347682953,-0.120446875691414,-0.369033664464951,-0.920442283153534,-0.0878940150141716,-0.380868196487427,-0.920442283153534,-0.0878940150141716,-0.380868196487427,-0.924135386943817,0.0392870269715786,-0.380039751529694,-0.936721444129944,-0.0317468456923962,-0.348633140325546,-0.78565514087677,0.388399094343185,-0.481551796197891,-0.863796830177307,-0.270741552114487,-0.424916505813599,
- -0.936721444129944,-0.0317468456923962,-0.348633140325546,-0.924135386943817,0.0392870269715786,-0.380039751529694,-0.816150963306427,0.348908126354218,-0.460609138011932,-0.908825278282166,0.018163425847888,-0.416781485080719,-0.894173562526703,-0.0206753425300121,-0.447243005037308,-0.863796830177307,-0.270741552114487,-0.424916505813599,-0.228871256113052,-0.912662148475647,0.338623285293579,-0.959987819194794,-0.0442153327167034,-0.276529133319855,-0.868729531764984,-0.0730415210127831,-0.489871293306351,-0.17088557779789,-0.971895039081573,0.161920547485352,-0.959987819194794,-0.0442153327167034,-0.276529133319855,-0.896519362926483,0.0248839724808931,-0.442305088043213,-0.908825278282166,0.018163425847888,-0.416781485080719,-0.957655251026154,0.168475419282913,-0.233479097485542,-0.868729531764984,-0.0730415210127831,-0.489871293306351,0.0167418736964464,0.892411828041077,-0.45091125369072,0.112299300730228,0.886949360370636,-0.448006391525269,0.110745921730995,0.892052710056305,-0.438152104616165,0.0450394116342068,0.894890487194061,-0.444007366895676,0.0410755909979343,0.894119620323181,-0.445940405130386,-0.0271537285298109,0.893241226673126,-0.448756903409958,-0.0680228546261787,-0.994185388088226,-0.0834774896502495,-0.987424671649933,-0.0990342125296593,-0.123226337134838,-0.987778425216675,0.102610900998116,0.11732292175293,-0.141025260090828,-0.626527667045593,0.766534388065338,-0.980390012264252,-0.194095611572266,-0.0340920276939869,-0.120607376098633,-0.777715682983398,0.616937637329102,0.0130377439782023,-0.621037721633911,-0.783672332763672,-0.914223432540894,0.0942019820213318,-0.394108444452286,-0.860334277153015,0.066626600921154,-0.505357086658478,0.157812207937241,0.88823413848877,-0.43143418431282,0.192513599991798,0.855010569095612,-0.481555074453354,-0.870359122753143,0.0625101402401924,-0.488433629274368,-0.873353838920593,0.187873765826225,-0.449395716190338,-0.989762723445892,-0.0265750139951706,-0.140227288007736,-0.961283504962921,0.148997783660889,0.2318055331707,-0.980390012264252,-0.194095611572266,-0.0340920276939869,
- -0.951399147510529,0.215885192155838,0.219620615243912,-0.873353838920593,0.187873765826225,-0.449395716190338,-0.995437979698181,-0.0795217081904411,0.052721481770277,-0.985136687755585,0.153128817677498,-0.0778286531567574,-0.985136687755585,0.153128817677498,-0.0778286531567574,-0.995437979698181,-0.0795217081904411,0.052721481770277,-0.981841802597046,-0.0207677222788334,-0.188561215996742,-0.889735162258148,-0.111450456082821,-0.442662626504898,-0.841518998146057,0.183726459741592,-0.508025884628296,-0.927420854568481,0.07819664478302,-0.365753799676895,-0.940540134906769,0.0317071080207825,-0.338199585676193,-0.897143542766571,0.0572132207453251,-0.438018530607224,-0.951442241668701,0.307406544685364,0.0160969235002995,-0.841518998146057,0.183726459741592,-0.508025884628296,-0.742952466011047,-0.0591286011040211,-0.666727423667908,-0.979893922805786,-0.0653484016656876,-0.188513368368149,-0.979893922805786,-0.0653484016656876,-0.188513368368149,-0.742952466011047,-0.0591286011040211,-0.666727423667908,-0.836875200271606,0.0577062740921974,-0.544343531131744,0.0491672866046429,-0.520255208015442,-0.852594316005707,-0.924553692340851,0.053352352231741,-0.377298265695572,-0.836875200271606,0.0577062740921974,-0.544343531131744,-0.868292987346649,0.130344316363335,-0.478620588779449,-0.898483335971832,0.128546819090843,-0.419765889644623,-0.940578877925873,0.058690220117569,-0.334464937448502,-0.886773645877838,-0.128606498241425,-0.443951517343521,-0.965942621231079,0.0244383160024881,-0.257599681615829,-0.981841802597046,-0.0207677222788334,-0.188561215996742,-0.886773645877838,-0.128606498241425,-0.443951517343521,-0.940578877925873,0.058690220117569,-0.334464937448502,-0.897143542766571,0.0572132207453251,-0.438018530607224,-0.384122163057327,-0.405534684658051,-0.829452693462372,-0.967985689640045,0.00893272925168276,-0.250846385955811,-0.937483191490173,-0.0179145615547895,-0.347569316625595,-0.897143542766571,0.0572132207453251,-0.438018530607224,-0.940578877925873,0.058690220117569,-0.334464937448502,-0.847760617733002,0.21905192732811,-0.4830302298069,
- -0.981841802597046,-0.0207677222788334,-0.188561215996742,-0.995437979698181,-0.0795217081904411,0.052721481770277,-0.991721034049988,-0.12087868899107,0.0433329604566097,-0.847760617733002,0.21905192732811,-0.4830302298069,-0.967985689640045,0.00893272925168276,-0.250846385955811,-0.940578877925873,0.058690220117569,-0.334464937448502,-0.981841802597046,-0.0207677222788334,-0.188561215996742,-0.991721034049988,-0.12087868899107,0.0433329604566097,-0.995437979698181,-0.0795217081904411,0.052721481770277,-0.873353838920593,0.187873765826225,-0.449395716190338,-0.993288636207581,-0.102495588362217,-0.0535951890051365,-0.937483191490173,-0.0179145615547895,-0.347569316625595,-0.883857905864716,0.155376613140106,-0.44119518995285,-0.841518998146057,0.183726459741592,-0.508025884628296,-0.897143542766571,0.0572132207453251,-0.438018530607224,-0.841518998146057,0.183726459741592,-0.508025884628296,-0.883857905864716,0.155376613140106,-0.44119518995285,-0.867368459701538,-0.12759505212307,-0.481031626462936,-0.742952466011047,-0.0591286011040211,-0.666727423667908,-0.873353838920593,0.187873765826225,-0.449395716190338,-0.980390012264252,-0.194095611572266,-0.0340920276939869,-0.914223432540894,0.0942019820213318,-0.394108444452286,-0.993288636207581,-0.102495588362217,-0.0535951890051365,-0.836875200271606,0.0577062740921974,-0.544343531131744,-0.742952466011047,-0.0591286011040211,-0.666727423667908,-0.867368459701538,-0.12759505212307,-0.481031626462936,-0.922897577285767,-0.116231814026833,-0.367083609104156,-0.868292987346649,0.130344316363335,-0.478620588779449,-0.836875200271606,0.0577062740921974,-0.544343531131744,-0.922897577285767,-0.116231814026833,-0.367083609104156,-0.924807727336884,0.00733586819842458,-0.380364030599594,-0.882503747940063,0.0951417535543442,-0.460581332445145,-0.974589884281158,0.22369559109211,0.0116138700395823,-0.914577126502991,-0.106432385742664,-0.390154898166656,-0.912961483001709,-0.0716380402445793,-0.401708126068115,-0.978903770446777,0.0697846785187721,-0.192034885287285,-0.974589884281158,0.22369559109211,0.0116138700395823,
- -0.978903770446777,0.0697846785187721,-0.192034885287285,-0.965907514095306,0.00905516557395458,-0.258729130029678,-0.950856983661652,-0.0281236208975315,-0.308350771665573,-0.914577126502991,-0.106432385742664,-0.390154898166656,-0.965992748737335,-0.100010439753532,-0.238444954156876,-0.987013638019562,0.131553992629051,0.0921828076243401,-0.912961483001709,-0.0716380402445793,-0.401708126068115,-0.933001935482025,0.00517665455117822,-0.359834223985672,-0.944074988365173,0.0391326583921909,-0.327400535345078,-0.947777330875397,0.127091974020004,-0.292516469955444,-0.936647832393646,0.123896859586239,-0.327628552913666,-0.947777330875397,0.127091974020004,-0.292516469955444,-0.964523911476135,-0.103619210422039,-0.242809861898422,-0.921578347682953,-0.120446875691414,-0.369033664464951,-0.936647832393646,0.123896859586239,-0.327628552913666,-0.987424671649933,-0.0990342125296593,-0.123226337134838,-0.987013638019562,0.131553992629051,0.0921828076243401,-0.965992748737335,-0.100010439753532,-0.238444954156876,-0.987778425216675,0.102610900998116,0.11732292175293,-0.964523911476135,-0.103619210422039,-0.242809861898422,-0.86320436000824,-0.0397344343364239,-0.503288447856903,-0.854358971118927,-0.0895523577928543,-0.511909365653992,-0.921578347682953,-0.120446875691414,-0.369033664464951,-0.950856983661652,-0.0281236208975315,-0.308350771665573,-0.965907514095306,0.00905516557395458,-0.258729130029678,-0.944074988365173,0.0391326583921909,-0.327400535345078,-0.933001935482025,0.00517665455117822,-0.359834223985672,-0.86320436000824,-0.0397344343364239,-0.503288447856903,-0.860334277153015,0.066626600921154,-0.505357086658478,-0.870359122753143,0.0625101402401924,-0.488433629274368,-0.84681636095047,0.0017481871182099,-0.531882524490356,-0.854358971118927,-0.0895523577928543,-0.511909365653992,-0.961283504962921,0.148997783660889,0.2318055331707,-0.120607376098633,-0.777715682983398,0.616937637329102,-0.980390012264252,-0.194095611572266,-0.0340920276939869,-0.941534399986267,0.323525607585907,-0.0940434783697128,-0.868292987346649,0.130344316363335,-0.478620588779449,
- -0.208120763301849,0.956208884716034,0.205792084336281,-0.973568618297577,-0.227715939283371,-0.0175969935953617,-0.0960098430514336,0.113381154835224,-0.988901734352112,0.099426306784153,-0.162228643894196,-0.981731295585632,0.223729491233826,-0.972459435462952,-0.0653292387723923,-0.515901505947113,0.856541037559509,-0.0135279474779963,-0.233039110898972,0.433522641658783,-0.87048876285553,-0.394156128168106,0.263146042823792,-0.880565166473389,-0.515901505947113,0.856541037559509,-0.0135279474779963,-0.394156128168106,0.263146042823792,-0.880565166473389,-0.0960098430514336,0.113381154835224,-0.988901734352112,-0.973568618297577,-0.227715939283371,-0.0175969935953617,-0.0786152631044388,-0.00703703286126256,-0.996880114078522,-0.233039110898972,0.433522641658783,-0.87048876285553,-0.0051826061680913,0.0656065419316292,-0.997832179069519,-0.0551437623798847,-0.0518306270241737,-0.997132301330566,-0.174793377518654,-0.047181848436594,-0.983474016189575,-0.770900428295136,0.155097872018814,-0.617784142494202,0.390793293714523,0.297422766685486,-0.871102929115295,-0.174793377518654,-0.047181848436594,-0.983474016189575,-0.0551437623798847,-0.0518306270241737,-0.997132301330566,-0.0224142018705606,-0.177398398518562,-0.983883857727051,-0.134681239724159,-0.148895099759102,-0.979638338088989,0.0206262432038784,-0.368232935667038,-0.929504692554474,0.144828453660011,-0.309449166059494,-0.939822316169739,-0.0265849363058805,0.00041519379010424,-0.999646484851837,-0.0800348147749901,-0.0402171202003956,-0.995980381965637,0.390793293714523,0.297422766685486,-0.871102929115295,-0.770900428295136,0.155097872018814,-0.617784142494202,0.153362736105919,0.255722224712372,-0.954508244991302,-0.0913948193192482,0.00339277763850987,-0.995808959007263,-0.017846679314971,0.0303083248436451,-0.999381303787231,-0.0978861972689629,-0.00275773927569389,-0.995193779468536,0.076290637254715,-0.0878913030028343,-0.993204295635223,0.00649143755435944,-0.0967338010668755,-0.995289087295532,-0.00279629626311362,0.0313628241419792,-0.999504148960114,
- -0.0809659510850906,0.373471260070801,-0.924101591110229,-0.0242781937122345,-0.291786968708038,-0.956175148487091,-0.443807691335678,0.893653929233551,0.0664635598659515,-0.436000347137451,0.899402558803558,0.0312826409935951,-0.282000094652176,0.956002533435822,-0.0808393806219101,-0.513452172279358,0.855418741703033,-0.0680120512843132,-0.515901505947113,0.856541037559509,-0.0135279474779963,-0.394815891981125,0.918735802173615,-0.00669083511456847,0.144828453660011,-0.309449166059494,-0.939822316169739,0.0206262432038784,-0.368232935667038,-0.929504692554474,0.00649143755435944,-0.0967338010668755,-0.995289087295532,-0.233039110898972,0.433522641658783,-0.87048876285553,-0.0786152631044388,-0.00703703286126256,-0.996880114078522,-0.071052610874176,0.119055859744549,-0.990342020988464,-0.394156128168106,0.263146042823792,-0.880565166473389,-0.394156128168106,0.263146042823792,-0.880565166473389,-0.071052610874176,0.119055859744549,-0.990342020988464,-0.0960098430514336,0.113381154835224,-0.988901734352112,-0.233039110898972,0.433522641658783,-0.87048876285553,-0.515901505947113,0.856541037559509,-0.0135279474779963,-0.513452172279358,0.855418741703033,-0.0680120512843132,-0.0051826061680913,0.0656065419316292,-0.997832179069519,-0.0354328230023384,-0.0692585408687592,-0.99696934223175,0.223729491233826,-0.972459435462952,-0.0653292387723923,0.099426306784153,-0.162228643894196,-0.981731295585632,0.144828453660011,-0.309449166059494,-0.939822316169739,-0.164218783378601,0.411744564771652,-0.896380841732025,0.0458246357738972,0.165020793676376,-0.985225021839142,-0.0265849363058805,0.00041519379010424,-0.999646484851837,0.736577272415161,-0.621486961841583,-0.266848206520081,0.943285763263702,-0.188077986240387,-0.273566544055939,-0.2003333568573,-0.0391344614326954,-0.978945851325989,0.0401553362607956,0.117677435278893,-0.992239654064178,-0.263419270515442,-0.0459947064518929,-0.963584303855896,-0.428635984659195,0.351143509149551,-0.832447826862335,-0.00152848556172103,0.128807425498962,-0.991668462753296,-0.598642230033875,-0.328316330909729,-0.730640649795532,
- -0.336934030056,0.228769838809967,-0.913312554359436,-0.2003333568573,-0.0391344614326954,-0.978945851325989,-0.428635984659195,0.351143509149551,-0.832447826862335,-0.263419270515442,-0.0459947064518929,-0.963584303855896,-0.598642230033875,-0.328316330909729,-0.730640649795532,-0.00152848556172103,0.128807425498962,-0.991668462753296,-0.417403519153595,0.020188745111227,-0.908496916294098,0.0149528998881578,-0.0602354444563389,-0.99807220697403,-0.401966601610184,-0.214853465557098,-0.89009028673172,-0.134681239724159,-0.148895099759102,-0.979638338088989,-0.0224142018705606,-0.177398398518562,-0.983883857727051,0.19351464509964,0.183650523424149,-0.963755488395691,-0.386985599994659,-0.120739176869392,-0.914146661758423,-0.0809659510850906,0.373471260070801,-0.924101591110229,0.240427017211914,0.170772537589073,-0.955526828765869,-0.140954867005348,0.203635811805725,-0.96884685754776,0.054095983505249,0.0416863858699799,-0.997665166854858,0.0507306270301342,-0.092594176530838,-0.994410693645477,0.106973879039288,-0.259916454553604,-0.959687471389771,-0.0836117267608643,-0.100790955126286,-0.991388082504272,0.0631852522492409,-0.123320654034615,-0.990353286266327,-0.0978861972689629,-0.00275773927569389,-0.995193779468536,-0.0242781937122345,-0.291786968708038,-0.956175148487091,0.0407224856317043,-0.0511708036065102,-0.997859358787537,0.076290637254715,-0.0878913030028343,-0.993204295635223,0.240427017211914,0.170772537589073,-0.955526828765869,-0.0354328230023384,-0.0692585408687592,-0.99696934223175,0.099426306784153,-0.162228643894196,-0.981731295585632,-0.140954867005348,0.203635811805725,-0.96884685754776,0.240427017211914,0.170772537589073,-0.955526828765869,-0.0809659510850906,0.373471260070801,-0.924101591110229,-0.00279629626311362,0.0313628241419792,-0.999504148960114,-0.017846679314971,0.0303083248436451,-0.999381303787231,0.325964897871017,-0.0795433148741722,-0.942029535770416,0.372113883495331,0.0383393056690693,-0.927394926548004,-0.164218783378601,0.411744564771652,-0.896380841732025,0.144828453660011,-0.309449166059494,-0.939822316169739,
- 0.00649143755435944,-0.0967338010668755,-0.995289087295532,0.076290637254715,-0.0878913030028343,-0.993204295635223,0.0407224856317043,-0.0511708036065102,-0.997859358787537,0.106973879039288,-0.259916454553604,-0.959687471389771,0.0507306270301342,-0.092594176530838,-0.994410693645477,0.054095983505249,0.0416863858699799,-0.997665166854858,-0.140954867005348,0.203635811805725,-0.96884685754776,-0.2003333568573,-0.0391344614326954,-0.978945851325989,-0.336934030056,0.228769838809967,-0.913312554359436,-0.300745695829391,-0.0776167288422585,-0.950540661811829,0.0401553362607956,0.117677435278893,-0.992239654064178,-0.428635984659195,0.351143509149551,-0.832447826862335,0.579387068748474,0.795386254787445,-0.177964746952057,-0.0927631035447121,0.99513190984726,-0.0332782380282879,-0.00152848556172103,0.128807425498962,-0.991668462753296,-0.2003333568573,-0.0391344614326954,-0.978945851325989,0.943285763263702,-0.188077986240387,-0.273566544055939,0.579387068748474,0.795386254787445,-0.177964746952057,-0.428635984659195,0.351143509149551,-0.832447826862335,-0.00152848556172103,0.128807425498962,-0.991668462753296,-0.0927631035447121,0.99513190984726,-0.0332782380282879,-0.663153946399689,0.73094367980957,0.161084488034248,-0.417403519153595,0.020188745111227,-0.908496916294098,-0.0224142018705606,-0.177398398518562,-0.983883857727051,0.0206262432038784,-0.368232935667038,-0.929504692554474,-0.0800348147749901,-0.0402171202003956,-0.995980381965637,0.19351464509964,0.183650523424149,-0.963755488395691,-0.0551437623798847,-0.0518306270241737,-0.997132301330566,0.00649143755435944,-0.0967338010668755,-0.995289087295532,0.0206262432038784,-0.368232935667038,-0.929504692554474,-0.0224142018705606,-0.177398398518562,-0.983883857727051,0.00649143755435944,-0.0967338010668755,-0.995289087295532,-0.0551437623798847,-0.0518306270241737,-0.997132301330566,0.390793293714523,0.297422766685486,-0.871102929115295,-0.017846679314971,0.0303083248436451,-0.999381303787231,-0.017846679314971,0.0303083248436451,-0.999381303787231,0.390793293714523,0.297422766685486,-0.871102929115295,
- -0.0913948193192482,0.00339277763850987,-0.995808959007263,0.325964897871017,-0.0795433148741722,-0.942029535770416,-0.336934030056,0.228769838809967,-0.913312554359436,-0.134681239724159,-0.148895099759102,-0.979638338088989,-0.386985599994659,-0.120739176869392,-0.914146661758423,-0.300745695829391,-0.0776167288422585,-0.950540661811829,-0.134681239724159,-0.148895099759102,-0.979638338088989,-0.336934030056,0.228769838809967,-0.913312554359436,-0.263419270515442,-0.0459947064518929,-0.963584303855896,-0.174793377518654,-0.047181848436594,-0.983474016189575,-0.174793377518654,-0.047181848436594,-0.983474016189575,-0.263419270515442,-0.0459947064518929,-0.963584303855896,-0.598642230033875,-0.328316330909729,-0.730640649795532,-0.770900428295136,0.155097872018814,-0.617784142494202,-0.770900428295136,0.155097872018814,-0.617784142494202,-0.598642230033875,-0.328316330909729,-0.730640649795532,-0.401966601610184,-0.214853465557098,-0.89009028673172,-0.401966601610184,-0.214853465557098,-0.89009028673172,0.0149528998881578,-0.0602354444563389,-0.99807220697403,0.338164716959,-0.793464720249176,-0.506022036075592,-0.770900428295136,0.155097872018814,-0.617784142494202,-0.401966601610184,-0.214853465557098,-0.89009028673172,0.338164716959,-0.793464720249176,-0.506022036075592,0.153362736105919,0.255722224712372,-0.954508244991302,-0.017846679314971,0.0303083248436451,-0.999381303787231,0.372113883495331,0.0383393056690693,-0.927394926548004,-0.014942285604775,0.0337700061500072,-0.99931800365448,-0.00279629626311362,0.0313628241419792,-0.999504148960114,-0.0978861972689629,-0.00275773927569389,-0.995193779468536,0.106973879039288,-0.259916454553604,-0.959687471389771,-0.071052610874176,0.119055859744549,-0.990342020988464,-0.0786152631044388,-0.00703703286126256,-0.996880114078522,-0.0836117267608643,-0.100790955126286,-0.991388082504272,-0.0960098430514336,0.113381154835224,-0.988901734352112,-0.071052610874176,0.119055859744549,-0.990342020988464,0.106973879039288,-0.259916454553604,-0.959687471389771,-0.140954867005348,0.203635811805725,-0.96884685754776,
- 0.099426306784153,-0.162228643894196,-0.981731295585632,-0.164218783378601,0.411744564771652,-0.896380841732025,0.0507306270301342,-0.092594176530838,-0.994410693645477,0.0631852522492409,-0.123320654034615,-0.990353286266327,0.0458246357738972,0.165020793676376,-0.985225021839142,0.0507306270301342,-0.092594176530838,-0.994410693645477,-0.164218783378601,0.411744564771652,-0.896380841732025,0.0407224856317043,-0.0511708036065102,-0.997859358787537,0.054095983505249,0.0416863858699799,-0.997665166854858,-0.0242781937122345,-0.291786968708038,-0.956175148487091,-0.0809659510850906,0.373471260070801,-0.924101591110229,0.054095983505249,0.0416863858699799,-0.997665166854858,0.0407224856317043,-0.0511708036065102,-0.997859358787537,-0.00279629626311362,0.0313628241419792,-0.999504148960114,-0.0242781937122345,-0.291786968708038,-0.956175148487091,-0.0978861972689629,-0.00275773927569389,-0.995193779468536,-0.282000094652176,0.956002533435822,-0.0808393806219101,0.0321274548768997,0.105449885129929,-0.993905544281006,-0.0051826061680913,0.0656065419316292,-0.997832179069519,-0.513452172279358,0.855418741703033,-0.0680120512843132,0.253739297389984,-0.0467126369476318,-0.96614408493042,0.405797123908997,-0.913410842418671,-0.0317697450518608,0.223729491233826,-0.972459435462952,-0.0653292387723923,-0.0354328230023384,-0.0692585408687592,-0.99696934223175,-0.014942285604775,0.0337700061500072,-0.99931800365448,0.253739297389984,-0.0467126369476318,-0.96614408493042,-0.0354328230023384,-0.0692585408687592,-0.99696934223175,0.240427017211914,0.170772537589073,-0.955526828765869,-0.00279629626311362,0.0313628241419792,-0.999504148960114,-0.422854006290436,0.887011408805847,0.185486420989037,-0.441085129976273,0.89243620634079,0.094877190887928,-0.445623099803925,0.893505036830902,0.0553965792059898,-0.432106584310532,0.894123017787933,0.117592394351959,-0.429731756448746,0.894883155822754,0.120477363467216,-0.414201319217682,0.892325222492218,0.179423987865448,0.973781824111938,-0.226801037788391,-0.0176155492663383,-0.220592617988586,-0.973174214363098,-0.065352238714695,
- -0.0989976972341537,-0.16157566010952,-0.981882274150848,0.0959584340453148,0.11341504752636,-0.988902866840363,0.519169926643372,0.854563534259796,-0.0135599439963698,0.395339697599411,0.261298686265945,-0.88058477640152,0.235747501254082,0.430271059274673,-0.871372401714325,0.519169926643372,0.854563534259796,-0.0135599439963698,0.973781824111938,-0.226801037788391,-0.0176155492663383,0.0959584340453148,0.11341504752636,-0.988902866840363,0.395339697599411,0.261298686265945,-0.88058477640152,0.0788406059145927,-0.00718945264816284,-0.996861338615417,0.0043809893541038,0.0662365406751633,-0.997794270515442,0.235747501254082,0.430271059274673,-0.871372401714325,-0.155461072921753,-0.0692690014839172,-0.985410392284393,-0.560172915458679,0.30017951130867,-0.772074222564697,0.460319340229034,0.178855091333389,-0.869549810886383,-0.150432869791985,-0.046383049339056,-0.987531423568726,-0.150432869791985,-0.046383049339056,-0.987531423568726,-0.186010196805,-0.128271296620369,-0.974138915538788,-0.173538506031036,-0.178534343838692,-0.968509078025818,-0.155461072921753,-0.0692690014839172,-0.985410392284393,-0.183055073022842,-0.308247536420822,-0.933527946472168,-0.0789142549037933,-0.0634012296795845,-0.994863212108612,-0.0087880389764905,0.0131229506805539,-0.99987530708313,-0.149318724870682,-0.289707213640213,-0.945396065711975,-0.560172915458679,0.30017951130867,-0.772074222564697,-0.171101778745651,0.00808602012693882,-0.985220193862915,-0.373393058776855,0.27535554766655,-0.885865151882172,0.460319340229034,0.178855091333389,-0.869549810886383,-0.0983941555023193,0.0308376178145409,-0.994669616222382,-0.127876088023186,-0.10618394613266,-0.986089587211609,-0.0732399672269821,-0.0639156997203827,-0.995264172554016,0.092275008559227,-0.0111742038279772,-0.995670855045319,-0.000441149022663012,0.0280709303915501,-0.9996058344841,0.0248455666005611,-0.291777670383453,-0.956163465976715,0.0809552595019341,0.373408436775208,-0.924127876758575,0.444272965192795,0.893417179584503,0.066539578139782,0.395198702812195,0.918571174144745,-0.00670581357553601,
- 0.519169926643372,0.854563534259796,-0.0135599439963698,0.51325523853302,0.85553765296936,-0.0680034533143044,0.452897399663925,0.888392746448517,-0.0751142352819443,0.436536133289337,0.899143159389496,0.0312708094716072,-0.149318724870682,-0.289707213640213,-0.945396065711975,-0.127876088023186,-0.10618394613266,-0.986089587211609,-0.183055073022842,-0.308247536420822,-0.933527946472168,0.235747501254082,0.430271059274673,-0.871372401714325,0.395339697599411,0.261298686265945,-0.88058477640152,0.0709905996918678,0.119134739041328,-0.990336954593658,0.0788406059145927,-0.00718945264816284,-0.996861338615417,0.395339697599411,0.261298686265945,-0.88058477640152,0.0959584340453148,0.11341504752636,-0.988902866840363,0.0709905996918678,0.119134739041328,-0.990336954593658,0.235747501254082,0.430271059274673,-0.871372401714325,0.0043809893541038,0.0662365406751633,-0.997794270515442,0.51325523853302,0.85553765296936,-0.0680034533143044,0.519169926643372,0.854563534259796,-0.0135599439963698,0.0362930074334145,-0.0698140859603882,-0.996899604797363,-0.0989976972341537,-0.16157566010952,-0.981882274150848,-0.220592617988586,-0.973174214363098,-0.065352238714695,-0.149318724870682,-0.289707213640213,-0.945396065711975,-0.0087880389764905,0.0131229506805539,-0.99987530708313,-0.0559624619781971,0.15907983481884,-0.985678315162659,0.15383081138134,0.412275493144989,-0.897978365421295,-0.766284644603729,-0.62690806388855,0.140691831707954,-0.496141314506531,0.162564814090729,-0.852887153625488,-0.231525927782059,-0.0384107530117035,-0.972070217132568,-0.951683402061462,-0.185227453708649,0.244927659630775,-0.167543157935143,-0.0283720213919878,-0.98545640707016,0.238350033760071,-0.322537034749985,-0.916056215763092,-0.406196415424347,0.122669659554958,-0.905514538288116,0.00544063467532396,0.318691223859787,-0.94784289598465,-0.0603452622890472,0.294472217559814,-0.953752815723419,-0.167543157935143,-0.0283720213919878,-0.98545640707016,0.00544063467532396,0.318691223859787,-0.94784289598465,-0.231525927782059,-0.0384107530117035,-0.972070217132568,
- 0.238350033760071,-0.322537034749985,-0.916056215763092,0.0155593901872635,-0.225719526410103,-0.97406804561615,-0.394828379154205,-0.0387743376195431,-0.917936384677887,-0.122301712632179,0.00395342474803329,-0.992485105991364,-0.406196415424347,0.122669659554958,-0.905514538288116,-0.186010196805,-0.128271296620369,-0.974138915538788,0.0442050732672215,-0.106121271848679,-0.993370056152344,-0.393778592348099,0.197215676307678,-0.897799730300903,-0.173538506031036,-0.178534343838692,-0.968509078025818,0.0809552595019341,0.373408436775208,-0.924127876758575,-0.0535582490265369,0.0410195402801037,-0.99772185087204,0.140998974442482,0.203720167279243,-0.968822658061981,-0.240682333707809,0.171048119664192,-0.955413341522217,-0.0499170571565628,-0.0930575802922249,-0.994408667087555,-0.0616220235824585,-0.123288884758949,-0.990455746650696,0.0835206061601639,-0.100708298385143,-0.991404116153717,-0.10688978433609,-0.259603977203369,-0.959781467914581,0.092275008559227,-0.0111742038279772,-0.995670855045319,-0.0732399672269821,-0.0639156997203827,-0.995264172554016,-0.051284596323967,-0.0480330437421799,-0.997528374195099,0.0248455666005611,-0.291777670383453,-0.956163465976715,-0.240682333707809,0.171048119664192,-0.955413341522217,0.140998974442482,0.203720167279243,-0.968822658061981,-0.0989976972341537,-0.16157566010952,-0.981882274150848,0.0362930074334145,-0.0698140859603882,-0.996899604797363,-0.240682333707809,0.171048119664192,-0.955413341522217,-0.000441149022663012,0.0280709303915501,-0.9996058344841,0.0809552595019341,0.373408436775208,-0.924127876758575,-0.0983941555023193,0.0308376178145409,-0.994669616222382,-0.193668320775032,0.0557466074824333,-0.979481935501099,-0.438497364521027,-0.0372389182448387,-0.897960662841797,0.15383081138134,0.412275493144989,-0.897978365421295,-0.051284596323967,-0.0480330437421799,-0.997528374195099,-0.0732399672269821,-0.0639156997203827,-0.995264172554016,-0.127876088023186,-0.10618394613266,-0.986089587211609,-0.149318724870682,-0.289707213640213,-0.945396065711975,-0.10688978433609,-0.259603977203369,-0.959781467914581,
- 0.140998974442482,0.203720167279243,-0.968822658061981,-0.0535582490265369,0.0410195402801037,-0.99772185087204,-0.0499170571565628,-0.0930575802922249,-0.994408667087555,-0.231525927782059,-0.0384107530117035,-0.972070217132568,-0.496141314506531,0.162564814090729,-0.852887153625488,-0.128816545009613,-0.0703619867563248,-0.989169120788574,-0.0603452622890472,0.294472217559814,-0.953752815723419,0.00544063467532396,0.318691223859787,-0.94784289598465,-0.406196415424347,0.122669659554958,-0.905514538288116,0.0689669400453568,0.994168639183044,-0.0828997939825058,-0.589921355247498,0.795233190059662,0.139988958835602,-0.231525927782059,-0.0384107530117035,-0.972070217132568,0.00544063467532396,0.318691223859787,-0.94784289598465,-0.589921355247498,0.795233190059662,0.139988958835602,-0.951683402061462,-0.185227453708649,0.244927659630775,-0.406196415424347,0.122669659554958,-0.905514538288116,-0.122301712632179,0.00395342474803329,-0.992485105991364,0.651823043823242,0.730948805809021,-0.202090531587601,0.0689669400453568,0.994168639183044,-0.0828997939825058,-0.173538506031036,-0.178534343838692,-0.968509078025818,-0.393778592348099,0.197215676307678,-0.897799730300903,-0.0789142549037933,-0.0634012296795845,-0.994863212108612,-0.183055073022842,-0.308247536420822,-0.933527946472168,-0.155461072921753,-0.0692690014839172,-0.985410392284393,-0.173538506031036,-0.178534343838692,-0.968509078025818,-0.183055073022842,-0.308247536420822,-0.933527946472168,-0.127876088023186,-0.10618394613266,-0.986089587211609,-0.127876088023186,-0.10618394613266,-0.986089587211609,-0.0983941555023193,0.0308376178145409,-0.994669616222382,-0.560172915458679,0.30017951130867,-0.772074222564697,-0.155461072921753,-0.0692690014839172,-0.985410392284393,-0.0983941555023193,0.0308376178145409,-0.994669616222382,-0.438497364521027,-0.0372389182448387,-0.897960662841797,-0.171101778745651,0.00808602012693882,-0.985220193862915,-0.560172915458679,0.30017951130867,-0.772074222564697,-0.0603452622890472,0.294472217559814,-0.953752815723419,-0.128816545009613,-0.0703619867563248,-0.989169120788574,
- 0.0442050732672215,-0.106121271848679,-0.993370056152344,-0.186010196805,-0.128271296620369,-0.974138915538788,-0.186010196805,-0.128271296620369,-0.974138915538788,-0.150432869791985,-0.046383049339056,-0.987531423568726,-0.167543157935143,-0.0283720213919878,-0.98545640707016,-0.0603452622890472,0.294472217559814,-0.953752815723419,-0.150432869791985,-0.046383049339056,-0.987531423568726,0.460319340229034,0.178855091333389,-0.869549810886383,0.238350033760071,-0.322537034749985,-0.916056215763092,-0.167543157935143,-0.0283720213919878,-0.98545640707016,0.460319340229034,0.178855091333389,-0.869549810886383,0.0155593901872635,-0.225719526410103,-0.97406804561615,0.238350033760071,-0.322537034749985,-0.916056215763092,0.0155593901872635,-0.225719526410103,-0.97406804561615,-0.490236282348633,-0.787236332893372,-0.374068528413773,-0.394828379154205,-0.0387743376195431,-0.917936384677887,0.460319340229034,0.178855091333389,-0.869549810886383,-0.373393058776855,0.27535554766655,-0.885865151882172,-0.490236282348633,-0.787236332893372,-0.374068528413773,0.0155593901872635,-0.225719526410103,-0.97406804561615,-0.0983941555023193,0.0308376178145409,-0.994669616222382,0.092275008559227,-0.0111742038279772,-0.995670855045319,-0.000441149022663012,0.0280709303915501,-0.9996058344841,0.0100152995437384,0.0335460752248764,-0.99938690662384,-0.193668320775032,0.0557466074824333,-0.979481935501099,-0.10688978433609,-0.259603977203369,-0.959781467914581,0.0835206061601639,-0.100708298385143,-0.991404116153717,0.0788406059145927,-0.00718945264816284,-0.996861338615417,0.0709905996918678,0.119134739041328,-0.990336954593658,0.0959584340453148,0.11341504752636,-0.988902866840363,-0.0989976972341537,-0.16157566010952,-0.981882274150848,0.140998974442482,0.203720167279243,-0.968822658061981,-0.10688978433609,-0.259603977203369,-0.959781467914581,0.0709905996918678,0.119134739041328,-0.990336954593658,0.15383081138134,0.412275493144989,-0.897978365421295,-0.0559624619781971,0.15907983481884,-0.985678315162659,-0.0616220235824585,-0.123288884758949,-0.990455746650696,
- -0.0499170571565628,-0.0930575802922249,-0.994408667087555,-0.0499170571565628,-0.0930575802922249,-0.994408667087555,-0.0535582490265369,0.0410195402801037,-0.99772185087204,-0.051284596323967,-0.0480330437421799,-0.997528374195099,0.15383081138134,0.412275493144989,-0.897978365421295,0.0248455666005611,-0.291777670383453,-0.956163465976715,-0.051284596323967,-0.0480330437421799,-0.997528374195099,-0.0535582490265369,0.0410195402801037,-0.99772185087204,0.0809552595019341,0.373408436775208,-0.924127876758575,-0.000441149022663012,0.0280709303915501,-0.9996058344841,0.092275008559227,-0.0111742038279772,-0.995670855045319,0.0248455666005611,-0.291777670383453,-0.956163465976715,-0.405862420797348,-0.913381993770599,-0.0317661240696907,-0.252802103757858,-0.0467236526310444,-0.966389119625092,0.0362930074334145,-0.0698140859603882,-0.996899604797363,-0.220592617988586,-0.973174214363098,-0.065352238714695,-0.252802103757858,-0.0467236526310444,-0.966389119625092,0.0100152995437384,0.0335460752248764,-0.99938690662384,-0.000441149022663012,0.0280709303915501,-0.9996058344841,-0.240682333707809,0.171048119664192,-0.955413341522217,0.0362930074334145,-0.0698140859603882,-0.996899604797363,0.427260756492615,0.892434298992157,-0.14494551718235,0.458747982978821,0.886913657188416,-0.0541730225086212,0.448858320713043,0.892078161239624,-0.052179891616106,0.431018233299255,0.894871056079865,-0.11588479578495,0.431565582752228,0.89401912689209,-0.12033699452877,0.40962228178978,0.893234193325043,-0.18531696498394,0.0551092103123665,-0.994042873382568,-0.0940315648913383,-0.228512302041054,-0.0766988173127174,-0.970515072345734,-0.496141314506531,0.162564814090729,-0.852887153625488,-0.766284644603729,-0.62690806388855,0.140691831707954,-0.320056676864624,-0.169143095612526,-0.932177245616913,-0.619100153446198,-0.778068065643311,0.106418497860432,0.736577272415161,-0.621486961841583,-0.266848206520081,0.0401553362607956,0.117677435278893,-0.992239654064178,0.0360745303332806,0.0604043453931808,-0.997521996498108,0.452897399663925,0.888392746448517,-0.0751142352819443,
- 0.51325523853302,0.85553765296936,-0.0680034533143044,0.0043809893541038,0.0662365406751633,-0.997794270515442,0.103431530296803,0.203929826617241,-0.973506331443787,-0.219364747405052,-0.00454809097573161,-0.975632429122925,-0.554399371147156,0.172678261995316,-0.814139723777771,-0.320056676864624,-0.169143095612526,-0.932177245616913,-0.526459991931915,0.224366754293442,-0.820060610771179,0.103431530296803,0.203929826617241,-0.973506331443787,-0.396900624036789,-0.0791257619857788,-0.9144446849823,-0.272117584943771,0.152690678834915,-0.950072348117828,-0.272117584943771,0.152690678834915,-0.950072348117828,-0.396900624036789,-0.0791257619857788,-0.9144446849823,-0.1439089179039,-0.071928471326828,-0.986973464488983,0.0657005235552788,-0.147150278091431,-0.986929774284363,0.127851352095604,0.194157302379608,-0.972603261470795,-0.0117371324449778,0.108784392476082,-0.993996143341064,-0.0486885383725166,0.0523205250501633,-0.997442722320557,0.0730644762516022,0.0774293839931488,-0.994316935539246,-0.37792706489563,0.334918469190598,-0.863134264945984,0.127851352095604,0.194157302379608,-0.972603261470795,0.278215646743774,-0.0527890957891941,-0.959066987037659,-0.249019473791122,-0.0727969110012054,-0.965758740901947,-0.249019473791122,-0.0727969110012054,-0.965758740901947,0.278215646743774,-0.0527890957891941,-0.959066987037659,0.11300864815712,0.0661996975541115,-0.991386234760284,0.785891354084015,-0.524219810962677,-0.327976077795029,-0.0737021416425705,0.0402144715189934,-0.996469259262085,0.11300864815712,0.0661996975541115,-0.991386234760284,0.0321274548768997,0.105449885129929,-0.993905544281006,-0.0310202576220036,0.104786038398743,-0.994010865688324,0.00757545093074441,0.00525514502078295,-0.999957501888275,0.0927207693457603,-0.181703433394432,-0.978972315788269,-0.0954738333821297,-0.0392070151865482,-0.994659543037415,-0.1439089179039,-0.071928471326828,-0.986973464488983,0.0927207693457603,-0.181703433394432,-0.978972315788269,0.00757545093074441,0.00525514502078295,-0.999957501888275,0.0730644762516022,0.0774293839931488,-0.994316935539246,
- 0.639092564582825,-0.403916716575623,-0.654531836509705,-0.0800348147749901,-0.0402171202003956,-0.995980381965637,-0.0265849363058805,0.00041519379010424,-0.999646484851837,0.0730644762516022,0.0774293839931488,-0.994316935539246,0.00757545093074441,0.00525514502078295,-0.999957501888275,0.19351464509964,0.183650523424149,-0.963755488395691,-0.1439089179039,-0.071928471326828,-0.986973464488983,-0.396900624036789,-0.0791257619857788,-0.9144446849823,-0.386985599994659,-0.120739176869392,-0.914146661758423,0.19351464509964,0.183650523424149,-0.963755488395691,-0.0800348147749901,-0.0402171202003956,-0.995980381965637,0.00757545093074441,0.00525514502078295,-0.999957501888275,-0.1439089179039,-0.071928471326828,-0.986973464488983,-0.386985599994659,-0.120739176869392,-0.914146661758423,-0.396900624036789,-0.0791257619857788,-0.9144446849823,0.103431530296803,0.203929826617241,-0.973506331443787,-0.300745695829391,-0.0776167288422585,-0.950540661811829,-0.0265849363058805,0.00041519379010424,-0.999646484851837,0.0458246357738972,0.165020793676376,-0.985225021839142,0.127851352095604,0.194157302379608,-0.972603261470795,0.0730644762516022,0.0774293839931488,-0.994316935539246,0.127851352095604,0.194157302379608,-0.972603261470795,0.0458246357738972,0.165020793676376,-0.985225021839142,0.0631852522492409,-0.123320654034615,-0.990353286266327,0.278215646743774,-0.0527890957891941,-0.959066987037659,0.103431530296803,0.203929826617241,-0.973506331443787,-0.320056676864624,-0.169143095612526,-0.932177245616913,0.0401553362607956,0.117677435278893,-0.992239654064178,-0.300745695829391,-0.0776167288422585,-0.950540661811829,0.11300864815712,0.0661996975541115,-0.991386234760284,0.278215646743774,-0.0527890957891941,-0.959066987037659,0.0631852522492409,-0.123320654034615,-0.990353286266327,-0.0836117267608643,-0.100790955126286,-0.991388082504272,0.0321274548768997,0.105449885129929,-0.993905544281006,0.11300864815712,0.0661996975541115,-0.991386234760284,-0.0836117267608643,-0.100790955126286,-0.991388082504272,-0.0786152631044388,-0.00703703286126256,-0.996880114078522,
- -0.0051826061680913,0.0656065419316292,-0.997832179069519,-0.393778592348099,0.197215676307678,-0.897799730300903,0.0442050732672215,-0.106121271848679,-0.993370056152344,0.0551163889467716,-0.0711082145571709,-0.995944619178772,-0.15655654668808,0.00273579778149724,-0.987665235996246,-0.393778592348099,0.197215676307678,-0.897799730300903,-0.15655654668808,0.00273579778149724,-0.987665235996246,-0.113023139536381,-0.0436439663171768,-0.992633402347565,-0.0789142549037933,-0.0634012296795845,-0.994863212108612,0.0442050732672215,-0.106121271848679,-0.993370056152344,-0.128816545009613,-0.0703619867563248,-0.989169120788574,-0.427586942911148,0.147302255034447,-0.89189201593399,0.0551163889467716,-0.0711082145571709,-0.995944619178772,-0.0087880389764905,0.0131229506805539,-0.99987530708313,-0.0398526750504971,0.0465638786554337,-0.998120069503784,-0.0851661413908005,0.155792906880379,-0.984111487865448,-0.0559624619781971,0.15907983481884,-0.985678315162659,-0.0851661413908005,0.155792906880379,-0.984111487865448,-0.196416109800339,-0.108810767531395,-0.974464476108551,-0.0616220235824585,-0.123288884758949,-0.990455746650696,-0.0559624619781971,0.15907983481884,-0.985678315162659,-0.228512302041054,-0.0766988173127174,-0.970515072345734,-0.427586942911148,0.147302255034447,-0.89189201593399,-0.128816545009613,-0.0703619867563248,-0.989169120788574,-0.496141314506531,0.162564814090729,-0.852887153625488,-0.196416109800339,-0.108810767531395,-0.974464476108551,0.0578955300152302,-0.0470943339169025,-0.997211217880249,0.0835206061601639,-0.100708298385143,-0.991404116153717,-0.0616220235824585,-0.123288884758949,-0.990455746650696,-0.0789142549037933,-0.0634012296795845,-0.994863212108612,-0.113023139536381,-0.0436439663171768,-0.992633402347565,-0.0398526750504971,0.0465638786554337,-0.998120069503784,-0.0087880389764905,0.0131229506805539,-0.99987530708313,0.0578955300152302,-0.0470943339169025,-0.997211217880249,0.0360745303332806,0.0604043453931808,-0.997521996498108,0.0043809893541038,0.0662365406751633,-0.997794270515442,
- 0.0788406059145927,-0.00718945264816284,-0.996861338615417,0.0835206061601639,-0.100708298385143,-0.991404116153717,-0.554399371147156,0.172678261995316,-0.814139723777771,-0.619100153446198,-0.778068065643311,0.106418497860432,-0.320056676864624,-0.169143095612526,-0.932177245616913,-0.373633533716202,0.322416961193085,-0.869738757610321,0.0321274548768997,0.105449885129929,-0.993905544281006,-0.282000094652176,0.956002533435822,-0.0808393806219101,-0.244033649563789,0.020928218960762,-0.96954083442688,-0.361156731843948,-0.0488391481339931,-0.93122524023056,-0.543367981910706,0.378621459007263,-0.749264359474182,0.116730809211731,0.314517557621002,-0.942046999931335,-0.361156731843948,-0.0488391481339931,-0.93122524023056,-0.244033649563789,0.020928218960762,-0.96954083442688,-0.214732736349106,-0.110749736428261,-0.970373332500458,-0.321946322917938,-0.157736256718636,-0.933525443077087,0.116730809211731,0.314517557621002,-0.942046999931335,-0.543367981910706,0.378621459007263,-0.749264359474182,-0.289941757917404,0.0662180110812187,-0.954750716686249,-0.253482490777969,0.0810094773769379,-0.963941872119904,0.670726478099823,-0.621998608112335,-0.404034286737442,0.869624078273773,-0.18958543241024,-0.455863326787949,-0.387819528579712,-0.048824816942215,-0.920441269874573,-0.141650274395943,0.132306188344955,-0.981035232543945,-0.445805639028549,-0.0472446568310261,-0.893882095813751,-0.591962218284607,0.36663281917572,-0.717747271060944,-0.0434773750603199,0.223860830068588,-0.973650872707367,-0.698245823383331,-0.295861154794693,-0.65185809135437,-0.511338114738464,0.244134396314621,-0.823973059654236,-0.387819528579712,-0.048824816942215,-0.920441269874573,-0.591962218284607,0.36663281917572,-0.717747271060944,-0.445805639028549,-0.0472446568310261,-0.893882095813751,-0.698245823383331,-0.295861154794693,-0.65185809135437,-0.0434773750603199,0.223860830068588,-0.973650872707367,-0.551093220710754,0.0153856324031949,-0.834301710128784,-0.443705409765244,-0.0772626921534538,-0.892835915088654,-0.321946322917938,-0.157736256718636,-0.933525443077087,
- -0.214732736349106,-0.110749736428261,-0.970373332500458,0.0250910613685846,0.279852628707886,-0.959715008735657,-0.465953230857849,-0.034333061426878,-0.884143054485321,-0.387819528579712,-0.048824816942215,-0.920441269874573,-0.511338114738464,0.244134396314621,-0.823973059654236,-0.586723804473877,-0.178438872098923,-0.789882779121399,-0.141650274395943,0.132306188344955,-0.981035232543945,-0.591962218284607,0.36663281917572,-0.717747271060944,0.531272172927856,0.797055244445801,-0.287146002054214,-0.0941996872425079,0.995516121387482,-0.00861272774636745,-0.0434773750603199,0.223860830068588,-0.973650872707367,-0.387819528579712,-0.048824816942215,-0.920441269874573,0.869624078273773,-0.18958543241024,-0.455863326787949,0.531272172927856,0.797055244445801,-0.287146002054214,-0.591962218284607,0.36663281917572,-0.717747271060944,-0.0434773750603199,0.223860830068588,-0.973650872707367,-0.0941996872425079,0.995516121387482,-0.00861272774636745,-0.618963181972504,0.728070080280304,0.29461595416069,-0.551093220710754,0.0153856324031949,-0.834301710128784,0.0250910613685846,0.279852628707886,-0.959715008735657,-0.374271899461746,-0.0296545494347811,-0.926844656467438,-0.388029754161835,0.104843333363533,-0.915664076805115,-0.465953230857849,-0.034333061426878,-0.884143054485321,-0.214732736349106,-0.110749736428261,-0.970373332500458,-0.294540226459503,-0.11806158721447,-0.948318243026733,-0.616541087627411,-0.189147487282753,-0.764264643192291,0.0250910613685846,0.279852628707886,-0.959715008735657,-0.244033649563789,0.020928218960762,-0.96954083442688,-0.283277124166489,-0.071413628757,-0.956375479698181,-0.294540226459503,-0.11806158721447,-0.948318243026733,-0.214732736349106,-0.110749736428261,-0.970373332500458,-0.283277124166489,-0.071413628757,-0.956375479698181,-0.244033649563789,0.020928218960762,-0.96954083442688,0.116730809211731,0.314517557621002,-0.942046999931335,-0.618167459964752,-0.21590219438076,-0.75581419467926,-0.618167459964752,-0.21590219438076,-0.75581419467926,0.116730809211731,0.314517557621002,-0.942046999931335,
- -0.253482490777969,0.0810094773769379,-0.963941872119904,-0.43754318356514,0.0352247878909111,-0.898507237434387,0.0250910613685846,0.279852628707886,-0.959715008735657,-0.616541087627411,-0.189147487282753,-0.764264643192291,-0.325905054807663,0.0761935114860535,-0.942327201366425,-0.374271899461746,-0.0296545494347811,-0.926844656467438,-0.511338114738464,0.244134396314621,-0.823973059654236,-0.321946322917938,-0.157736256718636,-0.933525443077087,-0.465953230857849,-0.034333061426878,-0.884143054485321,-0.586723804473877,-0.178438872098923,-0.789882779121399,-0.321946322917938,-0.157736256718636,-0.933525443077087,-0.511338114738464,0.244134396314621,-0.823973059654236,-0.445805639028549,-0.0472446568310261,-0.893882095813751,-0.361156731843948,-0.0488391481339931,-0.93122524023056,-0.361156731843948,-0.0488391481339931,-0.93122524023056,-0.445805639028549,-0.0472446568310261,-0.893882095813751,-0.698245823383331,-0.295861154794693,-0.65185809135437,-0.543367981910706,0.378621459007263,-0.749264359474182,-0.543367981910706,0.378621459007263,-0.749264359474182,-0.698245823383331,-0.295861154794693,-0.65185809135437,-0.443705409765244,-0.0772626921534538,-0.892835915088654,-0.543367981910706,0.378621459007263,-0.749264359474182,-0.443705409765244,-0.0772626921534538,-0.892835915088654,-0.289941757917404,0.0662180110812187,-0.954750716686249,-0.465953230857849,-0.034333061426878,-0.884143054485321,-0.388029754161835,0.104843333363533,-0.915664076805115,-0.287720650434494,0.0892287790775299,-0.953548729419708,-0.586723804473877,-0.178438872098923,-0.789882779121399,-0.287720650434494,0.0892287790775299,-0.953548729419708,-0.492191463708878,-0.160735845565796,-0.855518281459808,-0.141650274395943,0.132306188344955,-0.981035232543945,-0.586723804473877,-0.178438872098923,-0.789882779121399,-0.374700576066971,0.893537044525146,0.247368678450584,-0.40679082274437,0.895196199417114,0.182058319449425,-0.42238575220108,0.893962562084198,0.149737000465393,-0.399187207221985,0.894183993339539,0.202693283557892,-0.396354854106903,0.894984304904938,0.204709246754646,
- -0.369368106126785,0.894360244274139,0.252362638711929,-0.363196581602097,-0.00165042525622994,-0.93171101808548,-0.640389561653137,0.309057414531708,-0.703124821186066,-0.356522083282471,0.000890974828507751,-0.93428647518158,-0.341762781143188,-0.0474722385406494,-0.938586413860321,-0.341762781143188,-0.0474722385406494,-0.938586413860321,-0.372701644897461,-0.136108621954918,-0.917915046215057,-0.394157618284225,-0.172664254903793,-0.902677536010742,-0.363196581602097,-0.00165042525622994,-0.93171101808548,-0.640389561653137,0.309057414531708,-0.703124821186066,-0.41436955332756,0.0897398665547371,-0.905673623085022,-0.408054649829865,0.0791515931487083,-0.909519910812378,-0.356522083282471,0.000890974828507751,-0.93428647518158,-0.720654010772705,-0.626843810081482,0.296183079481125,-0.630563974380493,0.140626221895218,-0.763291001319885,-0.419816017150879,-0.0467781722545624,-0.906402885913849,-0.882734954357147,-0.18769571185112,0.43075430393219,-0.361744254827499,-0.0305409003049135,-0.931777000427246,-0.0100136063992977,-0.297100216150284,-0.954793751239777,-0.679832994937897,0.212896630167961,-0.70178496837616,-0.165991201996803,0.336418151855469,-0.926968157291412,-0.265662431716919,0.255734890699387,-0.929528534412384,-0.361744254827499,-0.0305409003049135,-0.931777000427246,-0.165991201996803,0.336418151855469,-0.926968157291412,-0.419816017150879,-0.0467781722545624,-0.906402885913849,-0.0100136063992977,-0.297100216150284,-0.954793751239777,-0.291278600692749,-0.0867899432778358,-0.952693104743958,-0.336159974336624,0.00229122047312558,-0.941802144050598,-0.679832994937897,0.212896630167961,-0.70178496837616,-0.372701644897461,-0.136108621954918,-0.917915046215057,-0.250058025121689,-0.0257923509925604,-0.967887282371521,-0.541384637355804,0.242431282997131,-0.805064976215363,-0.394157618284225,-0.172664254903793,-0.902677536010742,-0.541384637355804,0.242431282997131,-0.805064976215363,-0.250058025121689,-0.0257923509925604,-0.967887282371521,-0.304159820079803,0.101824320852757,-0.947163462638855,-0.365040868520737,0.0662989988923073,-0.928627848625183,
- -0.419816017150879,-0.0467781722545624,-0.906402885913849,-0.630563974380493,0.140626221895218,-0.763291001319885,-0.180524662137032,-0.179048478603363,-0.967136204242706,-0.265662431716919,0.255734890699387,-0.929528534412384,-0.165991201996803,0.336418151855469,-0.926968157291412,-0.679832994937897,0.212896630167961,-0.70178496837616,0.0493574030697346,0.995025873184204,-0.0865306705236435,-0.548859775066376,0.795324563980103,0.257316142320633,-0.419816017150879,-0.0467781722545624,-0.906402885913849,-0.165991201996803,0.336418151855469,-0.926968157291412,-0.548859775066376,0.795324563980103,0.257316142320633,-0.882734954357147,-0.18769571185112,0.43075430393219,-0.679832994937897,0.212896630167961,-0.70178496837616,-0.336159974336624,0.00229122047312558,-0.941802144050598,0.602108359336853,0.72861260175705,-0.326480001211166,0.0493574030697346,0.995025873184204,-0.0865306705236435,-0.394157618284225,-0.172664254903793,-0.902677536010742,-0.541384637355804,0.242431282997131,-0.805064976215363,0.127980947494507,-0.244179472327232,-0.961247622966766,-0.295336306095123,-0.0785832107067108,-0.952156007289886,-0.363196581602097,-0.00165042525622994,-0.93171101808548,-0.394157618284225,-0.172664254903793,-0.902677536010742,-0.295336306095123,-0.0785832107067108,-0.952156007289886,-0.307120352983475,-0.0488063916563988,-0.95041835308075,-0.307120352983475,-0.0488063916563988,-0.95041835308075,0.0669758170843124,-0.213431641459465,-0.974659442901611,-0.640389561653137,0.309057414531708,-0.703124821186066,-0.363196581602097,-0.00165042525622994,-0.93171101808548,0.0669758170843124,-0.213431641459465,-0.974659442901611,-0.116136901080608,0.0175603982061148,-0.993077993392944,-0.41436955332756,0.0897398665547371,-0.905673623085022,-0.640389561653137,0.309057414531708,-0.703124821186066,-0.541384637355804,0.242431282997131,-0.805064976215363,-0.365040868520737,0.0662989988923073,-0.928627848625183,-0.138811156153679,-0.0269715394824743,-0.989951550960541,0.127980947494507,-0.244179472327232,-0.961247622966766,-0.250058025121689,-0.0257923509925604,-0.967887282371521,
- -0.180524662137032,-0.179048478603363,-0.967136204242706,-0.365096777677536,-0.0232678148895502,-0.930678725242615,-0.304159820079803,0.101824320852757,-0.947163462638855,-0.265662431716919,0.255734890699387,-0.929528534412384,-0.180524662137032,-0.179048478603363,-0.967136204242706,-0.250058025121689,-0.0257923509925604,-0.967887282371521,-0.372701644897461,-0.136108621954918,-0.917915046215057,-0.372701644897461,-0.136108621954918,-0.917915046215057,-0.341762781143188,-0.0474722385406494,-0.938586413860321,-0.361744254827499,-0.0305409003049135,-0.931777000427246,-0.265662431716919,0.255734890699387,-0.929528534412384,-0.341762781143188,-0.0474722385406494,-0.938586413860321,-0.356522083282471,0.000890974828507751,-0.93428647518158,-0.0100136063992977,-0.297100216150284,-0.954793751239777,-0.361744254827499,-0.0305409003049135,-0.931777000427246,-0.291278600692749,-0.0867899432778358,-0.952693104743958,-0.0100136063992977,-0.297100216150284,-0.954793751239777,-0.356522083282471,0.000890974828507751,-0.93428647518158,-0.408054649829865,0.0791515931487083,-0.909519910812378,-0.432078242301941,-0.0610429085791111,-0.899767935276031,-0.365096777677536,-0.0232678148895502,-0.930678725242615,-0.180524662137032,-0.179048478603363,-0.967136204242706,-0.630563974380493,0.140626221895218,-0.763291001319885,0.386884450912476,0.895097970962524,-0.221630737185478,0.421696692705154,0.893469214439392,-0.154546812176704,0.424105286598206,0.894015252590179,-0.144469678401947,0.399626046419144,0.894843876361847,-0.198880448937416,0.399376809597015,0.894039690494537,-0.202956214547157,0.368060052394867,0.893580257892609,-0.25699445605278,0.062718354165554,-0.993361473083496,-0.0964333191514015,-0.432078242301941,-0.0610429085791111,-0.899767935276031,-0.630563974380493,0.140626221895218,-0.763291001319885,-0.720654010772705,-0.626843810081482,0.296183079481125,0.0933889225125313,0.995625078678131,0.00303994351997972,0.108379445970058,0.99315083026886,0.0436521582305431,0.110621690750122,0.991420269012451,0.0696339085698128,0.104495421051979,0.992999255657196,0.0550748072564602,
- 0.0940705239772797,0.995562791824341,0.00237946351990104,0.0918849930167198,0.995769739151001,-0.000138563438667916,0.0708826705813408,0.995634317398071,-0.0607292167842388,0.0786324366927147,0.995442748069763,-0.0539522022008896,0.0839512422680855,0.995077311992645,-0.0526645220816135,0.0925420448184013,0.995708584785461,0.000692632573191077,-0.616541087627411,-0.189147487282753,-0.764264643192291,-0.973946809768677,0.0922999083995819,0.207143008708954,0.762470126152039,0.608977317810059,-0.218600213527679,-0.325905054807663,0.0761935114860535,-0.942327201366425,0.127980947494507,-0.244179472327232,-0.961247622966766,-0.138811156153679,-0.0269715394824743,-0.989951550960541,0.0439895130693913,0.998016357421875,-0.0450387597084045,0.950628638267517,0.104180432856083,-0.292320996522903,-0.295336306095123,-0.0785832107067108,-0.952156007289886,0.127980947494507,-0.244179472327232,-0.961247622966766,0.950628638267517,0.104180432856083,-0.292320996522903,0.848242461681366,-0.472206085920334,-0.239804267883301,-0.307120352983475,-0.0488063916563988,-0.95041835308075,-0.295336306095123,-0.0785832107067108,-0.952156007289886,0.848242461681366,-0.472206085920334,-0.239804267883301,0.746527552604675,-0.628689587116241,-0.21782086789608,0.746527552604675,-0.628689587116241,-0.21782086789608,0.39142507314682,-0.907003104686737,-0.15534445643425,0.0669758170843124,-0.213431641459465,-0.974659442901611,-0.307120352983475,-0.0488063916563988,-0.95041835308075,0.39142507314682,-0.907003104686737,-0.15534445643425,-0.114276461303234,-0.991072952747345,-0.0686682090163231,-0.116136901080608,0.0175603982061148,-0.993077993392944,0.0669758170843124,-0.213431641459465,-0.974659442901611,-0.43706613779068,-0.89731627702713,0.0616183988749981,-0.618167459964752,-0.21590219438076,-0.75581419467926,-0.43754318356514,0.0352247878909111,-0.898507237434387,0.014945276081562,-0.99467808008194,-0.101942881941795,-0.761198580265045,-0.62509161233902,0.172734528779984,-0.283277124166489,-0.071413628757,-0.956375479698181,-0.618167459964752,-0.21590219438076,-0.75581419467926,
- -0.43706613779068,-0.89731627702713,0.0616183988749981,-0.294540226459503,-0.11806158721447,-0.948318243026733,-0.283277124166489,-0.071413628757,-0.956375479698181,-0.761198580265045,-0.62509161233902,0.172734528779984,-0.86011803150177,-0.46822115778923,0.202400222420692,-0.616541087627411,-0.189147487282753,-0.764264643192291,-0.294540226459503,-0.11806158721447,-0.948318243026733,-0.86011803150177,-0.46822115778923,0.202400222420692,-0.973946809768677,0.0922999083995819,0.207143008708954,0.792255878448486,-0.607282102108002,-0.0594899244606495,0.989667117595673,-0.1424330919981,-0.0164859797805548,0.0186695661395788,-0.0292092747986317,-0.999398946762085,0.353229761123657,0.208009779453278,-0.91211873292923,-0.119734294712543,0.0963851436972618,-0.988116204738617,-0.127925887703896,0.205782577395439,-0.970200300216675,0.217472538352013,0.157258361577988,-0.963314890861511,-0.458277493715286,-0.224088758230209,-0.860096454620361,-0.122690923511982,0.190909847617149,-0.973909854888916,0.0186695661395788,-0.0292092747986317,-0.999398946762085,-0.127925887703896,0.205782577395439,-0.970200300216675,-0.119734294712543,0.0963851436972618,-0.988116204738617,-0.458277493715286,-0.224088758230209,-0.860096454620361,0.217472538352013,0.157258361577988,-0.963314890861511,-0.15509694814682,0.0490588285028934,-0.986680448055267,0.2024335116148,0.00836407393217087,-0.979260325431824,-0.151105269789696,-0.0834940746426582,-0.984985291957855,0.0186695661395788,-0.0292092747986317,-0.999398946762085,-0.122690923511982,0.190909847617149,-0.973909854888916,-0.314570486545563,-0.142096415162086,-0.938538253307343,0.353229761123657,0.208009779453278,-0.91211873292923,-0.127925887703896,0.205782577395439,-0.970200300216675,0.508661687374115,0.860749840736389,-0.0193151980638504,-0.175797790288925,0.983011424541473,-0.052760973572731,0.217472538352013,0.157258361577988,-0.963314890861511,0.0186695661395788,-0.0292092747986317,-0.999398946762085,0.989667117595673,-0.1424330919981,-0.0164859797805548,0.508661687374115,0.860749840736389,-0.0193151980638504,
- -0.127925887703896,0.205782577395439,-0.970200300216675,0.217472538352013,0.157258361577988,-0.963314890861511,-0.175797790288925,0.983011424541473,-0.052760973572731,-0.760520279407501,0.648975253105164,-0.0209769308567047,-0.15509694814682,0.0490588285028934,-0.986680448055267,-0.122690923511982,0.190909847617149,-0.973909854888916,-0.997577428817749,-0.0684068500995636,-0.0126404594630003,-0.729763507843018,0.681414783000946,-0.0558485090732574,-0.314570486545563,-0.142096415162086,-0.938538253307343,-0.997577428817749,-0.0684068500995636,-0.0126404594630003,-0.122690923511982,0.190909847617149,-0.973909854888916,-0.119734294712543,0.0963851436972618,-0.988116204738617,-0.793224990367889,-0.608524560928345,-0.0221794154495001,-0.793224990367889,-0.608524560928345,-0.0221794154495001,-0.119734294712543,0.0963851436972618,-0.988116204738617,-0.458277493715286,-0.224088758230209,-0.860096454620361,-0.442898094654083,-0.896223187446594,-0.0250060968101025,-0.442898094654083,-0.896223187446594,-0.0250060968101025,-0.458277493715286,-0.224088758230209,-0.860096454620361,-0.151105269789696,-0.0834940746426582,-0.984985291957855,-0.151105269789696,-0.0834940746426582,-0.984985291957855,0.2024335116148,0.00836407393217087,-0.979260325431824,0.443657964468002,-0.718793094158173,-0.53526097536087,-0.442898094654083,-0.896223187446594,-0.0250060968101025,-0.151105269789696,-0.0834940746426582,-0.984985291957855,0.443657964468002,-0.718793094158173,-0.53526097536087,0.318347871303558,-0.947197556495667,-0.0383601486682892,-0.729763507843018,0.681414783000946,-0.0558485090732574,0.323899567127228,0.943153440952301,-0.0745022147893906,0.00886983331292868,0.0647294968366623,-0.997863471508026,-0.314570486545563,-0.142096415162086,-0.938538253307343,0.00886983331292868,0.0647294968366623,-0.997863471508026,-0.106306865811348,-0.0689861997961998,-0.991937458515167,0.353229761123657,0.208009779453278,-0.91211873292923,-0.314570486545563,-0.142096415162086,-0.938538253307343,-0.427739530801773,0.902008414268494,0.0584802404046059,
- -0.45394179224968,0.890566289424896,-0.0287848617881536,-0.479263126850128,0.875910818576813,-0.0555615574121475,-0.476693749427795,0.87906813621521,-0.0015292955795303,-0.473396360874176,0.880846738815308,0.00222906144335866,-0.464157551527023,0.883400559425354,0.0645077675580978,-0.792858421802521,-0.606501340866089,-0.0594278126955032,-0.305788487195969,0.164285600185394,-0.937818586826324,-0.0443617701530457,-0.022900428622961,-0.998753011226654,-0.989624440670013,-0.142728880047798,-0.0164887085556984,0.0966184139251709,0.104141868650913,-0.989858269691467,0.442323684692383,-0.228325232863426,-0.867304682731628,-0.238845333456993,0.154167398810387,-0.95874148607254,0.10144667327404,0.206452116370201,-0.973183393478394,0.0993058830499649,0.200284525752068,-0.974691987037659,0.0966184139251709,0.104141868650913,-0.989858269691467,0.10144667327404,0.206452116370201,-0.973183393478394,-0.0443617701530457,-0.022900428622961,-0.998753011226654,0.442323684692383,-0.228325232863426,-0.867304682731628,0.136288851499558,-0.0912314057350159,-0.986459374427795,-0.220321610569954,0.0102321952581406,-0.975373685359955,0.147701680660248,0.0505052804946899,-0.987741589546204,-0.238845333456993,0.154167398810387,-0.95874148607254,-0.0443617701530457,-0.022900428622961,-0.998753011226654,-0.305788487195969,0.164285600185394,-0.937818586826324,0.346016675233841,-0.176774218678474,-0.921424627304077,0.0993058830499649,0.200284525752068,-0.974691987037659,0.10144667327404,0.206452116370201,-0.973183393478394,-0.238845333456993,0.154167398810387,-0.95874148607254,0.173859372735024,0.983355462551117,-0.0527715496718884,-0.509341597557068,0.860347211360931,-0.0193328801542521,-0.0443617701530457,-0.022900428622961,-0.998753011226654,0.10144667327404,0.206452116370201,-0.973183393478394,-0.509341597557068,0.860347211360931,-0.0193328801542521,-0.989624440670013,-0.142728880047798,-0.0164887085556984,-0.238845333456993,0.154167398810387,-0.95874148607254,0.147701680660248,0.0505052804946899,-0.987741589546204,0.760190367698669,0.649361312389374,-0.0209869462996721,
- 0.173859372735024,0.983355462551117,-0.0527715496718884,0.729836285114288,0.681336164474487,-0.0558581128716469,0.346016675233841,-0.176774218678474,-0.921424627304077,0.0824934989213943,0.00056747708003968,-0.99659138917923,-0.0466680303215981,0.995808839797974,-0.0786577463150024,0.0993058830499649,0.200284525752068,-0.974691987037659,0.346016675233841,-0.176774218678474,-0.921424627304077,0.729836285114288,0.681336164474487,-0.0558581128716469,0.997577667236328,-0.0684064701199532,-0.0126266917213798,0.997577667236328,-0.0684064701199532,-0.0126266917213798,0.792997181415558,-0.608821153640747,-0.022186728194356,0.0966184139251709,0.104141868650913,-0.989858269691467,0.0993058830499649,0.200284525752068,-0.974691987037659,0.792997181415558,-0.608821153640747,-0.022186728194356,0.44237744808197,-0.896479964256287,-0.025017449632287,0.442323684692383,-0.228325232863426,-0.867304682731628,0.0966184139251709,0.104141868650913,-0.989858269691467,0.44237744808197,-0.896479964256287,-0.025017449632287,0.136288851499558,-0.0912314057350159,-0.986459374427795,0.442323684692383,-0.228325232863426,-0.867304682731628,0.136288851499558,-0.0912314057350159,-0.986459374427795,-0.443455010652542,-0.718850195407867,-0.535352230072021,-0.220321610569954,0.0102321952581406,-0.975373685359955,0.44237744808197,-0.896479964256287,-0.025017449632287,-0.318423956632614,-0.947172105312347,-0.0383578762412071,-0.443455010652542,-0.718850195407867,-0.535352230072021,0.136288851499558,-0.0912314057350159,-0.986459374427795,-0.07563666254282,0.0122419716790318,-0.997060239315033,0.0824934989213943,0.00056747708003968,-0.99659138917923,0.346016675233841,-0.176774218678474,-0.921424627304077,-0.305788487195969,0.164285600185394,-0.937818586826324,0.454110860824585,0.890480220317841,-0.0287806112319231,0.427887231111526,0.901940703392029,0.0584422536194324,0.46428856253624,0.883335173130035,0.0644604489207268,0.473396301269531,0.880846738815308,0.00223177904263139,0.47678530216217,0.879018485546112,-0.00152853992767632,0.479449272155762,0.875805735588074,-0.0556143000721931,
- 0.139248237013817,-0.988183677196503,-0.0640542730689049,-0.07563666254282,0.0122419716790318,-0.997060239315033,-0.305788487195969,0.164285600185394,-0.937818586826324,-0.792858421802521,-0.606501340866089,-0.0594278126955032,0.00013741385191679,-0.999697625637054,-0.0245889574289322,0.000225657102419063,-0.999504804611206,-0.0314675308763981,-0.000224775532842614,-0.999180853366852,-0.0404646508395672,-1.25244068840402e-005,-0.999504804611206,-0.0314654372632504,0.000415408576373011,-0.99969744682312,-0.0245943646878004,-9.15156197152101e-005,-0.999762415885925,-0.0218005552887917,0.00195868080481887,-0.999017834663391,0.0442655086517334,1.11467227270623e-006,-0.996894896030426,0.0787439048290253,-0.00319641106761992,-0.999016284942627,0.0442306511104107,-0.000297955208225176,-0.999762117862701,-0.0218073315918446,-0.106306865811348,-0.0689861997961998,-0.991937458515167,-0.676287353038788,-0.735097169876099,-0.0476185120642185,0.792255878448486,-0.607282102108002,-0.0594899244606495,0.353229761123657,0.208009779453278,-0.91211873292923,-0.264579892158508,0.113737106323242,-0.957633256912231,-0.106306865811348,-0.0689861997961998,-0.991937458515167,0.00886983331292868,0.0647294968366623,-0.997863471508026,-0.0248587634414434,0.0577481016516685,-0.99802166223526,-0.264579892158508,0.113737106323242,-0.957633256912231,-0.676287353038788,-0.735097169876099,-0.0476185120642185,-0.106306865811348,-0.0689861997961998,-0.991937458515167,0.141729444265366,-0.0312693044543266,-0.989411532878876,0.00886983331292868,0.0647294968366623,-0.997863471508026,0.323899567127228,0.943153440952301,-0.0745022147893906,-0.492191463708878,-0.160735845565796,-0.855518281459808,-0.661484956741333,-0.692169010639191,0.288686364889145,0.670726478099823,-0.621998608112335,-0.404034286737442,-0.141650274395943,0.132306188344955,-0.981035232543945,-0.287720650434494,0.0892287790775299,-0.953548729419708,-0.400547474622726,0.00295991031453013,-0.916271209716797,-0.741169571876526,0.216877147555351,-0.635320246219635,-0.492191463708878,-0.160735845565796,-0.855518281459808,
- -0.309957355260849,0.0261769723147154,-0.950390040874481,-0.374271899461746,-0.0296545494347811,-0.926844656467438,-0.325905054807663,0.0761935114860535,-0.942327201366425,-0.0753965228796005,-0.0706787630915642,-0.994645655155182,-0.194683626294136,-0.141376078128815,-0.970624089241028,-0.287720650434494,0.0892287790775299,-0.953548729419708,-0.388029754161835,0.104843333363533,-0.915664076805115,-0.741169571876526,0.216877147555351,-0.635320246219635,-0.661484956741333,-0.692169010639191,0.288686364889145,-0.492191463708878,-0.160735845565796,-0.855518281459808,-0.574335396289825,0.229961603879929,-0.785656750202179,-0.388029754161835,0.104843333363533,-0.915664076805115,-0.374271899461746,-0.0296545494347811,-0.926844656467438,-0.0753965228796005,-0.0706787630915642,-0.994645655155182,-0.325905054807663,0.0761935114860535,-0.942327201366425,0.762470126152039,0.608977317810059,-0.218600213527679,-0.754991769790649,-0.064777635037899,-0.652526795864105,-0.823780357837677,-0.0485474206507206,-0.564826548099518,-0.985960602760315,0.0973570868372917,-0.135659068822861,-0.336165815591812,0.298761904239655,-0.89315938949585,-0.823780357837677,-0.0485474206507206,-0.564826548099518,-0.754991769790649,-0.064777635037899,-0.652526795864105,-0.717791020870209,-0.200646713376045,-0.666720986366272,-0.793084383010864,-0.155601695179939,-0.58890175819397,-0.336165815591812,0.298761904239655,-0.89315938949585,-0.985960602760315,0.0973570868372917,-0.135659068822861,-0.70374995470047,0.292878121137619,-0.647270023822784,-0.77901166677475,-0.00335035147145391,-0.627000391483307,0.325692027807236,-0.621738970279694,-0.712295770645142,0.46132218837738,-0.18886162340641,-0.866898536682129,-0.833516299724579,0.0227300766855478,-0.552027106285095,-0.666144371032715,0.220626801252365,-0.712443470954895,-0.861945569515228,0.0204084515571594,-0.506590008735657,-0.871313214302063,0.369525611400604,-0.322899252176285,-0.669795274734497,0.24422562122345,-0.701233327388763,-0.964744448661804,-0.191144451498985,-0.180919721722603,-0.865843236446381,0.315047919750214,-0.388664782047272,
- -0.833516299724579,0.0227300766855478,-0.552027106285095,-0.871313214302063,0.369525611400604,-0.322899252176285,-0.861945569515228,0.0204084515571594,-0.506590008735657,-0.964744448661804,-0.191144451498985,-0.180919721722603,-0.669795274734497,0.24422562122345,-0.701233327388763,-0.936457693576813,0.113392762839794,-0.331947296857834,-0.684961080551147,0.00586221367120743,-0.728555977344513,-0.793084383010864,-0.155601695179939,-0.58890175819397,-0.717791020870209,-0.200646713376045,-0.666720986366272,-0.548645973205566,0.178533613681793,-0.816770017147064,-0.883148372173309,-0.0336817353963852,-0.467882841825485,-0.833516299724579,0.0227300766855478,-0.552027106285095,-0.865843236446381,0.315047919750214,-0.388664782047272,-0.939878344535828,-0.0730714574456215,-0.333600223064423,-0.666144371032715,0.220626801252365,-0.712443470954895,-0.871313214302063,0.369525611400604,-0.322899252176285,0.276928871870041,0.796521604061127,-0.537460505962372,-0.0825709700584412,0.995614767074585,0.0439693629741669,-0.669795274734497,0.24422562122345,-0.701233327388763,-0.833516299724579,0.0227300766855478,-0.552027106285095,0.46132218837738,-0.18886162340641,-0.866898536682129,0.276928871870041,0.796521604061127,-0.537460505962372,-0.871313214302063,0.369525611400604,-0.322899252176285,-0.669795274734497,0.24422562122345,-0.701233327388763,-0.0825709700584412,0.995614767074585,0.0439693629741669,-0.344909936189651,0.729316115379334,0.590876579284668,-0.936457693576813,0.113392762839794,-0.331947296857834,-0.548645973205566,0.178533613681793,-0.816770017147064,-0.81196540594101,-0.108902603387833,-0.573456406593323,-0.836519718170166,0.102777630090714,-0.538211464881897,-0.883148372173309,-0.0336817353963852,-0.467882841825485,-0.717791020870209,-0.200646713376045,-0.666720986366272,-0.787096202373505,-0.171209380030632,-0.592593550682068,-0.918264508247375,-0.26154425740242,-0.297295808792114,-0.548645973205566,0.178533613681793,-0.816770017147064,-0.754991769790649,-0.064777635037899,-0.652526795864105,-0.790839493274689,-0.12786366045475,-0.598517954349518,
- -0.787096202373505,-0.171209380030632,-0.592593550682068,-0.717791020870209,-0.200646713376045,-0.666720986366272,-0.790839493274689,-0.12786366045475,-0.598517954349518,-0.754991769790649,-0.064777635037899,-0.652526795864105,-0.336165815591812,0.298761904239655,-0.89315938949585,-0.902692079544067,-0.258772313594818,-0.343778669834137,-0.902692079544067,-0.258772313594818,-0.343778669834137,-0.336165815591812,0.298761904239655,-0.89315938949585,-0.77901166677475,-0.00335035147145391,-0.627000391483307,-0.887515664100647,-0.056976743042469,-0.457241117954254,-0.548645973205566,0.178533613681793,-0.816770017147064,-0.918264508247375,-0.26154425740242,-0.297295808792114,-0.783924698829651,0.000533183745574206,-0.620855569839478,-0.81196540594101,-0.108902603387833,-0.573456406593323,-0.865843236446381,0.315047919750214,-0.388664782047272,-0.793084383010864,-0.155601695179939,-0.58890175819397,-0.883148372173309,-0.0336817353963852,-0.467882841825485,-0.939878344535828,-0.0730714574456215,-0.333600223064423,-0.793084383010864,-0.155601695179939,-0.58890175819397,-0.865843236446381,0.315047919750214,-0.388664782047272,-0.861945569515228,0.0204084515571594,-0.506590008735657,-0.823780357837677,-0.0485474206507206,-0.564826548099518,-0.823780357837677,-0.0485474206507206,-0.564826548099518,-0.861945569515228,0.0204084515571594,-0.506590008735657,-0.964744448661804,-0.191144451498985,-0.180919721722603,-0.985960602760315,0.0973570868372917,-0.135659068822861,-0.964744448661804,-0.191144451498985,-0.180919721722603,-0.684961080551147,0.00586221367120743,-0.728555977344513,-0.416411489248276,-0.818093776702881,-0.396640956401825,-0.985960602760315,0.0973570868372917,-0.135659068822861,-0.964744448661804,-0.191144451498985,-0.180919721722603,-0.416411489248276,-0.818093776702881,-0.396640956401825,-0.70374995470047,0.292878121137619,-0.647270023822784,-0.939878344535828,-0.0730714574456215,-0.333600223064423,-0.883148372173309,-0.0336817353963852,-0.467882841825485,-0.836519718170166,0.102777630090714,-0.538211464881897,-0.796873569488525,0.155747339129448,-0.583725333213806,
- -0.796873569488525,0.155747339129448,-0.583725333213806,-0.912961483001709,-0.0881455615162849,-0.398411482572556,-0.666144371032715,0.220626801252365,-0.712443470954895,-0.939878344535828,-0.0730714574456215,-0.333600223064423,-0.169951573014259,0.893397331237793,0.415881842374802,-0.233971402049065,0.89506471157074,0.379627108573914,-0.265418887138367,0.893839716911316,0.361390888690948,-0.215704873204231,0.894187688827515,0.392300665378571,-0.212255656719208,0.894929051399231,0.392491608858109,-0.162338599562645,0.894221901893616,0.417149066925049,-0.821242988109589,-0.0754380226135254,-0.565569758415222,-0.948075771331787,0.297883152961731,-0.111435949802399,-0.473670959472656,0.300165235996246,-0.827971398830414,-0.812086880207062,-0.0474592670798302,-0.581603288650513,-0.812086880207062,-0.0474592670798302,-0.581603288650513,-0.82606714963913,-0.134393006563187,-0.547313094139099,-0.8217453956604,-0.193696290254593,-0.535925507545471,-0.821242988109589,-0.0754380226135254,-0.565569758415222,-0.948075771331787,0.297883152961731,-0.111435949802399,-0.827173829078674,0.00100979779381305,-0.561945199966431,-0.806033551692963,0.303447157144547,-0.508163094520569,-0.473670959472656,0.300165235996246,-0.827971398830414,-0.428565979003906,-0.627577543258667,0.649982810020447,-0.934818267822266,0.216147780418396,-0.281771034002304,-0.864107966423035,0.0112609220668674,-0.503180503845215,-0.486289322376251,-0.18701559305191,0.853550136089325,-0.833737552165985,0.0272237118333578,-0.551489531993866,-0.471311330795288,-0.267157465219498,-0.840531051158905,-0.92605859041214,0.230277255177498,-0.298978000879288,-0.700636506080627,0.333892911672592,-0.630574405193329,-0.733954429626465,0.31219270825386,-0.603196918964386,-0.833737552165985,0.0272237118333578,-0.551489531993866,-0.700636506080627,0.333892911672592,-0.630574405193329,-0.864107966423035,0.0112609220668674,-0.503180503845215,-0.471311330795288,-0.267157465219498,-0.840531051158905,-0.804275691509247,0.016580194234848,-0.594025135040283,-0.787718832492828,0.098096139729023,-0.608174443244934,
- -0.92605859041214,0.230277255177498,-0.298978000879288,-0.82606714963913,-0.134393006563187,-0.547313094139099,-0.754329383373261,-0.0258262492716312,-0.655987858772278,-0.926555573940277,0.187030971050262,-0.326364934444427,-0.8217453956604,-0.193696290254593,-0.535925507545471,-0.926555573940277,0.187030971050262,-0.326364934444427,-0.754329383373261,-0.0258262492716312,-0.655987858772278,-0.787474989891052,0.0998557731509209,-0.608203768730164,-0.826895475387573,-0.0247636660933495,-0.56181013584137,-0.864107966423035,0.0112609220668674,-0.503180503845215,-0.934818267822266,0.216147780418396,-0.281771034002304,-0.708861172199249,-0.0857906267046928,-0.700111329555511,-0.733954429626465,0.31219270825386,-0.603196918964386,-0.700636506080627,0.333892911672592,-0.630574405193329,-0.92605859041214,0.230277255177498,-0.298978000879288,-0.00821768213063478,0.994840025901794,-0.101122491061687,-0.307978183031082,0.796327173709869,0.520588457584381,-0.864107966423035,0.0112609220668674,-0.503180503845215,-0.700636506080627,0.333892911672592,-0.630574405193329,-0.307978183031082,0.796327173709869,0.520588457584381,-0.486289322376251,-0.18701559305191,0.853550136089325,-0.92605859041214,0.230277255177498,-0.298978000879288,-0.787718832492828,0.098096139729023,-0.608174443244934,0.312993317842484,0.728137314319611,-0.609796106815338,-0.00821768213063478,0.994840025901794,-0.101122491061687,-0.8217453956604,-0.193696290254593,-0.535925507545471,-0.926555573940277,0.187030971050262,-0.326364934444427,-0.51895660161972,-0.254993349313736,-0.815881371498108,-0.770032823085785,-0.143347069621086,-0.6216921210289,-0.821242988109589,-0.0754380226135254,-0.565569758415222,-0.8217453956604,-0.193696290254593,-0.535925507545471,-0.770032823085785,-0.143347069621086,-0.6216921210289,-0.772539079189301,-0.0977780595421791,-0.62739372253418,-0.772539079189301,-0.0977780595421791,-0.62739372253418,-0.556661367416382,-0.248994767665863,-0.792546451091766,-0.948075771331787,0.297883152961731,-0.111435949802399,-0.821242988109589,-0.0754380226135254,-0.565569758415222,
- -0.556661367416382,-0.248994767665863,-0.792546451091766,-0.616237640380859,-0.0782658532261848,-0.783661723136902,-0.827173829078674,0.00100979779381305,-0.561945199966431,-0.948075771331787,0.297883152961731,-0.111435949802399,-0.926555573940277,0.187030971050262,-0.326364934444427,-0.826895475387573,-0.0247636660933495,-0.56181013584137,-0.647604525089264,-0.132060557603836,-0.750445544719696,-0.51895660161972,-0.254993349313736,-0.815881371498108,-0.733954429626465,0.31219270825386,-0.603196918964386,-0.708861172199249,-0.0857906267046928,-0.700111329555511,-0.754329383373261,-0.0258262492716312,-0.655987858772278,-0.82606714963913,-0.134393006563187,-0.547313094139099,-0.82606714963913,-0.134393006563187,-0.547313094139099,-0.812086880207062,-0.0474592670798302,-0.581603288650513,-0.833737552165985,0.0272237118333578,-0.551489531993866,-0.733954429626465,0.31219270825386,-0.603196918964386,-0.812086880207062,-0.0474592670798302,-0.581603288650513,-0.473670959472656,0.300165235996246,-0.827971398830414,-0.471311330795288,-0.267157465219498,-0.840531051158905,-0.833737552165985,0.0272237118333578,-0.551489531993866,-0.473670959472656,0.300165235996246,-0.827971398830414,-0.804275691509247,0.016580194234848,-0.594025135040283,-0.471311330795288,-0.267157465219498,-0.840531051158905,-0.473670959472656,0.300165235996246,-0.827971398830414,-0.806033551692963,0.303447157144547,-0.508163094520569,-0.677461624145508,-0.734976530075073,0.0292447991669178,-0.804275691509247,0.016580194234848,-0.594025135040283,-0.856042981147766,0.0155235715210438,-0.516671597957611,-0.820278346538544,0.060218695551157,-0.568785786628723,-0.708861172199249,-0.0857906267046928,-0.700111329555511,-0.934818267822266,0.216147780418396,-0.281771034002304,0.194044440984726,0.895048379898071,-0.401541024446487,0.261475145816803,0.893341362476349,-0.365474909543991,0.26944500207901,0.893975496292114,-0.358060210943222,0.217569813132286,0.894957065582275,-0.389506608247757,0.214946582913399,0.894229829311371,-0.392620623111725,0.158013671636581,0.893612086772919,-0.420106083154678,
- -0.00150993803981692,-0.993082284927368,-0.117410838603973,-0.856042981147766,0.0155235715210438,-0.516671597957611,-0.934818267822266,0.216147780418396,-0.281771034002304,-0.428565979003906,-0.627577543258667,0.649982810020447,-0.708861172199249,-0.0857906267046928,-0.700111329555511,-0.820278346538544,0.060218695551157,-0.568785786628723,-0.787474989891052,0.0998557731509209,-0.608203768730164,-0.754329383373261,-0.0258262492716312,-0.655987858772278,0.0703778192400932,0.995858907699585,-0.0575504004955292,0.10577667504549,0.993879973888397,-0.0318454317748547,0.123143658041954,0.992319583892822,-0.0117322029545903,0.108898662030697,0.993851363658905,-0.0200134590268135,0.0702023431658745,0.995840907096863,-0.0580753535032272,0.0671913549304008,0.995980381965637,-0.0592318922281265,0.0197566039860249,0.995357394218445,-0.0941993147134781,0.0338008031249046,0.995479106903076,-0.0887626931071281,0.0348211340606213,0.99484795331955,-0.0952109768986702,0.0690778121352196,0.995811820030212,-0.0598932392895222,-0.918264508247375,-0.26154425740242,-0.297295808792114,-0.68240749835968,0.0971597358584404,0.72448605298996,0.509612321853638,0.598758459091187,-0.617886364459991,-0.783924698829651,0.000533183745574206,-0.620855569839478,-0.51895660161972,-0.254993349313736,-0.815881371498108,-0.647604525089264,-0.132060557603836,-0.750445544719696,0.0245736185461283,0.996636807918549,-0.0781754404306412,0.619122505187988,0.109182775020599,-0.777667284011841,-0.770032823085785,-0.143347069621086,-0.6216921210289,-0.51895660161972,-0.254993349313736,-0.815881371498108,0.619122505187988,0.109182775020599,-0.777667284011841,0.569349110126495,-0.464703500270844,-0.678153514862061,-0.772539079189301,-0.0977780595421791,-0.62739372253418,-0.770032823085785,-0.143347069621086,-0.6216921210289,0.569349110126495,-0.464703500270844,-0.678153514862061,0.499770522117615,-0.622994720935822,-0.601753354072571,0.499770522117615,-0.622994720935822,-0.601753354072571,0.242159083485603,-0.907193064689636,-0.344034492969513,-0.556661367416382,-0.248994767665863,-0.792546451091766,
- -0.772539079189301,-0.0977780595421791,-0.62739372253418,0.242159083485603,-0.907193064689636,-0.344034492969513,-0.123957872390747,-0.992206513881683,0.0126782599836588,-0.616237640380859,-0.0782658532261848,-0.783661723136902,-0.556661367416382,-0.248994767665863,-0.792546451091766,-0.31662991642952,-0.898800075054169,0.303156763315201,-0.902692079544067,-0.258772313594818,-0.343778669834137,-0.887515664100647,-0.056976743042469,-0.457241117954254,-0.033238597214222,-0.995254635810852,-0.0914516448974609,-0.526590764522552,-0.620316207408905,0.58130007982254,-0.790839493274689,-0.12786366045475,-0.598517954349518,-0.902692079544067,-0.258772313594818,-0.343778669834137,-0.31662991642952,-0.898800075054169,0.303156763315201,-0.787096202373505,-0.171209380030632,-0.592593550682068,-0.790839493274689,-0.12786366045475,-0.598517954349518,-0.526590764522552,-0.620316207408905,0.58130007982254,-0.59219354391098,-0.461911916732788,0.660260617733002,-0.918264508247375,-0.26154425740242,-0.297295808792114,-0.787096202373505,-0.171209380030632,-0.592593550682068,-0.59219354391098,-0.461911916732788,0.660260617733002,-0.68240749835968,0.0971597358584404,0.72448605298996,-0.0558603778481483,-0.601677656173706,-0.796783268451691,-0.0147038260474801,-0.144689038395882,-0.9893679022789,-0.99607115983963,-0.0178075768053532,-0.0867478847503662,-0.919752955436707,0.175100103020668,-0.351275622844696,-0.994066894054413,0.0967640802264214,0.0496761091053486,-0.971598505973816,0.225939899682999,0.0703384950757027,-0.926947355270386,0.187133938074112,-0.325191587209702,-0.888666570186615,-0.228505909442902,0.397563487291336,-0.978305637836456,0.199361145496368,0.0563314519822598,-0.99607115983963,-0.0178075768053532,-0.0867478847503662,-0.971598505973816,0.225939899682999,0.0703384950757027,-0.994066894054413,0.0967640802264214,0.0496761091053486,-0.888666570186615,-0.228505909442902,0.397563487291336,-0.926947355270386,0.187133938074112,-0.325191587209702,-0.987170934677124,0.0634811893105507,0.146505087614059,-0.999888956546783,-0.0136868441477418,-0.00589395966380835,
- -0.99607115983963,-0.0178075768053532,-0.0867478847503662,-0.978305637836456,0.199361145496368,0.0563314519822598,-0.938440322875977,-0.177581459283829,0.296301573514938,-0.919752955436707,0.175100103020668,-0.351275622844696,-0.971598505973816,0.225939899682999,0.0703384950757027,-0.0165780521929264,0.861274838447571,-0.507868945598602,-0.049532774835825,0.983777403831482,0.17241957783699,-0.926947355270386,0.187133938074112,-0.325191587209702,-0.99607115983963,-0.0178075768053532,-0.0867478847503662,-0.0147038260474801,-0.144689038395882,-0.9893679022789,-0.0165780521929264,0.861274838447571,-0.507868945598602,-0.971598505973816,0.225939899682999,0.0703384950757027,-0.926947355270386,0.187133938074112,-0.325191587209702,-0.049532774835825,0.983777403831482,0.17241957783699,-0.0198952686041594,0.648928701877594,0.760589063167572,-0.987170934677124,0.0634811893105507,0.146505087614059,-0.938440322875977,-0.177581459283829,0.296301573514938,-0.0977373346686363,0.68277633190155,0.724060773849487,-0.990791499614716,0.0679856836795807,-0.117090329527855,-0.978305637836456,0.199361145496368,0.0563314519822598,-0.122280560433865,-0.0660644397139549,0.990294456481934,-0.0977373346686363,0.68277633190155,0.724060773849487,-0.938440322875977,-0.177581459283829,0.296301573514938,-0.122280560433865,-0.0660644397139549,0.990294456481934,-0.978305637836456,0.199361145496368,0.0563314519822598,-0.994066894054413,0.0967640802264214,0.0496761091053486,-0.108082257211208,-0.60755980014801,0.786885738372803,-0.108082257211208,-0.60755980014801,0.786885738372803,-0.994066894054413,0.0967640802264214,0.0496761091053486,-0.888666570186615,-0.228505909442902,0.397563487291336,-0.0885598435997963,-0.939235746860504,0.331652522087097,-0.999888956546783,-0.0136868441477418,-0.00589395966380835,0.0200779978185892,-0.75523978471756,-0.655141174793243,-0.0885598435997963,-0.939235746860504,0.331652522087097,-0.888666570186615,-0.228505909442902,0.397563487291336,-0.990791499614716,0.0679856836795807,-0.117090329527855,-0.0977373346686363,0.68277633190155,0.724060773849487,
- -0.00350593402981758,0.880672216415405,-0.473713248968124,-0.990791499614716,0.0679856836795807,-0.117090329527855,-0.994675517082214,-0.0790474563837051,0.0661229267716408,-0.919752955436707,0.175100103020668,-0.351275622844696,-0.938440322875977,-0.177581459283829,0.296301573514938,0.0480752401053905,0.902937412261963,0.427074730396271,-0.0275716092437506,0.89069002866745,0.453774273395538,-0.0524622648954391,0.876000046730042,0.479449391365051,-0.000756841152906418,0.879063725471497,0.476703822612762,0.00262452499009669,0.880888283252716,0.473316937685013,0.0610730610787869,0.883602499961853,0.464237689971924,-0.0617276951670647,-0.608941376209259,0.790809810161591,-0.952897727489471,0.174678012728691,0.247938320040703,-0.999345600605011,-0.0286576766520739,-0.0220706593245268,-0.0185932777822018,-0.141795694828033,0.989721298217773,-0.980104327201843,0.112497180700302,-0.163523301482201,-0.83592677116394,-0.230289205908775,-0.498190075159073,-0.960090100765228,0.17904606461525,0.214871183037758,-0.967639446258545,0.196025386452675,-0.158896386623383,-0.965595602989197,0.202044725418091,-0.163716673851013,-0.980104327201843,0.112497180700302,-0.163523301482201,-0.967639446258545,0.196025386452675,-0.158896386623383,-0.999345600605011,-0.0286576766520739,-0.0220706593245268,-0.83592677116394,-0.230289205908775,-0.498190075159073,-0.988723576068878,-0.0200193151831627,-0.148408025503159,-0.985820591449738,0.0506951250135899,-0.159961685538292,-0.960090100765228,0.17904606461525,0.214871183037758,-0.999345600605011,-0.0286576766520739,-0.0220706593245268,-0.952897727489471,0.174678012728691,0.247938320040703,-0.897393643856049,-0.172333940863609,-0.406184256076813,-0.965595602989197,0.202044725418091,-0.163716673851013,-0.967639446258545,0.196025386452675,-0.158896386623383,-0.960090100765228,0.17904606461525,0.214871183037758,-0.0535154081881046,0.982589781284332,-0.177914291620255,-0.0205361135303974,0.860228478908539,0.509495079517365,-0.999345600605011,-0.0286576766520739,-0.0220706593245268,-0.967639446258545,0.196025386452675,-0.158896386623383,
- -0.0205361135303974,0.860228478908539,0.509495079517365,-0.0185932777822018,-0.141795694828033,0.989721298217773,-0.960090100765228,0.17904606461525,0.214871183037758,-0.985820591449738,0.0506951250135899,-0.159961685538292,-0.0205304976552725,0.647424697875977,-0.761852860450745,-0.0535154081881046,0.982589781284332,-0.177914291620255,0.0227783638983965,0.688774824142456,-0.7246173620224,-0.897393643856049,-0.172333940863609,-0.406184256076813,-0.988099813461304,0.00276916916482151,-0.153789490461349,-0.0635096952319145,0.996267139911652,0.058466512709856,-0.965595602989197,0.202044725418091,-0.163716673851013,-0.897393643856049,-0.172333940863609,-0.406184256076813,0.0227783638983965,0.688774824142456,-0.7246173620224,0.0975921824574471,-0.068844810128212,-0.992842376232147,0.0975921824574471,-0.068844810128212,-0.992842376232147,0.0662918537855148,-0.609263956546783,-0.790191650390625,-0.980104327201843,0.112497180700302,-0.163523301482201,-0.965595602989197,0.202044725418091,-0.163716673851013,0.0662918537855148,-0.609263956546783,-0.790191650390625,-0.0156722813844681,-0.941777348518372,-0.335871607065201,-0.83592677116394,-0.230289205908775,-0.498190075159073,-0.980104327201843,0.112497180700302,-0.163523301482201,-0.988723576068878,-0.0200193151831627,-0.148408025503159,-0.83592677116394,-0.230289205908775,-0.498190075159073,-0.0156722813844681,-0.941777348518372,-0.335871607065201,-0.126941353082657,-0.752143502235413,0.646657586097717,-0.999194145202637,0.0289392732083797,0.0278128609061241,-0.988099813461304,0.00276916916482151,-0.153789490461349,-0.897393643856049,-0.172333940863609,-0.406184256076813,-0.952897727489471,0.174678012728691,0.247938320040703,-0.0279777813702822,0.890675485134125,-0.45377790927887,0.0499283410608768,0.902887940406799,-0.426966667175293,0.0668050944805145,0.88331013917923,-0.46400448679924,0.00344433612190187,0.880896627902985,-0.473296195268631,-0.000656631891615689,0.879065930843353,-0.476699948310852,-0.0562582388520241,0.875808715820313,-0.479368478059769,-0.0534061156213284,-0.989455878734589,-0.134629413485527,
- -0.999194145202637,0.0289392732083797,0.0278128609061241,-0.952897727489471,0.174678012728691,0.247938320040703,-0.0617276951670647,-0.608941376209259,0.790809810161591,-0.0218748673796654,-0.999757826328278,-0.00244156480766833,-0.0648333355784416,-0.997877776622772,-0.00605484005063772,-0.070456437766552,-0.997483551502228,-0.00789831019937992,-0.0664429515600204,-0.997750580310822,-0.00889437459409237,-0.0231145136058331,-0.999728083610535,-0.00308354641310871,-0.0201155766844749,-0.999794483184814,-0.00251179188489914,0.0466057769954205,-0.998909056186676,0.00295398104935884,0.057230681180954,-0.998346328735352,0.00540987402200699,0.00874435529112816,-0.999960362911224,0.00166696112137288,-0.019411513581872,-0.999809384346008,-0.00211036996915936,-0.912961483001709,-0.0881455615162849,-0.398411482572556,-0.385046690702438,-0.689022898674011,0.613992214202881,0.325692027807236,-0.621738970279694,-0.712295770645142,-0.666144371032715,0.220626801252365,-0.712443470954895,-0.950977087020874,0.293918639421463,-0.096200130879879,-0.912961483001709,-0.0881455615162849,-0.398411482572556,-0.796873569488525,0.155747339129448,-0.583725333213806,-0.846561193466187,0.0959100723266602,-0.523579657077789,-0.788282513618469,-0.0676172226667404,-0.61158698797226,-0.81196540594101,-0.108902603387833,-0.573456406593323,-0.783924698829651,0.000533183745574206,-0.620855569839478,-0.593412339687347,-0.173890888690948,-0.785890400409698,-0.950977087020874,0.293918639421463,-0.096200130879879,-0.385046690702438,-0.689022898674011,0.613992214202881,-0.912961483001709,-0.0881455615162849,-0.398411482572556,-0.673721253871918,-0.0921512544155121,-0.733217418193817,-0.796873569488525,0.155747339129448,-0.583725333213806,-0.836519718170166,0.102777630090714,-0.538211464881897,-0.941487789154053,0.175594314932823,-0.287693232297897,-0.836519718170166,0.102777630090714,-0.538211464881897,-0.81196540594101,-0.108902603387833,-0.573456406593323,-0.593412339687347,-0.173890888690948,-0.785890400409698,-0.783924698829651,0.000533183745574206,-0.620855569839478,
- 0.509612321853638,0.598758459091187,-0.617886364459991,-0.994675517082214,-0.0790474563837051,0.0661229267716408,-0.0539800934493542,-0.989179491996765,0.13641944527626,-0.0558603778481483,-0.601677656173706,-0.796783268451691,-0.919752955436707,0.175100103020668,-0.351275622844696,-0.896196365356445,0.21739998459816,0.386741936206818,-0.994675517082214,-0.0790474563837051,0.0661229267716408,-0.990791499614716,0.0679856836795807,-0.117090329527855,-0.983265817165375,-0.0123011954128742,-0.181761130690575,-0.896196365356445,0.21739998459816,0.386741936206818,-0.538975358009338,-0.0573092475533485,0.840369701385498,-0.994675517082214,-0.0790474563837051,0.0661229267716408,-0.983265817165375,-0.0123011954128742,-0.181761130690575,-0.990791499614716,0.0679856836795807,-0.117090329527855,-0.00350593402981758,0.880672216415405,-0.473713248968124,0.316525995731354,-0.013997414149344,-0.948480546474457,0.344601422548294,-0.0128271579742432,-0.938661456108093,-0.0359163843095303,-0.991600513458252,-0.124250687658787,0.144644245505333,-0.987721920013428,-0.0590208508074284,0.295941144227982,-0.27863547205925,-0.913663625717163,0.256751000881195,0.279408097267151,-0.925208032131195,0.260829865932465,0.0279102809727192,-0.964981198310852,0.316525995731354,-0.013997414149344,-0.948480546474457,0.954340279102325,-0.0258827824145556,0.297597974538803,0.951791048049927,-0.00494424812495708,0.306707412004471,0.331583738327026,-0.0471946857869625,-0.942244529724121,0.314124196767807,0.140898644924164,-0.938868224620819,0.951791048049927,-0.00494424812495708,0.306707412004471,0.931666910648346,-0.0627346485853195,0.357856065034866,0.219888612627983,-0.820197224617004,-0.528133988380432,0.331583738327026,-0.0471946857869625,-0.942244529724121,-0.150065615773201,0.985364854335785,-0.0808475613594055,0.0767975598573685,0.997014582157135,0.0080014830455184,0.30982768535614,0.0339295230805874,-0.950187087059021,0.260829865932465,0.0279102809727192,-0.964981198310852,-0.0250476561486721,-0.999665319919586,-0.00648466218262911,0.0978235229849815,-0.957924067974091,-0.269836902618408,
- -0.0176730342209339,-0.999191880226135,-0.036100659519434,0.000560439308173954,-0.999854207038879,0.0170709770172834,0.344601422548294,-0.0128271579742432,-0.938661456108093,0.30982768535614,0.0339295230805874,-0.950187087059021,0.392288327217102,0.282583564519882,-0.875360786914825,0.364144623279572,-0.278779447078705,-0.888639867305756,-0.358558386564255,-0.146032229065895,0.922014355659485,-0.351119548082352,0.0433169715106487,0.93532806634903,0.92464292049408,0.0175275541841984,0.380431592464447,0.921745181083679,0.0290126390755177,0.386709541082382,-0.351119548082352,0.0433169715106487,0.93532806634903,-0.185631603002548,0.815119743347168,0.548744559288025,0.941142201423645,0.0741497054696083,0.32977768778801,0.92464292049408,0.0175275541841984,0.380431592464447,-0.000495136075187474,-0.999879658222198,0.0155050316825509,0.0418847426772118,-0.999025762081146,-0.0139040369540453,0.112702637910843,-0.957964539527893,-0.263821750879288,0.0400132983922958,-0.999031782150269,0.0182888973504305,0.00798683986067772,-0.997609555721283,0.0686409249901772,0.219888612627983,-0.820197224617004,-0.528133988380432,0.931666910648346,-0.0627346485853195,0.357856065034866,0.969484984874725,-0.0329736545681953,0.242923274636269,0.36720672249794,-0.0415424853563309,-0.929211258888245,0.32431173324585,-0.0416511967778206,-0.945032894611359,0.0418847426772118,-0.999025762081146,-0.0139040369540453,-0.0176730342209339,-0.999191880226135,-0.036100659519434,0.879370391368866,0.0467200726270676,0.473840564489365,0.941142201423645,0.0741497054696083,0.32977768778801,-0.185631603002548,0.815119743347168,0.548744559288025,0.031325425952673,0.99849796295166,-0.0449504666030407,0.260829865932465,0.0279102809727192,-0.964981198310852,0.30982768535614,0.0339295230805874,-0.950187087059021,0.344601422548294,-0.0128271579742432,-0.938661456108093,0.316525995731354,-0.013997414149344,-0.948480546474457,-0.000495136075187474,-0.999879658222198,0.0155050316825509,0.000560439308173954,-0.999854207038879,0.0170709770172834,-0.0176730342209339,-0.999191880226135,-0.036100659519434,
- 0.0418847426772118,-0.999025762081146,-0.0139040369540453,0.941142201423645,0.0741497054696083,0.32977768778801,0.931666910648346,-0.0627346485853195,0.357856065034866,0.951791048049927,-0.00494424812495708,0.306707412004471,0.92464292049408,0.0175275541841984,0.380431592464447,0.969484984874725,-0.0329736545681953,0.242923274636269,0.931666910648346,-0.0627346485853195,0.357856065034866,0.941142201423645,0.0741497054696083,0.32977768778801,0.879370391368866,0.0467200726270676,0.473840564489365,0.954340279102325,-0.0258827824145556,0.297597974538803,0.921745181083679,0.0290126390755177,0.386709541082382,0.92464292049408,0.0175275541841984,0.380431592464447,0.951791048049927,-0.00494424812495708,0.306707412004471,-0.351333439350128,0.0313196554780006,0.935726404190063,-0.367722302675247,-0.00939341075718403,0.929888308048248,-0.422110855579376,0.0440522283315659,0.905473291873932,-0.420672744512558,0.0525528304278851,0.905689001083374,-0.352831304073334,0.00137478148099035,0.935685932636261,0.331590712070465,-0.0488792918622494,-0.942156195640564,0.331458032131195,-0.0506663732230663,-0.942108452320099,0.259231328964233,0.00402440316975117,-0.965806901454926,0.259260505437851,-0.0302728340029716,-0.965332806110382,0.314470082521439,0.00952400453388691,-0.949219584465027,0.316525995731354,-0.013997414149344,-0.948480546474457,0.144644245505333,-0.987721920013428,-0.0590208508074284,0.295941144227982,-0.27863547205925,-0.913663625717163,-0.150065615773201,0.985364854335785,-0.0808475613594055,0.260829865932465,0.0279102809727192,-0.964981198310852,0.256751000881195,0.279408097267151,-0.925208032131195,0.344601422548294,-0.0128271579742432,-0.938661456108093,0.364144623279572,-0.278779447078705,-0.888639867305756,-0.0359163843095303,-0.991600513458252,-0.124250687658787,0.0767975598573685,0.997014582157135,0.0080014830455184,0.392288327217102,0.282583564519882,-0.875360786914825,0.30982768535614,0.0339295230805874,-0.950187087059021,0.0978235229849815,-0.957924067974091,-0.269836902618408,0.36720672249794,-0.0415424853563309,-0.929211258888245,
- -0.0176730342209339,-0.999191880226135,-0.036100659519434,0.32431173324585,-0.0416511967778206,-0.945032894611359,0.112702637910843,-0.957964539527893,-0.263821750879288,0.0418847426772118,-0.999025762081146,-0.0139040369540453,-0.567771553993225,-0.147996038198471,0.809773325920105,-0.807252287864685,0.0184469800442457,-0.589918196201324,-0.793140828609467,-0.017951225861907,-0.608773767948151,-0.569382071495056,-0.040968045592308,0.82105153799057,-0.751577496528625,-0.0583565272390842,-0.657058417797089,-0.759708285331726,-0.0424368940293789,-0.648877859115601,-0.785204350948334,-0.0285669602453709,-0.618577480316162,-0.793140828609467,-0.017951225861907,-0.608773767948151,-0.807252287864685,0.0184469800442457,-0.589918196201324,-0.811714291572571,-0.0198619216680527,-0.583716928958893,-0.811799108982086,-0.0692953914403915,-0.579810559749603,-0.78633838891983,-0.0310134440660477,-0.617017149925232,-0.785204350948334,-0.0285669602453709,-0.618577480316162,-0.759708285331726,-0.0424368940293789,-0.648877859115601,-0.785982847213745,-0.0887997224926949,-0.611837863922119,-0.477204889059067,0.630294978618622,0.612375438213348,-0.811799108982086,-0.0692953914403915,-0.579810559749603,-0.811714291572571,-0.0198619216680527,-0.583716928958893,-0.255232363939285,0.934356451034546,0.248665481805801,-0.996110677719116,0.00303456978872418,0.0880577117204666,-0.993106305599213,0.0234076995402575,0.114856295287609,-0.999347269535065,0.00747956056147814,0.0353398621082306,-0.566585958003998,-0.804770946502686,-0.176985651254654,-0.572979390621185,-0.778215706348419,-0.257050335407257,-0.570031762123108,-0.805871665477753,-0.160108298063278,-0.569383263587952,-0.802717268466949,-0.177335172891617,-0.572979390621185,-0.778215706348419,-0.257050335407257,-0.581812262535095,-0.772951304912567,-0.253062874078751,-0.628285467624664,-0.670839130878448,-0.393995374441147,-0.637196183204651,-0.669099748134613,-0.382474482059479,-0.560422480106354,-0.809921562671661,-0.173071444034576,-0.581812262535095,-0.772951304912567,-0.253062874078751,
- -0.566585958003998,-0.804770946502686,-0.176985651254654,-0.566585958003998,-0.804770946502686,-0.176985651254654,-0.581812262535095,-0.772951304912567,-0.253062874078751,-0.572979390621185,-0.778215706348419,-0.257050335407257,0.71815299987793,0.0434667766094208,0.694526493549347,0.892553269863129,-0.0367497615516186,0.449441879987717,0.99939352273941,-0.00607543485239148,0.0342885442078114,0.999571979045868,0.00958616565912962,0.0276405848562717,0.892553269863129,-0.0367497615516186,0.449441879987717,0.90026980638504,0.0916874632239342,-0.425567597150803,0.999386787414551,0.00719767669215798,-0.034268394112587,0.99939352273941,-0.00607543485239148,0.0342885442078114,0.90026980638504,0.0916874632239342,-0.425567597150803,0.718460500240326,-0.0456060171127319,-0.694071054458618,0.99953705072403,-0.0127563551068306,-0.0276202093809843,0.999386787414551,0.00719767669215798,-0.034268394112587,0.718460500240326,-0.0456060171127319,-0.694071054458618,0.999998271465302,-0.00144687213469297,0.00114871805999428,0.99999988079071,-0.000601962907239795,8.19499018689385e-006,0.99953705072403,-0.0127563551068306,-0.0276202093809843,0.999998271465302,-0.00144687213469297,0.00114871805999428,0.71815299987793,0.0434667766094208,0.694526493549347,0.999571979045868,0.00958616565912962,0.0276405848562717,0.99999988079071,-0.000601962907239795,8.19499018689385e-006
- }
- TangentsW: *10086 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *7488 {
- a: 0.239162907004356,0.0764368176460266,0.242533460259438,0.0764726549386978,0.24380087852478,0.184449151158333,0.239303350448608,0.1855798214674,0.242961972951889,0.0733648613095284,0.239303350448608,0.0179969966411591,0.24380087852478,0.0183199793100357,0.554245471954346,0.985522627830505,0.423062741756439,0.985522627830505,0.423062741756439,0.916933655738831,0.55424553155899,0.916933655738831,0.24380087852478,0.187894701957703,0.239303350448608,0.243086755275726,0.24380087852478,0.241251170635223,0.24380087852478,0.244515508413315,0.24380087852478,0.353143811225891,0.239303350448608,0.352981954813004,0.24380087852478,0.356969654560089,0.977278232574463,0.24379026889801,0.981077432632446,0.242977738380432,0.981077432632446,0.351454377174377,0.97615647315979,0.351501941680908,0.849330961704254,0.241179794073105,0.85060042142868,0.243949413299561,0.82496964931488,0.24255245923996,0.977311611175537,0.241141200065613,0.974031925201416,0.187905192375183,0.981077432632446,0.186224341392517,0.976417779922485,0.357104539871216,0.826720416545868,0.357069492340088,0.826236248016357,0.351811170578003,0.827761590480804,0.230742990970612,0.827454328536987,0.254188030958176,0.237580016255379,0.917926728725433,0.381004244089127,0.917926728725433,0.381004244089127,0.985006153583527,0.256451964378357,0.985006153583527,0.237580016255379,0.976689696311951,0.976467370986938,0.183213353157043,0.976423561573029,0.0875939577817917,0.981077432632446,0.0879178047180176,0.965094387531281,0.0737150833010674,0.842775583267212,0.183553352952003,0.832376956939697,0.0741579458117485,0.843990445137024,0.187868282198906,0.981077432632446,0.0651010274887085,0.975245535373688,0.0636932626366615,0.975886702537537,0.0179970264434814,0.981077432632446,0.0179970264434814,0.3885817527771,0.0725605189800262,0.38847804069519,0.0759156718850136,0.382401704788208,0.0759388655424118,0.382172077894211,0.0725959241390228,0.388491541147232,0.0182561501860619,0.388508588075638,0.0285028070211411,0.368649899959564,0.0182649046182632,0.971815288066864,
- 0.0693389773368835,0.692992508411407,0.241183832287788,0.69305020570755,0.244071304798126,0.686119914054871,0.244078159332275,0.686029076576233,0.241184875369072,0.691392958164215,0.352140367031097,0.692201912403107,0.357052206993103,0.682451963424683,0.35705041885376,0.68227231502533,0.352160811424255,0.690971314907074,0.185798168182373,0.693607807159424,0.185795977711678,0.693702220916748,0.194142654538155,0.676508188247681,0.18790091574192,0.676070690155029,0.183720037341118,0.693212509155273,0.171162575483322,0.817854344844818,0.0739917084574699,0.81773430109024,0.0703587457537651,0.823275625705719,0.0722079426050186,0.823330819606781,0.0572714321315289,0.823568642139435,0.351844012737274,0.824123382568359,0.357076495885849,0.822381258010864,0.357076168060303,0.821823120117188,0.351847916841507,0.823349356651306,0.233365967869759,0.825086832046509,0.233692690730095,0.824861764907837,0.25279238820076,0.823079943656921,0.255805730819702,0.823635458946228,0.0881394445896149,0.825270593166351,0.165663942694664,0.823466837406158,0.162875920534134,0.825936853885651,0.0580887794494629,0.823702692985535,0.01806415989995,0.826346278190613,0.0180621258914471,0.691559731960297,0.070886991918087,0.691621482372284,0.0747587606310844,0.679816424846649,0.074803814291954,0.677516937255859,0.070964552462101,0.691648840904236,0.0560615211725235,0.528822362422943,0.241208434104919,0.528932631015778,0.244233578443527,0.525259613990784,0.244237214326859,0.525148153305054,0.241208985447884,0.526966214179993,0.352508991956711,0.528091371059418,0.357021987438202,0.524418532848358,0.357021331787109,0.523286283016205,0.352517247200012,0.529519319534302,0.187898814678192,0.525842726230621,0.187898769974709,0.527774512767792,0.0735878571867943,0.527868866920471,0.0854368656873703,0.524194777011871,0.0849304273724556,0.524108290672302,0.073604978621006,0.528928995132446,0.183968231081963,0.525247633457184,0.18397444486618,0.524150788784027,0.0556844025850296,0.527819037437439,0.0548084490001202,0.389276772737503,0.241229355335236,0.389431804418564,
- 0.244371503591537,0.380715936422348,0.244380116462708,0.380599588155746,0.241230651736259,0.387202501296997,0.352822303771973,0.388596504926682,0.356996297836304,0.3687404692173,0.356992661952972,0.366695076227188,0.352868288755417,0.371134757995605,0.187896534800529,0.389628946781158,0.210263282060623,0.387698382139206,0.328698843717575,0.370549082756042,0.184235364198685,0.389042377471924,0.172423839569092,0.506570279598236,0.0754649937152863,0.503463089466095,0.0719259604811668,0.398575514554977,0.352796792984009,0.400448560714722,0.35699850320816,0.398134976625443,0.241228029131889,0.39736196398735,0.24436366558075,0.397625267505646,0.187896922230721,0.404053092002869,0.184178858995438,0.529960989952087,0.0542966239154339,0.52991509437561,0.0735778659582138,0.529114842414856,0.352504193782806,0.530235886573792,0.357022374868393,0.531077206134796,0.244231462478638,0.530967652797699,0.241208121180534,0.531665980815887,0.187898859381676,0.531078398227692,0.183964595198631,0.530014038085938,0.0857327058911324,0.538256525993347,0.0717337727546692,0.538365960121155,0.0753436461091042,0.707346200942993,0.0708208978176117,0.708431959152222,0.0746566131711006,0.698787271976471,0.357053399085999,0.698318004608154,0.352124840021133,0.790148913860321,0.243975281715393,0.790700376033783,0.241169184446335,0.69532299041748,0.185794547200203,0.723487019538879,0.187901586294174,0.722077012062073,0.183642446994781,0.825813412666321,0.0701567828655243,0.826285839080811,0.0896923094987869,0.833495080471039,0.0701137557625771,0.389111280441284,0.184204056859016,0.396520435810089,0.0725166723132133,0.39501017332077,0.0758907496929169,0.400334984064102,0.0182509254664183,0.524215161800385,0.018196277320385,0.527885317802429,0.0181946586817503,0.530028223991394,0.0181937124580145,0.691789209842682,0.0849217250943184,0.805163502693176,0.183502286672592,0.80540531873703,0.187902763485909,0.38988333940506,0.187896803021431,0.82801616191864,0.169972375035286,0.825646102428436,0.183467745780945,0.825852274894714,0.187903061509132,0.823903679847717,
- 0.200160890817642,0.825668573379517,0.198891311883926,0.828323245048523,0.196949869394302,0.82196182012558,0.0180649273097515,0.691876828670502,0.0181223154067993,0.682134032249451,0.0181266125291586,0.698457419872284,0.0181194115430117,0.698499023914337,0.244065925478935,0.698750495910645,0.241182968020439,0.239162907004356,0.0764368176460266,0.242533460259438,0.0764726549386978,0.24380087852478,0.184449151158333,0.239303350448608,0.1855798214674,0.242961972951889,0.0733648613095284,0.239303350448608,0.0179969966411591,0.24380087852478,0.0183199793100357,0.554245471954346,0.985522627830505,0.423062741756439,0.985522627830505,0.423062741756439,0.916933655738831,0.55424553155899,0.916933655738831,0.24380087852478,0.187894701957703,0.239303350448608,0.243086755275726,0.24380087852478,0.241251170635223,0.24380087852478,0.244515508413315,0.24380087852478,0.353143811225891,0.239303350448608,0.352981954813004,0.24380087852478,0.356969654560089,0.977278232574463,0.24379026889801,0.981077432632446,0.242977738380432,0.981077432632446,0.351454377174377,0.97615647315979,0.351501941680908,0.849330961704254,0.241179794073105,0.85060042142868,0.243949413299561,0.82496964931488,0.24255245923996,0.977311611175537,0.241141200065613,0.974031925201416,0.187905192375183,0.981077432632446,0.186224341392517,0.976417779922485,0.357104539871216,0.826720416545868,0.357069492340088,0.826236248016357,0.351811170578003,0.827761590480804,0.230742990970612,0.827454328536987,0.254188030958176,0.237580016255379,0.917926728725433,0.381004244089127,0.917926728725433,0.381004244089127,0.985006153583527,0.256451964378357,0.985006153583527,0.237580016255379,0.976689696311951,0.976467370986938,0.183213353157043,0.976423561573029,0.0875939577817917,0.981077432632446,0.0879178047180176,0.965094387531281,0.0737150833010674,0.842775583267212,0.183553352952003,0.832376956939697,0.0741579458117485,0.843990445137024,0.187868282198906,0.981077432632446,0.0651010274887085,0.975245535373688,0.0636932626366615,0.975886702537537,0.0179970264434814,0.981077432632446,
- 0.0179970264434814,0.3885817527771,0.0725605189800262,0.38847804069519,0.0759156718850136,0.382401704788208,0.0759388655424118,0.382172077894211,0.0725959241390228,0.388491541147232,0.0182561501860619,0.388508588075638,0.0285028070211411,0.368649899959564,0.0182649046182632,0.971815288066864,0.0693389773368835,0.692992508411407,0.241183832287788,0.69305020570755,0.244071304798126,0.686119914054871,0.244078159332275,0.686029076576233,0.241184875369072,0.691392958164215,0.352140367031097,0.692201912403107,0.357052206993103,0.682451963424683,0.35705041885376,0.68227231502533,0.352160811424255,0.690971314907074,0.185798168182373,0.693607807159424,0.185795977711678,0.693702220916748,0.194142654538155,0.676508188247681,0.18790091574192,0.676070690155029,0.183720037341118,0.693212509155273,0.171162575483322,0.817854344844818,0.0739917084574699,0.81773430109024,0.0703587457537651,0.823275625705719,0.0722079426050186,0.823330819606781,0.0572714321315289,0.823568642139435,0.351844012737274,0.824123382568359,0.357076495885849,0.822381258010864,0.357076168060303,0.821823120117188,0.351847916841507,0.823349356651306,0.233365967869759,0.825086832046509,0.233692690730095,0.824861764907837,0.25279238820076,0.823079943656921,0.255805730819702,0.823635458946228,0.0881394445896149,0.825270593166351,0.165663942694664,0.823466837406158,0.162875920534134,0.825936853885651,0.0580887794494629,0.823702692985535,0.01806415989995,0.826346278190613,0.0180621258914471,0.691559731960297,0.070886991918087,0.691621482372284,0.0747587606310844,0.679816424846649,0.074803814291954,0.677516937255859,0.070964552462101,0.691648840904236,0.0560615211725235,0.528822362422943,0.241208434104919,0.528932631015778,0.244233578443527,0.525259613990784,0.244237214326859,0.525148153305054,0.241208985447884,0.526966214179993,0.352508991956711,0.528091371059418,0.357021987438202,0.524418532848358,0.357021331787109,0.523286283016205,0.352517247200012,0.529519319534302,0.187898814678192,0.525842726230621,0.187898769974709,0.527774512767792,0.0735878571867943,0.527868866920471,
- 0.0854368656873703,0.524194777011871,0.0849304273724556,0.524108290672302,0.073604978621006,0.528928995132446,0.183968231081963,0.525247633457184,0.18397444486618,0.524150788784027,0.0556844025850296,0.527819037437439,0.0548084490001202,0.389276772737503,0.241229355335236,0.389431804418564,0.244371503591537,0.380715936422348,0.244380116462708,0.380599588155746,0.241230651736259,0.387202501296997,0.352822303771973,0.388596504926682,0.356996297836304,0.3687404692173,0.356992661952972,0.366695076227188,0.352868288755417,0.371134757995605,0.187896534800529,0.389628946781158,0.210263282060623,0.387698382139206,0.328698843717575,0.370549082756042,0.184235364198685,0.389042377471924,0.172423839569092,0.506570279598236,0.0754649937152863,0.503463089466095,0.0719259604811668,0.398575514554977,0.352796792984009,0.400448560714722,0.35699850320816,0.398134976625443,0.241228029131889,0.39736196398735,0.24436366558075,0.397625267505646,0.187896922230721,0.404053092002869,0.184178858995438,0.529960989952087,0.0542966239154339,0.52991509437561,0.0735778659582138,0.529114842414856,0.352504193782806,0.530235886573792,0.357022374868393,0.531077206134796,0.244231462478638,0.530967652797699,0.241208121180534,0.531665980815887,0.187898859381676,0.531078398227692,0.183964595198631,0.530014038085938,0.0857327058911324,0.538256525993347,0.0717337727546692,0.538365960121155,0.0753436461091042,0.707346200942993,0.0708208978176117,0.708431959152222,0.0746566131711006,0.698787271976471,0.357053399085999,0.698318004608154,0.352124840021133,0.790148913860321,0.243975281715393,0.790700376033783,0.241169184446335,0.69532299041748,0.185794547200203,0.723487019538879,0.187901586294174,0.722077012062073,0.183642446994781,0.825813412666321,0.0701567828655243,0.826285839080811,0.0896923094987869,0.833495080471039,0.0701137557625771,0.389111280441284,0.184204056859016,0.396520435810089,0.0725166723132133,0.39501017332077,0.0758907496929169,0.400334984064102,0.0182509254664183,0.524215161800385,0.018196277320385,0.527885317802429,0.0181946586817503,0.530028223991394,
- 0.0181937124580145,0.691789209842682,0.0849217250943184,0.805163502693176,0.183502286672592,0.80540531873703,0.187902763485909,0.38988333940506,0.187896803021431,0.82801616191864,0.169972375035286,0.825646102428436,0.183467745780945,0.825852274894714,0.187903061509132,0.823903679847717,0.200160890817642,0.825668573379517,0.198891311883926,0.828323245048523,0.196949869394302,0.82196182012558,0.0180649273097515,0.691876828670502,0.0181223154067993,0.682134032249451,0.0181266125291586,0.698457419872284,0.0181194115430117,0.698499023914337,0.244065925478935,0.698750495910645,0.241182968020439,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,
- 0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,
- 0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,
- 0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.983461380004883,
- 0.63910037279129,0.105120569467545,1.12461709976196,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.423326820135117,0.709175705909729,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,
- 0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,3.25038433074951,0.337513953447342,3.00000023841858,0.337088942527771,3.00000023841858,-0.000232726335525513,3.25038385391235,-0.000658243894577026,2.03792142868042,1.3315589427948,2.29909706115723,0.331561088562012,2.29909610748291,0.544942259788513,2.16850709915161,1.62346506118774,2.03791904449463,1.54493999481201,1.21496319770813,1.33156204223633,1.47614097595215,0.331561207771301,1.47614145278931,0.551353871822357,1.3455536365509,1.629878282547,1.21496415138245,1.55135464668274,2.2646689414978,1.55770075321198,2.13114356994629,1.63298892974854,2.00361347198486,1.55132818222046,2.01200771331787,0.331586927175522,2.27306079864502,1.33801102638245,3.10013723373413,1.54622578620911,2.96954870223999,1.62474942207336,2.83896112442017,1.54622459411621,2.83896160125732,0.331561267375946,3.10013914108276,1.33156251907349,1.88191783428192,0.337377905845642,0.639854431152344,0.337377309799194,0.639854431152344,0.551353991031647,0.509266376495361,1.62987804412842,0.378677845001221,1.55135440826416,1.4409077167511,1.54699182510376,1.31031966209412,1.6255156993866,1.17973041534424,1.54699206352234,1.17973017692566,0.331561237573624,1.44090723991394,1.33156085014343,1.99994707107544,0.000193215906620026,0.492508172988892,0.000192493200302124,0.492508172988892,0.336663663387299,-0.434166073799133,-0.160541594028473,-0.434165954589844,-0.369750618934631,-0.323439061641693,-0.369750618934631,-0.323439121246338,-0.160541594028473,-0.553404331207275,-0.160541534423828,-0.553404331207275,-0.369750678539276,-0.443721771240234,-0.107554316520691,
- -0.323439061641693,-0.107554316520691,-0.323439061641693,0.10165473818779,-0.443721771240234,0.101654678583145,-0.560871362686157,0.101654678583145,-0.560871362686157,-0.107554495334625,-0.532648086547852,-0.543089151382446,-0.323439002037048,-0.543089151382446,-0.323439002037048,-0.422738015651703,-0.532648086547852,-0.422738015651703,-0.789704561233521,-0.674832582473755,-0.580495357513428,-0.674832582473755,-0.580495357513428,-0.556804537773132,-0.789704561233521,-0.556804537773132,1.6039742231369,0.708725214004517,1.724325299263,0.708725214004517,1.724325299263,0.91793429851532,1.60397446155548,0.91793429851532,1.49989426136017,0.708725214004517,1.49989438056946,0.91793429851532,1.27839195728302,0.708725214004517,1.27839195728302,0.917934238910675,1.17153024673462,0.708725214004517,1.17153024673462,0.917934238910675,1.06080341339111,0.708725214004517,1.06080341339111,0.917934358119965,0.941564917564392,0.708725214004517,0.941642999649048,0.91793429851532,0.835347414016724,0.91793429851532,0.835347414016724,0.708725214004517,0.613835096359253,0.708725214004517,0.613835096359253,0.91793429851532,0.512322425842285,0.708725214004517,0.512322425842285,0.91793429851532,0.392039746046066,0.708725214004517,0.392039746046066,0.91793429851532,0.274890005588531,0.91793429851532,0.274890005588531,0.708725214004517,0.1708103120327,0.91793429851532,0.1708103120327,0.708725214004517,-0.0507021546363831,0.91793429851532,-0.0507021546363831,0.708725214004517,-0.157563745975494,0.91793429851532,-0.157563745975494,0.708725214004517,-0.163478851318359,0.91793429851532,-0.163478851318359,0.708725214004517,-0.275591790676117,0.91793429851532,-0.275591790676117,0.708725214004517,1.11051857471466,0.551352620124817,1.11051893234253,0.331559985876083,1.21203172206879,0.331560134887695,1.21203148365021,0.551352858543396,0.88900625705719,0.55648148059845,0.889006733894348,0.331559538841248,1.2120326757431,0.000191375613212585,1.11051976680756,0.000191265717148781,1.21203124523163,0.629876911640167,1.11051833629608,0.629876673221588,0.789514064788818,
- 0.55135190486908,0.782789349555969,0.331559300422668,0.889007449150085,0.000190766528248787,0.8890061378479,0.635005295276642,1.332315325737,0.000191645696759224,1.33231461048126,0.334624201059341,0.782790064811707,0.000190528109669685,0.789513945579529,0.629876017570496,1.44946491718292,0.000191910192370415,1.44946396350861,0.331560701131821,0.663550853729248,0.324411541223526,0.663551568984985,0.000190259888768196,1.55354464054108,0.000192144885659218,1.55354368686676,0.3315609395504,0.552824020385742,0.33155882358551,0.552824735641479,0.000190010294318199,1.77505624294281,0.331561386585236,1.77505719661713,0.000192584469914436,1.44946372509003,0.546991586685181,1.5535432100296,0.550838768482208,0.445962250232697,0.331558495759964,0.445962965488434,0.000189770013093948,1.77505600452423,0.551354169845581,1.88191878795624,0.000192824751138687,1.5535432100296,0.629362940788269,1.44946348667145,0.625515580177307,0.445961773395538,0.551351130008698,0.552823543548584,0.544939756393433,0.224459826946259,0.331558078527451,0.224460542201996,0.000189151614904404,1.77505576610565,0.629878282546997,1.88783395290375,0.000192837789654732,0.2244593501091,0.551350593566895,0.552823305130005,0.623463928699493,0.445961534976959,0.629875242710114,0.120379865169525,0.331557840108871,0.120380580425262,0.000188916921615601,1.88191735744476,0.629878401756287,0.120379388332367,0.546221137046814,0.224459111690521,0.629874706268311,2.95042991638184e-005,0.000188706442713737,2.85506248474121e-005,0.338360905647278,0.120379269123077,0.62474524974823,2.7090277671814,0.551353871822357,2.7090277671814,0.331561267375946,2.43250370025635,0.551353871822357,2.43250370025635,0.331561207771301,2.7090277671814,0.000192493200302124,2.83896160125732,0.000192493200302124,2.83896160125732,0.624748587608337,2.7090277671814,0.629878103733063,2.43250370025635,0.000192403793334961,2.43250370025635,0.629878103733063,2.29909706115723,0.000192403793334961,2.29909706115723,0.623466193675995,2.16086578369141,0.000192403793334961,2.16086578369141,0.324413895606995,
- 2.01210594177246,0.000192403793334961,1.87940645217896,0.000192403793334961,1.87940645217896,0.331561207771301,1.87940645217896,0.556483209133148,1.60286998748779,0.000192403793334961,1.60286998748779,0.331561207771301,1.60286998748779,0.551353871822357,2.00361251831055,0.629878103733063,1.87940645217896,0.635007262229919,1.47614121437073,0.000192403793334961,1.60286998748779,0.629878103733063,1.3259801864624,0.000192433595657349,1.3259801864624,0.334624916315079,1.47614121437073,0.629878103733063,1.17973017692566,0.000192373991012573,1.04979658126831,0.000192433595657349,1.04979658126831,0.331561207771301,1.04979658126831,0.550838947296143,0.773260354995728,0.000192373991012573,0.773260354995728,0.331561207771301,0.773260354995728,0.551353871822357,1.17973017692566,0.625516176223755,1.04979658126831,0.629363000392914,0.639854431152344,0.000192433595657349,0.773260354995728,0.629878103733063,0.632469654083252,0.000192433595657349,0.639854431152344,0.629878103733063,-0.685099899768829,-0.673482120037079,-0.685099899768829,-0.555454015731812,0.509264945983887,1.4034149646759,3.11979722976685,0.398999929428101,-0.42804354429245,-0.420993030071259,2.96954917907715,1.39243137836456,-0.42804354429245,-0.541344165802002,1.99994611740112,0.334963411092758,1.88191735744476,0.551354467868805,0.378677368164063,1.33737790584564,0.376749515533447,0.207779169082642,0.382156580686569,0.207937359809875,0.382212579250336,0.19220757484436,0.377954810857773,0.189264237880707,0.372594892978668,0.232639849185944,0.379514098167419,0.22761470079422,0.37955716252327,0.227182149887085,0.413305163383484,0.224951267242432,0.382784962654114,0.249355003237724,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.564511179924011,0.218570411205292,0.560128808021545,0.219051539897919,0.558496117591858,0.224221214652061,0.563001155853271,0.224230721592903,0.666931092739105,0.0601037070155144,
- 0.662333130836487,0.0649285390973091,0.56450492143631,0.185516536235809,0.491526544094086,0.185904562473297,0.491228878498077,0.191779315471649,0.564549386501312,0.191491544246674,0.473301857709885,0.165234804153442,0.47493639588356,0.185992956161499,0.478493839502335,0.18597400188446,0.35041081905365,0.221110373735428,0.350173681974411,0.347115606069565,0.376514375209808,0.362219661474228,0.379024714231491,0.253350257873535,0.365059554576874,0.220473945140839,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.47870472073555,0.219448193907738,0.479635179042816,0.224508166313171,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.663088619709015,0.224330231547356,0.667415678501129,0.224334597587585,0.470479488372803,0.18601667881012,0.470469444990158,0.191860914230347,0.474966675043106,0.191843152046204,0.4737369120121,0.219465374946594,0.471862256526947,0.219481512904167,0.469260692596436,0.224782302975655,0.473920434713364,0.224815607070923,0.478426277637482,0.191829577088356,0.565214514732361,0.0626287311315537,0.562614679336548,0.0595441088080406,0.672348499298096,0.224311992526054,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.668739497661591,0.0608999915421009,0.472329139709473,0.0616068542003632,0.381906419992447,0.360916614532471,0.380384922027588,0.0633751228451729,0.376233398914337,0.0618476644158363,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.376749515533447,0.207779169082642,
- 0.377954810857773,0.189264237880707,0.382212579250336,0.19220757484436,0.382156580686569,0.207937359809875,0.372594892978668,0.232639849185944,0.37955716252327,0.227182149887085,0.379514098167419,0.22761470079422,0.413305133581162,0.224951803684235,0.382783621549606,0.249356582760811,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.564511179924011,0.218570411205292,0.563001155853271,0.224231600761414,0.558496117591858,0.224221646785736,0.560128808021545,0.219051539897919,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.56450492143631,0.185516536235809,0.564549386501312,0.191491544246674,0.491228878498077,0.191779315471649,0.491526544094086,0.185904562473297,0.473301857709885,0.165234804153442,0.478493839502335,0.18597400188446,0.47493639588356,0.185992956161499,0.35041081905365,0.221110373735428,0.365059554576874,0.220473945140839,0.379024267196655,0.253350734710693,0.376516371965408,0.36212170124054,0.350173860788345,0.347015827894211,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.479632318019867,0.224508985877037,0.47870472073555,0.219448193907738,0.790541708469391,0.223770812153816,0.787462055683136,0.22378496825695,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224331140518188,0.474966675043106,0.191843152046204,0.470469444990158,0.191860914230347,0.470479488372803,0.18601667881012,0.4737369120121,0.219465374946594,0.47391951084137,0.224816158413887,0.469258099794388,0.224783003330231,0.471862256526947,0.219481512904167,0.478426277637482,
- 0.191829577088356,0.562616229057312,0.0596463978290558,0.565213918685913,0.0627285167574883,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.668744921684265,0.0610079728066921,0.472330093383789,0.0617085248231888,0.376234769821167,0.0619485899806023,0.380386352539063,0.0634759813547134,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177272796631,0.366830497980118,0.788075625896454,0.362160086631775,0.788075983524323,0.362255841493607,0.79117751121521,0.366950154304504,0.381907165050507,0.360820382833481,0.674314498901367,0.360022366046906,0.674516022205353,0.364109843969345,0.788094460964203,0.366416960954666,0.672134339809418,0.364394634962082,0.667524099349976,0.360722005367279,0.667500495910645,0.364999920129776,0.65965873003006,0.35951367020607,0.662003755569458,0.364010602235794,0.481853932142258,0.361111223697662,0.481894820928574,0.365159511566162,0.559614360332489,0.367362767457962,0.559768676757813,0.363268136978149,0.479708075523376,0.36506113409996,0.474211364984512,0.360593497753143,0.474220395088196,0.364814221858978,0.467986553907394,0.365041226148605,0.470529496669769,0.367415726184845,0.467831999063492,0.368927508592606,0.381873548030853,0.365096062421799,0.564394593238831,0.361057490110397,0.564445555210114,0.365496546030045,0.659594535827637,0.363576978445053,0.562268912792206,0.366375923156738,0.66752427816391,0.360624819993973,0.659660995006561,0.359420508146286,0.564393281936646,0.360941559076309,0.674310088157654,0.359929859638214,0.559769213199615,0.363172769546509,0.4818474650383,0.361021339893341,0.474213689565659,0.360487639904022,0.467987358570099,0.364945501089096,0.378522098064423,0.363297253847122,0.376749515533447,0.207779169082642,0.382156580686569,0.207937359809875,0.382212579250336,0.19220757484436,0.377954810857773,
- 0.189264237880707,0.372594892978668,0.232639849185944,0.379514098167419,0.22761470079422,0.37955716252327,0.227182149887085,0.413305163383484,0.224951267242432,0.382784962654114,0.249355003237724,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.564511179924011,0.218570411205292,0.560128808021545,0.219051539897919,0.558496117591858,0.224221214652061,0.563001155853271,0.224230721592903,0.666931092739105,0.0601037070155144,0.662333130836487,0.0649285390973091,0.56450492143631,0.185516536235809,0.491526544094086,0.185904562473297,0.491228878498077,0.191779315471649,0.564549386501312,0.191491544246674,0.473301857709885,0.165234804153442,0.47493639588356,0.185992956161499,0.478493839502335,0.18597400188446,0.35041081905365,0.221110373735428,0.350173681974411,0.347115606069565,0.376514375209808,0.362219661474228,0.379024714231491,0.253350257873535,0.365059554576874,0.220473945140839,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.47870472073555,0.219448193907738,0.479635179042816,0.224508166313171,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.663088619709015,0.224330231547356,0.667415678501129,0.224334597587585,0.470479488372803,0.18601667881012,0.470469444990158,0.191860914230347,0.474966675043106,0.191843152046204,0.4737369120121,0.219465374946594,0.471862256526947,0.219481512904167,0.469260692596436,0.224782302975655,0.473920434713364,0.224815607070923,0.478426277637482,0.191829577088356,0.565214514732361,0.0626287311315537,0.562614679336548,0.0595441088080406,
- 0.672348499298096,0.224311992526054,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.668739497661591,0.0608999915421009,0.472329139709473,0.0616068542003632,0.381906419992447,0.360916614532471,0.380384922027588,0.0633751228451729,0.376233398914337,0.0618476644158363,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.376749515533447,0.207779169082642,0.377954810857773,0.189264237880707,0.382212579250336,0.19220757484436,0.382156580686569,0.207937359809875,0.372594892978668,0.232639849185944,0.37955716252327,0.227182149887085,0.379514098167419,0.22761470079422,0.413305133581162,0.224951803684235,0.382783621549606,0.249356582760811,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.564511179924011,0.218570411205292,0.563001155853271,0.224231600761414,0.558496117591858,0.224221646785736,0.560128808021545,0.219051539897919,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.56450492143631,0.185516536235809,0.564549386501312,0.191491544246674,0.491228878498077,0.191779315471649,0.491526544094086,0.185904562473297,0.473301857709885,0.165234804153442,0.478493839502335,0.18597400188446,0.47493639588356,0.185992956161499,0.35041081905365,0.221110373735428,0.365059554576874,0.220473945140839,0.379024267196655,0.253350734710693,0.376516371965408,0.36212170124054,0.350173860788345,0.347015827894211,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.479632318019867,0.224508985877037,0.47870472073555,0.219448193907738,0.790541708469391,0.223770812153816,0.787462055683136,0.22378496825695,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,
- 0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224331140518188,0.474966675043106,0.191843152046204,0.470469444990158,0.191860914230347,0.470479488372803,0.18601667881012,0.4737369120121,0.219465374946594,0.47391951084137,0.224816158413887,0.469258099794388,0.224783003330231,0.471862256526947,0.219481512904167,0.478426277637482,0.191829577088356,0.562616229057312,0.0596463978290558,0.565213918685913,0.0627285167574883,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.668744921684265,0.0610079728066921,0.472330093383789,0.0617085248231888,0.376234769821167,0.0619485899806023,0.380386352539063,0.0634759813547134,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177272796631,0.366830497980118,0.788075625896454,0.362160086631775,0.788075983524323,0.362255841493607,0.79117751121521,0.366950154304504,0.381907165050507,0.360820382833481,0.674314498901367,0.360022366046906,0.674516022205353,0.364109843969345,0.788094460964203,0.366416960954666,0.672134339809418,0.364394634962082,0.667524099349976,0.360722005367279,0.667500495910645,0.364999920129776,0.65965873003006,0.35951367020607,0.662003755569458,0.364010602235794,0.481853932142258,0.361111223697662,0.481894820928574,0.365159511566162,0.559614360332489,0.367362767457962,0.559768676757813,0.363268136978149,0.479708075523376,0.36506113409996,0.474211364984512,0.360593497753143,0.474220395088196,0.364814221858978,0.467986553907394,0.365041226148605,0.470529496669769,0.367415726184845,0.467831999063492,0.368927508592606,0.381873548030853,0.365096062421799,0.564394593238831,
- 0.361057490110397,0.564445555210114,0.365496546030045,0.659594535827637,0.363576978445053,0.562268912792206,0.366375923156738,0.66752427816391,0.360624819993973,0.659660995006561,0.359420508146286,0.564393281936646,0.360941559076309,0.674310088157654,0.359929859638214,0.559769213199615,0.363172769546509,0.4818474650383,0.361021339893341,0.474213689565659,0.360487639904022,0.467987358570099,0.364945501089096,0.378522098064423,0.363297253847122,0.376749515533447,0.207779169082642,0.382156580686569,0.207937359809875,0.382212579250336,0.19220757484436,0.377954810857773,0.189264237880707,0.372594892978668,0.232639849185944,0.379514098167419,0.22761470079422,0.37955716252327,0.227182149887085,0.413305163383484,0.224951267242432,0.382784962654114,0.249355003237724,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.564511179924011,0.218570411205292,0.560128808021545,0.219051539897919,0.558496117591858,0.224221214652061,0.563001155853271,0.224230721592903,0.666931092739105,0.0601037070155144,0.662333130836487,0.0649285390973091,0.56450492143631,0.185516536235809,0.491526544094086,0.185904562473297,0.491228878498077,0.191779315471649,0.564549386501312,0.191491544246674,0.473301857709885,0.165234804153442,0.47493639588356,0.185992956161499,0.478493839502335,0.18597400188446,0.35041081905365,0.221110373735428,0.350173681974411,0.347115606069565,0.376514375209808,0.362219661474228,0.379024714231491,0.253350257873535,0.365059554576874,0.220473945140839,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.47870472073555,0.219448193907738,0.479635179042816,0.224508166313171,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,
- 0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.663088619709015,0.224330231547356,0.667415678501129,0.224334597587585,0.470479488372803,0.18601667881012,0.470469444990158,0.191860914230347,0.474966675043106,0.191843152046204,0.4737369120121,0.219465374946594,0.471862256526947,0.219481512904167,0.469260692596436,0.224782302975655,0.473920434713364,0.224815607070923,0.478426277637482,0.191829577088356,0.565214514732361,0.0626287311315537,0.562614679336548,0.0595441088080406,0.672348499298096,0.224311992526054,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.668739497661591,0.0608999915421009,0.472329139709473,0.0616068542003632,0.381906419992447,0.360916614532471,0.380384922027588,0.0633751228451729,0.376233398914337,0.0618476644158363,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.376749515533447,0.207779169082642,0.377954810857773,0.189264237880707,0.382212579250336,0.19220757484436,0.382156580686569,0.207937359809875,0.372594892978668,0.232639849185944,0.37955716252327,0.227182149887085,0.379514098167419,0.22761470079422,0.413305133581162,0.224951803684235,0.382783621549606,0.249356582760811,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.564511179924011,0.218570411205292,0.563001155853271,0.224231600761414,0.558496117591858,0.224221646785736,0.560128808021545,0.219051539897919,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.56450492143631,0.185516536235809,0.564549386501312,0.191491544246674,0.491228878498077,0.191779315471649,0.491526544094086,0.185904562473297,0.473301857709885,0.165234804153442,
- 0.478493839502335,0.18597400188446,0.47493639588356,0.185992956161499,0.35041081905365,0.221110373735428,0.365059554576874,0.220473945140839,0.379024267196655,0.253350734710693,0.376516371965408,0.36212170124054,0.350173860788345,0.347015827894211,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.479632318019867,0.224508985877037,0.47870472073555,0.219448193907738,0.790541708469391,0.223770812153816,0.787462055683136,0.22378496825695,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224331140518188,0.474966675043106,0.191843152046204,0.470469444990158,0.191860914230347,0.470479488372803,0.18601667881012,0.4737369120121,0.219465374946594,0.47391951084137,0.224816158413887,0.469258099794388,0.224783003330231,0.471862256526947,0.219481512904167,0.478426277637482,0.191829577088356,0.562616229057312,0.0596463978290558,0.565213918685913,0.0627285167574883,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.668744921684265,0.0610079728066921,0.472330093383789,0.0617085248231888,0.376234769821167,0.0619485899806023,0.380386352539063,0.0634759813547134,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177272796631,0.366830497980118,0.788075625896454,0.362160086631775,0.788075983524323,0.362255841493607,0.79117751121521,0.366950154304504,0.381907165050507,0.360820382833481,0.674314498901367,0.360022366046906,0.674516022205353,0.364109843969345,0.788094460964203,0.366416960954666,0.672134339809418,
- 0.364394634962082,0.667524099349976,0.360722005367279,0.667500495910645,0.364999920129776,0.65965873003006,0.35951367020607,0.662003755569458,0.364010602235794,0.481853932142258,0.361111223697662,0.481894820928574,0.365159511566162,0.559614360332489,0.367362767457962,0.559768676757813,0.363268136978149,0.479708075523376,0.36506113409996,0.474211364984512,0.360593497753143,0.474220395088196,0.364814221858978,0.467986553907394,0.365041226148605,0.470529496669769,0.367415726184845,0.467831999063492,0.368927508592606,0.381873548030853,0.365096062421799,0.564394593238831,0.361057490110397,0.564445555210114,0.365496546030045,0.659594535827637,0.363576978445053,0.562268912792206,0.366375923156738,0.66752427816391,0.360624819993973,0.659660995006561,0.359420508146286,0.564393281936646,0.360941559076309,0.674310088157654,0.359929859638214,0.559769213199615,0.363172769546509,0.4818474650383,0.361021339893341,0.474213689565659,0.360487639904022,0.467987358570099,0.364945501089096,0.378522098064423,0.363297253847122,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.667835295200348,0.0605018511414528,0.662333130836487,0.0649285390973091,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.663087725639343,0.224330231547356,0.667413651943207,0.224334597587585,0.672343969345093,0.224312007427216,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.659697234630585,0.359482079744339,0.667500495910645,0.364999920129776,0.568602919578552,0.21860645711422,0.5671746134758,0.224234849214554,
- 0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569264233112335,0.0627246275544167,0.568371951580048,0.361230194568634,0.674285531044006,0.359995305538177,0.788075864315033,0.362222284078598,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.662334442138672,0.0650262832641602,0.667838573455811,0.0606088489294052,0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224330231547356,0.667500972747803,0.364901274442673,0.659699618816376,0.359386265277863,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.5671746134758,0.224234849214554,0.568602919578552,0.21860645711422,0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569263696670532,0.0628243312239647,0.568371057510376,0.361131995916367,0.674281001091003,0.35990047454834,0.78807544708252,0.362123906612396,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791072249412537,0.366831719875336,0.706390738487244,0.361326992511749,0.705745458602905,0.357956051826477,0.749732136726379,0.302548170089722,
- 0.717785596847534,0.239475429058075,0.719095587730408,0.236303329467773,0.732375621795654,0.230294227600098,0.735480189323425,0.231261163949966,0.772318243980408,0.304843544960022,0.721425414085388,0.369565784931183,0.71819007396698,0.369885981082916,0.563001155853271,0.224230706691742,0.56443977355957,0.365496665239334,0.564438700675964,0.365398406982422,0.563001155853271,0.224230706691742,0.564511179924011,0.218570411205292,0.564549386501312,0.191491544246674,0.56450492143631,0.185516536235809,0.565213918685913,0.0627285167574883,0.56450492143631,0.185516536235809,0.565214514732361,0.0626287311315537,0.564549386501312,0.191491544246674,0.564511179924011,0.218570411205292,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.672343969345093,0.224312007427216,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.66741818189621,0.219476938247681,0.667413651943207,0.224334597587585,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.668739497661591,0.0608999915421009,0.666931092739105,0.0601037070155144,0.667458295822144,0.364688843488693,0.674189805984497,0.361036121845245,0.788080394268036,0.363243997097015,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,
- 0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.667413651943207,0.224334597587585,0.674185216426849,0.360942393541336,0.667458236217499,0.364586710929871,0.66741818189621,0.219476938247681,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.668744921684265,0.0610079728066921,0.666932165622711,0.0602097250521183,0.788079977035522,0.363146930932999,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177332401276,0.366849839687347,0.75704300403595,0.241456717252731,0.757222175598145,0.245272606611252,0.722778856754303,0.307271063327789,0.757222175598145,0.36921101808548,0.75704300403595,0.373026967048645,0.741214394569397,0.382075548171997,0.738877177238464,0.381086260080338,0.702746868133545,0.307271063327789,0.738877177238464,0.233401149511337,0.741214454174042,0.232411831617355,0.791177809238434,0.366951078176498,0.788075089454651,0.366416573524475,0.674341976642609,0.364106297492981,0.672890841960907,0.364345222711563,0.791072726249695,0.36693286895752,0.674488544464111,0.36410927772522,0.788094460964203,0.366416960954666,0.659455835819244,0.363579779863358,0.568407595157623,0.365416616201401,0.671883940696716,0.364427328109741,0.662344574928284,0.36407196521759,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.666931092739105,0.0601037070155144,0.662333130836487,0.0649285390973091,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,
- 0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.663087725639343,0.224330231547356,0.667413651943207,0.224334597587585,0.672343969345093,0.224312007427216,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.659697949886322,0.359383046627045,0.667500495910645,0.364999890327454,0.568602919578552,0.21860645711422,0.5671746134758,0.224234849214554,0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569264233112335,0.0627246275544167,0.568372547626495,0.361129015684128,0.668739497661591,0.0608999915421009,0.674285531044006,0.359895825386047,0.788075387477875,0.362120658159256,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224330231547356,0.667500972747803,0.364901274442673,0.659700274467468,0.359288543462753,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,
- 0.790294587612152,0.0608089044690132,0.5671746134758,0.224234849214554,0.568602919578552,0.21860645711422,0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569263696670532,0.0628243312239647,0.568371593952179,0.361032128334045,0.668744921684265,0.0610079728066921,0.788074970245361,0.362023919820786,0.674281060695648,0.359802305698395,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791097044944763,0.36683601140976,0.706390738487244,0.361326992511749,0.705745458602905,0.357956051826477,0.749732136726379,0.302548170089722,0.717785596847534,0.239475429058075,0.719095587730408,0.236303329467773,0.732375621795654,0.230294227600098,0.735480189323425,0.231261163949966,0.772318243980408,0.304843544960022,0.721425414085388,0.369565784931183,0.71819007396698,0.369885981082916,0.563001155853271,0.224230706691742,0.564840078353882,0.365488499403,0.564839005470276,0.365390330553055,0.563001155853271,0.224230706691742,0.564511179924011,0.218570411205292,0.564549386501312,0.191491544246674,0.56450492143631,0.185516536235809,0.565213918685913,0.0627285167574883,0.56450492143631,0.185516536235809,0.565214514732361,0.0626287311315537,0.564549386501312,0.191491544246674,0.564511179924011,0.218570411205292,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.672343969345093,0.224312007427216,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.667413651943207,0.224334597587585,0.674156606197357,0.360366404056549,0.66741818189621,0.219476938247681,0.668102920055389,
- 0.191766500473022,0.668129622936249,0.185408532619476,0.666931092739105,0.0601037070155144,0.66764509677887,0.364933490753174,0.788077294826508,0.362548738718033,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.667413651943207,0.224334597587585,0.674152016639709,0.360272794961929,0.667647182941437,0.364834129810333,0.66741818189621,0.219476938247681,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.666932165622711,0.0602097250521183,0.788076937198639,0.36245185136795,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791096210479736,0.366835862398148,0.75704300403595,0.241456717252731,0.757222175598145,0.245272606611252,0.722778856754303,0.307271063327789,0.757222175598145,0.36921101808548,0.75704300403595,0.373026967048645,0.741214394569397,0.382075548171997,0.738877177238464,0.381086260080338,0.702746868133545,0.307271063327789,0.738877177238464,0.233401149511337,0.741214454174042,0.232411831617355,0.791097342967987,0.366937100887299,0.787926018238068,0.366413533687592,0.674341976642609,0.364106297492981,0.659594535827637,0.363576978445053,0.568424105644226,0.365416288375854,0.67175817489624,0.364324927330017,0.662388801574707,
- 0.363972067832947,0.791096746921539,0.366936981678009,0.788065493106842,0.366399258375168,0.674341976642609,0.364106297492981,0.824785172939301,0.533781409263611,0.824784696102142,0.580158233642578,0.827285468578339,0.580158233642578,0.827285945415497,0.533781409263611,0.824821174144745,0.531151294708252,0.73609846830368,0.531282424926758,0.736139476299286,0.533781409263611,0.931818783283234,0.651578187942505,0.931818902492523,0.622424244880676,0.929014444351196,0.62293016910553,0.929015159606934,0.651578187942505,0.931816756725311,0.475067973136902,0.929014682769775,0.474954783916473,0.733653724193573,0.533781409263611,0.733653962612152,0.580158233642578,0.736139476299286,0.580158233642578,0.2285176217556,0.710448265075684,0.367993921041489,0.710526406764984,0.367977976799011,0.707777082920074,0.228518605232239,0.707696974277496,0.73609846830368,0.582656979560852,0.824820220470428,0.582788467407227,0.986675500869751,0.651578187942505,0.98667585849762,0.622930407524109,0.98387622833252,0.622424602508545,0.98387622833252,0.651578187942505,0.98667573928833,0.474954187870026,0.983874261379242,0.475067555904388,0.228518605232239,0.656658113002777,0.367977917194366,0.656578719615936,0.367994010448456,0.653828322887421,0.228517457842827,0.653907060623169,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.408585429191589,0.744834244251251,0.504633128643036,0.744834244251251,0.504646360874176,0.607310652732849,0.471495896577835,0.607309818267822,0.53672206401825,0.956351220607758,0.476673066616058,0.849115371704102,0.441069841384888,0.849473178386688,0.442346304655075,0.984559535980225,0.536969423294067,0.984559535980225,0.986675620079041,0.640506744384766,0.408585637807846,0.733902812004089,0.970252335071564,0.622424483299255,0.983875751495361,0.583197414875031,0.986675798892975,0.580667853355408,0.426553308963776,0.685349702835083,
- 0.972927033901215,0.602758169174194,0.0914180129766464,1.12128508090973,0.122184991836548,1.07768595218658,0.082172691822052,1.0564546585083,0.10664227604866,1.03215026855469,0.1207455098629,1.03137564659119,0.0698723793029785,1.08032011985779,0.929014563560486,0.538674354553223,0.502530753612518,0.895292162895203,0.931817650794983,0.533571779727936,0.953591704368591,0.475067794322968,0.941647410392761,0.517915189266205,0.931816637516022,0.45630607008934,0.929014682769775,0.455558896064758,0.456536293029785,0.849317789077759,0.941828668117523,0.457364410161972,0.483711242675781,0.886344730854034,0.271702796220779,1.16985273361206,0.225319147109985,1.16935324668884,0.203833431005478,1.16696810722351,0.19673165678978,1.16314554214478,0.220841586589813,1.13749778270721,0.27034530043602,1.11507213115692,0.27387723326683,1.12007331848145,0.280448764562607,1.13366866111755,3.24069690704346,0.330814629793167,3.11978387832642,0.38800972700119,2.99890422821045,0.330451726913452,2.99811887741089,0.00927308201789856,3.24147272109985,0.00890752673149109,1.11051857471466,0.551352620124817,1.11051893234253,0.331559985876083,1.21203172206879,0.331560134887695,1.21203148365021,0.551352858543396,0.88900625705719,0.55648148059845,0.889006733894348,0.331559538841248,0.445961773395538,0.551351130008698,0.445962250232697,0.331558495759964,0.552824020385742,0.33155882358551,0.552823543548584,0.544939756393433,0.2244593501091,0.551350593566895,0.224459826946259,0.331558078527451,0.212327718734741,0.551353752613068,0.212327733635902,0.331561177968979,0.342262029647827,0.331561207771301,0.342261075973511,1.54622447490692,-0.0641964673995972,0.551353693008423,-0.0641964673995972,0.331561028957367,-0.61729371547699,0.556482911109924,-0.6172935962677,0.331560909748077,-0.484692692756653,0.33158665895462,-0.493086576461792,1.55132782459259,-0.893830299377441,0.551353514194489,-0.893830060958862,0.33156082034111,1.332315325737,0.000191645696759224,1.33231461048126,0.334624201059341,1.2120326757431,0.000191375613212585,0.889007449150085,0.000190766528248787,
- 1.11051976680756,0.000191265717148781,0.782789349555969,0.331559300422668,0.782790064811707,0.000190528109669685,0.663551568984985,0.000190259888768196,0.663550853729248,0.324411541223526,0.552824735641479,0.000190010294318199,0.224460542201996,0.000189151614904404,0.445962965488434,0.000189770013093948,2.95042991638184e-005,0.000188706442713737,0.120380580425262,0.000188916921615601,0.120379865169525,0.331557840108871,2.85506248474121e-005,0.338360905647278,0.224459111690521,0.629874706268311,0.120379269123077,0.62474524974823,0.120379388332367,0.546221137046814,0.445961534976959,0.629875242710114,-0.434166073799133,-0.160541594028473,-0.434165954589844,-0.369750618934631,-0.323439061641693,-0.369750618934631,-0.323439121246338,-0.160541594028473,0.8890061378479,0.635005295276642,0.789513945579529,0.629876017570496,0.789514064788818,0.55135190486908,1.11051833629608,0.629876673221588,-0.443721771240234,-0.107554316520691,-0.323439061641693,-0.107554316520691,-0.323439061641693,0.10165473818779,-0.443721771240234,0.101654678583145,-0.553404331207275,-0.160541534423828,-0.553404331207275,-0.369750678539276,-0.458778142929077,1.33155870437622,-0.197602033615112,0.331560879945755,-0.197603225708008,0.544942080974579,-0.328193306922913,1.62346482276917,-0.458780527114868,1.54493963718414,-0.42804354429245,-0.420993030071259,-0.42804354429245,-0.541344165802002,-0.323439002037048,-0.543089151382446,-0.323439002037048,-0.422738015651703,-1.28173661231995,1.33156156539917,-1.02055871486664,0.331560790538788,-1.02055823802948,0.551353454589844,-1.15114617347717,1.62987792491913,-1.28173589706421,1.55135416984558,1.21203124523163,0.629876911640167,0.552823305130005,0.623463928699493,-0.232031106948853,1.5577005147934,-0.365556240081787,1.63298869132996,-0.223639488220215,1.33801078796387,0.603437423706055,1.54622578620911,0.472848653793335,1.62474942207336,0.472849607467651,1.39243125915527,0.603439092636108,1.33156251907349,1.77505600452423,0.551354169845581,1.77505624294281,0.331561386585236,1.88191783428192,0.337377905845642,
- 1.88191735744476,0.551354467868805,1.5535432100296,0.550838768482208,1.55354368686676,0.3315609395504,-1.44690310955048,0.55083841085434,-1.44690310955048,0.331560671329498,-1.316969871521,0.331560760736465,-1.316969871521,1.54699158668518,-1.72343957424164,0.551353275775909,-1.72343933582306,0.331560611724854,1.88783395290375,0.000192837789654732,1.99994707107544,0.000193215906620026,1.99994611740112,0.334963411092758,1.88191878795624,0.000192824751138687,1.55354464054108,0.000192144885659218,1.77505719661713,0.000192584469914436,1.44946491718292,0.000191910192370415,1.44946396350861,0.331560701131821,1.5535432100296,0.629362940788269,1.44946348667145,0.625515580177307,1.44946372509003,0.546991586685181,1.77505576610565,0.629878282546997,-0.789704561233521,-0.674832582473755,-0.685099899768829,-0.673482120037079,-0.685099899768829,-0.555454015731812,-0.789704561233521,-0.556804537773132,-2.11802220344543,1.3373771905899,-1.98743510246277,1.40341424942017,-1.8568457365036,0.337376683950424,-1.85684597492218,0.551353394985199,-1.98743414878845,1.62987732887268,-2.11802196502686,1.55135369300842,-0.560871362686157,0.101654678583145,-0.560871362686157,-0.107554495334625,1.88191735744476,0.629878401756287,-1.05579257011414,1.5469913482666,-1.18638014793396,1.62551522254944,-1.05579280853271,1.33156037330627,-2.25832438468933,0.331035405397415,-2.25884342193604,0.00815555453300476,-2.01071715354919,0.00775048136711121,-2.0112316608429,0.331443428993225,-2.13478636741638,0.392861813306808,-0.893830299377441,0.629877746105194,-1.02055871486664,0.629877686500549,-0.61729371547699,0.635006964206696,-0.493087530136108,0.629877805709839,-0.0641964673995972,0.629877924919128,-0.19760262966156,0.623466014862061,0.21232795715332,0.629877984523773,0.342261552810669,0.624748528003693,-1.72343957424164,0.629877507686615,-1.85684597492218,0.629877507686615,-1.44690310955048,0.629362463951111,-1.31697010993958,0.625515699386597,0.239162907004356,0.0764368176460266,0.242533460259438,0.0764726549386978,0.24380087852478,0.184449151158333,
- 0.239303350448608,0.1855798214674,0.242961972951889,0.0733648613095284,0.239303350448608,0.0179969966411591,0.24380087852478,0.0183199793100357,0.554245471954346,0.985522627830505,0.423062741756439,0.985522627830505,0.423062741756439,0.916933655738831,0.55424553155899,0.916933655738831,0.24380087852478,0.187894701957703,0.239303350448608,0.243086755275726,0.24380087852478,0.241251170635223,0.24380087852478,0.244515508413315,0.24380087852478,0.353143811225891,0.239303350448608,0.352981954813004,0.24380087852478,0.356969654560089,0.977278232574463,0.24379026889801,0.981077432632446,0.242977738380432,0.981077432632446,0.351454377174377,0.97615647315979,0.351501941680908,0.849330961704254,0.241179794073105,0.85060042142868,0.243949413299561,0.82496964931488,0.24255245923996,0.977311611175537,0.241141200065613,0.974031925201416,0.187905192375183,0.981077432632446,0.186224341392517,0.976417779922485,0.357104539871216,0.826720416545868,0.357069492340088,0.826236248016357,0.351811170578003,0.827761590480804,0.230742990970612,0.827454328536987,0.254188030958176,0.237580016255379,0.917926728725433,0.381004244089127,0.917926728725433,0.381004244089127,0.985006153583527,0.256451964378357,0.985006153583527,0.237580016255379,0.976689696311951,0.976467370986938,0.183213353157043,0.976423561573029,0.0875939577817917,0.981077432632446,0.0879178047180176,0.965094387531281,0.0737150833010674,0.842775583267212,0.183553352952003,0.832376956939697,0.0741579458117485,0.843990445137024,0.187868282198906,0.981077432632446,0.0651010274887085,0.975245535373688,0.0636932626366615,0.975886702537537,0.0179970264434814,0.981077432632446,0.0179970264434814,0.3885817527771,0.0725605189800262,0.38847804069519,0.0759156718850136,0.382401704788208,0.0759388655424118,0.382172077894211,0.0725959241390228,0.388491541147232,0.0182561501860619,0.388508588075638,0.0285028070211411,0.368649899959564,0.0182649046182632,0.971815288066864,0.0693389773368835,0.692992508411407,0.241183832287788,0.69305020570755,0.244071304798126,0.686119914054871,0.244078159332275,
- 0.686029076576233,0.241184875369072,0.691392958164215,0.352140367031097,0.692201912403107,0.357052206993103,0.682451963424683,0.35705041885376,0.68227231502533,0.352160811424255,0.690971314907074,0.185798168182373,0.693607807159424,0.185795977711678,0.693702220916748,0.194142654538155,0.676508188247681,0.18790091574192,0.676070690155029,0.183720037341118,0.693212509155273,0.171162575483322,0.817854344844818,0.0739917084574699,0.81773430109024,0.0703587457537651,0.823275625705719,0.0722079426050186,0.823330819606781,0.0572714321315289,0.823568642139435,0.351844012737274,0.824123382568359,0.357076495885849,0.822381258010864,0.357076168060303,0.821823120117188,0.351847916841507,0.823349356651306,0.233365967869759,0.825086832046509,0.233692690730095,0.824861764907837,0.25279238820076,0.823079943656921,0.255805730819702,0.823635458946228,0.0881394445896149,0.825270593166351,0.165663942694664,0.823466837406158,0.162875920534134,0.825936853885651,0.0580887794494629,0.823702692985535,0.01806415989995,0.826346278190613,0.0180621258914471,0.691559731960297,0.070886991918087,0.691621482372284,0.0747587606310844,0.679816424846649,0.074803814291954,0.677516937255859,0.070964552462101,0.691648840904236,0.0560615211725235,0.528822362422943,0.241208434104919,0.528932631015778,0.244233578443527,0.525259613990784,0.244237214326859,0.525148153305054,0.241208985447884,0.526966214179993,0.352508991956711,0.528091371059418,0.357021987438202,0.524418532848358,0.357021331787109,0.523286283016205,0.352517247200012,0.529519319534302,0.187898814678192,0.525842726230621,0.187898769974709,0.527774512767792,0.0735878571867943,0.527868866920471,0.0854368656873703,0.524194777011871,0.0849304273724556,0.524108290672302,0.073604978621006,0.528928995132446,0.183968231081963,0.525247633457184,0.18397444486618,0.524150788784027,0.0556844025850296,0.527819037437439,0.0548084490001202,0.389276772737503,0.241229355335236,0.389431804418564,0.244371503591537,0.380715936422348,0.244380116462708,0.380599588155746,0.241230651736259,0.387202501296997,0.352822303771973,
- 0.388596504926682,0.356996297836304,0.3687404692173,0.356992661952972,0.366695076227188,0.352868288755417,0.371134757995605,0.187896534800529,0.389628946781158,0.210263282060623,0.387698382139206,0.328698843717575,0.370549082756042,0.184235364198685,0.389042377471924,0.172423839569092,0.506570279598236,0.0754649937152863,0.503463089466095,0.0719259604811668,0.398575514554977,0.352796792984009,0.400448560714722,0.35699850320816,0.398134976625443,0.241228029131889,0.39736196398735,0.24436366558075,0.397625267505646,0.187896922230721,0.404053092002869,0.184178858995438,0.529960989952087,0.0542966239154339,0.52991509437561,0.0735778659582138,0.529114842414856,0.352504193782806,0.530235886573792,0.357022374868393,0.531077206134796,0.244231462478638,0.530967652797699,0.241208121180534,0.531665980815887,0.187898859381676,0.531078398227692,0.183964595198631,0.530014038085938,0.0857327058911324,0.538256525993347,0.0717337727546692,0.538365960121155,0.0753436461091042,0.707346200942993,0.0708208978176117,0.708431959152222,0.0746566131711006,0.698787271976471,0.357053399085999,0.698318004608154,0.352124840021133,0.790148913860321,0.243975281715393,0.790700376033783,0.241169184446335,0.69532299041748,0.185794547200203,0.723487019538879,0.187901586294174,0.722077012062073,0.183642446994781,0.825813412666321,0.0701567828655243,0.826285839080811,0.0896923094987869,0.833495080471039,0.0701137557625771,0.389111280441284,0.184204056859016,0.396520435810089,0.0725166723132133,0.39501017332077,0.0758907496929169,0.400334984064102,0.0182509254664183,0.524215161800385,0.018196277320385,0.527885317802429,0.0181946586817503,0.530028223991394,0.0181937124580145,0.691789209842682,0.0849217250943184,0.805163502693176,0.183502286672592,0.80540531873703,0.187902763485909,0.38988333940506,0.187896803021431,0.82801616191864,0.169972375035286,0.825646102428436,0.183467745780945,0.825852274894714,0.187903061509132,0.823903679847717,0.200160890817642,0.825668573379517,0.198891311883926,0.828323245048523,0.196949869394302,0.82196182012558,0.0180649273097515,
- 0.691876828670502,0.0181223154067993,0.682134032249451,0.0181266125291586,0.698457419872284,0.0181194115430117,0.698499023914337,0.244065925478935,0.698750495910645,0.241182968020439,0.239162907004356,0.0764368176460266,0.242533460259438,0.0764726549386978,0.24380087852478,0.184449151158333,0.239303350448608,0.1855798214674,0.242961972951889,0.0733648613095284,0.239303350448608,0.0179969966411591,0.24380087852478,0.0183199793100357,0.554245471954346,0.985522627830505,0.423062741756439,0.985522627830505,0.423062741756439,0.916933655738831,0.55424553155899,0.916933655738831,0.24380087852478,0.187894701957703,0.239303350448608,0.243086755275726,0.24380087852478,0.241251170635223,0.24380087852478,0.244515508413315,0.24380087852478,0.353143811225891,0.239303350448608,0.352981954813004,0.24380087852478,0.356969654560089,0.977278232574463,0.24379026889801,0.981077432632446,0.242977738380432,0.981077432632446,0.351454377174377,0.97615647315979,0.351501941680908,0.849330961704254,0.241179794073105,0.85060042142868,0.243949413299561,0.82496964931488,0.24255245923996,0.977311611175537,0.241141200065613,0.974031925201416,0.187905192375183,0.981077432632446,0.186224341392517,0.976417779922485,0.357104539871216,0.826720416545868,0.357069492340088,0.826236248016357,0.351811170578003,0.827761590480804,0.230742990970612,0.827454328536987,0.254188030958176,0.237580016255379,0.917926728725433,0.381004244089127,0.917926728725433,0.381004244089127,0.985006153583527,0.256451964378357,0.985006153583527,0.237580016255379,0.976689696311951,0.976467370986938,0.183213353157043,0.976423561573029,0.0875939577817917,0.981077432632446,0.0879178047180176,0.965094387531281,0.0737150833010674,0.842775583267212,0.183553352952003,0.832376956939697,0.0741579458117485,0.843990445137024,0.187868282198906,0.981077432632446,0.0651010274887085,0.975245535373688,0.0636932626366615,0.975886702537537,0.0179970264434814,0.981077432632446,0.0179970264434814,0.3885817527771,0.0725605189800262,0.38847804069519,0.0759156718850136,0.382401704788208,0.0759388655424118,
- 0.382172077894211,0.0725959241390228,0.388491541147232,0.0182561501860619,0.388508588075638,0.0285028070211411,0.368649899959564,0.0182649046182632,0.971815288066864,0.0693389773368835,0.692992508411407,0.241183832287788,0.69305020570755,0.244071304798126,0.686119914054871,0.244078159332275,0.686029076576233,0.241184875369072,0.691392958164215,0.352140367031097,0.692201912403107,0.357052206993103,0.682451963424683,0.35705041885376,0.68227231502533,0.352160811424255,0.690971314907074,0.185798168182373,0.693607807159424,0.185795977711678,0.693702220916748,0.194142654538155,0.676508188247681,0.18790091574192,0.676070690155029,0.183720037341118,0.693212509155273,0.171162575483322,0.817854344844818,0.0739917084574699,0.81773430109024,0.0703587457537651,0.823275625705719,0.0722079426050186,0.823330819606781,0.0572714321315289,0.823568642139435,0.351844012737274,0.824123382568359,0.357076495885849,0.822381258010864,0.357076168060303,0.821823120117188,0.351847916841507,0.823349356651306,0.233365967869759,0.825086832046509,0.233692690730095,0.824861764907837,0.25279238820076,0.823079943656921,0.255805730819702,0.823635458946228,0.0881394445896149,0.825270593166351,0.165663942694664,0.823466837406158,0.162875920534134,0.825936853885651,0.0580887794494629,0.823702692985535,0.01806415989995,0.826346278190613,0.0180621258914471,0.691559731960297,0.070886991918087,0.691621482372284,0.0747587606310844,0.679816424846649,0.074803814291954,0.677516937255859,0.070964552462101,0.691648840904236,0.0560615211725235,0.528822362422943,0.241208434104919,0.528932631015778,0.244233578443527,0.525259613990784,0.244237214326859,0.525148153305054,0.241208985447884,0.526966214179993,0.352508991956711,0.528091371059418,0.357021987438202,0.524418532848358,0.357021331787109,0.523286283016205,0.352517247200012,0.529519319534302,0.187898814678192,0.525842726230621,0.187898769974709,0.527774512767792,0.0735878571867943,0.527868866920471,0.0854368656873703,0.524194777011871,0.0849304273724556,0.524108290672302,0.073604978621006,0.528928995132446,0.183968231081963,
- 0.525247633457184,0.18397444486618,0.524150788784027,0.0556844025850296,0.527819037437439,0.0548084490001202,0.389276772737503,0.241229355335236,0.389431804418564,0.244371503591537,0.380715936422348,0.244380116462708,0.380599588155746,0.241230651736259,0.387202501296997,0.352822303771973,0.388596504926682,0.356996297836304,0.3687404692173,0.356992661952972,0.366695076227188,0.352868288755417,0.371134757995605,0.187896534800529,0.389628946781158,0.210263282060623,0.387698382139206,0.328698843717575,0.370549082756042,0.184235364198685,0.389042377471924,0.172423839569092,0.506570279598236,0.0754649937152863,0.503463089466095,0.0719259604811668,0.398575514554977,0.352796792984009,0.400448560714722,0.35699850320816,0.398134976625443,0.241228029131889,0.39736196398735,0.24436366558075,0.397625267505646,0.187896922230721,0.404053092002869,0.184178858995438,0.529960989952087,0.0542966239154339,0.52991509437561,0.0735778659582138,0.529114842414856,0.352504193782806,0.530235886573792,0.357022374868393,0.531077206134796,0.244231462478638,0.530967652797699,0.241208121180534,0.531665980815887,0.187898859381676,0.531078398227692,0.183964595198631,0.530014038085938,0.0857327058911324,0.538256525993347,0.0717337727546692,0.538365960121155,0.0753436461091042,0.707346200942993,0.0708208978176117,0.708431959152222,0.0746566131711006,0.698787271976471,0.357053399085999,0.698318004608154,0.352124840021133,0.790148913860321,0.243975281715393,0.790700376033783,0.241169184446335,0.69532299041748,0.185794547200203,0.723487019538879,0.187901586294174,0.722077012062073,0.183642446994781,0.825813412666321,0.0701567828655243,0.826285839080811,0.0896923094987869,0.833495080471039,0.0701137557625771,0.389111280441284,0.184204056859016,0.396520435810089,0.0725166723132133,0.39501017332077,0.0758907496929169,0.400334984064102,0.0182509254664183,0.524215161800385,0.018196277320385,0.527885317802429,0.0181946586817503,0.530028223991394,0.0181937124580145,0.691789209842682,0.0849217250943184,0.805163502693176,0.183502286672592,0.80540531873703,0.187902763485909,
- 0.38988333940506,0.187896803021431,0.82801616191864,0.169972375035286,0.825646102428436,0.183467745780945,0.825852274894714,0.187903061509132,0.823903679847717,0.200160890817642,0.825668573379517,0.198891311883926,0.828323245048523,0.196949869394302,0.82196182012558,0.0180649273097515,0.691876828670502,0.0181223154067993,0.682134032249451,0.0181266125291586,0.698457419872284,0.0181194115430117,0.698499023914337,0.244065925478935,0.698750495910645,0.241182968020439,0.342261552810669,0.000192433595657349,0.21232795715332,0.000192403793334961,-0.197602391242981,0.000192195177078247,-0.0641962289810181,0.000192224979400635,-0.33583390712738,0.000192165374755859,-0.335834145545959,0.324413657188416,-1.02055871486664,0.000191986560821533,-0.893830060958862,0.000192016363143921,-1.17071974277496,0.000191986560821533,-1.17071974277496,0.334624469280243,-1.8568457365036,0.000191807746887207,-1.72343933582306,0.000191777944564819,-1.86423015594482,0.000191807746887207,-2.00026798248291,0.336237788200378,-2.00026798248291,0.000617057085037231,-1.316969871521,0.00019189715385437,-1.44690310955048,0.000191926956176758,-0.484593987464905,0.000192135572433472,-0.617293477058411,0.000192105770111084,1.6039742231369,0.708725214004517,1.724325299263,0.708725214004517,1.724325299263,0.91793429851532,1.60397446155548,0.91793429851532,1.49989426136017,0.708725214004517,1.49989438056946,0.91793429851532,1.27839195728302,0.708725214004517,1.27839195728302,0.917934238910675,1.17153024673462,0.708725214004517,1.17153024673462,0.917934238910675,1.06080341339111,0.708725214004517,1.06080341339111,0.917934358119965,0.941564917564392,0.708725214004517,0.941642999649048,0.91793429851532,0.835347414016724,0.91793429851532,0.835347414016724,0.708725214004517,0.613835096359253,0.708725214004517,0.613835096359253,0.91793429851532,0.512322425842285,0.708725214004517,0.512322425842285,0.91793429851532,0.392039746046066,0.708725214004517,0.392039746046066,0.91793429851532,0.274890005588531,0.91793429851532,0.274890005588531,0.708725214004517,-0.163478851318359,
- 0.91793429851532,-0.275591790676117,0.91793429851532,-0.275591790676117,0.708725214004517,-0.163478851318359,0.708725214004517,-0.157563745975494,0.91793429851532,-0.157563745975494,0.708725214004517,-0.0507021546363831,0.91793429851532,-0.0507021546363831,0.708725214004517,0.1708103120327,0.91793429851532,0.1708103120327,0.708725214004517,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,
- 0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,
- 0.62293016910553,0.931818902492523,0.622424244880676,0.929014563560486,0.538674354553223,0.931817650794983,0.533571779727936,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.931816637516022,0.45630607008934,0.929014682769775,0.455558896064758,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.941647410392761,0.517915189266205,0.953591704368591,0.475067794322968,0.941828668117523,0.457364410161972,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.456536293029785,0.849317789077759,0.483711242675781,0.886344730854034,0.502530753612518,0.895292162895203,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,
- 0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,
- 0.582656979560852,0.105120569467545,1.12461709976196,0.0914180129766464,1.12128508090973,0.122184991836548,1.07768595218658,0.082172691822052,1.0564546585083,0.10664227604866,1.03215026855469,0.1207455098629,1.03137564659119,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.98667573928833,0.474954187870026,0.983874261379242,0.475067555904388,0.0698723793029785,1.08032011985779,0.408585429191589,0.744834244251251,0.408585637807846,0.733902812004089,0.423326820135117,0.709175705909729,0.426553308963776,0.685349702835083,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,0.824785172939301,0.533781409263611,0.827285945415497,0.533781409263611,0.827285468578339,0.580158233642578,0.824784696102142,0.580158233642578,0.824821174144745,0.531151294708252,0.736139476299286,0.533781409263611,0.73609846830368,0.531282424926758,0.931818783283234,0.651578187942505,0.929015159606934,0.651578187942505,0.929014444351196,0.62293016910553,0.931818902492523,0.622424244880676,0.929014682769775,0.474954783916473,0.931816756725311,0.475067973136902,0.733653724193573,0.533781409263611,0.736139476299286,0.580158233642578,0.733653962612152,0.580158233642578,0.2285176217556,0.710448265075684,0.228518605232239,0.707696974277496,0.367977976799011,0.707777082920074,0.367993921041489,0.710526406764984,0.824820220470428,0.582788467407227,0.73609846830368,0.582656979560852,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.98387622833252,0.622424602508545,0.98667585849762,0.622930407524109,
- 0.983874261379242,0.475067555904388,0.98667573928833,0.474954187870026,0.228518605232239,0.656658113002777,0.228517457842827,0.653907060623169,0.367994010448456,0.653828322887421,0.367977917194366,0.656578719615936,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.471495896577835,0.607309818267822,0.504646360874176,0.607310652732849,0.504633128643036,0.744834244251251,0.408585429191589,0.744834244251251,0.53672206401825,0.956351220607758,0.536969423294067,0.984559535980225,0.442346304655075,0.984559535980225,0.441069841384888,0.849473178386688,0.476673066616058,0.849115371704102,-0.580495357513428,-0.674832582473755,-0.580495357513428,-0.556804537773132,-0.532648086547852,-0.543089151382446,-0.532648086547852,-0.422738015651703,0.376749515533447,0.207779169082642,0.382156580686569,0.207937359809875,0.382212579250336,0.19220757484436,0.377954810857773,0.189264237880707,0.372594892978668,0.232639849185944,0.379514098167419,0.22761470079422,0.37955716252327,0.227182149887085,0.413305163383484,0.224951267242432,0.382784962654114,0.249355003237724,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.564511179924011,0.218570411205292,0.560128808021545,0.219051539897919,0.558496117591858,0.224221214652061,0.563001155853271,0.224230721592903,0.666931092739105,0.0601037070155144,0.662333130836487,0.0649285390973091,0.56450492143631,0.185516536235809,0.491526544094086,0.185904562473297,0.491228878498077,0.191779315471649,0.564549386501312,0.191491544246674,0.473301857709885,0.165234804153442,0.47493639588356,0.185992956161499,0.478493839502335,0.18597400188446,0.35041081905365,0.221110373735428,0.350173681974411,0.347115606069565,0.376514375209808,0.362219661474228,0.379024714231491,
- 0.253350257873535,0.365059554576874,0.220473945140839,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.47870472073555,0.219448193907738,0.479635179042816,0.224508166313171,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.663088619709015,0.224330231547356,0.667415678501129,0.224334597587585,0.470479488372803,0.18601667881012,0.470469444990158,0.191860914230347,0.474966675043106,0.191843152046204,0.4737369120121,0.219465374946594,0.471862256526947,0.219481512904167,0.469260692596436,0.224782302975655,0.473920434713364,0.224815607070923,0.478426277637482,0.191829577088356,0.565214514732361,0.0626287311315537,0.562614679336548,0.0595441088080406,0.672348499298096,0.224311992526054,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.668739497661591,0.0608999915421009,0.472329139709473,0.0616068542003632,0.381906419992447,0.360916614532471,0.380384922027588,0.0633751228451729,0.376233398914337,0.0618476644158363,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.376749515533447,0.207779169082642,0.377954810857773,0.189264237880707,0.382212579250336,0.19220757484436,0.382156580686569,0.207937359809875,0.372594892978668,0.232639849185944,0.37955716252327,0.227182149887085,0.379514098167419,0.22761470079422,0.413305133581162,0.224951803684235,0.382783621549606,0.249356582760811,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,
- 0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.564511179924011,0.218570411205292,0.563001155853271,0.224231600761414,0.558496117591858,0.224221646785736,0.560128808021545,0.219051539897919,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.56450492143631,0.185516536235809,0.564549386501312,0.191491544246674,0.491228878498077,0.191779315471649,0.491526544094086,0.185904562473297,0.473301857709885,0.165234804153442,0.478493839502335,0.18597400188446,0.47493639588356,0.185992956161499,0.35041081905365,0.221110373735428,0.365059554576874,0.220473945140839,0.379024267196655,0.253350734710693,0.376516371965408,0.36212170124054,0.350173860788345,0.347015827894211,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.479632318019867,0.224508985877037,0.47870472073555,0.219448193907738,0.790541708469391,0.223770812153816,0.787462055683136,0.22378496825695,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224331140518188,0.474966675043106,0.191843152046204,0.470469444990158,0.191860914230347,0.470479488372803,0.18601667881012,0.4737369120121,0.219465374946594,0.47391951084137,0.224816158413887,0.469258099794388,0.224783003330231,0.471862256526947,0.219481512904167,0.478426277637482,0.191829577088356,0.562616229057312,0.0596463978290558,0.565213918685913,0.0627285167574883,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.668744921684265,0.0610079728066921,0.472330093383789,0.0617085248231888,0.376234769821167,0.0619485899806023,0.380386352539063,0.0634759813547134,0.327260941267014,0.140015706419945,
- 0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177272796631,0.366830497980118,0.788075625896454,0.362160086631775,0.788075983524323,0.362255841493607,0.79117751121521,0.366950154304504,0.381907165050507,0.360820382833481,0.674314498901367,0.360022366046906,0.674516022205353,0.364109843969345,0.788094460964203,0.366416960954666,0.672134339809418,0.364394634962082,0.667524099349976,0.360722005367279,0.667500495910645,0.364999920129776,0.65965873003006,0.35951367020607,0.662003755569458,0.364010602235794,0.481853932142258,0.361111223697662,0.481894820928574,0.365159511566162,0.559614360332489,0.367362767457962,0.559768676757813,0.363268136978149,0.479708075523376,0.36506113409996,0.474211364984512,0.360593497753143,0.474220395088196,0.364814221858978,0.467986553907394,0.365041226148605,0.470529496669769,0.367415726184845,0.467831999063492,0.368927508592606,0.381873548030853,0.365096062421799,0.564394593238831,0.361057490110397,0.564445555210114,0.365496546030045,0.659594535827637,0.363576978445053,0.562268912792206,0.366375923156738,0.66752427816391,0.360624819993973,0.659660995006561,0.359420508146286,0.564393281936646,0.360941559076309,0.674310088157654,0.359929859638214,0.559769213199615,0.363172769546509,0.4818474650383,0.361021339893341,0.474213689565659,0.360487639904022,0.467987358570099,0.364945501089096,0.378522098064423,0.363297253847122,0.376749515533447,0.207779169082642,0.382156580686569,0.207937359809875,0.382212579250336,0.19220757484436,0.377954810857773,0.189264237880707,0.372594892978668,0.232639849185944,0.379514098167419,0.22761470079422,0.37955716252327,0.227182149887085,0.413305163383484,0.224951267242432,0.382784962654114,0.249355003237724,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.564511179924011,
- 0.218570411205292,0.560128808021545,0.219051539897919,0.558496117591858,0.224221214652061,0.563001155853271,0.224230721592903,0.666931092739105,0.0601037070155144,0.662333130836487,0.0649285390973091,0.56450492143631,0.185516536235809,0.491526544094086,0.185904562473297,0.491228878498077,0.191779315471649,0.564549386501312,0.191491544246674,0.473301857709885,0.165234804153442,0.47493639588356,0.185992956161499,0.478493839502335,0.18597400188446,0.35041081905365,0.221110373735428,0.350173681974411,0.347115606069565,0.376514375209808,0.362219661474228,0.379024714231491,0.253350257873535,0.365059554576874,0.220473945140839,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.47870472073555,0.219448193907738,0.479635179042816,0.224508166313171,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.663088619709015,0.224330231547356,0.667415678501129,0.224334597587585,0.470479488372803,0.18601667881012,0.470469444990158,0.191860914230347,0.474966675043106,0.191843152046204,0.4737369120121,0.219465374946594,0.471862256526947,0.219481512904167,0.469260692596436,0.224782302975655,0.473920434713364,0.224815607070923,0.478426277637482,0.191829577088356,0.565214514732361,0.0626287311315537,0.562614679336548,0.0595441088080406,0.672348499298096,0.224311992526054,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.668739497661591,0.0608999915421009,0.472329139709473,0.0616068542003632,0.381906419992447,0.360916614532471,0.380384922027588,0.0633751228451729,0.376233398914337,0.0618476644158363,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,
- 0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.376749515533447,0.207779169082642,0.377954810857773,0.189264237880707,0.382212579250336,0.19220757484436,0.382156580686569,0.207937359809875,0.372594892978668,0.232639849185944,0.37955716252327,0.227182149887085,0.379514098167419,0.22761470079422,0.413305133581162,0.224951803684235,0.382783621549606,0.249356582760811,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.564511179924011,0.218570411205292,0.563001155853271,0.224231600761414,0.558496117591858,0.224221646785736,0.560128808021545,0.219051539897919,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.56450492143631,0.185516536235809,0.564549386501312,0.191491544246674,0.491228878498077,0.191779315471649,0.491526544094086,0.185904562473297,0.473301857709885,0.165234804153442,0.478493839502335,0.18597400188446,0.47493639588356,0.185992956161499,0.35041081905365,0.221110373735428,0.365059554576874,0.220473945140839,0.379024267196655,0.253350734710693,0.376516371965408,0.36212170124054,0.350173860788345,0.347015827894211,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.479632318019867,0.224508985877037,0.47870472073555,0.219448193907738,0.790541708469391,0.223770812153816,0.787462055683136,0.22378496825695,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224331140518188,0.474966675043106,0.191843152046204,0.470469444990158,0.191860914230347,0.470479488372803,0.18601667881012,
- 0.4737369120121,0.219465374946594,0.47391951084137,0.224816158413887,0.469258099794388,0.224783003330231,0.471862256526947,0.219481512904167,0.478426277637482,0.191829577088356,0.562616229057312,0.0596463978290558,0.565213918685913,0.0627285167574883,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.668744921684265,0.0610079728066921,0.472330093383789,0.0617085248231888,0.376234769821167,0.0619485899806023,0.380386352539063,0.0634759813547134,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177272796631,0.366830497980118,0.788075625896454,0.362160086631775,0.788075983524323,0.362255841493607,0.79117751121521,0.366950154304504,0.381907165050507,0.360820382833481,0.674314498901367,0.360022366046906,0.674516022205353,0.364109843969345,0.788094460964203,0.366416960954666,0.672134339809418,0.364394634962082,0.667524099349976,0.360722005367279,0.667500495910645,0.364999920129776,0.65965873003006,0.35951367020607,0.662003755569458,0.364010602235794,0.481853932142258,0.361111223697662,0.481894820928574,0.365159511566162,0.559614360332489,0.367362767457962,0.559768676757813,0.363268136978149,0.479708075523376,0.36506113409996,0.474211364984512,0.360593497753143,0.474220395088196,0.364814221858978,0.467986553907394,0.365041226148605,0.470529496669769,0.367415726184845,0.467831999063492,0.368927508592606,0.381873548030853,0.365096062421799,0.564394593238831,0.361057490110397,0.564445555210114,0.365496546030045,0.659594535827637,0.363576978445053,0.562268912792206,0.366375923156738,0.66752427816391,0.360624819993973,0.659660995006561,0.359420508146286,0.564393281936646,0.360941559076309,0.674310088157654,0.359929859638214,0.559769213199615,0.363172769546509,0.4818474650383,0.361021339893341,0.474213689565659,0.360487639904022,0.467987358570099,0.364945501089096,
- 0.378522098064423,0.363297253847122,0.376749515533447,0.207779169082642,0.382156580686569,0.207937359809875,0.382212579250336,0.19220757484436,0.377954810857773,0.189264237880707,0.372594892978668,0.232639849185944,0.379514098167419,0.22761470079422,0.37955716252327,0.227182149887085,0.413305163383484,0.224951267242432,0.382784962654114,0.249355003237724,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.564511179924011,0.218570411205292,0.560128808021545,0.219051539897919,0.558496117591858,0.224221214652061,0.563001155853271,0.224230721592903,0.666931092739105,0.0601037070155144,0.662333130836487,0.0649285390973091,0.56450492143631,0.185516536235809,0.491526544094086,0.185904562473297,0.491228878498077,0.191779315471649,0.564549386501312,0.191491544246674,0.473301857709885,0.165234804153442,0.47493639588356,0.185992956161499,0.478493839502335,0.18597400188446,0.35041081905365,0.221110373735428,0.350173681974411,0.347115606069565,0.376514375209808,0.362219661474228,0.379024714231491,0.253350257873535,0.365059554576874,0.220473945140839,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.47870472073555,0.219448193907738,0.479635179042816,0.224508166313171,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.663088619709015,0.224330231547356,0.667415678501129,0.224334597587585,0.470479488372803,0.18601667881012,0.470469444990158,0.191860914230347,0.474966675043106,0.191843152046204,0.4737369120121,0.219465374946594,0.471862256526947,0.219481512904167,0.469260692596436,
- 0.224782302975655,0.473920434713364,0.224815607070923,0.478426277637482,0.191829577088356,0.565214514732361,0.0626287311315537,0.562614679336548,0.0595441088080406,0.672348499298096,0.224311992526054,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.668739497661591,0.0608999915421009,0.472329139709473,0.0616068542003632,0.381906419992447,0.360916614532471,0.380384922027588,0.0633751228451729,0.376233398914337,0.0618476644158363,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.376749515533447,0.207779169082642,0.377954810857773,0.189264237880707,0.382212579250336,0.19220757484436,0.382156580686569,0.207937359809875,0.372594892978668,0.232639849185944,0.37955716252327,0.227182149887085,0.379514098167419,0.22761470079422,0.413305133581162,0.224951803684235,0.382783621549606,0.249356582760811,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.564511179924011,0.218570411205292,0.563001155853271,0.224231600761414,0.558496117591858,0.224221646785736,0.560128808021545,0.219051539897919,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.56450492143631,0.185516536235809,0.564549386501312,0.191491544246674,0.491228878498077,0.191779315471649,0.491526544094086,0.185904562473297,0.473301857709885,0.165234804153442,0.478493839502335,0.18597400188446,0.47493639588356,0.185992956161499,0.35041081905365,0.221110373735428,0.365059554576874,0.220473945140839,0.379024267196655,0.253350734710693,0.376516371965408,0.36212170124054,0.350173860788345,0.347015827894211,0.410327911376953,0.219781041145325,0.382134407758713,0.18648636341095,0.479632318019867,0.224508985877037,0.47870472073555,0.219448193907738,0.790541708469391,
- 0.223770812153816,0.787462055683136,0.22378496825695,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224331140518188,0.474966675043106,0.191843152046204,0.470469444990158,0.191860914230347,0.470479488372803,0.18601667881012,0.4737369120121,0.219465374946594,0.47391951084137,0.224816158413887,0.469258099794388,0.224783003330231,0.471862256526947,0.219481512904167,0.478426277637482,0.191829577088356,0.562616229057312,0.0596463978290558,0.565213918685913,0.0627285167574883,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.668744921684265,0.0610079728066921,0.472330093383789,0.0617085248231888,0.376234769821167,0.0619485899806023,0.380386352539063,0.0634759813547134,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177272796631,0.366830497980118,0.788075625896454,0.362160086631775,0.788075983524323,0.362255841493607,0.79117751121521,0.366950154304504,0.381907165050507,0.360820382833481,0.674314498901367,0.360022366046906,0.674516022205353,0.364109843969345,0.788094460964203,0.366416960954666,0.672134339809418,0.364394634962082,0.667524099349976,0.360722005367279,0.667500495910645,0.364999920129776,0.65965873003006,0.35951367020607,0.662003755569458,0.364010602235794,0.481853932142258,0.361111223697662,0.481894820928574,0.365159511566162,0.559614360332489,0.367362767457962,0.559768676757813,0.363268136978149,0.479708075523376,0.36506113409996,0.474211364984512,0.360593497753143,0.474220395088196,
- 0.364814221858978,0.467986553907394,0.365041226148605,0.470529496669769,0.367415726184845,0.467831999063492,0.368927508592606,0.381873548030853,0.365096062421799,0.564394593238831,0.361057490110397,0.564445555210114,0.365496546030045,0.659594535827637,0.363576978445053,0.562268912792206,0.366375923156738,0.66752427816391,0.360624819993973,0.659660995006561,0.359420508146286,0.564393281936646,0.360941559076309,0.674310088157654,0.359929859638214,0.559769213199615,0.363172769546509,0.4818474650383,0.361021339893341,0.474213689565659,0.360487639904022,0.467987358570099,0.364945501089096,0.378522098064423,0.363297253847122,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.667835295200348,0.0605018511414528,0.662333130836487,0.0649285390973091,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.663087725639343,0.224330231547356,0.667413651943207,0.224334597587585,0.672343969345093,0.224312007427216,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.659697234630585,0.359482079744339,0.667500495910645,0.364999920129776,0.568602919578552,0.21860645711422,0.5671746134758,0.224234849214554,0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569264233112335,0.0627246275544167,0.568371951580048,0.361230194568634,0.674285531044006,0.359995305538177,0.788075864315033,0.362222284078598,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,
- 0.353283852338791,0.0257102977484465,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.662334442138672,0.0650262832641602,0.667838573455811,0.0606088489294052,0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224330231547356,0.667500972747803,0.364901274442673,0.659699618816376,0.359386265277863,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.5671746134758,0.224234849214554,0.568602919578552,0.21860645711422,0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569263696670532,0.0628243312239647,0.568371057510376,0.361131995916367,0.674281001091003,0.35990047454834,0.78807544708252,0.362123906612396,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791072249412537,0.366831719875336,0.706390738487244,0.361326992511749,0.705745458602905,0.357956051826477,0.749732136726379,0.302548170089722,0.717785596847534,0.239475429058075,0.719095587730408,0.236303329467773,0.732375621795654,0.230294227600098,0.735480189323425,0.231261163949966,0.772318243980408,0.304843544960022,0.721425414085388,0.369565784931183,0.71819007396698,0.369885981082916,0.563001155853271,0.224230706691742,0.56443977355957,0.365496665239334,0.564438700675964,0.365398406982422,0.563001155853271,0.224230706691742,
- 0.564511179924011,0.218570411205292,0.564549386501312,0.191491544246674,0.56450492143631,0.185516536235809,0.565213918685913,0.0627285167574883,0.56450492143631,0.185516536235809,0.565214514732361,0.0626287311315537,0.564549386501312,0.191491544246674,0.564511179924011,0.218570411205292,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.671162486076355,0.108637683093548,0.672343969345093,0.224312007427216,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.66741818189621,0.219476938247681,0.667413651943207,0.224334597587585,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.668739497661591,0.0608999915421009,0.666931092739105,0.0601037070155144,0.667458295822144,0.364688843488693,0.674189805984497,0.361036121845245,0.788080394268036,0.363243997097015,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.671162486076355,0.108637683093548,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.667413651943207,0.224334597587585,0.674185216426849,0.360942393541336,
- 0.667458236217499,0.364586710929871,0.66741818189621,0.219476938247681,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.668744921684265,0.0610079728066921,0.666932165622711,0.0602097250521183,0.788079977035522,0.363146930932999,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791177332401276,0.366849839687347,0.75704300403595,0.241456717252731,0.757222175598145,0.245272606611252,0.722778856754303,0.307271063327789,0.757222175598145,0.36921101808548,0.75704300403595,0.373026967048645,0.741214394569397,0.382075548171997,0.738877177238464,0.381086260080338,0.702746868133545,0.307271063327789,0.738877177238464,0.233401149511337,0.741214454174042,0.232411831617355,0.791177809238434,0.366951078176498,0.788075089454651,0.366416573524475,0.674341976642609,0.364106297492981,0.672890841960907,0.364345222711563,0.791072726249695,0.36693286895752,0.674488544464111,0.36410927772522,0.788094460964203,0.366416960954666,0.659455835819244,0.363579779863358,0.568407595157623,0.365416616201401,0.671883940696716,0.364427328109741,0.662344574928284,0.36407196521759,0.663463056087494,0.191754177212715,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.663953542709351,0.185412883758545,0.662638187408447,0.219434827566147,0.66741818189621,0.219476938247681,0.666931092739105,0.0601037070155144,0.662333130836487,0.0649285390973091,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.663087725639343,0.224330231547356,0.667413651943207,0.224334597587585,0.672343969345093,0.224312007427216,
- 0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.659697949886322,0.359383046627045,0.667500495910645,0.364999890327454,0.568602919578552,0.21860645711422,0.5671746134758,0.224234849214554,0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569264233112335,0.0627246275544167,0.568372547626495,0.361129015684128,0.668739497661591,0.0608999915421009,0.674285531044006,0.359895825386047,0.788075387477875,0.362120658159256,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,0.663463056087494,0.191754177212715,0.663953542709351,0.185412883758545,0.668129622936249,0.185408532619476,0.668102920055389,0.191766500473022,0.66741818189621,0.219476938247681,0.662638187408447,0.219434827566147,0.662334442138672,0.0650262832641602,0.666932165622711,0.0602097250521183,0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.667413651943207,0.224334597587585,0.663087725639343,0.224330231547356,0.667500972747803,0.364901274442673,0.659700274467468,0.359288543462753,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.5671746134758,0.224234849214554,0.568602919578552,0.21860645711422,0.56867390871048,0.191502496600151,0.568651735782623,0.185512214899063,0.569263696670532,0.0628243312239647,0.568371593952179,0.361032128334045,0.668744921684265,0.0610079728066921,0.788074970245361,0.362023919820786,0.674281060695648,0.359802305698395,0.327260941267014,0.140015706419945,
- 0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791097044944763,0.36683601140976,0.706390738487244,0.361326992511749,0.705745458602905,0.357956051826477,0.749732136726379,0.302548170089722,0.717785596847534,0.239475429058075,0.719095587730408,0.236303329467773,0.732375621795654,0.230294227600098,0.735480189323425,0.231261163949966,0.772318243980408,0.304843544960022,0.721425414085388,0.369565784931183,0.71819007396698,0.369885981082916,0.563001155853271,0.224230706691742,0.564840078353882,0.365488499403,0.564839005470276,0.365390330553055,0.563001155853271,0.224230706691742,0.564511179924011,0.218570411205292,0.564549386501312,0.191491544246674,0.56450492143631,0.185516536235809,0.565213918685913,0.0627285167574883,0.56450492143631,0.185516536235809,0.565214514732361,0.0626287311315537,0.564549386501312,0.191491544246674,0.564511179924011,0.218570411205292,0.790541768074036,0.223770171403885,0.790369272232056,0.220535561442375,0.78729236125946,0.220509067177773,0.787461996078491,0.223784297704697,0.67105370759964,0.191773548722267,0.787697970867157,0.192051887512207,0.787718951702118,0.184813052415848,0.671328186988831,0.18539260327816,0.671684980392456,0.219513669610024,0.787219941616058,0.0634521320462227,0.673755645751953,0.0651446059346199,0.672343969345093,0.224312007427216,0.790778636932373,0.192059248685837,0.790800631046295,0.184797704219818,0.790294170379639,0.060707725584507,0.667413651943207,0.224334597587585,0.674156606197357,0.360366404056549,0.66741818189621,0.219476938247681,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.666931092739105,0.0601037070155144,0.66764509677887,0.364933490753174,0.788077294826508,0.362548738718033,0.353326767683029,0.157205805182457,0.327261060476303,0.140108689665794,0.32709401845932,0.026073357090354,0.330241352319717,0.0211291890591383,0.351608216762543,0.0223862994462252,0.353283852338791,0.0257102977484465,
- 0.790541768074036,0.223770171403885,0.787461996078491,0.223784297704697,0.78729236125946,0.220509067177773,0.790369272232056,0.220535561442375,0.67105370759964,0.191773548722267,0.671328186988831,0.18539260327816,0.787718951702118,0.184813052415848,0.787697970867157,0.192051887512207,0.671684980392456,0.219513669610024,0.673749804496765,0.0652429759502411,0.787220239639282,0.0635504797101021,0.672343969345093,0.224312007427216,0.790800631046295,0.184797704219818,0.790778636932373,0.192059248685837,0.790294587612152,0.0608089044690132,0.667413651943207,0.224334597587585,0.674152016639709,0.360272794961929,0.667647182941437,0.364834129810333,0.66741818189621,0.219476938247681,0.668102920055389,0.191766500473022,0.668129622936249,0.185408532619476,0.666932165622711,0.0602097250521183,0.788076937198639,0.36245185136795,0.327260941267014,0.140015706419945,0.353326767683029,0.157112807035446,0.353283852338791,0.0257102977484465,0.351608216762543,0.0223862994462252,0.330241352319717,0.0211291890591383,0.32709401845932,0.026073357090354,0.791096210479736,0.366835862398148,0.75704300403595,0.241456717252731,0.757222175598145,0.245272606611252,0.722778856754303,0.307271063327789,0.757222175598145,0.36921101808548,0.75704300403595,0.373026967048645,0.741214394569397,0.382075548171997,0.738877177238464,0.381086260080338,0.702746868133545,0.307271063327789,0.738877177238464,0.233401149511337,0.741214454174042,0.232411831617355,0.791097342967987,0.366937100887299,0.787926018238068,0.366413533687592,0.674341976642609,0.364106297492981,0.659594535827637,0.363576978445053,0.568424105644226,0.365416288375854,0.67175817489624,0.364324927330017,0.662388801574707,0.363972067832947,0.791096746921539,0.366936981678009,0.788065493106842,0.366399258375168,0.674341976642609,0.364106297492981,0.824785172939301,0.533781409263611,0.824784696102142,0.580158233642578,0.827285468578339,0.580158233642578,0.827285945415497,0.533781409263611,0.824821174144745,0.531151294708252,0.73609846830368,0.531282424926758,0.736139476299286,0.533781409263611,0.931818783283234,
- 0.651578187942505,0.931818902492523,0.622424244880676,0.929014444351196,0.62293016910553,0.929015159606934,0.651578187942505,0.931816756725311,0.475067973136902,0.929014682769775,0.474954783916473,0.733653724193573,0.533781409263611,0.733653962612152,0.580158233642578,0.736139476299286,0.580158233642578,0.2285176217556,0.710448265075684,0.367993921041489,0.710526406764984,0.367977976799011,0.707777082920074,0.228518605232239,0.707696974277496,0.73609846830368,0.582656979560852,0.824820220470428,0.582788467407227,0.986675500869751,0.651578187942505,0.98667585849762,0.622930407524109,0.98387622833252,0.622424602508545,0.98387622833252,0.651578187942505,0.98667573928833,0.474954187870026,0.983874261379242,0.475067555904388,0.228518605232239,0.656658113002777,0.367977917194366,0.656578719615936,0.367994010448456,0.653828322887421,0.228517457842827,0.653907060623169,0.929014682769775,0.440661489963531,0.931816577911377,0.440659642219543,0.370738923549652,0.707867681980133,0.370738983154297,0.656487345695496,0.983873844146729,0.44065922498703,0.98667573928833,0.440660774707794,0.408585995435715,0.7165487408638,0.408585429191589,0.744834244251251,0.504633128643036,0.744834244251251,0.504646360874176,0.607310652732849,0.471495896577835,0.607309818267822,0.53672206401825,0.956351220607758,0.476673066616058,0.849115371704102,0.441069841384888,0.849473178386688,0.442346304655075,0.984559535980225,0.536969423294067,0.984559535980225,0.986675500869751,0.651578187942505,0.98387622833252,0.651578187942505,0.983461380004883,0.63910037279129,0.986675620079041,0.640506744384766,0.970252335071564,0.622424483299255,0.983875751495361,0.583197414875031,0.972927033901215,0.602758169174194,0.986675798892975,0.580667853355408,0.280448764562607,1.13366866111755,0.220841586589813,1.13749778270721,0.27034530043602,1.11507213115692,0.27387723326683,1.12007331848145,0.225319147109985,1.16935324668884,0.203833431005478,1.16696810722351,0.19673165678978,1.16314554214478,0.271702796220779,1.16985273361206,-2.26536893844604,0.335812211036682,-2.26536893844604,
- 0.00104200839996338,-2.13477897644043,0.401847064495087,-1.316969871521,0.546991527080536,-1.85684597492218,1.55135345458984,-1.8568457365036,1.33737671375275,-1.316969871521,1.33156073093414,0.342261075973511,0.546224474906921,-0.493086576461792,0.55132782459259,-0.197603225708008,1.54494214057922,-0.197602033615112,1.33156085014343,-1.02055823802948,1.55135345458984,-1.02055871486664,1.33156085014343,0.342262029647827,1.3315612077713,-0.484692692756653,1.33158659934998,1.17973041534424,0.546992003917694,0.639854431152344,1.551353931427,0.639854431152344,1.33737730979919,1.17973017692566,1.3315612077713,2.83896112442017,0.546224534511566,2.00361347198486,0.551328122615814,2.29909610748291,1.54494225978851,2.29909706115723,1.33156108856201,1.47614145278931,1.551353931427,1.47614097595215,1.3315612077713,2.83896160125732,1.33156132698059,2.01200771331787,1.33158695697784
- }
- UVIndex: *10086 {
- a: 734,735,736,737,738,739,735,734,770,764,758,771,776,772,764,770,787,788,665,3736,789,790,788,787,804,803,660,3737,807,806,803,804,748,749,736,740,735,739,746,741,739,745,750,746,755,754,758,759,764,772,773,765,784,780,779,785,1856,1857,1858,1859,1860,776,783,786,782,770,778,783,776,680,681,682,683,738,747,751,744,734,743,747,738,686,687,688,689,750,745,754,755,684,685,681,680,647,3739,3738,650,651,832,834,693,694,652,3741,3740,655,656,654,653,806,807,740,736,735,741,737,742,743,734,649,648,790,789,759,758,764,765,771,777,778,770,657,658,659,3743,661,744,745,739,738,662,663,664,3742,833,666,782,779,772,776,779,780,773,772,766,760,667,836,763,757,760,766,818,817,675,3732,821,820,817,818,775,677,835,667,767,760,757,756,761,748,752,753,749,763,768,769,762,766,774,768,763,696,828,829,699,837,830,3734,3733,670,671,690,691,686,689,669,668,820,821,767,667,760,761,836,781,774,766,672,673,674,3735,676,762,753,757,763,753,752,756,757,811,814,654,807,809,811,807,804,808,809,804,3737,796,798,649,789,794,796,789,787,793,794,787,3736,825,827,669,821,823,825,821,818,822,823,818,3732,0,1,2,3,4,0,5,6,7,8,9,10,0,4,1,2,11,3,12,13,14,11,13,12,3,15,16,12,14,15,17,16,18,19,20,21,22,23,24,19,25,26,27,21,28,29,30,31,22,24,23,32,24,33,34,35,36,37,18,25,19,20,28,21,27,38,39,40,41,39,38,42,43,38,26,44,42,45,46,47,48,49,50,51,52,53,54,55,56,39,41,26,38,27,45,56,46,45,40,39,56,57,58,59,60,61,62,63,64,65,66,67,68,58,61,64,59,69,70,66,65,71,72,73,72,74,73,75,76,77,78,79,80,24,24,81,82,71,83,84,85,86,74,87,88,89,90,91,92,92,93,89,94,95,96,97,98,99,100,101,102,94,97,103,95,98,101,96,104,105,106,107,108,102,103,109,107,110,111,104,112,113,114,115,116,117,118,119,120,121,112,115,119,122,116,123,51,50,124,123,120,11,2,125,126,107,126,110,107,127,128,117,116,122,127,116,129,130,113,112,131,129,112,121,109,103,131,132,107,106,125,104,111,133,134,135,136,99,98,137,135,98,95,138,137,95,94,139,138,94,102,140,139,102,108,134,141,105,104,134,142,143,134,133,142,65,68,69,143,141,134,144,145,90,89,93,144,89,78,77,146,147,24,82,148,148,
- 149,24,150,151,67,66,152,151,150,152,150,66,70,30,29,76,75,80,31,24,24,32,81,153,154,83,73,43,155,56,41,155,88,47,46,56,124,132,156,157,158,50,49,159,54,53,111,110,160,161,133,111,161,162,105,141,140,108,106,105,108,109,90,145,163,164,165,151,152,149,79,24,67,57,60,68,69,68,139,140,163,91,90,123,124,156,156,166,120,123,166,121,120,131,121,166,132,131,166,156,124,50,158,132,84,167,168,85,84,168,164,85,168,168,169,165,164,170,165,169,169,171,170,169,172,171,44,172,169,42,44,169,168,167,42,168,43,154,153,153,155,43,153,86,155,73,74,86,153,83,154,167,84,73,83,71,72,173,87,74,55,54,49,52,119,118,17,15,113,122,119,114,130,127,122,113,101,100,128,127,159,157,49,54,69,91,163,70,92,91,143,142,174,93,92,175,144,176,173,72,72,71,145,144,164,71,85,25,22,44,26,25,18,23,22,18,21,30,23,81,32,30,75,82,81,75,78,148,82,78,147,177,177,178,149,148,149,165,170,79,170,171,80,79,171,172,31,80,1,51,123,2,52,51,1,4,55,52,4,6,160,110,126,157,159,126,125,158,157,132,158,125,106,109,175,92,142,133,162,64,63,136,135,59,64,135,137,60,59,137,138,68,60,138,139,151,165,149,178,152,145,71,164,163,145,152,70,174,176,144,93,147,146,62,61,177,147,61,58,57,178,177,58,151,178,57,67,143,91,69,140,141,43,42,167,154,155,86,88,23,30,32,44,22,31,172,114,119,15,14,115,114,14,13,120,115,13,11,103,97,129,131,97,96,130,129,96,101,127,130,179,180,181,182,183,179,184,185,186,187,188,189,179,183,180,181,190,182,191,192,193,190,192,191,182,194,195,191,193,194,196,195,197,198,199,200,201,202,203,198,204,205,206,200,207,208,209,210,201,203,202,211,203,212,213,214,215,216,197,204,198,199,207,200,206,217,218,219,220,218,217,221,222,217,205,223,221,224,225,226,227,228,229,230,231,232,233,234,235,218,220,205,217,206,224,235,225,224,219,218,235,236,237,238,239,240,241,242,243,244,245,246,247,237,240,243,238,248,249,245,244,250,251,252,251,253,252,254,255,256,257,258,259,203,203,260,261,250,262,263,264,265,253,266,267,268,269,270,271,271,272,268,273,274,275,276,277,278,279,280,281,273,276,282,274,277,280,275,283,284,285,286,287,281,282,288,286,289,290,283,291,292,293,294,295,
- 296,297,298,299,300,291,294,298,301,295,302,230,229,303,302,299,190,181,304,305,286,305,289,286,306,307,296,295,301,306,295,308,309,292,291,310,308,291,300,288,282,310,311,286,285,304,283,290,312,313,314,315,278,277,316,314,277,274,317,316,274,273,318,317,273,281,319,318,281,287,313,320,284,283,313,321,322,313,312,321,244,247,248,322,320,313,323,324,269,268,272,323,268,257,256,325,326,203,261,327,327,328,203,329,330,246,245,331,330,329,331,329,245,249,209,208,255,254,259,210,203,203,211,260,332,333,262,252,222,334,235,220,334,267,226,225,235,303,311,335,336,337,229,228,338,233,232,290,289,339,340,312,290,340,341,284,320,319,287,285,284,287,288,269,324,342,343,344,330,331,328,258,203,246,236,239,247,248,247,318,319,342,270,269,302,303,335,335,345,299,302,345,300,299,310,300,345,311,310,345,335,303,229,337,311,263,346,347,264,263,347,343,264,347,347,348,344,343,349,344,348,348,350,349,348,351,350,223,351,348,221,223,348,347,346,221,347,222,333,332,332,334,222,332,265,334,252,253,265,332,262,333,346,263,252,262,250,251,352,266,253,234,233,228,231,298,297,196,194,292,301,298,293,309,306,301,292,280,279,307,306,338,336,228,233,248,270,342,249,271,270,322,321,353,272,271,354,323,355,352,251,251,250,324,323,343,250,264,204,201,223,205,204,197,202,201,197,200,209,202,260,211,209,254,261,260,254,257,327,261,257,326,356,356,357,328,327,328,344,349,258,349,350,259,258,350,351,210,259,180,230,302,181,231,230,180,183,234,231,183,185,339,289,305,336,338,305,304,337,336,311,337,304,285,288,354,271,321,312,341,243,242,315,314,238,243,314,316,239,238,316,317,247,239,317,318,330,344,328,357,331,324,250,343,342,324,331,249,353,355,323,272,326,325,241,240,356,326,240,237,236,357,356,237,330,357,236,246,322,270,248,319,320,222,221,346,333,334,265,267,202,209,211,223,201,210,351,293,298,194,193,294,293,193,192,299,294,192,190,282,276,308,310,276,275,309,308,275,280,306,309,792,645,644,665,791,792,665,788,797,795,790,648,799,797,648,800,810,805,806,653,812,810,653,813,824,819,820,668,826,824,668,679,678,826,668,815,812,813,675,816,815,675,
- 817,795,791,788,790,801,799,800,660,802,801,660,803,805,802,803,806,819,816,817,820,700,701,702,703,704,700,703,705,706,704,705,707,708,706,707,709,710,708,709,711,712,710,711,713,712,713,714,715,716,715,714,717,718,716,717,719,720,718,719,721,720,721,722,723,730,732,733,731,728,730,731,729,726,728,729,727,724,726,727,725,722,724,725,723,358,359,360,361,362,358,363,364,365,366,367,368,368,367,369,370,371,363,372,373,374,375,376,377,361,378,379,372,380,381,382,383,383,382,384,385,386,387,388,389,390,391,370,369,392,376,389,393,394,395,385,384,363,358,361,372,386,389,376,375,384,382,368,370,391,394,384,370,365,368,382,381,396,397,398,399,400,401,402,403,404,405,358,362,359,371,364,363,361,360,378,373,372,379,377,376,392,393,389,388,406,407,408,409,410,406,411,412,413,414,415,416,416,415,417,418,419,411,420,421,422,423,424,425,409,426,427,420,428,429,430,431,431,430,432,433,434,435,436,437,438,439,418,417,440,424,437,441,442,443,433,432,411,406,409,420,434,437,424,423,432,430,416,418,439,442,432,418,413,416,430,429,444,445,446,447,448,449,450,451,452,453,406,410,407,419,412,411,409,408,426,421,420,427,425,424,440,441,437,436,454,455,456,457,458,454,459,460,461,462,463,464,464,463,1838,1840,465,459,466,467,468,469,470,471,457,472,473,466,474,475,476,477,477,476,478,479,480,481,482,483,484,485,1843,1844,486,470,483,487,488,489,479,478,459,454,457,466,480,483,470,469,478,476,464,1840,1842,1841,485,488,478,1841,1846,1843,461,464,476,475,490,491,492,493,494,495,496,497,498,1845,1847,1839,454,458,455,465,460,459,457,456,472,467,466,473,471,470,486,487,483,482,499,500,501,502,503,499,504,505,506,507,508,509,509,508,510,511,512,504,513,514,515,516,517,518,502,519,520,513,521,522,523,524,524,523,525,526,527,528,529,530,531,532,511,510,533,517,530,534,535,536,526,525,504,499,502,513,527,530,517,516,525,523,509,511,532,535,525,511,506,509,523,522,537,538,539,540,541,542,543,544,545,546,499,503,500,512,505,504,502,501,519,514,513,520,518,517,533,534,530,529,547,548,549,550,551,547,552,553,554,555,556,557,557,556,558,559,560,552,
- 561,562,563,564,565,566,550,567,568,561,572,1832,1833,1833,1834,1835,1836,575,576,577,578,579,580,559,558,581,565,578,582,583,584,574,573,552,547,550,561,575,578,565,564,1837,1834,1832,580,583,573,559,589,1826,585,1830,586,587,588,590,591,592,593,594,547,551,548,560,553,552,550,549,567,562,561,568,566,565,581,582,578,577,595,596,597,598,599,595,600,601,602,603,604,605,605,604,606,607,608,600,609,610,611,612,613,614,598,615,616,609,617,618,619,620,620,619,621,622,623,624,625,626,627,628,607,606,629,613,626,630,631,632,622,621,600,595,598,609,623,626,613,612,621,619,605,607,628,631,621,607,602,605,619,618,633,634,635,636,637,638,639,640,641,642,595,599,596,608,601,600,598,597,615,610,609,616,614,613,629,630,626,625,829,828,697,698,692,834,832,695,838,839,840,841,842,843,844,842,844,839,838,845,843,846,847,848,849,850,848,847,851,852,853,854,855,856,850,849,857,858,859,860,861,862,863,864,865,866,867,868,869,842,870,854,853,862,843,845,871,844,844,871,839,843,842,869,846,872,841,840,854,873,874,855,875,876,877,878,879,880,881,882,883,877,880,879,882,881,884,885,886,852,851,887,888,864,889,890,891,892,893,894,895,860,865,896,861,889,872,840,890,889,864,863,859,897,898,873,854,862,861,896,893,892,891,890,877,883,899,878,880,900,901,881,877,876,900,880,881,901,902,884,851,853,856,887,847,862,853,851,862,847,850,859,859,850,858,897,883,852,888,899,852,883,879,848,848,879,882,849,849,882,886,886,885,903,849,886,903,857,859,898,904,863,860,893,871,845,894,839,871,893,890,840,873,892,895,874,892,873,896,891,865,864,891,896,863,865,860,868,905,846,869,906,907,841,872,904,906,872,889,863,908,909,910,911,912,913,914,915,916,917,918,919,920,918,914,917,919,921,922,920,923,924,925,926,926,927,928,923,929,930,931,932,924,933,934,925,935,936,937,938,939,940,941,942,943,918,944,945,946,932,936,929,920,919,947,921,919,917,947,920,922,944,918,948,916,915,932,931,949,950,951,952,953,954,955,956,957,958,959,955,958,953,956,960,961,962,957,927,963,964,928,941,965,966,967,968,969,970,971,938,937,972,940,967,966,916,948,967,939,941,935,973,
- 974,950,972,937,936,932,971,966,965,968,953,952,975,959,958,957,976,977,953,958,977,954,957,962,978,976,928,964,930,929,923,928,929,936,936,935,924,923,935,974,933,924,959,975,963,927,927,926,955,959,926,925,956,955,925,960,956,960,979,961,925,934,979,960,935,938,939,980,973,971,970,921,947,917,916,966,971,947,950,949,969,968,968,965,972,950,940,972,965,941,939,938,940,981,982,948,915,982,980,939,967,948,983,984,985,986,987,988,989,990,952,951,991,992,875,878,993,945,944,922,994,995,996,991,997,994,998,999,999,998,1000,1001,1002,1003,1004,1005,1006,1002,1007,1008,1008,1007,1009,1010,1011,1009,905,1012,1013,1014,1015,1000,1014,1013,1005,1016,856,855,1005,1013,887,1000,998,888,887,856,1013,1000,888,998,994,899,855,874,1002,1005,1002,874,895,1007,994,991,878,899,1009,1007,895,894,905,1009,894,845,846,964,963,1017,1018,964,1018,1019,930,963,975,1020,1017,931,1021,1022,949,1022,1023,969,949,990,1020,975,952,1023,1024,970,969,930,1019,1021,931,1024,993,922,921,970,996,992,991,1025,905,868,1026,1027,1028,1029,1030,1031,1032,1030,1032,1027,1026,1033,1031,1034,1035,1036,1037,1038,1036,1035,1039,1040,1041,1042,1043,1044,1038,1037,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1030,1058,1042,1041,1050,1031,1033,1059,1032,1032,1059,1027,1031,1030,1057,1034,1060,1029,1028,1042,1061,1062,1043,1063,1064,1065,1066,1067,1068,1069,1070,1071,1065,1068,1067,1070,1069,1072,1073,1074,1040,1039,1075,1076,1052,1077,1078,1079,1080,1081,1082,1083,1048,1053,1084,1049,1077,1060,1028,1078,1077,1052,1051,1047,1085,1086,1061,1042,1050,1049,1084,1081,1080,1079,1078,1065,1071,1087,1066,1068,1088,1089,1069,1065,1064,1088,1068,1069,1089,1090,1072,1039,1041,1044,1075,1035,1050,1041,1039,1050,1035,1038,1047,1047,1038,1046,1085,1071,1040,1076,1087,1040,1071,1067,1036,1036,1067,1070,1037,1037,1070,1074,1074,1073,1091,1037,1074,1091,1045,1047,1086,1092,1051,1048,1081,1059,1033,1082,1027,1059,1081,1078,1028,1061,1080,1083,1062,1080,1061,1084,1079,1053,1052,1079,1084,1051,1053,1048,1056,1093,1034,1057,1094,1095,1029,1060,1092,1094,1060,1077,
- 1051,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1106,1102,1105,1107,1109,1110,1108,1111,1112,1113,1114,1114,1115,1116,1111,1117,1118,1119,1120,1112,1121,1122,1113,1123,1124,1125,1126,1127,1128,1129,1130,1131,1106,1132,1133,1134,1120,1124,1117,1108,1107,1135,1109,1107,1105,1135,1108,1110,1132,1106,1136,1104,1103,1120,1119,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1143,1146,1141,1144,1148,1149,1150,1145,1115,1151,1152,1116,1129,1153,1154,1155,1156,1157,1158,1159,1126,1125,1160,1128,1155,1154,1104,1136,1155,1127,1129,1123,1161,1162,1138,1160,1125,1124,1120,1159,1154,1153,1156,1141,1140,1163,1147,1146,1145,1164,1165,1141,1146,1165,1142,1145,1150,1166,1164,1116,1152,1118,1117,1111,1116,1117,1124,1124,1123,1112,1111,1123,1162,1121,1112,1147,1163,1151,1115,1115,1114,1143,1147,1114,1113,1144,1143,1113,1148,1144,1148,1167,1149,1113,1122,1167,1148,1123,1126,1127,1168,1161,1159,1158,1109,1135,1105,1104,1154,1159,1135,1138,1137,1157,1156,1156,1153,1160,1138,1128,1160,1153,1129,1127,1126,1128,1169,1170,1136,1103,1170,1168,1127,1155,1136,1171,1172,1173,1174,1175,1176,1177,1178,1140,1139,1179,1180,1063,1066,1181,1133,1132,1110,1182,1183,1184,1179,1185,1182,1186,1187,1187,1186,1188,1189,1190,1191,1192,1193,1194,1190,1195,1196,1196,1195,1197,1198,1199,1197,1093,1200,1201,1202,1203,1188,1202,1201,1193,1204,1044,1043,1193,1201,1075,1188,1186,1076,1075,1044,1201,1188,1076,1186,1182,1087,1043,1062,1190,1193,1190,1062,1083,1195,1182,1179,1066,1087,1197,1195,1083,1082,1093,1197,1082,1033,1034,1152,1151,1205,1206,1152,1206,1207,1118,1151,1163,1208,1205,1119,1209,1210,1137,1210,1211,1157,1137,1178,1208,1163,1140,1211,1212,1158,1157,1118,1207,1209,1119,1212,1181,1110,1109,1158,1184,1180,1179,1213,1093,1056,1214,1215,1216,1217,1218,1219,1220,1218,1220,1215,1214,1221,1219,1222,1223,1224,1225,1226,1224,1223,1227,1228,1229,1230,1231,1232,1226,1225,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1218,1246,1230,1229,1238,1219,1221,1247,1220,1220,1247,1215,1219,1218,1245,1222,1248,1217,1216,1230,
- 1249,1250,1231,1251,1252,1253,1254,1255,1256,1257,1258,1259,1253,1256,1255,1258,1257,1260,1261,1262,1228,1227,1263,1264,1240,1265,1266,1267,1268,1269,1270,1271,1236,1241,1272,1237,1265,1248,1216,1266,1265,1240,1239,1235,1273,1274,1249,1230,1238,1237,1272,1269,1268,1267,1266,1253,1259,1275,1254,1256,1276,1277,1257,1253,1252,1276,1256,1257,1277,1278,1260,1227,1229,1232,1263,1223,1238,1229,1227,1238,1223,1226,1235,1235,1226,1234,1273,1259,1228,1264,1275,1228,1259,1255,1224,1224,1255,1258,1225,1225,1258,1262,1262,1261,1279,1225,1262,1279,1233,1235,1274,1280,1239,1236,1269,1247,1221,1270,1215,1247,1269,1266,1216,1249,1268,1271,1250,1268,1249,1272,1267,1241,1240,1267,1272,1239,1241,1236,1244,1281,1222,1245,1282,1283,1217,1248,1280,1282,1248,1265,1239,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1294,1290,1293,1295,1297,1298,1296,1299,1300,1301,1302,1302,1303,1304,1299,1305,1306,1307,1308,1300,1309,1310,1301,1311,1312,1313,1314,1315,1316,1317,1318,1319,1294,1320,1321,1322,1308,1312,1305,1296,1295,1323,1297,1295,1293,1323,1296,1298,1320,1294,1324,1292,1291,1308,1307,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1331,1334,1329,1332,1336,1337,1338,1333,1303,1339,1340,1304,1317,1341,1342,1343,1344,1345,1346,1347,1314,1313,1348,1316,1343,1342,1292,1324,1343,1315,1317,1311,1349,1350,1326,1348,1313,1312,1308,1347,1342,1341,1344,1329,1328,1351,1335,1334,1333,1352,1353,1329,1334,1353,1330,1333,1338,1354,1352,1304,1340,1306,1305,1299,1304,1305,1312,1312,1311,1300,1299,1311,1350,1309,1300,1335,1351,1339,1303,1303,1302,1331,1335,1302,1301,1332,1331,1301,1336,1332,1336,1355,1337,1301,1310,1355,1336,1311,1314,1315,1356,1349,1347,1346,1297,1323,1293,1292,1342,1347,1323,1326,1325,1345,1344,1344,1341,1348,1326,1316,1348,1341,1317,1315,1314,1316,1357,1358,1324,1291,1358,1356,1315,1343,1324,1359,1360,1361,1362,1363,1364,1365,1366,1328,1327,1367,1368,1251,1254,1369,1321,1320,1298,1370,1371,1372,1367,1373,1370,1374,1375,1375,1374,1376,1377,1378,1379,1380,1381,1382,1378,1383,1384,1384,1383,1385,1386,1387,1385,1281,
- 1388,1389,1390,1391,1376,1390,1389,1381,1392,1232,1231,1381,1389,1263,1376,1374,1264,1263,1232,1389,1376,1264,1374,1370,1275,1231,1250,1378,1381,1378,1250,1271,1383,1370,1367,1254,1275,1385,1383,1271,1270,1281,1385,1270,1221,1222,1340,1339,1393,1394,1340,1394,1395,1306,1339,1351,1396,1393,1307,1397,1398,1325,1398,1399,1345,1325,1366,1396,1351,1328,1399,1400,1346,1345,1306,1395,1397,1307,1400,1369,1298,1297,1346,1372,1368,1367,1401,1281,1244,1402,1403,1404,1405,1403,1402,1406,1407,1405,1404,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1412,1415,1414,1417,1416,1419,1420,1407,1406,1421,1422,1412,1418,1423,1413,1415,1424,1425,1416,1412,1411,1424,1415,1416,1425,1426,1419,1421,1427,1428,1422,1406,1429,1430,1421,1402,1431,1429,1406,1431,1402,1405,1432,1432,1405,1409,1433,1421,1430,1434,1427,1418,1407,1422,1423,1407,1418,1414,1403,1403,1414,1417,1404,1404,1417,1420,1404,1420,1408,1422,1428,1435,1423,1435,1436,1413,1423,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1446,1447,1448,1443,1444,1449,1450,1445,1451,1452,1453,1454,1455,1456,1457,1458,1459,1455,1458,1453,1456,1460,1461,1457,1447,1462,1463,1448,1463,1462,1464,1465,1453,1452,1466,1459,1458,1457,1467,1468,1453,1458,1468,1454,1457,1461,1469,1467,1448,1463,1470,1471,1443,1448,1471,1472,1472,1473,1444,1443,1473,1474,1449,1444,1463,1465,1475,1470,1462,1466,1476,1464,1459,1466,1462,1447,1447,1446,1455,1459,1446,1445,1456,1455,1460,1456,1445,1450,1477,1476,1466,1452,1478,1479,1480,1481,1482,1483,1484,1477,1452,1451,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1430,1495,1496,1434,1470,1475,1497,1498,1471,1470,1498,1499,1472,1471,1499,1500,1500,1501,1473,1472,1501,1502,1474,1473,1503,1432,1433,1504,1505,1431,1432,1503,1429,1431,1505,1506,1430,1429,1506,1495,1507,1508,1509,1510,1511,1512,1513,1514,1515,1509,1512,1511,1514,1513,1516,1517,1518,1509,1515,1519,1510,1512,1520,1521,1513,1509,1508,1520,1512,1513,1521,1522,1516,1515,1523,1524,1519,1523,1515,1511,1525,1525,1511,1514,1526,1526,1514,1518,1518,1517,1527,1526,1518,1527,1528,1524,1529,1530,1519,1530,1531,
- 1510,1519,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1542,1545,1540,1543,1547,1548,1549,1544,1540,1539,1550,1546,1545,1544,1551,1552,1540,1545,1552,1541,1544,1549,1553,1551,1554,1550,1555,1556,1546,1550,1554,1557,1557,1558,1542,1546,1558,1559,1543,1542,1559,1547,1543,1547,1560,1548,1559,1561,1560,1547,1562,1555,1550,1539,1563,1564,1565,1566,1567,1568,1569,1562,1539,1538,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1531,1580,1507,1510,1581,1531,1530,1582,1581,1580,1531,1583,1530,1529,1436,1584,1410,1413,1435,1585,1586,1436,1587,1427,1434,1588,1589,1435,1428,1586,1584,1436,1590,1428,1427,1588,1434,1496,1591,1592,1593,1594,1592,1591,1595,1596,1594,1593,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1601,1604,1603,1606,1605,1608,1609,1596,1595,1610,1611,1601,1607,1612,1602,1604,1613,1614,1605,1601,1600,1613,1604,1605,1614,1615,1608,1610,1616,1617,1611,1595,1618,1619,1610,1591,1620,1618,1595,1620,1591,1594,1621,1621,1594,1598,1622,1610,1619,1623,1616,1607,1596,1611,1612,1596,1607,1603,1592,1592,1603,1606,1593,1606,1609,1624,1593,1606,1624,1597,1612,1611,1617,1625,1625,1626,1602,1612,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1636,1637,1638,1633,1634,1639,1640,1635,1641,1642,1643,1644,1645,1646,1647,1648,1649,1645,1648,1643,1646,1650,1651,1647,1637,1652,1653,1638,1653,1652,1654,1655,1643,1642,1656,1649,1648,1647,1657,1658,1643,1648,1658,1644,1647,1651,1659,1657,1638,1653,1660,1661,1633,1638,1661,1662,1662,1663,1634,1633,1663,1664,1639,1634,1653,1655,1665,1660,1649,1656,1652,1637,1637,1636,1645,1649,1636,1635,1646,1645,1635,1650,1646,1635,1640,1666,1650,1667,1668,1656,1642,1669,1670,1671,1672,1673,1674,1675,1667,1642,1641,1656,1668,1654,1652,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1619,1686,1687,1623,1660,1665,1688,1689,1661,1660,1689,1690,1662,1661,1690,1691,1691,1692,1663,1662,1692,1693,1664,1663,1694,1621,1622,1695,1696,1620,1621,1694,1618,1620,1696,1697,1619,1618,1697,1686,1698,1699,1700,1701,1702,1703,1704,1705,1706,1700,1703,1702,1705,1704,1707,1708,1700,
- 1706,1709,1701,1703,1710,1711,1704,1700,1699,1710,1703,1704,1711,1712,1707,1709,1713,1714,1706,1715,1713,1709,1715,1706,1702,1716,1716,1702,1705,1717,1708,1718,1717,1705,1714,1713,1719,1714,1720,1701,1709,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1731,1734,1729,1732,1736,1737,1733,1729,1728,1738,1735,1734,1733,1739,1740,1729,1734,1740,1730,1733,1737,1741,1739,1742,1738,1743,1744,1735,1738,1742,1745,1745,1746,1731,1735,1746,1747,1732,1731,1736,1732,1747,1748,1749,1743,1738,1728,1750,1751,1752,1753,1754,1755,1756,1749,1728,1727,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1626,1767,1599,1602,1768,1626,1625,1769,1770,1616,1623,1771,1768,1767,1626,1772,1625,1617,1773,1617,1616,1771,1623,1687,1720,1774,1698,1701,1775,1720,1714,1776,1775,1774,1720,1776,1714,1719,1777,1778,1779,1780,1781,1782,1783,1777,1784,1785,1786,1787,1785,1788,1789,1786,1790,1791,1792,1783,1793,1794,1795,1796,1778,1792,1797,1798,1799,1800,1801,1802,1800,1803,1804,1801,1805,1806,1807,1808,1809,1789,1788,1810,1811,1812,1806,1795,1813,1804,1803,1814,1783,1792,1778,1777,1805,1796,1795,1806,1804,1788,1785,1801,1810,1788,1804,1813,1784,1802,1801,1785,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1777,1780,1781,1790,1783,1782,1778,1798,1779,1791,1797,1792,1794,1811,1795,1812,1807,1806,569,570,571,1825,554,557,1827,571,570,573,1828,1831,1827,557,559,1829,1828,573,574,1833,1832,1834,1855,1852,1853,1854,1852,1849,1850,1851,1848,1849,1855,1855,1849,1852,643,831,1857,1856,831,644,1858,1857,644,645,1859,1858,645,646,1860,1859,646,643,1856,1860,1861,1862,1863,1864,1865,1866,1862,1861,1867,1868,1869,1870,1871,1872,1868,1867,1873,1874,1875,3724,1877,1878,1874,1873,1879,1880,1881,3725,1883,1884,1880,1879,1885,1886,1863,1887,1862,1866,1888,1889,1866,1890,1891,1888,1892,1893,1869,1894,1868,1872,1895,1896,1897,1898,1899,1900,1871,1901,1902,1903,1867,1904,1901,1871,1905,1906,1907,1908,1865,1909,1910,1911,1861,1912,1909,1865,1913,1914,1915,1916,1891,1890,1893,1892,1917,1918,1906,1905,1919,3727,3726,1922,1923,1924,1925,1926,1927,1928,
- 3729,3728,1931,1932,1930,1929,1884,1883,1887,1863,1862,1889,1864,1933,1912,1861,1921,1920,1878,1877,1894,1869,1868,1896,1870,1934,1904,1867,1935,1936,1882,3731,1937,1911,1890,1866,1865,1938,1939,1876,3730,1940,1941,1903,1899,1872,1871,1899,1898,1895,1872,1942,1943,1944,1945,1946,1947,1943,1942,1948,1949,1950,3720,1952,1953,1949,1948,1954,1955,1956,1944,1957,1943,1947,1958,1959,1885,1960,1961,1886,1946,1962,1963,1964,1942,1965,1962,1946,1966,1967,1968,1969,1970,1971,3722,3721,1974,1975,1976,1977,1913,1916,1973,1972,1953,1952,1957,1944,1943,1959,1945,1978,1965,1942,1979,1980,1951,3723,1981,1964,1961,1947,1946,1961,1960,1958,1947,1982,1983,1984,1985,1986,1987,1988,1930,1883,1989,1987,1883,1879,1990,1989,1879,3725,1991,1992,1921,1877,1993,1991,1877,1873,1994,1993,1873,3724,1995,1996,1973,1952,1997,1995,1952,1948,1998,1997,1948,3720,1999,2000,2001,2002,2003,1999,2004,2005,2006,2007,2008,2009,1999,2003,2000,2001,2010,2002,2011,2012,2013,2010,2012,2011,2002,2014,2015,2011,2013,2014,2016,2015,2017,2018,2019,2020,2021,2022,2023,2018,2024,2025,2026,2020,2027,2028,2029,2030,2021,2023,2022,2031,2023,2032,2033,2034,2035,2036,2017,2024,2018,2019,2027,2020,2026,2037,2038,2039,2040,2038,2037,2041,2042,2037,2025,2043,2041,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2038,2040,2025,2037,2026,2044,2055,2045,2044,2039,2038,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2057,2060,2063,2058,2068,2069,2065,2064,2070,2071,2072,2071,2073,2072,2074,2075,2076,2077,2078,2079,2023,2023,2080,2081,2070,2082,2083,2084,2085,2073,2086,2087,2088,2089,2090,2091,2091,2092,2088,2093,2094,2095,2096,2097,2098,2099,2100,2101,2093,2096,2102,2094,2097,2100,2095,2103,2104,2105,2106,2107,2101,2102,2108,2106,2109,2110,2103,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2111,2114,2118,2121,2115,2122,2050,2049,2123,2122,2119,2010,2001,2124,2125,2106,2125,2109,2106,2126,2127,2116,2115,2121,2126,2115,2128,2129,2112,2111,2130,2128,2111,2120,2108,2102,2130,2131,2106,2105,2124,2103,2110,2132,2133,2134,2135,2098,2097,2136,2134,2097,
- 2094,2137,2136,2094,2093,2138,2137,2093,2101,2139,2138,2101,2107,2133,2140,2104,2103,2133,2141,2142,2133,2132,2141,2064,2067,2068,2142,2140,2133,2143,2144,2089,2088,2092,2143,2088,2077,2076,2145,2146,2023,2081,2147,2147,2148,2023,2149,2150,2066,2065,2151,2150,2149,2151,2149,2065,2069,2029,2028,2075,2074,2079,2030,2023,2023,2031,2080,2152,2153,2082,2072,2042,2154,2055,2040,2154,2087,2046,2045,2055,2123,2131,2155,2156,2157,2049,2048,2158,2053,2052,2110,2109,2159,2160,2132,2110,2160,2161,2104,2140,2139,2107,2105,2104,2107,2108,2089,2144,2162,2163,2164,2150,2151,2148,2078,2023,2066,2056,2059,2067,2068,2067,2138,2139,2162,2090,2089,2122,2123,2155,2155,2165,2119,2122,2165,2120,2119,2130,2120,2165,2131,2130,2165,2155,2123,2049,2157,2131,2083,2166,2167,2084,2083,2167,2163,2084,2167,2167,2168,2164,2163,2169,2164,2168,2168,2170,2169,2168,2171,2170,2043,2171,2168,2041,2043,2168,2167,2166,2041,2167,2042,2153,2152,2152,2154,2042,2152,2085,2154,2072,2073,2085,2152,2082,2153,2166,2083,2072,2082,2070,2071,2172,2086,2073,2054,2053,2048,2051,2118,2117,2016,2014,2112,2121,2118,2113,2129,2126,2121,2112,2100,2099,2127,2126,2158,2156,2048,2053,2068,2090,2162,2069,2091,2090,2142,2141,2173,2092,2091,2174,2143,2175,2172,2071,2071,2070,2144,2143,2163,2070,2084,2024,2021,2043,2025,2024,2017,2022,2021,2017,2020,2029,2022,2080,2031,2029,2074,2081,2080,2074,2077,2147,2081,2077,2146,2176,2176,2177,2148,2147,2148,2164,2169,2078,2169,2170,2079,2078,2170,2171,2030,2079,2000,2050,2122,2001,2051,2050,2000,2003,2054,2051,2003,2005,2159,2109,2125,2156,2158,2125,2124,2157,2156,2131,2157,2124,2105,2108,2174,2091,2141,2132,2161,2063,2062,2135,2134,2058,2063,2134,2136,2059,2058,2136,2137,2067,2059,2137,2138,2150,2164,2148,2177,2151,2144,2070,2163,2162,2144,2151,2069,2173,2175,2143,2092,2146,2145,2061,2060,2176,2146,2060,2057,2056,2177,2176,2057,2150,2177,2056,2066,2142,2090,2068,2139,2140,2042,2041,2166,2153,2154,2085,2087,2022,2029,2031,2043,2021,2030,2171,2113,2118,2014,2013,2114,2113,2013,2012,2119,2114,2012,2010,2102,2096,2128,2130,2096,2095,2129,2128,
- 2095,2100,2126,2129,2178,2179,2180,2181,2182,2178,2183,2184,2185,2186,2187,2188,2178,2182,2179,2180,2189,2181,2190,2191,2192,2189,2191,2190,2181,2193,2194,2190,2192,2193,2195,2194,2196,2197,2198,2199,2200,2201,2202,2197,2203,2204,2205,2199,2206,2207,2208,2209,2200,2202,2201,2210,2202,2211,2212,2213,2214,2215,2196,2203,2197,2198,2206,2199,2205,2216,2217,2218,2219,2217,2216,2220,2221,2216,2204,2222,2220,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2217,2219,2204,2216,2205,2223,2234,2224,2223,2218,2217,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2236,2239,2242,2237,2247,2248,2244,2243,2249,2250,2251,2250,2252,2251,2253,2254,2255,2256,2257,2258,2202,2202,2259,2260,2249,2261,2262,2263,2264,2252,2265,2266,2267,2268,2269,2270,2270,2271,2267,2272,2273,2274,2275,2276,2277,2278,2279,2280,2272,2275,2281,2273,2276,2279,2274,2282,2283,2284,2285,2286,2280,2281,2287,2285,2288,2289,2282,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2290,2293,2297,2300,2294,2301,2229,2228,2302,2301,2298,2189,2180,2303,2304,2285,2304,2288,2285,2305,2306,2295,2294,2300,2305,2294,2307,2308,2291,2290,2309,2307,2290,2299,2287,2281,2309,2310,2285,2284,2303,2282,2289,2311,2312,2313,2314,2277,2276,2315,2313,2276,2273,2316,2315,2273,2272,2317,2316,2272,2280,2318,2317,2280,2286,2312,2319,2283,2282,2312,2320,2321,2312,2311,2320,2243,2246,2247,2321,2319,2312,2322,2323,2268,2267,2271,2322,2267,2256,2255,2324,2325,2202,2260,2326,2326,2327,2202,2328,2329,2245,2244,2330,2329,2328,2330,2328,2244,2248,2208,2207,2254,2253,2258,2209,2202,2202,2210,2259,2331,2332,2261,2251,2221,2333,2234,2219,2333,2266,2225,2224,2234,2302,2310,2334,2335,2336,2228,2227,2337,2232,2231,2289,2288,2338,2339,2311,2289,2339,2340,2283,2319,2318,2286,2284,2283,2286,2287,2268,2323,2341,2342,2343,2329,2330,2327,2257,2202,2245,2235,2238,2246,2247,2246,2317,2318,2341,2269,2268,2301,2302,2334,2334,2344,2298,2301,2344,2299,2298,2309,2299,2344,2310,2309,2344,2334,2302,2228,2336,2310,2262,2345,2346,2263,2262,2346,2342,2263,2346,2346,2347,2343,2342,2348,2343,2347,
- 2347,2349,2348,2347,2350,2349,2222,2350,2347,2220,2222,2347,2346,2345,2220,2346,2221,2332,2331,2331,2333,2221,2331,2264,2333,2251,2252,2264,2331,2261,2332,2345,2262,2251,2261,2249,2250,2351,2265,2252,2233,2232,2227,2230,2297,2296,2195,2193,2291,2300,2297,2292,2308,2305,2300,2291,2279,2278,2306,2305,2337,2335,2227,2232,2247,2269,2341,2248,2270,2269,2321,2320,2352,2271,2270,2353,2322,2354,2351,2250,2250,2249,2323,2322,2342,2249,2263,2203,2200,2222,2204,2203,2196,2201,2200,2196,2199,2208,2201,2259,2210,2208,2253,2260,2259,2253,2256,2326,2260,2256,2325,2355,2355,2356,2327,2326,2327,2343,2348,2257,2348,2349,2258,2257,2349,2350,2209,2258,2179,2229,2301,2180,2230,2229,2179,2182,2233,2230,2182,2184,2338,2288,2304,2335,2337,2304,2303,2336,2335,2310,2336,2303,2284,2287,2353,2270,2320,2311,2340,2242,2241,2314,2313,2237,2242,2313,2315,2238,2237,2315,2316,2246,2238,2316,2317,2329,2343,2327,2356,2330,2323,2249,2342,2341,2323,2330,2248,2352,2354,2322,2271,2325,2324,2240,2239,2355,2325,2239,2236,2235,2356,2355,2236,2329,2356,2235,2245,2321,2269,2247,2318,2319,2221,2220,2345,2332,2333,2264,2266,2201,2208,2210,2222,2200,2209,2350,2292,2297,2193,2192,2293,2292,2192,2191,2298,2293,2191,2189,2281,2275,2307,2309,2275,2274,2308,2307,2274,2279,2305,2308,2357,678,679,1875,2358,2357,1875,1874,2359,2360,1878,1920,2361,2359,1920,2362,2363,2364,1884,1929,2365,2363,1929,2366,2367,2368,1953,1972,2369,2367,1972,2370,2371,2369,1972,2372,2365,2366,1950,2373,2372,1950,1949,2360,2358,1874,1878,2374,2361,2362,1881,2375,2374,1881,1880,2364,2375,1880,1884,2368,2373,1949,1953,2376,2377,2378,2379,2380,2376,2379,2381,2382,2380,2381,2383,2384,2382,2383,2385,2386,2384,2385,2387,2388,2386,2387,2389,2388,2389,2390,2391,2392,2391,2390,2393,2394,2392,2393,2395,2396,2394,2395,2397,2396,2397,2398,2399,2400,2401,2402,2403,2404,2400,2403,2405,2406,2404,2405,2407,2408,2406,2407,2409,2398,2408,2409,2399,2410,2411,2412,2413,2414,2410,2415,2416,2417,2418,2419,2420,2420,2419,2421,2422,2423,2415,2424,2425,2426,2427,2428,2429,2413,2430,2431,2424,2432,2433,2434,2435,2435,2434,
- 2436,2437,2438,2439,2440,2441,2442,2443,2422,2421,2444,2428,2441,2445,2446,2447,2437,2436,2415,2410,2413,2424,2438,2441,2428,2427,2436,2434,2420,2422,2443,2446,2436,2422,2417,2420,2434,2433,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2410,2414,2411,2423,2416,2415,2413,2412,2430,2425,2424,2431,2429,2428,2444,2445,2441,2440,2458,2459,2460,2461,2462,2458,2463,2464,2465,2466,2467,2468,2468,2467,2469,2470,2471,2463,2472,2473,2474,2475,2476,2477,2461,2478,2479,2472,2480,2481,2482,2483,2483,2482,2484,2485,2486,2487,2488,2489,2490,2491,2470,2469,2492,2476,2489,2493,2494,2495,2485,2484,2463,2458,2461,2472,2486,2489,2476,2475,2484,2482,2468,2470,2491,2494,2484,2470,2465,2468,2482,2481,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2458,2462,2459,2471,2464,2463,2461,2460,2478,2473,2472,2479,2477,2476,2492,2493,2489,2488,2506,2507,2508,2509,2510,2506,2511,2512,2513,2514,2515,2516,2516,2515,2517,2518,2519,2511,2520,2521,2522,2523,2524,2525,2509,2526,2527,2520,2528,2529,2530,2531,2531,2530,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2524,2537,2543,2544,2545,2533,2532,2511,2506,2509,2520,2534,2537,2524,2523,2532,2530,2516,2518,2546,2547,2539,2544,2532,2547,2548,2540,2513,2516,2530,2529,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2506,2510,2507,2519,2512,2511,2509,2508,2526,2521,2520,2527,2525,2524,2542,2543,2537,2536,2561,2562,2563,2564,2565,2561,2566,2567,2568,2569,2570,2571,2571,2570,2572,2573,2574,2566,2575,2576,2577,2578,2579,2580,2564,2581,2582,2575,2583,2584,2585,2586,2586,2585,2587,2588,2589,2590,2591,2592,2593,2594,2573,2572,2595,2579,2592,2596,2597,2598,2588,2587,2566,2561,2564,2575,2589,2592,2579,2578,2587,2585,2571,2573,2594,2597,2587,2573,2568,2571,2585,2584,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2561,2565,2562,2574,2567,2566,2564,2563,2581,2576,2575,2582,2580,2579,2595,2596,2592,2591,2609,2610,2611,2612,2613,2609,2614,2615,2616,2617,2618,2619,2619,2618,2620,2621,2622,2614,2623,2624,2625,2626,2627,2628,2612,2629,2630,2623,2631,2632,2633,2633,2634,2635,2636,2637,2638,2639,
- 2640,2641,2642,2621,2620,2643,2627,2640,2644,2645,2646,2647,2648,2614,2609,2612,2623,2637,2640,2627,2626,2649,2634,2632,2642,2645,2648,2621,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2609,2613,2610,2622,2615,2614,2612,2611,2629,2624,2623,2630,2628,2627,2643,2644,2640,2639,2662,2663,2664,2665,2666,2662,2667,2668,2669,2670,2671,2672,2672,2671,2673,2674,2675,2667,2676,2677,2678,2679,2680,2681,2665,2682,2683,2676,2684,2685,2686,2687,2687,2686,2688,2689,2690,2691,2692,2693,2694,2695,2674,2673,2696,2680,2693,2697,2698,2699,2689,2688,2667,2662,2665,2676,2690,2693,2680,2679,2688,2686,2672,2674,2695,2698,2688,2674,2669,2672,2686,2685,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2662,2666,2663,2675,2668,2667,2665,2664,2682,2677,2676,2683,2681,2680,2696,2697,2693,2692,1968,1967,2710,2711,2712,1925,1924,2713,2714,2715,2716,2717,2718,2719,2720,2718,2720,2715,2714,2721,2719,2722,2723,2724,2725,2726,2724,2723,2727,2728,2729,2730,2731,2732,2726,2725,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2718,2746,2730,2729,2738,2719,2721,2747,2720,2720,2747,2715,2719,2718,2745,2722,2748,2717,2716,2730,2749,2750,2731,2751,2752,2753,2754,2755,2756,2757,2758,2759,2753,2756,2755,2758,2757,2760,2761,2762,2728,2727,2763,2764,2740,2765,2766,2767,2768,2769,2770,2771,2736,2741,2772,2737,2765,2748,2716,2766,2765,2740,2739,2735,2773,2774,2749,2730,2738,2737,2772,2769,2768,2767,2766,2753,2759,2775,2754,2756,2776,2777,2757,2753,2752,2776,2756,2757,2777,2778,2760,2727,2729,2732,2763,2723,2738,2729,2727,2738,2723,2726,2735,2735,2726,2734,2773,2759,2728,2764,2775,2728,2759,2755,2724,2724,2755,2758,2725,2725,2758,2762,2762,2761,2779,2725,2762,2779,2733,2735,2774,2780,2739,2736,2769,2747,2721,2770,2715,2747,2769,2766,2716,2749,2768,2771,2750,2768,2749,2772,2767,2741,2740,2767,2772,2739,2741,2736,2744,2781,2722,2745,2782,2783,2717,2748,2780,2782,2748,2765,2739,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2794,2790,2793,2795,2797,2798,2796,2799,2800,2801,2802,2802,2803,2804,2799,2805,2806,2807,2808,
- 2800,2809,2810,2801,2811,2812,2813,2814,2815,2816,2817,2818,2819,2794,2820,2821,2822,2808,2812,2805,2796,2795,2823,2797,2795,2793,2823,2796,2798,2820,2794,2824,2792,2791,2808,2807,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2831,2834,2829,2832,2836,2837,2838,2833,2803,2839,2840,2804,2817,2841,2842,2843,2844,2845,2846,2847,2814,2813,2848,2816,2843,2842,2792,2824,2843,2815,2817,2811,2849,2850,2826,2848,2813,2812,2808,2847,2842,2841,2844,2829,2828,2851,2835,2834,2833,2852,2853,2829,2834,2853,2830,2833,2838,2854,2852,2804,2840,2806,2805,2799,2804,2805,2812,2812,2811,2800,2799,2811,2850,2809,2800,2835,2851,2839,2803,2803,2802,2831,2835,2802,2801,2832,2831,2801,2836,2832,2836,2855,2837,2801,2810,2855,2836,2811,2814,2815,2856,2849,2847,2846,2797,2823,2793,2792,2842,2847,2823,2826,2825,2845,2844,2844,2841,2848,2826,2816,2848,2841,2817,2815,2814,2816,2857,2858,2824,2791,2858,2856,2815,2843,2824,2859,2860,2861,2862,2863,2864,2865,2866,2828,2827,2867,2868,2751,2754,2869,2821,2820,2798,2870,2871,2872,2867,2873,2870,2874,2875,2875,2874,2876,2877,2878,2879,2880,2881,2882,2878,2883,2884,2884,2883,2885,2886,2887,2885,2781,2888,2889,2890,2891,2876,2890,2889,2881,2892,2732,2731,2881,2889,2763,2876,2874,2764,2763,2732,2889,2876,2764,2874,2870,2775,2731,2750,2878,2881,2878,2750,2771,2883,2870,2867,2754,2775,2885,2883,2771,2770,2781,2885,2770,2721,2722,2840,2839,2893,2894,2840,2894,2895,2806,2839,2851,2896,2893,2807,2897,2898,2825,2898,2899,2845,2825,2866,2896,2851,2828,2899,2900,2846,2845,2806,2895,2897,2807,2900,2869,2798,2797,2846,2872,2868,2867,2901,2781,2744,2902,2903,2904,2905,2906,2907,2908,2906,2908,2903,2902,2909,2907,2910,2911,2912,2913,2914,2912,2911,2915,2916,2917,2918,2919,2920,2914,2913,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2906,2934,2918,2917,2926,2907,2909,2935,2908,2908,2935,2903,2907,2906,2933,2910,2936,2905,2904,2918,2937,2938,2919,2939,2940,2941,2942,2943,2944,2945,2946,2947,2941,2944,2943,2946,2945,2948,2949,2950,2916,2915,2951,2952,2928,2953,2954,2955,2956,2957,2958,2959,2924,
- 2929,2960,2925,2953,2936,2904,2954,2953,2928,2927,2923,2961,2962,2937,2918,2926,2925,2960,2957,2956,2955,2954,2941,2947,2963,2942,2944,2964,2965,2945,2941,2940,2964,2944,2945,2965,2966,2948,2915,2917,2920,2951,2911,2926,2917,2915,2926,2911,2914,2923,2923,2914,2922,2961,2947,2916,2952,2963,2916,2947,2943,2912,2912,2943,2946,2913,2913,2946,2950,2950,2949,2967,2913,2950,2967,2921,2923,2962,2968,2927,2924,2957,2935,2909,2958,2903,2935,2957,2954,2904,2937,2956,2959,2938,2956,2937,2960,2955,2929,2928,2955,2960,2927,2929,2924,2932,2969,2910,2933,2970,2971,2905,2936,2968,2970,2936,2953,2927,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2982,2978,2981,2983,2985,2986,2984,2987,2988,2989,2990,2990,2991,2992,2987,2993,2994,2995,2996,2988,2997,2998,2989,2999,3000,3001,3002,3003,3004,3005,3006,3007,2982,3008,3009,3010,2996,3000,2993,2984,2983,3011,2985,2983,2981,3011,2984,2986,3008,2982,3012,2980,2979,2996,2995,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3019,3022,3017,3020,3024,3025,3026,3021,2991,3027,3028,2992,3005,3029,3030,3031,3032,3033,3034,3035,3002,3001,3036,3004,3031,3030,2980,3012,3031,3003,3005,2999,3037,3038,3014,3036,3001,3000,2996,3035,3030,3029,3032,3017,3016,3039,3023,3022,3021,3040,3041,3017,3022,3041,3018,3021,3026,3042,3040,2992,3028,2994,2993,2987,2992,2993,3000,3000,2999,2988,2987,2999,3038,2997,2988,3023,3039,3027,2991,2991,2990,3019,3023,2990,2989,3020,3019,2989,3024,3020,3024,3043,3025,2989,2998,3043,3024,2999,3002,3003,3044,3037,3035,3034,2985,3011,2981,2980,3030,3035,3011,3014,3013,3033,3032,3032,3029,3036,3014,3004,3036,3029,3005,3003,3002,3004,3045,3046,3012,2979,3046,3044,3003,3031,3012,3047,3048,3049,3050,3051,3052,3053,3054,3016,3015,3055,3056,2939,2942,3057,3009,3008,2986,3058,3059,3060,3055,3061,3058,3062,3063,3063,3062,3064,3065,3066,3067,3068,3069,3070,3066,3071,3072,3072,3071,3073,3074,3075,3073,2969,3076,3077,3078,3079,3064,3078,3077,3069,3080,2920,2919,3069,3077,2951,3064,3062,2952,2951,2920,3077,3064,2952,3062,3058,2963,2919,2938,3066,3069,3066,2938,2959,3071,
- 3058,3055,2942,2963,3073,3071,2959,2958,2969,3073,2958,2909,2910,3028,3027,3081,3082,3028,3082,3083,2994,3027,3039,3084,3081,2995,3085,3086,3013,3086,3087,3033,3013,3054,3084,3039,3016,3087,3088,3034,3033,2994,3083,3085,2995,3088,3057,2986,2985,3034,3060,3056,3055,3089,2969,2932,3090,3091,3092,3093,3094,3095,3096,3094,3096,3091,3090,3097,3095,3098,3099,3100,3101,3102,3100,3099,3103,3104,3105,3106,3107,3108,3102,3101,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3094,3122,3106,3105,3114,3095,3097,3123,3096,3096,3123,3091,3095,3094,3121,3098,3124,3093,3092,3106,3125,3126,3107,3127,3128,3129,3130,3131,3132,3133,3134,3135,3129,3132,3131,3134,3133,3136,3137,3138,3104,3103,3139,3140,3116,3141,3142,3143,3144,3145,3146,3147,3112,3117,3148,3113,3141,3124,3092,3142,3141,3116,3115,3111,3149,3150,3125,3106,3114,3113,3148,3145,3144,3143,3142,3129,3135,3151,3130,3132,3152,3153,3133,3129,3128,3152,3132,3133,3153,3154,3136,3103,3105,3108,3139,3099,3114,3105,3103,3114,3099,3102,3111,3111,3102,3110,3149,3135,3104,3140,3151,3104,3135,3131,3100,3100,3131,3134,3101,3101,3134,3138,3138,3137,3155,3101,3138,3155,3109,3111,3150,3156,3115,3112,3145,3123,3097,3146,3091,3123,3145,3142,3092,3125,3144,3147,3126,3144,3125,3148,3143,3117,3116,3143,3148,3115,3117,3112,3120,3157,3098,3121,3158,3159,3093,3124,3156,3158,3124,3141,3115,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3170,3166,3169,3171,3173,3174,3172,3175,3176,3177,3178,3178,3179,3180,3175,3181,3182,3183,3184,3176,3185,3186,3177,3187,3188,3189,3190,3191,3192,3193,3194,3195,3170,3196,3197,3198,3184,3188,3181,3172,3171,3199,3173,3171,3169,3199,3172,3174,3196,3170,3200,3168,3167,3184,3183,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3207,3210,3205,3208,3212,3213,3214,3209,3179,3215,3216,3180,3193,3217,3218,3219,3220,3221,3222,3223,3190,3189,3224,3192,3219,3218,3168,3200,3219,3191,3193,3187,3225,3226,3202,3224,3189,3188,3184,3223,3218,3217,3220,3205,3204,3227,3211,3210,3209,3228,3229,3205,3210,3229,3206,3209,3214,3230,3228,3180,3216,3182,3181,
- 3175,3180,3181,3188,3188,3187,3176,3175,3187,3226,3185,3176,3211,3227,3215,3179,3179,3178,3207,3211,3178,3177,3208,3207,3177,3212,3208,3212,3231,3213,3177,3186,3231,3212,3187,3190,3191,3232,3225,3223,3222,3173,3199,3169,3168,3218,3223,3199,3202,3201,3221,3220,3220,3217,3224,3202,3192,3224,3217,3193,3191,3190,3192,3233,3234,3200,3167,3234,3232,3191,3219,3200,3235,3236,3237,3238,3239,3240,3241,3242,3204,3203,3243,3244,3127,3130,3245,3197,3196,3174,3246,3247,3248,3243,3249,3246,3250,3251,3251,3250,3252,3253,3254,3255,3256,3257,3258,3254,3259,3260,3260,3259,3261,3262,3263,3261,3157,3264,3265,3266,3267,3252,3266,3265,3257,3268,3108,3107,3257,3265,3139,3252,3250,3140,3139,3108,3265,3252,3140,3250,3246,3151,3107,3126,3254,3257,3254,3126,3147,3259,3246,3243,3130,3151,3261,3259,3147,3146,3157,3261,3146,3097,3098,3216,3215,3269,3270,3216,3270,3271,3182,3215,3227,3272,3269,3183,3273,3274,3201,3274,3275,3221,3201,3242,3272,3227,3204,3275,3276,3222,3221,3182,3271,3273,3183,3276,3245,3174,3173,3222,3248,3244,3243,3277,3157,3120,3278,3279,3280,3281,3279,3278,3282,3283,3281,3280,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3288,3291,3290,3293,3292,3295,3296,3283,3282,3297,3298,3288,3294,3299,3289,3291,3300,3301,3292,3288,3287,3300,3291,3292,3301,3302,3295,3297,3303,3304,3298,3282,3305,3306,3297,3278,3307,3305,3282,3307,3278,3281,3308,3308,3281,3285,3309,3297,3306,3310,3303,3294,3283,3298,3299,3283,3294,3290,3279,3279,3290,3293,3280,3280,3293,3296,3280,3296,3284,3298,3304,3311,3299,3311,3312,3289,3299,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3322,3323,3324,3319,3320,3325,3326,3321,3327,3328,3329,3330,3331,3332,3333,3334,3335,3331,3334,3329,3332,3336,3337,3333,3323,3338,3339,3324,3339,3338,3340,3341,3329,3328,3342,3335,3334,3333,3343,3344,3329,3334,3344,3330,3333,3337,3345,3343,3324,3339,3346,3347,3319,3324,3347,3348,3348,3349,3320,3319,3349,3350,3325,3320,3339,3341,3351,3346,3338,3342,3352,3340,3335,3342,3338,3323,3323,3322,3331,3335,3322,3321,3332,3331,3336,3332,3321,3326,3353,3352,3342,3328,3354,3355,3356,3357,
- 3358,3359,3360,3353,3328,3327,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3306,3371,3372,3310,3346,3351,3373,3374,3347,3346,3374,3375,3348,3347,3375,3376,3376,3377,3349,3348,3377,3378,3350,3349,3379,3308,3309,3380,3381,3307,3308,3379,3305,3307,3381,3382,3306,3305,3382,3371,3383,3384,3385,3386,3387,3388,3389,3390,3391,3385,3388,3387,3390,3389,3392,3393,3394,3385,3391,3395,3386,3388,3396,3397,3389,3385,3384,3396,3388,3389,3397,3398,3392,3391,3399,3400,3395,3399,3391,3387,3401,3401,3387,3390,3402,3402,3390,3394,3394,3393,3403,3402,3394,3403,3404,3400,3405,3406,3395,3406,3407,3386,3395,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3418,3421,3416,3419,3423,3424,3425,3420,3416,3415,3426,3422,3421,3420,3427,3428,3416,3421,3428,3417,3420,3425,3429,3427,3430,3426,3431,3432,3422,3426,3430,3433,3433,3434,3418,3422,3434,3435,3419,3418,3435,3423,3419,3423,3436,3424,3435,3437,3436,3423,3438,3431,3426,3415,3439,3440,3441,3442,3443,3444,3445,3438,3415,3414,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3407,3456,3383,3386,3457,3407,3406,3458,3457,3456,3407,3459,3406,3405,3312,3460,3286,3289,3311,3461,3462,3312,3463,3303,3310,3464,3465,3311,3304,3462,3460,3312,3466,3304,3303,3464,3310,3372,3467,3468,3469,3470,3468,3467,3471,3472,3470,3469,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3477,3480,3479,3482,3481,3484,3485,3472,3471,3486,3487,3477,3483,3488,3478,3480,3489,3490,3481,3477,3476,3489,3480,3481,3490,3491,3484,3486,3492,3493,3487,3471,3494,3495,3486,3467,3496,3494,3471,3496,3467,3470,3497,3497,3470,3474,3498,3486,3495,3499,3492,3483,3472,3487,3488,3472,3483,3479,3468,3468,3479,3482,3469,3482,3485,3500,3469,3482,3500,3473,3488,3487,3493,3501,3501,3502,3478,3488,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3512,3513,3514,3509,3510,3515,3516,3511,3517,3518,3519,3520,3521,3522,3523,3524,3525,3521,3524,3519,3522,3526,3527,3523,3513,3528,3529,3514,3529,3528,3530,3531,3519,3518,3532,3525,3524,3523,3533,3534,3519,3524,3534,3520,3523,3527,3535,3533,3514,3529,3536,3537,3509,3514,3537,
- 3538,3538,3539,3510,3509,3539,3540,3515,3510,3529,3531,3541,3536,3525,3532,3528,3513,3513,3512,3521,3525,3512,3511,3522,3521,3511,3526,3522,3511,3516,3542,3526,3543,3544,3532,3518,3545,3546,3547,3548,3549,3550,3551,3543,3518,3517,3532,3544,3530,3528,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3495,3562,3563,3499,3536,3541,3564,3565,3537,3536,3565,3566,3538,3537,3566,3567,3567,3568,3539,3538,3568,3569,3540,3539,3570,3497,3498,3571,3572,3496,3497,3570,3494,3496,3572,3573,3495,3494,3573,3562,3574,3575,3576,3577,3578,3579,3580,3581,3582,3576,3579,3578,3581,3580,3583,3584,3576,3582,3585,3577,3579,3586,3587,3580,3576,3575,3586,3579,3580,3587,3588,3583,3585,3589,3590,3582,3591,3589,3585,3591,3582,3578,3592,3592,3578,3581,3593,3584,3594,3593,3581,3590,3589,3595,3590,3596,3577,3585,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3607,3610,3605,3608,3612,3613,3609,3605,3604,3614,3611,3610,3609,3615,3616,3605,3610,3616,3606,3609,3613,3617,3615,3618,3614,3619,3620,3611,3614,3618,3621,3621,3622,3607,3611,3622,3623,3608,3607,3612,3608,3623,3624,3625,3619,3614,3604,3626,3627,3628,3629,3630,3631,3632,3625,3604,3603,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3502,3643,3475,3478,3644,3502,3501,3645,3646,3492,3499,3647,3644,3643,3502,3648,3501,3493,3649,3493,3492,3647,3499,3563,3596,3650,3574,3577,3651,3596,3590,3652,3651,3650,3596,3652,3590,3595,3653,3654,3655,3656,3657,3658,3659,3653,3660,3661,3662,3663,3661,3664,3665,3662,3666,3667,3668,3659,3669,3670,3671,3672,3654,3668,3673,3674,3675,3676,3677,3678,3676,3679,3680,3677,3681,3682,3683,3684,3685,3665,3664,3686,3687,3688,3682,3671,3689,3680,3679,3690,3659,3668,3654,3653,3681,3672,3671,3682,3680,3664,3661,3677,3686,3664,3680,3689,3660,3678,3677,3661,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3653,3656,3657,3666,3659,3658,3654,3674,3655,3667,3673,3668,3670,3687,3671,3688,3683,3682,3701,3702,3703,3704,2616,2619,3705,3703,3702,2648,3706,3707,3705,2619,2621,3708,3706,2648,2647,2633,2632,2634,3709,3710,3711,3712,3710,3713,3714,3715,3716,3713,
- 3709,3709,3713,3710,3717,3718,1983,1982,3718,2371,1984,1983,2371,2370,1985,1984,2370,3719,1986,1985,3719,3717,1982,1986
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *5043 {
- a: 0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,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,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,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,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,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,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,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,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,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,0,0,0,0,0,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,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,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,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,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,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,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,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,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,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,0,0,0,0,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,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,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *2572 {
- 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,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,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
- 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
- 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733801120, "Geometry::", "Mesh" {
- Vertices: *4002 {
- a: -390.1396484375,-109.0537109375,-416.657470703125,-319.6455078125,-74.443115234375,-361.15625,-318.94140625,-108.157470703125,-360.767211914063,-389.677734375,-73.922607421875,-416.725219726563,1.17578125,-72.505126953125,-516.138793945313,1.55078125,-107.11572265625,-605.859252929688,1.888671875,-71.98583984375,-605.537475585938,1.30078125,-106.220703125,-515.344848632813,320.748046875,-74.443115234375,-358.599365234375,391.705078125,-109.0537109375,-413.508056640625,391.66015625,-73.922607421875,-413.044311523438,320.19921875,-108.157470703125,-358.01123046875,406.4140625,-72.505126953125,1.1806640625,496.134765625,-107.11572265625,1.196533203125,495.8125,-71.98583984375,1.503662109375,405.619140625,-106.220703125,1.32421875,-494.65234375,-78.91552734375,1.02197265625,-496.388671875,-110.170166015625,1.25732421875,-483.7841796875,-75.052734375,1.0341796875,-406.2890625,-111.419677734375,0.7470703125,-405.419921875,-74.860595703125,0.336181640625,-390.470703125,-78.620849609375,-413.465209960938,-391.9990234375,-109.87451171875,-414.326049804688,-381.8994140625,-74.7578125,-406.779418945313,-320.5810546875,-111.12353515625,-359.392944335938,-319.6689453125,-74.564453125,-359.150146484375,-1.166015625,-75.052734375,-593.28564453125,-0.791015625,-111.419677734375,-515.792358398438,-0.419921875,-74.860595703125,-514.9228515625,-1.4296875,-110.170166015625,-605.89013671875,-1.169921875,-78.91552734375,-604.1552734375,380.123046875,-74.7578125,-407.912841796875,319.265625,-111.12353515625,-359.936157226563,318.806640625,-74.564453125,-359.109008789063,389.89453125,-109.87451171875,-415.87744140625,388.6875,-78.620849609375,-414.603393554688,-437.900390625,-109.49169921875,-340.25439453125,-443.4072265625,-107.440063476563,-338.248046875,-434.9619140625,-108.9072265625,-352.058959960938,-440.1689453125,-73.7451171875,-343.470703125,-392.005859375,-74.403564453125,-416.537719726563,-392.2744140625,-109.1162109375,-415.846435546875,-390.4208984375,-72.585693359375,-415.492309570313,-470.177734375,-71.711669921875,-276.88525390625,
- -474.1181640625,-108.249877929688,-265.297119140625,-439.3046875,-71.4522705078125,-339.499267578125,-319.0439453125,-72.3671875,-358.813354492188,-362.5380859375,-70.966064453125,-294.63623046875,-472.2568359375,-69.63232421875,-265.572509765625,-317.6962890625,-74.070556640625,-358.362915039063,-466.1630859375,-72.4200439453125,-260.180908203125,-358.373046875,-73.2802734375,-297.42578125,-317.3857421875,-108.138671875,-357.779541015625,-386.72265625,-71.438232421875,-233.788330078125,-383.666015625,-73.1783447265625,-235.61865234375,-357.275390625,-106.883422851563,-297.47509765625,-320.080078125,-109.638671875,-360.015502929688,-360.6064453125,-108.371826171875,-299.51904296875,-391.3984375,-110.8583984375,-413.87158203125,-387.7724609375,-111.377197265625,-232.45263671875,-384.796875,-109.436279296875,-231.39599609375,-403.638671875,-74.9827880859375,-139.9990234375,-472.9150390625,-111.832153320313,-263.262939453125,-476.40625,-111.435546875,-261.49755859375,-497.0263671875,-111.989501953125,-170.2509765625,-494.4501953125,-114.561767578125,-165.1845703125,-499.1220703125,-108.422607421875,-161.233154296875,-403.3671875,-111.501831054688,-146.54736328125,-497.005859375,-110.671875,-159.66650390625,-502.40625,-109.650390625,-88.406005859375,-406.28515625,-111.668212890625,-148.273193359375,-498.4794921875,-112.4794921875,-87.1416015625,-500.0517578125,-110.38525390625,-85.51220703125,-497.7978515625,-112.790283203125,-0.585205078125,-500.822265625,-110.121337890625,-0.585205078125,-406.2890625,-112.9609375,-0.585205078125,-404.27734375,-111.419677734375,-0.585205078125,-403.6083984375,-74.94970703125,-2.97021484375,-407.419921875,-72.570556640625,-1.6142578125,-407.1162109375,-73.700927734375,-86.2470703125,-496.564453125,-72.7188720703125,-0.76953125,-406.962890625,-70.960205078125,-143.79638671875,-499.810546875,-74.80419921875,0.05224609375,-499.953125,-75.773681640625,-78.0322265625,-497.8828125,-72.314453125,-85.030517578125,-494.8876953125,-85.735595703125,-85.287109375,-501.916015625,-72.656982421875,-89.90576171875,
- -497.1337890625,-70.864013671875,-152.137451171875,-498.14453125,-73.8092041015625,-163.2275390625,-474.7412109375,-72.861328125,-259.389404296875,-476.7353515625,-76.9080810546875,-259.281005859375,-394.23828125,-109.82568359375,-418.663940429688,-393.6376953125,-74.484130859375,-418.286376953125,-334.9384765625,-75.477783203125,-480.925170898438,-328.9189453125,-110.171020507813,-486.588500976563,-391.2880859375,-72.4583740234375,-416.513427734375,-329.2109375,-77.4183349609375,-482.99609375,-325.5791015625,-85.440673828125,-482.454711914063,-327.89453125,-109.650390625,-490.399536132813,-328.0888671875,-72.58935546875,-484.82861328125,-326.3046875,-72.656982421875,-491.115844726563,-265.78515625,-71.3658447265625,-534.53076171875,-265.904296875,-108.558715820313,-534.99365234375,-275.0439453125,-69.398681640625,-525.992553710938,-179.841796875,-71.494384765625,-575.994995117188,-173.8408203125,-108.149658203125,-578.392700195313,-176.3359375,-69.453369140625,-575.275634765625,-267.8798828125,-73.2725830078125,-417.033203125,-216.4326171875,-68.913818359375,-456.083740234375,-168.990234375,-73.450927734375,-567.98095703125,-320.15625,-72.2744140625,-361.769775390625,-139.8251953125,-71.2249755859375,-491.14404296875,-316.4072265625,-74.654296875,-360.36474609375,-318.2578125,-111.12353515625,-359.098510742188,-270.5693359375,-77.0435791015625,-410.035888671875,-319.841796875,-112.66552734375,-360.339965820313,-265.75390625,-110.83154296875,-415.559692382813,-212.1748046875,-70.6536865234375,-453.924560546875,-270.2890625,-111.959350585938,-415.40283203125,-210.0947265625,-109.102783203125,-454.589599609375,-142.4365234375,-73.2933349609375,-487.37353515625,-137.373046875,-109.494140625,-489.18212890625,-213.3076171875,-110.262573242188,-456.034912109375,-140.7841796875,-109.489990234375,-490.873413085938,-266.73046875,-111.03125,-531.455810546875,-391.8564453125,-112.494384765625,-416.797119140625,-324.1982421875,-112.271118164063,-488.7763671875,-173.0263671875,-110.252685546875,-576.195190429688,-170.798828125,-106.6796875,-574,
- -138.4375,-113.236083984375,-491.604736328125,-169.2099609375,-113.96533203125,-576.710815429688,-170.0029296875,-111.7353515625,-578.906127929688,-96.17578125,-110.954345703125,-599.019653320313,-95.458984375,-113.018310546875,-596.973266601563,-88.021484375,-103.99951171875,-595.249755859375,-76.470703125,-112.03125,-508.599487304688,-76.041015625,-109.734741210938,-505.802368164063,-71.8720703125,-107.032348632813,-510.302612304688,-76.255859375,-108.869384765625,-599.430541992188,-76.951171875,-106.9697265625,-601.4443359375,-0.095703125,-106.202392578125,-512.279663085938,-1.419921875,-108.921630859375,-605.13818359375,-0.40234375,-107.179443359375,-607.04248046875,0.0078125,-107.701904296875,-515.780517578125,-69.7744140625,-73.146484375,-508.078857421875,0.173828125,-72.1337890625,-512.8837890625,-0.30078125,-70.42919921875,-514.22412109375,0.4609375,-70.6494140625,-605.363891601563,-71.259765625,-70.6063232421875,-512.378173828125,-79.8359375,-73.1796875,-506.953735351563,-92.9208984375,-72.1695556640625,-597.776245117188,-169.0390625,-73.544921875,-576.517578125,-167.2158203125,-77.1549072265625,-579.71337890625,-93.07421875,-73.9334716796875,-599.24951171875,0.30859375,-72.46728515625,-607.256225585938,329.185546875,-109.49169921875,-478.389892578125,328.576171875,-107.440185546875,-484.220336914063,339.923828125,-108.9072265625,-472.673583984375,332.861328125,-73.7449951171875,-479.807861328125,392.04296875,-74.403564453125,-415.346923828125,391.435546875,-109.1162109375,-415.775146484375,390.642578125,-72.585693359375,-414.063720703125,275.55078125,-71.711669921875,-525.08984375,265.5078125,-108.252197265625,-531.547729492188,328.79296875,-71.4530029296875,-479.939208984375,318.330078125,-72.3671875,-358.585815429688,266.638671875,-70.966552734375,-416.357788085938,265.13671875,-69.62890625,-529.798950195313,317.564453125,-74.070556640625,-357.386962890625,258.56640625,-72.35498046875,-525.22802734375,268.328125,-73.2799072265625,-411.641967773438,316.923828125,-108.138671875,-357.226806640625,213.4765625,-71.4393310546875,-454.59912109375,
- 214.525390625,-73.18017578125,-451.17626953125,268.107421875,-106.883056640625,-410.56884765625,319.74609375,-109.638671875,-359.299072265625,270.904296875,-108.371826171875,-413.299560546875,389.30859375,-110.8583984375,-415.406616210938,212.44140625,-111.376953125,-455.935302734375,210.689453125,-109.436645507813,-453.308715820313,128.0703125,-73.71923828125,-493.1943359375,263,-111.832153320313,-531.0546875,262.134765625,-111.435546875,-534.867553710938,178.626953125,-111.989501953125,-577.027465820313,173.08984375,-114.562133789063,-575.754150390625,170.35546875,-108.425048828125,-581.281494140625,144.15625,-111.34521484375,-486.45947265625,140.32421875,-112.427734375,-491.866455078125,168.353515625,-110.671875,-579.576782226563,97.98046875,-109.650390625,-602.164916992188,75.8271484375,-111.969482421875,-510.488159179688,98.82421875,-112.435791015625,-598.274658203125,94.294921875,-110.453491210938,-600.636962890625,0.603515625,-112.790283203125,-607.299194335938,0.611328125,-110.121337890625,-610.325073242188,0.41015625,-112.9609375,-515.791625976563,0.40625,-111.419677734375,-513.779418945313,77.033203125,-110.914916992188,-507.121704101563,2.544921875,-74.94970703125,-513.100219726563,71.4306640625,-77.3795166015625,-507.182250976563,1.345703125,-72.570556640625,-516.91943359375,77.5390625,-73.45361328125,-509.597900390625,0.9482421875,-72.750732421875,-606.60888671875,131.693359375,-71.396484375,-496.280517578125,-0.017578125,-74.829345703125,-609.54296875,86.1796875,-75.773681640625,-601.888427734375,93.755859375,-72.7713623046875,-598.86767578125,91.3125,-77.6859130859375,-598.663330078125,93.142578125,-85.735595703125,-595.452026367188,99.5234375,-72.656982421875,-601.352661132813,160.2890625,-70.56689453125,-582.0009765625,172.2578125,-73.8382568359375,-579.84716796875,259.70703125,-72.864501953125,-533.753540039063,260.634765625,-77.8792724609375,-534.631103515625,497.529296875,-72.46728515625,0.06787109375,497.3125,-107.179443359375,-0.57421875,496.5625,-106.9775390625,-80.57958984375,495.63671875,-70.6494140625,0.20751953125,
- 497.109375,-74.8929443359375,-144.26220703125,497.904296875,-110.954345703125,-86.5732421875,495.646484375,-111.7353515625,-160.56396484375,404.494140625,-70.42919921875,-0.45458984375,493.224609375,-86.536376953125,-162.296875,491.08203125,-106.68212890625,-162.5234375,496.080078125,-108.149658203125,-164.410400390625,495.927734375,-72.1536865234375,-81.275146484375,495.212890625,-71.494384765625,-170.814453125,476.291015625,-108.505004882813,-264.448974609375,492.8515625,-73.5240478515625,-160.203369140625,484.80859375,-73.4532470703125,-162.23291015625,475.59765625,-71.2996826171875,-264.986328125,448.126953125,-109.650390625,-335.2197265625,493.662109375,-69.453369140625,-167.587890625,403.134765625,-71.18017578125,-152.6513671875,404.41796875,-73.1796875,-88.407958984375,407.640625,-70.60546875,-77.636474609375,403.08203125,-73.090576171875,-77.94921875,400.17578125,-73.3065185546875,-155.8271484375,403.15625,-72.1337890625,0.07568359375,402.55078125,-106.202392578125,-0.223388671875,402.46484375,-108.77734375,-82.3525390625,406.052734375,-107.701904296875,-0.11181640625,405.53125,-107.073486328125,-78.1240234375,495.41015625,-108.921630859375,-1.49951171875,494.87109375,-108.869384765625,-68.7451171875,489.662109375,-103.361694335938,-80.0166015625,405.38671875,-112.03125,-84.3916015625,495.759765625,-113.018310546875,-86.2939453125,493.32421875,-113.96533203125,-160.326904296875,403.29296875,-113.236083984375,-151.141357421875,400.703125,-109.494018554688,-150.580078125,403.150390625,-109.489990234375,-153.598388671875,493.75,-110.252685546875,-164.15478515625,473.7578125,-111.010131835938,-264.264892578125,384.361328125,-109.12548828125,-231.16845703125,445.65625,-112.271118164063,-332.02587890625,444.654296875,-110.174438476563,-337.183349609375,386.998046875,-110.29736328125,-232.5732421875,361.302734375,-111.959838867188,-297.65966796875,392.2578125,-112.494384765625,-415.140380859375,394.646484375,-109.82568359375,-416.997192382813,320.00390625,-112.66552734375,-358.988159179688,318.416015625,-111.12353515625,-357.75341796875,
- 360.43359375,-110.833129882813,-293.1044921875,319.193359375,-74.654296875,-355.6513671875,321.466796875,-72.2744140625,-358.9462890625,356.25390625,-77.043701171875,-299.116943359375,391.181640625,-72.451416015625,-414.200805664063,362.384765625,-73.272216796875,-294.81201171875,384.6328125,-70.64208984375,-231.85205078125,387.78125,-68.9130859375,-235.405517578125,469.826171875,-69.3995361328125,-275.23291015625,442.826171875,-72.5888671875,-336.761474609375,448.435546875,-72.656982421875,-333.50390625,439.857421875,-85.440673828125,-334.903564453125,441.404296875,-77.187744140625,-338.475341796875,440.646484375,-75.477783203125,-344.35400390625,393.435546875,-75.7672119140625,-414.958129882813,-321.7802734375,151.7138671875,-489.852416992188,-289.8388671875,186.756103515625,-453.148193359375,-289.7109375,169.3203125,-452.527099609375,-317.12890625,136.951416015625,-484.860107421875,-258.240234375,151.597900390625,-414.73583984375,-261.7744140625,137.106689453125,-419.32373046875,-448.8466796875,168.0244140625,-42.515380859375,-406.4072265625,135.509765625,-42.5830078125,-399.662109375,150.307373046875,-42.86328125,-448.4130859375,185.317626953125,-42.25048828125,-497.9521484375,150.334716796875,-42.810791015625,-491.328125,135.468505859375,-42.597900390625,-220.8349609375,167.63916015625,-500.449829101563,-199.345703125,135.327270507813,-462.614501953125,-196.35546875,149.350341796875,-458.6201171875,-220.8349609375,184.176025390625,-500.449829101563,-244.8271484375,149.267333984375,-543.00830078125,-242.0654296875,135.342041015625,-538.429931640625,-294.4208984375,80.651123046875,-448.538818359375,-265.9326171875,48.3751220703125,-415.7705078125,-262.0166015625,62.892578125,-411.534057617188,-294.1337890625,98.1744384765625,-448.247192382813,-326.44921875,62.931884765625,-485.921630859375,-322.166015625,48.1806640625,-480.573852539063,-48.7890625,78.762939453125,-555.736572265625,-43.9599609375,53.2930908203125,-512.382568359375,-43.017578125,68.6336669921875,-505.71484375,-48.984375,96.5194091796875,-556.416259765625,
- -53.7734375,68.679443359375,-605.8388671875,-53.0546875,53.1783447265625,-598.002807617188,-434.13671875,81.1171875,-223.859375,-391.95703125,48.8717041015625,-212.86962890625,-386.486328125,63.423828125,-211.578125,-433.705078125,98.69775390625,-223.744873046875,-481.6142578125,63.5123291015625,-236.69384765625,-475.0810546875,48.768310546875,-234.686279296875,-448.8369140625,77.0784912109375,0.5029296875,-406.328125,52.404296875,-0.052734375,-398.484375,67.9033203125,-0.172119140625,-449.6845703125,95.414306640625,0.0947265625,-499.1767578125,67.902587890625,-0.171875,-491.3310546875,52.4041748046875,-0.052734375,402.1171875,169.3203125,-307.375244140625,440.111328125,136.961547851563,-326.125732421875,446.115234375,151.711669921875,-329.420166015625,402.75,186.755859375,-307.349365234375,357.853515625,151.62451171875,-286.03759765625,363.046875,137.068359375,-288.26123046875,42.23828125,168.0244140625,-556.313354492188,38.12890625,135.68603515625,-512.971923828125,37.84375,150.28369140625,-507.349975585938,41.943359375,185.298095703125,-555.9306640625,47.3203125,150.354248046875,-605.203125,46.3994140625,135.726196289063,-599.545166015625,385.322265625,149.3681640625,-215.361328125,431.880859375,167.63916015625,-228.925537109375,389.921875,135.312744140625,-217.241943359375,431.880859375,184.176025390625,-228.925537109375,479.51171875,149.8955078125,-241.58837890625,472.787109375,135.167236328125,-240.11572265625,355.62890625,62.894775390625,-290.462158203125,399.390625,80.651123046875,-312.91162109375,360.734375,48.443603515625,-293.328369140625,399.044921875,98.1968994140625,-312.73876953125,443.435546875,62.9337158203125,-334.90185546875,437.203125,48.18115234375,-332.048583984375,397.4921875,68.6107177734375,-47.96044921875,447.943359375,77.827880859375,-48.49658203125,405.435546875,53.163818359375,-47.95361328125,448.11328125,96.5611572265625,-48.39501953125,498.279296875,68.6544189453125,-47.826904296875,490.44140625,53.146484375,-47.9482421875,215.359375,81.1171875,-503.002563476563,194.501953125,48.968505859375,-464.970825195313,
- 191.853515625,63.3658447265625,-459.69580078125,215.142578125,98.69775390625,-502.611206054688,239.44140625,63.3773193359375,-546.4970703125,235.78125,48.8026123046875,-540.051025390625,-0.30078125,78.005859375,-558.35009765625,-0.19140625,52.53759765625,-514.74169921875,0.01953125,67.87841796875,-507.997314453125,-0.1748046875,95.5794677734375,-557.904541015625,0.154296875,67.924560546875,-608.6982421875,0.025390625,52.430419921875,-600.82568359375,-307.501953125,-105.00927734375,-483.674072265625,-270.0263671875,-105.567626953125,-441.531616210938,-307.53125,-103.759765625,-486.423583984375,-267.501953125,-104.61279296875,-440.591796875,-276.607421875,-103.1240234375,-510.974853515625,-240.0615234375,-104.234252929688,-463.0859375,-240.4482421875,-105.137939453125,-465.613037109375,-274.1533203125,-104.578369140625,-510.827514648438,-395.9951171875,-108.09619140625,-393.985595703125,-349.119140625,-108.65234375,-362.633422851563,-396.5009765625,-106.71435546875,-396.337158203125,-346.564453125,-107.505493164063,-362.173583984375,-373.6376953125,-106.709594726563,-427.955078125,-325.9951171875,-107.913208007813,-390.546264648438,-326.876953125,-108.663818359375,-392.994506835938,-370.9404296875,-108.10498046875,-428.191162109375,-396.669921875,-130.50146484375,-394.283813476563,-349.0625,-186.46435546875,-362.84619140625,-372.1142578125,-186.529296875,-378.08349609375,-436.361328125,-127.32373046875,-321.2275390625,-435.97265625,-104.930419921875,-320.362060546875,-385.220703125,-105.491455078125,-295.780029296875,-409.0673828125,-183.320068359375,-310.09228515625,-384.0830078125,-184.355224609375,-297.800048828125,-402.40234375,96.34130859375,-311.972412109375,-420.2744140625,95.843505859375,-270.97802734375,-400.185546875,97.2294921875,-311.92822265625,-416.951171875,95.602783203125,-272.035888671875,-357.4521484375,63.0654296875,-291.00732421875,-374.4140625,61.700927734375,-251.51318359375,-418.7119140625,95.97021484375,-267.431640625,-359.0703125,58.998291015625,-288.85546875,-363.66796875,49.264404296875,-293.72705078125,
- -435.2841796875,98.090576171875,-225.26611328125,-385.9580078125,61.861572265625,-212.18505859375,-433.865234375,79.5078125,-224.8896484375,-361.998046875,50.14501953125,-291.71728515625,-393.73828125,49.24609375,-214.248046875,-419.7724609375,76.8134765625,-269.0107421875,-378.4560546875,47.061279296875,-254.25244140625,-380.7158203125,46.46826171875,-255.138916015625,-400.6845703125,79.33447265625,-312.17138671875,-452.888671875,-114.74462890625,-281.064208984375,-454.1484375,-105.902709960938,-281.524658203125,-454.1806640625,-115.80712890625,-285.533203125,-438.4580078125,-103.572021484375,-319.47216796875,-449.458984375,-130.86083984375,-295.521728515625,-438.9833984375,-127.869873046875,-319.8349609375,-410.7587890625,-184.658203125,-308.44970703125,-399.1982421875,-185.623657226563,-263.440185546875,-446.5234375,-144.1845703125,-283.284912109375,-425.01953125,-185.7451171875,-275.76611328125,-425.1015625,-184.5439453125,-273.33740234375,-445.0048828125,-144.4296875,-278.81298828125,436.650390625,-105.00927734375,-317.06982421875,386.669921875,-105.567626953125,-290.9501953125,439.32421875,-103.759887695313,-316.43212890625,385.146484375,-104.612548828125,-288.728515625,455.6328125,-103.123901367188,-280.4736328125,400.302734375,-104.236938476563,-256.6484375,402.849609375,-105.137939453125,-256.41015625,454.89453125,-104.578369140625,-278.126953125,37.08984375,-107.642333984375,-539.465454101563,37.72265625,-185.451904296875,-539.456298828125,37.9755859375,-106.705322265625,-537.091796875,38.7958984375,-187.611083984375,-537.66455078125,72.453125,-106.515258789063,-531.051513671875,72.8828125,-187.283203125,-532.1982421875,74.3359375,-185.239013671875,-533.15869140625,74.109375,-107.437744140625,-533.135375976563,434.619140625,96.055419921875,-224.27978515625,420.484375,100.126953125,-268.17822265625,433.125,96.8076171875,-222.5009765625,418.73828125,99.714111328125,-265.07275390625,386.849609375,62.546142578125,-210.3701171875,374.25,65.9794921875,-249.94384765625,417.03125,100.08154296875,-269.60986328125,
- 401.146484375,97.64990234375,-312.621337890625,386.58203125,60.5050048828125,-214.2080078125,393.923828125,49.2176513671875,-212.67041015625,355.615234375,61.3955078125,-289.64453125,391.224609375,51.888671875,-215.920166015625,363.4296875,49.3204345703125,-293.375244140625,433.51171875,78.9168701171875,-223.077392578125,419.037109375,81.0614013671875,-268.57568359375,399.865234375,79.041748046875,-311.97509765625,275.404296875,-114.74462890625,-507.30224609375,276.28515625,-105.846557617188,-508.521362304688,280.0546875,-115.80712890625,-507.470092773438,309.15625,-103.564086914063,-483.96337890625,288.59765625,-130.859375,-500.465576171875,310.353515625,-127.32373046875,-481.517456054688,309.419921875,-104.930419921875,-481.350219726563,309.640625,-127.869873046875,-484.39990234375,291.7421875,-184.658203125,-459.783203125,292.923828125,-183.320068359375,-457.743774414063,274.953125,-184.170532226563,-436.50146484375,276.015625,-144.1845703125,-500.5888671875,245.271484375,-185.6171875,-459.50390625,263.5,-185.7451171875,-481.554565429688,271.306640625,-144.4296875,-500.201416015625,261.162109375,-184.5439453125,-482.223266601563,-41.333984375,-103.566650390625,-593.142822265625,-37.154296875,-105.52978515625,-535.154174804688,-39.59375,-104.971435546875,-591.494873046875,-38.1640625,-104.481201171875,-532.7783203125,-79.8876953125,-103.242553710938,-589.895141601563,-72.763671875,-104.348022460938,-529.619262695313,-74.294921875,-105.1748046875,-531.769653320313,-81.486328125,-104.620361328125,-587.703735351563,-78.623046875,-183.04931640625,-559.1396484375,-74.794921875,-184.080810546875,-531.55712890625,-81.91015625,-127.02392578125,-588.380004882813,-39.26953125,-183.3916015625,-562.788452148438,-38.0234375,-184.649169921875,-535.062744140625,-40.025390625,-127.368408203125,-592.202758789063,-165.591796875,-106.328857421875,-569.014038085938,-147.2734375,-108.274658203125,-513.8408203125,-163.4921875,-107.7158203125,-567.854614257813,-147.4873046875,-107.140502929688,-511.274658203125,-202.4140625,-106.317260742188,-556.251708984375,
- -180.564453125,-107.502563476563,-499.74365234375,-182.6953125,-108.26318359375,-501.275512695313,-203.416015625,-107.70703125,-553.729248046875,-192.9619140625,-186.14013671875,-527.0068359375,-182.4814453125,-187.180297851563,-501.202392578125,-203.7919921875,-130.1123046875,-554.361938476563,-155.46484375,-186.140380859375,-540.306274414063,-147.494140625,-186.075927734375,-513.846557617188,-163.888671875,-130.115234375,-568.493774414063,-239.8046875,-184.012573242188,-465.900390625,-255.1943359375,-184.43310546875,-471.854614257813,-247.2314453125,-183.450805664063,-475.774169921875,-267.5478515625,-185.580810546875,-442.231689453125,-270.5146484375,-184.457275390625,-478.41943359375,-269.2763671875,-183.372314453125,-442.291870117188,-287.7021484375,-183.4384765625,-462.88720703125,-286.517578125,-184.684326171875,-465.000854492188,-269.65234375,-167.85888671875,-490.334594726563,-307.869140625,-127.4140625,-484.319458007813,-307.2333984375,-127.868896484375,-487.233032226563,-277.529296875,-127.48046875,-511.408447265625,-264.4541015625,-158.965454101563,-498.818481445313,-274.525390625,-126.978271484375,-511.456665039063,-255.884765625,-164.65478515625,-487.259765625,-371.634765625,-130.50439453125,-428.485717773438,-326.87890625,-187.384521484375,-392.792236328125,-348.572265625,-186.529541015625,-410.22509765625,-444.65234375,-129.614501953125,-278.44482421875,-400.15625,-106.7099609375,-261.00341796875,-488.25,-105.52978515625,-78.954833984375,-430.1494140625,-107.437744140625,-78.072021484375,-486.498046875,-106.87841796875,-80.3056640625,-427.77734375,-106.518920898438,-76.70556640625,-489.81640625,-105.710083007813,-42.83056640625,-429.271484375,-106.691284179688,-40.0029296875,-431.5986328125,-107.642333984375,-38.842041015625,-487.943359375,-107.0849609375,-41.215087890625,-431.646484375,-185.451904296875,-39.5,-429.9306640625,-187.625732421875,-40.80517578125,-428.9755859375,-187.28857421875,-76.96337890625,-430.212890625,-185.239013671875,-78.29931640625,-459.2626953125,-185.517578125,-40.44921875,
- -488.6689453125,-129.490478515625,-41.2548828125,-487.2265625,-129.278564453125,-80.28564453125,-457.8212890625,-185.302734375,-79.48388671875,-256.396484375,100.140625,-479.683837890625,-294.564453125,97.64990234375,-450.311645507813,-256.697265625,100.08154296875,-476.165649414063,-228.25390625,65.9288330078125,-438.73193359375,-252.7109375,99.714111328125,-478.923095703125,-216.994140625,96.055419921875,-504.232299804688,-214.90234375,96.8497314453125,-503.251953125,-191.904296875,62.5439453125,-461.270263671875,-261.2197265625,61.3955078125,-411.724609375,-195.96875,60.7034912109375,-459.496215820313,-195.85546875,49.2191162109375,-467.576416015625,-199.14453125,51.9140625,-463.79833984375,-266.8193359375,49.447265625,-418.55908203125,-215.5595703125,78.916748046875,-503.45166015625,-256.1845703125,81.0614013671875,-478.359252929688,-293.6259765625,79.041748046875,-449.226196289063,-426.75390625,-109.1640625,-153.037353515625,-484.6767578125,-107.204467773438,-158.0703125,-483.0546875,-108.605712890625,-156.2861328125,-424.359375,-108.12158203125,-154.02197265625,-480.8447265625,-106.97412109375,-196.708984375,-420.6796875,-108.081909179688,-188.702392578125,-422.8056640625,-108.9111328125,-190.2802734375,-478.6298828125,-108.356201171875,-198.27294921875,-479.3095703125,-130.76025390625,-198.64892578125,-450.142578125,-186.787109375,-194.781494140625,-422.6162109375,-187.819946289063,-190.568359375,-454.369140625,-187.027587890625,-155.3525390625,-426.6630859375,-188.2880859375,-153.708984375,-483.759765625,-131.003662109375,-156.67822265625,484.4375,-103.602294921875,-37.4482421875,426.33984375,-105.52978515625,-38.369140625,482.689453125,-104.971435546875,-36.119873046875,423.9453125,-104.388427734375,-39.49609375,486.005859375,-103.267578125,-73.572265625,425.484375,-104.414672851563,-76.198974609375,427.791015625,-105.1748046875,-77.58740234375,484.1328125,-104.620361328125,-75.210205078125,455.49609375,-183.04931640625,-77.13671875,427.6328125,-184.10400390625,-78.12939453125,484.87109375,-127.02392578125,-75.493408203125,
- 483.427734375,-127.368408203125,-36.466796875,454.0546875,-183.3916015625,-38.10205078125,426.443359375,-183.325927734375,-39.28662109375,484.98046875,-106.328735351563,-158.6865234375,427.0078125,-108.274658203125,-154.311767578125,483.345703125,-107.7158203125,-156.93017578125,424.572265625,-107.140869140625,-155.14404296875,481.5390625,-106.3173828125,-197.50537109375,421.41796875,-107.502075195313,-190.02978515625,423.421875,-108.26318359375,-191.72607421875,479.3359375,-107.70703125,-199.08984375,450.875,-186.14013671875,-195.4384765625,423.298828125,-187.18017578125,-191.53662109375,480.041015625,-130.1123046875,-199.300048828125,484.060546875,-130.115234375,-157.16015625,454.671875,-186.140380859375,-155.8330078125,427.068359375,-186.075927734375,-154.52490234375,402.970703125,-184.013061523438,-255.7158203125,412.484375,-184.43310546875,-269.198486328125,414.353515625,-183.451049804688,-260.521728515625,386.74609375,-185.581298828125,-288.375,422.57421875,-184.457275390625,-282.46728515625,387.2265625,-183.372314453125,-290.0380859375,411.6796875,-183.4384765625,-302.91015625,413.44140625,-184.684326171875,-301.2490234375,433.921875,-167.85888671875,-278.7373046875,437.3671875,-127.4140625,-317.27099609375,440.0390625,-127.868896484375,-315.94580078125,456.27734375,-127.48046875,-281.26171875,440.888671875,-158.965576171875,-271.63427734375,455.595703125,-126.978271484375,-278.335205078125,427.59765625,-164.65478515625,-266.1279296875,329.337890625,-108.65234375,-386.833251953125,373.87109375,-106.866088867188,-424.761596679688,371.1328125,-108.09619140625,-424.692993164063,328.404296875,-107.710571289063,-384.317749023438,398.37890625,-106.63232421875,-394.497680664063,350.91796875,-107.744873046875,-357.424072265625,353.390625,-108.663818359375,-357.884399414063,398.232421875,-108.10498046875,-392.081909179688,329.529296875,-186.46435546875,-386.7255859375,371.587890625,-130.50146484375,-425.275268554688,349.908203125,-186.529296875,-405.388793945313,398.6875,-130.50439453125,-392.685302734375,353.19921875,-187.379150390625,-357.936645507813,
- 375.373046875,-186.529541015625,-374.746215820313,243.140625,-106.7099609375,-461.019287109375,270.865234375,-129.614501953125,-499.94873046875,273.251953125,-105.491455078125,-438.087158203125,84.94140625,-105.490600585938,-590.260498046875,86.263671875,-106.87841796875,-588.20458984375,46.6396484375,-105.683227539063,-597.07421875,44.556640625,-107.0849609375,-595.364135742188,41.1328125,-185.517578125,-566.87841796875,44.66796875,-129.490478515625,-596.083129882813,80.326171875,-185.302734375,-560.135620117188,86.373046875,-129.278564453125,-588.9248046875,257.693359375,95.84375,-478.120849609375,217.001953125,98.090576171875,-503.7744140625,253.8828125,95.97021484375,-477.460327148438,228.60546875,61.6409912109375,-437.779296875,257.921875,95.602783203125,-474.632446289063,193.318359375,60.4229736328125,-459.661865234375,261.73828125,63.021484375,-412.291870117188,292.61328125,97.2071533203125,-448.658325195313,293.130859375,96.34130859375,-450.823364257813,260.283203125,60.1337890625,-412.722412109375,266.0625,49.298583984375,-417.753784179688,231.32421875,47.061279296875,-441.608642578125,263.671875,50.14501953125,-416.546142578125,232.732421875,46.4683837890625,-443.583740234375,292.90625,79.333740234375,-449.10791015625,255.673828125,76.8134765625,-478.103759765625,196.2265625,49.24609375,-466.146240234375,216.29296875,79.5078125,-502.488647460938,144.865234375,-109.1640625,-513.037475585938,163.837890625,-107.199096679688,-567.99658203125,161.6875,-108.605712890625,-566.863525390625,145.2421875,-108.225830078125,-510.415283203125,200.376953125,-106.973388671875,-554.899780273438,178.07421875,-107.98974609375,-498.547485351563,180.03515625,-108.9111328125,-500.162963867188,201.341796875,-108.356201171875,-552.376708984375,191.0390625,-186.787109375,-525.589477539063,180.267578125,-187.819946289063,-499.910766601563,201.873046875,-130.76025390625,-552.943969726563,153.81640625,-187.027587890625,-539.261962890625,145.53515625,-186.96240234375,-512.898559570313,162.23828125,-131.003662109375,-567.45166015625,
- -240.5029296875,-182.957275390625,-463.288330078125,-238.0390625,62.611328125,-546.088256835938,-235.0673828125,48.907958984375,-539.79443359375,0.576171875,79.109619140625,-558.351318359375,0.576171875,67.2137451171875,-509.54833984375,0.1826171875,52.5445556640625,-516.681640625,1.0859375,93.9541015625,-558.347534179688,0.8271484375,67.2083740234375,-607.142333984375,0.0400390625,52.556640625,-599.93212890625,-437.4404296875,49.3104248046875,-331.092529296875,-443.421875,63.0106201171875,-334.608154296875,-490.4052734375,51.54052734375,-49.12744140625,-497.6298828125,66.1676025390625,-49.801513671875,-448.8466796875,78.372802734375,-49.6865234375,-448.8466796875,93.049072265625,-50.109375,-400.0244140625,66.1829833984375,-49.79931640625,-407.2548828125,51.5406494140625,-49.12744140625,400.607421875,-182.957275390625,-257.0263671875,329.59375,-188.690307617188,-385.029418945313,350.560546875,-186.461669921875,-358.570678710938,473.505859375,48.908203125,-233.17724609375,480.337890625,62.604736328125,-234.53125,490.287109375,52.54736328125,0.0771484375,497.408203125,67.2099609375,0.53662109375,448.623046875,79.109375,0.41064453125,448.62109375,93.9541015625,0.92138671875,399.80859375,67.2098388671875,0.537353515625,406.93359375,52.5428466796875,0.0771484375,325.0703125,62.8497314453125,-485.281616210938,320.185546875,49.3106689453125,-480.170532226563,49.34765625,78.372802734375,-555.57666015625,44.02734375,66.18701171875,-507.059448242188,44.2255859375,51.5438232421875,-514.3408203125,49.767578125,93.049072265625,-555.529663085938,54.896484375,66.163330078125,-604.059814453125,53.3642578125,51.5460205078125,-596.967529296875,146.4375,-189.139892578125,-511.432373046875,177.69140625,-186.7333984375,-499.149291992188,-42.46875,-127.826904296875,-593.841918945313,-41.541015625,-184.64208984375,-563.474487304688,-76.533203125,-184.339111328125,-560.228881835938,-79.791015625,-127.522216796875,-590.435791015625,-72.49609375,-183.00146484375,-530.161254882813,-39.955078125,-183.3037109375,-533.178466796875,-166.6591796875,-130.5927734375,-569.4794921875,
- -149.4501953125,-187.533447265625,-513.245239257813,-157.83203125,-187.41015625,-540.413818359375,-202.2119140625,-130.591552734375,-556.8896484375,-191.177734375,-187.41064453125,-528.587768554688,-148.8798828125,-186.072509765625,-511.427001953125,-179.923828125,-186.072509765625,-500.4140625,-396.8115234375,-130.980712890625,-397.228393554688,-347.921875,-187.922607421875,-364.548828125,-371.53515625,-187.7998046875,-380.386352539063,-374.50390625,-130.98193359375,-427.707641601563,-350.595703125,-187.79931640625,-408.972778320313,-346.3447265625,-186.461669921875,-363.478271484375,-326.8564453125,-186.461669921875,-390.08349609375,-383.6435546875,-104.704956054688,-293.661376953125,-383.4912109375,-183.322998046875,-295.14990234375,-397.5439453125,-105.624389648438,-261.33349609375,-396.7548828125,-184.40576171875,-264.7470703125,-489.064453125,-129.76806640625,-78.163818359375,-490.3447265625,-129.957763671875,-43.5244140625,-458.703125,-186.58447265625,-77.322265625,-459.9833984375,-186.77587890625,-42.68701171875,-485.361328125,-131.467529296875,-159.1435546875,-455.0205078125,-188.283935546875,-157.629638671875,-451.263671875,-188.071044921875,-192.697509765625,-481.3984375,-131.253173828125,-196.541259765625,-421.2529296875,-186.7333984375,-188.25390625,-424.75,-186.94580078125,-155.62255859375,485.267578125,-127.826904296875,-38.5966796875,426.52734375,-184.7646484375,-41.4404296875,486.546875,-127.522216796875,-73.244140625,454.9375,-184.64208984375,-40.27978515625,456.216796875,-184.339111328125,-74.92724609375,424.623046875,-183.3037109375,-41.500244140625,425.8984375,-183.00146484375,-76.011962890625,485.689453125,-130.5927734375,-159.60888671875,482.111328125,-130.591552734375,-197.15478515625,451.9765625,-187.41064453125,-193.32177734375,426.9609375,-187.533447265625,-156.568115234375,455.349609375,-187.41015625,-158.10302734375,425.05859375,-186.072509765625,-156.4560546875,421.9140625,-186.072509765625,-189.246337890625,398.62890625,-130.98193359375,-395.657470703125,374.6484375,-187.79931640625,-377.013671875,
- 374.4765625,-130.980712890625,-424.698364257813,352.001953125,-187.7998046875,-404.26708984375,270.8125,-104.704956054688,-437.07177734375,272.220703125,-183.322998046875,-436.561889648438,242.828125,-105.624633789063,-458.406494140625,245.947265625,-184.40576171875,-456.810424804688,84.4296875,-129.76806640625,-591.139526367188,47.28125,-129.957763671875,-597.51708984375,78.3125,-186.58447265625,-561.387817382813,43.47265625,-186.77587890625,-567.38232421875,165.017578125,-131.467529296875,-568.408325195313,156.18359375,-188.283935546875,-539.343139648438,200.3359375,-131.253173828125,-555.482055664063,189.2890625,-188.071044921875,-527.182861328125,-125.26953125,187.666259765625,-542.06201171875,-179.619140625,186.88134765625,-522.385009765625,-123.962890625,187.622802734375,-539.616455078125,-178.7431640625,187.0029296875,-520.600463867188,-220.544921875,185.54736328125,-501.526611328125,-97.6064453125,153.667236328125,-497.346435546875,-197.0537109375,151.592529296875,-461.296752929688,-108.302734375,151.69140625,-494.155517578125,-83.2392578125,186.46630859375,-549.601684570313,-83.3720703125,186.393310546875,-551.99365234375,-42.689453125,185.10302734375,-557.78369140625,-42.421875,185.103759765625,-554.951049804688,-38.005859375,154.40234375,-512.037109375,-37.1611328125,145.973388671875,-509.796997070313,-37.8310546875,156.9091796875,-517.358520507813,-41.4140625,183.646484375,-556.4736328125,-41.4140625,169.456787109375,-556.4736328125,-37.4091796875,137.770629882813,-513.552001953125,-94.3662109375,140.695678710938,-504.289672851563,-161.8203125,138.012084960938,-480.997680664063,-38.697265625,138.165771484375,-515.484619140625,-42.5546875,167.981201171875,-556.367553710938,-74.8955078125,138.1796875,-510.841430664063,-82.701171875,168.118408203125,-550.740112304688,-123.5654296875,170.710205078125,-541.159912109375,-162.5458984375,137.870239257813,-483.585571289063,-178.533203125,167.90185546875,-521.54736328125,-219.83203125,166.029541015625,-501.015380859375,-174.439453125,156.919189453125,-507.028564453125,
- -199.5205078125,135.768310546875,-464.809326171875,142.830078125,185.31005859375,-536.30078125,86.6953125,188.314697265625,-551.125,142.751953125,185.2490234375,-533.466918945313,86.09375,188.168212890625,-548.646728515625,43.521484375,185.03173828125,-557.617553710938,97.30859375,154.344970703125,-499.588745117188,189.287109375,184.65380859375,-515.150390625,190.4375,184.573486328125,-517.0927734375,196.869140625,150.265625,-460.208740234375,87.23828125,150.98828125,-500.332397460938,38.537109375,148.768798828125,-506.877319335938,219.173828125,183.234619140625,-499.251953125,220.572265625,183.23388671875,-501.728759765625,220.865234375,181.77734375,-499.928344726563,201.4765625,155.040283203125,-465.7724609375,220.865234375,167.587646484375,-499.928344726563,199.88671875,136.14697265625,-462.447875976563,198.609375,144.945068359375,-459.508544921875,145.36328125,137.531127929688,-487.837646484375,77.29296875,139.40673828125,-507.029663085938,150.109375,137.029541015625,-489.081176757813,199.697265625,136.296630859375,-464.726318359375,219.873046875,166.112060546875,-500.490356445313,190.265625,166.3759765625,-515.77099609375,142.9140625,168.31640625,-534.832275390625,77.435546875,138.80029296875,-509.468627929688,86.431640625,169.30029296875,-549.927978515625,43.380859375,166.414794921875,-556.202514648438,81.609375,158.258056640625,-535.642211914063,39.32421875,136.153564453125,-514.889526367188,48.267578125,95.1358642578125,-556.67724609375,0.8359375,95.109375,-559.703735351563,42.310546875,67.646240234375,-506.046630859375,0.685546875,66.5595703125,-507.546264648438,42.44140625,65.015869140625,-505.387573242188,43.470703125,52.302001953125,-512.020141601563,0.830078125,76.7412109375,-558.348266601563,0.712890625,52.9638671875,-516.834228515625,47.033203125,75.684326171875,-555.829345703125,-452.013671875,-104.628173828125,-283.26904296875,-289.646484375,186.32763671875,-450.718505859375,-329.333984375,184.86572265625,-413.111083984375,-307.607421875,151.938720703125,-366.207275390625,-358.064453125,187.3916015625,-378.390869140625,
- -382.1591796875,186.63134765625,-343.0048828125,-261.2021484375,148.334716796875,-414.687866210938,-359.908203125,153.865234375,-288.6376953125,-400.697265625,186.7841796875,-308.84423828125,-320.103515625,150.7939453125,-348.123046875,-367.291015625,158.6015625,-291.11181640625,-402.466796875,185.32763671875,-308.475830078125,-402.466796875,171.137939453125,-308.475830078125,-363.9853515625,139.520141601563,-289.317138671875,-360.6552734375,148.39501953125,-287.763671875,-338.7666015625,139.633911132813,-332.960205078125,-297.5888671875,136.110717773438,-384.574096679688,-365.2255859375,139.846923828125,-291.2177734375,-401.9716796875,169.662353515625,-309.47705078125,-348.89453125,138.47802734375,-321.61962890625,-383.3916015625,168.375732421875,-343.1591796875,-359.8828125,170.03369140625,-377.989135742188,-300.43359375,136.133544921875,-385.703369140625,-330.353515625,166.003662109375,-413.711303710938,-290.56640625,167.710693359375,-451.802612304688,-318.0146484375,155.065185546875,-405.064208984375,-263.7265625,137.449462890625,-420.17626953125,-450.2685546875,185.03173828125,-43.66796875,-450.056640625,188.3388671875,-87.11572265625,-497.5556640625,154.05859375,-85.947265625,-448.7861328125,185.023681640625,-145.9072265625,-498.3193359375,149.24365234375,-44.0341796875,-489.15234375,150.553955078125,-215.23681640625,-441.673828125,184.611083984375,-196.318359375,-496.9404296875,149.673095703125,-149.15576171875,-493.4443359375,138.567626953125,-44.4111328125,-448.8466796875,166.414794921875,-43.66796875,-463.6904296875,158.258056640625,-85.283203125,-448.8642578125,169.23974609375,-87.34765625,-490.2529296875,138.829345703125,-86.75,-447.4267578125,168.4267578125,-145.755859375,-487.8955078125,137.15966796875,-163.3154296875,-440.431640625,166.3759765625,-196.4169921875,-432.7958984375,166.112060546875,-228.84716796875,-491.046875,138.3759765625,-148.16845703125,-472.3583984375,136.296630859375,-239.72705078125,-483.791015625,136.422119140625,-202.578369140625,-473.98046875,135.927001953125,-241.546630859375,
- -432.4921875,167.587646484375,-229.947265625,-485.158203125,147.55078125,-226.61279296875,-476.890625,144.934204101563,-242.04150390625,-470.7607421875,156.364501953125,-239.287841796875,-434.166015625,183.23388671875,-229.22412109375,-470.3359375,155.025146484375,-240.44921875,-432.4921875,181.77734375,-229.947265625,-283.45703125,65.8966064453125,-518.51025390625,-327.5185546875,62.2000732421875,-487.399169921875,-239.8310546875,59.822998046875,-545.731201171875,-237.294921875,49.834228515625,-541.296752929688,-280.6416015625,51.2230224609375,-514.731323242188,-322.4892578125,49.226318359375,-482.626831054688,-278.9404296875,50.6246337890625,-512.976806640625,-464.71484375,61.6724853515625,-287.3076171875,-481.7392578125,61.861572265625,-237.5859375,-444.7099609375,60.1337890625,-333.200927734375,-465.1953125,58.500732421875,-288.14306640625,-440.1064453125,50.14501953125,-330.985595703125,-460.2255859375,47.01025390625,-285.93994140625,-458.15625,46.4605712890625,-284.44482421875,-476.533203125,49.6923828125,-236.205078125,277.33203125,-104.628173828125,-505.91796875,400.345703125,186.32763671875,-307.751953125,373.49609375,184.8740234375,-355.48974609375,323.791015625,152.210693359375,-344.826416015625,346.5703125,187.293701171875,-391.685424804688,318.587890625,186.74755859375,-423.554809570313,358.81640625,148.949951171875,-292.658447265625,260.3515625,153.964599609375,-415.478637695313,289.681640625,186.7841796875,-449.9287109375,259.955078125,148.74267578125,-416.197265625,264.3671875,158.601318359375,-421.827758789063,289.75390625,185.32763671875,-451.734375,289.75390625,171.137939453125,-451.734375,261.744140625,139.67919921875,-419.0986328125,296.40234375,138.966796875,-385.699584960938,338.09375,136.12841796875,-331.554443359375,263.970703125,139.846923828125,-419.798950195313,290.60546875,169.662353515625,-451.01025390625,297.5859375,139.089721679688,-388.82470703125,318.767578125,168.375732421875,-424.807861328125,346.84765625,170.033203125,-393.543701171875,339.9921875,135.528564453125,-333.07568359375,
- 374.330078125,166.003662109375,-356.225219726563,401.62109375,167.710693359375,-308.38134765625,362.947265625,155.065185546875,-346.357421875,364.423828125,137.449462890625,-290.0234375,116.763671875,154.750732421875,-593.04248046875,48.22265625,148.768798828125,-605.49658203125,228.408203125,150.24658203125,-552.358642578125,140.40234375,150.498046875,-588.35986328125,94.470703125,139.427001953125,-593.0390625,239.220703125,156.364501953125,-534.784545898438,243.373046875,144.9580078125,-540.055419921875,240.2421875,155.025390625,-534.08935546875,242.19140625,135.927612304688,-537.358032226563,230.47265625,147.546630859375,-551.801513671875,206.78515625,136.421997070313,-556.331420898438,155.751953125,138.3759765625,-576.588623046875,240.033203125,136.296630859375,-536.22705078125,169.4296875,137.21435546875,-569.88916015625,93.6875,138.83544921875,-590.692138671875,87.234375,158.258056640625,-564.819946289063,47.435546875,136.153564453125,-597.484375,432.966796875,185.573974609375,-228.306640625,443.26953125,186.8173828125,-183.40771484375,495.17578125,154.20263671875,-150.691162109375,449.0859375,187.86279296875,-125.6513671875,481.703125,148.711669921875,-242.68115234375,497.59765625,151.3994140625,-62.058837890625,449.05859375,186.545654296875,-83.146728515625,497.458984375,152.03515625,-123.59912109375,490.607421875,155.639892578125,-41.7822265625,449.375,185.10302734375,-41.93505859375,495.080078125,147.592407226563,-34.56884765625,487.20703125,156.90625,-40.79345703125,447.953125,183.646484375,-40.7861328125,447.953125,169.456787109375,-40.7861328125,491.3515625,137.569091796875,-39.87255859375,448.0078125,167.154541015625,-40.78515625,488.556640625,137.289794921875,-41.01513671875,447.767578125,170.83740234375,-124.663818359375,491.287109375,140.74853515625,-128.568603515625,489.001953125,139.975341796875,-128.46044921875,485.30078125,138.003051757813,-190.0517578125,482.81640625,137.41259765625,-190.16552734375,442.07421875,167.90185546875,-182.76513671875,474.77734375,136.21435546875,-239.4169921875,456.291015625,156.919189453125,-187.27978515625,
- 432.185546875,166.029541015625,-227.8134765625,446.322265625,187.64404296875,-125.440185546875,446.58203125,186.349853515625,-83.34912109375,399.1171875,154.043212890625,-114.14599609375,441.10546875,186.91845703125,-182.98291015625,388.25,151.783447265625,-215.45263671875,398.337890625,152.043701171875,-120.42919921875,400.708984375,146.34765625,-34.48486328125,402.310546875,140.2548828125,-148.76220703125,403.1796875,154.383544921875,-41.5791015625,404.6171875,137.631103515625,-40.171875,408.666015625,156.906005859375,-40.79345703125,446.529296875,185.103759765625,-41.93505859375,407.650390625,137.314697265625,-40.840087890625,402.21484375,138.4755859375,-174.5205078125,426.99609375,156.919189453125,-182.31982421875,392.1328125,135.768310546875,-216.9013671875,464.125,65.9447021484375,-286.640625,445.109375,62.15576171875,-335.57763671875,480.419921875,59.822998046875,-236.35693359375,475.501953125,49.834228515625,-234.97412109375,460.255859375,51.2230224609375,-283.47705078125,439.275390625,49.226318359375,-331.86376953125,458.142578125,50.6246337890625,-282.2470703125,53.0390625,67.646240234375,-605.4404296875,0.9765625,66.5595703125,-609.116577148438,53.359375,65.015869140625,-606.050170898438,53.009765625,52.302001953125,-599.344116210938,0.95703125,53.314453125,-602.49169921875,-441.5478515625,139.41259765625,-327.551513671875,-437.6796875,158.59814453125,-325.87353515625,-443.361328125,146.161376953125,-328.670654296875,-403.244140625,186.784912109375,-310.10986328125,-441.6015625,156.212158203125,-328.922119140625,-384.298828125,186.487060546875,-344.540283203125,-360.08984375,187.29248046875,-380.066040039063,-436.2314453125,153.10400390625,-350.739990234375,-398.8818359375,153.375732421875,-407.785888671875,-440.3525390625,150.463134765625,-345.701904296875,-331.279296875,184.79638671875,-414.806884765625,-365.6298828125,150.781005859375,-447.078369140625,-371.0185546875,148.5986328125,-444.026611328125,-322.6357421875,150.064697265625,-489.591064453125,-381.8896484375,137.090087890625,-422.361694335938,
- -319.150390625,137.8955078125,-485.484008789063,-420.3193359375,138.402587890625,-366.610595703125,-339.7822265625,155.065185546875,-425.292114257813,-360.072265625,135.4990234375,-442.576416015625,-404.9814453125,138.81884765625,-386.210327148438,-438.744140625,139.846923828125,-327.750244140625,-391.0322265625,136.137451171875,-218.695556640625,-394.65234375,155.04248046875,-219.431640625,-387.7802734375,144.63330078125,-218.15283203125,-431.42578125,183.234619140625,-228.47021484375,-439.779296875,184.854248046875,-195.76025390625,-388.185546875,150.23095703125,-216.270263671875,-401.966796875,154.208984375,-107.043701171875,-400.279296875,150.80810546875,-104.71826171875,-402.7861328125,137.517333984375,-157.10888671875,-446.025390625,185.249267578125,-146.02587890625,-447.4658203125,188.146728515625,-87.048828125,-399.28515625,148.768798828125,-43.66796875,-405.2021484375,138.402587890625,-44.78369140625,-404.984375,137.065185546875,-162.7041015625,-433.974609375,158.258056640625,-85.283203125,-407.447265625,138.84814453125,-86.74462890625,-393.2021484375,136.296630859375,-217.958984375,-45.009765625,156.898193359375,-595.576904296875,-45.2177734375,137.888793945313,-599.478149414063,-45.9990234375,145.994873046875,-602.2080078125,-46.251953125,158.233642578125,-595.567626953125,-62.7978515625,151.582763671875,-604.13037109375,-88.1494140625,151.66162109375,-603.669067382813,-136.3720703125,154.3427734375,-588.600341796875,-244.798828125,151.12255859375,-544.180419921875,-246.083984375,148.227294921875,-545.26708984375,-196.0947265625,138.003173828125,-561.708984375,-137.9072265625,140.74853515625,-582.446411132813,-92.5322265625,138.11474609375,-593.380126953125,-240.1259765625,135.768310546875,-537.192016601563,-46.408203125,138.165771484375,-597.216552734375,-186.3642578125,156.919189453125,-534.242431640625,-195.6044921875,137.412719726563,-559.2705078125,-125.853515625,139.454833984375,-584.055541992188,-47.658203125,77.497802734375,-555.857666015625,0.0458984375,76.7720947265625,-558.415283203125,-52.306640625,54.071533203125,-599.755859375,
- -0.533203125,53.33740234375,-602.2548828125,-53.00390625,67.316162109375,-606.344116210938,-0.90625,66.05126953125,-608.959228515625,-1.162109375,68.681640625,-608.318359375,-0.404296875,96.31298828125,-559.122192382813,317.59765625,139.595581054688,-484.740356445313,315.18359375,158.595458984375,-481.670776367188,318.958984375,149.19677734375,-486.708251953125,291.529296875,186.784912109375,-452.091796875,320.361328125,186.5302734375,-425.20849609375,316.185546875,159.914794921875,-480.985473632813,336.060546875,153.242431640625,-476.890502929688,335.267578125,150.654541015625,-478.533203125,385.34375,153.194580078125,-424.332763671875,412.365234375,149.209228515625,-391.255615234375,351.2890625,138.394165039063,-454.147705078125,317.259765625,139.846923828125,-482.245361328125,365.337890625,138.80517578125,-435.821533203125,395.361328125,136.796508789063,-404.080322265625,409.548828125,135.498901367188,-378.046875,446.064453125,150.064697265625,-330.31591796875,387.853515625,155.065185546875,-362.561279296875,441.234375,137.8955078125,-327.93212890625,415.82421875,150.831298828125,-381.3505859375,375.587890625,184.818359375,-356.85107421875,348.921875,187.277587890625,-393.251708984375,279.96484375,46.4605712890625,-511.5908203125,237.630859375,49.6923828125,-541.1328125,240.232421875,61.861572265625,-545.84765625,281.919921875,47.0098876953125,-513.23486328125,320.728515625,50.14501953125,-482.781860351563,284.892578125,58.475341796875,-517.785888671875,323.99609375,60.1337890625,-486.708984375,-43.287109375,53.720947265625,-514.574340820313,-0.517578125,53.33740234375,-514.41162109375,-0.8125,66.05126953125,-507.706420898438,-42.310546875,67.316162109375,-505.337890625,-1.017578125,68.681640625,-508.347290039063,-448.8466796875,75.684326171875,-47.34912109375,-404.6689453125,53.314453125,-0.916259765625,-404.9091796875,52.302001953125,-48.56982421875,-398.0439453125,66.5595703125,-0.916259765625,-398.203125,65.015869140625,-48.226806640625,-398.8447265625,67.646240234375,-47.99951171875,-449.82421875,95.161865234375,-48.50537109375,
- -447.4912109375,95.109619140625,-0.916259765625,-492.9912109375,53.314453125,-0.916259765625,-492.7509765625,52.302001953125,-48.56982421875,-499.6162109375,66.5595703125,-0.916259765625,-499.4560546875,65.015869140625,-48.226806640625,-498.8154296875,67.646240234375,-47.99951171875,448.615234375,76.782470703125,-0.328125,403.77734375,54.071533203125,-47.080078125,404.681640625,53.33740234375,-0.69384765625,397.154296875,67.316162109375,-47.080078125,397.978515625,66.05126953125,-1.029052734375,398.619140625,68.681640625,-1.26025390625,449.44140625,96.1856689453125,-0.67041015625,492.09765625,54.071533203125,-47.080078125,492.52734375,53.33740234375,-0.69384765625,498.724609375,67.316162109375,-47.080078125,499.23046875,66.05126953125,-1.029052734375,498.58984375,68.681640625,-1.26025390625,-406.724609375,53.7265625,0,-231.712890625,53.59130859375,-444.27734375,-490.44921875,53.7265625,0,-279.3447265625,53.59130859375,-513.133422851563,-490.693359375,140.325439453125,-91.5888671875,-406.96875,140.325439453125,-91.5888671875,-484.3984375,140.325439453125,-188.251953125,-401.75,140.325439453125,-174.87939453125,-459.5966796875,49.5048828125,-281.77001953125,-381.18359375,49.5048828125,-252.42626953125,-415.052734375,142.378173828125,-371.566040039063,-344.2451171875,142.378173828125,-326.886962890625,-354.392578125,140.325439453125,-449.1591796875,-293.9462890625,140.325439453125,-391.228637695313,-293.9462890625,52.365234375,-391.228637695313,-344.2451171875,52.365234375,-326.886962890625,-401.75,52.365234375,-174.87939453125,-406.96875,52.365234375,-91.5888671875,-490.693359375,52.365234375,-91.5888671875,-484.3984375,52.365234375,-188.251953125,-415.052734375,52.365234375,-371.566040039063,-354.392578125,52.365234375,-449.1591796875,-231.712890625,-80.247314453125,-444.27734375,-293.9462890625,-80.247314453125,-391.228637695313,-344.2451171875,-80.247314453125,-326.886962890625,-381.18359375,-80.247314453125,-252.42626953125,-401.75,-80.247314453125,-174.87939453125,-406.96875,-80.247314453125,-91.5888671875,-406.724609375,-80.247314453125,0,
- -438.328125,52.365234375,-330.4033203125,-363.5478515625,52.365234375,-292.75390625,-363.5478515625,-80.247314453125,-292.75390625,-474.5302734375,52.365234375,-234.79248046875,-393.5654296875,52.365234375,-213.471435546875,-406.96875,52.365234375,-49.060302734375,-490.693359375,52.365234375,-49.060302734375,-406.96875,-80.247314453125,-49.060302734375,-321.650390625,52.365234375,-480.31298828125,-266.7939453125,52.365234375,-417.06201171875,-321.650390625,140.325439453125,-480.31298828125,-266.7939453125,140.325439453125,-417.06201171875,-266.7939453125,-80.247314453125,-417.06201171875,-474.5302734375,137.759521484375,-234.79248046875,-393.5654296875,137.759521484375,-213.471435546875,-393.5654296875,-80.247314453125,-213.471435546875,-436.9736328125,140.325439453125,-333.074462890625,-362.423828125,140.325439453125,-294.968994140625,-406.96875,138.272705078125,-49.060302734375,-490.693359375,138.272705078125,-49.060302734375,-190.5322265625,140.119384765625,-561.843627929688,-158.068359375,140.119384765625,-484.668701171875,-107.41015625,140.325439453125,-588.383911132813,-89.142578125,140.325439453125,-506.676391601563,0.224609375,53.7265625,-600.19482421875,0.109375,53.7265625,-516.470336914063,-82.380859375,52.365234375,-508.128295898438,-160.3154296875,52.365234375,-483.715698242188,-193.2412109375,52.365234375,-560.6943359375,-99.25390625,52.365234375,-590.134765625,0.109375,-80.247314453125,-516.470336914063,-82.380859375,-80.247314453125,-508.128295898438,-160.3154296875,-80.247314453125,-483.715698242188,-52.244140625,54.69287109375,-597.451049804688,-43.3984375,54.69287109375,-514.195068359375,-41.2265625,-80.247314453125,-514.420043945313,-194.890625,52.365234375,-466.952392578125,-234.9365234375,52.365234375,-540.478515625,-194.890625,-80.247314453125,-466.952392578125,-52.244140625,140.325439453125,-597.451049804688,-43.3984375,140.325439453125,-514.195068359375,-43.3984375,-80.247314453125,-514.195068359375,-194.890625,138.579833984375,-466.952392578125,-234.9365234375,138.579833984375,-540.478515625,
- -294.2216796875,171.75048828125,-448.6875,-324.16796875,171.75048828125,-420.193969726563,-379.6474609375,173.80322265625,-349.2265625,-399.69921875,171.75048828125,-314.021728515625,-434.0478515625,169.1845703125,-224.1318359375,-443.0732421875,171.75048828125,-181.56591796875,-448.830078125,171.75048828125,-91.5888671875,-448.830078125,169.69775390625,-49.060302734375,-47.822265625,171.75048828125,-555.823120117188,-98.27734375,171.75048828125,-547.530151367188,-174.3017578125,171.54443359375,-523.256225585938,-214.9130859375,170.0048828125,-503.715454101563,-490.693359375,-80.247314453125,-49.060302734375,-474.5302734375,-80.247314453125,-234.79248046875,-321.650390625,-80.247314453125,-480.31298828125,-52.244140625,-80.247314453125,-597.451049804688,-49.625,-80.247314453125,-597.722412109375,-490.44921875,-80.247314453125,0,-279.3447265625,-80.247314453125,-513.133422851563,-234.9365234375,-80.247314453125,-540.478515625,0.224609375,-80.247314453125,-600.19482421875,-490.693359375,-80.247314453125,-91.5888671875,-484.3984375,-80.247314453125,-188.251953125,-459.5966796875,-80.247314453125,-281.77001953125,-438.345703125,-80.247314453125,-330.3720703125,-415.052734375,-80.247314453125,-371.566040039063,-354.392578125,-80.247314453125,-449.1591796875,-193.2412109375,-80.247314453125,-560.6943359375,-99.25390625,-80.247314453125,-590.134765625,0.166015625,78.086181640625,-558.332641601563,-47.822265625,81.120849609375,-555.823120117188,-448.587890625,78.086181640625,0,-448.830078125,76.724853515625,-49.060302734375,-408.533203125,51.35791015625,2.975341796875,-448.587890625,74.664794921875,2.975341796875,-488.6396484375,51.35791015625,2.975341796875,-488.6396484375,-76.825927734375,2.975341796875,-408.533203125,-76.825927734375,2.975341796875,380.03125,53.59130859375,-253.11669921875,458.390625,53.59130859375,-282.6025390625,99.083984375,140.325439453125,-589.985595703125,82.0859375,140.325439453125,-508.004638671875,193.0234375,140.325439453125,-560.40576171875,159.982421875,140.325439453125,-483.476440429688,277.720703125,49.5048828125,-513.638427734375,
- 230.21484375,49.5048828125,-444.696044921875,354.013671875,142.378173828125,-448.623657226563,293.4765625,142.378173828125,-390.784545898438,414.5546875,140.325439453125,-370.938842773438,343.681640625,140.325439453125,-326.36669921875,343.681640625,52.365234375,-326.36669921875,293.4765625,52.365234375,-390.784545898438,159.982421875,52.365234375,-483.476440429688,82.0859375,52.365234375,-508.004638671875,99.083984375,52.365234375,-589.985595703125,193.0234375,52.365234375,-560.40576171875,354.013671875,52.365234375,-448.623657226563,414.5546875,52.365234375,-370.938842773438,380.03125,-80.247314453125,-253.11669921875,343.681640625,-80.247314453125,-326.36669921875,293.4765625,-80.247314453125,-390.784545898438,230.21484375,-80.247314453125,-444.696044921875,159.982421875,-80.247314453125,-483.476440429688,82.0859375,-80.247314453125,-508.004638671875,319.732421875,52.365234375,-481.198852539063,265.052734375,52.365234375,-417.796508789063,265.052734375,-80.247314453125,-417.796508789063,235.7734375,52.365234375,-539.531982421875,195.431640625,52.365234375,-466.16748046875,44.134765625,52.365234375,-514.018676757813,53.318359375,52.365234375,-597.23828125,44.134765625,-80.247314453125,-514.018676757813,436.826171875,52.365234375,-331.61181640625,362.1484375,52.365234375,-293.75634765625,436.826171875,140.325439453125,-331.61181640625,362.1484375,140.325439453125,-293.75634765625,362.1484375,-80.247314453125,-293.75634765625,235.7734375,137.759521484375,-539.531982421875,195.431640625,137.759521484375,-466.16748046875,195.431640625,-80.247314453125,-466.16748046875,321.99609375,140.325439453125,-479.235717773438,266.927734375,140.325439453125,-416.168701171875,44.134765625,138.272705078125,-514.018676757813,53.318359375,138.272705078125,-597.23828125,484.078125,140.119384765625,-184.62158203125,401.33203125,140.119384765625,-171.868896484375,489.80078125,140.325439453125,-98.56640625,406.076171875,140.325439453125,-98.56640625,490.466796875,53.7265625,0,406.7421875,53.7265625,0,406.076171875,52.365234375,-90.91259765625,
- 400.953125,52.365234375,-174.27978515625,483.623046875,52.365234375,-187.52880859375,489.80078125,52.365234375,-90.91259765625,406.7421875,-80.247314453125,0,406.076171875,-80.247314453125,-90.91259765625,400.953125,-80.247314453125,-174.27978515625,489.80078125,54.69287109375,-47.24755859375,406.076171875,54.69287109375,-47.24755859375,406.076171875,-80.247314453125,-44.83056640625,393.087890625,52.365234375,-211.8896484375,474.134765625,52.365234375,-232.884765625,393.087890625,-80.247314453125,-211.8896484375,489.80078125,140.325439453125,-47.24755859375,406.076171875,140.325439453125,-47.24755859375,406.076171875,-80.247314453125,-47.24755859375,393.087890625,138.579833984375,-211.8896484375,474.134765625,138.579833984375,-232.884765625,399.486328125,171.75048828125,-312.68408203125,379.1171875,171.75048828125,-348.65283203125,323.744140625,173.80322265625,-419.7041015625,294.4609375,171.75048828125,-447.7021484375,215.603515625,169.1845703125,-502.849731445313,176.501953125,171.75048828125,-521.941040039063,90.583984375,171.75048828125,-548.9951171875,48.7265625,169.69775390625,-555.628540039063,447.9375,171.75048828125,-47.24755859375,447.9375,171.75048828125,-98.56640625,442.705078125,171.54443359375,-178.2451171875,433.611328125,170.0048828125,-222.38720703125,53.318359375,-80.247314453125,-597.23828125,235.7734375,-80.247314453125,-539.531982421875,436.826171875,-80.247314453125,-331.61181640625,489.80078125,-80.247314453125,-47.24755859375,489.80078125,-80.247314453125,-44.83056640625,458.390625,-80.247314453125,-282.6025390625,474.134765625,-80.247314453125,-232.884765625,490.466796875,-80.247314453125,0,99.083984375,-80.247314453125,-589.985595703125,193.0234375,-80.247314453125,-560.40576171875,277.720703125,-80.247314453125,-513.638427734375,319.70703125,-80.247314453125,-481.221557617188,354.013671875,-80.247314453125,-448.623657226563,414.5546875,-80.247314453125,-370.938842773438,483.623046875,-80.247314453125,-187.52880859375,489.80078125,-80.247314453125,-90.91259765625,448.60546875,78.086181640625,0,
- 447.9375,81.120849609375,-47.24755859375,48.7265625,76.724853515625,-555.628540039063,408.130859375,51.90869140625,2.06396484375,408.130859375,-77.621337890625,2.06396484375,489.078125,-77.621337890625,2.06396484375,489.078125,51.90869140625,2.06396484375,448.60546875,75.460205078125,2.06396484375
- }
- PolygonVertexIndex: *7160 {
- a: 0,1,-3,1,0,-4,4,5,-7,5,4,-8,8,9,-11,9,8,-12,12,13,-15,13,12,-16,16,17,-19,19,18,-18,18,19,-21,21,22,-24,24,23,-23,23,24,-26,26,27,-29,27,26,-30,29,26,-31,31,32,-34,32,31,-35,34,31,-36,36,37,-39,37,39,-39,39,40,-39,38,40,-42,41,40,-1,0,40,-4,3,40,-43,40,39,-43,42,1,-4,37,43,-40,43,37,-45,45,42,-40,43,45,-40,1,42,-47,45,47,-43,42,47,-47,48,45,-44,48,47,-46,46,49,-2,48,43,-51,46,51,-50,51,46,-48,52,1,-50,51,52,-50,1,52,-3,47,48,-54,53,48,-51,47,54,-52,54,47,-54,55,52,-52,54,55,-52,2,52,-57,56,0,-3,57,52,-56,52,57,-57,0,56,-59,58,41,-1,58,38,-42,38,58,-37,56,36,-59,36,56,-58,55,59,-58,59,36,-58,60,55,-55,59,55,-61,61,60,-55,36,59,-63,62,37,-37,37,62,-45,62,63,-45,62,64,-64,64,62,-66,59,65,-63,66,64,-66,67,59,-61,67,60,-62,66,65,-69,68,69,-67,65,59,-71,65,70,-69,59,67,-71,69,68,-72,68,70,-72,71,72,-70,73,72,-72,70,73,-72,74,72,-74,17,74,-74,75,17,-74,73,70,-76,17,75,-20,75,70,-77,75,76,-20,67,76,-71,76,20,-20,67,77,-77,20,76,-78,77,67,-62,77,78,-21,78,18,-21,79,77,-62,77,79,-79,18,78,-81,79,80,-79,16,18,-81,79,61,-82,61,54,-82,53,81,-55,80,82,-17,82,17,-17,17,82,-75,74,82,-84,80,83,-83,74,83,-73,83,80,-85,83,84,-73,84,80,-80,84,79,-82,72,84,-86,85,69,-73,86,85,-85,69,85,-87,84,81,-88,87,86,-85,69,86,-89,88,86,-88,69,88,-67,88,64,-67,89,87,-82,87,89,-89,89,81,-54,89,53,-51,90,64,-89,90,88,-90,90,89,-51,90,63,-65,43,90,-51,63,90,-45,43,44,-91,22,21,-92,92,91,-22,91,92,-94,91,93,-95,95,92,-22,93,92,-96,95,21,-24,25,95,-24,93,96,-95,94,96,-98,97,98,-95,96,93,-100,97,96,-100,93,95,-100,98,97,-101,100,97,-100,101,98,-101,98,101,-103,99,103,-101,101,100,-104,101,104,-103,104,105,-103,106,101,-104,104,101,-107,107,103,-100,99,95,-108,106,103,-109,103,107,-109,109,104,-107,107,95,-111,95,25,-111,106,111,-110,106,108,-112,112,110,-26,112,107,-111,25,113,-113,113,25,-25,107,112,-115,115,113,-25,112,116,-115,116,112,-114,114,117,-108,116,117,-115,108,107,-118,116,113,-119,118,113,-116,117,116,-120,118,119,-117,120,108,-118,111,108,-121,119,121,-118,120,117,-122,119,118,-123,122,123,-120,121,119,-124,124,122,-119,
- 124,123,-123,125,118,-116,24,125,-116,125,24,-23,22,91,-126,94,125,-92,118,125,-127,126,125,-95,124,118,-127,126,94,-99,98,124,-127,124,98,-103,102,127,-125,123,124,-128,127,102,-106,128,127,-106,123,127,-129,128,129,-124,121,123,-130,129,128,-131,130,128,-132,131,132,-131,133,130,-133,129,130,-134,132,134,-134,133,135,-130,135,133,-135,129,136,-122,136,129,-136,121,136,-121,134,137,-136,136,135,-138,137,134,-139,138,134,-140,137,140,-137,139,141,-139,141,139,-143,141,142,-6,138,143,-138,143,138,-142,5,143,-142,140,137,-144,143,5,-8,7,140,-144,4,140,-8,136,140,-145,144,120,-137,140,4,-146,145,144,-141,146,145,-5,146,144,-146,4,147,-147,147,4,-7,144,146,-149,148,146,-148,149,120,-145,148,149,-145,120,149,-112,150,149,-149,147,150,-149,149,151,-112,149,150,-152,111,151,-110,151,152,-110,151,150,-153,109,152,-105,105,104,-153,152,128,-106,128,152,-132,152,132,-132,153,152,-151,132,152,-154,147,153,-151,153,134,-133,153,139,-135,154,153,-148,153,154,-140,6,154,-148,142,139,-155,5,154,-7,142,154,-6,155,156,-158,156,158,-158,159,157,-159,159,160,-158,159,9,-161,9,159,-11,10,159,-162,159,158,-162,161,8,-11,156,162,-159,162,156,-164,164,161,-159,162,164,-159,8,161,-166,166,161,-165,161,166,-166,167,164,-163,167,166,-165,165,168,-9,167,162,-170,165,170,-169,170,165,-167,171,8,-169,171,168,-171,8,171,-12,167,172,-167,172,167,-170,166,173,-171,173,166,-173,171,170,-175,170,173,-175,11,171,-176,175,9,-12,176,171,-175,171,176,-176,9,175,-178,177,160,-10,177,157,-161,157,177,-156,175,155,-178,155,175,-177,174,178,-177,178,155,-177,173,179,-175,178,174,-180,173,180,-180,155,178,-182,181,156,-156,156,181,-164,181,182,-164,181,183,-183,183,181,-185,178,184,-182,185,183,-185,186,178,-180,186,179,-181,184,178,-188,187,178,-187,188,185,-185,187,188,-185,188,189,-186,186,190,-188,190,188,-188,189,188,-192,188,190,-192,191,192,-190,191,193,-193,190,193,-192,194,192,-194,29,194,-194,193,195,-30,193,190,-196,29,195,-28,195,196,-28,195,190,-197,196,28,-28,190,186,-198,197,196,-191,180,197,-187,28,196,-199,197,198,-197,197,180,-200,198,197,
- -200,198,200,-29,200,26,-29,201,198,-200,198,201,-201,180,201,-200,26,200,-203,201,202,-201,202,30,-27,201,180,-204,173,203,-181,203,173,-173,202,204,-31,204,29,-31,29,204,-195,194,204,-206,202,205,-205,194,205,-193,205,202,-207,206,202,-202,205,207,-193,207,205,-207,192,207,-209,208,207,-207,208,189,-193,209,208,-207,189,208,-210,201,210,-207,210,209,-207,210,201,-204,211,189,-210,209,210,-212,189,211,-186,211,183,-186,212,210,-204,210,212,-212,212,203,-173,212,172,-170,211,213,-184,211,212,-214,213,212,-170,182,183,-214,162,213,-170,213,163,-183,162,163,-214,214,13,-216,13,214,-15,215,216,-215,14,214,-218,214,216,-219,214,218,-218,218,216,-220,217,12,-15,218,219,-221,12,217,-222,218,220,-223,223,222,-221,224,222,-224,218,225,-218,224,226,-223,226,224,-228,218,222,-229,218,228,-226,229,222,-227,228,222,-230,226,227,-231,227,231,-231,229,226,-233,226,230,-233,233,228,-230,232,233,-230,225,228,-235,234,228,-234,217,225,-236,235,225,-235,221,217,-236,235,234,-237,236,221,-236,237,234,-234,234,237,-237,221,236,-239,221,238,-13,239,12,-239,238,236,-240,12,239,-16,239,236,-241,236,237,-241,15,239,-242,241,13,-16,239,242,-242,242,239,-241,13,241,-244,243,215,-14,243,216,-216,241,244,-244,216,243,-245,244,241,-243,216,244,-246,242,245,-245,245,219,-217,245,242,-247,242,240,-247,219,245,-248,246,247,-246,247,248,-220,219,248,-221,223,220,-249,247,246,-250,247,249,-249,240,249,-247,249,223,-249,249,240,-251,240,237,-251,223,249,-252,250,251,-250,251,252,-224,224,223,-253,252,227,-225,227,252,-254,251,253,-253,253,231,-228,250,254,-252,231,253,-256,255,256,-232,253,251,-258,251,254,-258,258,253,-258,253,258,-256,254,258,-258,259,256,-256,258,259,-256,256,259,-261,34,260,-260,259,261,-35,259,258,-262,32,34,-262,261,262,-33,258,262,-262,262,33,-33,262,258,-264,258,254,-264,33,262,-265,263,264,-263,264,265,-34,265,31,-34,264,263,-267,31,265,-268,267,35,-32,264,268,-266,268,264,-267,268,267,-266,269,266,-264,254,269,-264,266,269,-269,250,269,-255,237,269,-251,269,237,-271,270,268,-270,233,270,-238,232,270,-234,232,271,-271,271,
- 268,-271,271,232,-231,268,271,-273,272,267,-269,230,273,-272,272,271,-274,230,231,-274,231,274,-274,273,274,-273,274,231,-257,275,272,-275,256,275,-275,275,276,-273,276,275,-257,276,267,-273,256,260,-277,276,277,-268,276,260,-278,267,277,-36,34,277,-261,277,34,-36,278,279,-281,278,280,-282,282,280,-280,280,282,-284,284,285,-287,286,287,-285,288,284,-288,284,288,-290,290,291,-293,292,293,-291,294,290,-294,290,294,-296,296,297,-299,298,299,-297,300,296,-300,296,300,-302,302,303,-305,304,305,-303,306,302,-306,302,306,-308,308,309,-311,310,311,-309,312,308,-312,308,312,-314,314,315,-317,316,317,-315,318,314,-318,314,318,-320,320,321,-323,322,323,-321,324,320,-324,320,324,-326,326,327,-329,328,329,-327,330,326,-330,326,330,-332,332,333,-335,333,332,-336,336,333,-336,333,336,-338,338,339,-341,339,338,-342,342,339,-342,339,342,-344,344,345,-347,345,344,-348,348,345,-348,345,348,-350,350,351,-353,352,353,-351,354,350,-354,350,354,-356,356,357,-359,358,359,-357,360,356,-360,356,360,-362,362,363,-365,365,364,-364,365,366,-365,366,365,-368,368,366,-368,366,368,-370,370,371,-373,373,372,-372,373,374,-373,374,373,-376,376,374,-376,374,376,-378,371,370,-379,371,378,-380,378,380,-380,381,382,-384,383,384,-382,384,383,-386,386,387,-389,389,388,-388,389,390,-389,390,389,-392,391,389,-388,392,391,-388,391,393,-391,393,394,-391,392,310,-392,310,392,-312,387,311,-393,311,387,-396,391,310,-397,396,393,-392,309,396,-311,309,393,-397,397,309,-309,394,393,-399,309,397,-400,400,399,-398,401,398,-394,393,309,-402,401,394,-399,402,309,-400,309,402,-402,399,400,-403,394,401,-403,403,402,-401,402,403,-395,404,405,-407,405,407,-407,407,408,-407,381,407,-383,408,407,-410,409,407,-382,408,409,-411,381,410,-410,410,381,-385,384,385,-411,411,410,-386,410,412,-409,410,411,-414,412,410,-414,413,411,-415,414,412,-414,412,414,-416,416,417,-419,419,418,-418,419,420,-419,420,419,-422,422,420,-422,420,422,-424,424,425,-427,427,426,-426,427,428,-427,428,427,-430,430,428,-430,428,430,-432,432,433,-435,435,434,-434,435,436,-435,436,435,-438,433,437,-436,437,
- 433,-439,439,438,-434,438,439,-342,341,338,-439,438,338,-438,440,436,-438,440,441,-437,442,437,-339,437,442,-441,338,340,-443,442,443,-441,440,443,-442,443,442,-341,441,443,-445,340,444,-444,444,445,-442,445,444,-447,446,444,-448,340,447,-445,447,340,-340,448,449,-451,451,450,-450,451,452,-451,453,451,-455,452,451,-456,451,453,-456,452,455,-457,453,456,-456,456,453,-458,457,458,-457,452,456,-460,460,456,-459,461,459,-457,456,460,-462,459,461,-463,461,460,-464,463,462,-462,464,465,-467,465,464,-468,467,464,-469,467,468,-470,469,468,-471,471,470,-469,470,472,-474,472,470,-475,474,470,-472,475,465,-477,465,475,-478,465,477,-467,478,479,-481,479,478,-482,481,478,-483,481,482,-484,483,482,-485,485,484,-483,484,486,-488,486,484,-489,488,484,-486,489,479,-491,479,489,-492,479,491,-481,492,493,-495,493,492,-496,495,496,-494,497,498,-496,496,495,-500,499,495,-499,496,499,-501,501,499,-499,502,500,-500,502,499,-502,364,501,-363,501,364,-503,503,500,-503,364,503,-503,500,503,-505,503,364,-367,504,503,-506,503,366,-506,505,366,-370,497,501,-499,497,363,-502,501,363,-363,506,492,-495,368,492,-507,504,368,-507,368,504,-506,368,505,-370,507,508,-510,508,507,-377,507,377,-377,510,405,-405,510,511,-406,415,511,-511,511,415,-412,411,415,-415,512,513,-515,513,512,-516,516,515,-513,516,517,-516,516,518,-518,518,516,-520,520,517,-519,517,520,-522,521,515,-518,515,521,-523,523,515,-523,515,523,-514,518,524,-521,524,518,-526,518,519,-526,514,513,-527,513,527,-527,527,513,-524,299,528,-530,528,299,-531,530,299,-299,531,530,-299,530,531,-529,531,532,-529,532,533,-529,533,532,-535,532,535,-535,535,532,-532,531,298,-537,535,531,-538,531,536,-538,537,538,-536,297,536,-299,536,539,-538,538,537,-540,539,536,-298,538,539,-541,297,540,-540,540,541,-539,541,540,-543,542,540,-544,297,543,-541,543,297,-297,544,545,-547,545,544,-548,545,547,-549,547,549,-549,548,549,-551,550,551,-549,551,550,-553,550,553,-553,553,550,-555,544,555,-557,555,544,-558,544,546,-558,558,559,-561,559,558,-562,561,558,-563,561,562,-564,563,562,-565,565,564,-563,564,566,-568,
- 566,564,-569,568,564,-566,559,569,-561,559,570,-570,570,559,-572,572,573,-575,573,572,-576,576,575,-573,575,576,-578,577,576,-579,579,578,-577,578,580,-582,580,578,-583,582,578,-580,573,583,-575,573,584,-584,584,573,-586,586,587,-589,587,586,-590,589,590,-588,589,591,-593,590,589,-594,593,589,-593,590,593,-595,592,595,-594,596,594,-594,596,593,-596,418,595,-417,595,418,-597,597,594,-597,418,597,-597,594,597,-599,597,418,-421,598,597,-600,420,599,-598,599,420,-424,417,592,-592,592,417,-596,595,417,-417,600,586,-589,422,586,-601,598,422,-601,422,598,-600,422,599,-424,601,602,-604,602,601,-605,604,605,-603,605,604,-607,607,605,-607,605,607,-609,609,610,-612,609,601,-611,610,601,-604,607,612,-609,607,613,-613,612,613,-615,460,462,-464,615,462,-461,462,615,-617,615,448,-617,448,615,-450,617,453,-455,617,458,-454,453,458,-458,618,431,-620,431,618,-429,428,618,-621,620,426,-429,426,620,-425,424,620,-622,424,622,-426,622,424,-624,623,424,-622,624,431,-431,431,624,-626,431,625,-620,353,626,-628,626,353,-629,352,628,-354,628,352,-630,628,629,-627,629,630,-627,352,631,-630,352,351,-632,632,630,-630,630,632,-634,630,633,-627,626,633,-635,629,635,-633,635,629,-632,635,636,-633,635,631,-638,631,351,-638,635,638,-637,637,638,-636,637,636,-639,636,637,-640,351,639,-638,639,640,-637,640,639,-642,642,641,-640,639,351,-643,641,642,-644,351,643,-643,643,351,-351,644,645,-647,645,644,-648,647,648,-646,649,648,-648,650,648,-650,648,650,-652,652,650,-654,650,652,-655,650,654,-652,644,655,-657,655,644,-658,657,644,-647,363,497,-366,365,497,-496,365,495,-659,658,367,-366,658,495,-493,492,367,-659,367,492,-369,404,406,-511,510,406,-409,412,510,-409,415,510,-413,535,538,-542,535,541,-535,659,534,-542,660,659,-542,661,662,-664,662,661,-665,665,664,-662,666,665,-662,667,668,-404,668,388,-404,390,403,-389,390,394,-404,669,670,-672,670,672,-672,673,671,-673,671,673,-675,417,591,-420,589,419,-592,675,419,-590,675,421,-420,675,589,-587,586,421,-676,421,586,-423,601,609,-605,676,604,-610,677,604,-677,677,606,-605,677,676,-614,613,606,-678,606,613,
- -608,448,450,-617,616,450,-453,616,452,-460,462,616,-460,678,679,-446,445,679,-435,436,445,-435,436,441,-446,680,681,-683,682,681,-684,684,682,-684,682,684,-686,632,636,-641,632,640,-634,686,633,-641,687,686,-641,688,689,-691,689,688,-692,692,691,-689,693,692,-689,656,647,-645,647,656,-695,695,647,-695,694,653,-696,647,695,-650,649,695,-654,653,650,-650,477,464,-467,696,464,-478,475,696,-478,696,468,-465,697,696,-476,475,476,-698,468,474,-472,476,698,-698,697,698,-697,473,698,-477,698,473,-473,468,696,-700,698,699,-697,474,468,-700,472,699,-699,699,472,-475,470,473,-470,469,473,-701,700,467,-470,476,700,-474,467,700,-702,700,476,-702,701,465,-468,465,701,-477,491,478,-481,702,478,-492,489,702,-492,702,482,-479,703,489,-491,704,702,-490,489,703,-705,482,702,-706,703,706,-705,702,704,-707,706,705,-703,703,487,-707,706,487,-487,488,706,-487,705,706,-489,488,482,-706,482,488,-486,481,490,-480,490,481,-708,490,707,-704,707,481,-484,708,703,-708,483,708,-708,703,708,-488,483,487,-709,484,487,-484,372,378,-371,378,372,-710,709,380,-379,709,372,-375,710,379,-381,380,709,-712,711,710,-381,709,374,-713,713,710,-712,709,713,-712,713,709,-713,710,713,-509,509,508,-714,713,507,-510,507,713,-713,712,374,-508,374,377,-508,371,379,-374,373,379,-715,710,714,-380,714,375,-374,710,715,-715,375,714,-716,715,710,-509,508,375,-716,375,508,-377,716,385,-384,385,716,-718,717,411,-386,718,717,-717,411,717,-720,717,718,-720,719,511,-412,511,719,-719,514,526,-513,720,512,-527,720,516,-513,526,527,-721,516,525,-520,525,516,-722,516,720,-722,721,524,-526,722,720,-528,722,721,-721,522,527,-524,527,522,-723,721,722,-724,522,723,-723,524,721,-724,723,522,-522,521,524,-724,524,521,-521,557,546,-546,557,545,-725,555,557,-725,548,724,-546,724,725,-556,556,555,-726,552,548,-552,726,556,-726,724,726,-726,556,726,-555,553,554,-727,724,548,-728,726,724,-728,548,552,-728,727,553,-727,553,727,-553,549,554,-551,554,549,-729,556,554,-729,547,728,-550,728,729,-557,728,547,-730,544,556,-730,729,547,-545,506,494,-494,493,500,-507,496,500,-494,504,506,-501,569,
- 558,-561,558,569,-731,730,562,-559,570,730,-570,562,568,-566,731,570,-572,568,562,-733,562,730,-733,732,566,-569,730,570,-734,733,732,-731,570,731,-734,566,732,-735,732,733,-735,733,731,-735,734,567,-567,731,567,-735,561,571,-560,571,561,-736,571,735,-732,735,561,-564,736,731,-736,735,563,-737,731,736,-568,736,563,-568,564,567,-564,583,572,-575,572,583,-738,737,576,-573,584,737,-584,576,582,-580,582,576,-739,576,737,-739,738,580,-583,580,738,-740,737,739,-739,739,581,-581,740,581,-740,740,584,-586,737,741,-740,741,740,-740,737,584,-742,584,740,-742,575,585,-574,585,575,-743,585,742,-741,742,575,-578,742,743,-741,742,577,-744,740,743,-582,743,577,-582,578,581,-578,612,605,-609,605,612,-745,614,744,-613,744,602,-606,744,614,-746,614,613,-746,676,745,-614,602,744,-747,744,745,-748,744,747,-747,745,676,-748,610,602,-747,746,747,-611,602,610,-604,611,610,-748,747,676,-612,611,676,-610,748,458,-618,458,748,-750,749,460,-459,749,748,-751,460,749,-752,750,751,-750,751,615,-461,615,751,-751,625,618,-620,618,625,-753,752,620,-619,624,752,-626,620,623,-622,429,624,-431,623,620,-754,620,752,-754,753,622,-624,752,624,-755,754,753,-753,624,429,-755,753,754,-756,429,755,-755,622,753,-756,755,429,-428,427,622,-756,622,427,-426,645,657,-647,657,645,-757,756,655,-658,648,756,-646,655,694,-657,654,648,-652,694,655,-758,655,756,-758,648,654,-759,756,648,-759,759,758,-655,759,756,-759,757,756,-760,757,759,-695,654,652,-760,694,759,-654,653,759,-653,600,588,-588,587,594,-601,590,594,-588,594,598,-601,760,761,-763,762,761,-764,761,764,-764,763,765,-763,763,764,-767,765,763,-767,292,764,-294,766,764,-293,766,767,-766,767,766,-293,765,768,-763,768,760,-763,769,760,-769,768,770,-770,770,768,-772,772,768,-766,768,772,-772,772,765,-774,765,767,-774,774,771,-773,772,773,-775,770,771,-776,771,774,-776,774,776,-776,774,777,-777,777,774,-774,767,778,-774,292,778,-768,777,773,-779,778,292,-780,779,292,-292,778,780,-778,776,777,-782,781,777,-781,780,782,-782,780,778,-783,781,782,-784,782,784,-784,779,785,-779,782,778,-786,784,782,-786,291,785,-780,
- 784,785,-787,787,291,-291,786,785,-789,788,787,-787,785,291,-790,789,788,-786,291,787,-790,787,788,-790,790,791,-793,793,792,-792,791,794,-794,329,793,-795,328,793,-330,793,795,-793,793,328,-796,795,796,-793,792,796,-791,797,790,-797,795,798,-797,328,799,-796,798,795,-800,799,328,-801,800,328,-328,327,799,-801,796,798,-802,801,797,-797,797,801,-803,802,801,-804,801,804,-804,804,801,-799,804,805,-804,804,806,-806,806,804,-808,798,807,-805,798,799,-808,807,799,-809,806,807,-809,799,809,-809,799,327,-810,806,808,-811,809,810,-809,810,811,-807,811,805,-807,805,811,-813,811,810,-813,812,810,-814,810,814,-814,810,809,-816,815,814,-811,327,815,-810,814,815,-817,817,327,-327,816,815,-819,818,817,-817,815,327,-820,819,818,-816,327,817,-820,817,818,-820,820,821,-360,358,820,-360,820,689,-692,358,822,-821,822,689,-821,822,358,-824,823,358,-358,822,823,-825,689,822,-825,824,823,-358,825,689,-825,824,357,-826,690,689,-826,357,690,-826,826,357,-357,357,826,-828,690,357,-828,828,827,-827,827,828,-691,688,690,-829,407,383,-383,383,407,-717,407,718,-717,718,407,-830,829,511,-719,829,407,-406,511,829,-406,830,282,-280,831,282,-831,282,831,-833,832,831,-834,834,832,-834,835,282,-833,835,283,-283,832,834,-837,837,836,-835,838,835,-833,838,832,-837,836,837,-840,839,837,-841,839,840,-842,842,839,-842,839,842,-844,836,839,-844,843,838,-837,844,838,-844,844,835,-839,844,843,-843,835,844,-846,845,283,-836,846,844,-843,847,842,-842,842,847,-847,848,846,-848,844,846,-849,849,848,-848,850,848,-850,851,845,-845,844,848,-852,848,850,-852,851,283,-846,851,850,-853,283,853,-281,851,852,-855,853,854,-853,283,851,-856,853,283,-856,854,855,-852,855,854,-854,856,288,-288,857,288,-857,288,857,-859,859,858,-858,860,288,-859,289,288,-861,858,859,-862,859,862,-862,858,863,-861,863,858,-862,860,864,-290,863,864,-861,289,865,-285,289,866,-866,865,866,-868,866,289,-869,868,867,-867,864,868,-290,868,869,-868,869,868,-871,864,870,-869,869,870,-872,870,872,-872,870,864,-874,864,863,-874,870,874,-873,870,873,-876,875,874,-871,863,875,-874,876,872,-875,874,875,
- -877,872,876,-878,875,863,-879,875,878,-877,863,861,-879,876,878,-880,861,879,-879,861,880,-880,861,862,-881,862,881,-881,880,882,-880,880,881,-883,883,882,-882,882,883,-878,876,882,-878,882,876,-880,529,300,-300,528,300,-530,300,528,-885,528,659,-885,659,528,-534,659,533,-535,885,300,-885,886,884,-660,884,886,-886,660,886,-660,301,300,-886,886,660,-888,301,543,-297,301,542,-544,887,888,-887,660,888,-888,885,886,-889,885,889,-302,889,885,-889,542,301,-891,889,890,-302,890,889,-889,888,660,-891,890,541,-543,541,890,-661,395,312,-312,387,312,-396,312,387,-892,387,668,-892,668,387,-387,668,386,-389,312,891,-893,893,891,-669,313,312,-893,667,893,-669,313,397,-309,313,400,-398,891,893,-895,892,891,-895,895,894,-894,893,667,-896,894,895,-897,667,896,-896,896,892,-895,896,667,-898,403,897,-668,897,403,-401,400,313,-898,892,896,-899,892,898,-314,897,898,-897,898,897,-314,451,617,-455,617,451,-749,451,750,-749,750,451,-900,899,615,-751,899,451,-450,615,899,-450,900,324,-324,901,324,-901,324,901,-903,902,901,-904,904,902,-904,905,324,-903,902,904,-907,325,324,-906,906,904,-908,908,902,-907,902,908,-906,906,907,-910,906,909,-909,909,907,-911,911,909,-911,912,909,-912,909,912,-909,905,908,-914,908,912,-914,913,914,-906,325,905,-915,915,913,-913,912,911,-916,915,911,-917,913,915,-918,917,915,-917,917,914,-914,916,918,-918,919,917,-919,914,917,-921,919,920,-918,920,325,-915,920,919,-922,325,922,-321,920,921,-924,922,923,-922,325,920,-925,922,325,-925,923,924,-921,924,923,-923,794,330,-330,791,330,-795,330,791,-926,925,791,-791,797,925,-791,330,925,-927,926,331,-331,925,797,-928,928,926,-926,925,927,-929,926,929,-332,929,926,-929,927,797,-931,797,802,-931,927,930,-932,930,802,-933,930,932,-932,803,932,-803,932,803,-806,933,932,-806,932,933,-932,927,931,-935,934,928,-928,933,934,-932,935,928,-935,935,934,-934,928,935,-937,928,936,-930,937,935,-934,938,936,-936,935,937,-939,938,929,-937,933,812,-938,812,933,-806,938,937,-813,938,812,-814,814,938,-814,929,938,-940,814,939,-939,939,331,-930,939,814,-817,331,817,-327,939,816,-941,817,
- 940,-817,331,939,-942,817,331,-942,940,941,-940,941,940,-818,942,336,-336,943,336,-943,336,943,-945,944,943,-946,946,336,-945,946,337,-337,945,947,-945,947,945,-949,944,949,-947,944,947,-950,948,950,-948,950,948,-952,947,950,-953,952,949,-948,950,951,-954,952,950,-954,953,951,-955,953,954,-956,956,953,-956,953,956,-953,956,949,-953,957,956,-956,956,957,-959,959,958,-958,949,956,-961,958,960,-957,958,959,-962,960,958,-962,960,962,-950,961,962,-961,949,962,-947,959,963,-962,962,961,-964,963,959,-965,962,965,-947,963,965,-963,946,965,-338,965,963,-338,963,964,-967,966,337,-964,964,967,-967,337,966,-968,337,967,-334,968,948,-946,948,968,-970,970,969,-969,971,970,-969,945,971,-969,971,945,-944,943,942,-972,942,972,-972,970,971,-973,335,332,-943,972,942,-333,972,973,-971,973,972,-333,970,973,-975,332,975,-974,974,976,-971,976,969,-971,975,332,-335,973,977,-975,977,973,-976,976,974,-979,955,977,-958,969,976,-980,978,979,-977,979,948,-970,951,948,-980,977,978,-975,978,977,-956,978,955,-955,979,978,-955,951,979,-955,980,957,-978,975,980,-978,980,959,-958,980,975,-982,959,980,-982,334,981,-976,959,981,-965,967,334,-334,964,981,-983,982,967,-965,981,334,-984,983,982,-982,334,967,-984,967,982,-984,439,342,-342,433,342,-440,342,433,-985,433,679,-985,679,433,-433,679,432,-435,985,342,-985,986,984,-680,984,986,-986,678,986,-680,985,343,-343,986,678,-988,343,447,-340,343,446,-448,987,988,-987,678,988,-988,988,985,-987,985,989,-344,988,989,-986,446,343,-991,989,990,-344,990,989,-989,988,678,-991,990,445,-447,445,990,-679,821,360,-360,820,360,-822,692,820,-692,360,820,-992,991,820,-693,360,991,-993,992,361,-361,991,692,-994,993,992,-992,994,993,-693,692,693,-995,993,995,-993,995,993,-995,992,995,-362,693,995,-995,995,693,-362,693,688,-829,828,361,-694,361,828,-827,361,826,-357,996,997,-999,997,996,-842,997,841,-841,837,999,-841,999,997,-841,997,999,-1001,1000,998,-998,998,1000,-997,1001,1000,-1000,837,1001,-1000,1001,837,-835,834,833,-1002,1002,1001,-834,1000,1001,-1004,1004,1001,-1003,1003,1001,-1005,1000,1003,-1006,1004,1005,-1004,
- 1000,1005,-997,1006,1004,-1003,833,1006,-1003,1006,833,-832,831,830,-1007,279,1006,-831,278,1006,-280,1004,1006,-1008,1006,278,-1008,1007,1008,-1005,1005,1004,-1009,1009,1007,-279,1009,1008,-1008,281,1009,-279,1005,1008,-1011,1009,1010,-1009,1011,1009,-282,1010,1009,-1012,853,281,-281,1010,1012,-1006,996,1005,-1013,853,1013,-282,1013,853,-853,281,1013,-1015,852,1014,-1014,1014,1011,-282,1011,1014,-1011,850,1014,-853,1015,1010,-1015,1014,850,-1016,1010,1015,-1013,1015,850,-850,847,1015,-850,1016,1012,-1016,1016,1015,-848,1012,1016,-997,841,1016,-848,1016,841,-997,1017,1018,-1020,1018,1017,-878,1018,877,-884,881,1020,-884,1020,1018,-884,862,1020,-882,1021,1020,-863,1018,1020,-1023,1021,1022,-1021,1022,1019,-1019,1023,1022,-1022,1024,1019,-1023,1022,1023,-1025,1024,1025,-1020,1017,1019,-1026,1026,1023,-1022,862,1026,-1022,1026,862,-860,857,1026,-860,1027,1026,-858,1027,1023,-1027,856,1027,-858,287,1027,-857,286,1027,-288,1027,286,-1024,286,1024,-1024,1024,286,-1029,285,1028,-287,1028,1029,-1025,1029,1028,-286,1029,1025,-1025,865,285,-285,1029,1030,-1026,1017,1025,-1031,865,1031,-286,1031,865,-868,1032,1029,-286,285,1031,-1033,867,1032,-1032,1030,1029,-1033,867,1030,-1033,1030,867,-870,1030,869,-872,872,1030,-872,1033,1030,-873,1030,1033,-1018,877,1033,-873,1033,877,-1018,1034,1035,-1037,1035,1034,-777,1034,775,-777,775,1034,-771,1037,770,-1035,1037,1034,-1037,1037,769,-771,1038,1037,-1037,1038,769,-1038,1036,1039,-1039,1040,769,-1039,1040,1038,-1040,769,1040,-761,1040,761,-761,1035,1039,-1037,761,1040,-1042,1039,1041,-1041,761,1041,-765,764,294,-294,294,764,-1042,294,1041,-1043,1041,1039,-1043,295,294,-1043,1042,1039,-1044,295,1042,-1044,1044,1043,-1040,295,787,-291,1039,1045,-1045,1039,1035,-1046,787,295,-1047,1047,1045,-1036,1035,776,-1048,1047,776,-782,1046,1048,-788,787,1048,-787,1048,1046,-1050,1049,786,-1049,295,1049,-1047,1049,295,-1044,1049,784,-787,1043,1050,-1050,784,1049,-1051,1050,1043,-1045,1050,1044,-1046,1045,1047,-1051,1050,1047,-782,784,1050,-784,781,783,-1051,307,1051,-303,307,1052,-1052,666,661,-1053,
- 1052,307,-667,1053,666,-308,666,1053,-1055,665,666,-1055,1055,1053,-308,307,306,-1056,1053,1056,-1055,1056,1053,-1056,1054,1056,-666,1056,1055,-1058,1057,665,-1057,306,1057,-1056,1057,1058,-666,306,1058,-1058,665,1058,-665,1058,306,-306,1059,1060,-1062,1060,1059,-912,1060,911,-911,907,1062,-911,1062,1060,-911,907,904,-1063,1062,904,-1064,1060,1062,-1065,1063,1064,-1063,1060,1064,-1062,1064,1063,-1066,1065,1061,-1065,1061,1065,-1067,1066,1059,-1062,1063,1067,-1066,1068,1066,-1066,1065,1067,-1069,1059,1066,-1070,1068,1069,-1067,1069,1070,-1060,1070,911,-1060,911,1070,-917,1070,1071,-917,1070,1069,-1072,916,1071,-919,1071,919,-919,1072,1071,-1070,1069,1068,-1073,1073,919,-1072,1071,1072,-1074,919,1073,-922,1074,1072,-1069,921,1073,-1076,1075,922,-922,1076,1073,-1073,1072,1074,-1077,321,1075,-1074,1073,1076,-322,922,1075,-322,1076,1074,-322,922,321,-321,321,1074,-323,1074,1068,-1078,1077,322,-1075,1067,1077,-1069,322,1077,-1079,1067,1078,-1078,322,1078,-324,323,1078,-901,901,900,-1079,1078,1067,-1080,1067,1063,-1080,1078,1079,-902,903,901,-1080,904,1079,-1064,1079,904,-904,355,643,-351,355,641,-644,641,355,-1081,1080,640,-642,640,1080,-688,1081,1080,-356,1082,1081,-356,1080,1081,-1084,1082,1083,-1082,1083,687,-1081,1082,355,-355,687,1083,-1085,1083,1082,-1086,1085,1084,-1084,1085,1082,-355,1086,687,-1085,1084,1085,-1087,687,1086,-687,1086,1085,-687,354,686,-1086,627,354,-354,626,354,-628,626,686,-355,686,626,-635,686,634,-634,661,663,-1053,1087,1052,-664,1051,1052,-1088,303,1051,-1088,663,303,-1088,1051,303,-303,303,663,-1089,663,662,-1089,1089,303,-1089,1088,662,-1090,1089,1090,-304,303,1090,-305,1091,1090,-1090,1091,304,-1091,662,1091,-1090,304,1091,-1059,662,1058,-1092,304,1058,-306,662,664,-1059,1092,315,-315,671,674,-1093,315,1092,-675,674,1093,-316,1093,674,-1095,674,673,-1095,1095,315,-1094,315,1095,-317,1096,1093,-1095,1093,1096,-1096,1096,1094,-674,1095,1096,-1098,673,1097,-1097,1097,316,-1096,1097,673,-1099,1098,316,-1098,1098,673,-673,316,1098,-1100,317,316,-1100,1099,1098,-318,319,1092,-315,1092,669,-672,1092,
- 319,-670,1100,669,-320,669,1100,-1102,1101,670,-670,1102,1100,-320,319,318,-1103,1100,1103,-1102,1102,1103,-1101,670,1101,-1104,1102,1104,-1104,1104,670,-1104,318,1104,-1103,670,1104,-1099,318,1098,-1105,672,670,-1099,1098,318,-318,1105,346,-346,682,685,-1106,346,1105,-686,685,1106,-347,1106,685,-1108,684,1107,-686,1106,1108,-347,344,346,-1109,1106,1107,-1110,1109,1108,-1107,1109,1107,-685,1108,1110,-345,1110,1108,-1110,684,1110,-1110,1110,347,-345,347,1110,-1112,1111,1110,-685,684,683,-1112,349,1105,-346,680,682,-1106,1105,349,-681,1112,680,-350,680,1112,-1114,1113,681,-681,1114,1112,-350,1114,349,-349,1113,1112,-1116,1115,1112,-1115,1113,1115,-682,1115,1114,-1117,1116,681,-1116,1116,1114,-349,1116,1111,-682,348,1111,-1117,681,1111,-684,1111,348,-348,1130,1131,1155,-1158,1128,1132,1131,-1131,1124,1133,1150,-1161,1122,1134,1133,-1125,1121,1135,1152,-1166,1123,1136,1135,-1122,1127,1137,1146,-1163,1129,1138,1137,-1128,1139,1118,1155,-1159,1131,1132,1141,-1141,1132,1147,1148,-1142,1142,1126,1150,-1162,1133,1134,1144,-1144,1145,1153,1151,-1118,1223,1224,1225,1226,-1228,1122,1196,1197,-1165,1124,1195,1196,-1123,1126,1125,1149,-1151,1128,1192,1193,-1164,1130,1191,1192,-1129,1120,1154,1155,-1119,1148,1147,1126,-1143,1147,1146,1125,-1127,1150,1149,1159,1194,-1161,1221,1222,1152,-1120,1155,1154,1156,1190,-1158,1156,1154,1138,-1130,1158,1155,1131,-1141,1157,1190,1191,-1131,1159,1149,1136,-1124,1161,1150,1133,-1144,1160,1194,1195,-1125,1163,1193,1162,1146,-1148,1163,1147,1132,-1129,1164,1197,1165,1152,1222,-1152,1164,1151,1134,-1123,1151,1153,1144,-1135,1169,1172,1180,-1187,1167,1173,1172,-1170,1166,1174,1183,-1190,1168,1175,1174,-1167,1181,1176,1171,1180,-1188,1172,1173,1178,-1178,1139,1184,1182,-1119,1167,1200,1201,-1189,1169,1199,1200,-1168,1171,1219,1220,-1181,1180,1220,1179,1185,1198,-1187,1182,1183,1120,-1119,1185,1179,1175,-1169,1187,1180,1172,-1178,1186,1198,1199,-1170,1188,1201,1189,1183,-1183,1188,1182,1173,-1168,1182,1184,1178,-1174,1191,1190,1156,-1130,1192,1191,1129,-1128,1193,1192,1127,-1163,1195,1194,1159,-1124,
- 1196,1195,1123,-1122,1197,1196,1121,-1166,1199,1198,1185,-1169,1200,1199,1168,-1167,1201,1200,1166,-1190,1202,1207,1119,-1153,1211,1202,1152,-1136,1203,1212,1136,-1150,1213,1203,1149,-1126,1204,1216,1138,-1155,1208,1204,1154,-1121,1205,1218,1175,-1180,1206,1205,-1180,1170,1210,1206,-1180,1209,1208,1120,-1184,1217,1209,1183,-1175,1212,1211,1135,-1137,1214,1213,1125,-1147,1215,1214,1146,-1138,1216,1215,1137,-1139,1218,1217,1174,-1176,1153,1145,1207,-1203,1144,1153,1202,-1212,1143,1144,1211,-1213,1161,1143,1212,-1204,1142,1161,1203,-1214,1148,1142,1213,-1215,1148,1214,1215,-1142,1140,1141,1215,-1217,1158,1140,1216,-1205,1139,1158,1204,-1209,1139,1208,1209,-1185,1206,1210,1176,-1182,1205,1206,1181,-1188,1218,1205,1187,-1178,1217,1218,1177,-1179,1209,1217,1178,-1185,1220,1219,1170,-1180,1151,1222,1221,-1118,1117,1221,1224,-1224,1221,1119,1225,-1225,1119,1207,1226,-1226,1207,1145,1227,-1227,1145,1117,1223,-1228,1239,1240,1263,-1266,1237,1241,1240,-1240,1233,1242,1258,-1269,1231,1243,1242,-1234,1230,1244,1260,-1274,1232,1245,1244,-1231,1236,1246,1254,-1271,1238,1247,1246,-1237,1248,1228,1263,-1267,1240,1241,1250,-1250,1241,1255,1256,-1251,1251,1235,1258,-1270,1242,1243,1253,-1253,1176,1261,1259,-1172,1231,1304,1305,-1273,1233,1303,1304,-1232,1235,1234,1257,-1259,1237,1300,1301,-1272,1239,1299,1300,-1238,1229,1262,1263,-1229,1256,1255,1235,-1252,1255,1254,1234,-1236,1258,1257,1267,1302,-1269,1219,1328,1260,-1171,1263,1262,1264,1298,-1266,1264,1262,1247,-1239,1266,1263,1240,-1250,1265,1298,1299,-1240,1267,1257,1245,-1233,1269,1258,1242,-1253,1268,1302,1303,-1234,1271,1301,1270,1254,-1256,1271,1255,1241,-1238,1272,1305,1273,1260,1328,-1260,1272,1259,1243,-1232,1259,1261,1253,-1244,1277,1280,1288,-1295,1275,1281,1280,-1278,1274,1282,1291,-1298,1276,1283,1282,-1275,1289,1284,1279,1288,-1296,1280,1281,1286,-1286,1248,1292,1290,-1229,1275,1308,1309,-1297,1277,1307,1308,-1276,1279,1326,1327,-1289,1288,1327,1287,1293,1306,-1295,1290,1291,1229,-1229,1293,1287,1283,-1277,1295,1288,1280,-1286,1294,1306,1307,-1278,1296,1309,1297,1291,
- -1291,1296,1290,1281,-1276,1290,1292,1286,-1282,1329,1330,1331,1332,-1334,1299,1298,1264,-1239,1300,1299,1238,-1237,1301,1300,1236,-1271,1303,1302,1267,-1233,1304,1303,1232,-1231,1305,1304,1230,-1274,1307,1306,1293,-1277,1308,1307,1276,-1275,1309,1308,1274,-1298,1310,1210,1170,-1261,1318,1310,1260,-1245,1311,1319,1245,-1258,1320,1311,1257,-1235,1312,1323,1247,-1263,1315,1312,1262,-1230,1313,1325,1283,-1288,1314,1313,-1288,1278,1317,1314,-1288,1316,1315,1229,-1292,1324,1316,1291,-1283,1319,1318,1244,-1246,1321,1320,1234,-1255,1322,1321,1254,-1247,1323,1322,1246,-1248,1325,1324,1282,-1284,1261,1176,1210,-1311,1253,1261,1310,-1319,1252,1253,1318,-1320,1269,1252,1319,-1312,1251,1269,1311,-1321,1256,1251,1320,-1322,1256,1321,1322,-1251,1249,1250,1322,-1324,1266,1249,1323,-1313,1248,1266,1312,-1316,1248,1315,1316,-1293,1314,1317,1284,-1290,1313,1314,1289,-1296,1325,1313,1295,-1286,1324,1325,1285,-1287,1316,1324,1286,-1293,1327,1326,1278,-1288,1259,1328,1219,-1172,1279,1284,1330,-1330,1284,1317,1331,-1331,1317,1278,1332,-1332,1278,1326,1333,-1333,1326,1279,1329,-1334
- }
- Edges: *3580 {
- a: 0,1,2,4,5,6,7,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,27,29,31,32,33,34,35,36,38,40,41,42,43,44,46,47,49,50,51,52,53,55,56,58,59,60,61,62,63,64,66,67,70,71,73,74,76,79,80,82,84,87,88,91,92,93,95,96,100,101,102,103,106,108,110,111,114,115,118,119,120,121,125,126,128,129,133,136,137,140,141,142,146,147,149,150,154,155,156,159,161,163,166,167,168,171,175,177,182,183,184,186,189,191,194,195,197,199,200,201,205,207,208,210,211,214,215,216,219,221,222,224,227,229,230,231,232,235,236,238,241,244,245,247,249,250,252,254,255,258,260,261,263,264,266,268,271,274,275,277,279,282,285,286,290,293,294,295,297,300,302,304,307,308,309,314,316,317,319,321,324,325,327,331,334,335,336,340,343,344,346,350,353,355,356,357,360,362,365,367,368,369,373,374,377,379,381,384,386,388,392,395,396,398,401,404,405,408,412,418,419,420,422,424,425,427,428,429,431,434,437,438,441,442,445,446,447,448,451,452,455,457,460,461,464,465,467,469,470,471,472,476,477,478,480,481,483,485,488,489,491,493,496,497,499,501,503,505,506,508,510,511,514,516,518,519,522,523,527,529,530,531,533,534,535,539,540,541,543,548,550,551,554,556,557,558,561,563,566,567,568,572,574,575,576,577,581,582,584,585,588,590,591,596,598,600,604,605,608,611,614,615,620,621,622,626,629,630,632,635,636,637,641,643,644,646,647,648,649,651,653,656,657,658,660,661,665,666,667,671,673,675,676,680,682,683,685,686,687,688,690,691,694,695,697,698,699,700,704,705,710,713,714,717,721,722,723,727,728,729,732,734,735,738,739,743,745,746,749,750,752,753,757,759,761,762,765,766,769,772,774,775,778,781,785,786,790,792,795,797,800,801,804,807,810,812,814,816,821,822,828,829,830,831,832,834,836,837,838,840,841,844,847,848,850,852,855,856,859,860,861,863,864,868,869,870,872,874,876,878,879,882,883,886,887,888,889,893,894,896,899,901,903,904,908,909,910,914,916,917,919,922,923,924,927,929,931,934,935,936,939,943,945,950,951,952,954,957,958,962,963,964,967,968,969,973,975,976,978,979,982,983,984,987,989,990,992,995,997,998,1001,1002,1004,1005,1008,1009,1011,1012,1014,1018,1019,1021,
- 1023,1024,1026,1027,1029,1032,1034,1035,1037,1038,1039,1042,1045,1047,1048,1051,1053,1057,1058,1059,1062,1066,1067,1068,1072,1073,1076,1077,1078,1080,1083,1085,1087,1089,1093,1094,1095,1098,1102,1103,1104,1109,1110,1111,1113,1117,1120,1121,1122,1126,1129,1130,1133,1134,1135,1139,1141,1142,1145,1146,1149,1151,1154,1155,1156,1158,1163,1164,1166,1168,1171,1173,1176,1178,1180,1184,1187,1188,1189,1192,1196,1199,1200,1203,1209,1210,1211,1213,1215,1216,1219,1220,1222,1223,1225,1228,1229,1230,1234,1235,1237,1238,1240,1241,1242,1244,1245,1247,1248,1249,1251,1252,1255,1256,1258,1259,1261,1263,1265,1268,1270,1271,1272,1273,1276,1277,1279,1281,1283,1284,1288,1289,1292,1294,1295,1298,1301,1303,1304,1305,1308,1310,1312,1315,1316,1318,1320,1322,1324,1327,1330,1331,1333,1336,1337,1338,1341,1342,1346,1348,1349,1350,1353,1356,1357,1361,1364,1366,1367,1368,1371,1375,1376,1378,1381,1382,1383,1386,1387,1390,1394,1396,1397,1399,1401,1404,1408,1409,1411,1414,1415,1416,1419,1420,1424,1425,1429,1430,1431,1434,1437,1438,1441,1442,1443,1444,1447,1448,1450,1452,1454,1456,1458,1461,1463,1464,1468,1469,1470,1472,1473,1474,1477,1481,1482,1483,1485,1488,1492,1493,1495,1498,1499,1500,1503,1504,1506,1510,1511,1513,1514,1515,1518,1519,1523,1524,1527,1529,1530,1534,1536,1539,1543,1544,1545,1548,1551,1554,1555,1557,1562,1564,1565,1566,1569,1570,1574,1576,1578,1579,1582,1586,1587,1589,1590,1593,1594,1598,1599,1603,1605,1606,1609,1612,1614,1620,1621,1622,1624,1625,1626,1628,1630,1631,1632,1633,1634,1635,1636,1638,1640,1642,1643,1644,1645,1646,1647,1648,1650,1652,1654,1655,1656,1657,1658,1659,1660,1662,1664,1666,1667,1668,1669,1670,1671,1672,1674,1676,1678,1679,1680,1681,1682,1683,1684,1686,1688,1690,1691,1692,1693,1694,1695,1696,1698,1700,1702,1703,1704,1705,1706,1707,1708,1710,1712,1714,1715,1716,1717,1718,1719,1720,1722,1724,1726,1727,1728,1729,1730,1732,1733,1734,1736,1738,1739,1740,1741,1742,1744,1745,1746,1748,1750,1751,1752,1753,1754,1756,1757,1758,1760,1762,1763,1764,1765,1766,1767,1768,1770,1772,1774,1775,1776,1777,1778,1779,1780,1782,1784,1786,
- 1787,1788,1789,1790,1791,1793,1794,1795,1798,1799,1800,1802,1804,1805,1806,1807,1808,1809,1811,1812,1813,1816,1817,1818,1820,1822,1823,1825,1826,1828,1829,1830,1831,1833,1834,1835,1836,1837,1840,1841,1842,1843,1844,1845,1847,1848,1849,1852,1853,1856,1857,1859,1860,1861,1863,1864,1866,1867,1870,1872,1876,1877,1879,1880,1881,1884,1887,1890,1892,1894,1895,1897,1898,1899,1901,1902,1904,1906,1908,1911,1913,1915,1918,1922,1923,1925,1927,1929,1930,1931,1932,1933,1935,1936,1938,1939,1942,1943,1946,1948,1949,1950,1955,1957,1959,1961,1962,1963,1966,1967,1970,1972,1973,1974,1978,1979,1980,1981,1982,1983,1985,1986,1987,1990,1991,1992,1994,1996,1997,1998,1999,2000,2001,2003,2004,2005,2008,2009,2010,2012,2014,2015,2016,2017,2018,2019,2021,2022,2023,2026,2027,2028,2032,2033,2034,2036,2038,2039,2041,2044,2046,2048,2049,2050,2052,2054,2056,2059,2061,2062,2065,2069,2071,2072,2073,2076,2077,2080,2081,2083,2084,2085,2090,2091,2092,2093,2094,2096,2097,2098,2100,2101,2102,2104,2105,2107,2110,2111,2112,2116,2117,2118,2119,2122,2123,2124,2126,2127,2129,2131,2134,2135,2137,2138,2139,2142,2143,2144,2146,2147,2149,2150,2152,2153,2155,2156,2157,2159,2160,2161,2162,2164,2165,2168,2169,2170,2171,2173,2174,2176,2178,2179,2180,2182,2183,2185,2186,2188,2189,2191,2192,2193,2195,2196,2197,2198,2200,2201,2204,2205,2206,2207,2209,2210,2212,2214,2215,2216,2218,2219,2220,2221,2223,2224,2225,2227,2228,2231,2233,2234,2235,2237,2238,2240,2243,2244,2245,2248,2250,2252,2253,2257,2258,2261,2263,2264,2266,2270,2271,2274,2275,2280,2282,2283,2285,2286,2288,2291,2295,2296,2297,2299,2300,2301,2304,2306,2307,2308,2310,2312,2314,2315,2319,2320,2321,2323,2324,2325,2327,2328,2329,2331,2332,2335,2336,2337,2339,2341,2342,2343,2347,2348,2349,2351,2353,2355,2356,2359,2360,2362,2365,2366,2367,2368,2372,2373,2374,2375,2377,2378,2381,2382,2384,2386,2388,2389,2391,2392,2395,2396,2397,2398,2402,2404,2405,2407,2408,2410,2412,2413,2415,2418,2419,2423,2426,2428,2429,2430,2433,2434,2437,2438,2440,2441,2442,2447,2448,2449,2450,2452,2453,2455,2456,2457,2458,2461,2462,2463,2464,2467,
- 2468,2469,2470,2473,2474,2475,2476,2477,2479,2480,2482,2484,2485,2486,2488,2489,2491,2492,2494,2495,2497,2498,2499,2501,2502,2503,2504,2506,2507,2510,2511,2512,2514,2515,2518,2519,2520,2521,2522,2524,2525,2526,2528,2530,2531,2533,2534,2535,2537,2538,2539,2540,2542,2543,2546,2547,2548,2550,2551,2554,2555,2556,2557,2558,2560,2561,2562,2563,2565,2566,2567,2569,2570,2573,2575,2576,2577,2578,2580,2582,2585,2586,2587,2590,2592,2594,2595,2599,2600,2603,2605,2606,2607,2612,2613,2615,2617,2622,2624,2625,2627,2628,2630,2633,2637,2638,2639,2641,2642,2643,2644,2647,2648,2649,2651,2653,2654,2655,2656,2657,2658,2659,2663,2664,2665,2667,2668,2671,2672,2673,2676,2678,2680,2681,2682,2683,2686,2688,2690,2691,2692,2697,2698,2699,2701,2704,2705,2706,2710,2713,2714,2715,2716,2719,2720,2723,2724,2726,2728,2729,2731,2733,2734,2735,2737,2738,2739,2743,2744,2746,2748,2749,2751,2752,2755,2757,2759,2761,2762,2764,2767,2768,2769,2770,2774,2775,2776,2779,2780,2782,2784,2785,2787,2790,2794,2795,2796,2799,2800,2803,2804,2805,2807,2809,2812,2813,2814,2819,2820,2821,2822,2824,2825,2826,2827,2829,2831,2832,2834,2836,2837,2838,2839,2840,2842,2843,2845,2847,2848,2849,2851,2852,2855,2857,2861,2863,2864,2865,2870,2871,2878,2882,2883,2891,2893,2895,2897,2898,2900,2901,2902,2903,2905,2906,2907,2909,2910,2912,2913,2914,2915,2916,2917,2919,2925,2926,2927,2928,2929,2931,2933,2935,2936,2938,2940,2943,2945,2946,2951,2952,2959,2961,2963,2964,2966,2967,2971,2972,2973,2980,2984,2987,2991,2992,2993,2995,2996,2997,3003,3004,3005,3007,3008,3009,3011,3013,3014,3017,3019,3021,3023,3024,3026,3027,3028,3029,3031,3032,3033,3035,3036,3038,3039,3043,3044,3045,3047,3048,3049,3052,3056,3060,3063,3065,3066,3069,3072,3074,3076,3078,3081,3082,3085,3087,3089,3092,3094,3095,3096,3101,3102,3109,3112,3113,3114,3117,3121,3122,3124,3126,3132,3135,3137,3138,3141,3144,3146,3147,3149,3151,3154,3155,3156,3157,3161,3162,3165,3166,3170,3171,3176,3177,3183,3187,3188,3190,3194,3195,3197,3198,3202,3204,3210,3214,3215,3216,3221,3222,3224,3226,3227,3228,3232,3233,3234,3236,3237,3242,3244,3245,
- 3248,3249,3254,3256,3262,3265,3266,3267,3270,3273,3274,3278,3281,3282,3288,3290,3292,3293,3294,3297,3299,3301,3302,3304,3306,3311,3313,3315,3317,3318,3322,3324,3328,3329,3331,3333,3336,3338,3339,3342,3346,3349,3350,3351,3356,3359,3360,3368,3370,3371,3374,3375,3378,3379,3383,3384,3387,3389,3390,3394,3395,3398,3400,3401,3404,3406,3408,3414,3418,3419,3422,3423,3426,3427,3430,3434,3440,3441,3442,3450,3454,3455,3456,3459,3462,3465,3467,3469,3470,3472,3474,3478,3479,3480,3484,3487,3488,3490,3493,3495,3498,3501,3505,3506,3508,3512,3513,3515,3517,3520,3523,3528,3532,3533,3534,3537,3540,3544,3545,3547,3549,3553,3554,3555,3558,3561,3563,3564,3566,3567,3568,3570,3574,3579,3583,3584,3586,3590,3591,3592,3595,3598,3601,3606,3610,3611,3612,3615,3619,3620,3622,3624,3628,3629,3631,3632,3634,3637,3639,3641,3643,3650,3652,3657,3659,3661,3662,3663,3667,3668,3670,3671,3672,3675,3680,3681,3685,3686,3687,3690,3693,3696,3700,3701,3703,3705,3709,3710,3711,3715,3718,3719,3720,3725,3728,3729,3735,3739,3740,3741,3744,3747,3750,3754,3755,3757,3760,3761,3764,3765,3767,3768,3773,3775,3778,3781,3788,3789,3790,3798,3799,3800,3802,3803,3804,3805,3807,3808,3811,3812,3815,3816,3817,3821,3822,3823,3827,3828,3829,3831,3834,3836,3837,3838,3841,3842,3843,3845,3847,3850,3851,3853,3855,3857,3859,3862,3863,3865,3867,3868,3870,3871,3875,3876,3877,3879,3884,3886,3887,3890,3891,3892,3895,3896,3899,3900,3901,3904,3907,3908,3909,3910,3912,3913,3917,3920,3921,3925,3926,3927,3929,3931,3932,3933,3934,3937,3938,3939,3943,3948,3949,3950,3951,3953,3954,3955,3957,3959,3960,3963,3964,3967,3969,3970,3973,3975,3977,3978,3979,3981,3982,3986,3988,3989,3992,3993,3997,3998,3999,4003,4004,4006,4007,4008,4009,4013,4014,4015,4017,4018,4021,4022,4023,4027,4030,4031,4034,4035,4036,4039,4042,4043,4044,4047,4048,4050,4054,4055,4057,4060,4061,4062,4063,4066,4067,4068,4071,4075,4076,4077,4079,4081,4082,4083,4084,4087,4088,4089,4093,4098,4099,4100,4101,4104,4106,4107,4108,4110,4114,4115,4118,4120,4121,4124,4127,4128,4130,4132,4136,4137,4140,4142,4144,4145,4148,4149,4151,4153,4157,4158,
- 4162,4164,4168,4169,4170,4175,4179,4181,4182,4184,4186,4187,4189,4190,4191,4193,4194,4196,4197,4201,4202,4203,4205,4206,4208,4211,4213,4214,4216,4217,4219,4220,4221,4223,4225,4226,4229,4230,4233,4235,4236,4241,4243,4244,4245,4248,4250,4251,4253,4255,4257,4259,4262,4263,4265,4266,4268,4269,4271,4273,4276,4278,4282,4283,4284,4285,4288,4289,4290,4292,4294,4295,4298,4299,4305,4307,4308,4310,4312,4313,4314,4316,4317,4319,4322,4324,4325,4326,4327,4329,4330,4334,4335,4336,4338,4341,4342,4344,4345,4348,4349,4351,4352,4353,4356,4359,4360,4363,4364,4365,4369,4370,4371,4372,4375,4376,4378,4380,4381,4384,4385,4386,4389,4392,4394,4396,4399,4400,4402,4403,4405,4408,4411,4412,4413,4416,4417,4420,4422,4423,4425,4426,4429,4431,4433,4435,4436,4437,4443,4446,4450,4451,4452,4453,4457,4461,4463,4464,4466,4468,4470,4475,4477,4478,4479,4482,4485,4486,4488,4493,4494,4495,4499,4501,4502,4503,4508,4510,4512,4518,4521,4525,4526,4527,4528,4532,4537,4538,4539,4541,4544,4545,4548,4551,4555,4556,4559,4560,4562,4564,4567,4568,4569,4572,4576,4577,4578,4583,4585,4588,4589,4591,4593,4599,4603,4605,4609,4610,4611,4616,4620,4622,4623,4625,4627,4628,4630,4631,4632,4634,4635,4637,4639,4640,4643,4645,4646,4647,4649,4651,4654,4655,4657,4660,4661,4662,4664,4665,4667,4669,4672,4673,4675,4677,4678,4682,4683,4685,4687,4690,4691,4693,4694,4697,4698,4701,4702,4704,4706,4708,4709,4710,4713,4717,4718,4719,4720,4723,4724,4725,4727,4729,4730,4733,4734,4740,4743,4747,4748,4751,4752,4756,4757,4758,4762,4763,4764,4766,4768,4770,4771,4775,4777,4778,4780,4783,4784,4786,4787,4789,4791,4796,4797,4799,4801,4804,4805,4806,4809,4812,4814,4817,4819,4820,4822,4824,4826,4827,4829,4831,4833,4836,4837,4844,4847,4848,4852,4853,4854,4857,4862,4863,4867,4868,4869,4873,4874,4877,4878,4884,4886,4887,4889,4891,4892,4894,4895,4896,4898,4899,4902,4903,4906,4907,4908,4909,4912,4914,4915,4918,4919,4921,4922,4923,4927,4928,4931,4933,4934,4936,4937,4938,4940,4942,4944,4947,4949,4951,4952,4953,4955,4957,4958,4959,4963,4964,4967,4968,4969,4971,4975,4977,4978,4982,4984,4985,4986,4987,4989,4993,
- 4996,4999,5000,5001,5004,5005,5009,5011,5013,5015,5017,5018,5019,5021,5022,5024,5025,5030,5032,5034,5035,5039,5041,5045,5046,5047,5051,5053,5054,5055,5056,5058,5059,5061,5066,5067,5068,5072,5074,5075,5076,5077,5080,5081,5082,5085,5090,5091,5096,5099,5102,5106,5108,5109,5112,5116,5117,5120,5121,5125,5127,5131,5132,5133,5137,5138,5139,5143,5148,5151,5155,5156,5157,5158,5162,5166,5168,5169,5171,5173,5175,5178,5182,5183,5184,5187,5190,5191,5193,5196,5199,5200,5202,5206,5207,5208,5213,5215,5217,5223,5226,5229,5233,5234,5237,5239,5240,5241,5245,5246,5247,5250,5252,5254,5256,5257,5261,5263,5265,5269,5273,5274,5279,5283,5284,5285,5287,5288,5291,5292,5293,5295,5299,5300,5301,5305,5307,5309,5310,5315,5317,5319,5321,5323,5324,5325,5327,5330,5332,5333,5334,5338,5340,5342,5343,5348,5350,5352,5355,5359,5360,5362,5364,5365,5369,5370,5372,5373,5376,5380,5381,5382,5385,5387,5390,5391,5394,5395,5399,5400,5401,5405,5407,5408,5409,5412,5416,5418,5421,5423,5425,5428,5432,5433,5436,5438,5441,5443,5445,5451,5452,5453,5455,5456,5459,5460,5461,5463,5466,5469,5471,5473,5474,5475,5478,5481,5483,5484,5486,5488,5490,5491,5495,5496,5498,5499,5504,5505,5508,5510,5511,5514,5517,5520,5524,5526,5530,5531,5532,5535,5536,5540,5541,5544,5547,5548,5552,5553,5554,5558,5559,5561,5563,5565,5570,5571,5576,5579,5580,5583,5585,5587,5589,5595,5596,5597,5599,5600,5601,5605,5607,5609,5612,5613,5616,5618,5619,5622,5623,5625,5627,5630,5632,5634,5637,5641,5642,5643,5647,5649,5654,5656,5657,5659,5663,5665,5666,5669,5670,5672,5673,5676,5677,5680,5683,5684,5685,5687,5689,5693,5694,5695,5698,5701,5702,5703,5706,5711,5712,5715,5716,5720,5723,5726,5728,5732,5734,5739,5740,5742,5743,5746,5747,5749,5751,5753,5755,5756,5759,5760,5762,5764,5766,5767,5771,5773,5776,5777,5778,5781,5784,5785,5787,5791,5795,5796,5797,5798,5800,5801,5804,5805,5806,5808,5812,5815,5816,5818,5819,5820,5824,5827,5828,5829,5833,5834,5835,5838,5839,5841,5843,5845,5848,5849,5850,5853,5854,5856,5860,5862,5863,5866,5869,5871,5874,5876,5878,5880,5882,5884,5887,5889,5891,5893,5894,5895,5898,5900,5902,5904,
- 5906,5908,5912,5914,5920,5923,5924,5925,5928,5932,5933,5934,5938,5941,5945,5947,5948,5950,5953,5957,5958,5964,5967,5971,5972,5973,5977,5979,5981,5982,5984,5986,5987,5988,5991,5996,5998,5999,6001,6002,6003,6008,6009,6011,6013,6016,6019,6021,6024,6027,6030,6035,6040,6042,6044,6047,6048,6050,6051,6058,6059,6061,6063,6065,6067,6069,6070,6073,6075,6077,6078,6081,6085,6086,6087,6096,6098,6100,6101,6104,6105,6106,6109,6110,6112,6114,6116,6118,6120,6122,6124,6128,6130,6131,6132,6135,6139,6140,6141,6146,6148,6149,6152,6154,6156,6159,6163,6165,6167,6169,6170,6171,6174,6176,6178,6180,6181,6183,6188,6189,6190,6192,6195,6199,6200,6201,6210,6212,6214,6215,6218,6219,6220,6223,6224,6225,6228,6229,6233,6235,6236,6237,6242,6243,6244,6248,6249,6252,6256,6257,6260,6262,6264,6269,6271,6273,6275,6277,6278,6279,6282,6284,6287,6289,6290,6293,6295,6298,6299,6300,6305,6306,6307,6309,6372,6418,6717,6402,6341,6333,6330,6440,6329,6326,6408,6404,6349,6325,6322,6428,6321,6318,6357,6355,6362,6369,6367,6585,6334,6338,6342,6346,6323,6358,6331,6465,6339,6438,6347,6426,6350,6373,6356,6360,6368,6469,6648,6567,6563,6387,6555,6551,6344,6453,6406,6359,6407,6388,6363,6365,6389,6463,6336,6370,6371,6417,6399,6351,6353,6400,6421,6320,6319,6432,6352,6422,6412,6328,6327,6444,6364,6413,6345,6394,6343,6450,6382,6337,6335,6459,6499,6520,6487,6479,6476,6526,6475,6472,6489,6496,6494,6480,6484,6477,6541,6485,6524,6488,6495,6545,6579,6575,6712,6618,6490,6492,6514,6539,6482,6497,6498,6519,6515,6474,6473,6530,6491,6516,6504,6483,6481,6536,6423,6395,6391,6393,6434,6396,6392,6414,6383,6379,6381,6446,6384,6380,6517,6505,6501,6503,6532,6506,6502,6692,6615,6584,6588,6592,6596,6600,6604,6608,6612,6616,6619,6623,6627,6631,6635,6639,6643,6587,6607,6603,6622,6614,6595,6611,6593,6591,6634,6599,6601,6638,6609,6626,6650,6654,6658,6662,6666,6670,6673,6678,6682,6686,6689,6694,6698,6702,6706,6509,6511,6510,6419,6462,6416,6722,6720,6374,6724,6375,6728,6376,6732,6377,6378,6793,6834,6818,6762,6754,6751,6856,6750,6747,6824,6820,6770,6746,6743,6844,6742,6739,6778,6776,6783,6790,6788,6755,
- 6759,6763,6767,6744,6779,6752,6881,6760,6854,6768,6842,6771,6777,6781,6789,6885,6988,6984,6803,6976,6972,6765,6869,6822,6780,6823,6804,6784,6786,6805,6879,6757,6791,6792,6833,6815,6772,6774,6816,6837,6741,6740,6848,6773,6838,6828,6749,6748,6860,6785,6829,6766,6810,6764,6866,6798,6758,6756,6875,6915,6936,6903,6895,6892,6942,6891,6888,6905,6912,6910,6896,6900,6893,6957,6901,6940,6904,6911,6961,7000,6996,7133,7039,6906,6908,6930,6955,6898,6913,6914,6935,6931,6890,6889,6946,6907,6932,6920,6899,6897,6952,6839,6811,6807,6809,6850,6812,6808,6830,6799,6795,6797,6862,6800,6796,6933,6921,6917,6919,6948,6922,6918,7113,7036,7005,7009,7013,7017,7021,7025,7029,7033,7037,7040,7044,7048,7052,7056,7060,7064,7008,7028,7024,7043,7035,7016,7032,7014,7012,7055,7020,7022,7059,7030,7047,7071,7075,7079,7083,7087,7091,7094,7099,7103,7107,7110,7115,7119,7123,7127,6925,6927,6926,6878,6832,7143,7141,6964,7145,6965,7149,6966,7153,6967,6968
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *21480 {
- a: 0.605361640453339,-0.0550328753888607,-0.794045746326447,0.627822816371918,0.0470867119729519,-0.776930749416351,0.627571642398834,-0.054912518709898,-0.776619911193848,0.627822816371918,0.0470867119729519,-0.776930749416351,0.605361640453339,-0.0550328753888607,-0.794045746326447,0.605979979038239,0.0314794778823853,-0.794856786727905,0.998762309551239,0.0471856184303761,0.0157285407185555,0.998361051082611,-0.0550277717411518,-0.0157222207635641,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.998361051082611,-0.0550277717411518,-0.0157222207635641,0.998762309551239,0.0471856184303761,0.0157285407185555,0.998361051082611,-0.0550277717411518,0.0157222207635641,0.600588858127594,0.0474149063229561,0.798150897026062,0.622781336307526,-0.0551831535995007,0.780447483062744,0.62342095375061,0.0315656177699566,0.781249105930328,0.622781336307526,-0.0551831535995007,0.780447483062744,0.600588858127594,0.0474149063229561,0.798150897026062,0.600345194339752,-0.0552949495613575,0.797827124595642,-0.0157285407185555,0.0471856184303761,0.998762309551239,0.0157222207635641,-0.0550277717411518,0.998361051082611,0.0157338920980692,0.0393347330391407,0.999102234840393,0.0157222207635641,-0.0550277717411518,0.998361051082611,-0.0157285407185555,0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.0471856184303761,0.998762309551239,-0.00787279661744833,0.0157455932348967,0.999845147132874,-0.00786499958485365,-0.047189999371767,0.998854994773865,0.00786767713725567,0.0393383838236332,0.999194979667664,0.0314648635685444,-0.0314648635685444,0.999009490013123,0.00786767713725567,0.0393383838236332,0.999194979667664,-0.00786499958485365,-0.047189999371767,0.998854994773865,0.00786767713725567,0.0393383838236332,0.999194979667664,0.0314648635685444,-0.0314648635685444,0.999009490013123,0.0314648635685444,0.0314648635685444,0.999009490013123,-0.623654007911682,0.0157887078821659,0.781541049480438,-0.623033046722412,-0.0473189651966095,0.780762910842896,-0.614554405212402,0.0393945127725601,0.787890195846558,
- -0.591929078102112,-0.0394619405269623,0.805023550987244,-0.614554405212402,0.0393945127725601,0.787890195846558,-0.623033046722412,-0.0473189651966095,0.780762910842896,-0.614554405212402,0.0393945127725601,0.787890195846558,-0.591929078102112,-0.0394619405269623,0.805023550987244,-0.592095017433167,0.0315783992409706,0.805249214172363,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.619422197341919,0.0392039343714714,-0.78407871723175,-0.636592626571655,-0.0392958410084248,-0.770198464393616,-0.636769652366638,0.0314454138278961,-0.770412623882294,-0.636592626571655,-0.0392958410084248,-0.770198464393616,-0.619422197341919,0.0392039343714714,-0.78407871723175,-0.605605006217957,-0.047189999371767,-0.794364988803864,-0.605605006217957,-0.047189999371767,-0.794364988803864,-0.619422197341919,0.0392039343714714,-0.78407871723175,-0.60620528459549,0.0157455913722515,-0.795152366161346,-0.833406507968903,-0.353804647922516,-0.424565553665161,-0.905905067920685,-0.0708969160914421,-0.417504072189331,-0.839764773845673,-0.0392413437366486,-0.54153048992157,-0.905905067920685,-0.0708969160914421,-0.417504072189331,-0.869409024715424,0.0632297471165657,-0.490030556917191,-0.839764773845673,-0.0392413437366486,-0.54153048992157,-0.869409024715424,0.0632297471165657,-0.490030556917191,-0.820552825927734,0.0631194487214088,-0.568075001239777,-0.839764773845673,-0.0392413437366486,-0.54153048992157,-0.839764773845673,-0.0392413437366486,-0.54153048992157,-0.820552825927734,0.0631194487214088,-0.568075001239777,-0.824322104454041,-0.0314027480781078,-0.565249383449554,
- -0.824322104454041,-0.0314027480781078,-0.565249383449554,-0.820552825927734,0.0631194487214088,-0.568075001239777,0.605361640453339,-0.0550328753888607,-0.794045746326447,0.605361640453339,-0.0550328753888607,-0.794045746326447,-0.820552825927734,0.0631194487214088,-0.568075001239777,0.605979979038239,0.0314794778823853,-0.794856786727905,0.605979979038239,0.0314794778823853,-0.794856786727905,-0.820552825927734,0.0631194487214088,-0.568075001239777,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.820552825927734,0.0631194487214088,-0.568075001239777,-0.869409024715424,0.0632297471165657,-0.490030556917191,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,0.627822816371918,0.0470867119729519,-0.776930749416351,0.605979979038239,0.0314794778823853,-0.794856786727905,-0.905905067920685,-0.0708969160914421,-0.417504072189331,-0.92444634437561,0.0395062565803528,-0.379260063171387,-0.869409024715424,0.0632297471165657,-0.490030556917191,-0.92444634437561,0.0395062565803528,-0.379260063171387,-0.905905067920685,-0.0708969160914421,-0.417504072189331,-0.929854869842529,-0.0630410090088844,-0.36248579621315,-0.00786499958485365,0.998854994773865,-0.047189999371767,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.869409024715424,0.0632297471165657,-0.490030556917191,-0.92444634437561,0.0395062565803528,-0.379260063171387,-0.00786499958485365,0.998854994773865,-0.047189999371767,-0.869409024715424,0.0632297471165657,-0.490030556917191,0.627822816371918,0.0470867119729519,-0.776930749416351,-0.00786986947059631,0.999473392963409,-0.0314794778823853,0.023615462705493,0.999721229076386,2.21982705345433e-016,-0.00786499958485365,0.998854994773865,-0.047189999371767,0.0314794778823853,0.999473392963409,-0.00786986947059631,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,0.0314794778823853,0.999473392963409,-0.00786986947059631,0.023615462705493,0.999721229076386,2.21982705345433e-016,
- -0.0157455932348967,0.999845147132874,0.00787279661744833,-0.00786499958485365,0.998854994773865,-0.047189999371767,-0.92444634437561,0.0395062565803528,-0.379260063171387,-0.0157455932348967,0.999845147132874,0.00787279661744833,0.0314794778823853,0.999473392963409,-0.00786986947059631,-0.00786499958485365,0.998854994773865,-0.047189999371767,0.023615462705493,0.999721229076386,2.21982705345433e-016,0.857576906681061,0.0550737455487251,0.511399030685425,0.627822816371918,0.0470867119729519,-0.776930749416351,-0.0157455932348967,0.999845147132874,0.00787279661744833,-0.92444634437561,0.0395062565803528,-0.379260063171387,-0.409753829240799,0.780108273029327,0.47279292345047,0.023615462705493,0.999721229076386,2.21982705345433e-016,0.868433177471161,0.0789484679698944,0.489480525255203,0.857576906681061,0.0550737455487251,0.511399030685425,0.868433177471161,0.0789484679698944,0.489480525255203,0.023615462705493,0.999721229076386,2.21982705345433e-016,0.0314794778823853,0.999473392963409,-0.00786986947059631,0.85410863161087,-0.0790841281414032,0.514046847820282,0.627822816371918,0.0470867119729519,-0.776930749416351,0.857576906681061,0.0550737455487251,0.511399030685425,0.868433177471161,0.0789484679698944,0.489480525255203,0.85410863161087,-0.0790841281414032,0.514046847820282,0.857576906681061,0.0550737455487251,0.511399030685425,0.627822816371918,0.0470867119729519,-0.776930749416351,0.85410863161087,-0.0790841281414032,0.514046847820282,0.627571642398834,-0.054912518709898,-0.776619911193848,0.0314794778823853,0.999473392963409,-0.00786986947059631,-0.0157455932348967,0.999845147132874,0.00787279661744833,0,0.998885869979858,0.047191459685564,0,0.998885869979858,0.047191459685564,-0.0157455932348967,0.999845147132874,0.00787279661744833,-0.409753829240799,0.780108273029327,0.47279292345047,0.0314794778823853,0.999473392963409,-0.00786986947059631,0.943916857242584,0.0707937553524971,0.322504907846451,0.868433177471161,0.0789484679698944,0.489480525255203,0.943916857242584,0.0707937553524971,0.322504907846451,0.0314794778823853,0.999473392963409,-0.00786986947059631,
- 0,0.998885869979858,0.047191459685564,0.892618477344513,-0.0868920683860779,0.44235959649086,0.85410863161087,-0.0790841281414032,0.514046847820282,0.868433177471161,0.0789484679698944,0.489480525255203,0.943916857242584,0.0707937553524971,0.322504907846451,0.892618477344513,-0.0868920683860779,0.44235959649086,0.868433177471161,0.0789484679698944,0.489480525255203,0.627571642398834,-0.054912518709898,-0.776619911193848,0.85410863161087,-0.0790841281414032,0.514046847820282,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.605361640453339,-0.0550328753888607,-0.794045746326447,0.627571642398834,-0.054912518709898,-0.776619911193848,0.00787157565355301,-0.999690115451813,0.023614726960659,0.85410863161087,-0.0790841281414032,0.514046847820282,0.892618477344513,-0.0868920683860779,0.44235959649086,0.85410863161087,-0.0790841281414032,0.514046847820282,0.00787157565355301,-0.999690115451813,0.023614726960659,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.605361640453339,-0.0550328753888607,-0.794045746326447,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0,-0.999504387378693,-0.0314804539084435,0,-0.999504387378693,-0.0314804539084435,-0.824322104454041,-0.0314027480781078,-0.565249383449554,0.605361640453339,-0.0550328753888607,-0.794045746326447,0,-0.999504387378693,-0.0314804539084435,-0.839764773845673,-0.0392413437366486,-0.54153048992157,-0.824322104454041,-0.0314027480781078,-0.565249383449554,-0.839764773845673,-0.0392413437366486,-0.54153048992157,0,-0.999504387378693,-0.0314804539084435,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0,-0.999504387378693,-0.0314804539084435,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.00787157565355301,-0.999690115451813,0.023614726960659,0.892618477344513,-0.0868920683860779,0.44235959649086,
- 0.0314648635685444,-0.999009490013123,-0.0314648635685444,0.00787157565355301,-0.999690115451813,0.023614726960659,0.0314648635685444,-0.999009490013123,-0.0314648635685444,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.00787157565355301,-0.999690115451813,0.023614726960659,0.965366780757904,-0.070636585354805,0.251152336597443,0.892618477344513,-0.0868920683860779,0.44235959649086,0.943916857242584,0.0707937553524971,0.322504907846451,0.0314648635685444,-0.999009490013123,-0.0314648635685444,0.892618477344513,-0.0868920683860779,0.44235959649086,0.965366780757904,-0.070636585354805,0.251152336597443,0.992402911186218,0.0787621363997459,0.0945145636796951,0.965366780757904,-0.070636585354805,0.251152336597443,0.943916857242584,0.0707937553524971,0.322504907846451,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.0314648635685444,-0.999009490013123,-0.0314648635685444,0,-0.997498512268066,-0.0706888660788536,0,-0.997498512268066,-0.0706888660788536,-0.895061135292053,-0.196285337209702,-0.400422096252441,-0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.895061135292053,-0.196285337209702,-0.400422096252441,0,-0.997498512268066,-0.0706888660788536,-0.941183805465698,-0.125491172075272,-0.313727915287018,0,-0.997498512268066,-0.0706888660788536,-0.967245399951935,-0.0707740485668182,-0.24377728998661,-0.941183805465698,-0.125491172075272,-0.313727915287018,0,-0.997498512268066,-0.0706888660788536,-0.975682556629181,-0.078684076666832,-0.204578593373299,-0.967245399951935,-0.0707740485668182,-0.24377728998661,-0.975682556629181,-0.078684076666832,-0.204578593373299,0,-0.997498512268066,-0.0706888660788536,-0.0314327888190746,-0.99799108505249,0.0550073832273483,0.0314648635685444,-0.999009490013123,-0.0314648635685444,-0.0314327888190746,-0.99799108505249,0.0550073832273483,0,-0.997498512268066,-0.0706888660788536,-0.987132668495178,-0.0868676751852036,-0.134250044822693,-0.975682556629181,-0.078684076666832,-0.204578593373299,-0.0314327888190746,-0.99799108505249,0.0550073832273483,
- 0.992218255996704,-0.102371722459793,0.0708727315068245,0.0314648635685444,-0.999009490013123,-0.0314648635685444,0.965366780757904,-0.070636585354805,0.251152336597443,0.992218255996704,-0.102371722459793,0.0708727315068245,0.965366780757904,-0.070636585354805,0.251152336597443,0.992402911186218,0.0787621363997459,0.0945145636796951,-0.987132668495178,-0.0868676751852036,-0.134250044822693,-0.0314327888190746,-0.99799108505249,0.0550073832273483,-0.0236037615686655,-0.999225914478302,-0.0314716808497906,-0.0236037615686655,-0.999225914478302,-0.0314716808497906,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.987132668495178,-0.0868676751852036,-0.134250044822693,-0.0314327888190746,-0.99799108505249,0.0550073832273483,0.0314648635685444,-0.999009490013123,-0.0314648635685444,0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.0314327888190746,-0.99799108505249,0.0550073832273483,0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.0236037615686655,-0.999225914478302,-0.0314716808497906,0.0314648635685444,-0.999009490013123,-0.0314648635685444,0.992218255996704,-0.102371722459793,0.0708727315068245,0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.0236037615686655,-0.999225914478302,-0.0314716808497906,-0.0236088801175356,-0.999442577362061,-0.0236088801175356,-0.0236037615686655,-0.999225914478302,-0.0314716808497906,0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.0236088801175356,-0.999442577362061,-0.0236088801175356,-0.0236088801175356,-0.999442577362061,-0.0236088801175356,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.031476553529501,-0.999380588531494,0.0157382767647505,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.031476553529501,-0.999380588531494,0.0157382767647505,-0.0236088801175356,-0.999442577362061,-0.0236088801175356,
- -0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.981789767742157,-0.188503637909889,-0.0235629547387362,-0.031476553529501,-0.999380588531494,0.0157382767647505,-0.00786499958485365,-0.047189999371767,0.998854994773865,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.031476553529501,-0.999380588531494,0.0157382767647505,0.0157416891306639,-0.999597251415253,0.0236125327646732,-0.00786499958485365,-0.047189999371767,0.998854994773865,-0.031476553529501,-0.999380588531494,0.0157382767647505,-0.031476553529501,-0.999380588531494,0.0157382767647505,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0157416891306639,-0.999597251415253,0.0236125327646732,-0.00786499958485365,-0.047189999371767,0.998854994773865,0.0157416891306639,-0.999597251415253,0.0236125327646732,0.0314648635685444,-0.0314648635685444,0.999009490013123,0.0157416891306639,-0.999597251415253,0.0236125327646732,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.997006475925446,-0.07065399736166,0.0314017795026302,0.0157416891306639,-0.999597251415253,0.0236125327646732,0.997006475925446,-0.07065399736166,0.0314017795026302,0.0314648635685444,-0.0314648635685444,0.999009490013123,0.992218255996704,-0.102371722459793,0.0708727315068245,0.997006475925446,-0.07065399736166,0.0314017795026302,0.023614726960659,-0.999690115451813,-0.00787157565355301,0.997006475925446,-0.07065399736166,0.0314017795026302,0.0314648635685444,0.0314648635685444,0.999009490013123,0.0314648635685444,-0.0314648635685444,0.999009490013123,0.992218255996704,-0.102371722459793,0.0708727315068245,0.995215952396393,0.0947824716567993,0.0236956179141998,0.997006475925446,-0.07065399736166,0.0314017795026302,0.0314648635685444,0.0314648635685444,0.999009490013123,0.997006475925446,-0.07065399736166,0.0314017795026302,0.995215952396393,0.0947824716567993,0.0236956179141998,0.995215952396393,0.0947824716567993,0.0236956179141998,0.992218255996704,-0.102371722459793,0.0708727315068245,0.992402911186218,0.0787621363997459,0.0945145636796951,0.995215952396393,0.0947824716567993,0.0236956179141998,
- 0.0157416891306639,0.999597251415253,0.0236125327646732,0.0314648635685444,0.0314648635685444,0.999009490013123,0.0157416891306639,0.999597251415253,0.0236125327646732,0.00786767713725567,0.0393383838236332,0.999194979667664,0.0314648635685444,0.0314648635685444,0.999009490013123,0.0314648635685444,0.999009490013123,0.0314648635685444,0.995215952396393,0.0947824716567993,0.0236956179141998,0.992402911186218,0.0787621363997459,0.0945145636796951,0.995215952396393,0.0947824716567993,0.0236956179141998,0.0314648635685444,0.999009490013123,0.0314648635685444,0.0157416891306639,0.999597251415253,0.0236125327646732,0.00786767713725567,0.0393383838236332,0.999194979667664,0.0157416891306639,0.999597251415253,0.0236125327646732,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.0314648635685444,0.999009490013123,0.0314648635685444,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.0157416891306639,0.999597251415253,0.0236125327646732,-0.00787279661744833,0.0157455932348967,0.999845147132874,0.00786767713725567,0.0393383838236332,0.999194979667664,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.0314648635685444,0.999009490013123,0.0314648635685444,0.992402911186218,0.0787621363997459,0.0945145636796951,0.031476553529501,0.999380588531494,-0.0157382767647505,0.992402911186218,0.0787621363997459,0.0945145636796951,0.943916857242584,0.0707937553524971,0.322504907846451,0.031476553529501,0.999380588531494,-0.0157382767647505,0,0.998885869979858,0.047191459685564,0.031476553529501,0.999380588531494,-0.0157382767647505,0.943916857242584,0.0707937553524971,0.322504907846451,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.00787279661744833,0.0157455932348967,0.999845147132874,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.00786499958485365,-0.047189999371767,0.998854994773865,-0.00787279661744833,0.0157455932348967,0.999845147132874,-0.00786499958485365,-0.047189999371767,0.998854994773865,-0.999194979667664,0.0393383838236332,0.00786767713725567,
- -0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.0157460793852806,0.999876022338867,2.22017076354246e-016,0.0314648635685444,0.999009490013123,0.0314648635685444,-0.031476553529501,0.999380588531494,0.0157382767647505,0.0314648635685444,0.999009490013123,0.0314648635685444,0.031476553529501,0.999380588531494,-0.0157382767647505,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.754969954490662,0.0629141628742218,0.652734398841858,-0.754969954490662,0.0629141628742218,0.652734398841858,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.754969954490662,0.0629141628742218,0.652734398841858,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.754969954490662,0.0629141628742218,0.652734398841858,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.031476553529501,0.999380588531494,0.0157382767647505,0.031476553529501,0.999380588531494,-0.0157382767647505,
- -0.031476553529501,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,-0.0157382767647505,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.031476553529501,0.999380588531494,0.0157382767647505,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.986057102680206,0.0867730304598808,-0.141992211341858,-0.986057102680206,0.0867730304598808,-0.141992211341858,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.031476553529501,0.999380588531494,-0.0157382767647505,-0.996914327144623,-0.0627977550029755,0.0470983162522316,-0.986057102680206,0.0867730304598808,-0.141992211341858,-0.993976533412933,-0.0552209168672562,-0.0946644321084023,-0.986057102680206,0.0867730304598808,-0.141992211341858,-0.975682556629181,-0.078684076666832,-0.204578593373299,-0.993976533412933,-0.0552209168672562,-0.0946644321084023,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.031476553529501,0.999380588531494,-0.0157382767647505,0.031476553529501,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,-0.0157382767647505,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.986057102680206,0.0867730304598808,-0.141992211341858,-0.00786986947059631,0.999473392963409,-0.0314794778823853,0.031476553529501,0.999380588531494,-0.0157382767647505,0,0.998885869979858,0.047191459685564,-0.00786986947059631,0.999473392963409,-0.0314794778823853,0,0.998885869979858,0.047191459685564,-0.409753829240799,0.780108273029327,0.47279292345047,-0.968203842639923,0.0551010295748711,-0.244018852710724,-0.975682556629181,-0.078684076666832,-0.204578593373299,-0.986057102680206,0.0867730304598808,-0.141992211341858,-0.968203842639923,0.0551010295748711,-0.244018852710724,-0.986057102680206,0.0867730304598808,-0.141992211341858,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.968203842639923,0.0551010295748711,-0.244018852710724,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.409753829240799,0.780108273029327,0.47279292345047,
- -0.968203842639923,0.0551010295748711,-0.244018852710724,-0.967245399951935,-0.0707740485668182,-0.24377728998661,-0.975682556629181,-0.078684076666832,-0.204578593373299,-0.92444634437561,0.0395062565803528,-0.379260063171387,-0.968203842639923,0.0551010295748711,-0.244018852710724,-0.409753829240799,0.780108273029327,0.47279292345047,-0.967245399951935,-0.0707740485668182,-0.24377728998661,-0.968203842639923,0.0551010295748711,-0.244018852710724,-0.929854869842529,-0.0630410090088844,-0.36248579621315,-0.92444634437561,0.0395062565803528,-0.379260063171387,-0.929854869842529,-0.0630410090088844,-0.36248579621315,-0.968203842639923,0.0551010295748711,-0.244018852710724,-0.623033046722412,-0.0473189651966095,0.780762910842896,-0.623654007911682,0.0157887078821659,0.781541049480438,-0.754573345184326,-0.0707412511110306,-0.65239155292511,-0.733992040157318,0.0236771646887064,-0.678745329380035,-0.754573345184326,-0.0707412511110306,-0.65239155292511,-0.623654007911682,0.0157887078821659,0.781541049480438,-0.754573345184326,-0.0707412511110306,-0.65239155292511,-0.733992040157318,0.0236771646887064,-0.678745329380035,-0.725129187107086,0.0630547180771828,-0.685719966888428,-0.754573345184326,-0.0707412511110306,-0.65239155292511,-0.725129187107086,0.0630547180771828,-0.685719966888428,-0.693407952785492,-0.0709167197346687,-0.717046856880188,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.733992040157318,0.0236771646887064,-0.678745329380035,-0.623654007911682,0.0157887078821659,0.781541049480438,-0.725129187107086,0.0630547180771828,-0.685719966888428,-0.733992040157318,0.0236771646887064,-0.678745329380035,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.623654007911682,0.0157887078821659,0.781541049480438,-0.614554405212402,0.0393945127725601,0.787890195846558,-0.592095017433167,0.0315783992409706,0.805249214172363,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.614554405212402,0.0393945127725601,0.787890195846558,
- -0.725129187107086,0.0630547180771828,-0.685719966888428,0.0865283831954002,0.267451345920563,-0.959678411483765,-0.693407952785492,-0.0709167197346687,-0.717046856880188,-0.693407952785492,-0.0709167197346687,-0.717046856880188,0.0865283831954002,0.267451345920563,-0.959678411483765,-0.978320896625519,0.0631174743175507,-0.197242110967636,-0.978320896625519,0.0631174743175507,-0.197242110967636,-0.652734398841858,-0.0629141628742218,-0.754969954490662,-0.693407952785492,-0.0709167197346687,-0.717046856880188,0.0865283831954002,0.267451345920563,-0.959678411483765,-0.725129187107086,0.0630547180771828,-0.685719966888428,-0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.978320896625519,0.0631174743175507,-0.197242110967636,0.0865283831954002,0.267451345920563,-0.959678411483765,-0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.725129187107086,0.0630547180771828,-0.685719966888428,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.652734398841858,-0.0629141628742218,-0.754969954490662,-0.978320896625519,0.0631174743175507,-0.197242110967636,-0.622781336307526,0.0551831535995007,-0.780447483062744,-0.622781336307526,0.0551831535995007,-0.780447483062744,-0.978320896625519,0.0631174743175507,-0.197242110967636,-0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.504422008991241,0.0866975337266922,-0.859093725681305,-0.652734398841858,-0.0629141628742218,-0.754969954490662,-0.622781336307526,0.0551831535995007,-0.780447483062744,-0.652734398841858,-0.0629141628742218,-0.754969954490662,-0.504422008991241,0.0866975337266922,-0.859093725681305,-0.480404317378998,-0.0708793252706528,-0.874178349971771,-0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.031476553529501,0.999380588531494,-0.0157382767647505,-0.622781336307526,0.0551831535995007,-0.780447483062744,-0.504422008991241,0.0866975337266922,-0.859093725681305,-0.622781336307526,0.0551831535995007,-0.780447483062744,-0.031476553529501,0.999380588531494,-0.0157382767647505,
- -0.504422008991241,0.0866975337266922,-0.859093725681305,-0.408739864826202,0.039301909506321,-0.91180431842804,-0.480404317378998,-0.0708793252706528,-0.874178349971771,-0.408739864826202,0.039301909506321,-0.91180431842804,-0.40146279335022,-0.0708463788032532,-0.91313111782074,-0.480404317378998,-0.0708793252706528,-0.874178349971771,0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.504422008991241,0.0866975337266922,-0.859093725681305,-0.031476553529501,0.999380588531494,-0.0157382767647505,-0.408739864826202,0.039301909506321,-0.91180431842804,-0.504422008991241,0.0866975337266922,-0.859093725681305,0.0236125327646732,0.999597251415253,-0.0157416891306639,0,0.998885869979858,0.047191459685564,-0.031476553529501,0.999380588531494,-0.0157382767647505,-0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.0471856184303761,0.998762309551239,-0.0157285407185555,-0.00787279661744833,0.999845147132874,-0.0157455932348967,0,0.998885869979858,0.047191459685564,0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.031476553529501,0.999380588531494,-0.0157382767647505,0,0.999504387378693,0.0314804539084435,-0.031476553529501,0.999380588531494,-0.0157382767647505,0,0.998885869979858,0.047191459685564,0,0.999504387378693,0.0314804539084435,0.614116132259369,0.692848980426788,-0.377917587757111,-0.408739864826202,0.039301909506321,-0.91180431842804,0.0236125327646732,0.999597251415253,-0.0157416891306639,0,0.998885869979858,0.047191459685564,-0.00787279661744833,0.999845147132874,-0.0157455932348967,0,0.999721229076386,0.023615462705493,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.592095017433167,0.0315783992409706,0.805249214172363,0,0.999721229076386,0.023615462705493,0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0628675222396851,0.998021900653839,2.21605378637211e-016,0.614116132259369,0.692848980426788,-0.377917587757111,0.0236125327646732,0.999597251415253,-0.0157416891306639,0,0.999504387378693,0.0314804539084435,0.0628675222396851,0.998021900653839,2.21605378637211e-016,
- 0.715648591518402,0.0943712368607521,0.692055761814117,0,0.999721229076386,0.023615462705493,-0.592095017433167,0.0315783992409706,0.805249214172363,0.715648591518402,0.0943712368607521,0.692055761814117,0,0.998885869979858,0.047191459685564,0,0.999721229076386,0.023615462705493,-0.592095017433167,0.0315783992409706,0.805249214172363,0.709255337715149,-0.0709255263209343,0.701374709606171,0.715648591518402,0.0943712368607521,0.692055761814117,0.709255337715149,-0.0709255263209343,0.701374709606171,-0.592095017433167,0.0315783992409706,0.805249214172363,-0.591929078102112,-0.0394619405269623,0.805023550987244,0,0.998885869979858,0.047191459685564,0.715648591518402,0.0943712368607521,0.692055761814117,0.684954464435577,0.0787304043769836,0.724319696426392,-0.00787157565355301,-0.999690115451813,0.023614726960659,0.709255337715149,-0.0709255263209343,0.701374709606171,-0.591929078102112,-0.0394619405269623,0.805023550987244,0.715648591518402,0.0943712368607521,0.692055761814117,0.675909340381622,-0.0943129435181618,0.730925261974335,0.684954464435577,0.0787304043769836,0.724319696426392,0.675909340381622,-0.0943129435181618,0.730925261974335,0.715648591518402,0.0943712368607521,0.692055761814117,0.709255337715149,-0.0709255263209343,0.701374709606171,0.684954464435577,0.0787304043769836,0.724319696426392,0.489480525255203,0.0789484679698944,0.868433177471161,0,0.998885869979858,0.047191459685564,0.675909340381622,-0.0943129435181618,0.730925261974335,0.489480525255203,0.0789484679698944,0.868433177471161,0.684954464435577,0.0787304043769836,0.724319696426392,0,0.999504387378693,0.0314804539084435,0,0.998885869979858,0.047191459685564,0.489480525255203,0.0789484679698944,0.868433177471161,0.675909340381622,-0.0943129435181618,0.730925261974335,0.709255337715149,-0.0709255263209343,0.701374709606171,0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0314794778823853,-0.999473392963409,0.00786986947059631,0.709255337715149,-0.0709255263209343,0.701374709606171,-0.00787157565355301,-0.999690115451813,0.023614726960659,
- 0.489480525255203,0.0789484679698944,0.868433177471161,0.675909340381622,-0.0943129435181618,0.730925261974335,0.489480525255203,-0.0789484679698944,0.868433177471161,0.0314794778823853,-0.999473392963409,0.00786986947059631,0.489480525255203,-0.0789484679698944,0.868433177471161,0.675909340381622,-0.0943129435181618,0.730925261974335,0.322674632072449,0.0629609003663063,0.944413602352142,0,0.999504387378693,0.0314804539084435,0.489480525255203,0.0789484679698944,0.868433177471161,0.0628675222396851,0.998021900653839,2.21605378637211e-016,0,0.999504387378693,0.0314804539084435,0.322674632072449,0.0629609003663063,0.944413602352142,0.489480525255203,-0.0789484679698944,0.868433177471161,0.371811717748642,-0.0711979866027832,0.925573825836182,0.489480525255203,0.0789484679698944,0.868433177471161,0.322674632072449,0.0629609003663063,0.944413602352142,0.489480525255203,0.0789484679698944,0.868433177471161,0.371811717748642,-0.0711979866027832,0.925573825836182,0.489480525255203,-0.0789484679698944,0.868433177471161,0.0314794778823853,-0.999473392963409,0.00786986947059631,0.00787279661744833,-0.999845147132874,0.0157455932348967,0.00787279661744833,-0.999845147132874,0.0157455932348967,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.489480525255203,-0.0789484679698944,0.868433177471161,0.371811717748642,-0.0711979866027832,0.925573825836182,0.489480525255203,-0.0789484679698944,0.868433177471161,0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.00787157565355301,-0.999690115451813,-0.023614726960659,0.00787279661744833,-0.999845147132874,0.0157455932348967,0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.00787157565355301,-0.999690115451813,-0.023614726960659,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.00787279661744833,-0.999845147132874,0.0157455932348967,-0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.00787157565355301,-0.999690115451813,0.023614726960659,-0.591929078102112,-0.0394619405269623,0.805023550987244,
- -0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.00787157565355301,-0.999690115451813,0.023614726960659,-0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.591929078102112,-0.0394619405269623,0.805023550987244,-0.623033046722412,-0.0473189651966095,0.780762910842896,-0.623033046722412,-0.0473189651966095,0.780762910842896,-0.754573345184326,-0.0707412511110306,-0.65239155292511,-0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.69836688041687,-0.188323646783829,-0.690520048141479,-0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.754573345184326,-0.0707412511110306,-0.65239155292511,0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.69836688041687,-0.188323646783829,-0.690520048141479,-0.00787157565355301,-0.999690115451813,-0.023614726960659,0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.69836688041687,-0.188323646783829,-0.690520048141479,-0.652734398841858,-0.0629141628742218,-0.754969954490662,-0.652734398841858,-0.0629141628742218,-0.754969954490662,-0.00787157565355301,-0.999690115451813,-0.023614726960659,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.00787157565355301,-0.999690115451813,-0.023614726960659,-0.652734398841858,-0.0629141628742218,-0.754969954490662,-0.471739530563354,-0.12579719722271,-0.872718095779419,-0.471739530563354,-0.12579719722271,-0.872718095779419,0.0157382767647505,-0.999380588531494,-0.031476553529501,-0.00787157565355301,-0.999690115451813,-0.023614726960659,0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.00787157565355301,-0.999690115451813,-0.023614726960659,0.0157382767647505,-0.999380588531494,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.031476553529501,
- -0.471739530563354,-0.12579719722271,-0.872718095779419,-0.40146279335022,-0.0708463788032532,-0.91313111782074,-0.661909937858582,-0.732828915119171,0.157597616314888,0.0157382767647505,-0.999380588531494,-0.031476553529501,-0.40146279335022,-0.0708463788032532,-0.91313111782074,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0157382767647505,-0.999380588531494,-0.031476553529501,-0.661909937858582,-0.732828915119171,0.157597616314888,-0.661909937858582,-0.732828915119171,0.157597616314888,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.371811717748642,-0.0711979866027832,0.925573825836182,0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.661909937858582,-0.732828915119171,0.157597616314888,-0.047191459685564,-0.998885869979858,-2.21797218364874e-016,-0.047191459685564,-0.998885869979858,-2.21797218364874e-016,-0.661909937858582,-0.732828915119171,0.157597616314888,-0.284596085548401,-0.0632435753941536,-0.956559121608734,-0.284596085548401,-0.0632435753941536,-0.956559121608734,-0.24377728998661,-0.0707740485668182,-0.967245399951935,-0.047191459685564,-0.998885869979858,-2.21797218364874e-016,0.0550073832273483,-0.99799108505249,-0.0314327888190746,-0.047191459685564,-0.998885869979858,-2.21797218364874e-016,-0.24377728998661,-0.0707740485668182,-0.967245399951935,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.047191459685564,-0.998885869979858,-2.21797218364874e-016,0.0550073832273483,-0.99799108505249,-0.0314327888190746,-0.24377728998661,-0.0707740485668182,-0.967245399951935,0.291981935501099,-0.946968495845795,-0.134153857827187,0.0550073832273483,-0.99799108505249,-0.0314327888190746,0.0550073832273483,-0.99799108505249,-0.0314327888190746,0.118212893605232,-0.992988288402557,-2.20487692193529e-016,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.118212893605232,-0.992988288402557,-2.20487692193529e-016,
- 0.0550073832273483,-0.99799108505249,-0.0314327888190746,0.291981935501099,-0.946968495845795,-0.134153857827187,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.213440403342247,-0.0948624014854431,0.972339630126953,0.371811717748642,-0.0711979866027832,0.925573825836182,0.213440403342247,-0.0948624014854431,0.972339630126953,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.118212893605232,-0.992988288402557,-2.20487692193529e-016,0.371811717748642,-0.0711979866027832,0.925573825836182,0.213440403342247,-0.0948624014854431,0.972339630126953,0.322674632072449,0.0629609003663063,0.944413602352142,0.291981935501099,-0.946968495845795,-0.134153857827187,0,-0.999721229076386,0.023615462705493,0.118212893605232,-0.992988288402557,-2.20487692193529e-016,0.213440403342247,-0.0948624014854431,0.972339630126953,0.118212893605232,-0.992988288402557,-2.20487692193529e-016,0,-0.999721229076386,0.023615462705493,0,-0.999721229076386,0.023615462705493,0.291981935501099,-0.946968495845795,-0.134153857827187,-0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.023614726960659,-0.999690115451813,-0.00787157565355301,0.291981935501099,-0.946968495845795,-0.134153857827187,-0.0947351977229118,-0.0394730009138584,-0.994719624519348,0,-0.999721229076386,0.023615462705493,0.117847494781017,-0.0785649940371513,0.989918947219849,0.213440403342247,-0.0948624014854431,0.972339630126953,-0.0947351977229118,-0.0394730009138584,-0.994719624519348,0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.0947351977229118,-0.0394730009138584,-0.994719624519348,-0.0628364831209183,-0.0314182415604591,-0.997529208660126,0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.0628364831209183,-0.0314182415604591,-0.997529208660126,0.998361051082611,-0.0550277717411518,-0.0157222207635641,-0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0236088801175356,-0.999442577362061,0.0236088801175356,
- 0,-0.999721229076386,0.023615462705493,0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.998361051082611,-0.0550277717411518,-0.0157222207635641,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.0236125327646732,-0.999597251415253,-0.0157416891306639,0.117847494781017,-0.0785649940371513,0.989918947219849,0,-0.999721229076386,0.023615462705493,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.998361051082611,-0.0550277717411518,-0.0157222207635641,0.998361051082611,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.0550277717411518,0.0157222207635641,0.117847494781017,-0.0785649940371513,0.989918947219849,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.998762309551239,0.0471856184303761,0.0157285407185555,0.117847494781017,-0.0785649940371513,0.989918947219849,0.998361051082611,-0.0550277717411518,0.0157222207635641,0.213440403342247,-0.0948624014854431,0.972339630126953,0.117847494781017,-0.0785649940371513,0.989918947219849,0.126392394304276,0.0947943031787872,0.987440645694733,0.126392394304276,0.0947943031787872,0.987440645694733,0.322674632072449,0.0629609003663063,0.944413602352142,0.213440403342247,-0.0948624014854431,0.972339630126953,0.117847494781017,-0.0785649940371513,0.989918947219849,0.998762309551239,0.0471856184303761,0.0157285407185555,0.118033424019814,0.0550822615623474,0.991480767726898,0.118033424019814,0.0550822615623474,0.991480767726898,0.126392394304276,0.0947943031787872,0.987440645694733,0.117847494781017,-0.0785649940371513,0.989918947219849,0.0157441273331642,0.999752104282379,0.0157441273331642,0.118033424019814,0.0550822615623474,0.991480767726898,0.998762309551239,0.0471856184303761,0.0157285407185555,0.0157441273331642,0.999752104282379,0.0157441273331642,0.126392394304276,0.0947943031787872,0.987440645694733,0.118033424019814,0.0550822615623474,0.991480767726898,0.998762309551239,0.0471856184303761,0.0157285407185555,
- 0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.998762309551239,0.0471856184303761,0.0157285407185555,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.126392394304276,0.0947943031787872,0.987440645694733,0.0157441273331642,0.999752104282379,0.0157441273331642,-0.0393286496400833,0.99894767999649,0.0235971882939339,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.00787157565355301,0.999690115451813,0.023614726960659,0.322674632072449,0.0629609003663063,0.944413602352142,0.126392394304276,0.0947943031787872,0.987440645694733,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.00787157565355301,0.999690115451813,0.023614726960659,0.126392394304276,0.0947943031787872,0.987440645694733,0.322674632072449,0.0629609003663063,0.944413602352142,0.00787157565355301,0.999690115451813,0.023614726960659,0.0628675222396851,0.998021900653839,2.21605378637211e-016,-0.0314716808497906,0.999225914478302,-0.0236037615686655,0.00787157565355301,0.999690115451813,0.023614726960659,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.00787157565355301,0.999690115451813,0.023614726960659,-0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0628675222396851,0.998021900653839,2.21605378637211e-016,0.00787157565355301,0.999690115451813,0.023614726960659,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0628675222396851,0.998021900653839,2.21605378637211e-016,-0.0236125327646732,0.999597251415253,-0.0157416891306639,0.614116132259369,0.692848980426788,-0.377917587757111,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.284445017576218,0.0711112543940544,-0.956051349639893,
- 0.614116132259369,0.692848980426788,-0.377917587757111,-0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.284445017576218,0.0711112543940544,-0.956051349639893,0.614116132259369,0.692848980426788,-0.377917587757111,-0.284445017576218,0.0711112543940544,-0.956051349639893,-0.408739864826202,0.039301909506321,-0.91180431842804,-0.40146279335022,-0.0708463788032532,-0.91313111782074,-0.408739864826202,0.039301909506321,-0.91180431842804,-0.284445017576218,0.0711112543940544,-0.956051349639893,-0.284445017576218,0.0711112543940544,-0.956051349639893,-0.465361028909683,-0.0552123263478279,-0.883397221565247,-0.40146279335022,-0.0708463788032532,-0.91313111782074,-0.465361028909683,-0.0552123263478279,-0.883397221565247,-0.284445017576218,0.0711112543940544,-0.956051349639893,-0.284596085548401,-0.0632435753941536,-0.956559121608734,-0.284445017576218,0.0711112543940544,-0.956051349639893,-0.24377728998661,-0.0707740485668182,-0.967245399951935,-0.284596085548401,-0.0632435753941536,-0.956559121608734,-0.165426135063171,0.0551420450210571,-0.984679400920868,-0.284445017576218,0.0711112543940544,-0.956051349639893,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.24377728998661,-0.0707740485668182,-0.967245399951935,-0.284445017576218,0.0711112543940544,-0.956051349639893,-0.165426135063171,0.0551420450210571,-0.984679400920868,0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.165426135063171,0.0551420450210571,-0.984679400920868,-0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.165426135063171,0.0551420450210571,-0.984679400920868,-0.0473794117569923,-0.197414219379425,-0.979174554347992,-0.24377728998661,-0.0707740485668182,-0.967245399951935,-0.165426135063171,0.0551420450210571,-0.984679400920868,-0.0947351977229118,-0.0394730009138584,-0.994719624519348,-0.0473794117569923,-0.197414219379425,-0.979174554347992,-0.0549260377883911,0.0627726167440414,-0.996515274047852,-0.165426135063171,0.0551420450210571,-0.984679400920868,
- 0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.165426135063171,0.0551420450210571,-0.984679400920868,-0.0549260377883911,0.0627726167440414,-0.996515274047852,-0.0947351977229118,-0.0394730009138584,-0.994719624519348,0.999473392963409,0.0314794778823853,-0.00786986947059631,-0.0549260377883911,0.0627726167440414,-0.996515274047852,0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0628364831209183,-0.0314182415604591,-0.997529208660126,-0.0947351977229118,-0.0394730009138584,-0.994719624519348,-0.0549260377883911,0.0627726167440414,-0.996515274047852,0.998361051082611,-0.0550277717411518,-0.0157222207635641,-0.0549260377883911,0.0627726167440414,-0.996515274047852,0.999473392963409,0.0314794778823853,-0.00786986947059631,-0.0628364831209183,-0.0314182415604591,-0.997529208660126,-0.0549260377883911,0.0627726167440414,-0.996515274047852,0.998361051082611,-0.0550277717411518,-0.0157222207635641,0.612655699253082,-0.35345521569252,-0.70691043138504,0.622162997722626,-0.0708793252706528,-0.779672563076019,0.72600919008255,-0.039457019418478,-0.686552107334137,0.622162997722626,-0.0708793252706528,-0.779672563076019,0.685719907283783,0.0630547106266022,-0.725129127502441,0.72600919008255,-0.039457019418478,-0.686552107334137,0.747660756111145,0.0629609078168869,-0.661089479923248,0.72600919008255,-0.039457019418478,-0.686552107334137,0.685719907283783,0.0630547106266022,-0.725129127502441,0.747660756111145,0.0629609078168869,-0.661089479923248,0.748774647712708,-0.0315273553133011,-0.662074446678162,0.72600919008255,-0.039457019418478,-0.686552107334137,0.747660756111145,0.0629609078168869,-0.661089479923248,0.622781336307526,-0.0551831535995007,0.780447483062744,0.748774647712708,-0.0315273553133011,-0.662074446678162,0.622781336307526,-0.0551831535995007,0.780447483062744,0.747660756111145,0.0629609078168869,-0.661089479923248,0.62342095375061,0.0315656177699566,0.781249105930328,0.62342095375061,0.0315656177699566,0.781249105930328,0.747660756111145,0.0629609078168869,-0.661089479923248,0.0314804539084435,0.999504387378693,2.21934556816337e-016,
- 0.747660756111145,0.0629609078168869,-0.661089479923248,0.685719907283783,0.0630547106266022,-0.725129127502441,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.600588858127594,0.0474149063229561,0.798150897026062,0.62342095375061,0.0315656177699566,0.781249105930328,0.622162997722626,-0.0708793252706528,-0.779672563076019,0.591929078102112,0.0394619405269623,-0.805023550987244,0.685719907283783,0.0630547106266022,-0.725129127502441,0.591929078102112,0.0394619405269623,-0.805023550987244,0.622162997722626,-0.0708793252706528,-0.779672563076019,0.573382973670959,-0.0628364831209183,-0.816874265670776,0.047191459685564,0.998885869979858,2.21797218364874e-016,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.685719907283783,0.0630547106266022,-0.725129127502441,0.591929078102112,0.0394619405269623,-0.805023550987244,0.047191459685564,0.998885869979858,2.21797218364874e-016,0.685719907283783,0.0630547106266022,-0.725129127502441,0.600588858127594,0.0474149063229561,0.798150897026062,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999721229076386,0.023615462705493,0,0.999504387378693,0.0314804539084435,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.047191459685564,0.998885869979858,2.21797218364874e-016,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0,0.999504387378693,0.0314804539084435,0,0.999721229076386,0.023615462705493,-0.00787279661744833,0.999845147132874,-0.0157455932348967,0.047191459685564,0.998885869979858,2.21797218364874e-016,0.591929078102112,0.0394619405269623,-0.805023550987244,-0.00787279661744833,0.999845147132874,-0.0157455932348967,0,0.999504387378693,0.0314804539084435,0.047191459685564,0.998885869979858,2.21797218364874e-016,0,0.999721229076386,0.023615462705493,-0.709961175918579,0.0552192032337189,0.702072739601135,0.600588858127594,0.0474149063229561,0.798150897026062,-0.00787279661744833,0.999845147132874,-0.0157455932348967,0.591929078102112,0.0394619405269623,-0.805023550987244,
- -0.36886864900589,0.776978671550751,-0.510137498378754,0,0.999721229076386,0.023615462705493,-0.684954464435577,0.0787304043769836,0.724319696426392,-0.709961175918579,0.0552192032337189,0.702072739601135,-0.684954464435577,0.0787304043769836,0.724319696426392,0,0.999721229076386,0.023615462705493,0,0.999504387378693,0.0314804539084435,-0.70883721113205,-0.0787596926093102,0.700961291790009,0.600588858127594,0.0474149063229561,0.798150897026062,-0.709961175918579,0.0552192032337189,0.702072739601135,-0.70883721113205,-0.0787596926093102,0.700961291790009,-0.709961175918579,0.0552192032337189,0.702072739601135,-0.684954464435577,0.0787304043769836,0.724319696426392,0.600588858127594,0.0474149063229561,0.798150897026062,-0.70883721113205,-0.0787596926093102,0.700961291790009,0.600345194339752,-0.0552949495613575,0.797827124595642,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.0393383838236332,0.999194979667664,-0.00786767713725567,0,0.999504387378693,0.0314804539084435,-0.0393383838236332,0.999194979667664,-0.00786767713725567,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.36886864900589,0.776978671550751,-0.510137498378754,0,0.999504387378693,0.0314804539084435,-0.54416811466217,0.0709784477949142,0.835968494415283,-0.684954464435577,0.0787304043769836,0.724319696426392,-0.54416811466217,0.0709784477949142,0.835968494415283,0,0.999504387378693,0.0314804539084435,-0.0393383838236332,0.999194979667664,-0.00786767713725567,-0.70883721113205,-0.0787596926093102,0.700961291790009,-0.684954464435577,0.0787304043769836,0.724319696426392,-0.647034704685211,-0.0867973417043686,0.757504045963287,-0.684954464435577,0.0787304043769836,0.724319696426392,-0.54416811466217,0.0709784477949142,0.835968494415283,-0.647034704685211,-0.0867973417043686,0.757504045963287,0.600345194339752,-0.0552949495613575,0.797827124595642,-0.70883721113205,-0.0787596926093102,0.700961291790009,0,-0.999225914478302,0.0393396019935608,0,-0.999225914478302,0.0393396019935608,0.622781336307526,-0.0551831535995007,0.780447483062744,
- 0.600345194339752,-0.0552949495613575,0.797827124595642,-0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.70883721113205,-0.0787596926093102,0.700961291790009,-0.647034704685211,-0.0867973417043686,0.757504045963287,-0.70883721113205,-0.0787596926093102,0.700961291790009,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0,-0.999225914478302,0.0393396019935608,0.622781336307526,-0.0551831535995007,0.780447483062744,0,-0.999225914478302,0.0393396019935608,0.023614726960659,-0.999690115451813,0.00787157565355301,0.023614726960659,-0.999690115451813,0.00787157565355301,0.748774647712708,-0.0315273553133011,-0.662074446678162,0.622781336307526,-0.0551831535995007,0.780447483062744,0.023614726960659,-0.999690115451813,0.00787157565355301,0.72600919008255,-0.039457019418478,-0.686552107334137,0.748774647712708,-0.0315273553133011,-0.662074446678162,0.72600919008255,-0.039457019418478,-0.686552107334137,0.023614726960659,-0.999690115451813,0.00787157565355301,0,-0.999876022338867,-0.0157460793852806,0,-0.999225914478302,0.0393396019935608,0,-0.999876022338867,-0.0157460793852806,0.023614726960659,-0.999690115451813,0.00787157565355301,0,-0.999876022338867,-0.0157460793852806,0,-0.999225914478302,0.0393396019935608,-0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.647034704685211,-0.0867973417043686,0.757504045963287,0.0235971882939339,-0.99894767999649,0.0393286496400833,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0235971882939339,-0.99894767999649,0.0393286496400833,0,-0.999876022338867,-0.0157460793852806,-0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.54416811466217,0.0709784477949142,0.835968494415283,-0.480404317378998,-0.0708793252706528,0.874178349971771,-0.647034704685211,-0.0867973417043686,0.757504045963287,0.0235971882939339,-0.99894767999649,0.0393286496400833,-0.647034704685211,-0.0867973417043686,0.757504045963287,-0.480404317378998,-0.0708793252706528,0.874178349971771,-0.54416811466217,0.0709784477949142,0.835968494415283,-0.35521274805069,0.0789361670613289,0.931446731090546,
- -0.480404317378998,-0.0708793252706528,0.874178349971771,0,-0.999876022338867,-0.0157460793852806,0.0235971882939339,-0.99894767999649,0.0393286496400833,0.0706801414489746,-0.99737536907196,0.0157066993415356,0.0706801414489746,-0.99737536907196,0.0157066993415356,0.605754911899567,-0.196673661470413,-0.770960748195648,0,-0.999876022338867,-0.0157460793852806,0.605754911899567,-0.196673661470413,-0.770960748195648,0.0706801414489746,-0.99737536907196,0.0157066993415356,0.559871435165405,-0.118282705545425,-0.820093393325806,0.0706801414489746,-0.99737536907196,0.0157066993415356,0.471041202545166,-0.0706561729311943,-0.879276931285858,0.559871435165405,-0.118282705545425,-0.820093393325806,0.0706801414489746,-0.99737536907196,0.0157066993415356,0.43317836523056,-0.0787597000598907,-0.897860586643219,0.471041202545166,-0.0706561729311943,-0.879276931285858,0.43317836523056,-0.0787597000598907,-0.897860586643219,0.0706801414489746,-0.99737536907196,0.0157066993415356,-0.0471550077199936,-0.998114347457886,-0.0392958410084248,0.0235971882939339,-0.99894767999649,0.0393286496400833,-0.0471550077199936,-0.998114347457886,-0.0392958410084248,0.0706801414489746,-0.99737536907196,0.0157066993415356,0.361845970153809,-0.0865283831954002,-0.928213536739349,0.43317836523056,-0.0787597000598907,-0.897860586643219,-0.0471550077199936,-0.998114347457886,-0.0392958410084248,-0.394594758749008,-0.07891895622015,0.915459871292114,0.0235971882939339,-0.99894767999649,0.0393286496400833,-0.480404317378998,-0.0708793252706528,0.874178349971771,-0.394594758749008,-0.07891895622015,0.915459871292114,-0.480404317378998,-0.0708793252706528,0.874178349971771,-0.35521274805069,0.0789361670613289,0.931446731090546,-0.0471550077199936,-0.998114347457886,-0.0392958410084248,0.0235971882939339,-0.99894767999649,0.0393286496400833,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0235971882939339,-0.99894767999649,0.0393286496400833,-0.394594758749008,-0.07891895622015,0.915459871292114,
- 0.031476553529501,-0.999380588531494,-0.0157382767647505,0.361845970153809,-0.0865283831954002,-0.928213536739349,-0.0471550077199936,-0.998114347457886,-0.0392958410084248,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.0471550077199936,-0.998114347457886,-0.0392958410084248,0.031476553529501,-0.999380588531494,-0.0157382767647505,0.189641863107681,-0.0632139518857002,-0.979816317558289,0.361845970153809,-0.0865283831954002,-0.928213536739349,-0.394594758749008,-0.07891895622015,0.915459871292114,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.189641863107681,-0.0632139518857002,-0.979816317558289,0.031476553529501,-0.999380588531494,-0.0157382767647505,0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.031476553529501,-0.999380588531494,-0.0157382767647505,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.117934882640839,-0.188695803284645,-0.974928319454193,0.189641863107681,-0.0632139518857002,-0.979816317558289,0.0236088801175356,-0.999442577362061,-0.0236088801175356,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.117934882640839,-0.188695803284645,-0.974928319454193,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.0236088801175356,-0.999442577362061,-0.0236088801175356,0.0470736660063267,-0.0706104934215546,-0.996392607688904,0.117934882640839,-0.188695803284645,-0.974928319454193,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.998854994773865,-0.047189999371767,-0.00786499958485365,0.0470736660063267,-0.0706104934215546,-0.996392607688904,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,
- -0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.110154293477535,-0.0708134695887566,0.99138867855072,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.110154293477535,-0.0708134695887566,0.99138867855072,-0.110154293477535,-0.0708134695887566,0.99138867855072,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.998731434345245,-0.039320133626461,0.031456109136343,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.394594758749008,-0.07891895622015,0.915459871292114,-0.149601668119431,-0.0944852605462074,0.984221458435059,-0.149601668119431,-0.0944852605462074,0.984221458435059,-0.110154293477535,-0.0708134695887566,0.99138867855072,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.35521274805069,0.0789361670613289,0.931446731090546,-0.149601668119431,-0.0944852605462074,0.984221458435059,-0.394594758749008,-0.07891895622015,0.915459871292114,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.110154293477535,-0.0708134695887566,0.99138867855072,-0.109940111637115,0.0942343771457672,0.989461004734039,-0.149601668119431,-0.0944852605462074,0.984221458435059,-0.109940111637115,0.0942343771457672,0.989461004734039,-0.110154293477535,-0.0708134695887566,0.99138867855072,-0.149601668119431,-0.0944852605462074,0.984221458435059,-0.35521274805069,0.0789361670613289,0.931446731090546,-0.157499849796295,0.0787499248981476,0.984374046325684,-0.109940111637115,0.0942343771457672,0.989461004734039,
- -0.149601668119431,-0.0944852605462074,0.984221458435059,-0.157499849796295,0.0787499248981476,0.984374046325684,-0.109940111637115,0.0942343771457672,0.989461004734039,-0.0236125327646732,0.999597251415253,0.0157416891306639,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0236125327646732,0.999597251415253,0.0157416891306639,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.0393286496400833,0.99894767999649,0.0235971882939339,-0.109940111637115,0.0942343771457672,0.989461004734039,-0.157499849796295,0.0787499248981476,0.984374046325684,-0.109940111637115,0.0942343771457672,0.989461004734039,-0.0393286496400833,0.99894767999649,0.0235971882939339,-0.0236125327646732,0.999597251415253,0.0157416891306639,-0.35521274805069,0.0789361670613289,0.931446731090546,-0.0393286496400833,0.99894767999649,0.0235971882939339,-0.157499849796295,0.0787499248981476,0.984374046325684,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.0236125327646732,0.999597251415253,0.0157416891306639,0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.0236125327646732,0.999597251415253,0.0157416891306639,0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.0393286496400833,0.99894767999649,0.0235971882939339,-0.35521274805069,0.0789361670613289,0.931446731090546,0.00786767713725567,0.999194979667664,0.0393383838236332,-0.54416811466217,0.0709784477949142,0.835968494415283,0.00786767713725567,0.999194979667664,0.0393383838236332,-0.35521274805069,0.0789361670613289,0.931446731090546,0.00786767713725567,0.999194979667664,0.0393383838236332,-0.54416811466217,0.0709784477949142,0.835968494415283,-0.0393383838236332,0.999194979667664,-0.00786767713725567,0.00787279661744833,0.999845147132874,-0.0157455932348967,0.0869463384151459,0.0237126369029284,-0.995930731296539,
- -0.999845147132874,0.0157455932348967,-0.00787279661744833,0.0869463384151459,0.0237126369029284,-0.995930731296539,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999845147132874,0.0157455932348967,-0.00787279661744833,-0.998854994773865,-0.047189999371767,-0.00786499958485365,0.0869463384151459,0.0237126369029284,-0.995930731296539,0.0470736660063267,-0.0706104934215546,-0.996392607688904,0.0470736660063267,-0.0706104934215546,-0.996392607688904,0.0869463384151459,0.0237126369029284,-0.995930731296539,0.0946202725172043,0.0630801841616631,-0.99351292848587,0.00787279661744833,0.999845147132874,-0.0157455932348967,0.0946202725172043,0.0630801841616631,-0.99351292848587,0.0869463384151459,0.0237126369029284,-0.995930731296539,0.0470736660063267,-0.0706104934215546,-0.996392607688904,0.0946202725172043,0.0630801841616631,-0.99351292848587,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.0946202725172043,0.0630801841616631,-0.99351292848587,0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.0157338920980692,0.999102234840393,-0.0393347330391407,-0.0157338920980692,0.999102234840393,-0.0393347330391407,0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.0946202725172043,0.0630801841616631,-0.99351292848587,0.817176818847656,0.267153978347778,-0.510735511779785,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.817176818847656,0.267153978347778,-0.510735511779785,0.0946202725172043,0.0630801841616631,-0.99351292848587,-0.0157338920980692,0.999102234840393,-0.0393347330391407,0.142169266939163,-0.0710846334695816,-0.987286627292633,0.817176818847656,0.267153978347778,-0.510735511779785,-0.455733239650726,0.0628597587347031,-0.887894093990326,-0.455733239650726,0.0628597587347031,-0.887894093990326,0.817176818847656,0.267153978347778,-0.510735511779785,-0.0157338920980692,0.999102234840393,-0.0393347330391407,-0.455733239650726,0.0628597587347031,-0.887894093990326,0.189641863107681,-0.0632139518857002,-0.979816317558289,
- 0.142169266939163,-0.0710846334695816,-0.987286627292633,0.229129120707512,0.0553070306777954,-0.971823513507843,-0.455733239650726,0.0628597587347031,-0.887894093990326,-0.0157338920980692,0.999102234840393,-0.0393347330391407,0.189641863107681,-0.0632139518857002,-0.979816317558289,-0.455733239650726,0.0628597587347031,-0.887894093990326,0.229129120707512,0.0553070306777954,-0.971823513507843,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0157338920980692,0.999102234840393,-0.0393347330391407,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.229129120707512,0.0553070306777954,-0.971823513507843,-0.0157338920980692,0.999102234840393,-0.0393347330391407,0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0393286496400833,0.99894767999649,0.0235971882939339,0.00786767713725567,0.999194979667664,0.0393383838236332,0.371347218751907,0.0869110524654388,-0.924417495727539,0.189641863107681,-0.0632139518857002,-0.979816317558289,0.229129120707512,0.0553070306777954,-0.971823513507843,0.229129120707512,0.0553070306777954,-0.971823513507843,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.371347218751907,0.0869110524654388,-0.924417495727539,0.189641863107681,-0.0632139518857002,-0.979816317558289,0.371347218751907,0.0869110524654388,-0.924417495727539,0.322824656963348,-0.0551164075732231,-0.944852709770203,0.371347218751907,0.0869110524654388,-0.924417495727539,0.43317836523056,-0.0787597000598907,-0.897860586643219,0.322824656963348,-0.0551164075732231,-0.944852709770203,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.00786767713725567,0.999194979667664,0.0393383838236332,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.371347218751907,0.0869110524654388,-0.924417495727539,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.00786767713725567,0.999194979667664,0.0393383838236332,-0.0393383838236332,0.999194979667664,-0.00786767713725567,
- 0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.0393383838236332,0.999194979667664,-0.00786767713725567,-0.36886864900589,0.776978671550751,-0.510137498378754,0.371347218751907,0.0869110524654388,-0.924417495727539,0.481076210737228,0.0473189726471901,-0.875400960445404,0.43317836523056,-0.0787597000598907,-0.897860586643219,0.371347218751907,0.0869110524654388,-0.924417495727539,0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.481076210737228,0.0473189726471901,-0.875400960445404,0.481076210737228,0.0473189726471901,-0.875400960445404,0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.36886864900589,0.776978671550751,-0.510137498378754,0.471041202545166,-0.0706561729311943,-0.879276931285858,0.43317836523056,-0.0787597000598907,-0.897860586643219,0.481076210737228,0.0473189726471901,-0.875400960445404,0.591929078102112,0.0394619405269623,-0.805023550987244,0.481076210737228,0.0473189726471901,-0.875400960445404,-0.36886864900589,0.776978671550751,-0.510137498378754,0.481076210737228,0.0473189726471901,-0.875400960445404,0.573382973670959,-0.0628364831209183,-0.816874265670776,0.471041202545166,-0.0706561729311943,-0.879276931285858,0.591929078102112,0.0394619405269623,-0.805023550987244,0.573382973670959,-0.0628364831209183,-0.816874265670776,0.481076210737228,0.0473189726471901,-0.875400960445404,0.998361051082611,0.0550277717411518,0.0157222207635641,0.0157222207635641,-0.0550277717411518,0.998361051082611,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.0157222207635641,-0.0550277717411518,0.998361051082611,0.998361051082611,0.0550277717411518,0.0157222207635641,0.0157338920980692,0.0393347330391407,0.999102234840393,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.996239423751831,-0.0862884521484375,0.00784440524876118,0.998361051082611,0.0550277717411518,0.0157222207635641,0.0157338920980692,0.0393347330391407,0.999102234840393,0.998361051082611,0.0550277717411518,0.0157222207635641,0.0236088801175356,0.999442577362061,0.0236088801175356,0.998361051082611,0.0550277717411518,0.0157222207635641,
- 0.996239423751831,-0.0862884521484375,0.00784440524876118,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.998361051082611,0.0550277717411518,0.0157222207635641,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.0236088801175356,0.999442577362061,0.0236088801175356,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.996239423751831,-0.0862884521484375,0.00784440524876118,0.99737536907196,-0.0706801414489746,-0.0157066993415356,0.0236088801175356,0.999442577362061,0.0236088801175356,-0.0157285407185555,0.0471856184303761,0.998762309551239,0.0157338920980692,0.0393347330391407,0.999102234840393,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.99737536907196,-0.0706801414489746,-0.0157066993415356,0.996515274047852,-0.0627726167440414,-0.0549260377883911,-0.0157285407185555,0.0471856184303761,0.998762309551239,0.0236088801175356,0.999442577362061,0.0236088801175356,-0.0157441273331642,0.999752104282379,0.0157441273331642,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.996515274047852,-0.0627726167440414,-0.0549260377883911,0.993111670017242,0.0394091904163361,-0.110345736145973,0.970038890838623,-0.0552054643630981,-0.23659485578537,0.993111670017242,0.0394091904163361,-0.110345736145973,0.996515274047852,-0.0627726167440414,-0.0549260377883911,0.983703315258026,-0.0708266347646713,-0.165262147784233,0.993111670017242,0.0394091904163361,-0.110345736145973,0.970038890838623,-0.0552054643630981,-0.23659485578537,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.0314716808497906,0.999225914478302,-0.0236037615686655,0.0236088801175356,0.999442577362061,0.0236088801175356,0.983703315258026,-0.0708266347646713,-0.165262147784233,0.982729911804199,0.0393091961741447,-0.180822312831879,0.993111670017242,0.0394091904163361,-0.110345736145973,0.982729911804199,0.0393091961741447,-0.180822312831879,0.983703315258026,-0.0708266347646713,-0.165262147784233,0.965366780757904,-0.070636585354805,-0.251152336597443,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.993111670017242,0.0394091904163361,-0.110345736145973,
- 0.0157416891306639,0.999597251415253,-0.0236125327646732,0.998114347457886,0.0471550077199936,-0.0392958410084248,0.0157416891306639,0.999597251415253,-0.0236125327646732,0.0314716808497906,0.999225914478302,-0.0236037615686655,0.219501554965973,0.689862012863159,0.689862012863159,0.993111670017242,0.0394091904163361,-0.110345736145973,0.982729911804199,0.0393091961741447,-0.180822312831879,0.0157416891306639,0.999597251415253,-0.0236125327646732,0.993111670017242,0.0394091904163361,-0.110345736145973,0.219501554965973,0.689862012863159,0.689862012863159,0.982729911804199,0.0393091961741447,-0.180822312831879,0.965366780757904,-0.070636585354805,-0.251152336597443,0.954859972000122,0.0868054553866386,-0.284090548753738,0.965366780757904,-0.070636585354805,-0.251152336597443,0.891063034534454,-0.0630841106176376,-0.44947424530983,0.954859972000122,0.0868054553866386,-0.284090548753738,0.219501554965973,0.689862012863159,0.689862012863159,0.982729911804199,0.0393091961741447,-0.180822312831879,0.0157416891306639,0.999597251415253,0.0236125327646732,0.982729911804199,0.0393091961741447,-0.180822312831879,0.954859972000122,0.0868054553866386,-0.284090548753738,0.0157416891306639,0.999597251415253,0.0236125327646732,-0.0157149396836758,0.997898638248444,0.0628597587347031,0.0157416891306639,0.999597251415253,-0.0236125327646732,0.219501554965973,0.689862012863159,0.689862012863159,0.0157416891306639,0.999597251415253,0.0236125327646732,-0.0157149396836758,0.997898638248444,0.0628597587347031,0.219501554965973,0.689862012863159,0.689862012863159,0.0314716808497906,0.999225914478302,-0.0236037615686655,0.0157416891306639,0.999597251415253,-0.0236125327646732,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,0.0157416891306639,0.999597251415253,-0.0236125327646732,-0.0157149396836758,0.997898638248444,0.0628597587347031,0.0236088801175356,0.999442577362061,0.0236088801175356,0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0157285407185555,0.998762309551239,-0.0471856184303761,
- -0.0157285407185555,0.998762309551239,-0.0471856184303761,0.0314716808497906,0.999225914478302,-0.0236037615686655,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.0157441273331642,0.999752104282379,0.0157441273331642,0.0236088801175356,0.999442577362061,0.0236088801175356,-0.0157285407185555,0.998762309551239,-0.0471856184303761,-0.0157285407185555,0.998762309551239,-0.0471856184303761,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.0157441273331642,0.999752104282379,0.0157441273331642,-0.0157285407185555,0.998762309551239,-0.0471856184303761,-0.994224011898041,0.0631253346800804,0.0867973417043686,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.0157149396836758,0.997898638248444,0.0628597587347031,-0.0314804539084435,0.999504387378693,2.21934556816337e-016,-0.994224011898041,0.0631253346800804,0.0867973417043686,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.0157441273331642,0.999752104282379,0.0157441273331642,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.997775554656982,0.0471390038728714,0.0471390038728714,-0.0157441273331642,0.999752104282379,0.0157441273331642,-0.997775554656982,0.0471390038728714,0.0471390038728714,-0.0157285407185555,0.0471856184303761,0.998762309551239,-0.995091795921326,-0.0868730992078781,0.047385323792696,-0.0157285407185555,0.0471856184303761,0.998762309551239,-0.997775554656982,0.0471390038728714,0.0471390038728714,-0.997775554656982,0.0471390038728714,0.0471390038728714,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.995091795921326,-0.0868730992078781,0.047385323792696,-0.0157285407185555,0.0471856184303761,0.998762309551239,-0.995091795921326,-0.0868730992078781,0.047385323792696,-0.0157285407185555,-0.0471856184303761,0.998762309551239,-0.995091795921326,-0.0868730992078781,0.047385323792696,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.995994210243225,-0.0862672179937363,0.0235274210572243,
- -0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.994224011898041,0.0631253346800804,0.0867973417043686,-0.995994210243225,-0.0862672179937363,0.0235274210572243,-0.0157285407185555,-0.0471856184303761,0.998762309551239,-0.995091795921326,-0.0868730992078781,0.047385323792696,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0314716808497906,-0.999225914478302,0.0236037615686655,0.0157222207635641,-0.0550277717411518,0.998361051082611,-0.0157285407185555,-0.0471856184303761,0.998762309551239,-0.995091795921326,-0.0868730992078781,0.047385323792696,-0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.995091795921326,-0.0868730992078781,0.047385323792696,-0.995994210243225,-0.0862672179937363,0.0235274210572243,0.0157222207635641,-0.0550277717411518,0.998361051082611,-0.0314716808497906,-0.999225914478302,0.0236037615686655,0.00787157565355301,-0.999690115451813,0.023614726960659,0.00787157565355301,-0.999690115451813,0.023614726960659,0.998762309551239,-0.0471856184303761,0.0157285407185555,0.0157222207635641,-0.0550277717411518,0.998361051082611,0.00787157565355301,-0.999690115451813,0.023614726960659,0.967664361000061,-0.251750081777573,0.0157343801110983,0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.0314716808497906,-0.999225914478302,0.0236037615686655,0.00787157565355301,-0.999690115451813,-0.023614726960659,0.00787157565355301,-0.999690115451813,0.023614726960659,0.967664361000061,-0.251750081777573,0.0157343801110983,0.00787157565355301,-0.999690115451813,0.023614726960659,0.00787157565355301,-0.999690115451813,-0.023614726960659,0.00787157565355301,-0.999690115451813,-0.023614726960659,-0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.023614726960659,-0.999690115451813,-0.00787157565355301,0.967664361000061,-0.251750081777573,0.0157343801110983,0.00787157565355301,-0.999690115451813,-0.023614726960659,0.0237104147672653,-0.948416590690613,0.316138863563538,
- -0.023614726960659,-0.999690115451813,-0.00787157565355301,0.0237104147672653,-0.948416590690613,0.316138863563538,0.00787157565355301,-0.999690115451813,-0.023614726960659,0.0237104147672653,-0.948416590690613,0.316138863563538,0.99737536907196,-0.0706801414489746,-0.0157066993415356,0.967664361000061,-0.251750081777573,0.0157343801110983,0.0237104147672653,-0.948416590690613,0.316138863563538,-0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.0236359722912312,-0.992710888385773,0.118179865181446,-0.023614726960659,-0.999690115451813,-0.00787157565355301,-0.995994210243225,-0.0862672179937363,0.0235274210572243,-0.0236359722912312,-0.992710888385773,0.118179865181446,0.99737536907196,-0.0706801414489746,-0.0157066993415356,0.0237104147672653,-0.948416590690613,0.316138863563538,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.0236359722912312,-0.992710888385773,0.118179865181446,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.0237104147672653,-0.948416590690613,0.316138863563538,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.00786499958485365,-0.998854994773865,-0.047189999371767,0.99737536907196,-0.0706801414489746,-0.0157066993415356,0.99737536907196,-0.0706801414489746,-0.0157066993415356,0.00786499958485365,-0.998854994773865,-0.047189999371767,0.996515274047852,-0.0627726167440414,-0.0549260377883911,0.00785213895142078,-0.730248928070068,-0.68313604593277,0.996515274047852,-0.0627726167440414,-0.0549260377883911,0.00786499958485365,-0.998854994773865,-0.047189999371767,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.0236359722912312,-0.992710888385773,0.118179865181446,-0.0314454175531864,-0.99839198589325,-0.0471681281924248,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.0314454175531864,-0.99839198589325,-0.0471681281924248,0.00786499958485365,-0.998854994773865,-0.047189999371767,-0.995994210243225,-0.0862672179937363,0.0235274210572243,-0.0314454175531864,-0.99839198589325,-0.0471681281924248,-0.0236359722912312,-0.992710888385773,0.118179865181446,
- -0.0314454175531864,-0.99839198589325,-0.0471681281924248,0.00785213895142078,-0.730248928070068,-0.68313604593277,0.00786499958485365,-0.998854994773865,-0.047189999371767,-0.0314454175531864,-0.99839198589325,-0.0471681281924248,-0.995994210243225,-0.0862672179937363,0.0235274210572243,-0.987286627292633,-0.0710846334695816,0.142169266939163,-0.995994210243225,-0.0862672179937363,0.0235274210572243,-0.994224011898041,0.0631253346800804,0.0867973417043686,-0.987286627292633,-0.0710846334695816,0.142169266939163,0.00785213895142078,-0.730248928070068,-0.68313604593277,-0.0314454175531864,-0.99839198589325,-0.0471681281924248,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.987286627292633,-0.0710846334695816,0.142169266939163,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.0314454175531864,-0.99839198589325,-0.0471681281924248,-0.0157441273331642,-0.999752104282379,0.0157441273331642,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.00785213895142078,-0.730248928070068,-0.68313604593277,0.983703315258026,-0.0708266347646713,-0.165262147784233,0.00785213895142078,-0.730248928070068,-0.68313604593277,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.96048104763031,-0.133837521076202,-0.244056656956673,0.983703315258026,-0.0708266347646713,-0.165262147784233,0.96048104763031,-0.133837521076202,-0.244056656956673,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,-0.0157441273331642,-0.999752104282379,0.0157441273331642,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.891063034534454,-0.0630841106176376,-0.44947424530983,0.96048104763031,-0.133837521076202,-0.244056656956673,-0.987286627292633,-0.0710846334695816,0.142169266939163,-0.960302531719208,-0.0787133201956749,0.267625272274017,-0.0157441273331642,-0.999752104282379,0.0157441273331642,
- 0.891063034534454,-0.0630841106176376,-0.44947424530983,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0.839377045631409,-0.18827149271965,-0.509901940822601,0.891063034534454,-0.0630841106176376,-0.44947424530983,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.0157455932348967,-0.999845147132874,0.00787279661744833,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.960302531719208,-0.0787133201956749,0.267625272274017,-0.0157455932348967,-0.999845147132874,0.00787279661744833,-0.0157382767647505,-0.999380588531494,0.031476553529501,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,-0.0157455932348967,-0.999845147132874,0.00787279661744833,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,-0.0157382767647505,-0.999380588531494,0.031476553529501,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,-0.960302531719208,-0.0787133201956749,0.267625272274017,-0.0157382767647505,-0.999380588531494,0.031476553529501,-0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157382767647505,-0.999380588531494,-0.031476553529501,0.839377045631409,-0.18827149271965,-0.509901940822601,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,-0.0157382767647505,-0.999380588531494,0.031476553529501,0.0157382767647505,-0.999380588531494,-0.031476553529501,0.0314804539084435,-0.999504387378693,-2.21934556816337e-016,0.839377045631409,-0.18827149271965,-0.509901940822601,0.0157382767647505,-0.999380588531494,-0.031476553529501,0.813803434371948,-0.0711090341210365,-0.576773345470428,-0.605605006217957,-0.047189999371767,-0.794364988803864,0.813803434371948,-0.0711090341210365,-0.576773345470428,0.0157382767647505,-0.999380588531494,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.031476553529501,-0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.605605006217957,-0.047189999371767,-0.794364988803864,
- 0.0157382767647505,-0.999380588531494,-0.031476553529501,-0.0157382767647505,-0.999380588531494,0.031476553529501,-0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.636592626571655,-0.0392958410084248,-0.770198464393616,-0.605605006217957,-0.047189999371767,-0.794364988803864,-0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.851132810115814,-0.070927731692791,0.520136713981628,-0.636592626571655,-0.0392958410084248,-0.770198464393616,-0.0157382767647505,-0.999380588531494,0.031476553529501,-0.851132810115814,-0.070927731692791,0.520136713981628,-0.0236125327646732,-0.999597251415253,-0.0157416891306639,-0.851132810115814,-0.070927731692791,0.520136713981628,-0.636769652366638,0.0314454138278961,-0.770412623882294,-0.636592626571655,-0.0392958410084248,-0.770198464393616,-0.851132810115814,-0.070927731692791,0.520136713981628,-0.0157382767647505,-0.999380588531494,0.031476553529501,-0.872475445270538,-0.0943216681480408,0.479468494653702,-0.0157382767647505,-0.999380588531494,0.031476553529501,-0.960302531719208,-0.0787133201956749,0.267625272274017,-0.872475445270538,-0.0943216681480408,0.479468494653702,-0.636769652366638,0.0314454138278961,-0.770412623882294,-0.851132810115814,-0.070927731692791,0.520136713981628,-0.845999240875244,0.0939999222755432,0.524832844734192,-0.872475445270538,-0.0943216681480408,0.479468494653702,-0.845999240875244,0.0939999222755432,0.524832844734192,-0.851132810115814,-0.070927731692791,0.520136713981628,-0.845999240875244,0.0939999222755432,0.524832844734192,-0.023614726960659,0.999690115451813,-0.00787157565355301,-0.636769652366638,0.0314454138278961,-0.770412623882294,-0.023614726960659,0.999690115451813,-0.00787157565355301,-0.619422197341919,0.0392039343714714,-0.78407871723175,-0.636769652366638,0.0314454138278961,-0.770412623882294,-0.845999240875244,0.0939999222755432,0.524832844734192,-0.872475445270538,-0.0943216681480408,0.479468494653702,-0.870354056358337,0.0784102752804756,0.486143708229065,
- -0.619422197341919,0.0392039343714714,-0.78407871723175,-0.023614726960659,0.999690115451813,-0.00787157565355301,0.0157455932348967,0.999845147132874,-0.00787279661744833,0.0157455932348967,0.999845147132874,-0.00787279661744833,-0.60620528459549,0.0157455913722515,-0.795152366161346,-0.619422197341919,0.0392039343714714,-0.78407871723175,-0.845999240875244,0.0939999222755432,0.524832844734192,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.023614726960659,0.999690115451813,-0.00787157565355301,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.845999240875244,0.0939999222755432,0.524832844734192,-0.870354056358337,0.0784102752804756,0.486143708229065,-0.0393347330391407,0.999102234840393,-0.0157338920980692,0.0157455932348967,0.999845147132874,-0.00787279661744833,-0.023614726960659,0.999690115451813,-0.00787157565355301,-0.962302029132843,0.0788772106170654,0.260294795036316,-0.870354056358337,0.0784102752804756,0.486143708229065,-0.872475445270538,-0.0943216681480408,0.479468494653702,-0.960302531719208,-0.0787133201956749,0.267625272274017,-0.962302029132843,0.0788772106170654,0.260294795036316,-0.872475445270538,-0.0943216681480408,0.479468494653702,-0.870354056358337,0.0784102752804756,0.486143708229065,-0.962302029132843,0.0788772106170654,0.260294795036316,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.987286627292633,-0.0710846334695816,0.142169266939163,-0.962302029132843,0.0788772106170654,0.260294795036316,-0.960302531719208,-0.0787133201956749,0.267625272274017,-0.994224011898041,0.0631253346800804,0.0867973417043686,-0.962302029132843,0.0788772106170654,0.260294795036316,-0.987286627292633,-0.0710846334695816,0.142169266939163,-0.962302029132843,0.0788772106170654,0.260294795036316,-0.994224011898041,0.0631253346800804,0.0867973417043686,-0.0314794778823853,0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.999473392963409,-0.00786986947059631,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.962302029132843,0.0788772106170654,0.260294795036316,
- -0.0157149396836758,0.997898638248444,0.0628597587347031,-0.0314794778823853,0.999473392963409,-0.00786986947059631,-0.994224011898041,0.0631253346800804,0.0867973417043686,0.0157416891306639,0.999597251415253,0.0236125327646732,-0.0314794778823853,0.999473392963409,-0.00786986947059631,-0.0157149396836758,0.997898638248444,0.0628597587347031,0.0157416891306639,0.999597251415253,0.0236125327646732,0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0314794778823853,0.999473392963409,-0.00786986947059631,0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0314794778823853,0.999473392963409,-0.00786986947059631,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0157416891306639,0.999597251415253,0.0236125327646732,0.954859972000122,0.0868054553866386,-0.284090548753738,-0.0393347330391407,0.999102234840393,-0.0157338920980692,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.0157455932348967,0.999845147132874,-0.00787279661744833,-0.0393347330391407,0.999102234840393,-0.0157338920980692,0.954859972000122,0.0868054553866386,-0.284090548753738,0.906805813312531,0.0551968775689602,-0.417919218540192,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.0236088801175356,0.999442577362061,-0.0236088801175356,0.906805813312531,0.0551968775689602,-0.417919218540192,0.954859972000122,0.0868054553866386,-0.284090548753738,0.891063034534454,-0.0630841106176376,-0.44947424530983,0.906805813312531,0.0551968775689602,-0.417919218540192,0.891063034534454,-0.0630841106176376,-0.44947424530983,0.424198627471924,0.0628442391753197,-0.903385937213898,0.906805813312531,0.0551968775689602,-0.417919218540192,0.906805813312531,0.0551968775689602,-0.417919218540192,0.424198627471924,0.0628442391753197,-0.903385937213898,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.424198627471924,0.0628442391753197,-0.903385937213898,
- 0.891063034534454,-0.0630841106176376,-0.44947424530983,0.865578413009644,-0.0708200484514236,-0.495740383863449,0.907737612724304,0.276267945766449,0.315734833478928,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.424198627471924,0.0628442391753197,-0.903385937213898,0.865578413009644,-0.0708200484514236,-0.495740383863449,0.907737612724304,0.276267945766449,0.315734833478928,0.424198627471924,0.0628442391753197,-0.903385937213898,0.907737612724304,0.276267945766449,0.315734833478928,0.842310845851898,0.0629765093326569,-0.535300314426422,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.842310845851898,0.0629765093326569,-0.535300314426422,0.907737612724304,0.276267945766449,0.315734833478928,0.865578413009644,-0.0708200484514236,-0.495740383863449,0.842310845851898,0.0629765093326569,-0.535300314426422,0.0157455932348967,0.999845147132874,-0.00787279661744833,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.865578413009644,-0.0708200484514236,-0.495740383863449,0.813803434371948,-0.0711090341210365,-0.576773345470428,0.842310845851898,0.0629765093326569,-0.535300314426422,0.842310845851898,0.0629765093326569,-0.535300314426422,0.824627220630646,0.0157071854919195,-0.565458595752716,0.0157455932348967,0.999845147132874,-0.00787279661744833,0.842310845851898,0.0629765093326569,-0.535300314426422,0.813803434371948,-0.0711090341210365,-0.576773345470428,0.824627220630646,0.0157071854919195,-0.565458595752716,0.0157455932348967,0.999845147132874,-0.00787279661744833,0.824627220630646,0.0157071854919195,-0.565458595752716,-0.60620528459549,0.0157455913722515,-0.795152366161346,-0.605605006217957,-0.047189999371767,-0.794364988803864,0.824627220630646,0.0157071854919195,-0.565458595752716,0.813803434371948,-0.0711090341210365,-0.576773345470428,0.824627220630646,0.0157071854919195,-0.565458595752716,-0.605605006217957,-0.047189999371767,-0.794364988803864,-0.60620528459549,0.0157455913722515,-0.795152366161346,0.732737958431244,0.0630312263965607,-0.677585601806641,0.757999837398529,0.0789583101868629,-0.647458136081696,
- 0.763306438922882,-0.031476553529501,-0.645269334316254,0.732737958431244,0.0630312263965607,-0.677585601806641,0.763306438922882,-0.031476553529501,-0.645269334316254,0.79074239730835,-0.0632593929767609,-0.608871698379517,0.787303924560547,0.0551112778484821,-0.614097118377686,0.763306438922882,-0.031476553529501,-0.645269334316254,0.757999837398529,0.0789583101868629,-0.647458136081696,0.763306438922882,-0.031476553529501,-0.645269334316254,0.787303924560547,0.0551112778484821,-0.614097118377686,0.74059385061264,-0.055150605738163,-0.669685900211334,0,-0.0314804539084435,0.999504387378693,-0.0470983162522316,-0.0627977550029755,0.996914327144623,0.0392800718545914,0.054992102086544,0.99771386384964,0.0392800718545914,0.054992102086544,0.99771386384964,0,0.0862911120057106,0.996270060539246,0,-0.0314804539084435,0.999504387378693,-0.0392800718545914,0.054992102086544,0.99771386384964,0,-0.0314804539084435,0.999504387378693,0,0.0784971937537193,0.996914327144623,0,-0.0314804539084435,0.999504387378693,-0.0392800718545914,0.054992102086544,0.99771386384964,0.0470983162522316,-0.0627977550029755,0.996914327144623,-0.870715439319611,-0.0316623784601688,0.490766882896423,-0.888305485248566,-0.0550277754664421,0.455944418907166,-0.852324724197388,0.0473513714969158,0.520865082740784,-0.852324724197388,0.0473513714969158,0.520865082740784,-0.868433177471161,0.0789484679698944,0.489480525255203,-0.870715439319611,-0.0316623784601688,0.490766882896423,-0.888305485248566,0.0550277754664421,0.455944418907166,-0.870715439319611,-0.0316623784601688,0.490766882896423,-0.868433177471161,0.0789484679698944,0.489480525255203,-0.870715439319611,-0.0316623784601688,0.490766882896423,-0.888305485248566,0.0550277754664421,0.455944418907166,-0.848083257675171,-0.0628209859132767,0.526125729084015,-0.756257355213165,-0.0236330423504114,0.653847455978394,-0.776930749416351,-0.0470867119729519,0.627822816371918,-0.729462265968323,0.0470620803534985,0.682400166988373,-0.729462265968323,0.0470620803534985,0.682400166988373,-0.754969954490662,0.0629141628742218,0.652734398841858,
- -0.756257355213165,-0.0236330423504114,0.653847455978394,-0.780447483062744,0.0551831535995007,0.622781336307526,-0.756257355213165,-0.0236330423504114,0.653847455978394,-0.754969954490662,0.0629141628742218,0.652734398841858,-0.756257355213165,-0.0236330423504114,0.653847455978394,-0.780447483062744,0.0551831535995007,0.622781336307526,-0.725129187107086,-0.0630547180771828,0.685719966888428,-0.993389487266541,-0.0315361730754375,0.110376611351967,-0.995744228363037,-0.0474163927137852,0.0790273174643517,-0.988455832004547,0.0549142137169838,0.141207963228226,-0.988455832004547,0.0549142137169838,0.141207963228226,-0.992741703987122,0.0630312189459801,0.10242572426796,-0.993389487266541,-0.0315361730754375,0.110376611351967,-0.995464503765106,0.0632040947675705,0.0711046010255814,-0.993389487266541,-0.0315361730754375,0.110376611351967,-0.992218255996704,0.0708727315068245,0.102371722459793,-0.993389487266541,-0.0315361730754375,0.110376611351967,-0.995464503765106,0.0632040947675705,0.0711046010255814,-0.989522039890289,-0.0549734458327293,0.133506938815117,-0.251711130142212,-0.0235979184508324,0.96751469373703,-0.284845411777496,-0.0474742390215397,0.957397162914276,-0.219927683472633,0.0549819208681583,0.973965525627136,-0.219927683472633,0.0549819208681583,0.973965525627136,-0.251283913850784,0.0628209784626961,0.965872645378113,-0.251711130142212,-0.0235979184508324,0.96751469373703,-0.29197284579277,0.0552381053566933,0.954830169677734,-0.251711130142212,-0.0235979184508324,0.96751469373703,-0.251283913850784,0.0628209784626961,0.965872645378113,-0.251711130142212,-0.0235979184508324,0.96751469373703,-0.29197284579277,0.0552381053566933,0.954830169677734,-0.212335288524628,-0.0629141628742218,0.975169479846954,0,-0.0393396019935608,0.999225914478302,-0.0314327888190746,-0.0550073832273483,0.99799108505249,0.0314182415604591,0.0628364831209183,0.997529208660126,0.0314182415604591,0.0628364831209183,0.997529208660126,0,0.0550345741212368,0.998484432697296,0,-0.0393396019935608,0.999225914478302,-0.0314182415604591,0.0628364831209183,0.997529208660126,
- 0,-0.0393396019935608,0.999225914478302,0,0.0550345741212368,0.998484432697296,0,-0.0393396019935608,0.999225914478302,-0.0314182415604591,0.0628364831209183,0.997529208660126,0.0314327888190746,-0.0550073832273483,0.99799108505249,0.440685391426086,-0.0314775295555592,0.897109568119049,0.401674419641495,-0.0630077570676804,0.913612425327301,0.480657786130905,0.0630370900034904,0.874639570713043,0.480657786130905,0.0630370900034904,0.874639570713043,0.442649722099304,0.0790445953607559,0.893203914165497,0.440685391426086,-0.0314775295555592,0.897109568119049,0.401861488819122,0.0551574602723122,0.914037883281708,0.440685391426086,-0.0314775295555592,0.897109568119049,0.442649722099304,0.0790445953607559,0.893203914165497,0.440685391426086,-0.0314775295555592,0.897109568119049,0.401861488819122,0.0551574602723122,0.914037883281708,0.471506476402283,-0.0550090856850147,0.880145370960236,-0.994998693466187,-0.0315872617065907,-0.0947617813944817,-0.989522039890289,-0.0549734458327293,-0.133506938815117,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.992402911186218,0.0787621363997459,-0.0945145636796951,-0.994998693466187,-0.0315872617065907,-0.0947617813944817,-0.987999796867371,0.062730148434639,-0.141142815351486,-0.994998693466187,-0.0315872617065907,-0.0947617813944817,-0.992402911186218,0.0787621363997459,-0.0945145636796951,-0.994998693466187,-0.0315872617065907,-0.0947617813944817,-0.987999796867371,0.062730148434639,-0.141142815351486,-0.996515274047852,-0.0627726167440414,-0.0549260377883911,-0.299286842346191,0.04725581407547,-0.952992260456085,-0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.229129120707512,-0.0553070306777954,-0.971823513507843,-0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.299286842346191,0.04725581407547,-0.952992260456085,-0.260294795036316,0.0788772106170654,-0.962302029132843,-0.219825997948647,0.0628074258565903,-0.973515152931213,-0.268324434757233,-0.0315675809979439,-0.962811231613159,
- -0.260294795036316,0.0788772106170654,-0.962302029132843,-0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.219825997948647,0.0628074258565903,-0.973515152931213,-0.306007087230682,-0.0706170126795769,-0.949406623840332,-0.481076210737228,0.0473189726471901,-0.875400960445404,-0.456508964300156,-0.0236125327646732,-0.889405429363251,-0.418088227510452,-0.0473307408392429,-0.907172560691834,-0.456508964300156,-0.0236125327646732,-0.889405429363251,-0.481076210737228,0.0473189726471901,-0.875400960445404,-0.44947424530983,0.0630841106176376,-0.891063034534454,-0.417919218540192,0.0551968775689602,-0.906805813312531,-0.456508964300156,-0.0236125327646732,-0.889405429363251,-0.44947424530983,0.0630841106176376,-0.891063034534454,-0.456508964300156,-0.0236125327646732,-0.889405429363251,-0.417919218540192,0.0551968775689602,-0.906805813312531,-0.486682593822479,-0.0627977550029755,-0.871318817138672,-0.0314182415604591,0.0628364831209183,-0.997529208660126,0,-0.0393396019935608,-0.999225914478302,0.0314327888190746,-0.0550073832273483,-0.99799108505249,0,-0.0393396019935608,-0.999225914478302,-0.0314182415604591,0.0628364831209183,-0.997529208660126,0,0.0706888660788536,-0.997498512268066,0.0314182415604591,0.0628364831209183,-0.997529208660126,0,-0.0393396019935608,-0.999225914478302,0,0.0706888660788536,-0.997498512268066,0,-0.0393396019935608,-0.999225914478302,0.0314182415604591,0.0628364831209183,-0.997529208660126,-0.0314327888190746,-0.0550073832273483,-0.99799108505249,-0.876136839389801,-0.0236793737858534,-0.481480598449707,-0.857922077178955,-0.0472250655293465,-0.511604905128479,-0.891478836536407,0.0552243553102016,-0.449684023857117,-0.891478836536407,0.0552243553102016,-0.449684023857117,-0.874639689922333,0.063037097454071,-0.48065784573555,-0.876136839389801,-0.0236793737858534,-0.481480598449707,-0.854120790958405,0.0548517927527428,-0.517174005508423,-0.876136839389801,-0.0236793737858534,-0.481480598449707,-0.874639689922333,0.063037097454071,-0.48065784573555,-0.876136839389801,-0.0236793737858534,-0.481480598449707,
- -0.854120790958405,0.0548517927527428,-0.517174005508423,-0.895779192447662,-0.0628616958856583,-0.440031886100769,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.998607933521271,-0.047178328037262,-0.023589164018631,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.997529208660126,0.0628364831209183,-0.0314182415604591,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.997529208660126,0.0628364831209183,-0.0314182415604591,-0.99799108505249,-0.0550073832273483,0.0314327888190746,-0.756257355213165,0.0236330423504114,0.653847455978394,-0.714720904827118,0.0235622264444828,0.699012756347656,-0.110428102314472,0.993852913379669,-0.00788772199302912,-0.00790618825703859,0.996179699897766,0.0869680717587471,-0.110428102314472,0.993852913379669,-0.00788772199302912,-0.714720904827118,0.0235622264444828,0.699012756347656,-0.00790618825703859,0.996179699897766,0.0869680717587471,0,0.998021900653839,-0.0628675222396851,-0.110428102314472,0.993852913379669,-0.00788772199302912,0,0.998021900653839,-0.0628675222396851,-0.00790618825703859,0.996179699897766,0.0869680717587471,0.118033424019814,0.991480767726898,0.0550822615623474,0.827464580535889,0.0472836866974831,-0.559523582458496,0,0.998021900653839,-0.0628675222396851,0.118033424019814,0.991480767726898,0.0550822615623474,0,0.998021900653839,-0.0628675222396851,0.827464580535889,0.0472836866974831,-0.559523582458496,0.791435539722443,0.0474861301481724,-0.609405338764191,-0.565249443054199,0.0314027518033981,0.82432222366333,-0.51755553483963,0.0392087511718273,0.85475081205368,-0.110428102314472,0.993852913379669,0.00788772199302912,0.0156975034624338,0.996791481971741,0.0784875229001045,-0.110428102314472,0.993852913379669,0.00788772199302912,
- -0.51755553483963,0.0392087511718273,0.85475081205368,0.0156975034624338,0.996791481971741,0.0784875229001045,-0.00785407610237598,0.997467637062073,-0.0706866830587387,-0.110428102314472,0.993852913379669,0.00788772199302912,-0.00785407610237598,0.997467637062073,-0.0706866830587387,0.0156975034624338,0.996791481971741,0.0784875229001045,0.133692607283592,0.990898132324219,0.0157285425812006,0.653705477714539,0.0315038822591305,-0.756093144416809,-0.00785407610237598,0.997467637062073,-0.0706866830587387,0.133692607283592,0.990898132324219,0.0157285425812006,-0.00785407610237598,0.997467637062073,-0.0706866830587387,0.653705477714539,0.0315038822591305,-0.756093144416809,0.614726185798645,0.0315244197845459,-0.788110494613647,-0.51755553483963,0.0392087511718273,0.85475081205368,-0.565249443054199,0.0314027518033981,0.82432222366333,-0.583401083946228,-0.0157675947993994,0.812031149864197,-0.51755553483963,0.0392087511718273,0.85475081205368,-0.583401083946228,-0.0157675947993994,0.812031149864197,-0.51789003610611,-0.015693636611104,0.855303227901459,-0.583401083946228,-0.0157675947993994,0.812031149864197,-0.583183646202087,-0.0315234363079071,0.811728477478027,-0.51789003610611,-0.015693636611104,0.855303227901459,0.409005284309387,0.0157309733331203,-0.912396430969238,0.424198627471924,0.0628442391753197,-0.903385937213898,0.474564164876938,0.0632752180099487,-0.877943694591522,0.474564164876938,0.0632752180099487,-0.877943694591522,0.409055888652802,2.02617771930856e-016,-0.912509322166443,0.409005284309387,0.0157309733331203,-0.912396430969238,0.409055888652802,2.02617771930856e-016,-0.912509322166443,0.474564164876938,0.0632752180099487,-0.877943694591522,0.478243857622147,0.0156801268458366,-0.878087103366852,-0.512414991855621,0.827747344970703,-0.228615924715996,-0.449936181306839,0.884085118770599,-0.126297876238823,0.51203328371048,0.842885613441467,0.165426135063171,0.48764505982399,0.825850546360016,0.283148735761642,0.51203328371048,0.842885613441467,0.165426135063171,-0.449936181306839,0.884085118770599,-0.126297876238823,
- 0.48764505982399,0.825850546360016,0.283148735761642,0.566227495670319,0.794291377067566,0.220199599862099,0.51203328371048,0.842885613441467,0.165426135063171,0.566227495670319,0.794291377067566,0.220199599862099,0.48764505982399,0.825850546360016,0.283148735761642,0.574340462684631,0.794635355472565,0.196691915392876,0.574340462684631,0.794635355472565,0.196691915392876,0.48764505982399,0.825850546360016,0.283148735761642,0.0314017795026302,0.997006475925446,-0.07065399736166,0.558052599430084,0.825289130210876,0.0864588618278503,0.574340462684631,0.794635355472565,0.196691915392876,0.0314017795026302,0.997006475925446,-0.07065399736166,0.574340462684631,0.794635355472565,0.196691915392876,0.895779192447662,-0.314308494329453,0.314308494329453,0.566227495670319,0.794291377067566,0.220199599862099,0.895779192447662,-0.314308494329453,0.314308494329453,-0.432575047016144,-0.825825095176697,-0.361790001392365,0.566227495670319,0.794291377067566,0.220199599862099,0.558052599430084,0.825289130210876,0.0864588618278503,0.580450236797333,0.792236149311066,0.188254147768021,0.574340462684631,0.794635355472565,0.196691915392876,0.580450236797333,0.792236149311066,0.188254147768021,0.558052599430084,0.825289130210876,0.0864588618278503,0.503297686576843,0.841450870037079,0.196600660681725,-0.409957468509674,0.882985353469849,-0.228630125522614,0.503297686576843,0.841450870037079,0.196600660681725,0.558052599430084,0.825289130210876,0.0864588618278503,0.503297686576843,0.841450870037079,0.196600660681725,-0.409957468509674,0.882985353469849,-0.228630125522614,-0.534621596336365,0.825518667697906,-0.180827900767326,0.574340462684631,0.794635355472565,0.196691915392876,0.580450236797333,0.792236149311066,0.188254147768021,0.897860586643219,-0.299286872148514,0.322914779186249,0.897860586643219,-0.299286872148514,0.322914779186249,0.895779192447662,-0.314308494329453,0.314308494329453,0.574340462684631,0.794635355472565,0.196691915392876,0.707543671131134,-0.597481310367584,0.377356618642807,0.897860586643219,-0.299286872148514,0.322914779186249,
- 0.580450236797333,0.792236149311066,0.188254147768021,0.707543671131134,-0.597481310367584,0.377356618642807,0.895779192447662,-0.314308494329453,0.314308494329453,0.897860586643219,-0.299286872148514,0.322914779186249,0.0236359722912312,-0.992710888385773,0.118179865181446,0.707543671131134,-0.597481310367584,0.377356618642807,-0.251711130142212,-0.0235979184508324,0.96751469373703,-0.432575047016144,-0.825825095176697,-0.361790001392365,0.895779192447662,-0.314308494329453,0.314308494329453,0.790841341018677,-0.553588926792145,0.260977625846863,0.707543671131134,-0.597481310367584,0.377356618642807,0.0236359722912312,-0.992710888385773,0.118179865181446,-0.557227075099945,-0.824068307876587,-0.102027498185635,0.0628655776381493,-0.99799108505249,-0.00785819720476866,-0.557227075099945,-0.824068307876587,-0.102027498185635,0.0236359722912312,-0.992710888385773,0.118179865181446,0.765967190265656,-0.56855297088623,0.300069630146027,0.790841341018677,-0.553588926792145,0.260977625846863,0.895779192447662,-0.314308494329453,0.314308494329453,0.895779192447662,-0.314308494329453,0.314308494329453,0.707543671131134,-0.597481310367584,0.377356618642807,0.765967190265656,-0.56855297088623,0.300069630146027,0.765967190265656,-0.56855297088623,0.300069630146027,-0.432575047016144,-0.825825095176697,-0.361790001392365,0.790841341018677,-0.553588926792145,0.260977625846863,-0.526564240455627,-0.82521265745163,-0.204338356852531,0.707543671131134,-0.597481310367584,0.377356618642807,-0.557227075099945,-0.824068307876587,-0.102027498185635,0.707543671131134,-0.597481310367584,0.377356618642807,-0.526564240455627,-0.82521265745163,-0.204338356852531,0.765967190265656,-0.56855297088623,0.300069630146027,-0.557227075099945,-0.824068307876587,-0.102027498185635,0.0628655776381493,-0.99799108505249,-0.00785819720476866,-0.526564240455627,-0.82521265745163,-0.204338356852531,-0.432575047016144,-0.825825095176697,-0.361790001392365,0.765967190265656,-0.56855297088623,0.300069630146027,-0.526564240455627,-0.82521265745163,-0.204338356852531,
- 0.0867514461278915,-0.993698358535767,-0.0709784477949142,-0.526564240455627,-0.82521265745163,-0.204338356852531,0.0628655776381493,-0.99799108505249,-0.00785819720476866,-0.526564240455627,-0.82521265745163,-0.204338356852531,0.0867514461278915,-0.993698358535767,-0.0709784477949142,-0.432575047016144,-0.825825095176697,-0.361790001392365,-0.3535315990448,-0.0314250290393829,0.934894561767578,-0.966319620609283,0.133556365966797,-0.219975188374519,-0.917289853096008,0.0474460273981094,-0.395383566617966,-0.966319620609283,0.133556365966797,-0.219975188374519,-0.880145311355591,0.157168805599213,-0.447931081056595,-0.917289853096008,0.0474460273981094,-0.395383566617966,-0.880145311355591,0.157168805599213,-0.447931081056595,-0.826746046543121,-0.409436106681824,-0.385814815759659,-0.917289853096008,0.0474460273981094,-0.395383566617966,0.409005284309387,0.0157309733331203,-0.912396430969238,-0.880145311355591,0.157168805599213,-0.447931081056595,0.424198627471924,0.0628442391753197,-0.903385937213898,-0.826746046543121,-0.409436106681824,-0.385814815759659,-0.880145311355591,0.157168805599213,-0.447931081056595,-0.832891881465912,-0.345728695392609,-0.432160884141922,-0.832891881465912,-0.345728695392609,-0.432160884141922,-0.880145311355591,0.157168805599213,-0.447931081056595,0.409005284309387,0.0157309733331203,-0.912396430969238,-0.826746046543121,-0.409436106681824,-0.385814815759659,-0.832891881465912,-0.345728695392609,-0.432160884141922,-0.61600923538208,-0.710779845714569,-0.339594811201096,0.409005284309387,0.0157309733331203,-0.912396430969238,-0.61600923538208,-0.710779845714569,-0.339594811201096,-0.832891881465912,-0.345728695392609,-0.432160884141922,-0.61600923538208,-0.710779845714569,-0.339594811201096,0.409005284309387,0.0157309733331203,-0.912396430969238,0.409055888652802,2.02617771930856e-016,-0.912509322166443,0.409055888652802,2.02617771930856e-016,-0.912509322166443,0.173632517457008,-0.970763623714447,-0.165740117430687,-0.61600923538208,-0.710779845714569,-0.339594811201096,0.0315361730754375,-0.993389487266541,0.110376611351967,
- -0.61600923538208,-0.710779845714569,-0.339594811201096,0.173632517457008,-0.970763623714447,-0.165740117430687,-0.61600923538208,-0.710779845714569,-0.339594811201096,-0.802627265453339,-0.480002582073212,-0.354100286960602,-0.826746046543121,-0.409436106681824,-0.385814815759659,-0.61600923538208,-0.710779845714569,-0.339594811201096,0.0315361730754375,-0.993389487266541,0.110376611351967,-0.645029723644257,-0.71582567691803,-0.267451345920563,-0.802627265453339,-0.480002582073212,-0.354100286960602,-0.61600923538208,-0.710779845714569,-0.339594811201096,-0.645029723644257,-0.71582567691803,-0.267451345920563,-0.645029723644257,-0.71582567691803,-0.267451345920563,0.0315361730754375,-0.993389487266541,0.110376611351967,-0.378799200057983,-0.0631331950426102,0.923323035240173,-0.378799200057983,-0.0631331950426102,0.923323035240173,-0.802627265453339,-0.480002582073212,-0.354100286960602,-0.645029723644257,-0.71582567691803,-0.267451345920563,-0.802627265453339,-0.480002582073212,-0.354100286960602,-0.378799200057983,-0.0631331950426102,0.923323035240173,-0.369620710611343,-0.0471856221556664,0.92798388004303,-0.450244843959808,0.0236970968544483,-0.892590641975403,-0.502753913402557,0.0235665887594223,-0.864108264446259,0.0315626710653305,0.99422413110733,-0.102578677237034,-0.0869273319840431,0.99571305513382,-0.0316099375486374,0.0315626710653305,0.99422413110733,-0.102578677237034,-0.502753913402557,0.0235665887594223,-0.864108264446259,-0.0869273319840431,0.99571305513382,-0.0316099375486374,0.0628597587347031,0.997898638248444,0.0157149396836758,0.0315626710653305,0.99422413110733,-0.102578677237034,0.0628597587347031,0.997898638248444,0.0157149396836758,-0.0869273319840431,0.99571305513382,-0.0316099375486374,-0.0787621363997459,0.992402911186218,0.0945145636796951,0.339457213878632,0.047366127371788,0.939428150653839,0.0628597587347031,0.997898638248444,0.0157149396836758,-0.0787621363997459,0.992402911186218,0.0945145636796951,0.0628597587347031,0.997898638248444,0.0157149396836758,0.339457213878632,0.047366127371788,0.939428150653839,
- 0.402023702859879,0.0472969077527523,0.914406895637512,-0.99571305513382,0.0316099375486374,-0.0869273319840431,-0.995994210243225,-0.0235274210572243,-0.0862672179937363,-0.251750081777573,0.0157343801110983,0.967664361000061,-0.236690536141396,-0.047338105738163,0.970431208610535,-0.251750081777573,0.0157343801110983,0.967664361000061,-0.995994210243225,-0.0235274210572243,-0.0862672179937363,-0.236690536141396,-0.047338105738163,0.970431208610535,-0.102617010474205,0.0157872326672077,0.994595646858215,-0.251750081777573,0.0157343801110983,0.967664361000061,-0.102617010474205,0.0157872326672077,0.994595646858215,-0.236690536141396,-0.047338105738163,0.970431208610535,-0.0788183808326721,-0.0867002233862877,0.993111670017242,0.965723752975464,-0.0157028250396252,0.259096622467041,-0.102617010474205,0.0157872326672077,0.994595646858215,-0.0788183808326721,-0.0867002233862877,0.993111670017242,-0.102617010474205,0.0157872326672077,0.994595646858215,0.965723752975464,-0.0157028250396252,0.259096622467041,0.967036128044128,0.039310410618782,0.251586616039276,0.560848772525787,0.821524977684021,-0.102690622210503,0.46511521935463,0.875047266483307,-0.134016245603561,-0.465187430381775,0.835760474205017,0.291727721691132,-0.528198063373566,0.827773153781891,0.189205288887024,-0.465187430381775,0.835760474205017,0.291727721691132,0.46511521935463,0.875047266483307,-0.134016245603561,-0.528198063373566,0.827773153781891,0.189205288887024,-0.543290257453918,0.787377178668976,0.291329562664032,-0.465187430381775,0.835760474205017,0.291727721691132,-0.543290257453918,0.787377178668976,0.291329562664032,-0.528198063373566,0.827773153781891,0.189205288887024,-0.565232038497925,0.792894959449768,0.227662906050682,0.0156873594969511,0.996147394180298,0.0862804874777794,-0.565232038497925,0.792894959449768,0.227662906050682,-0.528198063373566,0.827773153781891,0.189205288887024,-0.565232038497925,0.792894959449768,0.227662906050682,0.0156873594969511,0.996147394180298,0.0862804874777794,-0.511478126049042,0.826233983039856,0.236066848039627,
- 0.489709466695786,0.821448087692261,-0.292245984077454,-0.511478126049042,0.826233983039856,0.236066848039627,0.442263036966324,0.876628518104553,-0.189541295170784,-0.511478126049042,0.826233983039856,0.236066848039627,0.489709466695786,0.821448087692261,-0.292245984077454,-0.550822615623474,0.826233983039856,0.118033424019814,-0.550822615623474,0.826233983039856,0.118033424019814,-0.590917706489563,0.787890195846558,0.1733358502388,-0.511478126049042,0.826233983039856,0.236066848039627,-0.511478126049042,0.826233983039856,0.236066848039627,-0.590917706489563,0.787890195846558,0.1733358502388,-0.565232038497925,0.792894959449768,0.227662906050682,-0.884085118770599,-0.370999991893768,0.284170210361481,-0.543290257453918,0.787377178668976,0.291329562664032,-0.565232038497925,0.792894959449768,0.227662906050682,-0.884085118770599,-0.370999991893768,0.284170210361481,0.528872311115265,-0.836723446846008,-0.14208510518074,-0.543290257453918,0.787377178668976,0.291329562664032,-0.866894543170929,-0.315234363079071,0.386162102222443,-0.565232038497925,0.792894959449768,0.227662906050682,-0.590917706489563,0.787890195846558,0.1733358502388,-0.565232038497925,0.792894959449768,0.227662906050682,-0.866894543170929,-0.315234363079071,0.386162102222443,-0.884085118770599,-0.370999991893768,0.284170210361481,-0.590917706489563,0.787890195846558,0.1733358502388,-0.731920540332794,-0.676829695701599,0.0787011310458183,-0.866894543170929,-0.315234363079071,0.386162102222443,-0.866894543170929,-0.315234363079071,0.386162102222443,-0.787621378898621,-0.519830107688904,0.330800980329514,-0.884085118770599,-0.370999991893768,0.284170210361481,-0.884085118770599,-0.370999991893768,0.284170210361481,-0.787621378898621,-0.519830107688904,0.330800980329514,0.528872311115265,-0.836723446846008,-0.14208510518074,-0.787621378898621,-0.519830107688904,0.330800980329514,-0.866894543170929,-0.315234363079071,0.386162102222443,-0.731920540332794,-0.676829695701599,0.0787011310458183,0.528872311115265,-0.836723446846008,-0.14208510518074,-0.787621378898621,-0.519830107688904,0.330800980329514,
- 0.533863186836243,-0.816496670246124,-0.21982604265213,-0.731920540332794,-0.676829695701599,0.0787011310458183,0.533863186836243,-0.816496670246124,-0.21982604265213,-0.787621378898621,-0.519830107688904,0.330800980329514,0.533863186836243,-0.816496670246124,-0.21982604265213,-0.0550328753888607,-0.998453617095947,0.00786183960735798,0.528872311115265,-0.836723446846008,-0.14208510518074,-0.0550328753888607,-0.998453617095947,0.00786183960735798,0.533863186836243,-0.816496670246124,-0.21982604265213,-0.0471550077199936,-0.998114347457886,0.0392958410084248,-0.0471550077199936,-0.998114347457886,0.0392958410084248,0.533863186836243,-0.816496670246124,-0.21982604265213,-0.0550277717411518,-0.998361051082611,0.0157222207635641,-0.731920540332794,-0.676829695701599,0.0787011310458183,-0.0550277717411518,-0.998361051082611,0.0157222207635641,0.533863186836243,-0.816496670246124,-0.21982604265213,-0.0550277717411518,-0.998361051082611,0.0157222207635641,-0.731920540332794,-0.676829695701599,0.0787011310458183,-0.456508964300156,-0.0236125327646732,-0.889405429363251,-0.821781516075134,-0.0316069833934307,-0.568925619125366,0.455733239650726,0.133576974272728,-0.880036592483521,0.605605006217957,0.047189999371767,-0.794364988803864,0.653624355792999,0.157499849796295,-0.740249276161194,0.605605006217957,0.047189999371767,-0.794364988803864,0.455733239650726,0.133576974272728,-0.880036592483521,0.653624355792999,0.157499849796295,-0.740249276161194,0.574731886386871,-0.409398019313812,-0.708573579788208,0.605605006217957,0.047189999371767,-0.794364988803864,0.788404285907745,0.0157680865377188,0.614955365657806,0.653624355792999,0.157499849796295,-0.740249276161194,0.773116886615753,0.0631115809082985,0.631115853786469,0.574731886386871,-0.409398019313812,-0.708573579788208,0.653624355792999,0.157499849796295,-0.740249276161194,0.622645854949951,-0.346790134906769,-0.701461851596832,0.653624355792999,0.157499849796295,-0.740249276161194,0.788404285907745,0.0157680865377188,0.614955365657806,0.622645854949951,-0.346790134906769,-0.701461851596832,
- 0.574731886386871,-0.409398019313812,-0.708573579788208,0.622645854949951,-0.346790134906769,-0.701461851596832,0.481555610895157,-0.710491895675659,-0.513132989406586,0.788404285907745,0.0157680865377188,0.614955365657806,0.481555610895157,-0.710491895675659,-0.513132989406586,0.622645854949951,-0.346790134906769,-0.701461851596832,0.481555610895157,-0.710491895675659,-0.513132989406586,0.788404285907745,0.0157680865377188,0.614955365657806,0.784681856632233,-1.37645156799649e-016,0.619898676872253,0.784681856632233,-1.37645156799649e-016,0.619898676872253,0.125828325748444,-0.967305243015289,0.220199555158615,0.481555610895157,-0.710491895675659,-0.513132989406586,0.574731886386871,-0.409398019313812,-0.708573579788208,0.481555610895157,-0.710491895675659,-0.513132989406586,0.53609824180603,-0.480911672115326,-0.693774223327637,-0.110431522130966,-0.993883728981018,-2.20686519943007e-016,0.481555610895157,-0.710491895675659,-0.513132989406586,0.125828325748444,-0.967305243015289,0.220199555158615,0.417296975851059,-0.716491043567657,-0.559020459651947,0.53609824180603,-0.480911672115326,-0.693774223327637,0.481555610895157,-0.710491895675659,-0.513132989406586,0.481555610895157,-0.710491895675659,-0.513132989406586,-0.110431522130966,-0.993883728981018,-2.20686519943007e-016,0.417296975851059,-0.716491043567657,-0.559020459651947,0.53609824180603,-0.480911672115326,-0.693774223327637,0.417296975851059,-0.716491043567657,-0.559020459651947,-0.811224818229675,-0.04725581407547,-0.582821726799011,0.417296975851059,-0.716491043567657,-0.559020459651947,-0.110431522130966,-0.993883728981018,-2.20686519943007e-016,-0.804047405719757,-0.0630625411868095,-0.591211378574371,-0.804047405719757,-0.0630625411868095,-0.591211378574371,-0.811224818229675,-0.04725581407547,-0.582821726799011,0.417296975851059,-0.716491043567657,-0.559020459651947,0.0709784477949142,0.993698358535767,-0.0867514461278915,0.999721229076386,0.023615462705493,5.243686086563e-018,0.997898638248444,0.0157149396836758,-0.0628597587347031,0.999721229076386,0.023615462705493,5.243686086563e-018,
- 0.0709784477949142,0.993698358535767,-0.0867514461278915,0.0632376596331596,0.995993077754974,0.0632376596331596,0.0632376596331596,0.995993077754974,0.0632376596331596,0.0709784477949142,0.993698358535767,-0.0867514461278915,-0.0471550077199936,0.998114347457886,-0.0392958410084248,0.0632376596331596,0.995993077754974,0.0632376596331596,-0.0471550077199936,0.998114347457886,-0.0392958410084248,-0.0551780164241791,0.993204295635223,0.102473460137844,-0.0551780164241791,0.993204295635223,0.102473460137844,-0.0471550077199936,0.998114347457886,-0.0392958410084248,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.991880118846893,0.0472323894500732,0.118080973625183,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.0471550077199936,0.998114347457886,-0.0392958410084248,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.994440853595734,-0.0236771646887064,0.102601043879986,-0.984832227230072,-0.00787865743041039,0.173330470919609,-0.994440853595734,-0.0236771646887064,0.102601043879986,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.994719624519348,-2.27883924331949e-017,0.102629795670509,-0.994719624519348,-2.27883924331949e-017,0.102629795670509,-0.983764111995697,0.0472206771373749,0.173142492771149,-0.991880118846893,0.0472323894500732,0.118080973625183,0.996147394180298,-0.0392183996737003,-0.0784367993474007,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.996147394180298,-0.0392183996737003,-0.0784367993474007,0.996638000011444,-0.0235426295548677,-0.0784754380583763,0.999721229076386,0.023615462705493,5.243686086563e-018,0.996638000011444,-0.0235426295548677,-0.0784754380583763,0.997898638248444,0.0157149396836758,-0.0628597587347031,0.0394422858953476,0.993945598602295,-0.102549932897091,0.967305243015289,0.0314570814371109,-0.251656651496887,0.951311945915222,0.0314483270049095,-0.306621193885803,0.967305243015289,0.0314570814371109,-0.251656651496887,
- 0.0394422858953476,0.993945598602295,-0.102549932897091,0.0706344172358513,0.996730208396912,0.0392413474619389,0.0706344172358513,0.996730208396912,0.0392413474619389,0.0394422858953476,0.993945598602295,-0.102549932897091,-0.0628500655293465,0.997744739055634,-0.0235687755048275,0.0706344172358513,0.996730208396912,0.0392413474619389,-0.0628500655293465,0.997744739055634,-0.0235687755048275,-0.0235891658812761,0.990744948387146,0.133671939373016,-0.0235891658812761,0.990744948387146,0.133671939373016,-0.0628500655293465,0.997744739055634,-0.0235687755048275,-0.91180431842804,0.039301909506321,0.408739864826202,-0.934894561767578,0.0314250290393829,0.3535315990448,-0.91180431842804,0.039301909506321,0.408739864826202,-0.0628500655293465,0.997744739055634,-0.0235687755048275,-0.91180431842804,0.039301909506321,0.408739864826202,-0.940014123916626,-0.0315971150994301,0.339668989181519,-0.912396430969238,-0.0157309733331203,0.409005284309387,-0.940014123916626,-0.0315971150994301,0.339668989181519,-0.91180431842804,0.039301909506321,0.408739864826202,-0.940454363822937,-0.00790297798812389,0.339828044176102,-0.940454363822937,-0.00790297798812389,0.339828044176102,-0.91180431842804,0.039301909506321,0.408739864826202,-0.934894561767578,0.0314250290393829,0.3535315990448,0.948209404945374,-0.0316069796681404,-0.316069781780243,0.967305243015289,0.0314570814371109,-0.251656651496887,0.969556570053101,-0.0157651472836733,-0.244359791278839,0.967305243015289,0.0314570814371109,-0.251656651496887,0.948209404945374,-0.0316069796681404,-0.316069781780243,0.946173369884491,-0.0157695561647415,-0.32327589392662,0.967305243015289,0.0314570814371109,-0.251656651496887,0.946173369884491,-0.0157695561647415,-0.32327589392662,0.951311945915222,0.0314483270049095,-0.306621193885803,0.150105029344559,-0.987533092498779,-0.0474015884101391,0.0078735277056694,-0.999938011169434,-0.0078735277056694,0.517507791519165,-0.760579645633698,-0.392051368951797,0.0078735277056694,-0.999938011169434,-0.0078735277056694,0.150105029344559,-0.987533092498779,-0.0474015884101391,
- 0.0156873594969511,-0.996147394180298,0.0862804874777794,0.0156873594969511,-0.996147394180298,0.0862804874777794,-0.44768238067627,-0.699012815952301,-0.557639420032501,0.0078735277056694,-0.999938011169434,-0.0078735277056694,-0.714566648006439,-0.0314095206558704,0.69886189699173,-0.766708612442017,-0.0474252738058567,0.640241205692291,0.0156873594969511,-0.996147394180298,0.0862804874777794,-0.44768238067627,-0.699012815952301,-0.557639420032501,0.0156873594969511,-0.996147394180298,0.0862804874777794,-0.480911672115326,-0.693774223327637,-0.53609824180603,-0.480911672115326,-0.693774223327637,-0.53609824180603,0.0156873594969511,-0.996147394180298,0.0862804874777794,-0.766708612442017,-0.0474252738058567,0.640241205692291,-0.44768238067627,-0.699012815952301,-0.557639420032501,-0.480911672115326,-0.693774223327637,-0.53609824180603,-0.557656586170197,-0.471259117126465,-0.6833256483078,-0.767356097698212,-0.0237326622009277,0.640781879425049,-0.480911672115326,-0.693774223327637,-0.53609824180603,-0.766708612442017,-0.0474252738058567,0.640241205692291,-0.629122138023376,-0.338153153657913,-0.699898421764374,-0.557656586170197,-0.471259117126465,-0.6833256483078,-0.480911672115326,-0.693774223327637,-0.53609824180603,-0.629122138023376,-0.338153153657913,-0.699898421764374,-0.480911672115326,-0.693774223327637,-0.53609824180603,-0.767356097698212,-0.0237326622009277,0.640781879425049,-0.669914662837982,0.118220239877701,-0.732965469360352,-0.767356097698212,-0.0237326622009277,0.640781879425049,-0.756257355213165,0.0236330423504114,0.653847455978394,-0.767356097698212,-0.0237326622009277,0.640781879425049,-0.669914662837982,0.118220239877701,-0.732965469360352,-0.629122138023376,-0.338153153657913,-0.699898421764374,-0.566314995288849,-0.330350428819656,-0.755086719989777,-0.557656586170197,-0.471259117126465,-0.6833256483078,-0.629122138023376,-0.338153153657913,-0.699898421764374,-0.669914662837982,0.118220239877701,-0.732965469360352,-0.566314995288849,-0.330350428819656,-0.755086719989777,-0.629122138023376,-0.338153153657913,-0.699898421764374,
- -0.557656586170197,-0.471259117126465,-0.6833256483078,-0.566314995288849,-0.330350428819656,-0.755086719989777,0.157680854201317,-0.331129789352417,-0.930317044258118,-0.566314995288849,-0.330350428819656,-0.755086719989777,-0.669914662837982,0.118220239877701,-0.732965469360352,-0.564137876033783,0.133199229836464,-0.81486588716507,0.157680854201317,-0.331129789352417,-0.930317044258118,-0.566314995288849,-0.330350428819656,-0.755086719989777,0.784681856632233,1.37645156799649e-016,-0.619898676872253,-0.566314995288849,-0.330350428819656,-0.755086719989777,-0.564137876033783,0.133199229836464,-0.81486588716507,0.784681856632233,1.37645156799649e-016,-0.619898676872253,0.784681856632233,1.37645156799649e-016,-0.619898676872253,-0.564137876033783,0.133199229836464,-0.81486588716507,0.791435539722443,0.0474861301481724,-0.609405338764191,-0.714566648006439,-0.0314095206558704,0.69886189699173,-0.767356097698212,-0.0237326622009277,0.640781879425049,-0.766708612442017,-0.0474252738058567,0.640241205692291,-0.714566648006439,-0.0314095206558704,0.69886189699173,-0.714720904827118,0.0235622264444828,0.699012756347656,-0.767356097698212,-0.0237326622009277,0.640781879425049,-0.767356097698212,-0.0237326622009277,0.640781879425049,-0.714720904827118,0.0235622264444828,0.699012756347656,-0.756257355213165,0.0236330423504114,0.653847455978394,0.801858007907867,0.00786135345697403,-0.597462892532349,0.828391134738922,1.24378317974821e-016,-0.560150146484375,0.801882803440094,1.3266751474555e-016,-0.597481369972229,0.827464580535889,0.0472836866974831,-0.559523582458496,0.828391134738922,1.24378317974821e-016,-0.560150146484375,0.801858007907867,0.00786135345697403,-0.597462892532349,0.788502275943756,1.3656450157763e-016,-0.615031838417053,0.827464580535889,0.0472836866974831,-0.559523582458496,0.801858007907867,0.00786135345697403,-0.597462892532349,0.827464580535889,0.0472836866974831,-0.559523582458496,0.788502275943756,1.3656450157763e-016,-0.615031838417053,0.784681856632233,1.37645156799649e-016,-0.619898676872253,0.827464580535889,0.0472836866974831,-0.559523582458496,
- 0.784681856632233,1.37645156799649e-016,-0.619898676872253,0.791435539722443,0.0474861301481724,-0.609405338764191,0.597407519817352,-0.0157212503254414,-0.801783680915833,0.653948903083801,-0.015757804736495,-0.756374597549438,0.597186148166656,-0.0314308479428291,-0.801486611366272,0.653948903083801,-0.015757804736495,-0.756374597549438,0.597407519817352,-0.0157212503254414,-0.801783680915833,0.653705477714539,0.0315038822591305,-0.756093144416809,0.597407519817352,-0.0157212503254414,-0.801783680915833,0.614726185798645,0.0315244197845459,-0.788110494613647,0.653705477714539,0.0315038822591305,-0.756093144416809,-0.346628725528717,-0.0315117016434669,0.937473058700562,-0.360543221235275,0.00783789623528719,0.932709574699402,-0.3535315990448,-0.0314250290393829,0.934894561767578,-0.346628725528717,-0.0315117016434669,0.937473058700562,-0.306763470172882,0.00786573067307472,0.951753377914429,-0.360543221235275,0.00783789623528719,0.932709574699402,-0.369620710611343,-0.0471856221556664,0.92798388004303,-0.306763470172882,0.00786573067307472,0.951753377914429,-0.346628725528717,-0.0315117016434669,0.937473058700562,-0.306763470172882,0.00786573067307472,0.951753377914429,-0.369620710611343,-0.0471856221556664,0.92798388004303,-0.306431859731674,-0.0471433624625206,0.950724482536316,-0.306431859731674,-0.0471433624625206,0.950724482536316,-0.369620710611343,-0.0471856221556664,0.92798388004303,-0.378799200057983,-0.0631331950426102,0.923323035240173,-0.078916497528553,0.994347870349884,-0.0710248425602913,0.086902916431427,0.0395013242959976,-0.995433330535889,0.0236037615686655,0.0314716808497906,-0.999225914478302,0.086902916431427,0.0395013242959976,-0.995433330535889,-0.078916497528553,0.994347870349884,-0.0710248425602913,0.0627977550029755,0.996914327144623,-0.0470983162522316,-0.0470983162522316,0.996914327144623,0.0627977550029755,0.0627977550029755,0.996914327144623,-0.0470983162522316,-0.078916497528553,0.994347870349884,-0.0710248425602913,-0.0470983162522316,0.996914327144623,0.0627977550029755,0.110089585185051,0.990806221961975,0.0786354094743729,
- 0.0627977550029755,0.996914327144623,-0.0470983162522316,-0.0470983162522316,0.996914327144623,0.0627977550029755,0.00786986947059631,0.0314794778823853,0.999473392963409,0.110089585185051,0.990806221961975,0.0786354094743729,0.00786986947059631,0.0314794778823853,0.999473392963409,-0.0470983162522316,0.996914327144623,0.0627977550029755,-0.0550073832273483,0.0314327888190746,0.99799108505249,0.00787157658487558,-0.0236147306859493,0.999690234661102,0.991910755634308,0.0157446153461933,0.125956922769547,0.00786986947059631,0.0314794778823853,0.999473392963409,0.991910755634308,0.0157446153461933,0.125956922769547,0.00787157658487558,-0.0236147306859493,0.999690234661102,0.993605554103851,-0.0473145507276058,0.102514855563641,0.993605554103851,-0.0473145507276058,0.102514855563641,0.999380588531494,0.0157382767647505,-0.031476553529501,0.991910755634308,0.0157446153461933,0.125956922769547,0.999380588531494,0.0157382767647505,-0.031476553529501,0.993605554103851,-0.0473145507276058,0.102514855563641,0.995091795921326,-0.0868730992078781,-0.047385323792696,0.0862804874777794,-0.0156873594969511,-0.996147394180298,0.999380588531494,0.0157382767647505,-0.031476553529501,0.995091795921326,-0.0868730992078781,-0.047385323792696,0.999380588531494,0.0157382767647505,-0.031476553529501,0.0862804874777794,-0.0156873594969511,-0.996147394180298,0.086902916431427,0.0395013242959976,-0.995433330535889,0.00786986947059631,0.0314794778823853,0.999473392963409,-0.0706344172358513,-0.0392413474619389,0.996730208396912,0.00787157658487558,-0.0236147306859493,0.999690234661102,-0.0706344172358513,-0.0392413474619389,0.996730208396912,0.00786986947059631,0.0314794778823853,0.999473392963409,-0.0706801414489746,-0.0157066993415356,0.99737536907196,0.00786986947059631,0.0314794778823853,0.999473392963409,-0.0550073832273483,0.0314327888190746,0.99799108505249,-0.0706801414489746,-0.0157066993415356,0.99737536907196,0.0236037615686655,0.0314716808497906,-0.999225914478302,0.086902916431427,0.0395013242959976,-0.995433330535889,0.0078735277056694,-0.0078735277056694,-0.999938011169434,
- 0.086902916431427,0.0395013242959976,-0.995433330535889,0.00787157658487558,-0.0236147306859493,-0.999690234661102,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.00787157658487558,-0.0236147306859493,-0.999690234661102,0.086902916431427,0.0395013242959976,-0.995433330535889,0.0862804874777794,-0.0156873594969511,-0.996147394180298,0.236396417021751,0.83526736497879,0.496432483196259,-0.291682422161102,0.875047266483307,-0.38628214597702,-0.402963846921921,0.821730196475983,-0.402963846921921,-0.291682422161102,0.875047266483307,-0.38628214597702,0.236396417021751,0.83526736497879,0.496432483196259,0.346800893545151,0.82759302854538,0.441382944583893,0.346800893545151,0.82759302854538,0.441382944583893,0.236396417021751,0.83526736497879,0.496432483196259,0.306934416294098,0.787011325359344,0.535167694091797,0.361276358366013,0.785383343696594,0.502645373344421,0.346800893545151,0.82759302854538,0.441382944583893,0.306934416294098,0.787011325359344,0.535167694091797,0.346800893545151,0.82759302854538,0.441382944583893,0.361276358366013,0.785383343696594,0.502645373344421,0.0869273319840431,0.99571305513382,-0.0316099375486374,0.361276358366013,0.785383343696594,0.502645373344421,0.308062255382538,0.829398393630981,0.466042876243591,0.0869273319840431,0.99571305513382,-0.0316099375486374,0.308062255382538,0.829398393630981,0.466042876243591,-0.236639022827148,0.820348560810089,-0.520605802536011,-0.235317677259445,0.878519296646118,-0.415727913379669,-0.236639022827148,0.820348560810089,-0.520605802536011,0.308062255382538,0.829398393630981,0.466042876243591,0.401612132787704,0.826848566532135,0.393737405538559,0.308062255382538,0.829398393630981,0.466042876243591,0.41022527217865,0.788894772529602,0.457558989524841,0.401612132787704,0.826848566532135,0.393737405538559,0.41022527217865,0.788894772529602,0.457558989524841,0.308062255382538,0.829398393630981,0.466042876243591,0.361276358366013,0.785383343696594,0.502645373344421,0.361276358366013,0.785383343696594,0.502645373344421,0.306934416294098,0.787011325359344,0.535167694091797,
- 0.583183586597443,-0.315234363079071,0.748681604862213,0.41022527217865,0.788894772529602,0.457558989524841,0.361276358366013,0.785383343696594,0.502645373344421,0.495051145553589,-0.353607982397079,0.793653428554535,0.361276358366013,0.785383343696594,0.502645373344421,0.583183586597443,-0.315234363079071,0.748681604862213,0.495051145553589,-0.353607982397079,0.793653428554535,0.495051145553589,-0.353607982397079,0.793653428554535,-0.260513663291931,-0.836801528930664,-0.481555610895157,0.41022527217865,0.788894772529602,0.457558989524841,0.369517862796783,-0.628966569900513,0.68400114774704,0.583183586597443,-0.315234363079071,0.748681604862213,0.306934416294098,0.787011325359344,0.535167694091797,0.583183586597443,-0.315234363079071,0.748681604862213,0.470215976238251,-0.540748357772827,0.697487056255341,0.495051145553589,-0.353607982397079,0.793653428554535,-0.260513663291931,-0.836801528930664,-0.481555610895157,0.495051145553589,-0.353607982397079,0.793653428554535,0.470215976238251,-0.540748357772827,0.697487056255341,0.470215976238251,-0.540748357772827,0.697487056255341,0.583183586597443,-0.315234363079071,0.748681604862213,0.369517862796783,-0.628966569900513,0.68400114774704,-0.260513663291931,-0.836801528930664,-0.481555610895157,0.470215976238251,-0.540748357772827,0.697487056255341,-0.340594738721848,-0.815843164920807,-0.467327654361725,0.369517862796783,-0.628966569900513,0.68400114774704,-0.340594738721848,-0.815843164920807,-0.467327654361725,0.470215976238251,-0.540748357772827,0.697487056255341,-0.340594738721848,-0.815843164920807,-0.467327654361725,0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.260513663291931,-0.836801528930664,-0.481555610895157,0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.340594738721848,-0.815843164920807,-0.467327654361725,0.0471681281924248,-0.99839198589325,0.0314454175531864,0.0471681281924248,-0.99839198589325,0.0314454175531864,-0.340594738721848,-0.815843164920807,-0.467327654361725,0.0314454175531864,-0.99839198589325,0.0471681281924248,
- 0.369517862796783,-0.628966569900513,0.68400114774704,0.0314454175531864,-0.99839198589325,0.0471681281924248,-0.340594738721848,-0.815843164920807,-0.467327654361725,0.0314454175531864,-0.99839198589325,0.0471681281924248,0.369517862796783,-0.628966569900513,0.68400114774704,-0.756257355213165,-0.0236330423504114,0.653847455978394,-0.0157416891306639,0.0236125327646732,0.999597251415253,-0.0867973417043686,0.994224011898041,0.0631253346800804,-0.0706692412495613,0.0235564168542624,0.99722158908844,-0.0867973417043686,0.994224011898041,0.0631253346800804,-0.0157416891306639,0.0236125327646732,0.999597251415253,0.0632376596331596,0.995993077754974,0.0632376596331596,-0.0867973417043686,0.994224011898041,0.0631253346800804,0.0632376596331596,0.995993077754974,0.0632376596331596,-0.0392800718545914,0.99771386384964,-0.054992102086544,0.0632376596331596,0.995993077754974,0.0632376596331596,0.102473460137844,0.993204295635223,-0.0551780164241791,-0.0392800718545914,0.99771386384964,-0.054992102086544,-0.0392800718545914,0.99771386384964,-0.054992102086544,0.102473460137844,0.993204295635223,-0.0551780164241791,0.188346847891808,0.0470867119729519,-0.980973124504089,0.188346847891808,0.0470867119729519,-0.980973124504089,0.133605852723122,0.0392958410084248,-0.990255177021027,-0.0392800718545914,0.99771386384964,-0.054992102086544,0.133605852723122,0.0392958410084248,-0.990255177021027,0.188346847891808,0.0470867119729519,-0.980973124504089,0.110428102314472,-0.00788772199302912,-0.993852913379669,0.188346847891808,0.0470867119729519,-0.980973124504089,0.118179865181446,-0.0236359722912312,-0.992710888385773,0.110428102314472,-0.00788772199302912,-0.993852913379669,0.118179865181446,-0.0236359722912312,-0.992710888385773,0.188346847891808,0.0470867119729519,-0.980973124504089,0.18855020403862,-0.00785625819116831,-0.982032239437103,-0.0157416891306639,0.0236125327646732,0.999597251415253,-0.0947351977229118,-0.0394730009138584,0.994719624519348,-0.0157416891306639,-0.0236125327646732,0.999597251415253,-0.0947351977229118,-0.0394730009138584,0.994719624519348,
- -0.0157416891306639,0.0236125327646732,0.999597251415253,-0.0947824716567993,-0.0236956179141998,0.995215952396393,-0.0157416891306639,0.0236125327646732,0.999597251415253,-0.0706692412495613,0.0235564168542624,0.99722158908844,-0.0947824716567993,-0.0236956179141998,0.995215952396393,0.0788183808326721,0.993111670017242,0.0867002233862877,-0.0862672179937363,0.0235274210572243,0.995994210243225,-0.0236088763922453,0.0236088763922453,0.999442458152771,-0.0862672179937363,0.0235274210572243,0.995994210243225,0.0788183808326721,0.993111670017242,0.0867002233862877,-0.0627726167440414,0.996515274047852,0.0549260377883911,-0.0627726167440414,0.996515274047852,0.0549260377883911,0.0788183808326721,0.993111670017242,0.0867002233862877,0.0471390038728714,0.997775554656982,-0.0471390038728714,-0.0627726167440414,0.996515274047852,0.0549260377883911,0.0471390038728714,0.997775554656982,-0.0471390038728714,-0.117978647351265,0.991020619869232,-0.062921941280365,-0.117978647351265,0.991020619869232,-0.062921941280365,0.0471390038728714,0.997775554656982,-0.0471390038728714,-0.00786499958485365,0.047189999371767,-0.998854994773865,0.054992102086544,0.0392800718545914,-0.99771386384964,-0.00786499958485365,0.047189999371767,-0.998854994773865,0.0471390038728714,0.997775554656982,-0.0471390038728714,-0.00786499958485365,0.047189999371767,-0.998854994773865,0.0706692412495613,-0.0235564168542624,-0.99722158908844,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.0706692412495613,-0.0235564168542624,-0.99722158908844,-0.00786499958485365,0.047189999371767,-0.998854994773865,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,-0.00786499958485365,0.047189999371767,-0.998854994773865,0.054992102086544,0.0392800718545914,-0.99771386384964,-0.0862672179937363,0.0235274210572243,0.995994210243225,-0.00787157658487558,-0.0236147306859493,0.999690234661102,-0.0236088763922453,0.0236088763922453,0.999442458152771,-0.0862672179937363,0.0235274210572243,0.995994210243225,
- -0.00786767713725567,-0.0393383838236332,0.999194979667664,-0.00787157658487558,-0.0236147306859493,0.999690234661102,-0.00786767713725567,-0.0393383838236332,0.999194979667664,-0.0862672179937363,0.0235274210572243,0.995994210243225,-0.0869273319840431,-0.0316099375486374,0.99571305513382,0.0867973417043686,0.994224011898041,0.0631253346800804,0.00786986947059631,0.0314794778823853,0.999473392963409,0.0628364831209183,0.0314182415604591,0.997529208660126,0.00786986947059631,0.0314794778823853,0.999473392963409,0.0867973417043686,0.994224011898041,0.0631253346800804,-0.0549514293670654,0.996975898742676,0.0549514293670654,0.0392800718545914,0.99771386384964,-0.054992102086544,-0.0549514293670654,0.996975898742676,0.0549514293670654,0.0867973417043686,0.994224011898041,0.0631253346800804,-0.0549514293670654,0.996975898742676,0.0549514293670654,0.0392800718545914,0.99771386384964,-0.054992102086544,-0.125781655311584,0.990530550479889,-0.0550294741988182,-0.125781655311584,0.990530550479889,-0.0550294741988182,0.0392800718545914,0.99771386384964,-0.054992102086544,-0.173201501369476,0.0393639765679836,-0.984099447727203,-0.118154212832451,0.0315077900886536,-0.992495357990265,-0.173201501369476,0.0393639765679836,-0.984099447727203,0.0392800718545914,0.99771386384964,-0.054992102086544,-0.173201501369476,0.0393639765679836,-0.984099447727203,-0.102578662335873,-0.0315626673400402,-0.994224011898041,-0.18093977868557,-0.0157338920980692,-0.983368337154388,-0.102578662335873,-0.0315626673400402,-0.994224011898041,-0.173201501369476,0.0393639765679836,-0.984099447727203,-0.102626599371433,-0.00789435394108295,-0.994688630104065,-0.102626599371433,-0.00789435394108295,-0.994688630104065,-0.173201501369476,0.0393639765679836,-0.984099447727203,-0.118154212832451,0.0315077900886536,-0.992495357990265,0.00786986947059631,0.0314794778823853,0.999473392963409,0.0784875229001045,-0.0156975034624338,0.996791481971741,0.0628364831209183,0.0314182415604591,0.997529208660126,0.00786986947059631,0.0314794778823853,0.999473392963409,
- 0.0784585326910019,-0.0313834138214588,0.996423363685608,0.0784875229001045,-0.0156975034624338,0.996791481971741,0.0784585326910019,-0.0313834138214588,0.996423363685608,0.00786986947059631,0.0314794778823853,0.999473392963409,0.00787279661744833,-0.0157455932348967,0.999845147132874,0.00789927877485752,-0.987409830093384,0.15798556804657,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.251345932483673,-0.761892378330231,0.596946597099304,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.00789927877485752,-0.987409830093384,0.15798556804657,-0.0862911120057106,-0.996270060539246,-2.21216391991074e-016,-0.0862911120057106,-0.996270060539246,-2.21216391991074e-016,0.651025414466858,-0.698087573051453,-0.298059850931168,0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.0862911120057106,-0.996270060539246,-2.21216391991074e-016,-0.502645373344421,-0.0314153358340263,-0.863921701908112,-0.434040725231171,-0.0473498962819576,-0.899648070335388,0.651025414466858,-0.698087573051453,-0.298059850931168,-0.0862911120057106,-0.996270060539246,-2.21216391991074e-016,0.637301564216614,-0.692377030849457,-0.338320553302765,0.637301564216614,-0.692377030849457,-0.338320553302765,-0.0862911120057106,-0.996270060539246,-2.21216391991074e-016,-0.434040725231171,-0.0473498962819576,-0.899648070335388,0.651025414466858,-0.698087573051453,-0.298059850931168,0.637301564216614,-0.692377030849457,-0.338320553302765,0.801066339015961,-0.471215516328812,-0.369118809700012,-0.434040725231171,-0.0473498962819576,-0.899648070335388,-0.434406131505966,-0.0236948784440756,-0.900405406951904,0.637301564216614,-0.692377030849457,-0.338320553302765,0.835137724876404,-0.338782250881195,-0.433326154947281,0.801066339015961,-0.471215516328812,-0.369118809700012,0.637301564216614,-0.692377030849457,-0.338320553302765,0.835137724876404,-0.338782250881195,-0.433326154947281,0.637301564216614,-0.692377030849457,-0.338320553302765,-0.434406131505966,-0.0236948784440756,-0.900405406951904,0.873555481433868,0.118048042058945,-0.472192168235779,
- -0.434406131505966,-0.0236948784440756,-0.900405406951904,-0.450244843959808,0.0236970968544483,-0.892590641975403,-0.434406131505966,-0.0236948784440756,-0.900405406951904,0.873555481433868,0.118048042058945,-0.472192168235779,0.835137724876404,-0.338782250881195,-0.433326154947281,0.867649257183075,-0.331284254789352,-0.370722889900208,0.801066339015961,-0.471215516328812,-0.369118809700012,0.835137724876404,-0.338782250881195,-0.433326154947281,0.873555481433868,0.118048042058945,-0.472192168235779,0.867649257183075,-0.331284254789352,-0.370722889900208,0.835137724876404,-0.338782250881195,-0.433326154947281,0.801066339015961,-0.471215516328812,-0.369118809700012,0.867649257183075,-0.331284254789352,-0.370722889900208,0.86509644985199,-0.33030954003334,0.377496629953384,0.867649257183075,-0.331284254789352,-0.370722889900208,0.873555481433868,0.118048042058945,-0.472192168235779,0.928558349609375,0.133775353431702,-0.346242100000381,0.86509644985199,-0.33030954003334,0.377496629953384,0.867649257183075,-0.331284254789352,-0.370722889900208,0.409055888652802,-2.02617771930856e-016,0.912509322166443,0.928558349609375,0.133775353431702,-0.346242100000381,0.409055888652802,-2.02617771930856e-016,0.912509322166443,0.867649257183075,-0.331284254789352,-0.370722889900208,0.409055888652802,-2.02617771930856e-016,0.912509322166443,0.928558349609375,0.133775353431702,-0.346242100000381,0.402023702859879,0.0472969077527523,0.914406895637512,-0.502753913402557,0.0235665887594223,-0.864108264446259,-0.434040725231171,-0.0473498962819576,-0.899648070335388,-0.502645373344421,-0.0314153358340263,-0.863921701908112,-0.434040725231171,-0.0473498962819576,-0.899648070335388,-0.502753913402557,0.0235665887594223,-0.864108264446259,-0.434406131505966,-0.0236948784440756,-0.900405406951904,-0.434406131505966,-0.0236948784440756,-0.900405406951904,-0.502753913402557,0.0235665887594223,-0.864108264446259,-0.450244843959808,0.0236970968544483,-0.892590641975403,0.386282086372375,0.00788330752402544,0.922347009181976,0.339838653802872,-2.08829342465758e-016,0.940483748912811,
- 0.386294096708298,-2.0480854323959e-016,0.922375679016113,0.339457213878632,0.047366127371788,0.939428150653839,0.339838653802872,-2.08829342465758e-016,0.940483748912811,0.386282086372375,0.00788330752402544,0.922347009181976,0.409055888652802,-2.02617771930856e-016,0.912509322166443,0.339457213878632,0.047366127371788,0.939428150653839,0.386282086372375,0.00788330752402544,0.922347009181976,0.339457213878632,0.047366127371788,0.939428150653839,0.409055888652802,-2.02617771930856e-016,0.912509322166443,0.409055888652802,-2.02617771930856e-016,0.912509322166443,0.339457213878632,0.047366127371788,0.939428150653839,0.409055888652802,-2.02617771930856e-016,0.912509322166443,0.402023702859879,0.0472969077527523,0.914406895637512,-0.702597498893738,0.0394717678427696,-0.710491895675659,0.0157872345298529,0.994595766067505,-0.102617025375366,-0.662074446678162,0.0315273553133011,-0.748774647712708,0.0157872345298529,0.994595766067505,-0.102617025375366,-0.702597498893738,0.0394717678427696,-0.710491895675659,-0.0784971937537193,0.996914327144623,2.21359447914931e-016,-0.0784971937537193,0.996914327144623,2.21359447914931e-016,0.0706866830587387,0.997467637062073,0.00785407610237598,0.0157872345298529,0.994595766067505,-0.102617025375366,0.0706866830587387,0.997467637062073,0.00785407610237598,-0.0784971937537193,0.996914327144623,2.21359447914931e-016,-0.0471870861947536,0.990928769111633,0.125832229852676,0.574233829975128,0.0314648672938347,0.818086445331573,0.0706866830587387,0.997467637062073,0.00785407610237598,-0.0471870861947536,0.990928769111633,0.125832229852676,0.0706866830587387,0.997467637062073,0.00785407610237598,0.574233829975128,0.0314648672938347,0.818086445331573,0.619593560695648,0.0313718244433403,0.784295618534088,-0.703057706356049,-0.0157990492880344,-0.710957229137421,-0.645509243011475,-0.0157441273331642,-0.763590157032013,-0.653705477714539,-0.0315038822591305,-0.756093144416809,-0.703057706356049,-0.0157990492880344,-0.710957229137421,-0.702597498893738,0.0394717678427696,-0.710491895675659,
- -0.645509243011475,-0.0157441273331642,-0.763590157032013,-0.645509243011475,-0.0157441273331642,-0.763590157032013,-0.702597498893738,0.0394717678427696,-0.710491895675659,-0.662074446678162,0.0315273553133011,-0.748774647712708,0.574233829975128,0.0314648672938347,0.818086445331573,0.632297515869141,-0.0158074386417866,0.774564504623413,0.619593560695648,0.0313718244433403,0.784295618534088,0.574233829975128,0.0314648672938347,0.818086445331573,0.574447154998779,-0.0157382767647505,0.818390369415283,0.632297515869141,-0.0158074386417866,0.774564504623413,0.632297515869141,-0.0158074386417866,0.774564504623413,0.574447154998779,-0.0157382767647505,0.818390369415283,0.632060647010803,-0.031603030860424,0.774274230003357,-0.848816394805908,-0.0471564643085003,-0.526580512523651,-0.811224818229675,-0.04725581407547,-0.582821726799011,-0.804047405719757,-0.0630625411868095,-0.591211378574371,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.811224818229675,-0.04725581407547,-0.582821726799011,-0.848816394805908,-0.0471564643085003,-0.526580512523651,-0.811224818229675,-0.04725581407547,-0.582821726799011,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.824322104454041,-0.0314027480781078,-0.565249383449554,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.821781516075134,-0.0316069833934307,-0.568925619125366,-0.824322104454041,-0.0314027480781078,-0.565249383449554,-0.821781516075134,-0.0316069833934307,-0.568925619125366,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.818466424942017,0.00786986947059631,-0.574500501155853,0.740249276161194,0.0629999414086342,0.669374346733093,0.788404285907745,0.0157680865377188,0.614955365657806,0.773116886615753,0.0631115809082985,0.631115853786469,0.740249276161194,0.0629999414086342,0.669374346733093,0.73771458864212,0.0156960561871529,0.674930334091187,0.788404285907745,0.0157680865377188,0.614955365657806,0.788404285907745,0.0157680865377188,0.614955365657806,0.73771458864212,0.0156960561871529,0.674930334091187,0.784681856632233,-1.37645156799649e-016,0.619898676872253,
- 0.078916497528553,0.994347870349884,-0.0710248425602913,0.967036128044128,0.039310410618782,0.251586616039276,0.979785799980164,0.0316059924662113,0.197537466883659,0.967036128044128,0.039310410618782,0.251586616039276,0.078916497528553,0.994347870349884,-0.0710248425602913,0.0314017795026302,0.997006475925446,0.07065399736166,0.0314017795026302,0.997006475925446,0.07065399736166,0.078916497528553,0.994347870349884,-0.0710248425602913,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.0943129435181618,0.990285873413086,0.1021723523736,0.0314017795026302,0.997006475925446,0.07065399736166,-0.0943129435181618,0.990285873413086,0.1021723523736,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.99571305513382,0.0316099375486374,-0.0869273319840431,-0.99571305513382,0.0316099375486374,-0.0869273319840431,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.989461004734039,0.0314114615321159,-0.141351565718651,-0.99571305513382,0.0316099375486374,-0.0869273319840431,-0.986671268939972,-0.0394668504595757,-0.157867401838303,-0.995994210243225,-0.0235274210572243,-0.0862672179937363,-0.986671268939972,-0.0394668504595757,-0.157867401838303,-0.99571305513382,0.0316099375486374,-0.0869273319840431,-0.987317442893982,-0.0157970786094666,-0.157970786094666,-0.987317442893982,-0.0157970786094666,-0.157970786094666,-0.99571305513382,0.0316099375486374,-0.0869273319840431,-0.989461004734039,0.0314114615321159,-0.141351565718651,0.983003377914429,-0.0314561054110527,0.180872619152069,0.967036128044128,0.039310410618782,0.251586616039276,0.965723752975464,-0.0157028250396252,0.259096622467041,0.967036128044128,0.039310410618782,0.251586616039276,0.983003377914429,-0.0314561054110527,0.180872619152069,0.98345959186554,-0.00786767713725567,0.180956572294235,0.967036128044128,0.039310410618782,0.251586616039276,0.98345959186554,-0.00786767713725567,0.180956572294235,0.979785799980164,0.0316059924662113,0.197537466883659,-0.314415276050568,0.841060876846313,0.440181374549866,
- 0.316296964883804,0.885631501674652,-0.340019226074219,0.305781275033951,0.823257267475128,-0.478273272514343,0.316296964883804,0.885631501674652,-0.340019226074219,-0.314415276050568,0.841060876846313,0.440181374549866,-0.220226794481277,0.825850546360016,0.519106030464172,-0.321749299764633,0.792601883411407,0.517937898635864,-0.220226794481277,0.825850546360016,0.519106030464172,-0.314415276050568,0.841060876846313,0.440181374549866,-0.220226794481277,0.825850546360016,0.519106030464172,-0.321749299764633,0.792601883411407,0.517937898635864,-0.33778777718544,0.785552978515625,0.518464982509613,-0.220226794481277,0.825850546360016,0.519106030464172,-0.33778777718544,0.785552978515625,0.518464982509613,0.0549734458327293,0.99737536907196,0.0471200942993164,-0.33778777718544,0.785552978515625,0.518464982509613,-0.393737405538559,0.826848566532135,0.401612132787704,0.0549734458327293,0.99737536907196,0.0471200942993164,-0.321749299764633,0.792601883411407,0.517937898635864,-0.521759510040283,-0.300406992435455,0.798450171947479,-0.33778777718544,0.785552978515625,0.518464982509613,-0.321749299764633,0.792601883411407,0.517937898635864,-0.621258199214935,-0.66844230890274,0.408929437398911,-0.521759510040283,-0.300406992435455,0.798450171947479,-0.346704006195068,0.795843243598938,0.496417075395584,-0.393737405538559,0.826848566532135,0.401612132787704,-0.33778777718544,0.785552978515625,0.518464982509613,-0.393737405538559,0.826848566532135,0.401612132787704,-0.346704006195068,0.795843243598938,0.496417075395584,-0.299092084169388,0.842180371284485,0.448638111352921,-0.393737405538559,0.826848566532135,0.401612132787704,-0.299092084169388,0.842180371284485,0.448638111352921,0.236081466078758,0.881370782852173,-0.409207850694656,0.236081466078758,0.881370782852173,-0.409207850694656,-0.299092084169388,0.842180371284485,0.448638111352921,0.346800893545151,0.82759302854538,-0.441382944583893,-0.33778777718544,0.785552978515625,0.518464982509613,-0.526889801025391,-0.322425097227097,0.786402702331543,-0.346704006195068,0.795843243598938,0.496417075395584,
- -0.526889801025391,-0.322425097227097,0.786402702331543,-0.33778777718544,0.785552978515625,0.518464982509613,-0.521759510040283,-0.300406992435455,0.798450171947479,-0.526889801025391,-0.322425097227097,0.786402702331543,0.448902398347855,-0.82692551612854,-0.338645666837692,-0.346704006195068,0.795843243598938,0.496417075395584,-0.526889801025391,-0.322425097227097,0.786402702331543,-0.521759510040283,-0.300406992435455,0.798450171947479,-0.480300158262253,-0.566911578178406,0.669270634651184,-0.521759510040283,-0.300406992435455,0.798450171947479,-0.621258199214935,-0.66844230890274,0.408929437398911,-0.480300158262253,-0.566911578178406,0.669270634651184,-0.526889801025391,-0.322425097227097,0.786402702331543,-0.443314969539642,-0.554143667221069,0.704554200172424,0.448902398347855,-0.82692551612854,-0.338645666837692,-0.480300158262253,-0.566911578178406,0.669270634651184,-0.443314969539642,-0.554143667221069,0.704554200172424,-0.526889801025391,-0.322425097227097,0.786402702331543,-0.480300158262253,-0.566911578178406,0.669270634651184,0.448902398347855,-0.82692551612854,-0.338645666837692,-0.443314969539642,-0.554143667221069,0.704554200172424,0.448902398347855,-0.82692551612854,-0.338645666837692,-0.480300158262253,-0.566911578178406,0.669270634651184,0.323426723480225,-0.828288018703461,-0.457530498504639,-0.621258199214935,-0.66844230890274,0.408929437398911,0.323426723480225,-0.828288018703461,-0.457530498504639,-0.480300158262253,-0.566911578178406,0.669270634651184,0.323426723480225,-0.828288018703461,-0.457530498504639,0.0473145507276058,-0.993605554103851,0.102514855563641,0.448902398347855,-0.82692551612854,-0.338645666837692,0.0473145507276058,-0.993605554103851,0.102514855563641,0.323426723480225,-0.828288018703461,-0.457530498504639,-0.00785819720476866,-0.99799108505249,0.0628655776381493,0.236066848039627,-0.826233983039856,-0.511478126049042,-0.00785819720476866,-0.99799108505249,0.0628655776381493,0.323426723480225,-0.828288018703461,-0.457530498504639,0.323426723480225,-0.828288018703461,-0.457530498504639,
- -0.621258199214935,-0.66844230890274,0.408929437398911,0.236066848039627,-0.826233983039856,-0.511478126049042,-0.00785819720476866,-0.99799108505249,0.0628655776381493,0.236066848039627,-0.826233983039856,-0.511478126049042,-0.118209235370159,-0.992957532405853,-0.00788061507046223,-0.621258199214935,-0.66844230890274,0.408929437398911,-0.118209235370159,-0.992957532405853,-0.00788061507046223,0.236066848039627,-0.826233983039856,-0.511478126049042,-0.118209235370159,-0.992957532405853,-0.00788061507046223,-0.621258199214935,-0.66844230890274,0.408929437398911,-0.876136839389801,-0.0236793737858534,-0.481480598449707,-0.965574979782104,0.0235506091266871,-0.259056687355042,-0.0394422858953476,0.993945598602295,-0.102549932897091,-0.949202120304108,0.0235339347273111,-0.313785821199417,-0.0394422858953476,0.993945598602295,-0.102549932897091,-0.965574979782104,0.0235506091266871,-0.259056687355042,-0.0706344172358513,0.996730208396912,0.0392413474619389,-0.0706344172358513,0.996730208396912,0.0392413474619389,0.0628500655293465,0.997744739055634,-0.0235687755048275,-0.0394422858953476,0.993945598602295,-0.102549932897091,0.0235891658812761,0.990744948387146,0.133671939373016,0.0628500655293465,0.997744739055634,-0.0235687755048275,-0.0706344172358513,0.996730208396912,0.0392413474619389,0.907172560691834,0.0473307408392429,0.418088227510452,0.0628500655293465,0.997744739055634,-0.0235687755048275,0.0235891658812761,0.990744948387146,0.133671939373016,0.0628500655293465,0.997744739055634,-0.0235687755048275,0.907172560691834,0.0473307408392429,0.418088227510452,0.92829966545105,0.0393347330391407,0.369746506214142,0.935096621513367,-0.0235738642513752,0.353607982397079,0.907172560691834,0.0473307408392429,0.418088227510452,0.905147194862366,-0.00787084549665451,0.425025671720505,0.907172560691834,0.0473307408392429,0.418088227510452,0.935096621513367,-0.0235738642513752,0.353607982397079,0.935327649116516,-0.00785989686846733,0.35369536280632,0.907172560691834,0.0473307408392429,0.418088227510452,0.935327649116516,-0.00785989686846733,0.35369536280632,
- 0.92829966545105,0.0393347330391407,0.369746506214142,-0.965574979782104,0.0235506091266871,-0.259056687355042,-0.943129301071167,-0.0392970517277718,-0.330095231533051,-0.965574979782104,-0.0235506091266871,-0.259056687355042,-0.943129301071167,-0.0392970517277718,-0.330095231533051,-0.965574979782104,0.0235506091266871,-0.259056687355042,-0.943595707416534,-0.0235898923128843,-0.33025848865509,-0.943595707416534,-0.0235898923128843,-0.33025848865509,-0.965574979782104,0.0235506091266871,-0.259056687355042,-0.949202120304108,0.0235339347273111,-0.313785821199417,-0.714720904827118,0.0235622264444828,0.699012756347656,-0.714566648006439,-0.0314095206558704,0.69886189699173,0.574447154998779,0.0157382767647505,0.818390369415283,0.574447154998779,0.0157382767647505,0.818390369415283,-0.714566648006439,-0.0314095206558704,0.69886189699173,0.551780104637146,-0.102473445236683,0.827670156955719,0.574447154998779,0.0157382767647505,0.818390369415283,0.551780104637146,-0.102473445236683,0.827670156955719,0.670518815517426,-0.0236653704196215,0.741514980792999,0.670518815517426,-0.0236653704196215,0.741514980792999,0.695071518421173,0.0157970804721117,0.718767106533051,0.574447154998779,0.0157382767647505,0.818390369415283,0.670518815517426,-0.0236653704196215,0.741514980792999,0.551780104637146,-0.102473445236683,0.827670156955719,0.8647221326828,-0.149361103773117,-0.479527741670609,0.8647221326828,-0.149361103773117,-0.479527741670609,0.695071518421173,0.0157970804721117,0.718767106533051,0.670518815517426,-0.0236653704196215,0.741514980792999,0.695071518421173,0.0157970804721117,0.718767106533051,0.8647221326828,-0.149361103773117,-0.479527741670609,0.827464580535889,0.0472836866974831,-0.559523582458496,-0.845856428146362,-0.411070376634598,0.339923590421677,-0.857842445373535,-0.393505692481995,0.330544769763947,-0.917259335517883,-0.235194712877274,0.321432739496231,-0.917259335517883,-0.235194712877274,0.321432739496231,-0.857842445373535,-0.393505692481995,0.330544769763947,-0.928989887237549,-0.291293442249298,0.228311076760292,
- -0.975622236728668,0.0550754480063915,0.212433889508247,-0.917259335517883,-0.235194712877274,0.321432739496231,-0.928989887237549,-0.291293442249298,0.228311076760292,-0.975622236728668,0.0550754480063915,0.212433889508247,-0.917259335517883,-0.235194712877274,0.321432739496231,-0.975622236728668,0.0550754480063915,0.212433889508247,0.896859645843506,0.0393359512090683,-0.440562635660172,0.856728792190552,-0.0707390680909157,-0.510893285274506,0.875074446201324,-0.102486193180084,-0.47301322221756,0.896859645843506,0.0393359512090683,-0.440562635660172,0.875074446201324,-0.102486193180084,-0.47301322221756,0.875945806503296,0.0315656140446663,-0.481375634670258,0.858214497566223,0.039367638528347,-0.511779308319092,0.875945806503296,0.0315656140446663,-0.481375634670258,0.875074446201324,-0.102486193180084,-0.47301322221756,0.894785284996033,-0.0784899368882179,-0.439543664455414,0.858214497566223,0.039367638528347,-0.511779308319092,0.875074446201324,-0.102486193180084,-0.47301322221756,0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,0.998453617095947,0.0393091961741447,0.0393091961741447,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.998453617095947,0.0393091961741447,0.0393091961741447,0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.99839198589325,0.0471681281924248,-0.0314454175531864,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,0.999102234840393,-0.0393347330391407,0.0157338920980692,0.99839198589325,0.0471681281924248,-0.0314454175531864,0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,0.486682593822479,-0.0627977550029755,-0.871318817138672,0.418088227510452,0.0473307408392429,-0.907172560691834,0.454933434724808,-0.0862804874777794,-0.886335849761963,0.418088227510452,0.0473307408392429,-0.907172560691834,0.450146526098251,0.0315892323851585,-0.892395794391632,0.454933434724808,-0.0862804874777794,-0.886335849761963,0.487268418073654,0.0392958410084248,-0.872367680072784,
- 0.454933434724808,-0.0862804874777794,-0.886335849761963,0.450146526098251,0.0315892323851585,-0.892395794391632,0.487268418073654,0.0392958410084248,-0.872367680072784,0.417724460363388,-0.0630527511239052,-0.906383275985718,0.454933434724808,-0.0862804874777794,-0.886335849761963,0.0314182415604591,-0.0628364831209183,-0.997529208660126,-0.0314454175531864,0.0471681281924248,-0.99839198589325,0,-0.0706888660788536,-0.997498512268066,-0.0314454175531864,0.0471681281924248,-0.99839198589325,-0.00786183960735798,0.0550328753888607,-0.998453617095947,0,-0.0706888660788536,-0.997498512268066,0.0157441273331642,0.0157441273331642,-0.999752104282379,0,-0.0706888660788536,-0.997498512268066,-0.00786183960735798,0.0550328753888607,-0.998453617095947,0,-0.0706888660788536,-0.997498512268066,0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0314182415604591,-0.0628364831209183,-0.997529208660126,-0.502753913402557,0.0235665887594223,-0.864108264446259,-0.502645373344421,-0.0314153358340263,-0.863921701908112,-0.931591868400574,0.0157896932214499,0.363162934780121,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.931591868400574,0.0157896932214499,0.363162934780121,-0.502645373344421,-0.0314153358340263,-0.863921701908112,-0.881234347820282,-0.023604491725564,0.472089856863022,-0.931591868400574,0.0157896932214499,0.363162934780121,-0.9355588555336,-0.102203913033009,0.338059097528458,-0.881234347820282,-0.023604491725564,0.472089856863022,-0.864241600036621,0.0157134830951691,0.50283145904541,-0.931591868400574,0.0157896932214499,0.363162934780121,-0.881234347820282,-0.023604491725564,0.472089856863022,-0.9355588555336,-0.102203913033009,0.338059097528458,0.260149151086807,-0.149782851338387,0.953880250453949,0.260149151086807,-0.149782851338387,0.953880250453949,-0.864241600036621,0.0157134830951691,0.50283145904541,-0.881234347820282,-0.023604491725564,0.472089856863022,-0.864241600036621,0.0157134830951691,0.50283145904541,0.260149151086807,-0.149782851338387,0.953880250453949,0.339457213878632,0.047366127371788,0.939428150653839,
- -0.702597498893738,0.0394717678427696,-0.710491895675659,-0.703057706356049,-0.0157990492880344,-0.710957229137421,-0.812031149864197,0.0157675947993994,0.583401083946228,-0.821524977684021,-0.102690622210503,0.560848772525787,-0.812031149864197,0.0157675947993994,0.583401083946228,-0.703057706356049,-0.0157990492880344,-0.710957229137421,-0.733992040157318,-0.0236771646887064,0.678745329380035,-0.812031149864197,0.0157675947993994,0.583401083946228,-0.821524977684021,-0.102690622210503,0.560848772525787,-0.733992040157318,-0.0236771646887064,0.678745329380035,-0.707019507884979,0.0157115440815687,0.707019507884979,-0.812031149864197,0.0157675947993994,0.583401083946228,-0.733992040157318,-0.0236771646887064,0.678745329380035,-0.821524977684021,-0.102690622210503,0.560848772525787,0.486982762813568,-0.172800332307816,0.856147110462189,0.486982762813568,-0.172800332307816,0.856147110462189,-0.707019507884979,0.0157115440815687,0.707019507884979,-0.733992040157318,-0.0236771646887064,0.678745329380035,-0.707019507884979,0.0157115440815687,0.707019507884979,0.486982762813568,-0.172800332307816,0.856147110462189,0.574233829975128,0.0314648672938347,0.818086445331573,-0.125766113400459,-0.408739864826202,-0.90394389629364,-0.117920324206352,-0.393067717552185,-0.911917090415955,-0.0865578427910805,-0.236066848039627,-0.967874050140381,-0.0865578427910805,-0.236066848039627,-0.967874050140381,-0.117920324206352,-0.393067717552185,-0.911917090415955,0,-0.29241931438446,-0.956290185451508,-0.0865578427910805,-0.236066848039627,-0.967874050140381,0,-0.29241931438446,-0.956290185451508,0.0314327888190746,0.0550073832273483,-0.99799108505249,0.0314327888190746,0.0550073832273483,-0.99799108505249,-0.0865578427910805,-0.236066848039627,-0.967874050140381,0.0314327888190746,0.0550073832273483,-0.99799108505249,0.212099298834801,-0.0785553008317947,0.974085688591003,0.292191296815872,0.0394853092730045,0.955544531345367,0.244969367980957,-0.102729082107544,0.964073002338409,0.244969367980957,-0.102729082107544,0.964073002338409,
- 0.292191296815872,0.0394853092730045,0.955544531345367,0.251656651496887,0.0314570814371109,0.967305243015289,0.212591841816902,0.0393688566982746,0.976347684860229,0.244969367980957,-0.102729082107544,0.964073002338409,0.251656651496887,0.0314570814371109,0.967305243015289,0.212591841816902,0.0393688566982746,0.976347684860229,0.284445017576218,-0.0711112543940544,0.956051349639893,0.244969367980957,-0.102729082107544,0.964073002338409,-0.00786986947059631,-0.0314794778823853,0.999473392963409,0.031456109136343,0.039320133626461,0.998731434345245,0,-0.0393396019935608,0.999225914478302,0,-0.0393396019935608,0.999225914478302,0.031456109136343,0.039320133626461,0.998731434345245,0,0.0784971937537193,0.996914327144623,-0.031456109136343,0.039320133626461,0.998731434345245,0,-0.0393396019935608,0.999225914478302,0,0.0784971937537193,0.996914327144623,0,-0.0393396019935608,0.999225914478302,-0.031456109136343,0.039320133626461,0.998731434345245,0.00786986947059631,-0.0314794778823853,0.999473392963409,0.729709208011627,0.0392316766083241,0.682631194591522,0.780083954334259,-0.0630370900034904,0.622491240501404,0.750220954418182,-0.0868676900863647,0.655456125736237,0.729709208011627,0.0392316766083241,0.682631194591522,0.750220954418182,-0.0868676900863647,0.655456125736237,0.756093144416809,0.0315038822591305,0.653705477714539,0.780762910842896,0.0473189651966095,0.623033046722412,0.756093144416809,0.0315038822591305,0.653705477714539,0.750220954418182,-0.0868676900863647,0.655456125736237,0.725129187107086,-0.0630547180771828,0.685719966888428,0.780762910842896,0.0473189651966095,0.623033046722412,0.750220954418182,-0.0868676900863647,0.655456125736237,0.99138867855072,-0.0708134695887566,0.110154293477535,0.992002964019775,0.0078730396926403,0.125968635082245,0.994874656200409,-0.0631666406989098,0.0789583027362823,0.992002964019775,0.0078730396926403,0.125968635082245,0.99138867855072,-0.0708134695887566,0.110154293477535,0.993204295635223,0.0551780164241791,0.102473460137844,0.995744228363037,0.0474163927137852,0.0790273174643517,
- 0.993204295635223,0.0551780164241791,0.102473460137844,0.99138867855072,-0.0708134695887566,0.110154293477535,0.987286627292633,-0.0710846334695816,0.142169266939163,0.995744228363037,0.0474163927137852,0.0790273174643517,0.99138867855072,-0.0708134695887566,0.110154293477535,-0.965574979782104,-0.0235506091266871,-0.259056687355042,-0.409005284309387,0.0157309733331203,0.912396430969238,-0.965574979782104,0.0235506091266871,-0.259056687355042,-0.409005284309387,0.0157309733331203,0.912396430969238,-0.965574979782104,-0.0235506091266871,-0.259056687355042,-0.425831019878387,-0.102514870464802,0.898976564407349,-0.292337149381638,-0.0237030126154423,0.956021547317505,-0.409005284309387,0.0157309733331203,0.912396430969238,-0.425831019878387,-0.102514870464802,0.898976564407349,-0.425831019878387,-0.102514870464802,0.898976564407349,0.850710213184357,-0.173292830586433,0.496247619390488,-0.292337149381638,-0.0237030126154423,0.956021547317505,-0.409005284309387,0.0157309733331203,0.912396430969238,-0.292337149381638,-0.0237030126154423,0.956021547317505,-0.259096622467041,0.0157028250396252,0.965723752975464,-0.259096622467041,0.0157028250396252,0.965723752975464,-0.292337149381638,-0.0237030126154423,0.956021547317505,0.850710213184357,-0.173292830586433,0.496247619390488,0.850710213184357,-0.173292830586433,0.496247619390488,0.907172560691834,0.0473307408392429,0.418088227510452,-0.259096622467041,0.0157028250396252,0.965723752975464,0.996638000011444,-0.0235426295548677,-0.0784754380583763,-0.00787304062396288,0.125968649983406,-0.992003083229065,0.997898638248444,0.0157149396836758,-0.0628597587347031,-0.0472382456064224,-0.346413791179657,-0.936891794204712,-0.00787304062396288,0.125968649983406,-0.992003083229065,0.996638000011444,-0.0235426295548677,-0.0784754380583763,0.996147394180298,-0.0392183996737003,-0.0784367993474007,-0.0472382456064224,-0.346413791179657,-0.936891794204712,0.996638000011444,-0.0235426295548677,-0.0784754380583763,-0.0472382456064224,-0.346413791179657,-0.936891794204712,-0.141399547457695,0.125688493251801,-0.981941342353821,
- -0.00787304062396288,0.125968649983406,-0.992003083229065,-0.0315862745046616,-0.702794671058655,-0.710691213607788,-0.0472382456064224,-0.346413791179657,-0.936891794204712,0.996147394180298,-0.0392183996737003,-0.0784367993474007,0.996147394180298,-0.0392183996737003,-0.0784367993474007,0.110263586044312,-0.992372214794159,0.0551317930221558,-0.0315862745046616,-0.702794671058655,-0.710691213607788,-0.141399547457695,0.125688493251801,-0.981941342353821,-0.994719624519348,-2.27883924331949e-017,0.102629795670509,-0.991880118846893,0.0472323894500732,0.118080973625183,0.110263586044312,-0.992372214794159,0.0551317930221558,-0.11054851859808,-0.702772736549377,-0.702772736549377,-0.0315862745046616,-0.702794671058655,-0.710691213607788,-0.0315862745046616,-0.702794671058655,-0.710691213607788,-0.11054851859808,-0.702772736549377,-0.702772736549377,-0.0472382456064224,-0.346413791179657,-0.936891794204712,-0.1962611079216,-0.973455131053925,0.117756672203541,-0.11054851859808,-0.702772736549377,-0.702772736549377,0.110263586044312,-0.992372214794159,0.0551317930221558,-0.11054851859808,-0.702772736549377,-0.702772736549377,-0.1962611079216,-0.973455131053925,0.117756672203541,-0.994440853595734,-0.0236771646887064,0.102601043879986,-0.141399547457695,0.125688493251801,-0.981941342353821,-0.0472382456064224,-0.346413791179657,-0.936891794204712,-0.126035049557686,-0.346596419811249,-0.92950850725174,-0.11054851859808,-0.702772736549377,-0.702772736549377,-0.126035049557686,-0.346596419811249,-0.92950850725174,-0.0472382456064224,-0.346413791179657,-0.936891794204712,-0.994719624519348,-2.27883924331949e-017,0.102629795670509,-0.141399547457695,0.125688493251801,-0.981941342353821,-0.126035049557686,-0.346596419811249,-0.92950850725174,-0.994440853595734,-0.0236771646887064,0.102601043879986,-0.126035049557686,-0.346596419811249,-0.92950850725174,-0.11054851859808,-0.702772736549377,-0.702772736549377,-0.126035049557686,-0.346596419811249,-0.92950850725174,-0.994440853595734,-0.0236771646887064,0.102601043879986,-0.994719624519348,-2.27883924331949e-017,0.102629795670509,
- -0.983764111995697,0.0472206771373749,0.173142492771149,-0.951517939567566,-0.165139466524124,0.25950488448143,0.00787279661744833,0.0157455932348967,0.999845147132874,0.00787279661744833,0.0157455932348967,0.999845147132874,-0.951517939567566,-0.165139466524124,0.25950488448143,0.0393286496400833,-0.0235971882939339,0.99894767999649,0.0393286496400833,-0.0235971882939339,0.99894767999649,0.157970786094666,0.0157970786094666,0.987317442893982,0.00787279661744833,0.0157455932348967,0.999845147132874,0.841372847557068,-0.534704208374023,0.0786329731345177,0.0393286496400833,-0.0235971882939339,0.99894767999649,-0.951517939567566,-0.165139466524124,0.25950488448143,0.157970786094666,0.0157970786094666,0.987317442893982,0.0393286496400833,-0.0235971882939339,0.99894767999649,0.141382083296776,-0.0235636811703444,0.989674627780914,0.0393286496400833,-0.0235971882939339,0.99894767999649,0.841372847557068,-0.534704208374023,0.0786329731345177,0.141382083296776,-0.0235636811703444,0.989674627780914,0.141382083296776,-0.0235636811703444,0.989674627780914,0.999721229076386,0.023615462705493,5.243686086563e-018,0.157970786094666,0.0157970786094666,0.987317442893982,0.999721229076386,0.023615462705493,5.243686086563e-018,0.141382083296776,-0.0235636811703444,0.989674627780914,0.841372847557068,-0.534704208374023,0.0786329731345177,0.946173369884491,-0.0157695561647415,-0.32327589392662,-0.251695573329926,0.125847786664963,-0.959589421749115,0.951311945915222,0.0314483270049095,-0.306621193885803,-0.275351643562317,-0.346156388521194,-0.896859645843506,-0.251695573329926,0.125847786664963,-0.959589421749115,0.946173369884491,-0.0157695561647415,-0.32327589392662,0.948209404945374,-0.0316069796681404,-0.316069781780243,-0.275351643562317,-0.346156388521194,-0.896859645843506,0.946173369884491,-0.0157695561647415,-0.32327589392662,-0.275351643562317,-0.346156388521194,-0.896859645843506,-0.3860182762146,0.126046791672707,-0.913839221000671,-0.251695573329926,0.125847786664963,-0.959589421749115,0.047178328037262,-0.998607933521271,0.023589164018631,
- 0.948209404945374,-0.0316069796681404,-0.316069781780243,0.969556570053101,-0.0157651472836733,-0.244359791278839,-0.20448999106884,-0.699985027313232,-0.684254944324493,-0.275351643562317,-0.346156388521194,-0.896859645843506,0.948209404945374,-0.0316069796681404,-0.316069781780243,0.948209404945374,-0.0316069796681404,-0.316069781780243,0.047178328037262,-0.998607933521271,0.023589164018631,-0.20448999106884,-0.699985027313232,-0.684254944324493,-0.3860182762146,0.126046791672707,-0.913839221000671,-0.275351643562317,-0.346156388521194,-0.896859645843506,-0.355080038309097,-0.347189396619797,-0.867973446846008,0.047178328037262,-0.998607933521271,0.023589164018631,-0.274968981742859,-0.69920688867569,-0.659925580024719,-0.20448999106884,-0.699985027313232,-0.684254944324493,-0.275351643562317,-0.346156388521194,-0.896859645843506,-0.20448999106884,-0.699985027313232,-0.684254944324493,-0.274968981742859,-0.69920688867569,-0.659925580024719,-0.274968981742859,-0.69920688867569,-0.659925580024719,-0.355080038309097,-0.347189396619797,-0.867973446846008,-0.275351643562317,-0.346156388521194,-0.896859645843506,0.047178328037262,-0.998607933521271,0.023589164018631,-0.14956921339035,-0.976135909557343,0.157441273331642,-0.274968981742859,-0.69920688867569,-0.659925580024719,-0.274968981742859,-0.69920688867569,-0.659925580024719,-0.14956921339035,-0.976135909557343,0.157441273331642,-0.940014123916626,-0.0315971150994301,0.339668989181519,-0.940454363822937,-0.00790297798812389,0.339828044176102,-0.274968981742859,-0.69920688867569,-0.659925580024719,-0.940014123916626,-0.0315971150994301,0.339668989181519,-0.355080038309097,-0.347189396619797,-0.867973446846008,-0.274968981742859,-0.69920688867569,-0.659925580024719,-0.940454363822937,-0.00790297798812389,0.339828044176102,-0.940454363822937,-0.00790297798812389,0.339828044176102,-0.3860182762146,0.126046791672707,-0.913839221000671,-0.355080038309097,-0.347189396619797,-0.867973446846008,-0.3860182762146,0.126046791672707,-0.913839221000671,-0.940454363822937,-0.00790297798812389,0.339828044176102,
- -0.934894561767578,0.0314250290393829,0.3535315990448,0.418505132198334,0.0157926455140114,0.908077120780945,0.969556570053101,-0.0157651472836733,-0.244359791278839,0.967305243015289,0.0314570814371109,-0.251656651496887,0.969556570053101,-0.0157651472836733,-0.244359791278839,0.418505132198334,0.0157926455140114,0.908077120780945,0.386186093091965,-0.0236440468579531,0.922117829322815,0.969556570053101,-0.0157651472836733,-0.244359791278839,0.386186093091965,-0.0236440468579531,0.922117829322815,0.047178328037262,-0.998607933521271,0.023589164018631,0.386186093091965,-0.0236440468579531,0.922117829322815,0.418505132198334,0.0157926455140114,0.908077120780945,0.26842474937439,0.0157896913588047,0.963171243667603,0.282938778400421,-0.0235782321542501,0.958848118782043,0.047178328037262,-0.998607933521271,0.023589164018631,0.386186093091965,-0.0236440468579531,0.922117829322815,0.26842474937439,0.0157896913588047,0.963171243667603,0.282938778400421,-0.0235782321542501,0.958848118782043,0.386186093091965,-0.0236440468579531,0.922117829322815,0.047178328037262,-0.998607933521271,0.023589164018631,0.282938778400421,-0.0235782321542501,0.958848118782043,-0.854961156845093,-0.180404648184776,0.486308157444,0.26842474937439,0.0157896913588047,0.963171243667603,-0.854961156845093,-0.180404648184776,0.486308157444,0.282938778400421,-0.0235782321542501,0.958848118782043,-0.91180431842804,0.039301909506321,0.408739864826202,-0.854961156845093,-0.180404648184776,0.486308157444,0.26842474937439,0.0157896913588047,0.963171243667603,-0.844301342964172,0.126250669360161,-0.520784020423889,-0.583401083946228,-0.0157675947993994,0.812031149864197,-0.565249443054199,0.0314027518033981,0.82432222366333,-0.583401083946228,-0.0157675947993994,0.812031149864197,-0.844301342964172,0.126250669360161,-0.520784020423889,-0.780398964881897,-0.346844017505646,-0.520265996456146,-0.780398964881897,-0.346844017505646,-0.520265996456146,-0.583183646202087,-0.0315234363079071,0.811728477478027,-0.583401083946228,-0.0157675947993994,0.812031149864197,
- -0.780398964881897,-0.346844017505646,-0.520265996456146,-0.844301342964172,0.126250669360161,-0.520784020423889,-0.765299379825592,0.126234948635101,-0.631174743175507,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.51789003610611,-0.015693636611104,0.855303227901459,-0.583183646202087,-0.0315234363079071,0.811728477478027,-0.583183646202087,-0.0315234363079071,0.811728477478027,-0.780398964881897,-0.346844017505646,-0.520265996456146,-0.597167730331421,-0.699314832687378,-0.392873525619507,-0.597167730331421,-0.699314832687378,-0.392873525619507,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.583183646202087,-0.0315234363079071,0.811728477478027,-0.780398964881897,-0.346844017505646,-0.520265996456146,-0.765299379825592,0.126234948635101,-0.631174743175507,-0.733832001686096,-0.347189337015152,-0.583909332752228,-0.552192032337189,-0.702072739601135,-0.449642091989517,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.597167730331421,-0.699314832687378,-0.392873525619507,-0.780398964881897,-0.346844017505646,-0.520265996456146,-0.552192032337189,-0.702072739601135,-0.449642091989517,-0.597167730331421,-0.699314832687378,-0.392873525619507,-0.552192032337189,-0.702072739601135,-0.449642091989517,-0.780398964881897,-0.346844017505646,-0.520265996456146,-0.733832001686096,-0.347189337015152,-0.583909332752228,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.552192032337189,-0.702072739601135,-0.449642091989517,0.196600690484047,-0.975139439105988,-0.102232359349728,0.597186148166656,-0.0314308479428291,-0.801486611366272,0.196600690484047,-0.975139439105988,-0.102232359349728,-0.552192032337189,-0.702072739601135,-0.449642091989517,-0.552192032337189,-0.702072739601135,-0.449642091989517,0.597407519817352,-0.0157212503254414,-0.801783680915833,0.597186148166656,-0.0314308479428291,-0.801486611366272,0.597407519817352,-0.0157212503254414,-0.801783680915833,-0.552192032337189,-0.702072739601135,-0.449642091989517,-0.733832001686096,-0.347189337015152,-0.583909332752228,-0.733832001686096,-0.347189337015152,-0.583909332752228,
- -0.765299379825592,0.126234948635101,-0.631174743175507,0.597407519817352,-0.0157212503254414,-0.801783680915833,-0.765299379825592,0.126234948635101,-0.631174743175507,0.614726185798645,0.0315244197845459,-0.788110494613647,0.597407519817352,-0.0157212503254414,-0.801783680915833,-0.51755553483963,0.0392087511718273,0.85475081205368,-0.51789003610611,-0.015693636611104,0.855303227901459,0.752484202384949,0.0156767554581165,0.658423662185669,0.752484202384949,0.0156767554581165,0.658423662185669,-0.51789003610611,-0.015693636611104,0.855303227901459,0.774443447589874,-0.023707453161478,0.632198750972748,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.774443447589874,-0.023707453161478,0.632198750972748,-0.51789003610611,-0.015693636611104,0.855303227901459,0.774443447589874,-0.023707453161478,0.632198750972748,0.843881130218506,0.0157734788954258,0.536298274993896,0.752484202384949,0.0156767554581165,0.658423662185669,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.834232032299042,-0.0236103385686874,0.550907909870148,0.774443447589874,-0.023707453161478,0.632198750972748,0.843881130218506,0.0157734788954258,0.536298274993896,0.774443447589874,-0.023707453161478,0.632198750972748,0.834232032299042,-0.0236103385686874,0.550907909870148,0.834232032299042,-0.0236103385686874,0.550907909870148,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.708134770393372,-0.173099622130394,-0.684530258178711,0.708134770393372,-0.173099622130394,-0.684530258178711,0.843881130218506,0.0157734788954258,0.536298274993896,0.834232032299042,-0.0236103385686874,0.550907909870148,0.843881130218506,0.0157734788954258,0.536298274993896,0.708134770393372,-0.173099622130394,-0.684530258178711,0.653705477714539,0.0315038822591305,-0.756093144416809,0.94602632522583,0.0236506573855877,0.323225647211075,0.543004155158997,-0.149522885680199,-0.826310694217682,0.474564164876938,0.0632752180099487,-0.877943694591522,0.543004155158997,-0.149522885680199,-0.826310694217682,0.94602632522583,0.0236506573855877,0.323225647211075,
- 0.937676668167114,-0.0236389078199863,0.346704006195068,0.937676668167114,-0.0236389078199863,0.346704006195068,-0.181587129831314,-0.528971195220947,0.828984797000885,0.543004155158997,-0.149522885680199,-0.826310694217682,0.889543175697327,0.0157441273331642,0.456579685211182,0.937676668167114,-0.0236389078199863,0.346704006195068,0.94602632522583,0.0236506573855877,0.323225647211075,-0.181587129831314,-0.528971195220947,0.828984797000885,0.937676668167114,-0.0236389078199863,0.346704006195068,0.897109568119049,-0.0314775295555592,0.440685391426086,0.937676668167114,-0.0236389078199863,0.346704006195068,0.889543175697327,0.0157441273331642,0.456579685211182,0.897109568119049,-0.0314775295555592,0.440685391426086,0.897109568119049,-0.0314775295555592,0.440685391426086,-0.306763470172882,0.00786573067307472,0.951753377914429,-0.181587129831314,-0.528971195220947,0.828984797000885,-0.306763470172882,0.00786573067307472,0.951753377914429,0.897109568119049,-0.0314775295555592,0.440685391426086,0.889543175697327,0.0157441273331642,0.456579685211182,0.0236037615686655,0.0314716808497906,-0.999225914478302,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.983003377914429,0.133688449859619,-0.125824421644211,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.983003377914429,0.133688449859619,-0.125824421644211,0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.983003377914429,0.133688449859619,-0.125824421644211,0.0078735277056694,-0.0078735277056694,-0.999938011169434,0.00787157658487558,-0.0236147306859493,-0.999690234661102,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.0706801414489746,-0.0157066993415356,0.99737536907196,-0.0550073832273483,0.0314327888190746,0.99799108505249,-0.0706801414489746,-0.0157066993415356,0.99737536907196,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.937909722328186,-0.346790164709091,0.00788159482181072,
- -0.991757094860077,0.125937417149544,0.0236132647842169,-0.935038864612579,-0.345728695392609,-0.0785746946930885,-0.937909722328186,-0.346790164709091,0.00788159482181072,-0.937909722328186,-0.346790164709091,0.00788159482181072,-0.0706344172358513,-0.0392413474619389,0.996730208396912,-0.0706801414489746,-0.0157066993415356,0.99737536907196,-0.693407952785492,-0.717046856880188,-0.0709167197346687,-0.935038864612579,-0.345728695392609,-0.0785746946930885,0.00787157658487558,-0.0236147306859493,-0.999690234661102,-0.693407952785492,-0.717046856880188,-0.0709167197346687,-0.937909722328186,-0.346790164709091,0.00788159482181072,-0.935038864612579,-0.345728695392609,-0.0785746946930885,0.0790273174643517,-0.995744228363037,-0.0474163927137852,0.00787157658487558,-0.0236147306859493,-0.999690234661102,0.0862804874777794,-0.0156873594969511,-0.996147394180298,0.00787157658487558,-0.0236147306859493,-0.999690234661102,0.0790273174643517,-0.995744228363037,-0.0474163927137852,-0.693407952785492,-0.717046856880188,-0.0709167197346687,-0.937909722328186,-0.346790164709091,0.00788159482181072,-0.693407952785492,-0.717046856880188,-0.0709167197346687,-0.695136547088623,-0.718834340572357,0.00789927877485752,0.0790273174643517,-0.995744228363037,-0.0474163927137852,-0.695136547088623,-0.718834340572357,0.00789927877485752,-0.693407952785492,-0.717046856880188,-0.0709167197346687,-0.0706344172358513,-0.0392413474619389,0.996730208396912,-0.937909722328186,-0.346790164709091,0.00788159482181072,-0.695136547088623,-0.718834340572357,0.00789927877485752,-0.695136547088623,-0.718834340572357,0.00789927877485752,0.0790273174643517,-0.995744228363037,-0.0474163927137852,0.0868730992078781,-0.995091795921326,0.047385323792696,0.0868730992078781,-0.995091795921326,0.047385323792696,-0.0706344172358513,-0.0392413474619389,0.996730208396912,-0.695136547088623,-0.718834340572357,0.00789927877485752,-0.0706344172358513,-0.0392413474619389,0.996730208396912,0.0868730992078781,-0.995091795921326,0.047385323792696,0.00787157658487558,-0.0236147306859493,0.999690234661102,
- -0.0947824716567993,-0.0236956179141998,0.995215952396393,-0.0706692412495613,0.0235564168542624,0.99722158908844,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.0947824716567993,-0.0236956179141998,0.995215952396393,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.936079740524292,-0.346113532781601,-0.0629297345876694,-0.0947351977229118,-0.0394730009138584,0.994719624519348,-0.0947824716567993,-0.0236956179141998,0.995215952396393,-0.936079740524292,-0.346113532781601,-0.0629297345876694,-0.979327261447906,0.126364797353745,-0.157956004142761,-0.936079740524292,-0.346113532781601,-0.0629297345876694,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.936079740524292,-0.346113532781601,-0.0629297345876694,-0.710491955280304,-0.702597558498383,-0.0394717715680599,-0.0947351977229118,-0.0394730009138584,0.994719624519348,0.0551317930221558,-0.992372214794159,0.110263586044312,-0.0947351977229118,-0.0394730009138584,0.994719624519348,-0.710491955280304,-0.702597558498383,-0.0394717715680599,0.110428102314472,-0.00788772199302912,-0.993852913379669,-0.979327261447906,0.126364797353745,-0.157956004142761,0.133605852723122,0.0392958410084248,-0.990255177021027,-0.702138245105743,-0.702138245105743,-0.118337914347649,0.0551317930221558,-0.992372214794159,0.110263586044312,-0.710491955280304,-0.702597558498383,-0.0394717715680599,-0.936079740524292,-0.346113532781601,-0.0629297345876694,-0.702138245105743,-0.702138245105743,-0.118337914347649,-0.710491955280304,-0.702597558498383,-0.0394717715680599,0.0551317930221558,-0.992372214794159,0.110263586044312,-0.702138245105743,-0.702138245105743,-0.118337914347649,0.117934897542,-0.974928438663483,-0.188695833086967,0.118179865181446,-0.0236359722912312,-0.992710888385773,0.117934897542,-0.974928438663483,-0.188695833086967,-0.702138245105743,-0.702138245105743,-0.118337914347649,-0.936079740524292,-0.346113532781601,-0.0629297345876694,-0.979327261447906,0.126364797353745,-0.157956004142761,-0.927553713321686,-0.345867514610291,-0.141491234302521,
- -0.702138245105743,-0.702138245105743,-0.118337914347649,-0.936079740524292,-0.346113532781601,-0.0629297345876694,-0.927553713321686,-0.345867514610291,-0.141491234302521,-0.979327261447906,0.126364797353745,-0.157956004142761,0.110428102314472,-0.00788772199302912,-0.993852913379669,-0.927553713321686,-0.345867514610291,-0.141491234302521,-0.927553713321686,-0.345867514610291,-0.141491234302521,0.118179865181446,-0.0236359722912312,-0.992710888385773,-0.702138245105743,-0.702138245105743,-0.118337914347649,0.118179865181446,-0.0236359722912312,-0.992710888385773,-0.927553713321686,-0.345867514610291,-0.141491234302521,0.110428102314472,-0.00788772199302912,-0.993852913379669,0.999597251415253,0.0157416891306639,0.0236125327646732,0.275761544704437,-0.1733358502388,-0.945468246936798,0.188346847891808,0.0470867119729519,-0.980973124504089,0.275761544704437,-0.1733358502388,-0.945468246936798,0.999597251415253,0.0157416891306639,0.0236125327646732,0.998206853866577,-0.0235796887427568,0.055019274353981,0.0629765093326569,-0.535300314426422,0.842310845851898,0.275761544704437,-0.1733358502388,-0.945468246936798,0.998206853866577,-0.0235796887427568,0.055019274353981,0.984740495681763,0.0157558489590883,0.173314332962036,0.998206853866577,-0.0235796887427568,0.055019274353981,0.999597251415253,0.0157416891306639,0.0236125327646732,0.998206853866577,-0.0235796887427568,0.055019274353981,0.987163484096527,-0.0236919224262238,0.157946154475212,0.0629765093326569,-0.535300314426422,0.842310845851898,0.998206853866577,-0.0235796887427568,0.055019274353981,0.984740495681763,0.0157558489590883,0.173314332962036,0.987163484096527,-0.0236919224262238,0.157946154475212,-0.0157416891306639,0.0236125327646732,0.999597251415253,0.0629765093326569,-0.535300314426422,0.842310845851898,0.987163484096527,-0.0236919224262238,0.157946154475212,0.987163484096527,-0.0236919224262238,0.157946154475212,0.984740495681763,0.0157558489590883,0.173314332962036,-0.0157416891306639,0.0236125327646732,0.999597251415253,0.259544998407364,-0.621334969997406,-0.739309966564178,
- -0.267616987228394,-0.566718339920044,-0.779237747192383,0.0943595692515373,-0.589747309684753,-0.802056312561035,0.0943595692515373,-0.589747309684753,-0.802056312561035,0.322096616029739,-0.620625197887421,-0.714897394180298,0.259544998407364,-0.621334969997406,-0.739309966564178,0.324763298034668,-0.562394976615906,-0.760421395301819,0.322096616029739,-0.620625197887421,-0.714897394180298,0.0943595692515373,-0.589747309684753,-0.802056312561035,0.35419899225235,-0.75562447309494,-0.550976157188416,0.259544998407364,-0.621334969997406,-0.739309966564178,0.322096616029739,-0.620625197887421,-0.714897394180298,-0.00787157658487558,-0.0236147306859493,0.999690234661102,0.983003377914429,0.133688449859619,0.125824421644211,-0.0236088763922453,0.0236088763922453,0.999442458152771,0.983003377914429,0.133688449859619,0.125824421644211,-0.00787157658487558,-0.0236147306859493,0.999690234661102,0.935587763786316,-0.345931649208069,0.0707587376236916,0.935587763786316,-0.345931649208069,0.0707587376236916,0.991757094860077,0.125937417149544,-0.0236132647842169,0.983003377914429,0.133688449859619,0.125824421644211,-0.00786767713725567,-0.0393383838236332,0.999194979667664,0.935587763786316,-0.345931649208069,0.0707587376236916,-0.00787157658487558,-0.0236147306859493,0.999690234661102,0.991757094860077,0.125937417149544,-0.0236132647842169,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.054992102086544,0.0392800718545914,-0.99771386384964,-0.047178328037262,-0.998607933521271,0.023589164018631,-0.00786767713725567,-0.0393383838236332,0.999194979667664,-0.0869273319840431,-0.0316099375486374,0.99571305513382,0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.991757094860077,0.125937417149544,-0.0236132647842169,0.937909722328186,-0.346790164709091,-0.00788159482181072,0.991757094860077,0.125937417149544,-0.0236132647842169,0.935587763786316,-0.345931649208069,0.0707587376236916,0.937909722328186,-0.346790164709091,-0.00788159482181072,0.937909722328186,-0.346790164709091,-0.00788159482181072,0.0706692412495613,-0.0235564168542624,-0.99722158908844,
- 0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.935587763786316,-0.345931649208069,0.0707587376236916,-0.00786767713725567,-0.0393383838236332,0.999194979667664,0.694097816944122,-0.717760264873505,0.0552123263478279,0.694097816944122,-0.717760264873505,0.0552123263478279,0.937909722328186,-0.346790164709091,-0.00788159482181072,0.935587763786316,-0.345931649208069,0.0707587376236916,-0.00786767713725567,-0.0393383838236332,0.999194979667664,-0.047178328037262,-0.998607933521271,0.023589164018631,0.694097816944122,-0.717760264873505,0.0552123263478279,0.0706692412495613,-0.0235564168542624,-0.99722158908844,0.937909722328186,-0.346790164709091,-0.00788159482181072,0.699120581150055,-0.714831173419952,-0.015710573643446,0.937909722328186,-0.346790164709091,-0.00788159482181072,0.694097816944122,-0.717760264873505,0.0552123263478279,0.699120581150055,-0.714831173419952,-0.015710573643446,0.694097816944122,-0.717760264873505,0.0552123263478279,-0.047178328037262,-0.998607933521271,0.023589164018631,0.699120581150055,-0.714831173419952,-0.015710573643446,0.699120581150055,-0.714831173419952,-0.015710573643446,-0.078684076666832,-0.975682556629181,-0.204578593373299,0.0706692412495613,-0.0235564168542624,-0.99722158908844,-0.047178328037262,-0.998607933521271,0.023589164018631,-0.078684076666832,-0.975682556629181,-0.204578593373299,0.699120581150055,-0.714831173419952,-0.015710573643446,-0.998361051082611,0.0157222207635641,0.0550277717411518,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.0862672179937363,0.0235274210572243,0.995994210243225,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.998361051082611,0.0157222207635641,0.0550277717411518,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.047178328037262,-0.998607933521271,0.023589164018631,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.998361051082611,0.0157222207635641,0.0550277717411518,
- -0.994595766067505,0.0157872345298529,-0.102617025375366,-0.995930731296539,-0.0237126369029284,-0.0869463384151459,-0.047178328037262,-0.998607933521271,0.023589164018631,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.999597251415253,-0.0236125327646732,0.0157416891306639,-0.994595766067505,0.0157872345298529,-0.102617025375366,-0.995930731296539,-0.0237126369029284,-0.0869463384151459,-0.047178328037262,-0.998607933521271,0.023589164018631,-0.995930731296539,-0.0237126369029284,-0.0869463384151459,-0.102537177503109,-0.181411936879158,-0.978046953678131,-0.995930731296539,-0.0237126369029284,-0.0869463384151459,-0.994595766067505,0.0157872345298529,-0.102617025375366,-0.102537177503109,-0.181411936879158,-0.978046953678131,-0.00786499958485365,0.047189999371767,-0.998854994773865,-0.102537177503109,-0.181411936879158,-0.978046953678131,-0.994595766067505,0.0157872345298529,-0.102617025375366,0.0784875229001045,-0.0156975034624338,0.996791481971741,0.991910755634308,0.125956922769547,-0.0157446153461933,0.0628364831209183,0.0314182415604591,0.997529208660126,0.991910755634308,0.125956922769547,-0.0157446153461933,0.0784875229001045,-0.0156975034624338,0.996791481971741,0.936891674995422,-0.346413761377335,-0.0472382381558418,0.936891674995422,-0.346413761377335,-0.0472382381558418,0.980822145938873,0.125545233488083,-0.149084970355034,0.991910755634308,0.125956922769547,-0.0157446153461933,0.0784585326910019,-0.0313834138214588,0.996423363685608,0.936891674995422,-0.346413761377335,-0.0472382381558418,0.0784875229001045,-0.0156975034624338,0.996791481971741,0.980822145938873,0.125545233488083,-0.149084970355034,-0.102626599371433,-0.00789435394108295,-0.994688630104065,-0.118154212832451,0.0315077900886536,-0.992495357990265,-0.102626599371433,-0.00789435394108295,-0.994688630104065,0.980822145938873,0.125545233488083,-0.149084970355034,0.929508626461029,-0.346596449613571,-0.126035064458847,0.980822145938873,0.125545233488083,-0.149084970355034,0.936891674995422,-0.346413761377335,-0.0472382381558418,
- 0.929508626461029,-0.346596449613571,-0.126035064458847,0.929508626461029,-0.346596449613571,-0.126035064458847,-0.102578662335873,-0.0315626673400402,-0.994224011898041,-0.102626599371433,-0.00789435394108295,-0.994688630104065,-0.102578662335873,-0.0315626673400402,-0.994224011898041,0.929508626461029,-0.346596449613571,-0.126035064458847,0.703365027904511,-0.703365027904511,-0.102738708257675,0.936891674995422,-0.346413761377335,-0.0472382381558418,0.703365027904511,-0.703365027904511,-0.102738708257675,0.929508626461029,-0.346596449613571,-0.126035064458847,0.703365027904511,-0.703365027904511,-0.102738708257675,-0.110332027077675,-0.977226555347443,-0.181259766221046,-0.102578662335873,-0.0315626673400402,-0.994224011898041,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.110332027077675,-0.977226555347443,-0.181259766221046,0.703365027904511,-0.703365027904511,-0.102738708257675,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.0784585326910019,-0.0313834138214588,0.996423363685608,0.00787279661744833,-0.0157455932348967,0.999845147132874,0.936891674995422,-0.346413761377335,-0.0472382381558418,0.710691213607788,-0.702794671058655,-0.0315862745046616,0.703365027904511,-0.703365027904511,-0.102738708257675,0.710691213607788,-0.702794671058655,-0.0315862745046616,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.703365027904511,-0.703365027904511,-0.102738708257675,0.936891674995422,-0.346413761377335,-0.0472382381558418,0.0784585326910019,-0.0313834138214588,0.996423363685608,0.710691213607788,-0.702794671058655,-0.0315862745046616,0.0784585326910019,-0.0313834138214588,0.996423363685608,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.710691213607788,-0.702794671058655,-0.0315862745046616,-0.983368337154388,0.0157338920980692,0.18093977868557,0.00787279661744833,-0.0157455932348967,0.999845147132874,0.00786986947059631,0.0314794778823853,0.999473392963409,0.00787279661744833,-0.0157455932348967,0.999845147132874,-0.983368337154388,0.0157338920980692,0.18093977868557,
- -0.988547086715698,-0.0235368367284536,0.149066627025604,0.00787279661744833,-0.0157455932348967,0.999845147132874,-0.988547086715698,-0.0235368367284536,0.149066627025604,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.988547086715698,-0.0235368367284536,0.149066627025604,-0.983368337154388,0.0157338920980692,0.18093977868557,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.988547086715698,-0.0235368367284536,0.149066627025604,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.988547086715698,-0.0235368367284536,0.149066627025604,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.260741293430328,-0.181728780269623,-0.948150217533112,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.999380588531494,0.0157382767647505,0.031476553529501,-0.260741293430328,-0.181728780269623,-0.948150217533112,-0.173201501369476,0.0393639765679836,-0.984099447727203,-0.260741293430328,-0.181728780269623,-0.948150217533112,-0.999380588531494,0.0157382767647505,0.031476553529501,0.632297515869141,-0.0158074386417866,0.774564504623413,0.808570861816406,0.133453443646431,-0.573064863681793,0.619593560695648,0.0313718244433403,0.784295618534088,0.808570861816406,0.133453443646431,-0.573064863681793,0.632297515869141,-0.0158074386417866,0.774564504623413,0.747660756111145,-0.346284985542297,-0.566648125648499,0.632060647010803,-0.031603030860424,0.774274230003357,0.747660756111145,-0.346284985542297,-0.566648125648499,0.632297515869141,-0.0158074386417866,0.774564504623413,0.747660756111145,-0.346284985542297,-0.566648125648499,0.725399613380432,0.118271671235561,-0.678090870380402,0.808570861816406,0.133453443646431,-0.573064863681793,0.747660756111145,-0.346284985542297,-0.566648125648499,0.632060647010803,-0.031603030860424,0.774274230003357,0.574144959449768,-0.699984967708588,-0.424709975719452,
- 0.632060647010803,-0.031603030860424,0.774274230003357,0.0549819208681583,-0.973965525627136,0.219927683472633,0.574144959449768,-0.699984967708588,-0.424709975719452,-0.0784875229001045,-0.996791481971741,0.0156975034624338,0.574144959449768,-0.699984967708588,-0.424709975719452,0.0549819208681583,-0.973965525627136,0.219927683472633,0.725399613380432,0.118271671235561,-0.678090870380402,0.747660756111145,-0.346284985542297,-0.566648125648499,0.69396835565567,-0.346984177827835,-0.630880296230316,0.747660756111145,-0.346284985542297,-0.566648125648499,0.574144959449768,-0.699984967708588,-0.424709975719452,0.527526378631592,-0.700744032859802,-0.480285257101059,0.747660756111145,-0.346284985542297,-0.566648125648499,0.527526378631592,-0.700744032859802,-0.480285257101059,0.69396835565567,-0.346984177827835,-0.630880296230316,0.574144959449768,-0.699984967708588,-0.424709975719452,-0.0784875229001045,-0.996791481971741,0.0156975034624338,0.527526378631592,-0.700744032859802,-0.480285257101059,-0.645509243011475,-0.0157441273331642,-0.763590157032013,0.725399613380432,0.118271671235561,-0.678090870380402,0.69396835565567,-0.346984177827835,-0.630880296230316,0.69396835565567,-0.346984177827835,-0.630880296230316,0.527526378631592,-0.700744032859802,-0.480285257101059,-0.645509243011475,-0.0157441273331642,-0.763590157032013,0.725399613380432,0.118271671235561,-0.678090870380402,-0.645509243011475,-0.0157441273331642,-0.763590157032013,-0.662074446678162,0.0315273553133011,-0.748774647712708,-0.653705477714539,-0.0315038822591305,-0.756093144416809,-0.645509243011475,-0.0157441273331642,-0.763590157032013,0.527526378631592,-0.700744032859802,-0.480285257101059,0.527526378631592,-0.700744032859802,-0.480285257101059,-0.0784875229001045,-0.996791481971741,0.0156975034624338,-0.653705477714539,-0.0315038822591305,-0.756093144416809,-0.653705477714539,-0.0315038822591305,-0.756093144416809,-0.0784875229001045,-0.996791481971741,0.0156975034624338,-0.703057706356049,-0.0157990492880344,-0.710957229137421,-0.541797578334808,0.0235564168542624,0.840178847312927,
- 0.667864263057709,-0.141430079936981,0.73072212934494,0.740249276161194,0.0629999414086342,0.669374346733093,0.667864263057709,-0.141430079936981,0.73072212934494,-0.541797578334808,0.0235564168542624,0.840178847312927,-0.56537139415741,-0.0235571414232254,0.824500024318695,-0.56537139415741,-0.0235571414232254,0.824500024318695,-0.762056946754456,-0.526369214057922,-0.377100348472595,0.667864263057709,-0.141430079936981,0.73072212934494,-0.56537139415741,-0.0235571414232254,0.824500024318695,-0.541797578334808,0.0235564168542624,0.840178847312927,-0.653948903083801,0.015757804736495,0.756374597549438,-0.762056946754456,-0.526369214057922,-0.377100348472595,-0.56537139415741,-0.0235571414232254,0.824500024318695,-0.645269334316254,-0.031476553529501,0.763306438922882,-0.653948903083801,0.015757804736495,0.756374597549438,-0.645269334316254,-0.031476553529501,0.763306438922882,-0.56537139415741,-0.0235571414232254,0.824500024318695,-0.645269334316254,-0.031476553529501,0.763306438922882,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.762056946754456,-0.526369214057922,-0.377100348472595,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.645269334316254,-0.031476553529501,0.763306438922882,-0.653948903083801,0.015757804736495,0.756374597549438,0.98345959186554,-0.00786767713725567,0.180956572294235,0.244306668639183,0.12609376013279,-0.961464941501617,0.979785799980164,0.0316059924662113,0.197537466883659,0.244306668639183,0.12609376013279,-0.961464941501617,0.98345959186554,-0.00786767713725567,0.180956572294235,0.197537437081337,-0.347665905952454,-0.916573703289032,0.197537437081337,-0.347665905952454,-0.916573703289032,0.110414363443851,0.126187846064568,-0.985842525959015,0.244306668639183,0.12609376013279,-0.961464941501617,0.983003377914429,-0.0314561054110527,0.180872619152069,0.197537437081337,-0.347665905952454,-0.916573703289032,0.98345959186554,-0.00786767713725567,0.180956572294235,0.110414363443851,0.126187846064568,-0.985842525959015,-0.987317442893982,-0.0157970786094666,-0.157970786094666,
- -0.989461004734039,0.0314114615321159,-0.141351565718651,0.0395013242959976,-0.995433330535889,0.086902916431427,0.983003377914429,-0.0314561054110527,0.180872619152069,0.965723752975464,-0.0157028250396252,0.259096622467041,-0.987317442893982,-0.0157970786094666,-0.157970786094666,0.110414363443851,0.126187846064568,-0.985842525959015,0.118271671235561,-0.346930235624313,-0.930403769016266,0.110414363443851,0.126187846064568,-0.985842525959015,0.197537437081337,-0.347665905952454,-0.916573703289032,0.118271671235561,-0.346930235624313,-0.930403769016266,0.118271671235561,-0.346930235624313,-0.930403769016266,-0.986671268939972,-0.0394668504595757,-0.157867401838303,-0.987317442893982,-0.0157970786094666,-0.157970786094666,0.197537437081337,-0.347665905952454,-0.916573703289032,0.983003377914429,-0.0314561054110527,0.180872619152069,0.157793685793877,-0.702181935310364,-0.69429224729538,0.157793685793877,-0.702181935310364,-0.69429224729538,0.118271671235561,-0.346930235624313,-0.930403769016266,0.197537437081337,-0.347665905952454,-0.916573703289032,0.983003377914429,-0.0314561054110527,0.180872619152069,0.0395013242959976,-0.995433330535889,0.086902916431427,0.157793685793877,-0.702181935310364,-0.69429224729538,0.118271671235561,-0.346930235624313,-0.930403769016266,0.157793685793877,-0.702181935310364,-0.69429224729538,0.086579293012619,-0.700505137443542,-0.708375990390778,0.0395013242959976,-0.995433330535889,0.086902916431427,0.086579293012619,-0.700505137443542,-0.708375990390778,0.157793685793877,-0.702181935310364,-0.69429224729538,-0.986671268939972,-0.0394668504595757,-0.157867401838303,0.118271671235561,-0.346930235624313,-0.930403769016266,0.086579293012619,-0.700505137443542,-0.708375990390778,0.086579293012619,-0.700505137443542,-0.708375990390778,0.0395013242959976,-0.995433330535889,0.086902916431427,-0.0552966743707657,-0.995340168476105,0.0789952501654625,-0.0552966743707657,-0.995340168476105,0.0789952501654625,-0.986671268939972,-0.0394668504595757,-0.157867401838303,0.086579293012619,-0.700505137443542,-0.708375990390778,
- -0.986671268939972,-0.0394668504595757,-0.157867401838303,-0.0552966743707657,-0.995340168476105,0.0789952501654625,-0.995994210243225,-0.0235274210572243,-0.0862672179937363,0.268349498510361,0.126282125711441,-0.955008566379547,-0.943595707416534,-0.0235898923128843,-0.33025848865509,-0.949202120304108,0.0235339347273111,-0.313785821199417,-0.943595707416534,-0.0235898923128843,-0.33025848865509,0.268349498510361,0.126282125711441,-0.955008566379547,0.282598584890366,-0.345398306846619,-0.894895553588867,0.282598584890366,-0.345398306846619,-0.894895553588867,-0.943129301071167,-0.0392970517277718,-0.330095231533051,-0.943595707416534,-0.0235898923128843,-0.33025848865509,0.392691671848297,0.125661343336105,-0.911044716835022,0.282598584890366,-0.345398306846619,-0.894895553588867,0.268349498510361,0.126282125711441,-0.955008566379547,-0.943129301071167,-0.0392970517277718,-0.330095231533051,-0.0549514293670654,-0.996975898742676,0.0549514293670654,-0.965574979782104,-0.0235506091266871,-0.259056687355042,0.935327649116516,-0.00785989686846733,0.35369536280632,0.392691671848297,0.125661343336105,-0.911044716835022,0.92829966545105,0.0393347330391407,0.369746506214142,-0.0549514293670654,-0.996975898742676,0.0549514293670654,-0.943129301071167,-0.0392970517277718,-0.330095231533051,0.213147565722466,-0.702597558498383,-0.678914427757263,-0.943129301071167,-0.0392970517277718,-0.330095231533051,0.282598584890366,-0.345398306846619,-0.894895553588867,0.213147565722466,-0.702597558498383,-0.678914427757263,0.392691671848297,0.125661343336105,-0.911044716835022,0.935327649116516,-0.00785989686846733,0.35369536280632,0.361946761608124,-0.346209943294525,-0.86552482843399,0.282598584890366,-0.345398306846619,-0.894895553588867,0.392691671848297,0.125661343336105,-0.911044716835022,0.361946761608124,-0.346209943294525,-0.86552482843399,0.283666878938675,-0.701287627220154,-0.654009759426117,0.361946761608124,-0.346209943294525,-0.86552482843399,0.935327649116516,-0.00785989686846733,0.35369536280632,0.283666878938675,-0.701287627220154,-0.654009759426117,
- 0.282598584890366,-0.345398306846619,-0.894895553588867,0.361946761608124,-0.346209943294525,-0.86552482843399,0.213147565722466,-0.702597558498383,-0.678914427757263,0.282598584890366,-0.345398306846619,-0.894895553588867,0.283666878938675,-0.701287627220154,-0.654009759426117,0.213147565722466,-0.702597558498383,-0.678914427757263,0.283666878938675,-0.701287627220154,-0.654009759426117,-0.0549514293670654,-0.996975898742676,0.0549514293670654,0.935327649116516,-0.00785989686846733,0.35369536280632,0.935096621513367,-0.0235738642513752,0.353607982397079,0.283666878938675,-0.701287627220154,-0.654009759426117,-0.0549514293670654,-0.996975898742676,0.0549514293670654,0.283666878938675,-0.701287627220154,-0.654009759426117,0.157251358032227,-0.974958479404449,0.157251358032227,0.157251358032227,-0.974958479404449,0.157251358032227,0.283666878938675,-0.701287627220154,-0.654009759426117,0.935096621513367,-0.0235738642513752,0.353607982397079,0.653017163276672,-0.621546506881714,0.432722240686417,0.82011890411377,-0.567774593830109,-0.0709718242287636,0.754014551639557,-0.589073896408081,0.290609776973724,0.754014551639557,-0.589073896408081,0.290609776973724,0.613413095474243,-0.621277332305908,0.487584739923477,0.653017163276672,-0.621546506881714,0.432722240686417,0.660108983516693,-0.557949244976044,0.50294017791748,0.613413095474243,-0.621277332305908,0.487584739923477,0.754014551639557,-0.589073896408081,0.290609776973724,0.613413095474243,-0.621277332305908,0.487584739923477,0.448027908802032,-0.754573345184326,0.479468494653702,0.653017163276672,-0.621546506881714,0.432722240686417,-0.204699024558067,0.873907387256622,-0.440890222787857,-0.1888827085495,0.881452679634094,-0.432856231927872,0.141491234302521,0.833226263523102,0.534522473812103,0.141491234302521,0.833226263523102,0.534522473812103,-0.1888827085495,0.881452679634094,-0.432856231927872,0.196315571665764,0.832378029823303,0.518273115158081,-0.220465630292892,0.873988747596741,-0.433057516813278,0.125797212123871,0.872718214988709,0.471739590167999,
- 0.196315571665764,0.832378029823303,0.518273115158081,0.196315571665764,0.832378029823303,0.518273115158081,0.157460793852806,0.80305004119873,0.574731886386871,0.141491234302521,0.833226263523102,0.534522473812103,0.196315571665764,0.832378029823303,0.518273115158081,0.125797212123871,0.872718214988709,0.471739590167999,0.229086235165596,0.789952516555786,0.568765819072723,0.157460793852806,0.80305004119873,0.574731886386871,0.196315571665764,0.832378029823303,0.518273115158081,0.229086235165596,0.789952516555786,0.568765819072723,0.376415610313416,-0.243101745843887,0.893987059593201,0.125797212123871,0.872718214988709,0.471739590167999,-0.868433177471161,0.0789484679698944,0.489480525255203,0.229086235165596,0.789952516555786,0.568765819072723,0.125797212123871,0.872718214988709,0.471739590167999,0.376415610313416,-0.243101745843887,0.893987059593201,0.229086235165596,0.789952516555786,0.568765819072723,0.243476361036301,-0.353433430194855,0.903218746185303,0.157460793852806,0.80305004119873,0.574731886386871,0.243476361036301,-0.353433430194855,0.903218746185303,0.229086235165596,0.789952516555786,0.568765819072723,0.376415610313416,-0.243101745843887,0.893987059593201,0.157460793852806,0.80305004119873,0.574731886386871,0.133453443646431,0.839971721172333,0.525963604450226,0.141491234302521,0.833226263523102,0.534522473812103,0.133453443646431,0.839971721172333,0.525963604450226,-0.0942431092262268,0.863895177841187,-0.494776338338852,0.141491234302521,0.833226263523102,0.534522473812103,-0.0236594825983047,0.867514371871948,-0.496849119663239,-0.0942431092262268,0.863895177841187,-0.494776338338852,0.133453443646431,0.839971721172333,0.525963604450226,0.133453443646431,0.839971721172333,0.525963604450226,-0.00788919348269701,0.828365325927734,-0.560132682323456,-0.0787084400653839,0.873663723468781,-0.480121523141861,-0.00788919348269701,0.828365325927734,-0.560132682323456,0.133453443646431,0.839971721172333,0.525963604450226,0.150161266326904,0.829838633537292,0.537419259548187,0.141403898596764,0.801288723945618,0.581327199935913,
- 0.133453443646431,0.839971721172333,0.525963604450226,0.157460793852806,0.80305004119873,0.574731886386871,0.133453443646431,0.839971721172333,0.525963604450226,0.141403898596764,0.801288723945618,0.581327199935913,0.150161266326904,0.829838633537292,0.537419259548187,0.141403898596764,0.801288723945618,0.581327199935913,0.157460793852806,0.80305004119873,0.574731886386871,0.196255072951317,-0.478862375020981,0.855672121047974,0.157460793852806,0.80305004119873,0.574731886386871,0.243476361036301,-0.353433430194855,0.903218746185303,0.196255072951317,-0.478862375020981,0.855672121047974,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.150161266326904,0.829838633537292,0.537419259548187,0.141403898596764,0.801288723945618,0.581327199935913,0.141403898596764,0.801288723945618,0.581327199935913,0.196255072951317,-0.478862375020981,0.855672121047974,0.996975898742676,0.0549514293670654,-0.0549514293670654,-0.00788919348269701,0.828365325927734,-0.560132682323456,0.150161266326904,0.829838633537292,0.537419259548187,0.991757214069366,0.0865819826722145,-0.0944530740380287,0.150161266326904,0.829838633537292,0.537419259548187,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.991757214069366,0.0865819826722145,-0.0944530740380287,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.99571305513382,-0.0316099375486374,-0.0869273319840431,0.991757214069366,0.0865819826722145,-0.0944530740380287,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.991020619869232,-0.062921941280365,-0.117978647351265,0.99571305513382,-0.0316099375486374,-0.0869273319840431,0.991020619869232,-0.062921941280365,-0.117978647351265,0.996975898742676,0.0549514293670654,-0.0549514293670654,0.997898638248444,0.0157149396836758,-0.0628597587347031,0.243476361036301,-0.353433430194855,0.903218746185303,0.181615442037582,-0.552742600440979,0.813321232795715,0.196255072951317,-0.478862375020981,0.855672121047974,0.376415610313416,-0.243101745843887,0.893987059593201,0.181615442037582,-0.552742600440979,0.813321232795715,0.243476361036301,-0.353433430194855,0.903218746185303,
- 0.330954998731613,-0.622510612010956,0.709189295768738,0.196255072951317,-0.478862375020981,0.855672121047974,0.181615442037582,-0.552742600440979,0.813321232795715,0.181615442037582,-0.552742600440979,0.813321232795715,0.376415610313416,-0.243101745843887,0.893987059593201,0.361611098051071,-0.558138847351074,0.746805489063263,0.361611098051071,-0.558138847351074,0.746805489063263,0.376415610313416,-0.243101745843887,0.893987059593201,0.0864188298583031,-0.659925580024719,0.746344447135925,0.181615442037582,-0.552742600440979,0.813321232795715,-0.0394976250827312,-0.821550607681274,-0.568765819072723,0.330954998731613,-0.622510612010956,0.709189295768738,0.99571305513382,-0.0316099375486374,-0.0869273319840431,0.330954998731613,-0.622510612010956,0.709189295768738,0.0549734458327293,-0.99737536907196,0.0471200942993164,0.0549734458327293,-0.99737536907196,0.0471200942993164,0.330954998731613,-0.622510612010956,0.709189295768738,-0.0394976250827312,-0.821550607681274,-0.568765819072723,-0.0394976250827312,-0.821550607681274,-0.568765819072723,-0.150156587362289,-0.766588866710663,-0.624335289001465,0.0549734458327293,-0.99737536907196,0.0471200942993164,-0.0394976250827312,-0.821550607681274,-0.568765819072723,0.181615442037582,-0.552742600440979,0.813321232795715,-0.150156587362289,-0.766588866710663,-0.624335289001465,0.0549734458327293,-0.99737536907196,0.0471200942993164,-0.150156587362289,-0.766588866710663,-0.624335289001465,-0.0235796887427568,-0.998206853866577,0.055019274353981,-0.150156587362289,-0.766588866710663,-0.624335289001465,0.023589164018631,-0.998607933521271,0.047178328037262,-0.0235796887427568,-0.998206853866577,0.055019274353981,0.361611098051071,-0.558138847351074,0.746805489063263,-0.196315571665764,-0.832378029823303,-0.518273115158081,0.181615442037582,-0.552742600440979,0.813321232795715,-0.150156587362289,-0.766588866710663,-0.624335289001465,0.181615442037582,-0.552742600440979,0.813321232795715,-0.196315571665764,-0.832378029823303,-0.518273115158081,0.023589164018631,-0.998607933521271,0.047178328037262,
- -0.150156587362289,-0.766588866710663,-0.624335289001465,-0.196315571665764,-0.832378029823303,-0.518273115158081,0.0864188298583031,-0.659925580024719,0.746344447135925,-0.196315571665764,-0.832378029823303,-0.518273115158081,0.361611098051071,-0.558138847351074,0.746805489063263,0.023589164018631,-0.998607933521271,0.047178328037262,-0.196315571665764,-0.832378029823303,-0.518273115158081,0.039320133626461,-0.998731434345245,0.031456109136343,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.0864188298583031,-0.659925580024719,0.746344447135925,-0.870715439319611,-0.0316623784601688,0.490766882896423,0.039320133626461,-0.998731434345245,0.031456109136343,-0.196315571665764,-0.832378029823303,-0.518273115158081,-0.213233962655067,-0.805550515651703,-0.552828788757324,-0.213233962655067,-0.805550515651703,-0.552828788757324,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.039320133626461,-0.998731434345245,0.031456109136343,-0.196315571665764,-0.832378029823303,-0.518273115158081,0.0864188298583031,-0.659925580024719,0.746344447135925,-0.236066848039627,-0.826233983039856,-0.511478126049042,-0.236066848039627,-0.826233983039856,-0.511478126049042,-0.213233962655067,-0.805550515651703,-0.552828788757324,-0.196315571665764,-0.832378029823303,-0.518273115158081,0.0864188298583031,-0.659925580024719,0.746344447135925,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.236066848039627,-0.826233983039856,-0.511478126049042,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.213233962655067,-0.805550515651703,-0.552828788757324,-0.236066848039627,-0.826233983039856,-0.511478126049042,0.1340162307024,0.875047147274017,-0.465115159749985,0.142262488603592,0.877285361289978,-0.45840135216713,-0.165164992213249,0.833689987659454,0.52695494890213,-0.110263586044312,0.826976895332336,0.551317870616913,-0.165164992213249,0.833689987659454,0.52695494890213,0.142262488603592,0.877285361289978,-0.45840135216713,0.0473189651966095,0.875400841236115,-0.481076151132584,-0.00786986947059631,0.818466424942017,-0.574500501155853,
- -0.110263586044312,0.826976895332336,0.551317870616913,-0.235115215182304,0.822903215885162,0.517253458499908,-0.110263586044312,0.826976895332336,0.551317870616913,-0.00786986947059631,0.818466424942017,-0.574500501155853,-0.197328105568886,0.781419336795807,0.591984331607819,-0.110263586044312,0.826976895332336,0.551317870616913,-0.235115215182304,0.822903215885162,0.517253458499908,-0.110263586044312,0.826976895332336,0.551317870616913,-0.157734796404839,0.796560645103455,0.583618760108948,-0.165164992213249,0.833689987659454,0.52695494890213,-0.110263586044312,0.826976895332336,0.551317870616913,-0.197328105568886,0.781419336795807,0.591984331607819,-0.157734796404839,0.796560645103455,0.583618760108948,-0.157734796404839,0.796560645103455,0.583618760108948,-0.18902325630188,0.842728734016418,0.504061996936798,-0.165164992213249,0.833689987659454,0.52695494890213,-0.165164992213249,0.833689987659454,0.52695494890213,-0.18902325630188,0.842728734016418,0.504061996936798,0.18949992954731,0.868541359901428,-0.457958161830902,0.236838012933731,0.8841952085495,-0.402624607086182,0.18949992954731,0.868541359901428,-0.457958161830902,-0.18902325630188,0.842728734016418,0.504061996936798,-0.157734796404839,0.796560645103455,0.583618760108948,-0.189111292362213,0.795843303203583,0.575213491916656,-0.18902325630188,0.842728734016418,0.504061996936798,-0.197328105568886,0.781419336795807,0.591984331607819,-0.203766539692879,-0.32132413983345,0.924786567687988,-0.157734796404839,0.796560645103455,0.583618760108948,-0.189111292362213,0.795843303203583,0.575213491916656,-0.157734796404839,0.796560645103455,0.583618760108948,-0.203766539692879,-0.32132413983345,0.924786567687988,-0.203766539692879,-0.32132413983345,0.924786567687988,-0.197328105568886,0.781419336795807,0.591984331607819,-0.134187296032906,-0.315734833478928,0.9393110871315,-0.134187296032906,-0.315734833478928,0.9393110871315,-0.197328105568886,0.781419336795807,0.591984331607819,-0.220117896795273,-0.636769592761993,0.73896723985672,-0.220117896795273,-0.636769592761993,0.73896723985672,
- -0.203766539692879,-0.32132413983345,0.924786567687988,-0.134187296032906,-0.315734833478928,0.9393110871315,-0.18902325630188,0.842728734016418,0.504061996936798,-0.189111292362213,0.795843303203583,0.575213491916656,-0.173206880688667,0.826669156551361,0.535366654396057,-0.173206880688667,0.826669156551361,0.535366654396057,0.204679995775223,0.881698429584503,-0.42510461807251,-0.18902325630188,0.842728734016418,0.504061996936798,0.204679995775223,0.881698429584503,-0.42510461807251,-0.173206880688667,0.826669156551361,0.535366654396057,0.331645578145981,0.829114019870758,-0.450090438127518,0.331645578145981,0.829114019870758,-0.450090438127518,-0.173206880688667,0.826669156551361,0.535366654396057,0.867865383625031,0.0867865383625031,0.489160507917404,-0.173206880688667,0.826669156551361,0.535366654396057,0.848475754261017,0.0549938008189201,0.526369214057922,0.867865383625031,0.0867865383625031,0.489160507917404,0.848475754261017,0.0549938008189201,0.526369214057922,-0.173206880688667,0.826669156551361,0.535366654396057,-0.189111292362213,0.795843303203583,0.575213491916656,0.848475754261017,0.0549938008189201,0.526369214057922,0.867325603961945,-0.031539112329483,0.496740996837616,0.867865383625031,0.0867865383625031,0.489160507917404,0.848475754261017,0.0549938008189201,0.526369214057922,0.879737913608551,-0.0628384202718735,0.471288174390793,0.867325603961945,-0.031539112329483,0.496740996837616,0.879737913608551,-0.0628384202718735,0.471288174390793,0.848475754261017,0.0549938008189201,0.526369214057922,0.855303227901459,0.015693636611104,0.51789003610611,-0.189111292362213,0.795843303203583,0.575213491916656,-0.353706270456314,-0.440167784690857,0.825314581394196,0.848475754261017,0.0549938008189201,0.526369214057922,-0.189111292362213,0.795843303203583,0.575213491916656,-0.203766539692879,-0.32132413983345,0.924786567687988,-0.353706270456314,-0.440167784690857,0.825314581394196,-0.353706270456314,-0.440167784690857,0.825314581394196,-0.203766539692879,-0.32132413983345,0.924786567687988,-0.323316127061844,-0.567774653434753,0.757032930850983,
- -0.181012615561485,-0.629609107971191,0.755530953407288,-0.353706270456314,-0.440167784690857,0.825314581394196,-0.323316127061844,-0.567774653434753,0.757032930850983,-0.203766539692879,-0.32132413983345,0.924786567687988,-0.189612299203873,-0.560936331748962,0.805852234363556,-0.323316127061844,-0.567774653434753,0.757032930850983,-0.203766539692879,-0.32132413983345,0.924786567687988,-0.220117896795273,-0.636769592761993,0.73896723985672,-0.189612299203873,-0.560936331748962,0.805852234363556,-0.181012615561485,-0.629609107971191,0.755530953407288,-0.323316127061844,-0.567774653434753,0.757032930850983,0.197021484375,-0.7880859375,-0.583183586597443,-0.189612299203873,-0.560936331748962,0.805852234363556,0.197021484375,-0.7880859375,-0.583183586597443,-0.323316127061844,-0.567774653434753,0.757032930850983,0.197021484375,-0.7880859375,-0.583183586597443,0.299444794654846,-0.819533109664917,-0.48856782913208,-0.181012615561485,-0.629609107971191,0.755530953407288,0.299444794654846,-0.819533109664917,-0.48856782913208,0.867325603961945,-0.031539112329483,0.496740996837616,-0.181012615561485,-0.629609107971191,0.755530953407288,0.867325603961945,-0.031539112329483,0.496740996837616,0.299444794654846,-0.819533109664917,-0.48856782913208,0.0235564168542624,-0.99722158908844,0.0706692412495613,0.299444794654846,-0.819533109664917,-0.48856782913208,0.197021484375,-0.7880859375,-0.583183586597443,0.0235564168542624,-0.99722158908844,0.0706692412495613,0.0235564168542624,-0.99722158908844,0.0706692412495613,0.197021484375,-0.7880859375,-0.583183586597443,-0.0471550077199936,-0.998114347457886,0.0392958410084248,0.197021484375,-0.7880859375,-0.583183586597443,-0.0314454175531864,-0.99839198589325,0.0471681281924248,-0.0471550077199936,-0.998114347457886,0.0392958410084248,0.197021484375,-0.7880859375,-0.583183586597443,-0.189612299203873,-0.560936331748962,0.805852234363556,0.0942518189549446,-0.824703454971313,-0.557656586170197,0.0942518189549446,-0.824703454971313,-0.557656586170197,-0.0314454175531864,-0.99839198589325,0.0471681281924248,
- 0.197021484375,-0.7880859375,-0.583183586597443,-0.220117896795273,-0.636769592761993,0.73896723985672,0.0942518189549446,-0.824703454971313,-0.557656586170197,-0.189612299203873,-0.560936331748962,0.805852234363556,-0.0314454175531864,-0.99839198589325,0.0471681281924248,0.0942518189549446,-0.824703454971313,-0.557656586170197,-0.0235971882939339,-0.99894767999649,0.0393286496400833,0.00786183960735798,-0.998453617095947,0.0550328753888607,-0.220117896795273,-0.636769592761993,0.73896723985672,-0.994998693466187,-0.0315872617065907,-0.0947617813944817,-0.0235971882939339,-0.99894767999649,0.0393286496400833,0.0942518189549446,-0.824703454971313,-0.557656586170197,0.165124133229256,-0.802031517028809,-0.574002981185913,0.165124133229256,-0.802031517028809,-0.574002981185913,0.00786183960735798,-0.998453617095947,0.0550328753888607,-0.0235971882939339,-0.99894767999649,0.0393286496400833,0.0942518189549446,-0.824703454971313,-0.557656586170197,-0.220117896795273,-0.636769592761993,0.73896723985672,0.110263586044312,-0.826976895332336,-0.551317870616913,0.110263586044312,-0.826976895332336,-0.551317870616913,0.165124133229256,-0.802031517028809,-0.574002981185913,0.0942518189549446,-0.824703454971313,-0.557656586170197,-0.220117896795273,-0.636769592761993,0.73896723985672,0.00786183960735798,-0.998453617095947,0.0550328753888607,0.110263586044312,-0.826976895332336,-0.551317870616913,0.00786183960735798,-0.998453617095947,0.0550328753888607,0.165124133229256,-0.802031517028809,-0.574002981185913,0.110263586044312,-0.826976895332336,-0.551317870616913,0.0314687602221966,0.90472686290741,0.424828261137009,0.0157970786094666,0.884636402130127,-0.466013818979263,-0.0552243553102016,0.891478836536407,0.449684023857117,-0.0552949495613575,0.861021339893341,0.505553841590881,0.0314687602221966,0.90472686290741,0.424828261137009,-0.0552243553102016,0.891478836536407,0.449684023857117,0.0314687602221966,0.90472686290741,0.424828261137009,0.982396006584167,0.0707325115799904,0.172901704907417,0.993204295635223,0.0551780164241791,0.102473460137844,
- -0.0552949495613575,0.861021339893341,0.505553841590881,0,0.862340688705444,0.506328463554382,0.0314687602221966,0.90472686290741,0.424828261137009,0,0.862340688705444,0.506328463554382,0.982396006584167,0.0707325115799904,0.172901704907417,0.0314687602221966,0.90472686290741,0.424828261137009,0,0.862340688705444,0.506328463554382,-0.0552949495613575,0.861021339893341,0.505553841590881,-0.070883721113205,-0.362294584512711,0.929364383220673,-0.070883721113205,-0.362294584512711,0.929364383220673,-0.0552949495613575,0.861021339893341,0.505553841590881,-0.182092919945717,-0.633366644382477,0.75212287902832,0,0.862340688705444,0.506328463554382,-0.070883721113205,-0.362294584512711,0.929364383220673,-0.0235433597117662,-0.37669375538826,0.92603874206543,0.982396006584167,0.0707325115799904,0.172901704907417,0,0.862340688705444,0.506328463554382,-0.0235433597117662,-0.37669375538826,0.92603874206543,-0.0235433597117662,-0.37669375538826,0.92603874206543,-0.070883721113205,-0.362294584512711,0.929364383220673,-0.182092919945717,-0.633366644382477,0.75212287902832,-0.0157382767647505,-0.574447154998779,0.818390369415283,0.982396006584167,0.0707325115799904,0.172901704907417,-0.0235433597117662,-0.37669375538826,0.92603874206543,-0.0235433597117662,-0.37669375538826,0.92603874206543,-0.182092919945717,-0.633366644382477,0.75212287902832,-0.0157382767647505,-0.574447154998779,0.818390369415283,0.102178663015366,-0.888168394565582,-0.448014140129089,0.982396006584167,0.0707325115799904,0.172901704907417,-0.0157382767647505,-0.574447154998779,0.818390369415283,-0.182092919945717,-0.633366644382477,0.75212287902832,0.102178663015366,-0.888168394565582,-0.448014140129089,-0.0157382767647505,-0.574447154998779,0.818390369415283,-0.054992102086544,-0.99771386384964,0.0392800718545914,-0.182092919945717,-0.633366644382477,0.75212287902832,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.182092919945717,-0.633366644382477,0.75212287902832,-0.054992102086544,-0.99771386384964,0.0392800718545914,-0.0157387647777796,-0.881370782852173,-0.472162932157516,
- 0.102178663015366,-0.888168394565582,-0.448014140129089,-0.182092919945717,-0.633366644382477,0.75212287902832,-0.0157387647777796,-0.881370782852173,-0.472162932157516,0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.0157387647777796,-0.881370782852173,-0.472162932157516,-0.054992102086544,-0.99771386384964,0.0392800718545914,-0.0157387647777796,-0.881370782852173,-0.472162932157516,0.0157285407185555,-0.998762309551239,0.0471856184303761,0.102178663015366,-0.888168394565582,-0.448014140129089,0.99138867855072,-0.0708134695887566,0.110154293477535,0.102178663015366,-0.888168394565582,-0.448014140129089,0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.0393091961741447,0.998453617095947,-0.0393091961741447,0.474564164876938,0.0632752180099487,-0.877943694591522,0.424198627471924,0.0628442391753197,-0.903385937213898,0.474564164876938,0.0632752180099487,-0.877943694591522,-0.0393091961741447,0.998453617095947,-0.0393091961741447,0.102626599371433,0.994688630104065,0.00789435394108295,-0.0393091961741447,0.998453617095947,-0.0393091961741447,0.0394422858953476,0.993945598602295,0.102549932897091,0.102626599371433,0.994688630104065,0.00789435394108295,0.0394422858953476,0.993945598602295,0.102549932897091,-0.0393091961741447,0.998453617095947,-0.0393091961741447,-0.0392619036138058,0.997252345085144,0.0628190487623215,-0.0392619036138058,0.997252345085144,0.0628190487623215,-0.306763470172882,0.00786573067307472,0.951753377914429,0.0394422858953476,0.993945598602295,0.102549932897091,-0.0392619036138058,0.997252345085144,0.0628190487623215,-0.0393091961741447,0.998453617095947,-0.0393091961741447,-0.836410701274872,0.276173323392868,0.473440021276474,-0.306763470172882,0.00786573067307472,0.951753377914429,-0.0392619036138058,0.997252345085144,0.0628190487623215,-0.836410701274872,0.276173323392868,0.473440021276474,0.393737405538559,0.826848566532135,0.401612132787704,0.43144229054451,0.792284905910492,0.43144229054451,0.773068785667419,0.118326857686043,-0.623188078403473,0.409436106681824,0.826746046543121,0.385814815759659,
- 0.43144229054451,0.792284905910492,0.43144229054451,0.393737405538559,0.826848566532135,0.401612132787704,0.43144229054451,0.792284905910492,0.43144229054451,0.409436106681824,0.826746046543121,0.385814815759659,0.487705409526825,0.794487833976746,0.361845970153809,0.487705409526825,0.794487833976746,0.361845970153809,0.409436106681824,0.826746046543121,0.385814815759659,0.473322153091431,0.828313767910004,0.299770683050156,0.457901120185852,0.836853802204132,0.300004184246063,0.487705409526825,0.794487833976746,0.361845970153809,0.473322153091431,0.828313767910004,0.299770683050156,0.645849525928497,-0.283543676137924,0.708859205245972,0.43144229054451,0.792284905910492,0.43144229054451,0.487705409526825,0.794487833976746,0.361845970153809,0.645849525928497,-0.283543676137924,0.708859205245972,0.684678673744202,-0.661069095134735,0.306924939155579,0.43144229054451,0.792284905910492,0.43144229054451,0.487705409526825,0.794487833976746,0.361845970153809,0.457901120185852,0.836853802204132,0.300004184246063,0.510231733322144,0.800671339035034,0.313988775014877,0.463005036115646,0.831839621067047,0.306054204702377,0.510231733322144,0.800671339035034,0.313988775014877,0.457901120185852,0.836853802204132,0.300004184246063,0.75778716802597,-0.370999962091446,0.536765873432159,0.645849525928497,-0.283543676137924,0.708859205245972,0.487705409526825,0.794487833976746,0.361845970153809,0.75778716802597,-0.370999962091446,0.536765873432159,0.487705409526825,0.794487833976746,0.361845970153809,0.510231733322144,0.800671339035034,0.313988775014877,0.510231733322144,0.800671339035034,0.313988775014877,0.463005036115646,0.831839621067047,0.306054204702377,-0.408437192440033,0.0549819320440292,0.911129117012024,-0.408437192440033,0.0549819320440292,0.911129117012024,0.463005036115646,0.831839621067047,0.306054204702377,-0.442649722099304,0.0790445953607559,0.893203914165497,-0.408437192440033,0.0549819320440292,0.911129117012024,-0.442649722099304,0.0790445953607559,0.893203914165497,-0.440685391426086,-0.0314775295555592,0.897109568119049,
- -0.465144068002701,-0.0630703791975975,0.882985353469849,-0.408437192440033,0.0549819320440292,0.911129117012024,-0.440685391426086,-0.0314775295555592,0.897109568119049,-0.408437192440033,0.0549819320440292,0.911129117012024,-0.465144068002701,-0.0630703791975975,0.882985353469849,-0.415459603071213,0.0235165804624558,0.909307718276978,0.510231733322144,0.800671339035034,0.313988775014877,-0.408437192440033,0.0549819320440292,0.911129117012024,0.700396716594696,-0.401350885629654,0.5902219414711,0.700396716594696,-0.401350885629654,0.5902219414711,0.75778716802597,-0.370999962091446,0.536765873432159,0.510231733322144,0.800671339035034,0.313988775014877,0.689438462257385,-0.564085960388184,0.454402565956116,0.75778716802597,-0.370999962091446,0.536765873432159,0.700396716594696,-0.401350885629654,0.5902219414711,0.689438462257385,-0.564085960388184,0.454402565956116,0.645849525928497,-0.283543676137924,0.708859205245972,0.75778716802597,-0.370999962091446,0.536765873432159,0.689438462257385,-0.564085960388184,0.454402565956116,0.700396716594696,-0.401350885629654,0.5902219414711,0.542684972286224,-0.605605006217957,0.582009971141815,0.645849525928497,-0.283543676137924,0.708859205245972,0.689438462257385,-0.564085960388184,0.454402565956116,0.590386509895325,-0.566770970821381,0.574642896652222,0.590386509895325,-0.566770970821381,0.574642896652222,0.684678673744202,-0.661069095134735,0.306924939155579,0.645849525928497,-0.283543676137924,0.708859205245972,-0.534770369529724,-0.817884087562561,-0.212335303425789,0.689438462257385,-0.564085960388184,0.454402565956116,0.542684972286224,-0.605605006217957,0.582009971141815,0,-0.994719624519348,0.102629795670509,0.542684972286224,-0.605605006217957,0.582009971141815,-0.440685391426086,-0.0314775295555592,0.897109568119049,0.542684972286224,-0.605605006217957,0.582009971141815,0,-0.994719624519348,0.102629795670509,-0.534770369529724,-0.817884087562561,-0.212335303425789,-0.543694913387299,-0.76432478427887,-0.346704035997391,-0.534770369529724,-0.817884087562561,-0.212335303425789,
- 0,-0.994719624519348,0.102629795670509,0.689438462257385,-0.564085960388184,0.454402565956116,-0.534770369529724,-0.817884087562561,-0.212335303425789,-0.543694913387299,-0.76432478427887,-0.346704035997391,0.047178328037262,-0.998607933521271,0.023589164018631,-0.543694913387299,-0.76432478427887,-0.346704035997391,0,-0.994719624519348,0.102629795670509,0.0157149396836758,-0.997898638248444,0.0628597587347031,-0.543694913387299,-0.76432478427887,-0.346704035997391,0.047178328037262,-0.998607933521271,0.023589164018631,-0.416909515857697,-0.833819031715393,-0.361845970153809,0.590386509895325,-0.566770970821381,0.574642896652222,0.689438462257385,-0.564085960388184,0.454402565956116,0.689438462257385,-0.564085960388184,0.454402565956116,-0.543694913387299,-0.76432478427887,-0.346704035997391,-0.416909515857697,-0.833819031715393,-0.361845970153809,-0.543694913387299,-0.76432478427887,-0.346704035997391,0.0157149396836758,-0.997898638248444,0.0628597587347031,-0.416909515857697,-0.833819031715393,-0.361845970153809,-0.416909515857697,-0.833819031715393,-0.361845970153809,0.684678673744202,-0.661069095134735,0.306924939155579,0.590386509895325,-0.566770970821381,0.574642896652222,-0.416909515857697,-0.833819031715393,-0.361845970153809,0.0157149396836758,-0.997898638248444,0.0628597587347031,0.0157338920980692,-0.999102234840393,0.0393347330391407,0.684678673744202,-0.661069095134735,0.306924939155579,0.0948061496019363,-0.995464503765106,-0.00790051184594631,0.763306438922882,-0.031476553529501,-0.645269334316254,-0.416909515857697,-0.833819031715393,-0.361845970153809,0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.400261700153351,-0.808371663093567,-0.431654781103134,0.0948061496019363,-0.995464503765106,-0.00790051184594631,-0.400261700153351,-0.808371663093567,-0.431654781103134,0.0157338920980692,-0.999102234840393,0.0393347330391407,0.684678673744202,-0.661069095134735,0.306924939155579,-0.416909515857697,-0.833819031715393,-0.361845970153809,-0.353706270456314,-0.825314581394196,-0.440167784690857,
- 0.0948061496019363,-0.995464503765106,-0.00790051184594631,0.684678673744202,-0.661069095134735,0.306924939155579,-0.353706270456314,-0.825314581394196,-0.440167784690857,-0.400261700153351,-0.808371663093567,-0.431654781103134,-0.353706270456314,-0.825314581394196,-0.440167784690857,-0.416909515857697,-0.833819031715393,-0.361845970153809,-0.353706270456314,-0.825314581394196,-0.440167784690857,-0.400261700153351,-0.808371663093567,-0.431654781103134,0.0948061496019363,-0.995464503765106,-0.00790051184594631,-0.561286747455597,0.822166502475739,0.0948653668165207,-0.605829894542694,0.786792039871216,0.118018813431263,-0.0236572790890932,0.110400632023811,0.993605673313141,-0.560132682323456,0.828365325927734,-0.00788919348269701,-0.605829894542694,0.786792039871216,0.118018813431263,-0.561286747455597,0.822166502475739,0.0948653668165207,-0.605829894542694,0.786792039871216,0.118018813431263,-0.560132682323456,0.828365325927734,-0.00788919348269701,-0.60620528459549,0.795152366161346,-0.0157455913722515,-0.55971485376358,0.827747464179993,-0.0394165441393852,-0.60620528459549,0.795152366161346,-0.0157455913722515,-0.560132682323456,0.828365325927734,-0.00788919348269701,-0.941386520862579,-0.337330132722855,-7.49023360497546e-017,-0.605829894542694,0.786792039871216,0.118018813431263,-0.60620528459549,0.795152366161346,-0.0157455913722515,0.550993263721466,-0.83436131477356,0.0157426651567221,-0.605829894542694,0.786792039871216,0.118018813431263,-0.941386520862579,-0.337330132722855,-7.49023360497546e-017,-0.60620528459549,0.795152366161346,-0.0157455913722515,-0.55971485376358,0.827747464179993,-0.0394165441393852,-0.576719343662262,0.805826961994171,-0.134304493665695,-0.55971485376358,0.827747464179993,-0.0394165441393852,-0.535648941993713,0.83498227596283,-0.126035049557686,-0.576719343662262,0.805826961994171,-0.134304493665695,-0.60620528459549,0.795152366161346,-0.0157455913722515,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.941386520862579,-0.337330132722855,-7.49023360497546e-017,-0.944852709770203,-0.322824656963348,-0.0551164075732231,
- -0.60620528459549,0.795152366161346,-0.0157455913722515,-0.576719343662262,0.805826961994171,-0.134304493665695,-0.941386520862579,-0.337330132722855,-7.49023360497546e-017,-0.837977409362793,-0.545475840568542,-0.0158108938485384,0.550993263721466,-0.83436131477356,0.0157426651567221,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.837977409362793,-0.545475840568542,-0.0158108938485384,-0.941386520862579,-0.337330132722855,-7.49023360497546e-017,0.550993263721466,-0.83436131477356,0.0157426651567221,0,-0.999876022338867,-0.0157460793852806,0,-0.0314804539084435,0.999504387378693,0.550993263721466,-0.83436131477356,0.0157426651567221,0.590551197528839,-0.803149580955505,-0.078740157186985,0,-0.999876022338867,-0.0157460793852806,0,-0.999876022338867,-0.0157460793852806,0.590551197528839,-0.803149580955505,-0.078740157186985,0.031476553529501,-0.999380588531494,0.0157382767647505,0.590551197528839,-0.803149580955505,-0.078740157186985,0.550993263721466,-0.83436131477356,0.0157426651567221,0.55971485376358,-0.827747464179993,0.0394165441393852,0.55971485376358,-0.827747464179993,0.0394165441393852,0.031476553529501,-0.999380588531494,0.0157382767647505,0.590551197528839,-0.803149580955505,-0.078740157186985,-0.837977409362793,-0.545475840568542,-0.0158108938485384,0.55971485376358,-0.827747464179993,0.0394165441393852,0.550993263721466,-0.83436131477356,0.0157426651567221,0.55971485376358,-0.827747464179993,0.0394165441393852,0.047178328037262,-0.998607933521271,0.023589164018631,0.031476553529501,-0.999380588531494,0.0157382767647505,0.047178328037262,-0.998607933521271,0.023589164018631,0.55971485376358,-0.827747464179993,0.0394165441393852,0.579950869083405,-0.807228863239288,0.109720431268215,-0.837977409362793,-0.545475840568542,-0.0158108938485384,0.579950869083405,-0.807228863239288,0.109720431268215,0.55971485376358,-0.827747464179993,0.0394165441393852,0.047178328037262,-0.998607933521271,0.023589164018631,0.579950869083405,-0.807228863239288,0.109720431268215,0.0471550077199936,-0.998114347457886,0.0392958410084248,
- 0.579950869083405,-0.807228863239288,0.109720431268215,0.0628190487623215,-0.997252345085144,-0.0392619036138058,0.0471550077199936,-0.998114347457886,0.0392958410084248,0.579950869083405,-0.807228863239288,0.109720431268215,-0.837977409362793,-0.545475840568542,-0.0158108938485384,-0.827130734920502,-0.559297859668732,-0.0551420450210571,-0.837977409362793,-0.545475840568542,-0.0158108938485384,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.827130734920502,-0.559297859668732,-0.0551420450210571,0.579950869083405,-0.807228863239288,0.109720431268215,0.561286747455597,-0.822166502475739,0.0948653668165207,0.0628190487623215,-0.997252345085144,-0.0392619036138058,0.579950869083405,-0.807228863239288,0.109720431268215,-0.827130734920502,-0.559297859668732,-0.0551420450210571,-0.829010546207428,-0.544778347015381,-0.126325413584709,-0.829010546207428,-0.544778347015381,-0.126325413584709,0.561286747455597,-0.822166502475739,0.0948653668165207,0.579950869083405,-0.807228863239288,0.109720431268215,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.829010546207428,-0.544778347015381,-0.126325413584709,-0.827130734920502,-0.559297859668732,-0.0551420450210571,-0.658646285533905,-0.627282202243805,-0.415574461221695,0.0628190487623215,-0.997252345085144,-0.0392619036138058,0.561286747455597,-0.822166502475739,0.0948653668165207,0.561286747455597,-0.822166502475739,0.0948653668165207,-0.829010546207428,-0.544778347015381,-0.126325413584709,-0.658646285533905,-0.627282202243805,-0.415574461221695,0.0628190487623215,-0.997252345085144,-0.0392619036138058,-0.658646285533905,-0.627282202243805,-0.415574461221695,0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.829010546207428,-0.544778347015381,-0.126325413584709,-0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.896416008472443,-0.401028215885162,-0.188719168305397,-0.829010546207428,-0.544778347015381,-0.126325413584709,-0.896416008472443,-0.401028215885162,-0.188719168305397,-0.658646285533905,-0.627282202243805,-0.415574461221695,
- -0.944852709770203,-0.322824656963348,-0.0551164075732231,-0.576719343662262,0.805826961994171,-0.134304493665695,-0.896416008472443,-0.401028215885162,-0.188719168305397,-0.658646285533905,-0.627282202243805,-0.415574461221695,-0.896416008472443,-0.401028215885162,-0.188719168305397,-0.723848700523376,-0.0865471288561821,-0.684509038925171,-0.576719343662262,0.805826961994171,-0.134304493665695,-0.723848700523376,-0.0865471288561821,-0.684509038925171,-0.896416008472443,-0.401028215885162,-0.188719168305397,-0.576719343662262,0.805826961994171,-0.134304493665695,-0.550226747989655,0.80961936712265,-0.204369932413101,-0.723848700523376,-0.0865471288561821,-0.684509038925171,-0.576719343662262,0.805826961994171,-0.134304493665695,-0.535648941993713,0.83498227596283,-0.126035049557686,-0.550226747989655,0.80961936712265,-0.204369932413101,-0.535648941993713,0.83498227596283,-0.126035049557686,-0.519991397857666,0.827259063720703,-0.212723761796951,-0.550226747989655,0.80961936712265,-0.204369932413101,-0.550226747989655,0.80961936712265,-0.204369932413101,0.229021921753883,0.0631784573197365,-0.971368849277496,-0.723848700523376,-0.0865471288561821,-0.684509038925171,-0.550226747989655,0.80961936712265,-0.204369932413101,-0.519991397857666,0.827259063720703,-0.212723761796951,0.229021921753883,0.0631784573197365,-0.971368849277496,0.267451345920563,0.0865283831954002,-0.959678411483765,0.229021921753883,0.0631784573197365,-0.971368849277496,-0.519991397857666,0.827259063720703,-0.212723761796951,0.229021921753883,0.0631784573197365,-0.971368849277496,0.267451345920563,0.0865283831954002,-0.959678411483765,0.268324434757233,-0.0315675809979439,-0.962811231613159,0.298869997262955,-0.0707849934697151,-0.951664984226227,0.229021921753883,0.0631784573197365,-0.971368849277496,0.268324434757233,-0.0315675809979439,-0.962811231613159,0.229021921753883,0.0631784573197365,-0.971368849277496,0.298869997262955,-0.0707849934697151,-0.951664984226227,0.236889690160751,0.0236889682710171,-0.971247732639313,-0.402963846921921,0.821730196475983,-0.402963846921921,
- -0.440508127212524,0.786621630191803,-0.432641893625259,-0.786256790161133,0.157251372933388,0.597555220127106,-0.306054204702377,0.831839621067047,-0.463005036115646,-0.440508127212524,0.786621630191803,-0.432641893625259,-0.402963846921921,0.821730196475983,-0.402963846921921,-0.440508127212524,0.786621630191803,-0.432641893625259,-0.306054204702377,0.831839621067047,-0.463005036115646,-0.346113532781601,0.786621630191803,-0.511304080486298,-0.306054204702377,0.831839621067047,-0.463005036115646,-0.228056773543358,0.786402702331543,-0.574073970317841,-0.346113532781601,0.786621630191803,-0.511304080486298,-0.228056773543358,0.786402702331543,-0.574073970317841,-0.306054204702377,0.831839621067047,-0.463005036115646,-0.236639022827148,0.820348560810089,-0.520605802536011,-0.228056773543358,0.786402702331543,-0.574073970317841,-0.236639022827148,0.820348560810089,-0.520605802536011,0.778370201587677,0.235869765281677,-0.581812083721161,-0.58834844827652,-0.31378585100174,-0.745241343975067,-0.440508127212524,0.786621630191803,-0.432641893625259,-0.346113532781601,0.786621630191803,-0.511304080486298,-0.465549349784851,-0.331408023834229,-0.820629358291626,-0.346113532781601,0.786621630191803,-0.511304080486298,-0.228056773543358,0.786402702331543,-0.574073970317841,-0.346113532781601,0.786621630191803,-0.511304080486298,-0.465549349784851,-0.331408023834229,-0.820629358291626,-0.58834844827652,-0.31378585100174,-0.745241343975067,0.337621122598648,-0.832275390625,0.43969264626503,-0.465549349784851,-0.331408023834229,-0.820629358291626,-0.228056773543358,0.786402702331543,-0.574073970317841,0.324590235948563,-0.831267714500427,0.451259583234787,-0.440508127212524,0.786621630191803,-0.432641893625259,-0.58834844827652,-0.31378585100174,-0.745241343975067,-0.465549349784851,-0.331408023834229,-0.820629358291626,0.337621122598648,-0.832275390625,0.43969264626503,-0.417296975851059,-0.559020459651947,-0.716491043567657,0.324590235948563,-0.831267714500427,0.451259583234787,0.0314454175531864,-0.99839198589325,0.0471681281924248,
- -0.756257355213165,-0.0236330423504114,0.653847455978394,0.324590235948563,-0.831267714500427,0.451259583234787,0.0550073832273483,-0.99799108505249,0.0314327888190746,0.0314454175531864,-0.99839198589325,0.0471681281924248,-0.417296975851059,-0.559020459651947,-0.716491043567657,-0.479409337043762,-0.55014181137085,-0.68374764919281,-0.465549349784851,-0.331408023834229,-0.820629358291626,0.337621122598648,-0.832275390625,0.43969264626503,-0.479409337043762,-0.55014181137085,-0.68374764919281,-0.417296975851059,-0.559020459651947,-0.716491043567657,-0.58834844827652,-0.31378585100174,-0.745241343975067,-0.465549349784851,-0.331408023834229,-0.820629358291626,-0.479409337043762,-0.55014181137085,-0.68374764919281,-0.58834844827652,-0.31378585100174,-0.745241343975067,-0.510514974594116,-0.541931211948395,-0.667596459388733,0.324590235948563,-0.831267714500427,0.451259583234787,-0.510514974594116,-0.541931211948395,-0.667596459388733,-0.58834844827652,-0.31378585100174,-0.745241343975067,-0.479409337043762,-0.55014181137085,-0.68374764919281,0.0550073832273483,-0.99799108505249,0.0314327888190746,0.324590235948563,-0.831267714500427,0.451259583234787,0.299770683050156,-0.828313767910004,0.473322153091431,-0.510514974594116,-0.541931211948395,-0.667596459388733,0.299770683050156,-0.828313767910004,0.473322153091431,0.324590235948563,-0.831267714500427,0.451259583234787,0.299770683050156,-0.828313767910004,0.473322153091431,-0.510514974594116,-0.541931211948395,-0.667596459388733,-0.479409337043762,-0.55014181137085,-0.68374764919281,-0.479409337043762,-0.55014181137085,-0.68374764919281,0.337621122598648,-0.832275390625,0.43969264626503,0.299770683050156,-0.828313767910004,0.473322153091431,0.299770683050156,-0.828313767910004,0.473322153091431,0.023589164018631,-0.998607933521271,0.047178328037262,0.0550073832273483,-0.99799108505249,0.0314327888190746,0.023589164018631,-0.998607933521271,0.047178328037262,0.299770683050156,-0.828313767910004,0.473322153091431,0.337621122598648,-0.832275390625,0.43969264626503,-0.534621596336365,0.825518667697906,-0.180827900767326,
- -0.584930002689362,0.790445923805237,-0.181802570819855,-0.315028995275497,0.149638786911964,0.937211275100708,-0.510845959186554,0.833071947097778,-0.212197571992874,-0.584930002689362,0.790445923805237,-0.181802570819855,-0.534621596336365,0.825518667697906,-0.180827900767326,-0.584930002689362,0.790445923805237,-0.181802570819855,-0.510845959186554,0.833071947097778,-0.212197571992874,-0.576575458049774,0.781931102275848,-0.236948817968369,-0.510845959186554,0.833071947097778,-0.212197571992874,-0.542332887649536,0.793849647045136,-0.275096386671066,-0.576575458049774,0.781931102275848,-0.236948817968369,-0.542332887649536,0.793849647045136,-0.275096386671066,-0.510845959186554,0.833071947097778,-0.212197571992874,-0.512414991855621,0.827747344970703,-0.228615924715996,-0.542332887649536,0.793849647045136,-0.275096386671066,-0.512414991855621,0.827747344970703,-0.228615924715996,0.236897110939026,0.323759347200394,-0.916002094745636,-0.584930002689362,0.790445923805237,-0.181802570819855,-0.576575458049774,0.781931102275848,-0.236948817968369,-0.915175020694733,-0.307688146829605,-0.26035150885582,-0.841060876846313,-0.314415276050568,-0.440181374549866,-0.576575458049774,0.781931102275848,-0.236948817968369,-0.542332887649536,0.793849647045136,-0.275096386671066,0.496771901845932,-0.827953159809113,0.260213851928711,-0.584930002689362,0.790445923805237,-0.181802570819855,-0.915175020694733,-0.307688146829605,-0.26035150885582,0.552209138870239,-0.828313767910004,0.0946644246578217,-0.841060876846313,-0.314415276050568,-0.440181374549866,-0.542332887649536,0.793849647045136,-0.275096386671066,0.496771901845932,-0.827953159809113,0.260213851928711,0.0236359722912312,-0.992710888385773,0.118179865181446,-0.251711130142212,-0.0235979184508324,0.96751469373703,0.496771901845932,-0.827953159809113,0.260213851928711,0.0628655776381493,-0.99799108505249,-0.00785819720476866,0.0236359722912312,-0.992710888385773,0.118179865181446,-0.576575458049774,0.781931102275848,-0.236948817968369,-0.841060876846313,-0.314415276050568,-0.440181374549866,
- -0.881016314029694,-0.322514891624451,-0.346113562583923,-0.915175020694733,-0.307688146829605,-0.26035150885582,-0.576575458049774,0.781931102275848,-0.236948817968369,-0.881016314029694,-0.322514891624451,-0.346113562583923,-0.731807231903076,-0.550822615623474,-0.401313632726669,-0.881016314029694,-0.322514891624451,-0.346113562583923,-0.841060876846313,-0.314415276050568,-0.440181374549866,-0.841060876846313,-0.314415276050568,-0.440181374549866,0.552209138870239,-0.828313767910004,0.0946644246578217,-0.731807231903076,-0.550822615623474,-0.401313632726669,-0.881016314029694,-0.322514891624451,-0.346113562583923,-0.731807231903076,-0.550822615623474,-0.401313632726669,-0.780957341194153,-0.552192032337189,-0.291872948408127,0.552209138870239,-0.828313767910004,0.0946644246578217,-0.780957341194153,-0.552192032337189,-0.291872948408127,-0.731807231903076,-0.550822615623474,-0.401313632726669,-0.780957341194153,-0.552192032337189,-0.291872948408127,-0.915175020694733,-0.307688146829605,-0.26035150885582,-0.881016314029694,-0.322514891624451,-0.346113562583923,-0.780957341194153,-0.552192032337189,-0.291872948408127,0.552209138870239,-0.828313767910004,0.0946644246578217,0.505632758140564,-0.829553782939911,0.23701536655426,0.0867514461278915,-0.993698358535767,-0.0709784477949142,0.505632758140564,-0.829553782939911,0.23701536655426,0.552209138870239,-0.828313767910004,0.0946644246578217,0.505632758140564,-0.829553782939911,0.23701536655426,0.0867514461278915,-0.993698358535767,-0.0709784477949142,0.0628655776381493,-0.99799108505249,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.00785819720476866,0.496771901845932,-0.827953159809113,0.260213851928711,0.505632758140564,-0.829553782939911,0.23701536655426,-0.915175020694733,-0.307688146829605,-0.26035150885582,-0.780957341194153,-0.552192032337189,-0.291872948408127,-0.816496670246124,-0.533863186836243,-0.21982604265213,-0.915175020694733,-0.307688146829605,-0.26035150885582,-0.816496670246124,-0.533863186836243,-0.21982604265213,0.496771901845932,-0.827953159809113,0.260213851928711,
- 0.505632758140564,-0.829553782939911,0.23701536655426,-0.816496670246124,-0.533863186836243,-0.21982604265213,-0.780957341194153,-0.552192032337189,-0.291872948408127,-0.816496670246124,-0.533863186836243,-0.21982604265213,0.505632758140564,-0.829553782939911,0.23701536655426,0.496771901845932,-0.827953159809113,0.260213851928711,0.0471681281924248,0.99839198589325,-0.0314454175531864,0.740249276161194,0.0629999414086342,0.669374346733093,0.773116886615753,0.0631115809082985,0.631115853786469,0.740249276161194,0.0629999414086342,0.669374346733093,0.0471681281924248,0.99839198589325,-0.0314454175531864,-0.0315872617065907,0.994998693466187,0.0947617813944817,0.0471681281924248,0.99839198589325,-0.0314454175531864,-0.110428102314472,0.993852913379669,0.00788772199302912,-0.0315872617065907,0.994998693466187,0.0947617813944817,-0.110428102314472,0.993852913379669,0.00788772199302912,0.0471681281924248,0.99839198589325,-0.0314454175531864,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.110428102314472,0.993852913379669,0.00788772199302912,-0.0471200942993164,0.99737536907196,-0.0549734458327293,0.0471681281924248,0.99839198589325,-0.0314454175531864,-0.212440460920334,0.251781284809113,-0.944179773330688,-0.8497354388237,0.00786792021244764,-0.527150630950928,-0.0471200942993164,0.99737536907196,-0.0549734458327293,-0.212440460920334,0.251781284809113,-0.944179773330688,-0.48764505982399,0.825850546360016,0.283148735761642,-0.528214454650879,0.788379788398743,0.315351903438568,0.415651142597198,0.117637112736702,0.901884496212006,-0.473322153091431,0.828313767910004,0.299770683050156,-0.528214454650879,0.788379788398743,0.315351903438568,-0.48764505982399,0.825850546360016,0.283148735761642,-0.528214454650879,0.788379788398743,0.315351903438568,-0.473322153091431,0.828313767910004,0.299770683050156,-0.472792863845825,0.795867919921875,0.378234267234802,-0.472792863845825,0.795867919921875,0.378234267234802,
- -0.473322153091431,0.828313767910004,0.299770683050156,-0.40285062789917,0.829398393630981,0.387052565813065,-0.402612090110779,0.836801648139954,0.371034681797028,-0.472792863845825,0.795867919921875,0.378234267234802,-0.40285062789917,0.829398393630981,0.387052565813065,-0.839997708797455,-0.282616019248962,0.463176280260086,-0.528214454650879,0.788379788398743,0.315351903438568,-0.472792863845825,0.795867919921875,0.378234267234802,-0.472792863845825,0.795867919921875,0.378234267234802,-0.402612090110779,0.836801648139954,0.371034681797028,-0.4251968562603,0.803149580955505,0.417322844266891,-0.417776376008987,-0.646371006965637,0.638488411903381,-0.528214454650879,0.788379788398743,0.315351903438568,-0.839997708797455,-0.282616019248962,0.463176280260086,-0.4251968562603,0.803149580955505,0.417322844266891,-0.402612090110779,0.836801648139954,0.371034681797028,-0.409195184707642,0.834128677845001,0.369849503040314,-0.667308390140533,-0.423937141895294,0.612353622913361,-0.472792863845825,0.795867919921875,0.378234267234802,-0.4251968562603,0.803149580955505,0.417322844266891,-0.472792863845825,0.795867919921875,0.378234267234802,-0.667308390140533,-0.423937141895294,0.612353622913361,-0.839997708797455,-0.282616019248962,0.463176280260086,-0.4251968562603,0.803149580955505,0.417322844266891,-0.409195184707642,0.834128677845001,0.369849503040314,-0.787303924560547,0.0551112778484821,-0.614097118377686,-0.4251968562603,0.803149580955505,0.417322844266891,-0.787303924560547,0.0551112778484821,-0.614097118377686,-0.667308390140533,-0.423937141895294,0.612353622913361,-0.787303924560547,0.0551112778484821,-0.614097118377686,-0.409195184707642,0.834128677845001,0.369849503040314,-0.757999837398529,0.0789583101868629,-0.647458136081696,-0.763306438922882,-0.031476553529501,-0.645269334316254,-0.787303924560547,0.0551112778484821,-0.614097118377686,-0.757999837398529,0.0789583101868629,-0.647458136081696,-0.74059385061264,-0.055150605738163,-0.669685900211334,-0.787303924560547,0.0551112778484821,-0.614097118377686,-0.763306438922882,-0.031476553529501,-0.645269334316254,
- -0.787303924560547,0.0551112778484821,-0.614097118377686,-0.74059385061264,-0.055150605738163,-0.669685900211334,-0.781419336795807,0.0236793737858534,-0.623556852340698,-0.839997708797455,-0.282616019248962,0.463176280260086,-0.667308390140533,-0.423937141895294,0.612353622913361,-0.605754911899567,-0.574287116527557,0.550686240196228,-0.667308390140533,-0.423937141895294,0.612353622913361,-0.669914662837982,-0.591101169586182,0.449236869812012,-0.605754911899567,-0.574287116527557,0.550686240196228,-0.605754911899567,-0.574287116527557,0.550686240196228,-0.691884636878967,-0.566087365150452,0.448152542114258,-0.839997708797455,-0.282616019248962,0.463176280260086,-0.417776376008987,-0.646371006965637,0.638488411903381,-0.839997708797455,-0.282616019248962,0.463176280260086,-0.691884636878967,-0.566087365150452,0.448152542114258,0.338404387235641,-0.818466424942017,-0.464322298765183,-0.605754911899567,-0.574287116527557,0.550686240196228,-0.669914662837982,-0.591101169586182,0.449236869812012,-0.669914662837982,-0.591101169586182,0.449236869812012,-0.763306438922882,-0.031476553529501,-0.645269334316254,0.338404387235641,-0.818466424942017,-0.464322298765183,0.338404387235641,-0.818466424942017,-0.464322298765183,-0.763306438922882,-0.031476553529501,-0.645269334316254,-0.102601043879986,-0.994440853595734,-0.0236771646887064,-0.605754911899567,-0.574287116527557,0.550686240196228,0.338404387235641,-0.818466424942017,-0.464322298765183,0.457374036312103,-0.78069019317627,-0.425831019878387,0.457374036312103,-0.78069019317627,-0.425831019878387,0.338404387235641,-0.818466424942017,-0.464322298765183,-0.102601043879986,-0.994440853595734,-0.0236771646887064,0.457374036312103,-0.78069019317627,-0.425831019878387,-0.691884636878967,-0.566087365150452,0.448152542114258,-0.605754911899567,-0.574287116527557,0.550686240196228,-0.102601043879986,-0.994440853595734,-0.0236771646887064,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.457374036312103,-0.78069019317627,-0.425831019878387,-0.0628675222396851,-0.998021900653839,-2.21605378637211e-016,
- 0.457374036312103,-0.78069019317627,-0.425831019878387,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.691884636878967,-0.566087365150452,0.448152542114258,0.457374036312103,-0.78069019317627,-0.425831019878387,0.464898556470871,-0.827361881732941,-0.315185457468033,-0.0628675222396851,-0.998021900653839,-2.21605378637211e-016,0.464898556470871,-0.827361881732941,-0.315185457468033,0.457374036312103,-0.78069019317627,-0.425831019878387,0.464898556470871,-0.827361881732941,-0.315185457468033,-0.417776376008987,-0.646371006965637,0.638488411903381,-0.691884636878967,-0.566087365150452,0.448152542114258,0.464898556470871,-0.827361881732941,-0.315185457468033,-0.0628675222396851,-0.998021900653839,-2.21605378637211e-016,-0.0393383838236332,-0.999194979667664,0.00786767713725567,-0.417776376008987,-0.646371006965637,0.638488411903381,-0.015799542888999,-0.995371222496033,0.0947972610592842,0.440685391426086,-0.0314775295555592,0.897109568119049,0.464898556470871,-0.827361881732941,-0.315185457468033,-0.0393383838236332,-0.999194979667664,0.00786767713725567,0.51757150888443,-0.807725250720978,-0.282311707735062,-0.015799542888999,-0.995371222496033,0.0947972610592842,0.51757150888443,-0.807725250720978,-0.282311707735062,-0.0393383838236332,-0.999194979667664,0.00786767713725567,-0.417776376008987,-0.646371006965637,0.638488411903381,0.464898556470871,-0.827361881732941,-0.315185457468033,0.511478126049042,-0.826233983039856,-0.236066848039627,-0.015799542888999,-0.995371222496033,0.0947972610592842,-0.417776376008987,-0.646371006965637,0.638488411903381,0.511478126049042,-0.826233983039856,-0.236066848039627,0.51757150888443,-0.807725250720978,-0.282311707735062,0.511478126049042,-0.826233983039856,-0.236066848039627,0.464898556470871,-0.827361881732941,-0.315185457468033,0.511478126049042,-0.826233983039856,-0.236066848039627,0.51757150888443,-0.807725250720978,-0.282311707735062,-0.015799542888999,-0.995371222496033,0.0947972610592842,-0.00786986947059631,0.818466424942017,-0.574500501155853,-0.0156917050480843,0.784585237503052,-0.619822382926941,
- -0.985842406749725,0.11041434854269,-0.126187831163406,0.125781655311584,0.825442135334015,-0.550294697284698,-0.0156917050480843,0.784585237503052,-0.619822382926941,-0.00786986947059631,0.818466424942017,-0.574500501155853,-0.0156917050480843,0.784585237503052,-0.619822382926941,0.125781655311584,0.825442135334015,-0.550294697284698,0.149338036775589,0.793849527835846,-0.58949226140976,0.149338036775589,0.793849527835846,-0.58949226140976,0.125781655311584,0.825442135334015,-0.550294697284698,0.181587129831314,0.828984797000885,-0.528971195220947,0.252164006233215,0.835293292999268,-0.488567769527435,0.149338036775589,0.793849527835846,-0.58949226140976,0.181587129831314,0.828984797000885,-0.528971195220947,-0.0156917050480843,0.784585237503052,-0.619822382926941,0.149338036775589,0.793849527835846,-0.58949226140976,0.141926005482674,-0.31539112329483,-0.938288569450378,0.141926005482674,-0.31539112329483,-0.938288569450378,-0.126035049557686,-0.677438378334045,-0.724701583385468,-0.0156917050480843,0.784585237503052,-0.619822382926941,0.149338036775589,0.793849527835846,-0.58949226140976,0.252164006233215,0.835293292999268,-0.488567769527435,0.291338622570038,0.803149700164795,-0.519685089588165,0.268785208463669,-0.339934229850769,-0.901220977306366,0.141926005482674,-0.31539112329483,-0.938288569450378,0.149338036775589,0.793849527835846,-0.58949226140976,0.149338036775589,0.793849527835846,-0.58949226140976,0.291338622570038,0.803149700164795,-0.519685089588165,0.268785208463669,-0.339934229850769,-0.901220977306366,0.141926005482674,-0.31539112329483,-0.938288569450378,0.188835948705673,-0.542903304100037,-0.818289041519165,-0.126035049557686,-0.677438378334045,-0.724701583385468,0.188835948705673,-0.542903304100037,-0.818289041519165,0.141926005482674,-0.31539112329483,-0.938288569450378,0.268785208463669,-0.339934229850769,-0.901220977306366,0.291338622570038,0.803149700164795,-0.519685089588165,0.252164006233215,0.835293292999268,-0.488567769527435,0.331068068742752,0.811905026435852,-0.480836987495422,0.252164006233215,0.835293292999268,-0.488567769527435,
- 0.331645578145981,0.829114019870758,-0.450090438127518,0.331068068742752,0.811905026435852,-0.480836987495422,0.291338622570038,0.803149700164795,-0.519685089588165,0.331068068742752,0.811905026435852,-0.480836987495422,0.844353914260864,-0.0868027433753014,-0.528707563877106,0.331068068742752,0.811905026435852,-0.480836987495422,0.331645578145981,0.829114019870758,-0.450090438127518,0.887894093990326,0.0628597587347031,0.455733239650726,0.331068068742752,0.811905026435852,-0.480836987495422,0.887894093990326,0.0628597587347031,0.455733239650726,0.844353914260864,-0.0868027433753014,-0.528707563877106,0.867865383625031,0.0867865383625031,0.489160507917404,0.887894093990326,0.0628597587347031,0.455733239650726,0.331645578145981,0.829114019870758,-0.450090438127518,0.887894093990326,0.0628597587347031,0.455733239650726,0.867865383625031,0.0867865383625031,0.489160507917404,0.867325603961945,-0.031539112329483,0.496740996837616,0.851132810115814,-0.070927731692791,0.520136713981628,0.887894093990326,0.0628597587347031,0.455733239650726,0.867325603961945,-0.031539112329483,0.496740996837616,0.887894093990326,0.0628597587347031,0.455733239650726,0.851132810115814,-0.070927731692791,0.520136713981628,0.884498476982117,0.0236919224262238,0.465941160917282,0.291338622570038,0.803149700164795,-0.519685089588165,0.844353914260864,-0.0868027433753014,-0.528707563877106,0.402963787317276,-0.402963787317276,-0.821730077266693,0.402963787317276,-0.402963787317276,-0.821730077266693,0.268785208463669,-0.339934229850769,-0.901220977306366,0.291338622570038,0.803149700164795,-0.519685089588165,0.560167610645294,-0.631174743175507,-0.536498546600342,0.402963787317276,-0.402963787317276,-0.821730077266693,0.844353914260864,-0.0868027433753014,-0.528707563877106,0.323668509721756,-0.544710457324982,-0.773646712303162,0.268785208463669,-0.339934229850769,-0.901220977306366,0.402963787317276,-0.402963787317276,-0.821730077266693,0.323668509721756,-0.544710457324982,-0.773646712303162,0.402963787317276,-0.402963787317276,-0.821730077266693,
- 0.560167610645294,-0.631174743175507,-0.536498546600342,0.268785208463669,-0.339934229850769,-0.901220977306366,0.323668509721756,-0.544710457324982,-0.773646712303162,0.243536457419395,-0.557777047157288,-0.793457508087158,0.268785208463669,-0.339934229850769,-0.901220977306366,0.243536457419395,-0.557777047157288,-0.793457508087158,0.188835948705673,-0.542903304100037,-0.818289041519165,-0.229172050952911,-0.82185834646225,0.52156400680542,0.323668509721756,-0.544710457324982,-0.773646712303162,0.560167610645294,-0.631174743175507,-0.536498546600342,-0.243604123592377,-0.809394299983978,0.53435742855072,0.243536457419395,-0.557777047157288,-0.793457508087158,0.323668509721756,-0.544710457324982,-0.773646712303162,0.323668509721756,-0.544710457324982,-0.773646712303162,-0.229172050952911,-0.82185834646225,0.52156400680542,-0.243604123592377,-0.809394299983978,0.53435742855072,-0.243604123592377,-0.809394299983978,0.53435742855072,0.188835948705673,-0.542903304100037,-0.818289041519165,0.243536457419395,-0.557777047157288,-0.793457508087158,0.560167610645294,-0.631174743175507,-0.536498546600342,0.0235564168542624,-0.99722158908844,0.0706692412495613,-0.229172050952911,-0.82185834646225,0.52156400680542,0.0235564168542624,-0.99722158908844,0.0706692412495613,0.560167610645294,-0.631174743175507,-0.536498546600342,0.867325603961945,-0.031539112329483,0.496740996837616,-0.243604123592377,-0.809394299983978,0.53435742855072,-0.229172050952911,-0.82185834646225,0.52156400680542,0.0235564168542624,-0.99722158908844,0.0706692412495613,-0.243604123592377,-0.809394299983978,0.53435742855072,0.0235564168542624,-0.99722158908844,0.0706692412495613,-0.0471550077199936,-0.998114347457886,0.0392958410084248,-0.0314454175531864,-0.99839198589325,0.0471681281924248,-0.243604123592377,-0.809394299983978,0.53435742855072,-0.0471550077199936,-0.998114347457886,0.0392958410084248,0.188835948705673,-0.542903304100037,-0.818289041519165,-0.243604123592377,-0.809394299983978,0.53435742855072,-0.157872319221497,-0.828829705715179,0.536765873432159,
- -0.0314454175531864,-0.99839198589325,0.0471681281924248,-0.157872319221497,-0.828829705715179,0.536765873432159,-0.243604123592377,-0.809394299983978,0.53435742855072,-0.157872319221497,-0.828829705715179,0.536765873432159,-0.126035049557686,-0.677438378334045,-0.724701583385468,0.188835948705673,-0.542903304100037,-0.818289041519165,-0.157872319221497,-0.828829705715179,0.536765873432159,-0.0314454175531864,-0.99839198589325,0.0471681281924248,-0.0235796887427568,-0.998206853866577,0.055019274353981,-0.126035049557686,-0.677438378334045,-0.724701583385468,0.00786183960735798,-0.998453617095947,0.0550328753888607,-0.994998693466187,-0.0315872617065907,-0.0947617813944817,-0.157872319221497,-0.828829705715179,0.536765873432159,-0.0235796887427568,-0.998206853866577,0.055019274353981,-0.0157212503254414,-0.801783680915833,0.597407519817352,0.00786183960735798,-0.998453617095947,0.0550328753888607,-0.0157212503254414,-0.801783680915833,0.597407519817352,-0.0235796887427568,-0.998206853866577,0.055019274353981,-0.126035049557686,-0.677438378334045,-0.724701583385468,-0.157872319221497,-0.828829705715179,0.536765873432159,-0.0472836866974831,-0.827464580535889,0.559523582458496,0.00786183960735798,-0.998453617095947,0.0550328753888607,-0.126035049557686,-0.677438378334045,-0.724701583385468,-0.0472836866974831,-0.827464580535889,0.559523582458496,-0.0157212503254414,-0.801783680915833,0.597407519817352,-0.0472836866974831,-0.827464580535889,0.559523582458496,-0.157872319221497,-0.828829705715179,0.536765873432159,-0.0472836866974831,-0.827464580535889,0.559523582458496,-0.0157212503254414,-0.801783680915833,0.597407519817352,0.00786183960735798,-0.998453617095947,0.0550328753888607,0.537318646907806,0.821781516075134,-0.189641892910004,0.581309199333191,0.785552978515625,-0.212099313735962,-0.260294795036316,0.0788772106170654,-0.962302029132843,0.551780104637146,0.827670156955719,-0.102473445236683,0.581309199333191,0.785552978515625,-0.212099313735962,0.537318646907806,0.821781516075134,-0.189641892910004,0.581309199333191,0.785552978515625,-0.212099313735962,
- 0.551780104637146,0.827670156955719,-0.102473445236683,0.604409754276276,0.792797207832336,-0.0784947723150253,0.604409754276276,0.792797207832336,-0.0784947723150253,0.551780104637146,0.827670156955719,-0.102473445236683,0.550788581371307,0.834051311016083,-0.031473632901907,0.937414824962616,-0.275710225105286,-0.212690755724907,0.581309199333191,0.785552978515625,-0.212099313735962,0.604409754276276,0.792797207832336,-0.0784947723150253,0.937414824962616,-0.275710225105286,-0.212690755724907,-0.543846845626831,-0.835474908351898,0.0788183808326721,0.581309199333191,0.785552978515625,-0.212099313735962,0.550788581371307,0.834051311016083,-0.031473632901907,0.59657871723175,0.800671458244324,0.0549480430781841,0.604409754276276,0.792797207832336,-0.0784947723150253,0.59657871723175,0.800671458244324,0.0549480430781841,0.550788581371307,0.834051311016083,-0.031473632901907,0.550907909870148,0.834232032299042,0.0236103385686874,0.604409754276276,0.792797207832336,-0.0784947723150253,0.939428150653839,-0.339457213878632,-0.047366127371788,0.937414824962616,-0.275710225105286,-0.212690755724907,0.604409754276276,0.792797207832336,-0.0784947723150253,0.59657871723175,0.800671458244324,0.0549480430781841,0.939428150653839,-0.339457213878632,-0.047366127371788,0.550907909870148,0.834232032299042,0.0236103385686874,0.599001169204712,0.796041071414948,0.0866975411772728,0.59657871723175,0.800671458244324,0.0549480430781841,0.599001169204712,0.796041071414948,0.0866975411772728,0.550907909870148,0.834232032299042,0.0236103385686874,0.553294837474823,0.829942286014557,0.0711379051208496,0.59657871723175,0.800671458244324,0.0549480430781841,0.599001169204712,0.796041071414948,0.0866975411772728,0.898222744464874,-0.425473928451538,0.110308058559895,0.898222744464874,-0.425473928451538,0.110308058559895,0.939428150653839,-0.339457213878632,-0.047366127371788,0.59657871723175,0.800671458244324,0.0549480430781841,0.599001169204712,0.796041071414948,0.0866975411772728,0.553294837474823,0.829942286014557,0.0711379051208496,0.0392800718545914,0.054992102086544,0.99771386384964,
- 0.898222744464874,-0.425473928451538,0.110308058559895,0.599001169204712,0.796041071414948,0.0866975411772728,0.0392800718545914,0.054992102086544,0.99771386384964,0.0392800718545914,0.054992102086544,0.99771386384964,0.553294837474823,0.829942286014557,0.0711379051208496,0,0.0862911120057106,0.996270060539246,0.0392800718545914,0.054992102086544,0.99771386384964,0,0.0862911120057106,0.996270060539246,0,-0.0314804539084435,0.999504387378693,-0.0314182415604591,-0.0628364831209183,0.997529208660126,0.0392800718545914,0.054992102086544,0.99771386384964,0,-0.0314804539084435,0.999504387378693,0.0392800718545914,0.054992102086544,0.99771386384964,-0.0314182415604591,-0.0628364831209183,0.997529208660126,0.0314716808497906,0.0236037615686655,0.999225914478302,0.805148959159851,-0.58412766456604,0.102617025375366,0.939428150653839,-0.339457213878632,-0.047366127371788,0.898222744464874,-0.425473928451538,0.110308058559895,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.805148959159851,-0.58412766456604,0.102617025375366,0,-0.0314804539084435,0.999504387378693,0.805148959159851,-0.58412766456604,0.102617025375366,0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.619898676872253,-0.784681856632233,-1.74234372847744e-016,-0.0393396019935608,-0.999225914478302,-2.21872723411188e-016,-0.619898676872253,-0.784681856632233,-1.74234372847744e-016,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.939428150653839,-0.339457213878632,-0.047366127371788,0.805148959159851,-0.58412766456604,0.102617025375366,0.833535432815552,-0.550447881221771,-0.0471812523901463,-0.619898676872253,-0.784681856632233,-1.74234372847744e-016,0.833535432815552,-0.550447881221771,-0.0471812523901463,0.805148959159851,-0.58412766456604,0.102617025375366,-0.619898676872253,-0.784681856632233,-1.74234372847744e-016,-0.0393396019935608,-0.999225914478302,-2.21872723411188e-016,-0.559871435165405,-0.827978909015656,0.0315420515835285,0.833535432815552,-0.550447881221771,-0.0471812523901463,-0.619898676872253,-0.784681856632233,-1.74234372847744e-016,
- -0.559871435165405,-0.827978909015656,0.0315420515835285,0.833535432815552,-0.550447881221771,-0.0471812523901463,0.827670156955719,-0.551780104637146,-0.102473445236683,0.939428150653839,-0.339457213878632,-0.047366127371788,-0.559871435165405,-0.827978909015656,0.0315420515835285,0.827670156955719,-0.551780104637146,-0.102473445236683,0.833535432815552,-0.550447881221771,-0.0471812523901463,0.939428150653839,-0.339457213878632,-0.047366127371788,0.827670156955719,-0.551780104637146,-0.102473445236683,0.937414824962616,-0.275710225105286,-0.212690755724907,-0.0393396019935608,-0.999225914478302,-2.21872723411188e-016,-0.553294837474823,-0.829942286014557,0.0711379051208496,-0.559871435165405,-0.827978909015656,0.0315420515835285,0.827670156955719,-0.551780104637146,-0.102473445236683,-0.559871435165405,-0.827978909015656,0.0315420515835285,-0.553294837474823,-0.829942286014557,0.0711379051208496,-0.553294837474823,-0.829942286014557,0.0711379051208496,-0.0393396019935608,-0.999225914478302,-2.21872723411188e-016,-0.0628190487623215,-0.997252345085144,0.0392619036138058,0.827670156955719,-0.551780104637146,-0.102473445236683,0.819482147693634,-0.543694853782654,-0.181231632828712,0.937414824962616,-0.275710225105286,-0.212690755724907,-0.553294837474823,-0.829942286014557,0.0711379051208496,0.819482147693634,-0.543694853782654,-0.181231632828712,0.827670156955719,-0.551780104637146,-0.102473445236683,0.937414824962616,-0.275710225105286,-0.212690755724907,0.819482147693634,-0.543694853782654,-0.181231632828712,-0.543846845626831,-0.835474908351898,0.0788183808326721,0.819482147693634,-0.543694853782654,-0.181231632828712,-0.553294837474823,-0.829942286014557,0.0711379051208496,-0.543846845626831,-0.835474908351898,0.0788183808326721,-0.553294837474823,-0.829942286014557,0.0711379051208496,-0.0628190487623215,-0.997252345085144,0.0392619036138058,-0.567140161991119,-0.803448557853699,0.181169778108597,-0.567140161991119,-0.803448557853699,0.181169778108597,-0.543846845626831,-0.835474908351898,0.0788183808326721,-0.553294837474823,-0.829942286014557,0.0711379051208496,
- -0.0628190487623215,-0.997252345085144,0.0392619036138058,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.567140161991119,-0.803448557853699,0.181169778108597,-0.543846845626831,-0.835474908351898,0.0788183808326721,-0.567140161991119,-0.803448557853699,0.181169778108597,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.543846845626831,-0.835474908351898,0.0788183808326721,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.551044464111328,0.834438860416412,0.00787206459790468,0.426162362098694,0.899676084518433,0.0947027429938316,0.502831518650055,0.864241719245911,0.0157134849578142,0.426162362098694,0.899676084518433,0.0947027429938316,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.550635099411011,0.833818972110748,0.0393310822546482,-0.597407519817352,0.801783680915833,0.0157212503254414,-0.550635099411011,0.833818972110748,0.0393310822546482,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.54997193813324,0.832814693450928,0.0628539323806763,-0.597407519817352,0.801783680915833,0.0157212503254414,-0.551044464111328,0.834438860416412,0.00787206459790468,0.494776338338852,0.863895177841187,-0.0942431092262268,-0.54997193813324,0.832814693450928,0.0628539323806763,-0.551044464111328,0.834438860416412,0.00787206459790468,-0.54997193813324,0.832814693450928,0.0628539323806763,0.494776338338852,0.863895177841187,-0.0942431092262268,0.486143708229065,0.870354056358337,-0.0784102752804756,0.49398472905159,0.86251300573349,-0.109774380922318,-0.487629979848862,0.873014986515045,0.00786499958485365,-0.54997193813324,0.832814693450928,0.0628539323806763,-0.487629979848862,0.873014986515045,0.00786499958485365,-0.604019165039063,0.792284905910492,0.0862884595990181,-0.54997193813324,0.832814693450928,0.0628539323806763,-0.597407519817352,0.801783680915833,0.0157212503254414,-0.54997193813324,0.832814693450928,0.0628539323806763,-0.604019165039063,0.792284905910492,0.0862884595990181,-0.260294795036316,0.0788772106170654,-0.962302029132843,
- -0.959440946578979,-0.243792369961739,0.141556844115257,-0.487629979848862,0.873014986515045,0.00786499958485365,-0.604019165039063,0.792284905910492,0.0862884595990181,-0.487629979848862,0.873014986515045,0.00786499958485365,-0.959440946578979,-0.243792369961739,0.141556844115257,-0.604019165039063,0.792284905910492,0.0862884595990181,-0.937676668167114,-0.346704006195068,0.0236389078199863,-0.597407519817352,0.801783680915833,0.0157212503254414,-0.937676668167114,-0.346704006195068,0.0236389078199863,-0.604019165039063,0.792284905910492,0.0862884595990181,-0.959440946578979,-0.243792369961739,0.141556844115257,-0.597407519817352,0.801783680915833,0.0157212503254414,-0.937676668167114,-0.346704006195068,0.0236389078199863,-0.88742858171463,-0.447640955448151,0.10994690656662,-0.959440946578979,-0.243792369961739,0.141556844115257,-0.832249760627747,-0.541747450828552,0.117771193385124,-0.937676668167114,-0.346704006195068,0.0236389078199863,-0.88742858171463,-0.447640955448151,0.10994690656662,-0.600064516067505,0.797454118728638,0.0631646811962128,-0.597407519817352,0.801783680915833,0.0157212503254414,-0.600064516067505,0.797454118728638,0.0631646811962128,-0.550635099411011,0.833818972110748,0.0393310822546482,-0.597407519817352,0.801783680915833,0.0157212503254414,-0.832249760627747,-0.541747450828552,0.117771193385124,-0.959440946578979,-0.243792369961739,0.141556844115257,-0.741722762584686,-0.662816047668457,-0.102578684687614,-0.937676668167114,-0.346704006195068,0.0236389078199863,-0.809094607830048,-0.581291317939758,0.0864081680774689,-0.88742858171463,-0.447640955448151,0.10994690656662,-0.809094607830048,-0.581291317939758,0.0864081680774689,-0.937676668167114,-0.346704006195068,0.0236389078199863,-0.832249760627747,-0.541747450828552,0.117771193385124,-0.600064516067505,0.797454118728638,0.0631646811962128,-0.88742858171463,-0.447640955448151,0.10994690656662,-0.0392800718545914,0.054992102086544,0.99771386384964,0,-0.0314804539084435,0.999504387378693,-0.809094607830048,-0.581291317939758,0.0864081680774689,
- 0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.550635099411011,0.833818972110748,0.0393310822546482,-0.600064516067505,0.797454118728638,0.0631646811962128,-0.553294837474823,0.829942286014557,0.0711379051208496,-0.0392800718545914,0.054992102086544,0.99771386384964,-0.553294837474823,0.829942286014557,0.0711379051208496,-0.600064516067505,0.797454118728638,0.0631646811962128,-0.553294837474823,0.829942286014557,0.0711379051208496,0.450357258319855,0.892813503742218,-0.00790100451558828,-0.550635099411011,0.833818972110748,0.0393310822546482,0.553294837474823,0.829942286014557,0.0711379051208496,0.450357258319855,0.892813503742218,-0.00790100451558828,-0.553294837474823,0.829942286014557,0.0711379051208496,0.0314182415604591,-0.0628364831209183,0.997529208660126,-0.0392800718545914,0.054992102086544,0.99771386384964,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.0392800718545914,0.054992102086544,0.99771386384964,0.0314182415604591,-0.0628364831209183,0.997529208660126,0,-0.0314804539084435,0.999504387378693,-0.0392800718545914,0.054992102086544,0.99771386384964,0,-0.0314804539084435,0.999504387378693,0,0.0862911120057106,0.996270060539246,-0.553294837474823,0.829942286014557,0.0711379051208496,-0.0392800718545914,0.054992102086544,0.99771386384964,0,0.0862911120057106,0.996270060539246,0.553294837474823,0.829942286014557,0.0711379051208496,-0.553294837474823,0.829942286014557,0.0711379051208496,0,0.0862911120057106,0.996270060539246,0.623654007911682,-0.781541049480438,0.0157887078821659,0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.809094607830048,-0.581291317939758,0.0864081680774689,-0.832249760627747,-0.541747450828552,0.117771193385124,0.623654007911682,-0.781541049480438,0.0157887078821659,-0.809094607830048,-0.581291317939758,0.0864081680774689,0.623654007911682,-0.781541049480438,0.0157887078821659,-0.0393396019935608,-0.999225914478302,-2.21872723411188e-016,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.623654007911682,-0.781541049480438,0.0157887078821659,
- -0.832249760627747,-0.541747450828552,0.117771193385124,0.54997193813324,-0.832814693450928,-0.0628539323806763,-0.0393396019935608,-0.999225914478302,-2.21872723411188e-016,0.623654007911682,-0.781541049480438,0.0157887078821659,0.54997193813324,-0.832814693450928,-0.0628539323806763,-0.741722762584686,-0.662816047668457,-0.102578684687614,0.54997193813324,-0.832814693450928,-0.0628539323806763,-0.832249760627747,-0.541747450828552,0.117771193385124,-0.0393396019935608,-0.999225914478302,-2.21872723411188e-016,0.54997193813324,-0.832814693450928,-0.0628539323806763,-0.039320133626461,-0.998731434345245,0.031456109136343,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.741722762584686,-0.662816047668457,-0.102578684687614,-0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.039320133626461,-0.998731434345245,0.031456109136343,0.54997193813324,-0.832814693450928,-0.0628539323806763,0.590899348258972,-0.803623080253601,-0.0709079131484032,0.590899348258972,-0.803623080253601,-0.0709079131484032,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,-0.039320133626461,-0.998731434345245,0.031456109136343,0.54997193813324,-0.832814693450928,-0.0628539323806763,-0.741722762584686,-0.662816047668457,-0.102578684687614,0.551317870616913,-0.826976895332336,-0.110263586044312,0.551317870616913,-0.826976895332336,-0.110263586044312,0.590899348258972,-0.803623080253601,-0.0709079131484032,0.54997193813324,-0.832814693450928,-0.0628539323806763,-0.741722762584686,-0.662816047668457,-0.102578684687614,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.551317870616913,-0.826976895332336,-0.110263586044312,-0.0550345741212368,-0.998484432697296,-2.21708081382065e-016,0.590899348258972,-0.803623080253601,-0.0709079131484032,0.551317870616913,-0.826976895332336,-0.110263586044312,0.489709466695786,0.821448087692261,-0.292245984077454,0.526889801025391,0.786402702331543,-0.322425097227097,-0.384304851293564,0.156859129667282,-0.909782946109772,0.519814014434814,0.834852874279022,-0.181147307157516,
- 0.526889801025391,0.786402702331543,-0.322425097227097,0.489709466695786,0.821448087692261,-0.292245984077454,0.526889801025391,0.786402702331543,-0.322425097227097,0.519814014434814,0.834852874279022,-0.181147307157516,0.57343602180481,0.79338401556015,-0.204237461090088,0.519814014434814,0.834852874279022,-0.181147307157516,0.608187556266785,0.789853930473328,-0.0789853930473328,0.57343602180481,0.79338401556015,-0.204237461090088,0.608187556266785,0.789853930473328,-0.0789853930473328,0.519814014434814,0.834852874279022,-0.181147307157516,0.560848772525787,0.821524977684021,-0.102690622210503,0.608187556266785,0.789853930473328,-0.0789853930473328,0.560848772525787,0.821524977684021,-0.102690622210503,0.37907075881958,0.244816541671753,0.892395794391632,0.864241719245911,-0.314269721508026,-0.392837136983871,0.526889801025391,0.786402702331543,-0.322425097227097,0.57343602180481,0.79338401556015,-0.204237461090088,0.91014701128006,-0.329535990953445,-0.251075029373169,0.57343602180481,0.79338401556015,-0.204237461090088,0.608187556266785,0.789853930473328,-0.0789853930473328,0.57343602180481,0.79338401556015,-0.204237461090088,0.91014701128006,-0.329535990953445,-0.251075029373169,0.864241719245911,-0.314269721508026,-0.392837136983871,-0.504140257835388,-0.834982335567474,0.220561370253563,0.91014701128006,-0.329535990953445,-0.251075029373169,0.608187556266785,0.789853930473328,-0.0789853930473328,0.864241719245911,-0.314269721508026,-0.392837136983871,-0.520848870277405,-0.828623235225677,0.205182880163193,0.526889801025391,0.786402702331543,-0.322425097227097,0.91014701128006,-0.329535990953445,-0.251075029373169,-0.504140257835388,-0.834982335567474,0.220561370253563,0.796412110328674,-0.559854030609131,-0.228672787547112,-0.520848870277405,-0.828623235225677,0.205182880163193,-0.0550277717411518,-0.998361051082611,0.0157222207635641,-0.456508964300156,-0.0236125327646732,-0.889405429363251,-0.520848870277405,-0.828623235225677,0.205182880163193,-0.0392958410084248,-0.998114347457886,0.0471550077199936,-0.0550277717411518,-0.998361051082611,0.0157222207635641,
- 0.796412110328674,-0.559854030609131,-0.228672787547112,0.779141306877136,-0.550907969474792,-0.299064338207245,0.91014701128006,-0.329535990953445,-0.251075029373169,-0.504140257835388,-0.834982335567474,0.220561370253563,0.779141306877136,-0.550907969474792,-0.299064338207245,0.796412110328674,-0.559854030609131,-0.228672787547112,0.779141306877136,-0.550907969474792,-0.299064338207245,0.864241719245911,-0.314269721508026,-0.392837136983871,0.91014701128006,-0.329535990953445,-0.251075029373169,0.864241719245911,-0.314269721508026,-0.392837136983871,0.771653652191162,-0.54330712556839,-0.330708682537079,-0.520848870277405,-0.828623235225677,0.205182880163193,0.779141306877136,-0.550907969474792,-0.299064338207245,0.771653652191162,-0.54330712556839,-0.330708682537079,0.864241719245911,-0.314269721508026,-0.392837136983871,-0.0392958410084248,-0.998114347457886,0.0471550077199936,-0.520848870277405,-0.828623235225677,0.205182880163193,-0.528971195220947,-0.828984797000885,0.181587129831314,0.771653652191162,-0.54330712556839,-0.330708682537079,-0.528971195220947,-0.828984797000885,0.181587129831314,-0.520848870277405,-0.828623235225677,0.205182880163193,-0.528971195220947,-0.828984797000885,0.181587129831314,0.771653652191162,-0.54330712556839,-0.330708682537079,0.779141306877136,-0.550907969474792,-0.299064338207245,0.779141306877136,-0.550907969474792,-0.299064338207245,-0.504140257835388,-0.834982335567474,0.220561370253563,-0.528971195220947,-0.828984797000885,0.181587129831314,-0.528971195220947,-0.828984797000885,0.181587129831314,-0.0550277717411518,-0.998361051082611,0.0157222207635641,-0.0392958410084248,-0.998114347457886,0.0471550077199936,-0.0550277717411518,-0.998361051082611,0.0157222207635641,-0.528971195220947,-0.828984797000885,0.181587129831314,-0.504140257835388,-0.834982335567474,0.220561370253563,0.0157970786094666,0.884636402130127,-0.466013818979263,0,0.858880341053009,-0.512176334857941,-0.966438949108124,0.235716819763184,-0.102143943309784,0.0865685641765594,0.881425380706787,-0.464322298765183,
- 0,0.858880341053009,-0.512176334857941,0.0157970786094666,0.884636402130127,-0.466013818979263,0.994998693466187,0.0947617813944817,0.0315872617065907,0.0865685641765594,0.881425380706787,-0.464322298765183,0.993204295635223,0.0551780164241791,0.102473460137844,0,0.858880341053009,-0.512176334857941,0.0865685641765594,0.881425380706787,-0.464322298765183,0.0631646737456322,0.860618710517883,-0.505317389965057,0.0631646737456322,0.860618710517883,-0.505317389965057,0.0865685641765594,0.881425380706787,-0.464322298765183,0.994998693466187,0.0947617813944817,0.0315872617065907,0,0.858880341053009,-0.512176334857941,0.0631646737456322,0.860618710517883,-0.505317389965057,0.0315675809979439,-0.363027215003967,-0.931243658065796,0.0315675809979439,-0.363027215003967,-0.931243658065796,-0.0947145447134972,-0.884002387523651,0.457786947488785,0,0.858880341053009,-0.512176334857941,0.0631646737456322,0.860618710517883,-0.505317389965057,0.994998693466187,0.0947617813944817,0.0315872617065907,0.0788281783461571,-0.378375262022018,-0.922289669513702,0.0788281783461571,-0.378375262022018,-0.922289669513702,0.0315675809979439,-0.363027215003967,-0.931243658065796,0.0631646737456322,0.860618710517883,-0.505317389965057,0.0708266273140907,-0.558743417263031,-0.826310694217682,0.0788281783461571,-0.378375262022018,-0.922289669513702,0.994998693466187,0.0947617813944817,0.0315872617065907,0.994998693466187,0.0947617813944817,0.0315872617065907,0.0394668504595757,-0.884057462215424,0.46570885181427,0.0708266273140907,-0.558743417263031,-0.826310694217682,0.0788281783461571,-0.378375262022018,-0.922289669513702,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.0315675809979439,-0.363027215003967,-0.931243658065796,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.0788281783461571,-0.378375262022018,-0.922289669513702,0.0708266273140907,-0.558743417263031,-0.826310694217682,0.0315675809979439,-0.363027215003967,-0.931243658065796,0.0236616898328066,-0.559993326663971,-0.828159153461456,-0.0947145447134972,-0.884002387523651,0.457786947488785,
- 0.0394668504595757,-0.884057462215424,0.46570885181427,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.0708266273140907,-0.558743417263031,-0.826310694217682,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.0394668504595757,-0.884057462215424,0.46570885181427,-0.0947145447134972,-0.884002387523651,0.457786947488785,0.0394668504595757,-0.884057462215424,0.46570885181427,0.99138867855072,-0.0708134695887566,0.110154293477535,0.0157285407185555,-0.998762309551239,0.0471856184303761,0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.0947145447134972,-0.884002387523651,0.457786947488785,0.0394668504595757,-0.884057462215424,0.46570885181427,-0.0947145447134972,-0.884002387523651,0.457786947488785,0.0157285407185555,-0.998762309551239,0.0471856184303761,-0.054992102086544,-0.99771386384964,0.0392800718545914,-0.0947145447134972,-0.884002387523651,0.457786947488785,-0.054992102086544,-0.99771386384964,0.0392800718545914,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.417724460363388,-0.0630527511239052,0.906383275985718,-0.480881780385971,0.0551831535995007,0.875047147274017,-0.456636339426041,-1.97542774027382e-016,0.889653563499451,-0.480881780385971,0.0551831535995007,0.875047147274017,-0.417724460363388,-0.0630527511239052,0.906383275985718,-0.440685391426086,-0.0314775295555592,0.897109568119049,-0.480881780385971,0.0551831535995007,0.875047147274017,-0.440685391426086,-0.0314775295555592,0.897109568119049,-0.442649722099304,0.0790445953607559,0.893203914165497,0.463005036115646,0.831839621067047,0.306054204702377,-0.503251016139984,0.833509564399719,-0.228035613894463,-0.442649722099304,0.0790445953607559,0.893203914165497,-0.503251016139984,0.833509564399719,-0.228035613894463,-0.480881780385971,0.0551831535995007,0.875047147274017,-0.442649722099304,0.0790445953607559,0.893203914165497,-0.480881780385971,0.0551831535995007,0.875047147274017,-0.503251016139984,0.833509564399719,-0.228035613894463,-0.576072514057159,0.789140403270721,-0.213067904114723,-0.576072514057159,0.789140403270721,-0.213067904114723,
- -0.456636339426041,-1.97542774027382e-016,0.889653563499451,-0.480881780385971,0.0551831535995007,0.875047147274017,-0.456636339426041,-1.97542774027382e-016,0.889653563499451,-0.576072514057159,0.789140403270721,-0.213067904114723,-0.752831220626831,-0.611675381660461,-0.243101745843887,-0.479527741670609,0.833277702331543,-0.275138854980469,-0.576072514057159,0.789140403270721,-0.213067904114723,-0.503251016139984,0.833509564399719,-0.228035613894463,0.463005036115646,0.831839621067047,0.306054204702377,-0.479527741670609,0.833277702331543,-0.275138854980469,-0.503251016139984,0.833509564399719,-0.228035613894463,-0.479527741670609,0.833277702331543,-0.275138854980469,0.463005036115646,0.831839621067047,0.306054204702377,0.432856231927872,0.881452679634094,0.1888827085495,0.345228165388107,0.878762543201447,0.329535931348801,0.393651962280273,0.881780445575714,0.259810298681259,-0.479527741670609,0.833277702331543,-0.275138854980469,-0.426149070262909,0.828623235225677,-0.36301589012146,-0.479527741670609,0.833277702331543,-0.275138854980469,0.393651962280273,0.881780445575714,0.259810298681259,-0.576072514057159,0.789140403270721,-0.213067904114723,-0.479527741670609,0.833277702331543,-0.275138854980469,-0.512701869010925,0.804547488689423,-0.299733400344849,-0.46380552649498,0.793972134590149,-0.393055528402328,-0.479527741670609,0.833277702331543,-0.275138854980469,-0.426149070262909,0.828623235225677,-0.36301589012146,-0.512701869010925,0.804547488689423,-0.299733400344849,-0.479527741670609,0.833277702331543,-0.275138854980469,-0.46380552649498,0.793972134590149,-0.393055528402328,-0.576072514057159,0.789140403270721,-0.213067904114723,-0.512701869010925,0.804547488689423,-0.299733400344849,-0.800055384635925,-0.400027692317963,-0.44708976149559,-0.46380552649498,0.793972134590149,-0.393055528402328,-0.800055384635925,-0.400027692317963,-0.44708976149559,-0.512701869010925,0.804547488689423,-0.299733400344849,-0.576072514057159,0.789140403270721,-0.213067904114723,-0.800055384635925,-0.400027692317963,-0.44708976149559,
- -0.752831220626831,-0.611675381660461,-0.243101745843887,-0.409436106681824,0.826746046543121,-0.385814815759659,-0.46380552649498,0.793972134590149,-0.393055528402328,-0.426149070262909,0.828623235225677,-0.36301589012146,0.425091445446014,0.873799085617065,0.236161917448044,-0.409436106681824,0.826746046543121,-0.385814815759659,-0.426149070262909,0.828623235225677,-0.36301589012146,-0.409436106681824,0.826746046543121,-0.385814815759659,0.425091445446014,0.873799085617065,0.236161917448044,0.415306448936462,0.869792699813843,0.266422986984253,0.308293163776398,0.86163991689682,0.403152585029602,0.393737405538559,0.826848566532135,0.401612132787704,-0.409436106681824,0.826746046543121,-0.385814815759659,-0.345728695392609,0.832891881465912,-0.432160884141922,-0.409436106681824,0.826746046543121,-0.385814815759659,0.393737405538559,0.826848566532135,0.401612132787704,-0.41022527217865,0.788894772529602,-0.457558989524841,-0.409436106681824,0.826746046543121,-0.385814815759659,-0.345728695392609,0.832891881465912,-0.432160884141922,-0.46380552649498,0.793972134590149,-0.393055528402328,-0.409436106681824,0.826746046543121,-0.385814815759659,-0.449810028076172,0.789140403270721,-0.418244421482086,-0.409436106681824,0.826746046543121,-0.385814815759659,-0.41022527217865,0.788894772529602,-0.457558989524841,-0.449810028076172,0.789140403270721,-0.418244421482086,-0.449810028076172,0.789140403270721,-0.418244421482086,-0.707499980926514,-0.306583315134048,-0.636749923229218,-0.46380552649498,0.793972134590149,-0.393055528402328,-0.800055384635925,-0.400027692317963,-0.44708976149559,-0.46380552649498,0.793972134590149,-0.393055528402328,-0.707499980926514,-0.306583315134048,-0.636749923229218,-0.640301167964935,-0.308293163776398,-0.703540861606598,-0.449810028076172,0.789140403270721,-0.418244421482086,-0.41022527217865,0.788894772529602,-0.457558989524841,-0.640301167964935,-0.308293163776398,-0.703540861606598,-0.707499980926514,-0.306583315134048,-0.636749923229218,-0.449810028076172,0.789140403270721,-0.418244421482086,
- 0.433326154947281,-0.835137724876404,0.338782250881195,-0.640301167964935,-0.308293163776398,-0.703540861606598,-0.41022527217865,0.788894772529602,-0.457558989524841,-0.800055384635925,-0.400027692317963,-0.44708976149559,-0.707499980926514,-0.306583315134048,-0.636749923229218,-0.645829498767853,-0.559193789958954,-0.51981395483017,-0.640301167964935,-0.308293163776398,-0.703540861606598,-0.645829498767853,-0.559193789958954,-0.51981395483017,-0.707499980926514,-0.306583315134048,-0.636749923229218,-0.560167610645294,-0.536498546600342,-0.631174743175507,-0.640301167964935,-0.308293163776398,-0.703540861606598,0.433326154947281,-0.835137724876404,0.338782250881195,-0.645829498767853,-0.559193789958954,-0.51981395483017,-0.640301167964935,-0.308293163776398,-0.703540861606598,-0.560167610645294,-0.536498546600342,-0.631174743175507,0.0948061496019363,-0.995464503765106,-0.00790051184594631,0.433326154947281,-0.835137724876404,0.338782250881195,0.763306438922882,-0.031476553529501,-0.645269334316254,-0.645829498767853,-0.559193789958954,-0.51981395483017,-0.707106828689575,-0.565685391426086,-0.424264073371887,-0.800055384635925,-0.400027692317963,-0.44708976149559,-0.752831220626831,-0.611675381660461,-0.243101745843887,-0.800055384635925,-0.400027692317963,-0.44708976149559,-0.707106828689575,-0.565685391426086,-0.424264073371887,0.0948061496019363,-0.995464503765106,-0.00790051184594631,0.417322844266891,-0.803149580955505,0.4251968562603,0.433326154947281,-0.835137724876404,0.338782250881195,0.417322844266891,-0.803149580955505,0.4251968562603,0.0948061496019363,-0.995464503765106,-0.00790051184594631,0.0314327888190746,-0.99799108505249,0.0550073832273483,0.433326154947281,-0.835137724876404,0.338782250881195,0.417322844266891,-0.803149580955505,0.4251968562603,0.418439894914627,-0.828984677791595,0.371069341897964,0.0314327888190746,-0.99799108505249,0.0550073832273483,0.418439894914627,-0.828984677791595,0.371069341897964,0.417322844266891,-0.803149580955505,0.4251968562603,0.418439894914627,-0.828984677791595,0.371069341897964,
- -0.560167610645294,-0.536498546600342,-0.631174743175507,0.433326154947281,-0.835137724876404,0.338782250881195,-0.560167610645294,-0.536498546600342,-0.631174743175507,0.418439894914627,-0.828984677791595,0.371069341897964,-0.645829498767853,-0.559193789958954,-0.51981395483017,0.0157149396836758,-0.997898638248444,0.0628597587347031,0.418439894914627,-0.828984677791595,0.371069341897964,0.0314327888190746,-0.99799108505249,0.0550073832273483,0.514046847820282,-0.790841341018677,0.332153350114822,-0.645829498767853,-0.559193789958954,-0.51981395483017,0.418439894914627,-0.828984677791595,0.371069341897964,0.418439894914627,-0.828984677791595,0.371069341897964,0.0157149396836758,-0.997898638248444,0.0628597587347031,0.514046847820282,-0.790841341018677,0.332153350114822,-0.645829498767853,-0.559193789958954,-0.51981395483017,0.514046847820282,-0.790841341018677,0.332153350114822,-0.707106828689575,-0.565685391426086,-0.424264073371887,0.514046847820282,-0.790841341018677,0.332153350114822,0.0157149396836758,-0.997898638248444,0.0628597587347031,0.047178328037262,-0.998607933521271,0.023589164018631,0,-0.994719624519348,0.102629795670509,0.514046847820282,-0.790841341018677,0.332153350114822,0.047178328037262,-0.998607933521271,0.023589164018631,0.465549349784851,-0.820629358291626,0.331408023834229,-0.707106828689575,-0.565685391426086,-0.424264073371887,0.514046847820282,-0.790841341018677,0.332153350114822,0.465549349784851,-0.820629358291626,0.331408023834229,0.514046847820282,-0.790841341018677,0.332153350114822,0,-0.994719624519348,0.102629795670509,-0.707106828689575,-0.565685391426086,-0.424264073371887,0.465549349784851,-0.820629358291626,0.331408023834229,-0.752831220626831,-0.611675381660461,-0.243101745843887,-0.440685391426086,-0.0314775295555592,0.897109568119049,0.465549349784851,-0.820629358291626,0.331408023834229,0,-0.994719624519348,0.102629795670509,0.465549349784851,-0.820629358291626,0.331408023834229,-0.440685391426086,-0.0314775295555592,0.897109568119049,-0.752831220626831,-0.611675381660461,-0.243101745843887,
- 0.243905529379845,-0.0629433616995811,-0.967754244804382,0.306308954954147,0.0549785308539867,-0.950343191623688,0.292382836341858,0.0158044770359993,-0.956170856952667,0.306308954954147,0.0549785308539867,-0.950343191623688,0.243905529379845,-0.0629433616995811,-0.967754244804382,0.268324434757233,-0.0315675809979439,-0.962811231613159,0.306308954954147,0.0549785308539867,-0.950343191623688,0.268324434757233,-0.0315675809979439,-0.962811231613159,0.267451345920563,0.0865283831954002,-0.959678411483765,-0.519991397857666,0.827259063720703,-0.212723761796951,0.559871435165405,0.827978909015656,0.0315420515835285,0.267451345920563,0.0865283831954002,-0.959678411483765,0.559871435165405,0.827978909015656,0.0315420515835285,0.306308954954147,0.0549785308539867,-0.950343191623688,0.267451345920563,0.0865283831954002,-0.959678411483765,-0.448360502719879,0.888855040073395,-0.0943916887044907,0.559871435165405,0.827978909015656,0.0315420515835285,-0.519991397857666,0.827259063720703,-0.212723761796951,0.535549342632294,0.842702686786652,0.0551300831139088,0.559871435165405,0.827978909015656,0.0315420515835285,-0.448360502719879,0.888855040073395,-0.0943916887044907,0.306308954954147,0.0549785308539867,-0.950343191623688,0.559871435165405,0.827978909015656,0.0315420515835285,0.605605006217957,0.794364988803864,0.047189999371767,0.535549342632294,0.842702686786652,0.0551300831139088,0.605605006217957,0.794364988803864,0.047189999371767,0.559871435165405,0.827978909015656,0.0315420515835285,0.605605006217957,0.794364988803864,0.047189999371767,0.879087328910828,-0.455241620540619,0.141281887888908,0.306308954954147,0.0549785308539867,-0.950343191623688,0.60620528459549,0.795152366161346,0.0157455913722515,0.605605006217957,0.794364988803864,0.047189999371767,0.535549342632294,0.842702686786652,0.0551300831139088,0.943595707416534,-0.33025848865509,0.0235898923128843,0.879087328910828,-0.455241620540619,0.141281887888908,0.605605006217957,0.794364988803864,0.047189999371767,0.605605006217957,0.794364988803864,0.047189999371767,
- 0.60620528459549,0.795152366161346,0.0157455913722515,0.943595707416534,-0.33025848865509,0.0235898923128843,0.943595707416534,-0.33025848865509,0.0235898923128843,0.820093393325806,-0.559871435165405,0.118282705545425,0.879087328910828,-0.455241620540619,0.141281887888908,0.77779346704483,-0.628519952297211,-1.39559464495334e-016,0.879087328910828,-0.455241620540619,0.141281887888908,0.820093393325806,-0.559871435165405,0.118282705545425,0.550635099411011,0.833818972110748,0.0393310822546482,0.60620528459549,0.795152366161346,0.0157455913722515,0.535549342632294,0.842702686786652,0.0551300831139088,-0.424250990152359,0.895640969276428,-0.133560493588448,0.550635099411011,0.833818972110748,0.0393310822546482,0.535549342632294,0.842702686786652,0.0551300831139088,0.550635099411011,0.833818972110748,0.0393310822546482,-0.424250990152359,0.895640969276428,-0.133560493588448,-0.442912757396698,0.893734633922577,-0.0711823999881744,-0.47198760509491,0.881043493747711,-0.0314658395946026,0.550635099411011,0.833818972110748,0.0393310822546482,-0.493544936180115,0.869579136371613,-0.0156680922955275,0.560150146484375,0.828391134738922,1.83939782236502e-016,0.550635099411011,0.833818972110748,0.0393310822546482,-0.47198760509491,0.881043493747711,-0.0314658395946026,0.560150146484375,0.828391134738922,1.83939782236502e-016,0.60620528459549,0.795152366161346,0.0157455913722515,0.550635099411011,0.833818972110748,0.0393310822546482,-0.561286747455597,0.822166502475739,0.0948653668165207,0.560150146484375,0.828391134738922,1.83939782236502e-016,-0.502753913402557,0.864108264446259,0.0235665887594223,0.542349576950073,0.82531464099884,0.157202780246735,0.560150146484375,0.828391134738922,1.83939782236502e-016,-0.561286747455597,0.822166502475739,0.0948653668165207,0.615606188774109,0.781346321105957,0.102601028978825,0.560150146484375,0.828391134738922,1.83939782236502e-016,0.542349576950073,0.82531464099884,0.157202780246735,0.560150146484375,0.828391134738922,1.83939782236502e-016,0.615606188774109,0.781346321105957,0.102601028978825,
- 0.60620528459549,0.795152366161346,0.0157455913722515,0.615606188774109,0.781346321105957,0.102601028978825,0.943595707416534,-0.33025848865509,0.0235898923128843,0.60620528459549,0.795152366161346,0.0157455913722515,0.943595707416534,-0.33025848865509,0.0235898923128843,0.615606188774109,0.781346321105957,0.102601028978825,0.948653638362885,-0.316217869520187,-0.0079054469242692,-0.550993263721466,-0.83436131477356,0.0157426651567221,0.948653638362885,-0.316217869520187,-0.0079054469242692,0.615606188774109,0.781346321105957,0.102601028978825,0.948653638362885,-0.316217869520187,-0.0079054469242692,0.834232032299042,-0.550907909870148,-0.0236103385686874,0.943595707416534,-0.33025848865509,0.0235898923128843,0.834232032299042,-0.550907909870148,-0.0236103385686874,0.948653638362885,-0.316217869520187,-0.0079054469242692,-0.550993263721466,-0.83436131477356,0.0157426651567221,0.834232032299042,-0.550907909870148,-0.0236103385686874,0.820093393325806,-0.559871435165405,0.118282705545425,0.943595707416534,-0.33025848865509,0.0235898923128843,0,-0.999876022338867,-0.0157460793852806,-0.550993263721466,-0.83436131477356,0.0157426651567221,0,-0.0314804539084435,0.999504387378693,0.834232032299042,-0.550907909870148,-0.0236103385686874,-0.605811178684235,-0.794635474681854,-0.0393383875489235,0.820093393325806,-0.559871435165405,0.118282705545425,0.77779346704483,-0.628519952297211,-1.39559464495334e-016,0.820093393325806,-0.559871435165405,0.118282705545425,-0.605811178684235,-0.794635474681854,-0.0393383875489235,0,-0.999876022338867,-0.0157460793852806,-0.590551197528839,-0.803149580955505,-0.078740157186985,-0.550993263721466,-0.83436131477356,0.0157426651567221,-0.590551197528839,-0.803149580955505,-0.078740157186985,0,-0.999876022338867,-0.0157460793852806,0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.559871435165405,-0.827978909015656,0.0315420515835285,0.834232032299042,-0.550907909870148,-0.0236103385686874,-0.550993263721466,-0.83436131477356,0.0157426651567221,-0.550993263721466,-0.83436131477356,0.0157426651567221,
- -0.590551197528839,-0.803149580955505,-0.078740157186985,-0.559871435165405,-0.827978909015656,0.0315420515835285,0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.559871435165405,-0.827978909015656,0.0315420515835285,-0.590551197528839,-0.803149580955505,-0.078740157186985,-0.605811178684235,-0.794635474681854,-0.0393383875489235,0.834232032299042,-0.550907909870148,-0.0236103385686874,-0.559871435165405,-0.827978909015656,0.0315420515835285,0.0157338920980692,-0.999102234840393,0.0393347330391407,-0.605811178684235,-0.794635474681854,-0.0393383875489235,-0.559871435165405,-0.827978909015656,0.0315420515835285,-0.605811178684235,-0.794635474681854,-0.0393383875489235,0.0157338920980692,-0.999102234840393,0.0393347330391407,0.047178328037262,-0.998607933521271,0.023589164018631,-0.605811178684235,-0.794635474681854,-0.0393383875489235,0.047178328037262,-0.998607933521271,0.023589164018631,0.0471550077199936,-0.998114347457886,0.0392958410084248,0.0628190487623215,-0.997252345085144,-0.0392619036138058,-0.605811178684235,-0.794635474681854,-0.0393383875489235,0.0471550077199936,-0.998114347457886,0.0392958410084248,-0.54445606470108,-0.820629477500916,-0.173594698309898,-0.605811178684235,-0.794635474681854,-0.0393383875489235,0.0628190487623215,-0.997252345085144,-0.0392619036138058,-0.605811178684235,-0.794635474681854,-0.0393383875489235,-0.54445606470108,-0.820629477500916,-0.173594698309898,0.77779346704483,-0.628519952297211,-1.39559464495334e-016,0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.54445606470108,-0.820629477500916,-0.173594698309898,0.0628190487623215,-0.997252345085144,-0.0392619036138058,-0.54445606470108,-0.820629477500916,-0.173594698309898,0.268324434757233,-0.0315675809979439,-0.962811231613159,0.77779346704483,-0.628519952297211,-1.39559464495334e-016,0.989064633846283,0.0627977550029755,-0.133445218205452,0.995464503765106,-0.0711046010255814,-0.0632040947675705,0.992864966392517,0.0157597605139017,-0.118198208510876,0.995464503765106,-0.0711046010255814,-0.0632040947675705,
- 0.989064633846283,0.0627977550029755,-0.133445218205452,0.99571305513382,-0.0316099375486374,-0.0869273319840431,0.989064633846283,0.0627977550029755,-0.133445218205452,0.991757214069366,0.0865819826722145,-0.0944530740380287,0.99571305513382,-0.0316099375486374,-0.0869273319840431,0.991757214069366,0.0865819826722145,-0.0944530740380287,0.989064633846283,0.0627977550029755,-0.133445218205452,-0.00788919348269701,0.828365325927734,-0.560132682323456,-0.0236477199941874,0.811905026435852,-0.583310425281525,-0.00788919348269701,0.828365325927734,-0.560132682323456,0.989064633846283,0.0627977550029755,-0.133445218205452,-0.0236477199941874,0.811905026435852,-0.583310425281525,0.989064633846283,0.0627977550029755,-0.133445218205452,0.305865913629532,-0.188225165009499,-0.933283090591431,-0.0236477199941874,0.811905026435852,-0.583310425281525,-0.0628539323806763,0.832814693450928,-0.54997193813324,-0.00788919348269701,0.828365325927734,-0.560132682323456,-0.0549480356276035,0.800671339035034,-0.596578657627106,-0.0236477199941874,0.811905026435852,-0.583310425281525,0.305865913629532,-0.188225165009499,-0.933283090591431,-0.0549480356276035,0.800671339035034,-0.596578657627106,-0.0628539323806763,0.832814693450928,-0.54997193813324,-0.0236477199941874,0.811905026435852,-0.583310425281525,0.305865913629532,-0.188225165009499,-0.933283090591431,-0.212988346815109,-0.362869024276733,-0.907172560691834,-0.0549480356276035,0.800671339035034,-0.596578657627106,-0.189111292362213,0.795843303203583,-0.575213491916656,-0.0628539323806763,0.832814693450928,-0.54997193813324,-0.0549480356276035,0.800671339035034,-0.596578657627106,-0.189111292362213,0.795843303203583,-0.575213491916656,-0.0549480356276035,0.800671339035034,-0.596578657627106,-0.212988346815109,-0.362869024276733,-0.907172560691834,-0.0628539323806763,0.832814693450928,-0.54997193813324,-0.189111292362213,0.795843303203583,-0.575213491916656,-0.180404663085938,0.831430196762085,-0.525526583194733,-0.189111292362213,0.795843303203583,-0.575213491916656,-0.236066848039627,0.826233983039856,-0.511478126049042,
- -0.180404663085938,0.831430196762085,-0.525526583194733,0.0393945127725601,-0.614554405212402,-0.787890195846558,-0.212988346815109,-0.362869024276733,-0.907172560691834,0.305865913629532,-0.188225165009499,-0.933283090591431,-0.236066848039627,0.826233983039856,-0.511478126049042,-0.189111292362213,0.795843303203583,-0.575213491916656,-0.32306507229805,0.780083954334259,-0.535815238952637,-0.212988346815109,-0.362869024276733,-0.907172560691834,-0.32306507229805,0.780083954334259,-0.535815238952637,-0.189111292362213,0.795843303203583,-0.575213491916656,-0.236066848039627,0.826233983039856,-0.511478126049042,-0.32306507229805,0.780083954334259,-0.535815238952637,-0.316069781780243,0.821781396865845,-0.474104672670364,-0.316069781780243,0.821781396865845,-0.474104672670364,-0.911917090415955,0.141504377126694,0.385206371545792,-0.868433177471161,0.0789484679698944,0.489480525255203,-0.911917090415955,0.141504377126694,0.385206371545792,-0.316069781780243,0.821781396865845,-0.474104672670364,-0.32306507229805,0.780083954334259,-0.535815238952637,-0.911917090415955,0.141504377126694,0.385206371545792,-0.32306507229805,0.780083954334259,-0.535815238952637,-0.434027224779129,-0.291981965303421,-0.852271616458893,-0.32306507229805,0.780083954334259,-0.535815238952637,-0.212988346815109,-0.362869024276733,-0.907172560691834,-0.434027224779129,-0.291981965303421,-0.852271616458893,-0.504672884941101,-0.670268654823303,-0.544100403785706,-0.911917090415955,0.141504377126694,0.385206371545792,-0.434027224779129,-0.291981965303421,-0.852271616458893,-0.434027224779129,-0.291981965303421,-0.852271616458893,-0.212988346815109,-0.362869024276733,-0.907172560691834,-0.299064338207245,-0.550907969474792,-0.779141306877136,-0.504672884941101,-0.670268654823303,-0.544100403785706,-0.434027224779129,-0.291981965303421,-0.852271616458893,-0.299064338207245,-0.550907969474792,-0.779141306877136,-0.24460306763649,-0.552329480648041,-0.796932518482208,-0.299064338207245,-0.550907969474792,-0.779141306877136,-0.212988346815109,-0.362869024276733,-0.907172560691834,
- -0.504672884941101,-0.670268654823303,-0.544100403785706,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.870715439319611,-0.0316623784601688,0.490766882896423,-0.212988346815109,-0.362869024276733,-0.907172560691834,-0.173963338136673,-0.553519666194916,-0.814464688301086,-0.24460306763649,-0.552329480648041,-0.796932518482208,-0.212988346815109,-0.362869024276733,-0.907172560691834,0.0393945127725601,-0.614554405212402,-0.787890195846558,-0.173963338136673,-0.553519666194916,-0.814464688301086,0.0157222207635641,-0.998361051082611,0.0550277717411518,-0.504672884941101,-0.670268654823303,-0.544100403785706,0.260213851928711,-0.827953159809113,0.496771901845932,0.110496878623962,-0.820833921432495,0.56037700176239,-0.173963338136673,-0.553519666194916,-0.814464688301086,0.0393945127725601,-0.614554405212402,-0.787890195846558,0.0393945127725601,-0.614554405212402,-0.787890195846558,0.99571305513382,-0.0316099375486374,-0.0869273319840431,0.110496878623962,-0.820833921432495,0.56037700176239,0.110496878623962,-0.820833921432495,0.56037700176239,0.99571305513382,-0.0316099375486374,-0.0869273319840431,0.0549734458327293,-0.99737536907196,0.0471200942993164,0.260213851928711,-0.827953159809113,0.496771901845932,0.30811995267868,-0.805852115154266,0.505632698535919,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.0157222207635641,-0.998361051082611,0.0550277717411518,0.30811995267868,-0.805852115154266,0.505632698535919,0.0549734458327293,-0.99737536907196,0.0471200942993164,0.30811995267868,-0.805852115154266,0.505632698535919,0.260213851928711,-0.827953159809113,0.496771901845932,0.205182880163193,-0.828623235225677,0.520848870277405,0.205182880163193,-0.828623235225677,0.520848870277405,0.0549734458327293,-0.99737536907196,0.0471200942993164,0.30811995267868,-0.805852115154266,0.505632698535919,-0.504672884941101,-0.670268654823303,-0.544100403785706,0.205182880163193,-0.828623235225677,0.520848870277405,0.260213851928711,-0.827953159809113,0.496771901845932,0.205182880163193,-0.828623235225677,0.520848870277405,
- -0.504672884941101,-0.670268654823303,-0.544100403785706,-0.299064338207245,-0.550907969474792,-0.779141306877136,0.205182880163193,-0.828623235225677,0.520848870277405,0.023589164018631,-0.998607933521271,0.047178328037262,0.0549734458327293,-0.99737536907196,0.0471200942993164,-0.299064338207245,-0.550907969474792,-0.779141306877136,0.118396870791912,-0.797205567359924,0.591984331607819,0.205182880163193,-0.828623235225677,0.520848870277405,0.023589164018631,-0.998607933521271,0.047178328037262,0.205182880163193,-0.828623235225677,0.520848870277405,0.118396870791912,-0.797205567359924,0.591984331607819,0.118396870791912,-0.797205567359924,0.591984331607819,-0.299064338207245,-0.550907969474792,-0.779141306877136,-0.24460306763649,-0.552329480648041,-0.796932518482208,0.118396870791912,-0.797205567359924,0.591984331607819,-0.24460306763649,-0.552329480648041,-0.796932518482208,-0.173963338136673,-0.553519666194916,-0.814464688301086,-0.173963338136673,-0.553519666194916,-0.814464688301086,0.110496878623962,-0.820833921432495,0.56037700176239,0.118396870791912,-0.797205567359924,0.591984331607819,0.118396870791912,-0.797205567359924,0.591984331607819,0.110496878623962,-0.820833921432495,0.56037700176239,0.0549734458327293,-0.99737536907196,0.0471200942993164,0.023589164018631,-0.998607933521271,0.047178328037262,0.118396870791912,-0.797205567359924,0.591984331607819,-0.0235796887427568,-0.998206853866577,0.055019274353981,0.0549734458327293,-0.99737536907196,0.0471200942993164,-0.0235796887427568,-0.998206853866577,0.055019274353981,0.118396870791912,-0.797205567359924,0.591984331607819,-0.0391930937767029,-0.885763943195343,0.462478518486023,-0.0471390038728714,-0.997775554656982,0.0471390038728714,-0.993389487266541,-0.0315361730754375,0.110376611351967,-0.0391930937767029,-0.885763943195343,0.462478518486023,0.0237104147672653,-0.948416590690613,0.316138863563538,-0.0471390038728714,-0.997775554656982,0.0471390038728714,0.0706801414489746,-0.887428462505341,0.455494254827499,0.976620197296143,-0.212651163339615,0.0315038748085499,
- 0.0237104147672653,-0.948416590690613,0.316138863563538,0.0237104147672653,-0.948416590690613,0.316138863563538,-0.0391930937767029,-0.885763943195343,0.462478518486023,0.0706801414489746,-0.887428462505341,0.455494254827499,-0.0629901736974716,-0.559037744998932,-0.826746046543121,0.0706801414489746,-0.887428462505341,0.455494254827499,-0.0391930937767029,-0.885763943195343,0.462478518486023,0.0706801414489746,-0.887428462505341,0.455494254827499,-0.0629901736974716,-0.559037744998932,-0.826746046543121,-0.015776913613081,-0.560080409049988,-0.828288018703461,0.992988288402557,0.0945703089237213,-0.070927731692791,0.0706801414489746,-0.887428462505341,0.455494254827499,-0.015776913613081,-0.560080409049988,-0.828288018703461,-0.0706801414489746,-0.36910742521286,-0.926695227622986,-0.0629901736974716,-0.559037744998932,-0.826746046543121,-0.0391930937767029,-0.885763943195343,0.462478518486023,-0.0391930937767029,-0.885763943195343,0.462478518486023,-0.0629122257232666,0.857179045677185,-0.511161804199219,-0.0706801414489746,-0.36910742521286,-0.926695227622986,-0.0629901736974716,-0.559037744998932,-0.826746046543121,-0.0235433597117662,-0.37669375538826,-0.92603874206543,-0.015776913613081,-0.560080409049988,-0.828288018703461,-0.0235433597117662,-0.37669375538826,-0.92603874206543,-0.0629901736974716,-0.559037744998932,-0.826746046543121,-0.0706801414489746,-0.36910742521286,-0.926695227622986,-0.015776913613081,-0.560080409049988,-0.828288018703461,-0.0235433597117662,-0.37669375538826,-0.92603874206543,0.992988288402557,0.0945703089237213,-0.070927731692791,-0.0235433597117662,-0.37669375538826,-0.92603874206543,-0.0706801414489746,-0.36910742521286,-0.926695227622986,0.00787939131259918,0.85885363817215,-0.512160420417786,0.00787939131259918,0.85885363817215,-0.512160420417786,0.992988288402557,0.0945703089237213,-0.070927731692791,-0.0235433597117662,-0.37669375538826,-0.92603874206543,-0.0629122257232666,0.857179045677185,-0.511161804199219,0.00787939131259918,0.85885363817215,-0.512160420417786,-0.0706801414489746,-0.36910742521286,-0.926695227622986,
- 0.00787939131259918,0.85885363817215,-0.512160420417786,0.0314658395946026,0.881043493747711,-0.47198760509491,0.992988288402557,0.0945703089237213,-0.070927731692791,-0.0629122257232666,0.857179045677185,-0.511161804199219,0.0314658395946026,0.881043493747711,-0.47198760509491,0.00787939131259918,0.85885363817215,-0.512160420417786,0.992988288402557,0.0945703089237213,-0.070927731692791,0.0314658395946026,0.881043493747711,-0.47198760509491,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.0314658395946026,0.881043493747711,-0.47198760509491,-0.0629122257232666,0.857179045677185,-0.511161804199219,-0.0865685641765594,0.881425380706787,-0.464322298765183,-0.780083954334259,-0.0630370900034904,-0.622491240501404,-0.733079314231873,0.0551780126988888,-0.677901268005371,-0.741514980792999,0.0236653704196215,-0.670518815517426,-0.733079314231873,0.0551780126988888,-0.677901268005371,-0.780083954334259,-0.0630370900034904,-0.622491240501404,-0.763306438922882,-0.031476553529501,-0.645269334316254,-0.733079314231873,0.0551780126988888,-0.677901268005371,-0.763306438922882,-0.031476553529501,-0.645269334316254,-0.757999837398529,0.0789583101868629,-0.647458136081696,-0.409195184707642,0.834128677845001,0.369849503040314,0.345728695392609,0.832891881465912,-0.432160884141922,-0.757999837398529,0.0789583101868629,-0.647458136081696,0.345728695392609,0.832891881465912,-0.432160884141922,-0.733079314231873,0.0551780126988888,-0.677901268005371,-0.757999837398529,0.0789583101868629,-0.647458136081696,-0.409195184707642,0.834128677845001,0.369849503040314,-0.275753021240234,0.890288293361664,0.36241826415062,0.345728695392609,0.832891881465912,-0.432160884141922,0.345728695392609,0.832891881465912,-0.432160884141922,-0.275753021240234,0.890288293361664,0.36241826415062,0.37781223654747,0.834335386753082,-0.40142548084259,-0.733079314231873,0.0551780126988888,-0.677901268005371,0.345728695392609,0.832891881465912,-0.432160884141922,0.369712173938751,0.818086504936218,-0.440508127212524,0.37781223654747,0.834335386753082,-0.40142548084259,
- 0.369712173938751,0.818086504936218,-0.440508127212524,0.345728695392609,0.832891881465912,-0.432160884141922,-0.733079314231873,0.0551780126988888,-0.677901268005371,0.369712173938751,0.818086504936218,-0.440508127212524,0.180822312831879,-0.0393091961741447,-0.982729911804199,0.369712173938751,0.818086504936218,-0.440508127212524,0.37781223654747,0.834335386753082,-0.40142548084259,0.410788118839264,0.805776715278625,-0.426587671041489,0.410788118839264,0.805776715278625,-0.426587671041489,0.180822312831879,-0.0393091961741447,-0.982729911804199,0.369712173938751,0.818086504936218,-0.440508127212524,0.180822312831879,-0.0393091961741447,-0.982729911804199,0.410788118839264,0.805776715278625,-0.426587671041489,0.621258139610291,-0.408929377794266,-0.668442249298096,0.621258139610291,-0.408929377794266,-0.668442249298096,0.401674419641495,-0.598573684692383,-0.693085312843323,0.180822312831879,-0.0393091961741447,-0.982729911804199,0.37781223654747,0.834335386753082,-0.40142548084259,0.495051145553589,0.793653428554535,-0.353607982397079,0.410788118839264,0.805776715278625,-0.426587671041489,0.7756068110466,-0.316574215888977,-0.546090483665466,0.621258139610291,-0.408929377794266,-0.668442249298096,0.410788118839264,0.805776715278625,-0.426587671041489,0.410788118839264,0.805776715278625,-0.426587671041489,0.495051145553589,0.793653428554535,-0.353607982397079,0.7756068110466,-0.316574215888977,-0.546090483665466,0.401674419641495,-0.598573684692383,-0.693085312843323,0.621258139610291,-0.408929377794266,-0.668442249298096,0.597998976707459,-0.550788521766663,-0.58226215839386,0.7756068110466,-0.316574215888977,-0.546090483665466,0.597998976707459,-0.550788521766663,-0.58226215839386,0.621258139610291,-0.408929377794266,-0.668442249298096,0.597998976707459,-0.550788521766663,-0.58226215839386,-0.434135377407074,-0.820910513401031,0.370988428592682,0.401674419641495,-0.598573684692383,-0.693085312843323,-0.434135377407074,-0.820910513401031,0.370988428592682,-0.763306438922882,-0.031476553529501,-0.645269334316254,
- 0.401674419641495,-0.598573684692383,-0.693085312843323,-0.763306438922882,-0.031476553529501,-0.645269334316254,-0.434135377407074,-0.820910513401031,0.370988428592682,-0.102601043879986,-0.994440853595734,-0.0236771646887064,-0.434135377407074,-0.820910513401031,0.370988428592682,-0.449810028076172,-0.789140403270721,0.418244421482086,-0.102601043879986,-0.994440853595734,-0.0236771646887064,-0.434135377407074,-0.820910513401031,0.370988428592682,0.597998976707459,-0.550788521766663,-0.58226215839386,-0.449810028076172,-0.789140403270721,0.418244421482086,-0.102601043879986,-0.994440853595734,-0.0236771646887064,-0.449810028076172,-0.789140403270721,0.418244421482086,-0.0393091961741447,-0.998453617095947,0.0393091961741447,-0.449810028076172,-0.789140403270721,0.418244421482086,-0.0628675222396851,-0.998021900653839,-2.21605378637211e-016,-0.0393091961741447,-0.998453617095947,0.0393091961741447,0.667102813720703,-0.557227075099945,-0.494440943002701,-0.449810028076172,-0.789140403270721,0.418244421482086,0.597998976707459,-0.550788521766663,-0.58226215839386,0.597998976707459,-0.550788521766663,-0.58226215839386,0.7756068110466,-0.316574215888977,-0.546090483665466,0.667102813720703,-0.557227075099945,-0.494440943002701,-0.458687990903854,-0.830383479595184,0.316336542367935,-0.0628675222396851,-0.998021900653839,-2.21605378637211e-016,-0.449810028076172,-0.789140403270721,0.418244421482086,-0.449810028076172,-0.789140403270721,0.418244421482086,0.667102813720703,-0.557227075099945,-0.494440943002701,-0.458687990903854,-0.830383479595184,0.316336542367935,-0.0628675222396851,-0.998021900653839,-2.21605378637211e-016,-0.458687990903854,-0.830383479595184,0.316336542367935,-0.0628597587347031,-0.997898638248444,0.0157149396836758,0.837846517562866,-0.308264285326004,-0.450540095567703,0.667102813720703,-0.557227075099945,-0.494440943002701,0.7756068110466,-0.316574215888977,-0.546090483665466,-0.0628597587347031,-0.997898638248444,0.0157149396836758,-0.458687990903854,-0.830383479595184,0.316336542367935,-0.512701869010925,-0.804547488689423,0.299733400344849,
- -0.512701869010925,-0.804547488689423,0.299733400344849,-0.015799542888999,-0.995371222496033,0.0947972610592842,-0.0628597587347031,-0.997898638248444,0.0157149396836758,0.747568190097809,-0.535101473331451,-0.393456965684891,-0.458687990903854,-0.830383479595184,0.316336542367935,0.667102813720703,-0.557227075099945,-0.494440943002701,0.667102813720703,-0.557227075099945,-0.494440943002701,0.837846517562866,-0.308264285326004,-0.450540095567703,0.747568190097809,-0.535101473331451,-0.393456965684891,-0.433326154947281,-0.835137724876404,0.338782250881195,-0.512701869010925,-0.804547488689423,0.299733400344849,-0.458687990903854,-0.830383479595184,0.316336542367935,-0.458687990903854,-0.830383479595184,0.316336542367935,0.747568190097809,-0.535101473331451,-0.393456965684891,-0.433326154947281,-0.835137724876404,0.338782250881195,-0.015799542888999,-0.995371222496033,0.0947972610592842,-0.512701869010925,-0.804547488689423,0.299733400344849,-0.433326154947281,-0.835137724876404,0.338782250881195,0.747568190097809,-0.535101473331451,-0.393456965684891,0.837846517562866,-0.308264285326004,-0.450540095567703,-0.433326154947281,-0.835137724876404,0.338782250881195,-0.015799542888999,-0.995371222496033,0.0947972610592842,-0.433326154947281,-0.835137724876404,0.338782250881195,0.440685391426086,-0.0314775295555592,0.897109568119049,-0.433326154947281,-0.835137724876404,0.338782250881195,0.837846517562866,-0.308264285326004,-0.450540095567703,0.54452383518219,0.789164960384369,-0.284099370241165,0.837846517562866,-0.308264285326004,-0.450540095567703,0.7756068110466,-0.316574215888977,-0.546090483665466,0.512685894966125,0.788747549057007,-0.339161425828934,0.512685894966125,0.788747549057007,-0.339161425828934,0.54452383518219,0.789164960384369,-0.284099370241165,0.837846517562866,-0.308264285326004,-0.450540095567703,0.495051145553589,0.793653428554535,-0.353607982397079,0.512685894966125,0.788747549057007,-0.339161425828934,0.7756068110466,-0.316574215888977,-0.546090483665466,0.54452383518219,0.789164960384369,-0.284099370241165,
- 0.512685894966125,0.788747549057007,-0.339161425828934,0.478273272514343,0.823257267475128,-0.305781275033951,0.495051145553589,0.793653428554535,-0.353607982397079,0.478273272514343,0.823257267475128,-0.305781275033951,0.512685894966125,0.788747549057007,-0.339161425828934,0.54452383518219,0.789164960384369,-0.284099370241165,0.478273272514343,0.823257267475128,-0.305781275033951,0.503251016139984,0.833509564399719,-0.228035613894463,0.503251016139984,0.833509564399719,-0.228035613894463,0.478273272514343,0.823257267475128,-0.305781275033951,-0.48764505982399,0.825850546360016,0.283148735761642,-0.447903424501419,0.872232973575592,0.196448862552643,-0.48764505982399,0.825850546360016,0.283148735761642,0.478273272514343,0.823257267475128,-0.305781275033951,0.478273272514343,0.823257267475128,-0.305781275033951,0.495051145553589,0.793653428554535,-0.353607982397079,0.457530498504639,0.828288018703461,-0.323426723480225,0.495051145553589,0.793653428554535,-0.353607982397079,0.37781223654747,0.834335386753082,-0.40142548084259,0.457530498504639,0.828288018703461,-0.323426723480225,0.478273272514343,0.823257267475128,-0.305781275033951,0.457530498504639,0.828288018703461,-0.323426723480225,-0.347622513771057,0.876956760883331,0.331821471452713,-0.354484617710114,0.858640551567078,0.370239496231079,-0.347622513771057,0.876956760883331,0.331821471452713,0.457530498504639,0.828288018703461,-0.323426723480225,-0.385802865028381,0.889708638191223,0.244079366326332,0.457530498504639,0.828288018703461,-0.323426723480225,0.37781223654747,0.834335386753082,-0.40142548084259,0.457530498504639,0.828288018703461,-0.323426723480225,-0.385802865028381,0.889708638191223,0.244079366326332,-0.37072291970253,0.867649376392365,0.331284284591675,-0.377847343683243,-0.826541066169739,0.417206436395645,-0.118209235370159,-0.992957532405853,-0.00788061507046223,-0.876136839389801,-0.0236793737858534,-0.481480598449707,-0.377847343683243,-0.826541066169739,0.417206436395645,-0.00785819720476866,-0.99799108505249,0.0628655776381493,-0.118209235370159,-0.992957532405853,-0.00788061507046223,
- -0.00785819720476866,-0.99799108505249,0.0628655776381493,-0.377847343683243,-0.826541066169739,0.417206436395645,-0.354925364255905,-0.828159153461456,0.433797657489777,-0.354925364255905,-0.828159153461456,0.433797657489777,0.0473145507276058,-0.993605554103851,0.102514855563641,-0.00785819720476866,-0.99799108505249,0.0628655776381493,0.0473145507276058,-0.993605554103851,0.102514855563641,-0.354925364255905,-0.828159153461456,0.433797657489777,-0.228615924715996,-0.827747344970703,0.512414991855621,0.409005284309387,-0.534853041172028,-0.739355742931366,-0.354925364255905,-0.828159153461456,0.433797657489777,-0.377847343683243,-0.826541066169739,0.417206436395645,0.472192168235779,-0.306924909353256,-0.826336264610291,0.409005284309387,-0.534853041172028,-0.739355742931366,-0.377847343683243,-0.826541066169739,0.417206436395645,-0.354925364255905,-0.828159153461456,0.433797657489777,0.409005284309387,-0.534853041172028,-0.739355742931366,0.473322242498398,-0.552209198474884,-0.686317145824432,0.472192168235779,-0.306924909353256,-0.826336264610291,0.473322242498398,-0.552209198474884,-0.686317145824432,0.409005284309387,-0.534853041172028,-0.739355742931366,0.473322242498398,-0.552209198474884,-0.686317145824432,-0.228615924715996,-0.827747344970703,0.512414991855621,-0.354925364255905,-0.828159153461456,0.433797657489777,0.472192168235779,-0.306924909353256,-0.826336264610291,-0.377847343683243,-0.826541066169739,0.417206436395645,0.323759347200394,0.78965699672699,-0.521173596382141,-0.228615924715996,-0.827747344970703,0.512414991855621,0.473322242498398,-0.552209198474884,-0.686317145824432,0.566244959831238,-0.550515949726105,-0.613432049751282,0.473322242498398,-0.552209198474884,-0.686317145824432,0.472192168235779,-0.306924909353256,-0.826336264610291,0.550226747989655,-0.322275668382645,-0.770317435264587,0.550226747989655,-0.322275668382645,-0.770317435264587,0.566244959831238,-0.550515949726105,-0.613432049751282,0.473322242498398,-0.552209198474884,-0.686317145824432,0.550226747989655,-0.322275668382645,-0.770317435264587,
- 0.472192168235779,-0.306924909353256,-0.826336264610291,0.323759347200394,0.78965699672699,-0.521173596382141,0.630488336086273,-0.315244168043137,-0.709299385547638,-0.228615924715996,-0.827747344970703,0.512414991855621,0.566244959831238,-0.550515949726105,-0.613432049751282,0.566244959831238,-0.550515949726105,-0.613432049751282,0.550226747989655,-0.322275668382645,-0.770317435264587,0.630488336086273,-0.315244168043137,-0.709299385547638,-0.228615924715996,-0.827747344970703,0.512414991855621,0.630488336086273,-0.315244168043137,-0.709299385547638,0.386378139257431,0.796412110328674,-0.465230822563171,0.630488336086273,-0.315244168043137,-0.709299385547638,0.550226747989655,-0.322275668382645,-0.770317435264587,0.386378139257431,0.796412110328674,-0.465230822563171,0.323759347200394,0.78965699672699,-0.521173596382141,0.386378139257431,0.796412110328674,-0.465230822563171,0.550226747989655,-0.322275668382645,-0.770317435264587,0.305781275033951,0.823257267475128,-0.478273272514343,0.323759347200394,0.78965699672699,-0.521173596382141,-0.832275390625,0.149181440472603,-0.533912479877472,0.329485267400742,0.831558108329773,-0.447158604860306,0.323759347200394,0.78965699672699,-0.521173596382141,0.305781275033951,0.823257267475128,-0.478273272514343,0.329485267400742,0.831558108329773,-0.447158604860306,0.386378139257431,0.796412110328674,-0.465230822563171,0.323759347200394,0.78965699672699,-0.521173596382141,0.386378139257431,0.796412110328674,-0.465230822563171,0.329485267400742,0.831558108329773,-0.447158604860306,0.346800893545151,0.82759302854538,-0.441382944583893,0.386378139257431,0.796412110328674,-0.465230822563171,0.346800893545151,0.82759302854538,-0.441382944583893,0.826233983039856,0.26754242181778,0.495740354061127,0.974958479404449,-0.220151916146278,-0.0314502716064453,0.0471856221556664,-0.88866251707077,-0.456127673387527,-0.0157558489590883,-0.961106777191162,-0.275727331638336,-0.0550090856850147,-0.880145370960236,-0.471506476402283,-0.0157558489590883,-0.961106777191162,-0.275727331638336,0.0471856221556664,-0.88866251707077,-0.456127673387527,
- -0.0471390038728714,-0.997775554656982,0.0471390038728714,-0.0157558489590883,-0.961106777191162,-0.275727331638336,-0.0550090856850147,-0.880145370960236,-0.471506476402283,-0.0944325849413872,-0.629550576210022,0.771199464797974,-0.0471390038728714,-0.997775554656982,0.0471390038728714,-0.0550090856850147,-0.880145370960236,-0.471506476402283,0.0471856221556664,-0.88866251707077,-0.456127673387527,-0.0944325849413872,-0.629550576210022,0.771199464797974,-0.0550090856850147,-0.880145370960236,-0.471506476402283,-0.0471390038728714,-0.997775554656982,0.0471390038728714,-0.0944325849413872,-0.629550576210022,0.771199464797974,-0.993389487266541,-0.0315361730754375,0.110376611351967,-0.0944325849413872,-0.629550576210022,0.771199464797974,0.0471856221556664,-0.88866251707077,-0.456127673387527,0.0788110420107841,-0.567439496517181,0.819634854793549,0.0471856221556664,-0.88866251707077,-0.456127673387527,0.992402911186218,0.0945145636796951,0.0787621363997459,0.0788110420107841,-0.567439496517181,0.819634854793549,0.0788281783461571,-0.378375262022018,0.922289669513702,-0.0944325849413872,-0.629550576210022,0.771199464797974,0.0788110420107841,-0.567439496517181,0.819634854793549,0.0788110420107841,-0.567439496517181,0.819634854793549,0.992402911186218,0.0945145636796951,0.0787621363997459,0.0788281783461571,-0.378375262022018,0.922289669513702,0.0788281783461571,-0.378375262022018,0.922289669513702,0.0315675809979439,-0.363027215003967,0.931243658065796,-0.0944325849413872,-0.629550576210022,0.771199464797974,-0.0944325849413872,-0.629550576210022,0.771199464797974,0.0315675809979439,-0.363027215003967,0.931243658065796,0,0.858880341053009,0.512176334857941,0.0631646737456322,0.860618710517883,0.505317389965057,0.0315675809979439,-0.363027215003967,0.931243658065796,0.0788281783461571,-0.378375262022018,0.922289669513702,0.0631646737456322,0.860618710517883,0.505317389965057,0,0.858880341053009,0.512176334857941,0.0315675809979439,-0.363027215003967,0.931243658065796,0.992402911186218,0.0945145636796951,0.0787621363997459,
- 0.0631646737456322,0.860618710517883,0.505317389965057,0.0788281783461571,-0.378375262022018,0.922289669513702,0,0.858880341053009,0.512176334857941,0.0631646737456322,0.860618710517883,0.505317389965057,0.0943916887044907,0.888855040073395,0.448360502719879,0.992402911186218,0.0945145636796951,0.0787621363997459,0.0943916887044907,0.888855040073395,0.448360502719879,0.0631646737456322,0.860618710517883,0.505317389965057,0,0.858880341053009,0.512176334857941,0.0943916887044907,0.888855040073395,0.448360502719879,-0.0393249988555908,0.904474973678589,0.424710005521774,0.992402911186218,0.0945145636796951,0.0787621363997459,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.0943916887044907,0.888855040073395,0.448360502719879,0,-0.999876022338867,-0.0157460793852806,-0.464898526668549,-0.882519245147705,0.0709167197346687,0,-0.993883728981018,0.110431522130966,0,-0.0706888660788536,-0.997498512268066,-0.455494254827499,-0.887428462505341,-0.0706801414489746,0,-0.999876022338867,-0.0157460793852806,-0.464898526668549,-0.882519245147705,0.0709167197346687,0,-0.999876022338867,-0.0157460793852806,-0.455494254827499,-0.887428462505341,-0.0706801414489746,-0.455494254827499,-0.887428462505341,-0.0706801414489746,0.824500024318695,-0.56537139415741,0.0235571414232254,-0.464898526668549,-0.882519245147705,0.0709167197346687,0.824500024318695,-0.56537139415741,0.0235571414232254,-0.455494254827499,-0.887428462505341,-0.0706801414489746,0.82432222366333,-0.565249443054199,-0.0314027518033981,-0.455494254827499,-0.887428462505341,-0.0706801414489746,0.0632040947675705,0.0711046010255814,-0.995464503765106,0.82432222366333,-0.565249443054199,-0.0314027518033981,0.931446731090546,-0.363106369972229,0.0236808490008116,-0.464898526668549,-0.882519245147705,0.0709167197346687,0.824500024318695,-0.56537139415741,0.0235571414232254,-0.464898526668549,-0.882519245147705,0.0709167197346687,0.931446731090546,-0.363106369972229,0.0236808490008116,0.51203328371048,0.858640432357788,0.0236323066055775,0.92603874206543,-0.37669375538826,-0.0235433597117662,
- 0.824500024318695,-0.56537139415741,0.0235571414232254,0.82432222366333,-0.565249443054199,-0.0314027518033981,0.824500024318695,-0.56537139415741,0.0235571414232254,0.92603874206543,-0.37669375538826,-0.0235433597117662,0.931446731090546,-0.363106369972229,0.0236808490008116,0.92603874206543,-0.37669375538826,-0.0235433597117662,0.82432222366333,-0.565249443054199,-0.0314027518033981,0.0632040947675705,0.0711046010255814,-0.995464503765106,0.931446731090546,-0.363106369972229,0.0236808490008116,0.92603874206543,-0.37669375538826,-0.0235433597117662,0.51203328371048,0.858640432357788,-0.0236323066055775,0.0632040947675705,0.0711046010255814,-0.995464503765106,0.51203328371048,0.858640432357788,-0.0236323066055775,0.92603874206543,-0.37669375538826,-0.0235433597117662,0.51203328371048,0.858640432357788,-0.0236323066055775,0.51203328371048,0.858640432357788,0.0236323066055775,0.931446731090546,-0.363106369972229,0.0236808490008116,0.51203328371048,0.858640432357788,-0.0236323066055775,0.0632040947675705,0.0711046010255814,-0.995464503765106,0.417919278144836,0.90680593252182,-0.0551968850195408,0.417919278144836,0.90680593252182,-0.0551968850195408,0.51203328371048,0.858640432357788,0.0236323066055775,0.51203328371048,0.858640432357788,-0.0236323066055775,0.417919278144836,0.90680593252182,-0.0551968850195408,0.0632040947675705,0.0711046010255814,-0.995464503765106,-0.00786183960735798,0.0550328753888607,-0.998453617095947,0.51203328371048,0.858640432357788,0.0236323066055775,0.417919278144836,0.90680593252182,-0.0551968850195408,0.466013818979263,0.884636402130127,0.0157970786094666,0.0158108938485384,0.0869599208235741,0.996086359024048,0.51203328371048,0.858640432357788,0.0236323066055775,0.466013818979263,0.884636402130127,0.0157970786094666,0.466013818979263,0.884636402130127,0.0157970786094666,0.417919278144836,0.90680593252182,-0.0551968850195408,-0.306687593460083,0.951517939567566,0.0235913544893265,0.464898526668549,-0.882519245147705,0.0709167197346687,0,-0.999876022338867,-0.0157460793852806,0,-0.993883728981018,0.110431522130966,
- 0,-0.999876022338867,-0.0157460793852806,0.458688020706177,-0.885742366313934,-0.0711757242679596,0,-0.0706888660788536,-0.997498512268066,0,-0.999876022338867,-0.0157460793852806,0.464898526668549,-0.882519245147705,0.0709167197346687,0.458688020706177,-0.885742366313934,-0.0711757242679596,-0.824500024318695,-0.56537139415741,0.0235571414232254,0.458688020706177,-0.885742366313934,-0.0711757242679596,0.464898526668549,-0.882519245147705,0.0709167197346687,0.458688020706177,-0.885742366313934,-0.0711757242679596,-0.824500024318695,-0.56537139415741,0.0235571414232254,-0.82432222366333,-0.565249443054199,-0.0314027518033981,-0.82432222366333,-0.565249443054199,-0.0314027518033981,-0.0787621363997459,0.0945145636796951,-0.992402911186218,0.458688020706177,-0.885742366313934,-0.0711757242679596,-0.931446731090546,-0.363106369972229,0.0236808490008116,-0.824500024318695,-0.56537139415741,0.0235571414232254,0.464898526668549,-0.882519245147705,0.0709167197346687,0.464898526668549,-0.882519245147705,0.0709167197346687,-0.51203328371048,0.858640432357788,0.0236323066055775,-0.931446731090546,-0.363106369972229,0.0236808490008116,-0.824500024318695,-0.56537139415741,0.0235571414232254,-0.92603874206543,-0.37669375538826,-0.0235433597117662,-0.82432222366333,-0.565249443054199,-0.0314027518033981,-0.931446731090546,-0.363106369972229,0.0236808490008116,-0.92603874206543,-0.37669375538826,-0.0235433597117662,-0.824500024318695,-0.56537139415741,0.0235571414232254,-0.0787621363997459,0.0945145636796951,-0.992402911186218,-0.82432222366333,-0.565249443054199,-0.0314027518033981,-0.92603874206543,-0.37669375538826,-0.0235433597117662,-0.931446731090546,-0.363106369972229,0.0236808490008116,-0.511779308319092,0.858214497566223,-0.039367638528347,-0.92603874206543,-0.37669375538826,-0.0235433597117662,-0.511779308319092,0.858214497566223,-0.039367638528347,-0.0787621363997459,0.0945145636796951,-0.992402911186218,-0.92603874206543,-0.37669375538826,-0.0235433597117662,-0.51203328371048,0.858640432357788,0.0236323066055775,-0.511779308319092,0.858214497566223,-0.039367638528347,
- -0.931446731090546,-0.363106369972229,0.0236808490008116,-0.0787621363997459,0.0945145636796951,-0.992402911186218,-0.511779308319092,0.858214497566223,-0.039367638528347,-0.465144068002701,0.882985353469849,-0.0630703791975975,-0.51203328371048,0.858640432357788,0.0236323066055775,-0.465144068002701,0.882985353469849,-0.0630703791975975,-0.511779308319092,0.858214497566223,-0.039367638528347,-0.00786183960735798,0.0550328753888607,-0.998453617095947,-0.0787621363997459,0.0945145636796951,-0.992402911186218,-0.465144068002701,0.882985353469849,-0.0630703791975975,-0.465144068002701,0.882985353469849,-0.0630703791975975,-0.51203328371048,0.858640432357788,0.0236323066055775,-0.465549409389496,0.883754789829254,0.0473440103232861,0.299612253904343,-0.954028487205505,-0.00788453221321106,0.458688020706177,-0.885742366313934,-0.0711757242679596,-0.00789435394108295,-0.994688630104065,-0.102626599371433,0.0315038748085499,-0.212651163339615,0.976620197296143,0.455733239650726,-0.887894093990326,0.0628597587347031,0.299612253904343,-0.954028487205505,-0.00788453221321106,0.458688020706177,-0.885742366313934,-0.0711757242679596,0.299612253904343,-0.954028487205505,-0.00788453221321106,0.455733239650726,-0.887894093990326,0.0628597587347031,0.455733239650726,-0.887894093990326,0.0628597587347031,-0.824703454971313,-0.565510869026184,-0.00785431824624538,0.458688020706177,-0.885742366313934,-0.0711757242679596,-0.824703454971313,-0.565510869026184,-0.00785431824624538,0.455733239650726,-0.887894093990326,0.0628597587347031,-0.821268796920776,-0.568570673465729,0.0473808944225311,-0.0787621363997459,0.0945145636796951,0.992402911186218,-0.821268796920776,-0.568570673465729,0.0473808944225311,0.455733239650726,-0.887894093990326,0.0628597587347031,-0.824703454971313,-0.565510869026184,-0.00785431824624538,-0.931678950786591,-0.363196909427643,-0.00789558421820402,0.458688020706177,-0.885742366313934,-0.0711757242679596,-0.511399030685425,0.857576906681061,-0.0550737455487251,0.458688020706177,-0.885742366313934,-0.0711757242679596,
- -0.931678950786591,-0.363196909427643,-0.00789558421820402,-0.824703454971313,-0.565510869026184,-0.00785431824624538,-0.821268796920776,-0.568570673465729,0.0473808944225311,-0.925582826137543,-0.376508295536041,0.0392196103930473,-0.925582826137543,-0.376508295536041,0.0392196103930473,-0.931678950786591,-0.363196909427643,-0.00789558421820402,-0.824703454971313,-0.565510869026184,-0.00785431824624538,-0.925582826137543,-0.376508295536041,0.0392196103930473,-0.821268796920776,-0.568570673465729,0.0473808944225311,-0.0787621363997459,0.0945145636796951,0.992402911186218,-0.931678950786591,-0.363196909427643,-0.00789558421820402,-0.505932867527008,0.861666917800903,0.0395260043442249,-0.511399030685425,0.857576906681061,-0.0550737455487251,-0.505932867527008,0.861666917800903,0.0395260043442249,-0.931678950786591,-0.363196909427643,-0.00789558421820402,-0.925582826137543,-0.376508295536041,0.0392196103930473,-0.0787621363997459,0.0945145636796951,0.992402911186218,-0.505932867527008,0.861666917800903,0.0395260043442249,-0.925582826137543,-0.376508295536041,0.0392196103930473,-0.505932867527008,0.861666917800903,0.0395260043442249,-0.434311300516129,0.90020889043808,-0.0315862745046616,-0.511399030685425,0.857576906681061,-0.0550737455487251,-0.434311300516129,0.90020889043808,-0.0315862745046616,-0.505932867527008,0.861666917800903,0.0395260043442249,-0.4420425593853,0.891978740692139,0.0947234109044075,-0.4420425593853,0.891978740692139,0.0947234109044075,-0.505932867527008,0.861666917800903,0.0395260043442249,-0.0787621363997459,0.0945145636796951,0.992402911186218,-0.0787621363997459,0.0945145636796951,0.992402911186218,0,0.0784971937537193,0.996914327144623,-0.4420425593853,0.891978740692139,0.0947234109044075,-0.465361028909683,-0.883397221565247,-0.0552123263478279,-0.29962158203125,-0.954058229923248,-2.11843482738782e-016,0.0157872345298529,-0.994595766067505,-0.102617025375366,-0.455227613449097,-0.886908948421478,0.0784875229001045,-0.0315038748085499,-0.212651163339615,0.976620197296143,-0.29962158203125,-0.954058229923248,-2.11843482738782e-016,
- -0.29962158203125,-0.954058229923248,-2.11843482738782e-016,-0.465361028909683,-0.883397221565247,-0.0552123263478279,-0.455227613449097,-0.886908948421478,0.0784875229001045,0.821781516075134,-0.568925619125366,-0.0316069833934307,-0.455227613449097,-0.886908948421478,0.0784875229001045,-0.465361028909683,-0.883397221565247,-0.0552123263478279,-0.455227613449097,-0.886908948421478,0.0784875229001045,0.821781516075134,-0.568925619125366,-0.0316069833934307,0.824500024318695,-0.56537139415741,0.0235571414232254,0.824500024318695,-0.56537139415741,0.0235571414232254,0.0787621363997459,0.0945145636796951,0.992402911186218,-0.455227613449097,-0.886908948421478,0.0784875229001045,0.931243658065796,-0.363027215003967,-0.0315675809979439,0.821781516075134,-0.568925619125366,-0.0316069833934307,-0.465361028909683,-0.883397221565247,-0.0552123263478279,0.931243658065796,-0.363027215003967,-0.0315675809979439,-0.465361028909683,-0.883397221565247,-0.0552123263478279,0.511779308319092,0.858214497566223,-0.039367638528347,0.824500024318695,-0.56537139415741,0.0235571414232254,0.821781516075134,-0.568925619125366,-0.0316069833934307,0.926181256771088,-0.376751720905304,0.0156979877501726,0.926181256771088,-0.376751720905304,0.0156979877501726,0.821781516075134,-0.568925619125366,-0.0316069833934307,0.931243658065796,-0.363027215003967,-0.0315675809979439,0.824500024318695,-0.56537139415741,0.0235571414232254,0.926181256771088,-0.376751720905304,0.0156979877501726,0.0787621363997459,0.0945145636796951,0.992402911186218,0.926181256771088,-0.376751720905304,0.0156979877501726,0.931243658065796,-0.363027215003967,-0.0315675809979439,0.51203328371048,0.858640432357788,0.0236323066055775,0.51203328371048,0.858640432357788,0.0236323066055775,0.0787621363997459,0.0945145636796951,0.992402911186218,0.926181256771088,-0.376751720905304,0.0156979877501726,0.51203328371048,0.858640432357788,0.0236323066055775,0.931243658065796,-0.363027215003967,-0.0315675809979439,0.511779308319092,0.858214497566223,-0.039367638528347,0.51203328371048,0.858640432357788,0.0236323066055775,
- 0.465361028909683,0.883397221565247,0.0552123263478279,0.0787621363997459,0.0945145636796951,0.992402911186218,0.511779308319092,0.858214497566223,-0.039367638528347,0.465361028909683,0.883397221565247,0.0552123263478279,0.51203328371048,0.858640432357788,0.0236323066055775,0.0787621363997459,0.0945145636796951,0.992402911186218,0.465361028909683,0.883397221565247,0.0552123263478279,0,0.0784971937537193,0.996914327144623,0.465361028909683,0.883397221565247,0.0552123263478279,0.511779308319092,0.858214497566223,-0.039367638528347,0.465144068002701,0.882985353469849,-0.0630703791975975,0.759162127971649,0,0.650901556015015,0.758694052696228,0,0.651447117328644,0.657942891120911,0,0.753067910671234,0.68929123878479,0,0.724484324455261,0.815363585948944,0.000203978081117384,0.578949153423309,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.758694052696228,0,0.651447117328644,0.759162127971649,0,0.650901556015015,0.994202733039856,0,0.107521325349808,0.994028091430664,0,0.109125144779682,0.969964504241943,0,0.243246480822563,0.978242456912994,0,0.207464963197708,0.999116003513336,0,0.0420385412871838,0.999138176441193,0,0.0415077432990074,0.994028091430664,0,0.109125144779682,0.994202733039856,0,0.107521325349808,-0.998952269554138,0,-0.0457649640738964,-0.998975992202759,0,-0.045242864638567,-0.999997913837433,0,0.00207085814327002,-1,0,0,-0.993864893913269,0,-0.110600769519806,-0.993711411952972,0,-0.111971452832222,-0.998975992202759,0,-0.045242864638567,-0.998952269554138,0,-0.0457649640738964,-0.815428137779236,-0.000247727119131014,-0.578858315944672,-0.816269874572754,-9.99844269244932e-005,-0.577670753002167,-0.88954085111618,-0.000179742099135183,-0.456855624914169,-0.869737386703491,-0.000787807512097061,-0.493514180183411,-0.759107768535614,0,-0.650964975357056,-0.758694767951965,0,-0.651446282863617,-0.816269874572754,-9.99844269244932e-005,-0.577670753002167,-0.815428137779236,-0.000247727119131014,-0.578858315944672,0.570068299770355,0,0.821597278118134,0.570078909397125,0,0.821589887142181,0.657942891120911,0,0.753067910671234,
- 0.64862722158432,0,0.761106252670288,0.758694052696228,0,0.651447117328644,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.816616237163544,0,0.577181100845337,0.758598387241364,0,0.651558637619019,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.889433443546295,0.000153677698108368,0.457064658403397,0.895704209804535,0,0.444650411605835,0.816616237163544,0,0.577181100845337,0.935212850570679,0,0.35408616065979,0.935240864753723,0,0.354012072086334,0.969964504241943,0,0.243246480822563,0.966652631759644,0,0.256091266870499,0.994028091430664,0,0.109125144779682,0.999138176441193,0,0.0415077432990074,0.999140977859497,0,0.0414425767958164,0.994007647037506,0,0.109310165047646,0.999987542629242,0,-0.00497627584263682,0.999996423721313,0,-0.00267194118350744,0.999997913837433,0,-0.00207085814327002,0.999987661838531,0,-0.00497627630829811,0.0396962463855743,0.00833303481340408,0.999176979064941,-6.62899779513282e-008,0.0199557580053806,0.999800860881805,-0.0396945923566818,0.0083331735804677,0.999177098274231,-0.0488835908472538,-0.025384534150362,0.998481810092926,0.0488859862089157,-0.0253825709223747,0.998481810092926,0.600270390510559,0.798883855342865,0.0382104516029358,0.600267112255096,0.798886179924011,0.0382137224078178,0.599908232688904,0.79913854598999,0.0385721549391747,0.599908292293549,0.799138426780701,0.0385721512138844,0.599511325359344,0.798778295516968,0.0503924489021301,0.599509835243225,0.798778176307678,0.0504114665091038,0.600267112255096,0.798886179924011,0.0382137224078178,0.600270390510559,0.798883855342865,0.0382104516029358,-0.00300827738828957,0.999994993209839,-0.00106222706381232,-0.00295564811676741,0.999994933605194,-0.00120286853052676,0.0191819090396166,0.997993469238281,-0.0603412315249443,0.0191819071769714,0.997993528842926,-0.060341227799654,0.49062842130661,0.798364996910095,0.349137872457504,0.490734040737152,0.798370063304901,0.348977416753769,0.500530481338501,0.798721969127655,0.33393469452858,0.500530481338501,0.798721969127655,0.33393469452858,0.464315116405487,0.799514770507813,0.381034851074219,
- 0.463743716478348,0.799538969993591,0.381679534912109,0.490734040737152,0.798370063304901,0.348977416753769,0.49062842130661,0.798364996910095,0.349137872457504,0.0007889315020293,0.999998986721039,0.00111681316047907,-0.0197752173990011,0.999686717987061,0.0153415435925126,-0.0197752173990011,0.999686777591705,0.0153415445238352,0.000770368438679725,0.999999105930328,0.0011296549346298,0.895704209804535,0,0.444650411605835,0.889433443546295,0.000153677698108368,0.457064658403397,0.935240864753723,0,0.354012072086334,0.935212850570679,0,0.35408616065979,-0.0235660821199417,0.998268783092499,0.0538886040449142,-0.0235660877078772,0.998268902301788,0.0538886114954948,-0.00295564811676741,0.999994933605194,-0.00120286853052676,-0.00300827738828957,0.999994993209839,-0.00106222706381232,0.254655420780182,5.76811544306111e-007,-0.967031896114349,0.254655420780182,5.76811544306111e-007,-0.967031896114349,0.254655420780182,5.76811544306111e-007,-0.967031896114349,0.254655420780182,5.76811601149529e-007,-0.967031896114349,0.25465539097786,5.76811601149529e-007,-0.967031896114349,-0.502829432487488,0.864118635654449,-0.0214853715151548,-0.502829432487488,0.864118576049805,-0.0214853696525097,-0.502829432487488,0.864118576049805,-0.0214853696525097,-0.502829432487488,0.864118576049805,-0.0214853696525097,0.755458950996399,-1.80010988515278e-006,-0.655196070671082,0.755458950996399,-1.80010988515278e-006,-0.655196070671082,0.755458950996399,-1.80011011252645e-006,-0.655196070671082,0.755458950996399,-1.80010999883962e-006,-0.655196011066437,0.755458950996399,-1.80010988515278e-006,-0.655196070671082,-0.689316153526306,0,-0.724460661411285,-0.65801340341568,0,-0.753006160259247,-0.758694767951965,0,-0.651446282863617,-0.759107768535614,0,-0.650964975357056,0.64862722158432,0,0.761106252670288,0.657942891120911,0,0.753067910671234,0.758694052696228,0,0.651447117328644,0.758598387241364,0,0.651558637619019,0.414106845855713,0.799429059028625,0.435234099626541,0.414106845855713,0.799429059028625,0.435234069824219,0.463743716478348,0.799538969993591,0.381679534912109,
- 0.464315116405487,0.799514770507813,0.381034851074219,-0.978251516819,0,-0.207422360777855,-0.969923675060272,0,-0.243409469723701,-0.993711411952972,0,-0.111971452832222,-0.993864893913269,0,-0.110600769519806,0.966652631759644,0,0.256091266870499,0.969964504241943,0,0.243246480822563,0.994028091430664,0,0.109125144779682,0.994007647037506,0,0.109310165047646,0.597263395786285,0.798420369625092,0.0761664658784866,0.597263395786285,0.798420369625092,0.0761664658784866,0.599509835243225,0.798778176307678,0.0504114665091038,0.599511325359344,0.798778295516968,0.0503924489021301,-0.452667385339737,0.0264136977493763,0.891288101673126,-0.452667415142059,0.0264136977493763,0.891288161277771,-0.452667474746704,0.0264137014746666,0.891288101673126,-0.452667415142059,0.0264137014746666,0.891288161277771,-0.452667444944382,0.0264136977493763,0.891288161277771,0.86971652507782,0.000650221132673323,0.493551164865494,0.889433443546295,0.000153677698108368,0.457064658403397,0.816264033317566,8.25307724880986e-005,0.577679038047791,0.815363585948944,0.000203978081117384,0.578949153423309,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0.999997913837433,0,-0.00207085814327002,0.999138176441193,0,0.0415077432990074,0.999116003513336,0,0.0420385412871838,0.999997913837433,0,-0.00207085814327002,0.999996423721313,0,-0.00267194118350744,0.999140977859497,0,0.0414425767958164,0.999138176441193,0,0.0415077432990074,0.254351645708084,0.00266888877376914,0.967108190059662,0.250153958797455,0.000926364969927818,0.968205630779266,0.115299224853516,-0.000712047913111746,0.993330597877502,0.158377110958099,-0.00208919169381261,0.98737645149231,0.345395386219025,0.00319078355096281,0.938451886177063,0.345487534999847,0.00119428080506623,0.938422560691834,0.250153958797455,0.000926364969927818,0.968205630779266,0.254351645708084,0.00266888877376914,0.967108190059662,-0.345312386751175,-0.00385635253041983,-0.938479840755463,-0.345570981502533,-0.00143641396425664,-0.938391447067261,-0.472307950258255,0.000197421119082719,-0.881433546543121,-0.434893041849136,0.000823090493213385,-0.900481760501862,
- -0.255005270242691,-0.00326239434070885,-0.966934144496918,-0.249926954507828,-0.00109866715501994,-0.968264102935791,-0.345570981502533,-0.00143641396425664,-0.938391447067261,-0.345312386751175,-0.00385635253041983,-0.938479840755463,0.052223589271307,-0.00041367849917151,0.998635292053223,0.0522235855460167,-0.000413678440963849,0.998635292053223,0.052223589271307,-0.000413678528275341,0.998635351657867,0.115299224853516,-0.000712047913111746,0.993330597877502,0.100485630333424,-0.000217899942072108,0.994938492774963,0.250153958797455,0.000926364969927818,0.968205630779266,0.345487534999847,0.00119428080506623,0.938422560691834,0.343683123588562,0,0.939085721969604,0.251983672380447,0,0.967731535434723,0.570068299770355,0,0.821597278118134,0.483616948127747,0,0.875279784202576,0.472374826669693,-0.000163937860634178,0.881397783756256,0.570078909397125,0,0.821589887142181,0.200398579239845,0.799061000347137,0.566870391368866,0.200524315237999,0.799062848091125,0.566823184490204,0.234595343470573,0.799049556255341,0.553610801696777,0.234595343470573,0.799049556255341,0.553610742092133,0.148817047476768,0.799552381038666,0.581867158412933,0.148127406835556,0.799563348293304,0.582028150558472,0.200524315237999,0.799062848091125,0.566823184490204,0.200398579239845,0.799061000347137,0.566870391368866,0.06433966755867,0.854067385196686,0.516167998313904,0.06433966755867,0.854067265987396,0.516167998313904,0.06433966755867,0.854067385196686,0.516167998313904,0.0643396750092506,0.854067325592041,0.516168057918549,0.994403183460236,-1.65435292132088e-008,-0.10565247386694,0.994403123855591,-1.65435256604951e-008,-0.105652458965778,0.994403064250946,-1.65435274368519e-008,-0.105652466416359,0.994403123855591,-1.65435274368519e-008,-0.10565247386694,0.994403123855591,-1.65435274368519e-008,-0.105652466416359,0.994403183460236,-1.65435292132088e-008,-0.10565247386694,0.0218806229531765,0.999669790267944,-0.013473910279572,0.0218806229531765,0.999669849872589,-0.0134739112108946,0.0007889315020293,0.999998986721039,0.00111681316047907,
- 0.000770368438679725,0.999999105930328,0.0011296549346298,-0.158378809690475,0.00251724408008158,-0.987375199794769,-0.115692459046841,0.000863317458424717,-0.993284702301025,-0.249926954507828,-0.00109866715501994,-0.968264102935791,-0.255005270242691,-0.00326239434070885,-0.966934144496918,0.100485630333424,-0.000217899942072108,0.994938492774963,0.115299224853516,-0.000712047913111746,0.993330597877502,0.250153958797455,0.000926364969927818,0.968205630779266,0.251983672380447,0,0.967731535434723,0.0974698811769485,0.799271821975708,0.593012928962708,0.097469873726368,0.799271702766418,0.593012869358063,0.148127406835556,0.799563348293304,0.582028150558472,0.148817047476768,0.799552381038666,0.581867158412933,-0.878193020820618,2.05982792067516e-006,0.478306442499161,-0.878193020820618,2.05982814804884e-006,0.478306472301483,-0.878193080425262,2.05982792067516e-006,0.478306472301483,-0.878192961215973,2.05982792067516e-006,0.478306412696838,-0.878192961215973,2.05982792067516e-006,0.478306412696838,0.434882491827011,-0.000684315513353795,0.900487005710602,0.472374826669693,-0.000163937860634178,0.881397783756256,0.345487534999847,0.00119428080506623,0.938422560691834,0.345395386219025,0.00319078355096281,0.938451886177063,0.472374826669693,-0.000163937860634178,0.881397783756256,0.483616948127747,0,0.875279784202576,0.343683123588562,0,0.939085721969604,0.345487534999847,0.00119428080506623,0.938422560691834,-0.448701143264771,0.798982441425323,-0.400367796421051,-0.414105504751205,0.799438118934631,-0.435218691825867,-0.414105474948883,0.799438178539276,-0.435218662023544,-0.447933822870255,0.79901385307312,-0.401163399219513,-0.488111585378647,0.80011260509491,-0.348664581775665,-0.448701143264771,0.798982441425323,-0.400367796421051,-0.447933822870255,0.79901385307312,-0.401163399219513,-0.489414751529694,0.800175428390503,-0.346687763929367,-0.540755867958069,0.798851132392883,-0.263476878404617,-0.488111585378647,0.80011260509491,-0.348664581775665,-0.489414751529694,0.800175428390503,-0.346687763929367,-0.540755867958069,0.798851072788239,-0.26347690820694,
- -0.59431380033493,0.800226390361786,-0.0801793411374092,-0.577802062034607,0.798592805862427,-0.168506354093552,-0.577802002429962,0.798592805862427,-0.168506324291229,-0.593893885612488,0.800270915031433,-0.0828038156032562,-0.600606560707092,0.799396634101868,-0.0153855783864856,-0.59431380033493,0.800226390361786,-0.0801793411374092,-0.593893885612488,0.800270915031433,-0.0828038156032562,-0.600610673427582,0.799424529075623,-0.0136788738891482,-0.59989058971405,0.79915177822113,0.0385727696120739,-0.600606560707092,0.799396634101868,-0.0153855783864856,-0.600610673427582,0.799424529075623,-0.0136788738891482,-0.599890649318695,0.799151659011841,0.0385727696120739,-0.151206240057945,0.799617648124695,-0.581161201000214,-0.0974688604474068,0.799269318580627,-0.59301632642746,-0.0974688604474068,0.799269378185272,-0.59301632642746,-0.150564938783646,0.799627840518951,-0.581313729286194,-0.220261052250862,0.799834311008453,-0.558345794677734,-0.151206240057945,0.799617648124695,-0.581161201000214,-0.150564938783646,0.799627840518951,-0.581313729286194,-0.221785724163055,0.799862027168274,-0.55770218372345,-0.283921301364899,0.799101889133453,-0.529929101467133,-0.220261052250862,0.799834311008453,-0.558345794677734,-0.221785724163055,0.799862027168274,-0.55770218372345,-0.283921301364899,0.799101948738098,-0.529929101467133,-0.999996423721313,0,0.00267194118350744,-0.999987542629242,0,0.00497627584263682,-0.999987661838531,0,0.00497627630829811,-0.999997913837433,0,0.00207085814327002,-0.998978912830353,0,-0.0451786704361439,-0.999996423721313,0,0.00267194118350744,-0.999997913837433,0,0.00207085814327002,-0.998975992202759,0,-0.045242864638567,-0.96665370464325,0,-0.256087124347687,-0.993690609931946,0,-0.112155728042126,-0.993711411952972,0,-0.111971452832222,-0.969923675060272,0,-0.243409469723701,-0.935214459896088,7.04841795595712e-006,-0.354081779718399,-0.96665370464325,0,-0.256087124347687,-0.969923675060272,0,-0.243409469723701,-0.935237944126129,7.03980776961544e-006,-0.354019910097122,-0.64864057302475,0,-0.761094868183136,
- -0.758598983287811,0,-0.651557803153992,-0.758694767951965,0,-0.651446282863617,-0.65801340341568,0,-0.753006160259247,-0.570060670375824,0,-0.821602582931519,-0.64864057302475,0,-0.761094868183136,-0.65801340341568,0,-0.753006160259247,-0.570069372653961,0,-0.821596562862396,-0.152409732341766,0,-0.988317430019379,-0.25198295712471,0,-0.967731714248657,-0.249926954507828,-0.00109866715501994,-0.968264102935791,-0.115692459046841,0.000863317458424717,-0.993284702301025,-0.0521909445524216,0.000499407178722322,-0.998636901378632,-0.152409732341766,0,-0.988317430019379,-0.115692459046841,0.000863317458424717,-0.993284702301025,0.00236711488105357,0.000256252940744162,-0.999997138977051,0.00311549264006317,0.000252655619988218,-0.999995052814484,-0.0521909445524216,0.000499407178722322,-0.998636901378632,-0.115692459046841,0.000863317458424717,-0.993284702301025,-0.483611196279526,0,-0.875283002853394,-0.570060670375824,0,-0.821602582931519,-0.570069372653961,0,-0.821596562862396,-0.472307950258255,0.000197421119082719,-0.881433546543121,-0.343680739402771,0,-0.939086616039276,-0.483611196279526,0,-0.875283002853394,-0.472307950258255,0.000197421119082719,-0.881433546543121,-0.345570981502533,-0.00143641396425664,-0.938391447067261,-0.993690609931946,0,-0.112155728042126,-0.998978912830353,0,-0.0451786704361439,-0.998975992202759,0,-0.045242864638567,-0.993711411952972,0,-0.111971452832222,-0.895716488361359,7.15208898327546e-006,-0.444625616073608,-0.935214459896088,7.04841795595712e-006,-0.354081779718399,-0.935237944126129,7.03980776961544e-006,-0.354019910097122,-0.88954085111618,-0.000179742099135183,-0.456855624914169,-0.816625535488129,0,-0.577167868614197,-0.895716488361359,7.15208898327546e-006,-0.444625616073608,-0.88954085111618,-0.000179742099135183,-0.456855624914169,-0.816269874572754,-9.99844269244932e-005,-0.577670753002167,-0.758598983287811,0,-0.651557803153992,-0.816625535488129,0,-0.577167868614197,-0.816269874572754,-9.99844269244932e-005,-0.577670753002167,-0.758694767951965,0,-0.651446282863617,
- -0.25198295712471,0,-0.967731714248657,-0.343680739402771,0,-0.939086616039276,-0.345570981502533,-0.00143641396425664,-0.938391447067261,-0.249926954507828,-0.00109866715501994,-0.968264102935791,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,-4.46015668842392e-008,0,-1,0,0,-1,0,0,-1,-4.34498375057046e-008,0,-1,-1.3040362123462e-009,0,-0.999999940395355,-4.46015668842392e-008,0,-1,-4.34498375057046e-008,0,-1,1.37481370732218e-009,0,-0.999999940395355,6.58702106193232e-008,0,-1,-1.3040362123462e-009,0,-1,1.37481370732218e-009,0,-1,6.59449099771336e-008,0,-1,6.24539993054896e-008,0,-0.999999940395355,6.58702106193232e-008,0,-1,6.59449099771336e-008,0,-1,6.23077198724786e-008,0,-1,7.95854404600504e-008,0,-1,6.24539993054896e-008,0,-1,6.23077198724786e-008,0,-1,7.94449661611907e-008,0,-1,7.95854404600504e-008,0,-1,7.94449661611907e-008,0,-1,1.12361444593034e-008,0,-1,1.07409441341133e-008,0,-1,4.35425455691529e-008,0,-1,1.07409441341133e-008,0,-1,1.12361444593034e-008,0,-1,4.56651605418301e-008,0,-1,3.20673265719051e-008,0,-1,4.35425455691529e-008,0,-1,4.56651605418301e-008,0,-1,3.26109059756163e-008,0,-1,-3.0221109170725e-008,0,-1,3.20673265719051e-008,0,-1,3.26109059756163e-008,0,-1,-3.01945526359759e-008,0,-1,-3.0221109170725e-008,0,-1,-3.01945526359759e-008,0,-1,3.24797504447361e-008,0,-0.999999940395355,3.23498454690707e-008,0,-1,1.46834935321749e-008,0,-1,3.1980910364382e-008,0,-0.999999940395355,3.19809068116683e-008,0,-1,1.56627102398943e-008,0,-1,1.53885508780149e-008,0,-1,1.46834935321749e-008,0,-1,1.56627102398943e-008,0,-1,1.63673927744412e-008,0,-1,5.4533575877258e-008,0,-1,1.53885508780149e-008,0,-1,1.63673927744412e-008,0,-1,5.4994899301164e-008,0,-1,6.63237784692683e-008,0,-1,5.4533575877258e-008,0,-1,5.4994899301164e-008,0,-1,6.62672405837839e-008,0,-1,3.24797504447361e-008,0,-1,6.63237784692683e-008,0,-1,6.62672405837839e-008,0,-0.999999940395355,3.23498454690707e-008,0.00682942802086473,0.854167640209198,-0.519952893257141,0.00682942802086473,0.854167699813843,-0.519952893257141,0.00682942755520344,0.854167640209198,-0.519952833652496,
- 0.00682942802086473,0.854167640209198,-0.519952893257141,0.502769351005554,0.864015340805054,-0.0264666583389044,0.502769351005554,0.864015340805054,-0.0264666583389044,0.502769351005554,0.864015281200409,-0.0264666583389044,0.502769351005554,0.864015281200409,-0.0264666564762592,0.714815557003021,0.266383558511734,0.646589994430542,2.29487750402768e-006,0.656208693981171,0.754579424858093,-6.62899779513282e-008,0.0199557580053806,0.999800860881805,0.0396962463855743,0.00833303481340408,0.999176979064941,2.29487750402768e-006,0.656208693981171,0.754579424858093,-0.714750826358795,0.266304105520248,0.646694183349609,-0.0396945923566818,0.0083331735804677,0.999177098274231,-6.62899779513282e-008,0.0199557580053806,0.999800860881805,-0.714750826358795,0.266304105520248,0.646694183349609,-0.46026748418808,-0.43135005235672,0.775945246219635,-0.0488835908472538,-0.025384534150362,0.998481810092926,-0.0396945923566818,0.0083331735804677,0.999177098274231,-0.46026748418808,-0.43135005235672,0.775945246219635,0.460256308317184,-0.431446522474289,0.775898218154907,0.0488859862089157,-0.0253825709223747,0.998481810092926,-0.0488835908472538,-0.025384534150362,0.998481810092926,0.460256308317184,-0.431446522474289,0.775898218154907,0.714815557003021,0.266383558511734,0.646589994430542,0.0396962463855743,0.00833303481340408,0.999176979064941,0.0488859862089157,-0.0253825709223747,0.998481810092926,-0.815747797489166,0,0.578407764434814,-0.81616336107254,0,0.577821135520935,-0.890284717082977,0,0.455404371023178,-0.870163977146149,0,0.492762207984924,-0.759598135948181,0.000203340314328671,0.650392591953278,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.81616336107254,0,0.577821135520935,-0.815747797489166,0,0.578407764434814,-0.344540894031525,0,0.938771367073059,-0.346095949411392,0,0.938199162483215,-0.47148185968399,0,0.881875693798065,-0.438764989376068,0,0.898601889610291,-0.25636026263237,0,0.966581344604492,-0.255075633525848,0,0.966921031475067,-0.346095949411392,0,0.938199162483215,-0.344540894031525,0,0.938771367073059,
- 0.256180256605148,0,-0.966629087924957,0.255078732967377,0,-0.966920256614685,0.114827796816826,0,-0.993385374546051,0.156521335244179,0,-0.987674593925476,0.344762206077576,0,-0.938690066337585,0.346095979213715,0,-0.938199043273926,0.255078732967377,0,-0.966920256614685,0.256180256605148,0,-0.966629087924957,0.759532034397125,-0.000248630822170526,-0.650469839572906,0.758582532405853,-0.000101079458545428,-0.651576995849609,0.659175753593445,-0.000183481446583755,-0.75198882818222,0.689928472042084,-0.000790653517469764,-0.723877131938934,0.815806210041046,0,-0.57832533121109,0.81617283821106,0,-0.577807903289795,0.758582532405853,-0.000101079458545428,-0.651576995849609,0.759532034397125,-0.000248630822170526,-0.650469839572906,-0.935426652431488,0,0.353520900011063,-0.93542206287384,0,0.353532940149307,-0.890284717082977,0,0.455404371023178,-0.895821571350098,0,0.444413900375366,-0.81616336107254,0,0.577821135520935,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.758188188076019,0,0.65203583240509,-0.81624835729599,0,0.577701151371002,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.659348905086517,0.000153203960508108,0.751837074756622,-0.648829877376556,0,0.760933458805084,-0.758188188076019,0,0.65203583240509,-0.570578694343567,0,0.821242868900299,-0.570513725280762,0,0.821288049221039,-0.47148185968399,0,0.881875693798065,-0.483143359422684,0,0.875541269779205,-0.346095949411392,0,0.938199162483215,-0.255075633525848,0,0.966921031475067,-0.25493061542511,0,0.966959416866302,-0.346275329589844,0,0.93813294172287,-0.0556011646986008,0,0.998453080654144,-0.102594837546349,0,0.994723200798035,-0.114745192229748,0,0.99339497089386,-0.0556011684238911,0,0.998453080654144,-0.165977403521538,0.798631727695465,0.578479826450348,-0.165818899869919,0.79863452911377,0.578521430492401,-0.134037971496582,0.798759400844574,0.586529910564423,-0.134037956595421,0.798759400844574,0.586529910564423,-0.193327471613884,0.798465669155121,0.570155322551727,-0.193375766277313,0.798466145992279,0.570138216018677,
- -0.165818899869919,0.79863452911377,0.578521430492401,-0.165977403521538,0.798631727695465,0.578479826450348,0.00176013284362853,0.999994874000549,-0.0026605345774442,0.00188397627789527,0.999994874000549,-0.00257520074956119,0.0538762025535107,0.997993588447571,0.0332583747804165,0.053876206278801,0.997993648052216,0.0332583747804165,-0.457810878753662,0.79836905002594,0.391172796487808,-0.457680970430374,0.798374116420746,0.39131423830986,-0.445462197065353,0.798724591732025,0.40447786450386,-0.445462197065353,0.79872465133667,0.404477894306183,-0.482368886470795,0.799517035484314,0.357900440692902,-0.482854247093201,0.799541056156158,0.357191562652588,-0.457680970430374,0.798374116420746,0.39131423830986,-0.457810878753662,0.79836905002594,0.391172796487808,-0.0012748371809721,0.999998986721039,0.000494063599035144,-0.0100805256515741,0.999686777591705,-0.02290846593678,-0.0100805256515741,0.999686717987061,-0.02290846593678,-0.0012828828766942,0.999999046325684,0.000472682731924579,-0.648829877376556,0,0.760933458805084,-0.659348905086517,0.000153203960508108,0.751837074756622,-0.570513725280762,0,0.821288049221039,-0.570578694343567,0,0.821242868900299,-0.0465555563569069,0.998268783092499,-0.0359463132917881,-0.0465555526316166,0.998268723487854,-0.0359463095664978,0.00188397627789527,0.999994874000549,-0.00257520074956119,0.00176013284362853,0.999994874000549,-0.0026605345774442,0.876259684562683,-4.21074810219579e-006,0.481839090585709,0.876259684562683,-4.21074810219579e-006,0.481839090585709,0.876259684562683,-4.21074764744844e-006,0.481839120388031,0.876259684562683,-4.21074764744844e-006,0.481839090585709,0.876259684562683,-4.21074810219579e-006,0.481839030981064,0.0510496683418751,0.8637655377388,-0.501301407814026,0.0510496608912945,0.863765478134155,-0.501301348209381,0.0510496646165848,0.863765597343445,-0.501301407814026,0.0510496608912945,0.863765478134155,-0.501301348209381,0.452142655849457,2.13764906220604e-006,0.891945600509644,0.452142655849457,2.13764906220604e-006,0.891945600509644,0.452142655849457,2.13764883483236e-006,0.891945660114288,
- 0.452142715454102,2.13764906220604e-006,0.891945660114288,0.452142655849457,2.13764883483236e-006,0.891945600509644,0.870153486728668,0,-0.492780774831772,0.890249729156494,0,-0.455472856760025,0.81617283821106,0,-0.577807903289795,0.815806210041046,0,-0.57832533121109,-0.895821571350098,0,0.444413900375366,-0.890284717082977,0,0.455404371023178,-0.81616336107254,0,0.577821135520935,-0.81624835729599,0,0.577701151371002,-0.52276211977005,0.799425959587097,0.29603710770607,-0.522762060165405,0.799425840377808,0.296037077903748,-0.482854247093201,0.799541056156158,0.357191562652588,-0.482368886470795,0.799517035484314,0.357900440692902,0.438765287399292,0,-0.898601710796356,0.471642315387726,0,-0.881789922714233,0.346095979213715,0,-0.938199043273926,0.344762206077576,0,-0.938690066337585,-0.483143359422684,0,0.875541269779205,-0.47148185968399,0,0.881875693798065,-0.346095949411392,0,0.938199162483215,-0.346275329589844,0,0.93813294172287,-0.218901142477989,0.798424661159515,0.560892522335052,-0.218901187181473,0.798424661159515,0.560892581939697,-0.193375766277313,0.798466145992279,0.570138216018677,-0.193327471613884,0.798465669155121,0.570155322551727,-0.754703402519226,0.0264136288315058,-0.655534267425537,-0.754703342914581,0.0264136306941509,-0.655534327030182,-0.754703342914581,0.0264136288315058,-0.655534267425537,-0.754703402519226,0.0264136306941509,-0.655534267425537,-0.754703342914581,0.0264136288315058,-0.655534267425537,-0.689952373504639,0.000648211280349642,0.723854422569275,-0.659348905086517,0.000153203960508108,0.751837074756622,-0.758585274219513,8.22730071377009e-005,0.651573836803436,-0.759598135948181,0.000203340314328671,0.650392591953278,-0.993966102600098,0,-0.109687902033329,-0.993966162204742,0,-0.109687902033329,-0.993966102600098,0,-0.109687894582748,-0.993966042995453,0,-0.109687879681587,-0.993966162204742,0,-0.109687902033329,-0.993966042995453,0,-0.109687887132168,-0.156514570116997,0,0.987675547599792,-0.114745192229748,0,0.99339497089386,-0.255075633525848,0,0.966921031475067,-0.25636026263237,0,0.966581344604492,
- -0.114745192229748,0,0.99339497089386,-0.102594837546349,0,0.994723200798035,-0.25493061542511,0,0.966959416866302,-0.255075633525848,0,0.966921031475067,-0.999159038066864,0.00262179388664663,0.0409185811877251,-0.999234020709991,0.000942729413509369,0.0391216352581978,-0.999985039234161,4.90559650643263e-005,0.0054625584743917,-1,0,0,-0.994152545928955,0.00252668303437531,0.107955306768417,-0.99410754442215,0.000942794664297253,0.108394727110863,-0.999234020709991,0.000942729413509369,0.0391216352581978,-0.999159038066864,0.00262179388664663,0.0409185811877251,0.993887543678284,-0.00265638343989849,-0.110365435481071,0.993792533874512,-0.000986546743661165,-0.11124524474144,0.969732642173767,0.000200352122192271,-0.244169056415558,0.979128181934357,0.000835304614156485,-0.203242152929306,0.999003291130066,-0.00297379679977894,-0.044539537280798,0.999082863330841,-0.00107499898876995,-0.042806152254343,0.993792533874512,-0.000986546743661165,-0.11124524474144,0.993887543678284,-0.00265638343989849,-0.110365435481071,-0.999900579452515,0.000126577797345817,0.014094895683229,-0.999900698661804,0.000126577811897732,0.014094895683229,-0.999900698661804,0.000126577811897732,0.0140948975458741,-0.999985039234161,4.90559650643263e-005,0.0054625584743917,-0.999973118305206,6.59479919704609e-005,0.007343546487391,-0.999234020709991,0.000942729413509369,0.0391216352581978,-0.99410754442215,0.000942794664297253,0.108394727110863,-0.994286179542542,0,0.106748089194298,-0.999192655086517,0,0.0401749685406685,-0.935426652431488,0,0.353520900011063,-0.966513752937317,0,0.256614714860916,-0.969720125198364,-0.000163684715516865,0.244219109416008,-0.93542206287384,0,0.353532940149307,-0.598319470882416,0.799216449260712,0.0571568049490452,-0.598307192325592,0.799217522144318,0.0572701245546341,-0.59402072429657,0.799039900302887,0.0931376591324806,-0.594020664691925,0.799039900302887,0.0931376665830612,-0.600468993186951,0.799332916736603,0.022446047514677,-0.600469946861267,0.799349129199982,0.0218380279839039,-0.598307192325592,0.799217522144318,0.0572701245546341,
- -0.598319470882416,0.799216449260712,0.0571568049490452,-0.518150568008423,0.854183495044708,0.0434813760221004,-0.518150568008423,0.854183495044708,0.0434813760221004,-0.518150568008423,0.854183495044708,0.0434813722968102,-0.518150508403778,0.854183435440063,0.0434813685715199,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0.0077578448690474,0.999669909477234,0.0244973413646221,0.00775784533470869,0.999669849872589,0.0244973432272673,-0.0012748371809721,0.999998986721039,0.000494063599035144,-0.0012828828766942,0.999999046325684,0.000472682731924579,1,0,0,0.999985039234161,-4.93368279421702e-005,-0.00547720631584525,0.999082863330841,-0.00107499898876995,-0.042806152254343,0.999003291130066,-0.00297379679977894,-0.044539537280798,-0.999973118305206,6.59479919704609e-005,0.007343546487391,-0.999985039234161,4.90559650643263e-005,0.0054625584743917,-0.999234020709991,0.000942729413509369,0.0391216352581978,-0.999192655086517,0,0.0401749685406685,-0.60035514831543,0.799733579158783,0,-0.60035514831543,0.799733579158783,0,-0.600469946861267,0.799349129199982,0.0218380279839039,-0.600468993186951,0.799332916736603,0.022446047514677,-0.250771552324295,0,-0.968046307563782,-0.250771552324295,0,-0.968046247959137,-0.250771552324295,0,-0.968046307563782,-0.250771552324295,0,-0.968046367168427,-0.250771552324295,0,-0.968046367168427,-0.979137539863586,-0.000683276157360524,0.203197538852692,-0.969720125198364,-0.000163684715516865,0.244219109416008,-0.99410754442215,0.000942794664297253,0.108394727110863,-0.994152545928955,0.00252668303437531,0.107955306768417,-0.969720125198364,-0.000163684715516865,0.244219109416008,-0.966513752937317,0,0.256614714860916,-0.994286179542542,0,0.106748089194298,-0.99410754442215,0.000942794664297253,0.108394727110863,-0.027697529643774,0.00574966380372643,0.999599814414978,-0.0343949533998966,-0.0177207756787539,0.999251186847687,0.0343949533998966,-0.0177207756787539,0.999251186847687,0.0276972372084856,0.00574927683919668,0.999599874019623,2.98166362711072e-008,0.0138234021142125,0.999904453754425,
- 0.497337073087692,0.798982203006744,-0.338058173656464,0.522745370864868,0.799437642097473,-0.296034961938858,0.522745430469513,0.799437642097473,-0.29603499174118,0.49792292714119,0.799013674259186,-0.337120085954666,0.45674404501915,0.800114452838898,-0.388846546411514,0.497337073087692,0.798982203006744,-0.338058173656464,0.49792292714119,0.799013674259186,-0.337120085954666,0.455145567655563,0.800177276134491,-0.390587598085403,0.386881023645401,0.798856437206268,-0.460599094629288,0.45674404501915,0.800114452838898,-0.388846546411514,0.455145567655563,0.800177276134491,-0.390587598085403,0.386881023645401,0.798856496810913,-0.460599094629288,0.220161259174347,0.799944281578064,-0.55822765827179,0.303767174482346,0.798591256141663,-0.519593715667725,0.303767144680023,0.798591196537018,-0.51959365606308,0.222782507538795,0.800004303455353,-0.557100534439087,0.142739996314049,0.799820005893707,-0.583020806312561,0.220161259174347,0.799944281578064,-0.55822765827179,0.222782507538795,0.800004303455353,-0.557100534439087,0.14033018052578,0.799876153469086,-0.583528518676758,0.0574574396014214,0.798871636390686,-0.59875100851059,0.142739996314049,0.799820005893707,-0.583020806312561,0.14033018052578,0.799876153469086,-0.583528518676758,0.0574574396014214,0.798871636390686,-0.59875100851059,0.600270092487335,0.799373328685761,-0.026040630415082,0.600337326526642,0.799746930599213,0,0.600337326526642,0.799746930599213,0,0.60027676820755,0.799389064311981,-0.0253980774432421,0.594762742519379,0.800001978874207,-0.0790819972753525,0.600270092487335,0.799373328685761,-0.026040630415082,0.60027676820755,0.799389064311981,-0.0253980774432421,0.594523549079895,0.80002373456955,-0.0806465893983841,0.583019196987152,0.799097180366516,-0.146739318966866,0.594762742519379,0.800001978874207,-0.0790819972753525,0.594523549079895,0.80002373456955,-0.0806465893983841,0.583019137382507,0.799097061157227,-0.146739289164543,0.102595627307892,0,-0.99472314119339,0.00311549264006317,0.000252655619988218,-0.999995052814484,0.00236711488105357,0.000256252940744162,-0.999997138977051,
- 0.114827796816826,0,-0.993385374546051,0.254933565855026,0,-0.966958582401276,0.102595627307892,0,-0.99472314119339,0.114827796816826,0,-0.993385374546051,0.255078732967377,0,-0.966920256614685,0.483142465353012,0,-0.875541746616364,0.346275329589844,0,-0.938132882118225,0.346095979213715,0,-0.938199043273926,0.471642315387726,0,-0.881789922714233,0.570565402507782,4.84187512483913e-006,-0.821252167224884,0.483142465353012,0,-0.875541746616364,0.471642315387726,0,-0.881789922714233,0.570510983467102,4.83596568301436e-006,-0.821289896965027,0.895821928977966,0,-0.444413095712662,0.81625771522522,0,-0.577688038349152,0.81617283821106,0,-0.577807903289795,0.890249729156494,0,-0.455472856760025,0.93543541431427,0,-0.3534976541996,0.895821928977966,0,-0.444413095712662,0.890249729156494,0,-0.455472856760025,0.935431659221649,0,-0.353507667779922,1,0,0,0.999037027359009,0,-0.043875940144062,0.999082863330841,-0.00107499898876995,-0.042806152254343,0.999985039234161,-4.93368279421702e-005,-0.00547720631584525,0.999900639057159,-0.000127035600598902,-0.0141030587255955,1,0,0,0.999985039234161,-4.93368279421702e-005,-0.00547720631584525,0.999895393848419,-0.000130306361825205,-0.014466168358922,0.999895334243774,-0.00013030634727329,-0.0144661655649543,0.999900639057159,-0.000127035600598902,-0.0141030587255955,0.999985039234161,-4.93368279421702e-005,-0.00547720631584525,0.966509819030762,0,-0.256629765033722,0.93543541431427,0,-0.3534976541996,0.935431659221649,0,-0.353507667779922,0.969732642173767,0.000200352122192271,-0.244169056415558,0.993966937065125,0,-0.109679959714413,0.966509819030762,0,-0.256629765033722,0.969732642173767,0.000200352122192271,-0.244169056415558,0.993792533874512,-0.000986546743661165,-0.11124524474144,0.346275329589844,0,-0.938132882118225,0.254933565855026,0,-0.966958582401276,0.255078732967377,0,-0.966920256614685,0.346095979213715,0,-0.938199043273926,0.648811995983124,3.14005137624918e-006,-0.760948717594147,0.570565402507782,4.84187512483913e-006,-0.821252167224884,0.570510983467102,4.83596568301436e-006,-0.821289896965027,
- 0.659175753593445,-0.000183481446583755,-0.75198882818222,0.758179843425751,-1.21516745821282e-006,-0.652045547962189,0.648811995983124,3.14005137624918e-006,-0.760948717594147,0.659175753593445,-0.000183481446583755,-0.75198882818222,0.758582532405853,-0.000101079458545428,-0.651576995849609,0.81625771522522,0,-0.577688038349152,0.758179843425751,-1.21516745821282e-006,-0.652045547962189,0.758582532405853,-0.000101079458545428,-0.651576995849609,0.81617283821106,0,-0.577807903289795,0.999037027359009,0,-0.043875940144062,0.993966937065125,0,-0.109679959714413,0.993792533874512,-0.000986546743661165,-0.11124524474144,0.999082863330841,-0.00107499898876995,-0.042806152254343,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-6.69809807618549e-008,0,-1,0,0,-1,0,0,-1,-6.55327312415466e-008,0,-1,-4.49627606258218e-008,0,-1,-6.69809807618549e-008,0,-1,-6.55327312415466e-008,0,-1,-4.25543724702493e-008,0,-1,6.59054251173075e-008,0,-1,-4.49627606258218e-008,0,-1,-4.25543724702493e-008,0,-1,6.59067325159413e-008,0,-1,3.11527337260031e-008,0,-1,6.59054251173075e-008,0,-1,6.59067325159413e-008,0,-1,3.12317922634975e-008,0,-0.999999940395355,-3.17550359341112e-008,0,-1,3.11527337260031e-008,0,-1,3.12317922634975e-008,0,-1,-3.18646122821065e-008,0,-0.999999940395355,-3.17550359341112e-008,0,-1,-3.18646122821065e-008,0,-1,-2.24713883056893e-008,0,-1,-2.14822808430881e-008,0,-1,0,0,-1,-2.14822808430881e-008,0,-1,-2.24713883056893e-008,0,-0.999999940395355,0,0,-1,-6.48191473828774e-008,0,-1,0,0,-0.999999940395355,0,0,-1,-6.44970228336206e-008,0,-0.999999940395355,-1.5151153220927e-008,0,-1,-6.48191473828774e-008,0,-1,-6.44970228336206e-008,0,-1,-1.50560008904677e-008,0,-0.999999940395355,-1.5151153220927e-008,0,-1,-1.50560008904677e-008,0,-0.999999940395355,4.85308362385695e-008,0,-1,4.87037219443209e-008,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,-4.30763833492165e-008,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,-4.42169074688081e-008,0,-1,-4.36609965959178e-008,0,-1,-4.30763833492165e-008,
- 0,-1,-4.42169074688081e-008,0,-0.999999940395355,-4.4543345012471e-008,0,-0.999999940395355,4.85308362385695e-008,0,-1,-4.36609965959178e-008,0,-0.999999940395355,-4.4543345012471e-008,0,-1,4.87037219443209e-008,0.518424570560455,0.854636073112488,0.0288671888411045,0.518424570560455,0.854636013507843,0.0288671869784594,0.518424510955811,0.854636013507843,0.0288671869784594,0.518424510955811,0.854635953903198,0.0288671832531691,-0.00266472040675581,0.863718211650848,0.503968000411987,-0.00266471994109452,0.863718152046204,0.503967940807343,-0.00266472040675581,0.863718152046204,0.503968060016632,-0.00266472040675581,0.863718211650848,0.503968060016632,-0.679641962051392,0.259716898202896,0.686027646064758,-0.423502296209335,-0.410685420036316,0.807454824447632,-0.0343949533998966,-0.0177207756787539,0.999251186847687,-0.027697529643774,0.00574966380372643,0.999599814414978,-0.423502296209335,-0.410685420036316,0.807454824447632,0.423502296209335,-0.410685420036316,0.807454824447632,0.0343949533998966,-0.0177207756787539,0.999251186847687,-0.0343949533998966,-0.0177207756787539,0.999251186847687,0.423502296209335,-0.410685420036316,0.807454824447632,0.679648816585541,0.259708970785141,0.686023950576782,0.0276972372084856,0.00574927683919668,0.999599874019623,0.0343949533998966,-0.0177207756787539,0.999251186847687,0.679648816585541,0.259708970785141,0.686023950576782,-2.40670874518401e-006,0.617954254150391,0.786214113235474,2.98166362711072e-008,0.0138234021142125,0.999904453754425,0.0276972372084856,0.00574927683919668,0.999599874019623,-2.40670874518401e-006,0.617954254150391,0.786214113235474,-0.679641962051392,0.259716898202896,0.686027646064758,-0.027697529643774,0.00574966380372643,0.999599814414978,2.98166362711072e-008,0.0138234021142125,0.999904453754425
- }
- NormalsW: *7160 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *21480 {
- a: 0.0261204484850168,0.998443126678467,-0.0492854192852974,-0.0367696695029736,0.99884831905365,0.0308233983814716,0.026218269020319,0.99843442440033,-0.0494098924100399,-0.0247449371963739,0.998871445655823,0.0405417531728745,0.0388364978134632,0.99846088886261,-0.0395922362804413,-0.0149416159838438,0.999490857124329,0.0281926654279232,-0.0472760051488876,0.998867154121399,0.00542509322986007,0.0551314651966095,0.99845963716507,0.00623935274779797,-0.0314362719655037,0.999490320682526,0.00555502390488982,0.0548793449997902,0.998445689678192,-0.00972119905054569,-0.0470318607985973,0.998843312263489,-0.0100066084414721,0.0551845878362656,0.99842894077301,-0.00972019042819738,-0.0335229262709618,0.998855710029602,-0.0341127924621105,0.0290664602071047,0.99845290184021,0.0474032275378704,-0.0237754136323929,0.999487996101379,-0.0214110519737005,0.0415637120604515,0.998434543609619,0.0374293774366379,-0.0211696643382311,0.998833179473877,-0.0434069782495499,0.0418045446276665,0.998412847518921,0.0377400405704975,-0.00563127407804132,0.998865902423859,-0.0472791939973831,-0.00599892158061266,0.998461306095123,0.0551277659833431,-0.00566230248659849,0.999213397502899,-0.0392499417066574,0.00995003152638674,0.99844366312027,0.0548756308853626,0.0098102418705821,0.998845100402832,-0.0470350347459316,0.00994322169572115,0.998829126358032,0.0473453588783741,0.0525781027972698,0.99849945306778,-0.0153104001656175,0.0522564239799976,0.99750167131424,0.0475375279784203,0.0526470355689526,0.997823774814606,-0.0396989434957504,0.0140358302742243,0.999419748783112,0.0310357101261616,0.0136326579377055,0.999128878116608,-0.0394431240856647,0.0141190653666854,0.998781025409698,0.0472976751625538,-0.00280016520991921,0.999222934246063,-0.0393174365162849,-0.00216963305138052,0.99949985742569,0.0315486453473568,-0.00273028202354908,0.999503433704376,-0.0313944295048714,0.0507499054074287,0.99850457906723,0.0203255955129862,0.0117744244635105,0.997488141059875,0.0698495730757713,0.0656444579362869,0.997842311859131,0.00131056096870452,
- -0.0129016190767288,0.999136626720428,0.0394908040761948,0.034937921911478,0.999131619930267,-0.022705003619194,-0.0180272329598665,0.998772025108337,0.0461462698876858,0.0220000855624676,0.99921977519989,-0.0328009240329266,-0.0259752571582794,0.999215960502625,0.0298817213624716,0.0172090791165829,0.999499559402466,-0.0265423245728016,0.0393172428011894,0.999222874641418,-0.00282434676773846,-0.0394047647714615,0.999221205711365,-0.00207482883706689,0.0313938185572624,0.999503374099731,-0.00274959579110146,-0.0388912484049797,0.999143540859222,0.0141322053968906,0.0394427143037319,0.999129593372345,0.0135767301544547,-0.0472981706261635,0.998780131340027,0.0141867594793439,-0.0475377887487412,0.997499108314514,0.052304707467556,0.0396986231207848,0.9978266954422,0.0525916032493114,0.0153106302022934,0.998500883579254,0.052551656961441,0.0263490490615368,0.99922788143158,0.0291456412523985,-0.0225750189274549,0.999222636222839,-0.0323218069970608,0.0214872248470783,0.9995037317276,0.0230362210422754,-0.0350799188017845,0.99914276599884,-0.0219820439815521,0.0134703814983368,0.999136090278625,0.0393152013421059,-0.0403141938149929,0.998777747154236,-0.0285987481474876,-0.0705736577510834,0.997491717338562,-0.00545324757695198,-0.0171570852398872,0.997837841510773,0.0634459853172302,-0.032096479088068,0.998505115509033,0.0442419722676277,0.370302557945251,-0.92775946855545,0.0462427362799644,0.0902739241719246,-0.995555758476257,-0.0268207509070635,0.0675866901874542,-0.997182369232178,-0.0325487554073334,-0.0147313270717859,0.990565657615662,-0.136245056986809,0.107099369168282,0.992314994335175,-0.0619743727147579,0.0257217437028885,0.993389666080475,-0.111872106790543,0.0601566806435585,0.997945666313171,0.022037586197257,0.0610805228352547,0.997875928878784,0.0226476788520813,-0.0247854460030794,0.999115645885468,-0.0339642912149429,-0.0311422161757946,0.999224066734314,-0.0241145379841328,0.0540099032223225,0.99799919128418,0.0328745022416115,-0.0245603770017624,0.999504089355469,-0.0197107940912247,-0.122776746749878,0.984613299369812,0.124348700046539,
- -0.0816110223531723,0.970762014389038,0.225745022296906,-0.261430829763412,0.92851322889328,-0.263661056756973,0.479329705238342,0.821632623672485,0.308484762907028,0.394260972738266,0.782090961933136,-0.482589066028595,0.469598591327667,0.792370676994324,0.389391899108887,0.792344570159912,-0.112514093518257,0.599608719348907,0.426187068223953,0.729837775230408,-0.534510493278503,0.866832911968231,0.0225133411586285,0.498090356588364,0.0611770041286945,0.997873187065125,0.0225080214440823,0.0602361708879471,0.997944056987762,0.0218963492661715,0.838838994503021,0.0237345434725285,0.543861985206604,0.866832911968231,0.0225133411586285,0.498090356588364,0.774356007575989,-0.13885335624218,0.61732691526413,0.792344570159912,-0.112514093518257,0.599608719348907,-0.0512617006897926,0.996995389461517,-0.0580728799104691,0.0481549277901649,0.998750805854797,-0.0133410859853029,0.0735671669244766,0.997288584709167,-0.00183999538421631,0.032530564814806,0.999163389205933,0.0247862637042999,-0.0696476548910141,0.997404754161835,-0.0182483270764351,-0.0618308410048485,0.997974634170532,-0.0149512654170394,0.838830947875977,0.0322790294885635,0.543434262275696,0.83898651599884,0.0237285438925028,0.543634593486786,0.0579479932785034,0.997982025146484,0.0259609147906303,0.0479008182883263,0.998771190643311,-0.0127195622771978,0.913204789161682,0.0264021512120962,0.406644731760025,0.0732870697975159,0.997310101985931,-0.0013402757467702,0.45957288146019,-0.82802826166153,0.321188479661942,0.894634246826172,-0.00702631566673517,-0.446744054555893,0.89820408821106,-0.0212174206972122,-0.43906632065773,0.838356375694275,0.032309778034687,0.544164180755615,0.838218152523041,-0.0221101269125938,0.544886648654938,0.838499307632446,0.0237483344972134,0.544384837150574,0.833703219890594,0.0239407680928707,0.551693558692932,0.833284616470337,-0.0218954980373383,0.552410483360291,0.833344995975494,-0.0196853168308735,0.552402555942535,0.921591877937317,0.0114582106471062,0.387991070747375,0.921549677848816,0.0255595240741968,0.387418299913406,
- 0.0501286312937737,0.998577475547791,-0.0181700456887484,0.921366691589355,0.0114504555240273,0.388525694608688,0.920789480209351,-0.0259367022663355,0.389196842908859,0.921249210834503,0.0255907885730267,0.388130187988281,0.910880148410797,-0.0215168539434671,-0.412109673023224,-0.275770038366318,-0.790041446685791,0.547526597976685,0.405095189809799,-0.872095286846161,0.274495393037796,0.587820887565613,0.0028870536480099,0.808985948562622,0.213078886270523,0.878357887268066,-0.427884131669998,0.449128866195679,-0.278592467308044,0.848922610282898,0.82992297410965,-0.0196044817566872,0.55753356218338,0.0588123090565205,-0.996674001216888,0.0564094483852386,0.0385644994676113,-0.99833732843399,0.0428435541689396,0.0597439631819725,-0.996710419654846,0.0547623857855797,0.830257475376129,-0.0196123793721199,0.557034909725189,0.830205798149109,-0.0217621382325888,0.55703204870224,-0.454262256622314,-0.594735443592072,0.663276433944702,0.37914964556694,-0.890238642692566,0.252429693937302,-0.335760086774826,-0.693254172801971,0.63770204782486,0.0584642142057419,-0.996659457683563,0.0570246875286102,-0.0735670849680901,-0.996804714202881,-0.0311200171709061,0.0381690710783005,-0.998323798179626,0.0435051955282688,-0.160967871546745,-0.968735873699188,-0.188786312937737,0.106199726462364,-0.941028118133545,-0.321228504180908,-0.253442078828812,-0.957586824893951,-0.137093514204025,0.924377679824829,-0.0261175390332937,0.380583673715591,0.92453134059906,0.0115600945428014,0.380930632352829,0.924521863460541,-0.0179860312491655,0.380704313516617,0.775073170661926,0.0298189427703619,-0.631167590618134,0.771589756011963,0.0171580221503973,-0.635889053344727,0.76308536529541,0.577122926712036,-0.290912181138992,0.925172030925751,-0.0261578150093555,0.378645867109299,0.0651406943798065,-0.997474670410156,0.0283021237701178,0.0728845000267029,-0.996843755245209,0.0314700342714787,0.0658603459596634,-0.997484862804413,0.026198074221611,0.925925612449646,-0.0261961128562689,0.37679660320282,0.926094830036163,-0.0178049076348543,0.376870512962341,
- -0.0807730257511139,-0.996196269989014,-0.0326930023729801,-0.0749447494745255,-0.996770977973938,-0.0288257952779531,0.057479053735733,-0.996615648269653,0.0587654858827591,0.0651406943798065,-0.997474670410156,0.0283021237701178,-0.0813003703951836,-0.996187806129456,-0.031627219170332,0.0728845000267029,-0.996843755245209,0.0314700342714787,-0.429900497198105,-0.856093287467957,-0.286862462759018,0.14030247926712,-0.916694402694702,-0.374147891998291,-0.99464738368988,-0.0399098098278046,0.0953088477253914,-0.986140549182892,-0.0375519394874573,-0.161606475710869,-0.728318929672241,-0.440718531608582,-0.524708211421967,-0.706992089748383,-0.457952916622162,-0.538926184177399,-0.834072470664978,-0.0195905026048422,-0.551307082176209,-0.0749447494745255,-0.996770977973938,-0.0288257952779531,-0.0807730257511139,-0.996196269989014,-0.0326930023729801,-0.07887052744627,-0.996635794639587,-0.0222821645438671,-0.839659571647644,-0.0194327179342508,-0.542765259742737,-0.839593231678009,-0.0287835691124201,-0.5424525141716,-0.71142452955246,-0.484793305397034,-0.508773624897003,-0.948484182357788,-0.0348623618483543,-0.314900577068329,-0.956603646278381,0.00917316693812609,-0.291248053312302,-0.937449634075165,0.0109590077772737,-0.347948491573334,-0.329644769430161,0.838357090950012,0.434156596660614,-0.745618581771851,-0.388330370187759,-0.541527986526489,-0.830917716026306,0.0175155755132437,-0.556119561195374,-0.0311422161757946,0.999224066734314,-0.0241145379841328,-0.0245603770017624,0.999504089355469,-0.0197107940912247,-0.0220875777304173,0.999028205871582,-0.0381416045129299,-0.834327578544617,0.0173541978001595,-0.550995767116547,-0.834426879882813,0.013140581548214,-0.550961971282959,-0.830316245555878,-0.0283071491867304,-0.556573092937469,-0.830224275588989,0.0130743980407715,-0.55727618932724,-0.830129027366638,0.0175526011735201,-0.557295083999634,-0.836743831634521,0.0131770689040422,-0.547436058521271,-0.836874902248383,-0.0286435429006815,-0.546644330024719,-0.836971342563629,-0.0195092000067234,-0.546899020671844,
- -0.059464730322361,-0.995369076728821,-0.0755275934934616,-0.921322405338287,-0.0167837906628847,-0.388437002897263,-0.921334266662598,-0.0164299719035625,-0.388424038887024,-0.922188699245453,-0.0168761257082224,-0.38637176156044,-0.922728359699249,0.0145311560481787,-0.385177075862885,-0.922204196453094,-0.0163879729807377,-0.386356145143509,-0.0531007051467896,-0.995697915554047,-0.0759341716766357,-0.0582097806036472,-0.995249688625336,-0.0780364647507668,0.0815456435084343,-0.996470272541046,-0.0199328102171421,-0.91698145866394,-0.0163271091878414,-0.398595660924912,-0.0599866658449173,-0.995416462421417,-0.074483722448349,-0.0541478507220745,-0.995935499668121,-0.071976013481617,0.0783344879746437,-0.996893227100372,0.00823227409273386,-0.0672207325696945,-0.997491896152496,-0.0221648793667555,0.072412334382534,-0.99735027551651,0.00699198897928,-0.918182730674744,0.0144595708698034,-0.395893186330795,-0.917817175388336,-0.01641427539289,-0.396663904190063,-0.918066322803497,0.0280229542404413,-0.395435065031052,-0.916605174541473,0.0282609704881907,-0.3987937271595,-0.194066569209099,0.979883790016174,-0.0465393029153347,-0.916678965091705,0.0144358891993761,-0.399363845586777,-0.185031369328499,0.980445265769959,-0.067010909318924,-0.921420335769653,0.0274673830717802,-0.387595295906067,-0.119220465421677,0.992094695568085,-0.0391764678061008,-0.892749011516571,0.031849168241024,-0.44942718744278,-0.205281138420105,0.78299206495285,0.587182343006134,-0.28709277510643,0.786621809005737,0.546629667282104,-0.975305616855621,0.0156123107299209,-0.220307067036629,-0.0779688060283661,0.996888756752014,-0.0115674948319793,-0.0704962015151978,0.997463166713715,-0.00987532921135426,-0.081885926425457,0.996615648269653,0.00721919350326061,-0.975992739200592,0.0153962792828679,-0.217258617281914,-0.97595477104187,0.0187690667808056,-0.217163920402527,-0.975437521934509,-0.0238253027200699,-0.218984156847,-0.975796461105347,0.0187247395515442,-0.217877700924873,-0.975831627845764,0.0154471872374415,-0.217976987361908,
- -0.0242460705339909,0.911175608634949,-0.411304265260696,0.0108053088188171,0.914944648742676,-0.403434813022614,-0.962993025779724,0.0154992761090398,-0.269080519676209,-0.100362323224545,-0.994456470012665,-0.0313644409179688,-0.9805988073349,-0.0247604139149189,-0.194455578923225,-0.0665585622191429,-0.997476637363434,-0.0247058197855949,-0.10073085129261,-0.994564414024353,-0.0263610109686852,-0.0679855048656464,-0.997501015663147,-0.0192278400063515,0.0779160037636757,-0.996880114078522,0.012615330517292,-0.000823244452476501,0.842319905757904,-0.538977265357971,-0.924164772033691,0.00805743411183357,-0.381909251213074,-0.917643666267395,0.034146998077631,-0.395934402942657,-0.998840153217316,0.0248927511274815,-0.041214719414711,-0.0620291121304035,0.997919023036957,0.0176092572510242,-0.089863047003746,0.99581903219223,0.0164042077958584,-0.977503836154938,0.019210446625948,-0.210041180253029,-0.977369427680969,-0.0241642203181982,-0.210155308246613,-0.977432131767273,-0.0214341469109058,-0.210159793496132,-0.93107408285141,0.00922283250838518,-0.364713788032532,-0.937575399875641,-0.0194132775068283,-0.347239792346954,-0.924627602100372,0.0337902754545212,-0.379370659589767,-0.977931916713715,-0.0242652595043182,-0.20750992000103,-0.100872427225113,-0.994599401950836,-0.0244295634329319,-0.977996289730072,-0.021468298509717,-0.207515046000481,-0.0617386847734451,0.997812986373901,0.0236151125282049,-0.999512195587158,0.0242311581969261,-0.0197051391005516,-0.999515891075134,0.0240761805325747,-0.0197090785950422,-0.999512195587158,0.0242311581969261,-0.0197051391005516,-0.999506831169128,-0.0234458856284618,-0.0208933372050524,-0.999515891075134,0.0240761805325747,-0.0197090785950422,-0.81535816192627,0.00558491609990597,0.578930079936981,-0.187287628650665,0.939677119255066,0.286234676837921,-0.0523620694875717,0.979002833366394,0.197006702423096,-0.999495506286621,0.0315394587814808,0.00376450200565159,-0.188532143831253,0.982066452503204,-0.00102605717256665,-0.999716103076935,0.0235260594636202,0.00377959781326354,
- -0.999719798564911,-0.023600609973073,-0.00188211165368557,-0.999503791332245,0.0314539670944214,-0.00168064353056252,-0.999718725681305,0.0236557852476835,-0.00170951150357723,-0.0629085302352905,0.998018980026245,-0.000871784868650138,-0.188517987728119,0.982068359851837,-0.00163082638755441,-0.999488770961761,0.0313836298882961,-0.00611714506521821,-0.884971439838409,0.465402990579605,0.0150192640721798,-0.0754336714744568,0.600420415401459,-0.796118795871735,-0.817101776599884,0.0347975715994835,0.575442373752594,-0.795540511608124,0.00178434676490724,0.605897724628448,-0.884971439838409,0.465402990579605,0.0150192640721798,-0.817101776599884,0.0347975715994835,0.575442373752594,-0.999492645263672,0.0313953310251236,-0.00538191013038158,-0.999705016613007,-0.0235689077526331,-0.00586364092305303,-0.999857068061829,-0.0158827230334282,-0.0057973051443696,-0.895546615123749,-0.4440838098526,-0.0280318856239319,-0.867316007614136,-0.0254012607038021,-0.497109323740005,-0.881509721279144,-0.471989750862122,0.0128982653841376,-0.999862909317017,-0.0158583205193281,-0.00476026814430952,-0.999710321426392,-0.0235769860446453,-0.00485398387536407,-0.0702909156680107,-0.997448027133942,-0.0125215165317059,-0.900410771369934,-0.0244400203227997,-0.434353739023209,-0.0756532475352287,-0.807637870311737,0.58480566740036,-0.832177996635437,-0.554439663887024,0.00874766334891319,-0.102488026022911,-0.994732260704041,-0.00200306018814445,-0.0706443265080452,-0.997500538825989,-0.00141872942913324,-0.999556183815002,-0.0234670359641314,-0.0183552913367748,-0.074665255844593,-0.774347424507141,0.628340184688568,-0.515627086162567,-0.855723738670349,0.0431921519339085,-0.541175663471222,-0.840856671333313,-0.00943877082318068,-0.102137714624405,-0.994746148586273,-0.00692749675363302,0.0949415564537048,-0.995466649532318,-0.00567884789779782,-0.0704759210348129,-0.997490704059601,-0.0067434860393405,0.466361969709396,-0.884495973587036,0.0131695745512843,-0.0585179105401039,-0.954994559288025,-0.290794104337692,0.097651481628418,-0.972633361816406,-0.210828721523285,
- 0.0950319394469261,-0.99542772769928,-0.00963017344474792,-0.101949043571949,-0.994743704795837,-0.0095654996111989,0.0800247937440872,-0.996746301651001,-0.00963846873492002,0.0976777076721191,-0.970414638519287,-0.22080472111702,0.983196675777435,-0.0197702515870333,0.181476235389709,0.782853543758392,-0.622185468673706,-0.00506041012704372,0.988810122013092,-0.0190668422728777,0.147956222295761,0.989010989665985,-0.14782902598381,-0.00196744780987501,0.985495448112488,-0.167735874652863,-0.0257562063634396,0.999470949172974,-0.0311889871954918,-0.00922047905623913,0.0948992967605591,-0.99547952413559,-0.00385194947011769,0.079467348754406,-0.996830523014069,-0.00371507927775383,0.0944785624742508,-0.995433509349823,0.0136342318728566,0.999492347240448,-0.0316063351929188,0.00400889059528708,0.999867379665375,-0.0158356986939907,0.00379960075952113,0.976278364658356,0.215913191437721,-0.0161877516657114,0.958192586898804,-0.00833368021994829,-0.286002606153488,0.965680837631226,0.0152075728401542,-0.259286463260651,0.999492347240448,-0.0316063351929188,0.00400889059528708,0.999870300292969,0.0157459899783134,0.00337780034169555,0.999867379665375,-0.0158356986939907,0.00379960075952113,0.65751451253891,0.753412187099457,-0.00668747955933213,0.6622114777565,0.748513877391815,-0.0346833132207394,0.308580905199051,0.00485954200848937,-0.951185703277588,0.999484121799469,-0.0316518768668175,0.00546296965330839,0.0830281898379326,-0.995658397674561,-0.0420806556940079,0.999492108821869,-0.0313938595354557,0.00547407520934939,0.0784325674176216,-0.996893405914307,0.00720254052430391,0.0727631151676178,-0.997331500053406,0.00596120674163103,0.976705253124237,-0.0274107567965984,0.212827488780022,0.97785484790802,-0.0098764318972826,0.209051132202148,0.977539837360382,-0.0274981148540974,0.208949342370033,0.0703357234597206,-0.997437477111816,0.0130890179425478,0.0176683235913515,0.000278241321211681,-0.999843895435333,0.0127448495477438,0.125312089920044,0.992035508155823,0.234556585550308,0.972009301185608,-0.0134603306651115,
- 0.0298868995159864,0.599104762077332,0.800112664699554,0.269701153039932,0.961768805980682,0.0475615262985229,0.280004292726517,0.959911942481995,-0.0129119642078877,-0.00858268048614264,0.998852252960205,0.0471222922205925,0.0387269221246243,0.997016906738281,-0.066765271127224,-0.0546606443822384,0.985980033874512,0.157656461000443,-0.0638348683714867,0.997742712497711,-0.0208479110151529,0.039165060967207,0.99901020526886,-0.0210880227386951,0.0784796848893166,0.996692001819611,-0.0211207512766123,0.999797284603119,0.0157448388636112,-0.0125499870628119,0.0784814357757568,0.996714174747467,-0.020041273906827,0.0391779206693172,0.999040007591248,-0.0196042843163013,-0.0630399510264397,0.998004257678986,-0.00367329688742757,0.078496977686882,0.996911585330963,-0.00238579465076327,-0.0627231597900391,0.998024225234985,-0.00367048429325223,0.0784894451498985,0.996815919876099,-0.0140511570498347,0.999524176120758,0.0157405380159616,-0.0265263076871634,0.999134480953217,0.0318894349038601,-0.0267101675271988,0.0783988833427429,0.995665788650513,0.0500323325395584,0.965443074703217,0.0263244863599539,0.259281188249588,-0.0633391514420509,0.99791818857193,0.0121453125029802,0.998879432678223,0.0320097766816616,-0.0348619557917118,0.99926483631134,0.0157364550977945,-0.0349584259092808,0.998919904232025,-0.0303539708256722,-0.0351812690496445,0.99944669008255,0.0313014797866344,0.0112494705244899,0.999462127685547,-0.031739104539156,0.0082545094192028,0.999474287033081,-0.0313492156565189,0.00827315263450146,-0.0308834388852119,-0.12918746471405,0.991139233112335,-0.0225750431418419,0.0150312138721347,-0.999632179737091,0.399685561656952,0.833276391029358,0.381971180438995,0.174058556556702,0.97890830039978,0.106968134641647,-0.0470622554421425,0.958359122276306,0.281661123037338,-0.0717301890254021,0.951260924339294,0.299929231405258,0.047801285982132,0.867251932621002,0.49556976556778,0.306942790746689,0.913517415523529,0.266968309879303,0.719285130500793,0.0335822515189648,-0.693902850151062,-0.0137723609805107,0.730620145797729,0.682645261287689,
- 0.31829234957695,0.905427575111389,0.280875265598297,0.0427974089980125,0.776467323303223,0.628702521324158,0.999490916728973,0.031389843672514,0.00572681101039052,0.99949699640274,-0.0314114056527615,0.00436982233077288,0.99948513507843,0.0315700955688953,0.00573067646473646,0.999488890171051,0.0315603502094746,0.00510448217391968,0.0550223402678967,0.998262465000153,0.0210866406559944,0.999493896961212,0.0313997901976109,0.00510115176439285,-0.0633172690868378,0.997947096824646,-0.00961934216320515,0.0550342388451099,0.998478353023529,-0.00352268456481397,0.0879201143980026,0.996125936508179,-0.0018127067014575,0.08828204870224,0.996086061000824,-0.00435045687481761,0.0550335235893726,0.998465299606323,-0.0062052826397121,0.997979760169983,0.0322940796613693,0.0547143779695034,-0.0622016042470932,0.997965157032013,0.0140195460990071,0.0846966058015823,0.996193587779999,0.0206141341477633,-0.0568189732730389,0.998282670974731,0.0142676327377558,0.133876770734787,0.920458078384399,-0.367197573184967,0.00882227718830109,0.918491840362549,-0.395341575145721,-0.0128698386251926,0.916616797447205,-0.399559795856476,0.9756920337677,0.0145696029067039,0.2186618745327,0.975304245948792,0.0341546125710011,0.218209326267242,0.975265920162201,-0.0272627510130405,0.219347089529037,0.976249992847443,0.0341172255575657,0.213943928480148,0.976676404476166,0.0144377835094929,0.21423052251339,0.0863454267382622,0.996223032474518,0.00918195117264986,0.978335499763489,0.0142085645347834,0.206538051366806,0.978016376495361,-0.0275485403835773,0.206700325012207,0.978360891342163,-0.00976418610662222,0.206675261259079,0.332222670316696,0.0323056131601334,0.942647576332092,0.337220191955566,-0.0444272570312023,0.940376937389374,0.33666405081749,-0.352380901575089,0.873203873634338,0.0596720948815346,0.998153269290924,-0.011374032124877,-0.0718443319201469,0.996586859226227,-0.0406604371964931,0.088363915681839,0.996076166629791,-0.00492506055161357,0.0594037845730782,0.998180866241455,-0.0103032179176807,0.088192030787468,0.996096551418304,-0.00371893309056759,
- 0.975163459777832,0.0146391643211246,0.221002593636513,0.222868248820305,0.633046746253967,-0.741337716579437,0.116733781993389,0.0321834683418274,0.992641746997833,-0.193122267723084,-0.580741047859192,0.790849924087524,0.0523161180317402,0.998470425605774,0.0178842004388571,-0.0704962015151978,0.997463166713715,-0.00987532921135426,-0.0779688060283661,0.996888756752014,-0.0115674948319793,-0.0381743609905243,0.980032861232758,0.195136740803719,0.0049162432551384,0.979443669319153,0.201658308506012,0.912196159362793,0.350358366966248,0.212478652596474,-0.207171067595482,0.775037050247192,0.596990585327148,-0.117511942982674,0.760946989059448,0.638083755970001,-0.272282063961029,0.780517876148224,0.562720417976379,-0.0236002430319786,0.986783742904663,0.160315558314323,-0.115763455629349,0.985303521156311,0.125601306557655,0.0123392827808857,0.984772622585297,0.173408925533295,-0.037507563829422,0.998827695846558,0.0306047350168228,0.0239304900169373,0.999713063240051,-0.00110017228871584,-0.182691097259521,0.977514147758484,0.105309873819351,-0.454865217208862,0.724998533725739,0.517179727554321,-0.532218992710114,0.647551536560059,0.545362174510956,0.210371717810631,0.966300010681152,0.148351177573204,-0.0389796048402786,0.997248888015747,-0.0630505755543709,0.0304537657648325,0.999534368515015,0.00193492230027914,0.0593205653131008,0.997817039489746,0.029023502022028,-0.048666026443243,0.997467398643494,-0.0518707036972046,0.0479638427495956,0.998005211353302,0.0410502217710018,-0.0485206469893456,0.99748170375824,-0.0517309755086899,0.759617805480957,-0.00426058005541563,-0.650355696678162,-0.558427274227142,0.547762989997864,0.622988641262054,0.169509515166283,0.978737950325012,0.115492694079876,0.0589962676167488,0.997826218605042,0.0293672904372215,0.0298741050064564,0.999550402164459,0.00256231962703168,0.736417710781097,0.0164493843913078,0.676327049732208,0.823674261569977,-0.00244442117400467,-0.567057907581329,0.505036056041718,0.771257758140564,0.387427598237991,0.523991763591766,0.766982913017273,0.370364457368851,
- 0.764848351478577,0.336758106946945,0.549182236194611,0.96916788816452,0.0115073444321752,0.246132358908653,0.745765328407288,0.354652345180511,0.563964366912842,0.065833680331707,0.997585475444794,0.0221147853881121,0.14781266450882,0.949183166027069,0.277853816747665,0.0194267183542252,0.992943167686462,-0.116989433765411,0.445726960897446,0.739677309989929,-0.50418758392334,0.232878193259239,0.931173980236053,0.280504673719406,0.145780861377716,-0.466584354639053,-0.872380137443542,0.0346838161349297,0.988908588886261,0.144419014453888,-0.189854517579079,0.978330135345459,0.0826175138354301,-0.186545372009277,0.97888445854187,0.0835827738046646,0.15712758898735,0.947571098804474,0.278244435787201,0.0516721643507481,0.997973799705505,0.0371258854866028,0.407110750675201,0.033607754856348,0.912760257720947,0.0901572480797768,0.987239420413971,-0.131263330578804,0.252327263355255,0.925998568534851,0.280815988779068,0.387445747852325,0.0328133180737495,0.92130845785141,0.0576045513153076,0.997862994670868,0.0308423675596714,0.742077052593231,0.0163961034268141,0.670114099979401,0.74171394109726,0.0455796495079994,0.669165909290314,-0.52025318145752,0.761632204055786,0.386332869529724,-0.0184878595173359,0.922003149986267,0.386740773916245,-0.423690497875214,0.814801216125488,0.395708680152893,-0.319807887077332,0.892416834831238,0.318300396203995,-0.0179988332092762,0.922906160354614,0.384604156017303,0.979685664176941,0.0493453629314899,0.194373622536659,0.0357909798622131,0.996190667152405,0.079518124461174,-0.0499614775180817,0.99795126914978,-0.039966743439436,0.0186576563864946,0.998273432254791,0.0556965507566929,-0.0477211140096188,0.997981309890747,-0.0419062376022339,0.0385119281709194,0.996215343475342,0.0779229924082756,-0.0542716942727566,0.997221410274506,-0.0510308034718037,0.622132539749146,0.0417039021849632,0.781800448894501,0.622712016105652,0.0319247804582119,0.781799554824829,-0.00173133984208107,0.997409999370575,0.0719055086374283,0.0357909798622131,0.996190667152405,0.079518124461174,0.0186576563864946,0.998273432254791,0.0556965507566929,
- 0.582175552845001,0.0311309918761253,0.812466979026794,0.0451871119439602,0.996233582496643,0.0740054547786713,0.0248992964625359,0.999180674552917,0.0319063775241375,-0.02334875613451,0.997409343719482,-0.0680397301912308,0.0161084923893213,0.999227404594421,0.0358490943908691,-0.030869722366333,0.997483968734741,-0.0638189613819122,-0.0309046152979136,0.997478187084198,-0.0638929903507233,0.434748649597168,0.00391213176771998,0.900543332099915,0.0318333320319653,0.996137320995331,0.0818364843726158,0.43443351984024,0.0278604719787836,0.900272965431213,0.028650363907218,0.999132513999939,0.0302227884531021,0.0491917990148067,0.99621593952179,0.0716522932052612,0.444939792156219,0.00359281292185187,0.895553290843964,0.623535394668579,-0.0368940532207489,0.780924141407013,0.621077954769135,0.031893789768219,0.783099710941315,0.620490431785584,0.0416469052433968,0.783107399940491,0.744996845722198,0.045677050948143,0.665502369403839,0.745650470256805,0.0163615997880697,0.66613644361496,0.745340526103973,-0.0314617902040482,0.665941178798676,0.433494538068771,0.00395127199590206,0.901147544384003,0.43333888053894,0.0278343129903078,0.900801122188568,0.433311402797699,-0.0283715799450874,0.900797605514526,0.587045788764954,0.0312290191650391,0.808951139450073,0.590686440467834,-0.0380788445472717,0.806002199649811,0.590233504772186,-0.0254120491445065,0.806832551956177,0.0593955665826797,0.436919748783112,0.897537350654602,0.808789014816284,-0.447279095649719,-0.381839871406555,-0.861487627029419,0.0123559553176165,-0.507628262042999,0.725791752338409,-0.032463688403368,0.687148094177246,0.726517200469971,0.0165387075394392,0.68694931268692,0.726225316524506,-0.0162346102297306,0.687265157699585,0.627223253250122,0.0172009635716677,0.778649508953094,0.789292335510254,-0.178899690508842,0.587377667427063,0.660881757736206,-0.0177231691777706,0.750280737876892,-0.449206471443176,0.024675540626049,0.893087148666382,-0.447166353464127,0.0281679593026638,0.894007205963135,-0.0669272392988205,0.522846579551697,0.849795460700989,
- 0.433671861886978,0.00394573947414756,0.901062250137329,0.43271267414093,-0.0283806324005127,0.901085078716278,0.432753533124924,-0.0272600669413805,0.901100158691406,0.239643037319183,-0.963860869407654,-0.116377130150795,0.645186603069305,-0.0180428028106689,0.763811945915222,0.618549644947052,-0.622680008411407,0.479234725236893,0.0594761446118355,-0.995465159416199,0.0742414966225624,0.725791752338409,-0.032463688403368,0.687148094177246,0.726225316524506,-0.0162346102297306,0.687265157699585,0.356355577707291,-0.885967493057251,0.296769976615906,0.163693651556969,-0.951161503791809,-0.261717766523361,0.227966994047165,-0.968128681182861,-0.10372106730938,-0.478898674249649,-0.778580784797668,0.405546694993973,-0.4342360496521,-0.854261517524719,-0.285790771245956,-0.41799321770668,-0.838956654071808,-0.348473250865936,0.742380917072296,-0.0316172428429127,0.669231653213501,0.0579645857214928,-0.995436787605286,0.0758007243275642,0.0458868592977524,-0.996832489967346,0.064958356320858,-0.40046226978302,-0.0184875447303057,-0.916126847267151,-0.471538424491882,-0.787316679954529,0.397220343351364,-0.660605669021606,-0.548466742038727,-0.51262503862381,0.0577771291136742,-0.995432913303375,0.0759940445423126,-0.0817627310752869,-0.995251655578613,-0.0528110340237617,0.04583740234375,-0.996831715106964,0.0650050416588783,-0.060120478272438,-0.995528519153595,-0.0728600323200226,0.0777304992079735,-0.995436191558838,0.0553609021008015,-0.0432124100625515,-0.997429072856903,-0.0571656636893749,0.100130461156368,-0.994883418083191,0.0134509187191725,0.110553458333015,-0.993475615978241,0.0280040092766285,0.588805437088013,-0.0381436683237553,0.80737429857254,-0.00562286376953125,-0.992408990859985,-0.122853137552738,0.108804248273373,-0.993639945983887,0.0290048718452454,0.0984354019165039,-0.995029330253601,0.0150697138160467,0.592426478862762,-0.0253614243119955,0.805225193500519,0.592803001403809,-0.0380055233836174,0.804450213909149,0.0994848310947418,-0.994446754455566,0.0343309827148914,-0.0620518289506435,-0.995538949966431,-0.0710753872990608,
- -0.0452850610017776,-0.997454881668091,-0.0550723411142826,-0.722448229789734,-0.0281940381973982,-0.690849959850311,-0.736632585525513,-0.0285214353352785,-0.675691545009613,-0.0407701581716537,-0.997387647628784,-0.0596311576664448,-0.737098753452301,-0.0101576950401068,-0.675708711147308,0.0677015334367752,-0.996327877044678,0.0524162203073502,-0.0358599461615086,-0.994811832904816,-0.0952020138502121,-0.023351801559329,-0.996722757816315,-0.077449232339859,-0.573455333709717,-0.024509385228157,-0.818870186805725,-0.023351801559329,-0.996722757816315,-0.077449232339859,-0.0358599461615086,-0.994811832904816,-0.0952020138502121,-0.00694011524319649,-0.997600972652435,0.0688779279589653,0.427695512771606,-0.0284559018909931,0.903474867343903,0.00268859718926251,-0.996025085449219,0.089032344520092,0.429688662290573,-0.0270670037716627,0.902571380138397,0.42965641617775,-0.0284266117960215,0.902544915676117,0.0148549694567919,-0.99799919128418,0.0614578239619732,-0.0419650971889496,-0.996871948242188,-0.06697166711092,-0.0391305647790432,-0.997370362281799,-0.061001680791378,0.0260165445506573,-0.996772050857544,0.0759517624974251,-0.00902452878654003,-0.997535169124603,0.0695857182145119,0.000859647756442428,-0.995936393737793,0.0900551378726959,-0.0663350820541382,-0.99654346704483,-0.0500097647309303,-0.0283121392130852,-0.996806979179382,-0.0746610686182976,-0.587072849273682,-0.0248617623001337,-0.80915230512619,-0.587293446063995,-0.017367472872138,-0.809187710285187,-0.432786852121353,-0.0176018569618464,-0.901324391365051,-0.432665973901749,-0.0244129560887814,-0.901223719120026,-0.0258987322449684,-0.996770024299622,-0.0760179907083511,-0.0355765745043755,-0.997414946556091,-0.0624327808618546,-0.0386664345860481,-0.996878683567047,-0.0688315257430077,-0.435149759054184,-0.0244527664035559,-0.900025963783264,-0.585741221904755,0.0237495433539152,-0.81015020608902,-0.585011303424835,-0.0173755083233118,-0.810839056968689,-0.58477383852005,-0.0248024612665176,-0.810817241668701,-0.433088064193726,0.0246939230710268,-0.901013374328613,
- -0.432665973901749,-0.0244129560887814,-0.901223719120026,-0.432786852121353,-0.0176018569618464,-0.901324391365051,-0.735572755336761,0.0342869386076927,-0.676577508449554,-0.735302627086639,-0.0284909475594759,-0.677139818668365,-0.735680758953094,-0.0102053079754114,-0.677251636981964,-0.696184635162354,-0.478260606527328,-0.53534460067749,-0.278328061103821,0.0185192748904228,-0.960307538509369,-0.317099362611771,-0.0199011899530888,-0.948183476924896,-0.994216442108154,0.0399273931980133,-0.099697008728981,-0.731140553951263,0.446628481149673,-0.515709757804871,-0.705219030380249,0.465782254934311,-0.534521341323853,-0.705219030380249,0.465782254934311,-0.534521341323853,0.481978505849838,0.614927709102631,-0.624147951602936,-0.994216442108154,0.0399273931980133,-0.099697008728981,-0.135207012295723,0.982105433940887,-0.131103470921516,-0.722192823886871,0.0338726453483105,-0.690861999988556,-0.0503319725394249,0.99748295545578,-0.0499455034732819,-0.722630679607391,-0.0281982850283384,-0.690658926963806,-0.722601354122162,0.0338853634893894,-0.690434038639069,-0.722734034061432,0.0274414103478193,-0.690581262111664,-0.725355863571167,0.0273753851652145,-0.687829554080963,-0.725198030471802,0.0339660793542862,-0.687702059745789,-0.135007798671722,0.982105851173401,-0.131305068731308,-0.59638786315918,0.0236490666866302,-0.802347898483276,-0.595689475536346,-0.0250833183526993,-0.802823185920715,-0.596374809741974,0.02996033616364,-0.802146911621094,-0.934418857097626,0.0185605362057686,-0.355692327022552,-0.239346623420715,0.970669746398926,-0.0226616337895393,-0.122719317674637,0.992165088653564,0.0234206467866898,-0.0507228896021843,0.997938990592957,-0.0393074154853821,-0.59638786315918,0.0236490666866302,-0.802347898483276,-0.596374809741974,0.02996033616364,-0.802146911621094,-0.586954355239868,0.0237383469939232,-0.809271931648254,-0.0505540408194065,0.997941732406616,-0.0394536405801773,-0.0900937467813492,0.991466999053955,-0.0942148193717003,-0.0608212128281593,0.992055356502533,-0.110122628509998,-0.430908232927322,0.0216277949512005,-0.902136564254761,
- -0.430898308753967,0.0247014574706554,-0.902062356472015,-0.430569648742676,-0.0243792533874512,-0.902228116989136,-0.430898308753967,0.0247014574706554,-0.902062356472015,-0.430908232927322,0.0216277949512005,-0.902136564254761,-0.424261510372162,0.0218313634395599,-0.905276536941528,-0.0551732331514359,0.992042183876038,-0.113173685967922,-0.0318542793393135,0.997480630874634,-0.0633858367800713,0.716527342796326,-0.680325210094452,-0.154097855091095,0.791207253932953,0.0316954292356968,-0.610726237297058,-0.800713658332825,0.511152327060699,0.312379509210587,0.829608619213104,0.0108058592304587,-0.55824077129364,0.822350800037384,0.0308447107672691,-0.568144142627716,0.742106318473816,-0.670282185077667,3.38777899742126e-005,-0.258968651294708,0.0262665711343288,-0.965528607368469,-0.332224369049072,-0.0240421071648598,-0.942893981933594,-0.330247223377228,-0.0226613096892834,-0.943622410297394,-0.789696872234344,-0.548387825489044,0.275044977664948,-0.330247223377228,-0.0226613096892834,-0.943622410297394,-0.332224369049072,-0.0240421071648598,-0.942893981933594,-0.987158715724945,0.0327086932957172,-0.156357929110527,-0.62835294008255,0.427818536758423,-0.649726092815399,-0.983551740646362,0.046467013657093,-0.174547344446182,-0.954975485801697,0.0451169535517693,-0.293234199285507,-0.606596887111664,0.400160998106003,-0.686958074569702,0.882499039173126,0.372450590133667,-0.287186533212662,-0.0263937450945377,0.997960209846497,-0.0581281520426273,-0.0284794792532921,0.99742603302002,-0.0658046305179596,-0.262962192296982,0.0124234119430184,-0.964726209640503,-0.262004941701889,0.0159504264593124,-0.964934706687927,-0.261985868215561,0.0123772853985429,-0.96499240398407,-0.0276124589145184,0.997435927391052,-0.0660238713026047,-0.259342730045319,-0.0277969501912594,-0.965385258197784,-0.25990417599678,0.0122789377346635,-0.96555632352829,-0.259935796260834,0.0160820297896862,-0.965492069721222,-0.801040053367615,0.576921939849854,0.15967433154583,-0.0324506163597107,0.130376607179642,-0.990933418273926,0.0946340784430504,0.0365496203303337,-0.994840919971466,
- -0.264741510152817,0.0157761480659246,-0.964190363883972,-0.263790786266327,-0.0314036644995213,-0.964068651199341,-0.263890087604523,-0.0275696367025375,-0.964158773422241,0.0639974996447563,0.00761874997988343,-0.997920989990234,0.0319609604775906,0.0332242026925087,-0.998936772346497,-0.0742414966225624,0.117402143776417,-0.990305483341217,-0.247775539755821,-0.0283711180090904,-0.968402028083801,-0.00818826537579298,-0.995413422584534,-0.0953160747885704,-0.0030724904499948,-0.997143387794495,-0.0754690915346146,-0.00686639454215765,-0.995395720005035,-0.0956045165657997,-0.263890087604523,-0.0275696367025375,-0.964158773422241,-0.263790786266327,-0.0314036644995213,-0.964068651199341,-0.0126946112141013,-0.997351288795471,-0.0716197863221169,-0.0185135807842016,-0.99548876285553,-0.09305689483881,0.0226353947073221,-0.998013198375702,0.0588004514575005,-0.30905419588089,0.0393243655562401,-0.95023113489151,-0.247838109731674,-0.0228786915540695,-0.968531250953674,-0.241900816559792,-0.0287977177649736,-0.969873547554016,0.724705159664154,-0.652079463005066,-0.222699120640755,-0.183724969625473,-0.0218720212578774,-0.982734382152557,-0.182183027267456,-0.0232202485203743,-0.982990503311157,-0.25239697098732,-0.0228508841246367,-0.967353999614716,-0.215358912944794,0.0715680941939354,-0.973908960819244,-0.238521099090576,0.0132803916931152,-0.971046507358551,-0.274783492088318,0.0140610532835126,-0.96140331029892,-0.255751579999924,0.0578530058264732,-0.965010046958923,0.397767871618271,0.914483189582825,-0.0741716623306274,0.104638665914536,0.0234858188778162,0.994232952594757,-0.0500912442803383,0.995126008987427,0.0849414989352226,-0.0475820302963257,0.993084132671356,0.107331089675426,0.00060539972037077,0.999211132526398,-0.0397088937461376,-0.0729518458247185,0.0139812557026744,-0.99723744392395,-0.0729710385203362,0.00957638770341873,-0.997288167476654,-0.0728916674852371,0.0139827458187938,-0.997241854667664,-0.000161153730005026,0.999214231967926,-0.0396360121667385,0.000434071058407426,0.999503433704376,-0.0315077677369118,
- -0.300458878278732,0.00792241934686899,-0.953761875629425,-0.545154809951782,0.838297843933105,0.00793737731873989,-0.0356430970132351,-0.382927477359772,-0.923090517520905,-0.0814742222428322,0.0097720492631197,-0.996627628803253,-0.0817818567156792,-0.0254670865833759,-0.996324837207794,-0.0817676186561584,-0.0235363803803921,-0.996373474597931,-0.0707237720489502,-0.0252260006964207,-0.997176945209503,-0.0707214698195457,0.00952452793717384,-0.997450649738312,-0.0707148984074593,0.0140366218984127,-0.997397840023041,-0.0402486026287079,-0.479810863733292,-0.876448273658752,-0.337674915790558,-0.0301996804773808,-0.940778195858002,-0.357254862785339,0.00626934878528118,-0.933985948562622,-0.0192255824804306,-0.996859073638916,-0.0768270343542099,-0.0842838138341904,-0.0235314313322306,-0.996163904666901,-0.0843049958348274,-0.0255216881632805,-0.996113121509552,-0.483902484178543,-0.0320890359580517,-0.874533414840698,-0.0382731035351753,-0.437728494405746,-0.898292303085327,-0.0111808497458696,-0.45697021484375,-0.889411747455597,-0.0390391051769257,-0.855705976486206,-0.515987634658813,0.382737159729004,-0.916254103183746,-0.118282526731491,-0.689363539218903,-0.033378180116415,-0.723646223545074,0.0495958663523197,-0.968691647052765,-0.243262737989426,0.321138948202133,-0.940283596515656,-0.112856507301331,-0.0482963994145393,-0.957490205764771,-0.284394115209579,0.0289724562317133,-0.994222283363342,-0.103357098996639,0.0307951532304287,-0.996096789836884,-0.0827213898301125,0.0453862696886063,-0.994933843612671,0.0897042006254196,0.0325268357992172,-0.995284378528595,0.0913838669657707,0.0232026055455208,-0.998011589050293,0.0586065463721752,-0.0199501477181911,-0.995490312576294,-0.0927417054772377,-0.803792536258698,-0.592918634414673,0.0486325621604919,0.0349084921181202,-0.890264511108398,0.454104036092758,-0.714959621429443,-0.688199162483215,0.123347520828247,0.0181168653070927,-0.998413681983948,0.05331065133214,0.0207937378436327,-0.99545806646347,0.0929023772478104,0.00892359297722578,-0.996741354465485,-0.080168791115284,
- 0.885391056537628,-0.0212559327483177,0.46436071395874,-0.605548143386841,-0.787334144115448,0.115829847753048,0.0335027724504471,-0.87195485830307,0.488438636064529,0.0687634721398354,-0.016791420057416,0.997491657733917,0.0207937378436327,-0.99545806646347,0.0929023772478104,0.0181168653070927,-0.998413681983948,0.05331065133214,0.0302837491035461,-0.827760636806488,0.560263514518738,0.901517927646637,-0.0110767967998981,0.432600170373917,0.898783087730408,-0.021049939095974,0.437888115644455,0.139185816049576,0.0200994443148375,0.990062296390533,-0.00906151812523603,-0.138313561677933,0.99034708738327,0.0114955715835094,-0.116709485650063,0.993099570274353,0.0271625835448503,-0.995381116867065,0.0920797809958458,0.0592385642230511,-0.0166510790586472,0.998104989528656,0.0593332573771477,-0.0212391372770071,0.998012244701386,0.0723242163658142,-0.0207076948136091,0.997166216373444,0.0723203048110008,-0.0168434586375952,0.997239291667938,0.072221577167511,0.0218486879020929,0.997149288654327,0.277108162641525,-0.0248713288456202,0.96051687002182,0.0192825440317392,-0.998015344142914,0.0599461495876312,0.0284962728619576,-0.995359778404236,0.0919070243835449,0.31815767288208,-0.00986748654395342,0.947986483573914,0.319831550121307,-0.0248919203877449,0.94714742898941,0.153233110904694,-0.985341489315033,0.0749789401888847,-0.00861204974353313,-0.997548639774323,0.0694456845521927,0.260701477527618,-0.0248503983020782,0.965099692344666,0.260962337255478,-0.0164385717362165,0.965209007263184,0.22479984164238,0.030086774379015,0.973940372467041,0.23939922451973,-0.0248126927763224,0.970604181289673,0.236488997936249,-0.0136391371488571,0.971538484096527,0.0892295613884926,0.0214145984500647,0.995780825614929,0.0891403183341026,0.0263273604214191,0.995671153068542,0.0898957401514053,-0.0199824701994658,0.995750784873962,0.260344803333282,-0.0248498637229204,0.965195894241333,0.261779993772507,0.0213789083063602,0.964890778064728,0.260648190975189,-0.0164187848567963,0.965294241905212,0.264346152544022,-0.0248556584119797,0.964107513427734,
- 0.26336395740509,0.0310712121427059,0.964196026325226,0.263592600822449,0.0214139427989721,0.964396357536316,0.986950755119324,-0.0621701292693615,0.14853635430336,0.988582789897919,0.0256904996931553,0.148472622036934,0.774283766746521,-0.62163633108139,0.118544541299343,-0.991031229496002,-0.0213327519595623,0.131916955113411,0.709287226200104,-0.655310213565826,-0.259769678115845,-0.644798159599304,0.716591656208038,0.265954375267029,0.266242831945419,0.0214650575071573,0.963666975498199,0.26598185300827,0.0311366356909275,0.963475108146667,-0.000836363062262535,0.997226476669312,0.0744226947426796,0.198415696620941,0.32792991399765,0.923630475997925,0.361828982830048,0.931454539299011,-0.0383698642253876,0.35421758890152,0.92758572101593,-0.118805043399334,0.25212636590004,0.949933409690857,-0.184550374746323,0.282786786556244,0.95535671710968,-0.0855873227119446,0.301609694957733,0.953245460987091,-0.0188325718045235,-0.811803102493286,0.512609362602234,0.279656141996384,-0.841280519962311,0.337803095579147,0.422061890363693,-0.826025068759918,0.458665519952774,0.327580034732819,0.799469888210297,0.402096629142761,-0.44628033041954,0.926627576351166,0.276151448488235,-0.255150645971298,0.9087935090065,0.299791753292084,-0.290205746889114,0.00893584173172712,0.997398614883423,0.0715280771255493,-0.0284794792532921,0.99742603302002,-0.0658046305179596,-0.0263937450945377,0.997960209846497,-0.0581281520426273,0.0106426794081926,0.998477339744568,0.0541267581284046,0.0152485091239214,0.997454643249512,0.0696540921926498,0.283767968416214,0.0315763056278229,0.958372950553894,-0.025371253490448,0.997457802295685,-0.0665903314948082,0.0109439669176936,0.997421085834503,0.0709322914481163,0.00667401682585478,0.99847549200058,0.0547933951020241,0.087081715464592,0.0214697998017073,0.995969891548157,-0.00376044865697622,0.99839323759079,0.0565417744219303,0.0870301797986031,0.0262653436511755,0.995859384536743,-0.666043221950531,0.730099022388458,0.152780801057816,-0.588653028011322,0.797486186027527,-0.132300287485123,
- -0.658462643623352,0.744309365749359,0.111492328345776,0.244810283184052,0.969481647014618,0.0131628438830376,0.206155583262444,0.976775288581848,-0.0583947896957397,0.123794466257095,0.9715576171875,-0.201868608593941,-0.00679720286279917,0.99797523021698,0.063239224255085,-0.0073453476652503,0.998339176177979,0.05714101344347,0.0885049551725388,0.0214332323521376,0.995845079421997,-0.00759465992450714,0.99833482503891,0.0571826547384262,-0.00706908386200666,0.997972428798676,0.0632540434598923,-0.0157857220619917,0.999147534370422,-0.0381453111767769,0.0114955715835094,-0.116709485650063,0.993099570274353,0.683888018131256,0.729540288448334,0.00826068595051765,0.139185816049576,0.0200994443148375,0.990062296390533,0.000434071058407426,0.999503433704376,-0.0315077677369118,-0.000161153730005026,0.999214231967926,-0.0396360121667385,0.00730238994583488,0.998020470142365,0.0624649375677109,0.05425139144063,0.822520315647125,0.566142439842224,0.622128546237946,0.782771170139313,0.0150178745388985,-0.0201123189181089,0.791330456733704,0.611057758331299,-0.174283891916275,0.984491765499115,-0.0200290996581316,-0.228223755955696,0.970812797546387,0.0737328231334686,0.0454290807247162,0.929087519645691,-0.367059350013733,-0.134458497166634,-0.92800098657608,0.34746977686882,0.00421714829280972,-0.995575428009033,0.0938720628619194,0.0152075067162514,-0.997187376022339,0.0733911246061325,0.136022344231606,0.990533173084259,0.0184946171939373,0.0343092605471611,0.992333114147186,0.118734464049339,0.102781549096107,0.993364810943604,0.0515986084938049,-0.0366359278559685,0.997889995574951,0.0536036640405655,0.0391792468726635,0.99910432100296,-0.0159888565540314,-0.0358467400074005,0.997957229614258,0.0528803467750549,-0.0448774062097073,0.998010039329529,0.0442943759262562,0.0251764748245478,0.999500155448914,-0.0191218536347151,0.031127080321312,0.999214887619019,-0.0245101489126682,-0.200039207935333,0.970609664916992,-0.13379579782486,0.320162266492844,0.928143739700317,-0.189856708049774,-0.0905802249908447,0.984629988670349,-0.149329081177711,
- -0.41615018248558,0.821339726448059,0.390153974294662,0.375964671373367,0.780462920665741,0.499527990818024,-0.492453366518021,0.79195362329483,0.360969692468643,-0.774218678474426,-0.114669263362885,0.622443914413452,0.417076647281647,0.730147540569305,0.541231691837311,-0.693113386631012,0.0218303427100182,0.720498025417328,-0.0365243703126907,0.997887313365936,0.0537295676767826,-0.035729818046093,0.997955679893494,0.0529907792806625,-0.731294453144073,0.0230328980833292,0.681672930717468,-0.693113386631012,0.0218303427100182,0.720498025417328,-0.787014126777649,-0.141072750091553,0.600589275360107,-0.774218678474426,-0.114669263362885,0.622443914413452,0.0688377693295479,0.996988773345947,-0.0357041917741299,0.00128404598217458,0.998753249645233,0.0499026402831078,-0.0159475449472666,0.997303068637848,0.0716411769390106,-0.0319753885269165,0.999164223670959,0.0254673287272453,0.0345261506736279,0.997408449649811,-0.0631223171949387,0.0293167810887098,0.997989535331726,-0.0561903044581413,-0.730791628360748,0.0345255881547928,0.681726932525635,-0.731110274791718,0.0230270959436893,0.681870639324188,-0.0391277223825455,0.997993469238281,0.0497808270156384,0.000741060823202133,0.998773694038391,0.049504391849041,-0.616101801395416,0.0291071720421314,0.787128567695618,-0.0163664780557156,0.997324466705322,0.0712468847632408,-0.423371195793152,-0.827954292297363,0.367761760950089,0.216020315885544,-0.00680378964170814,0.976365208625793,0.206460610032082,-0.023106662556529,0.978182017803192,-0.732125699520111,-0.0214435271918774,0.680831968784332,-0.731720507144928,0.0230463147163391,0.681215107440948,-0.731379687786102,0.0345533713698387,0.681094586849213,-0.737644016742706,0.0232328847050667,0.67479008436203,-0.738219141960144,-0.0212354846298695,0.674226641654968,-0.738227307796478,-0.0159298591315746,0.674364030361176,-0.600114226341248,0.00787115842103958,0.799875617027283,-0.599296867847443,0.0283132400363684,0.800026059150696,0.00560134090483189,0.998575270175934,0.0530684031546116,-0.60059380531311,0.00786171294748783,0.799515604972839,
- -0.601019144058228,-0.0251602716743946,0.798838555812836,-0.600000500679016,0.0283464826643467,0.799497246742249,0.177540197968483,-0.0232402961701155,0.983839094638824,-0.463824987411499,-0.786825478076935,-0.407151311635971,-0.364758342504501,-0.872063338756561,0.326277375221252,-0.924115061759949,-0.00125898083206266,0.382112264633179,0.359573185443878,0.880967557430267,0.307576715946198,-0.928691506385803,-0.285460740327835,0.236736685037613,-0.742378056049347,-0.0158219151198864,0.669794380664825,-0.068858914077282,-0.996689796447754,0.043219268321991,-0.0509372353553772,-0.998336553573608,0.0270112864673138,-0.0674798861145973,-0.996726512908936,0.0445273481309414,-0.741982042789459,-0.0158322714269161,0.670232832431793,-0.741953015327454,-0.0211061295121908,0.67011958360672,-0.532703101634979,-0.591613411903381,-0.605161905288696,-0.336943328380585,-0.890264511108398,0.306428551673889,-0.537137985229492,-0.687197744846344,-0.489123910665512,0.0478403568267822,-0.996826529502869,-0.0636250972747803,-0.0514783635735512,-0.998323440551758,0.0264630429446697,-0.0693719685077667,-0.996675252914429,0.0427325256168842,0.222372278571129,-0.968761682510376,-0.109779447317123,0.286452800035477,-0.940255224704742,0.184024691581726,0.1944779753685,-0.957566976547241,-0.21270589530468,-0.594021499156952,0.00799053162336349,0.804409444332123,-0.59381377696991,-0.0170444641262293,0.804421961307526,-0.593662977218628,-0.0253327544778585,0.804314970970154,0.431969702243805,0.0241056252270937,0.901565909385681,0.434743642807007,0.0176024287939072,0.900382280349731,0.100082941353321,0.578851521015167,0.80926775932312,-0.591972410678864,-0.0253719333559275,0.805558860301971,-0.043346282094717,-0.997462689876556,0.0564742423593998,-0.0480668358504772,-0.996861696243286,0.0629000291228294,-0.0415052585303783,-0.99747234582901,0.0576734654605389,-0.590367555618286,-0.0254089627414942,0.806734561920166,-0.590477824211121,-0.016893794760108,0.806877076625824,0.0459592714905739,-0.996792078018188,-0.0655234381556511,-0.0708235129714012,-0.99663120508194,0.0413550771772861,
- 0.0512617826461792,-0.996203541755676,-0.0703622177243233,-0.0480668358504772,-0.996861696243286,0.0629000291228294,-0.043346282094717,-0.997462689876556,0.0564742423593998,0.0503974370658398,-0.996195316314697,-0.0710995718836784,0.382679760456085,-0.85612165927887,-0.347292244434357,0.328446716070175,-0.916295886039734,0.229182496666908,0.148672789335251,-0.0389024019241333,-0.988120973110199,0.395275235176086,-0.0361358895897865,-0.917851686477661,0.686064422130585,-0.441002011299133,-0.578647553920746,0.694666087627411,-0.458249032497406,-0.554478943347931,0.737073302268982,-0.028531527146697,-0.675210297107697,0.0459592714905739,-0.996792078018188,-0.0655234381556511,0.0512617826461792,-0.996203541755676,-0.0703622177243233,0.0405905321240425,-0.996654570102692,-0.0709370523691177,0.730108559131622,-0.0283714681863785,-0.68274199962616,0.730163335800171,-0.0268796738237143,-0.682743728160858,0.666487395763397,-0.485056281089783,-0.566140413284302,0.535302817821503,-0.0332285985350609,-0.844006359577179,0.51690411567688,0.00546997226774693,-0.856025815010071,0.56758850812912,0.00692505622282624,-0.82328337430954,-0.34085401892662,0.838357746601105,-0.425411462783813,0.706632971763611,-0.388551771640778,-0.591352164745331,0.741294085979462,0.0122268768027425,-0.671069025993347,0.031127080321312,0.999214887619019,-0.0245101489126682,0.0251764748245478,0.999500155448914,-0.0191218536347151,0.0425915271043777,0.999015927314758,-0.0123753920197487,0.737067401409149,0.0120904799550772,-0.675711154937744,0.737060248851776,0.0106416260823607,-0.675743222236633,0.741573989391327,-0.0263918023556471,-0.670351803302765,0.742171227931976,0.0105531848967075,-0.670127213001251,0.742174327373505,0.0122553408145905,-0.670094788074493,0.7342289686203,0.0106900436803699,-0.678817749023438,0.733562231063843,-0.0267360731959343,-0.679096281528473,0.733507037162781,-0.028449721634388,-0.679086267948151,0.0876103043556213,-0.99538242816925,-0.0392204523086548,0.600518703460693,-0.0172878988087177,-0.799423813819885,0.600713968276978,-0.0252119898796082,-0.799066483974457,
- 0.59872430562973,-0.0173831507563591,-0.80076652765274,0.597764015197754,0.0126231936737895,-0.801572799682617,0.598885178565979,-0.0251651983708143,-0.800439417362213,-0.000633265764918178,-0.99644935131073,0.0841919630765915,0.0866113752126694,-0.995691001415253,-0.0331344529986382,0.0897455960512161,-0.995262920856476,-0.0373828560113907,0.609316408634186,-0.0168172866106033,-0.792748868465424,0.0867317467927933,-0.995429396629334,-0.0399762541055679,0.0830331072211266,-0.995927810668945,-0.0351200960576534,-0.0295378677546978,-0.99741804599762,0.0654589459300041,-0.0327192358672619,-0.996867656707764,0.0720026418566704,0.0328149199485779,-0.997483849525452,-0.0628436431288719,0.607075154781342,0.0125125357881188,-0.794546008110046,0.607681155204773,-0.0169052202254534,-0.794001162052155,0.606446921825409,0.0304641053080559,-0.794540226459503,0.609332263469696,0.0307035371661186,-0.792320370674133,0.0925138592720032,0.979805946350098,-0.177261039614677,0.610087692737579,0.0124761527404189,-0.792235672473907,0.110122129321098,0.980366468429565,-0.163568928837776,0.599697172641754,0.0299050249159336,-0.799668073654175,0.0626112744212151,0.992967844009399,-0.100472286343575,0.647478342056274,0.033894844353199,-0.761329829692841,-0.494316071271896,0.804432511329651,-0.329454034566879,-0.426873505115509,0.807124078273773,-0.407835394144058,0.450515925884247,0.0178697947412729,-0.892589509487152,0.030183345079422,0.996883630752563,-0.0728837922215462,0.0266437642276287,0.997471749782562,-0.0658805221319199,0.012881375849247,0.9966139793396,-0.0812075808644295,0.447644501924515,0.017643503844738,-0.894037663936615,0.447750270366669,0.0140451956540346,-0.89404833316803,0.44925856590271,-0.024547616019845,-0.893064498901367,0.448412030935287,0.0140009019523859,-0.893717288970947,0.448295891284943,0.0176948234438896,-0.893710076808929,0.404746115207672,0.911525905132294,0.0728096291422844,0.387665927410126,0.915601849555969,0.106715857982636,0.49428328871727,0.0108698029071093,-0.869232952594757,0.0497441440820694,-0.996678471565247,-0.0644791200757027,
- 0.433621793985367,-0.0252192504703999,-0.900741994380951,0.0455915294587612,-0.997399747371674,-0.0558154433965683,0.0457927398383617,-0.99675577878952,-0.0661889687180519,0.0417038016021252,-0.997447788715363,-0.0579558424651623,-0.0245402492582798,-0.996872365474701,0.0751221403479576,0.436556905508041,0.0147908162325621,-0.899555027484894,0.436926752328873,-0.0250784009695053,-0.89914745092392,0.436926037073135,-0.024082537740469,-0.899175107479095,0.437158226966858,-0.0240953341126442,-0.899061799049377,0.43715637922287,-0.0250685922801495,-0.899036049842834,0.0435613244771957,-0.996791243553162,-0.0671538487076759,0.605720579624176,0.0315982811152935,-0.795049786567688,0.525265455245972,0.841510415077209,0.126318618655205,0.59278666973114,0.0037010689266026,-0.805351138114929,0.5585657954216,-0.0307870898395777,-0.828888654708862,0.591710686683655,0.0313222520053387,-0.805541694164276,0.577956557273865,0.00482304766774178,-0.81605327129364,0.273607939481735,0.0237600617110729,-0.961547911167145,-0.00182236544787884,0.99790096282959,-0.0647334158420563,0.005606384947896,0.995867073535919,-0.0906495377421379,0.0157648902386427,-0.996739685535431,-0.0791306272149086,0.277157962322235,-0.0237059332430363,-0.960531949996948,0.277258783578873,-0.0152819799259305,-0.960673749446869,0.277157962322235,-0.0237059332430363,-0.960531949996948,0.277468889951706,0.0238641873002052,-0.960438191890717,0.277258783578873,-0.0152819799259305,-0.960673749446869,-0.00760613288730383,0.997800827026367,-0.065846398472786,0.259070664644241,0.0233656223863363,-0.965575695037842,0.258901417255402,0.0289221778512001,-0.965470731258392,0.259070664644241,0.0233656223863363,-0.965575695037842,0.260191768407822,-0.0242553818970919,-0.965252280235291,0.258901417255402,0.0289221778512001,-0.965470731258392,-0.291167467832565,0.0157175306230783,-0.95654296875,-0.196484267711639,0.957935154438019,-0.209175050258636,-0.165387839078903,0.981609463691711,-0.0953401848673821,0.0957863703370094,0.0257682222872972,-0.995068311691284,0.0957604572176933,0.0376530662178993,-0.994692027568817,
- 0.0189230963587761,0.982028603553772,-0.18778096139431,0.0998198390007019,-0.0289675258100033,-0.994583785533905,0.0995500832796097,0.0375788435339928,-0.994322717189789,0.099629707634449,0.0258500427007675,-0.994688749313354,0.00824899692088366,0.997491896152496,-0.0702986791729927,0.020050136372447,0.982032179832459,-0.187645316123962,0.100186608731747,0.0375663228332996,-0.994259297847748,-0.0149752022698522,0.464545547962189,-0.885422646999359,0.788360834121704,0.615180552005768,-0.00635007862001657,-0.532280087471008,0.0416714213788509,-0.845542073249817,-0.532280087471008,0.0416714213788509,-0.845542073249817,-0.569175004959106,0.000496790686156601,-0.822216212749481,-0.0149752022698522,0.464545547962189,-0.885422646999359,0.0859901458024979,0.0378417707979679,-0.995577096939087,0.0868891105055809,-0.0293108597397804,-0.995786726474762,0.0867620185017586,-0.0177356600761414,-0.99607127904892,0.0281242094933987,-0.446215152740479,-0.894483804702759,0.53504753112793,-0.0259369295090437,-0.844423711299896,-0.00933344848453999,-0.469315469264984,-0.882981240749359,0.471791982650757,-0.0250242948532104,-0.881354689598084,-0.604732155799866,-0.78681206703186,-0.123393312096596,-0.00460252910852432,-0.550797045230865,-0.83462655544281,0.0837702825665474,-0.0176690388470888,-0.99632853269577,0.0840191468596458,-0.0293863397091627,-0.996030747890472,0.0289914049208164,-0.997263193130493,-0.0680118128657341,-0.61823844909668,-0.776126801967621,-0.12413078546524,-0.0432153791189194,-0.85459566116333,-0.517492711544037,0.0159406047314405,-0.839451789855957,-0.543200373649597,0.288343995809555,-0.0233380906283855,-0.957242429256439,0.0152681488543749,-0.996730446815491,-0.0793439447879791,0.0192859452217817,-0.995513081550598,-0.092637799680233,0.0195910315960646,-0.995511531829834,-0.0925912708044052,0.0173078887164593,-0.997444152832031,-0.069322906434536,0.0987696796655655,-0.0289956051856279,-0.994687855243683,-0.0336154252290726,-0.996862471103668,0.0716604292392731,0.0171175170689821,-0.995522022247314,-0.0929682552814484,
- 0.0131825786083937,-0.996688425540924,-0.0802392736077309,-0.0133622707799077,-0.886598646640778,0.46234655380249,0.308105051517487,-0.950756132602692,-0.0336772501468658,0.221694469451904,-0.96809184551239,0.116831943392754,0.0232502315193415,-0.995484590530396,-0.0920324847102165,0.00692700408399105,-0.995398759841919,0.0955695509910584,0.0212651956826448,-0.997398316860199,-0.0688799247145653,0.0683917254209518,-0.994028329849243,-0.0850311815738678,0.0244383960962296,-0.995303630828857,0.0936674922704697,0.0268611870706081,-0.996104836463928,0.0839861780405045,-0.0202796161174774,-0.995500922203064,0.092556320130825,-0.00401032157242298,-0.99535745382309,-0.096163883805275,-0.0189315602183342,-0.996872901916504,0.0767207816243172,0.239123657345772,-0.963748931884766,0.11835490167141,-0.204135552048683,-0.0202352255582809,0.978733479976654,0.00483061000704765,-0.62624192237854,0.779613792896271,-0.164071455597878,-0.0194073207676411,0.986257612705231,0.00191756640560925,-0.149059116840363,0.988826513290405,0.0257774777710438,-0.167158141732216,0.98559308052063,-0.0713084265589714,-0.0263611003756523,0.997105956077576,-0.0209740698337555,-0.995493769645691,0.0924784764647484,-0.0198623929172754,-0.996866226196289,0.0765713155269623,-0.020429776981473,-0.995499432086945,0.0925394967198372,-0.0959285870194435,-0.0272809900343418,0.995014309883118,-0.0958414897322655,-0.0179369654506445,0.995235025882721,0.0259948670864105,-0.995208859443665,0.0942530333995819,-0.251892954111099,-0.0327642969787121,0.967200338840485,0.0286546498537064,-0.996031105518341,0.0842672288417816,0.0180170517414808,0.2648064494133,0.964133262634277,0.306458652019501,-0.00775062246248126,0.951852440834045,0.28632527589798,0.0128328176215291,0.958046555519104,-0.0959285870194435,-0.0272809900343418,0.995014309883118,-0.0954493656754494,0.0164255667477846,0.995298743247986,-0.0958414897322655,-0.0179369654506445,0.995235025882721,0.942219138145447,-0.00214361143298447,0.334990262985229,0.00703151756897569,0.767191290855408,0.641379773616791,0.0350846908986568,0.761772274971008,0.646894156932831,
- -0.248108819127083,-0.0326385088264942,0.96818220615387,0.00898589380085468,-0.996093928813934,0.0878415629267693,-0.247973784804344,-0.0361612923443317,0.968091607093811,-0.0283153206110001,-0.997400999069214,0.0662533119320869,-0.439928114414215,-0.0318693555891514,0.897467315196991,-0.0313861593604088,-0.996873676776886,0.0725115239620209,-0.440893650054932,-0.0318431332707405,0.896994352340698,-0.0238562468439341,-0.99732106924057,0.0691491290926933,-0.441270649433136,-0.0103073883801699,0.8973149061203,0.999961495399475,-0.00781031837686896,0.00402551144361496,-0.899516820907593,-0.427784025669098,-0.0887145921587944,0.0139404069632292,0.981273412704468,0.192115262150764,-0.902638673782349,0.424883186817169,-0.0686855241656303,-0.0476403385400772,0.96609491109848,0.253754049539566,0.0130896866321564,0.963994681835175,0.26559916138649,-0.0471048504114151,0.998832881450653,-0.0106812352314591,0.0342910438776016,0.999053001403809,0.0267806388437748,-0.193877086043358,0.977883517742157,-0.0784583762288094,0.024859257042408,0.997272312641144,-0.0694983825087547,0.0165064241737127,0.999545156955719,0.0252397302538157,0.0129870045930147,0.997827291488647,0.0645909681916237,-0.0787818059325218,0.0163173098117113,0.996758341789246,0.0127416681498289,0.997832000255585,0.0645679011940956,0.0158966854214668,0.999556362628937,0.0251867678016424,0.0107937874272466,0.997476160526276,-0.0701773390173912,-0.00298500270582736,0.998003959655762,0.0630810484290123,0.0108025511726737,0.997470140457153,-0.0702622756361961,0.0105131901800632,0.997871518135071,0.0643581748008728,-0.0711039751768112,0.016265956684947,0.997336268424988,-0.0707319900393486,0.0381288826465607,0.99676638841629,-0.0657567456364632,0.038220502436161,0.997103452682495,-0.0657981261610985,0.01622992195189,0.997700989246368,-0.0657880902290344,-0.0261528566479683,0.997490882873535,0.0178862158209085,0.997721672058105,0.0650508552789688,-0.131918892264366,0.949265599250793,0.285468757152557,0.0990982875227928,0.993429124355316,-0.0572567395865917,-0.128006562590599,0.948086619377136,0.291111767292023,
- -0.00682148151099682,0.998008131980896,0.06271593272686,-0.46400710940361,0.0275511872023344,0.885402977466583,0.668492197990417,0.742486357688904,0.0428038574755192,-0.0781279876828194,0.929260313510895,0.361069887876511,0.770564436912537,-0.471470475196838,-0.428889393806458,0.117111511528492,0.993066430091858,0.0101952590048313,-0.0770633146166801,0.928783059120178,0.362523704767227,-0.4645015001297,0.0275332145392895,0.885144233703613,-0.1519525796175,0.977367043495178,0.147187486290932,-0.255457758903503,0.960380434989929,-0.111403457820416,-0.253361403942108,0.961577773094177,-0.10571763664484,-0.489423036575317,0.869552493095398,-0.0659056901931763,-0.341164827346802,0.908990383148193,0.239464432001114,0.466457456350327,0.0421308167278767,0.883539736270905,-0.649565398693085,0.740249514579773,-0.173480361700058,-0.338830232620239,0.910156011581421,0.238348662853241,-0.604431509971619,0.790666878223419,-0.0975109562277794,-0.233116045594215,-0.0321364849805832,0.971917808055878,-0.235041931271553,0.0285025779157877,0.971567213535309,-0.235186412930489,0.0345378704369068,0.971336424350739,-0.233235567808151,0.0284702125936747,0.972003400325775,-0.0438845939934254,0.997956275939941,0.0464474894106388,-0.233380705118179,0.0345833860337734,0.971770286560059,-0.254034250974655,0.0288377851247787,0.966765284538269,-0.251811057329178,-0.0327615775167942,0.967221736907959,-0.251663357019424,-0.0360948406159878,0.967141628265381,-0.0228817239403725,0.996163725852966,0.0844646245241165,0.02000742405653,0.997966945171356,-0.0605125539004803,-0.0137419765815139,0.998468816280365,0.0535834468901157,-0.0102512268349528,0.998466372489929,0.0544063337147236,-0.287269622087479,0.0294016059488058,0.957398414611816,-0.0196757037192583,0.996122598648071,0.0857486426830292,0.0015929052606225,0.997943818569183,-0.0640751644968987,-0.0393316708505154,0.996188282966614,0.0778588280081749,-8.96751807886176e-005,0.998301148414612,-0.0582648739218712,0.323365211486816,0.921173512935638,0.216504916548729,0.380628943443298,0.918970823287964,0.103025302290916,
- 0.391303330659866,0.916758835315704,0.0802176967263222,-0.449541360139847,0.014158783480525,0.89314728975296,-0.449033081531525,0.0317004509270191,0.892952620983124,-0.450215220451355,-0.0315873250365257,0.892361223697662,-0.444530069828033,0.0316472798585892,0.895204663276672,-0.444900095462799,0.0140126012265682,0.89547061920166,-0.0276068262755871,0.996202826499939,0.0825701802968979,-0.4383285343647,0.0138056231662631,0.898708820343018,-0.438177347183228,-0.0319167822599411,0.898321747779846,-0.438363611698151,-0.0101817147806287,0.898740172386169,-0.991688549518585,0.0312342867255211,0.12481315433979,-0.990719616413116,-0.0379770770668983,0.130508676171303,-0.927541851997375,-0.343142598867416,0.148051485419273,-0.0122051145881414,0.995980381965637,0.0887362733483315,0.00442473590373993,0.99839860200882,0.0563991069793701,0.0625164359807968,0.996401131153107,-0.0572421699762344,-0.0138958618044853,0.996018171310425,0.0880606397986412,-0.457767188549042,0.014417864382267,0.888955175876617,0.00292482576332986,0.998450100421906,0.0555776134133339,0.552799463272095,0.758634984493256,0.344797968864441,-0.998560011386871,0.0314507111907005,-0.0434606783092022,-0.787174582481384,-0.552988648414612,-0.273056477308273,0.0266437642276287,0.997471749782562,-0.0658805221319199,0.030183345079422,0.996883630752563,-0.0728837922215462,-0.0265256464481354,0.99887079000473,0.0394158624112606,-0.199831813573837,0.974800705909729,-0.0991508066654205,-0.212203860282898,0.975133538246155,-0.063906617462635,-0.38418847322464,0.372311562299728,0.844856977462769,-0.559673964977264,0.78515762090683,-0.265127599239349,-0.459041386842728,0.801214873790741,-0.383843719959259,-0.503750324249268,0.796714842319489,-0.333887934684753,-0.172704458236694,0.981811761856079,-0.0788605362176895,-0.120420917868614,0.979761838912964,-0.159892529249191,-0.189957991242409,0.98044615983963,-0.0513942390680313,-0.0497858971357346,0.970573484897614,-0.23560257256031,0.362526386976242,0.930857360363007,0.0455980189144611,0.0491968095302582,0.983721971511841,-0.172831565141678,
- -0.569620072841644,0.820120811462402,0.0541739016771317,-0.0525845550000668,0.773613393306732,0.63147234916687,-0.611168324947357,0.79120796918869,-0.0215252228081226,0.0470976755023003,0.998872876167297,0.00591608416289091,0.0862465277314186,0.996258437633514,0.0055333636701107,-0.0551411248743534,0.998454928398132,0.00686946418136358,-0.993589103221893,-0.111263789236546,0.0200275368988514,-0.0494830943644047,0.691990971565247,0.720208346843719,-0.987832367420197,0.019690427929163,0.154270991683006,-0.0547660402953625,0.998360931873322,-0.0166194457560778,0.0864114463329315,0.996114671230316,-0.0169924460351467,-0.0478387847542763,0.998716354370117,-0.0166455749422312,-0.0547660402953625,0.998360931873322,-0.0166194457560778,-0.0478387847542763,0.998716354370117,-0.0166455749422312,-0.999719381332397,0.0235560610890388,0.00251274765469134,-0.061371885240078,0.778302371501923,-0.62488317489624,0.0735034793615341,0.793740212917328,-0.603799521923065,0.046525102108717,0.791843116283417,-0.608949840068817,-0.987832367420197,0.019690427929163,0.154270991683006,-0.990250706672668,-0.139003828167915,-0.00902739074081182,-0.993589103221893,-0.111263789236546,0.0200275368988514,-0.0475466698408127,0.998827695846558,-0.00909220520406961,0.0704845041036606,0.997432291507721,-0.0126791745424271,0.0621801428496838,0.997987508773804,-0.0124316290020943,-0.560652017593384,-0.827498197555542,0.0302652362734079,-0.466985672712326,-0.00985569600015879,0.884210050106049,-0.472812384366989,-0.0213183872401714,0.880905210971832,-0.0393832623958588,0.983009994029999,0.179277196526527,0.0703539550304413,0.986297369003296,0.149224758148193,-0.0197294540703297,0.984538197517395,0.17405566573143,0.236958652734756,0.429925113916397,0.871214687824249,0.0899581983685493,0.34698423743248,0.933546721935272,0.0729568004608154,0.336780905723572,0.938752353191376,-0.123329050838947,0.403041690587997,-0.906833648681641,-0.116754576563835,0.412246257066727,-0.9035604596138,-0.213895693421364,0.267747402191162,-0.939446687698364,-0.0472858659923077,0.998878538608551,-0.00240684393793345,
- -0.999482572078705,0.0316193513572216,0.00590912811458111,-0.99970680475235,0.0234749857336283,0.00593240978196263,0.129418060183525,0.91698157787323,0.377353549003601,0.0263810642063618,0.937432885169983,0.347165107727051,0.000319935381412506,0.940826416015625,0.338888853788376,-0.0385994203388691,0.999227106571198,0.00744383875280619,0.0694785565137863,0.997486233711243,-0.013931242749095,0.0693686380982399,0.997494161128998,-0.0139095028862357,-0.0467466339468956,0.998843550682068,0.0112477475777268,-0.0386366918683052,0.999211668968201,0.00913102645426989,-0.967383444309235,0.0211972575634718,0.252428263425827,-0.0479779690504074,0.998642802238464,-0.0202690400183201,-0.999444544315338,0.0164242964237928,0.0289988107979298,-0.999072670936584,0.0321435444056988,0.0286466628313065,-0.761958956718445,0.562825620174408,-0.32038414478302,0.0325968265533447,0.811642825603485,0.583243906497955,0.0809933692216873,0.787229478359222,0.611318171024323,-0.287026315927505,0.0271391104906797,0.957538187503815,-0.0835710763931274,0.898325204849243,-0.431309312582016,-0.0457639321684837,-0.699047803878784,0.713609099388123,-0.0368297286331654,0.99917608499527,0.0170506164431572,0.0715381279587746,0.997422456741333,-0.00555036589503288,-0.082659438252449,0.996223568916321,0.0265741068869829,0.0623162798583508,0.997216463088989,-0.0409389063715935,0.0520553775131702,0.997963488101959,-0.0368675477802753,-0.0852649360895157,0.996199131011963,0.0178092606365681,-0.888762593269348,0.433041453361511,-0.150253355503082,0.179065570235252,-0.448429733514786,0.875697612762451,0.710899174213409,0.00541748758405447,-0.703273117542267,-0.0360885635018349,0.999126553535461,0.0210679173469543,-0.0813412666320801,0.996204137802124,0.0309987030923367,-0.976502895355225,0.0102931559085846,0.215258374810219,-0.398959100246429,-0.0639041885733604,0.91473925113678,-0.399671256542206,0.0279373284429312,0.916232764720917,-0.31342414021492,-0.619761109352112,0.719487011432648,-0.759304940700531,0.0273157022893429,-0.650161445140839,-0.759945869445801,0.0289357900619507,-0.649342060089111,
- -0.808210372924805,0.524641394615173,-0.267483562231064,-0.998928606510162,0.0322464369237423,0.0331944487988949,-0.999302804470062,0.0165278986096382,0.0334791950881481,-0.998916387557983,-0.0314619354903698,0.0342968814074993,-0.999184429645538,-0.0314703769981861,0.025300482288003,-0.999506592750549,0.0163734927773476,0.0268067475408316,-0.999517679214478,-0.0173625405877829,0.0257509090006351,-0.999706029891968,0.0234715025871992,0.00607908656820655,-0.999482393264771,0.031619805842638,0.00592858158051968,-0.9998579621315,-0.0154249332845211,0.0067915734834969,-0.999872803688049,-0.015835952013731,-0.00190339214168489,-0.999426543712616,0.0311651900410652,-0.0132422028109431,-0.999502658843994,-0.031480398029089,0.00187372823711485,-0.999873578548431,-0.0157777424901724,0.00201319600455463,-0.999720394611359,0.0235699191689491,0.00192712037824094,-0.999875485897064,-0.0156509727239609,0.00201292335987091,-0.997046768665314,-0.0121187819167972,0.0758347064256668,-0.99645459651947,-0.0313843972980976,0.0780592709779739,-0.0779076293110847,-0.989426910877228,0.122330881655216,-0.0784835815429688,-0.996741414070129,0.0186251755803823,-0.999838292598724,-0.0156046599149704,-0.0089424392208457,-0.999829471111298,-0.0161673035472631,-0.00893143285065889,-0.0654687955975533,-0.997555732727051,-0.024420253932476,-0.999178826808929,-0.0314701981842518,0.0255212225019932,-0.999513626098633,-0.017371840775013,0.025899576023221,-0.998681247234344,-0.0314545296132565,0.0405767261981964,-0.0629109516739845,-0.998005628585815,0.00520592322573066,-0.0784958600997925,-0.996897339820862,0.00583488866686821,-0.999875128269196,-0.0157640874385834,0.00114440836478025,-0.0784912556409836,-0.996838927268982,0.0122984852641821,-0.046608429402113,-0.998837649822235,0.012292668223381,-0.500384211540222,-0.0215105582028627,0.865536272525787,-0.0662787705659866,-0.777417600154877,-0.625482976436615,-0.489184379577637,-0.871537864208221,0.0334713272750378,0.0083099752664566,-0.550521373748779,-0.834779739379883,-0.45466673374176,-0.889978170394897,0.0348861031234264,
- -0.0664647445082664,-0.648705065250397,-0.758132040500641,-0.046608429402113,-0.998837649822235,0.012292668223381,-0.0784912556409836,-0.996838927268982,0.0122984852641821,0.0875376909971237,-0.996087372303009,0.0121313398703933,0.240767657756805,-0.969315409660339,0.049586046487093,0.0975305885076523,-0.941987693309784,0.321164906024933,0.282930612564087,-0.958271503448486,-0.040817067027092,0.0883993655443192,-0.995598793029785,0.0311219766736031,-0.0784586817026138,-0.996425271034241,0.0313224829733372,0.0869790837168694,-0.995723724365234,0.0311273764818907,-0.0784933865070343,-0.996866047382355,0.00984671339392662,-0.062556654214859,-0.997998476028442,0.00925899855792522,0.0863768309354782,-0.9962557554245,0.00368114025332034,0.513001084327698,-0.857774555683136,-0.0324460193514824,0.0982296988368034,-0.92508739233017,0.366829961538315,0.758464872837067,-0.0392555221915245,-0.650530576705933,0.895583033561707,-0.0386768691241741,-0.443210244178772,0.899160027503967,-0.435950636863709,-0.038188774138689,0.88798987865448,-0.459797888994217,-0.00773864053189754,0.0865609869360924,-0.996209502220154,-0.00860347598791122,0.999698877334595,-0.0235608220100403,-0.00687242904677987,0.999475181102753,-0.0316433757543564,-0.00693604210391641,0.999721169471741,-0.023613054305315,-0.000305751105770469,0.0883993655443192,-0.995598793029785,0.0311219766736031,0.0869790837168694,-0.995723724365234,0.0311273764818907,0.873373866081238,-0.485363125801086,-0.0405062139034271,0.930639624595642,-0.0379091575741768,-0.363968253135681,0.922954022884369,-0.00182491401210427,-0.384906053543091,0.946155607700348,-0.000196705135749653,-0.323712378740311,0.0472924746572971,0.802983343601227,-0.594122171401978,0.920921385288239,-0.388092041015625,-0.0358935967087746,0.999895334243774,0.00758195575326681,-0.0123289721086621,0.251830071210861,0.967765867710114,-0.00329643278382719,0.0472036972641945,0.998885035514832,-0.000779806810896844,0.999500751495361,-0.031529426574707,-0.00207819370552897,0.999966561794281,0.00792221818119287,-0.00205171178095043,
- 0.999967336654663,0.00782529171556234,-0.00205178093165159,0.251749455928802,0.967790246009827,0.00205361004918814,0.999955534934998,0.0077466182410717,-0.00537834642454982,0.99995356798172,0.00800067558884621,-0.00537743931636214,0.999945878982544,0.00802995823323727,-0.00661960430443287,0.999475181102753,-0.0316433757543564,-0.00693604210391641,0.999698877334595,-0.0235608220100403,-0.00687242904677987,0.23921349644661,0.935686826705933,0.259358942508698,0.991028964519501,0.0109497904777527,-0.133198127150536,0.98936265707016,-0.023138839751482,-0.14361871778965,0.99623841047287,-0.0228750687092543,-0.0835815519094467,0.997427582740784,0.00104435149114579,-0.0716740116477013,0.997676134109497,0.00944967288523912,-0.0674774199724197,0.974089443683624,0.0930619835853577,0.206129223108292,0.0499575361609459,0.828802347183228,-0.557306885719299,0.224330276250839,0.830393016338348,-0.510022938251495,0.999332308769226,0.0136916218325496,-0.0338750593364239,0.999712347984314,-0.02358060143888,-0.00440084375441074,0.999698221683502,-0.0242620389908552,-0.00386148854158819,0.999712347984314,-0.02358060143888,-0.00440084375441074,0.0823576152324677,-0.782552421092987,0.617113411426544,0.999698221683502,-0.0242620389908552,-0.00386148854158819,0.0172005612403154,0.44201722741127,-0.896841645240784,0.945836007595062,0.123697616159916,0.300155133008957,0.894780397415161,0.038609441369772,0.444834053516388,0.969601035118103,0.00603536423295736,0.244617253541946,0.976539254188538,0.0271529443562031,0.21362079679966,0.986729562282562,0.0730119869112968,0.14503125846386,0.999456822872162,0.0140976393595338,-0.0297876168042421,0.999514579772949,0.0092753553763032,-0.0297426022589207,0.0704997554421425,0.997442603111267,-0.011756906285882,0.0704845041036606,0.997432291507721,-0.0126791745424271,0.999488472938538,0.0093155400827527,-0.0305975265800953,0.0621801428496838,0.997987508773804,-0.0124316290020943,0.814117789268494,0.401353776454926,-0.419675678014755,0.074671097099781,0.377942144870758,0.922813177108765,0.515187919139862,0.044493842869997,-0.855921685695648,
- 0.999402582645416,0.0139968330040574,-0.0316010564565659,0.999146938323975,-0.0274612028151751,-0.0308447200804949,0.999074995517731,-0.0300119817256927,-0.0307964235544205,0.999519288539886,0.0142219914123416,-0.0275493655353785,0.99918007850647,-0.0301960557699203,-0.0269702263176441,0.999580144882202,0.0091692702844739,-0.0274862088263035,0.0866388976573944,-0.99612295627594,0.0152624193578959,0.999074995517731,-0.0300119817256927,-0.0307964235544205,0.999146938323975,-0.0274612028151751,-0.0308447200804949,0.389202952384949,0.0312356054782867,-0.920622289180756,0.78349232673645,0.428986996412277,-0.449566662311554,0.407577306032181,0.0462957173585892,-0.911996483802795,0.99921703338623,-0.0302674807608128,-0.0254830736666918,0.0864811688661575,-0.996219456195831,0.00823142565786839,0.0730419307947159,-0.997291922569275,0.00858970731496811,0.0864811688661575,-0.996219456195831,0.00823142565786839,-0.0623084045946598,-0.997983694076538,0.0120918862521648,0.0730419307947159,-0.997291922569275,0.00858970731496811,0.999493896961212,0.026791900396347,-0.0171511825174093,0.994788408279419,-0.0266827307641506,-0.0984078049659729,0.996341645717621,-0.0170093085616827,-0.0837494358420372,-0.0803051814436913,-0.54881089925766,-0.832080364227295,0.996341645717621,-0.0170093085616827,-0.0837494358420372,0.994788408279419,-0.0266827307641506,-0.0984078049659729,0.339953035116196,0.00945577677339315,0.940394878387451,0.353417038917542,0.0332149304449558,0.934876024723053,-0.182180881500244,-0.672768473625183,0.717072367668152,-0.105528712272644,0.516746342182159,-0.849609851837158,-0.0260749869048595,-0.683074355125427,0.729883253574371,0.402023494243622,0.0342760384082794,0.914987623691559,0.981084227561951,0.0263701304793358,-0.191776603460312,0.13120736181736,0.990985155105591,-0.0270789824426174,0.0693005323410034,0.997483253479004,-0.0149896237999201,0.129608511924744,0.991003215312958,-0.033381137996912,0.980260968208313,0.026245417073369,-0.195958644151688,0.980340182781219,0.0231576431542635,-0.195951104164124,0.980495512485504,-0.0185222402215004,-0.195666775107384,
- 0.980340182781219,0.0231576431542635,-0.195951104164124,0.980260968208313,0.026245417073369,-0.195958644151688,0.927442312240601,0.0219080876559019,-0.373323947191238,0.050315298140049,0.99791955947876,-0.0403110161423683,0.120612196624279,0.990338921546936,-0.0684217065572739,0.0690748691558838,-0.997430026531219,-0.0190283935517073,0.0760065391659737,-0.996897101402283,-0.0204756911844015,0.97863382101059,-0.0186361987143755,-0.204764753580093,0.0506803616881371,0.99793004989624,-0.0395887605845928,0.923351883888245,0.0218114629387856,-0.383334636688232,0.923133254051209,0.029075063765049,-0.383379191160202,0.576638519763947,0.0181618425995111,-0.81679755449295,0.0807681083679199,0.970883965492249,-0.225523501634598,0.00748124253004789,0.992200791835785,-0.124425031244755,0.979410231113434,0.0231356769800186,-0.200550556182861,0.979587018489838,-0.0185786969959736,-0.20016023516655,0.979611396789551,-0.0170031823217869,-0.200181350111961,0.979587018489838,-0.0185786969959736,-0.20016023516655,0.0799839496612549,-0.996777057647705,-0.00616850983351469,0.979611396789551,-0.0170031823217869,-0.200181350111961,0.927841186523438,-0.0263296253979206,-0.372045069932938,0.927513837814331,0.0219097752124071,-0.373146057128906,0.927942514419556,-0.0175448451191187,-0.372310191392899,0.923351883888245,0.0218114629387856,-0.383334636688232,0.923563778400421,-0.0265922397375107,-0.382521748542786,0.923133254051209,0.029075063765049,-0.383379191160202,0.0789287239313126,-0.996830403804779,-0.00997056066989899,0.92686653137207,-0.0263904146850109,-0.374462425708771,0.926978886127472,-0.0175485089421272,-0.374702781438828,0.843313336372375,0.0301804952323437,-0.536574125289917,0.160110250115395,0.982115864753723,-0.0990612804889679,0.843395352363586,0.0265636332333088,-0.536636650562286,0.84541267156601,-0.0301093123853207,-0.533264398574829,0.845339000225067,0.0301118269562721,-0.533381104469299,0.845426857471466,0.02662761695683,-0.533427059650421,0.159981176257133,0.982115507125854,-0.0992736518383026,0.845626175403595,0.0301020294427872,-0.532926321029663,
- 0.0610201433300972,0.99745512008667,-0.0368769951164722,0.68982994556427,0.466514199972153,-0.553623676300049,0.490634322166443,0.615974187850952,0.616322815418243,0.332631021738052,0.0349204987287521,-0.942410290241241,0.332631021738052,0.0349204987287521,-0.942410290241241,0.305572926998138,0.00777602475136518,-0.952136933803558,0.68982994556427,0.466514199972153,-0.553623676300049,0.83512818813324,0.030449640005827,-0.549211919307709,0.835446655750275,-0.0304394103586674,-0.548727929592133,0.835681438446045,-0.0110932206735015,-0.549102485179901,0.692912638187408,-0.467576146125793,-0.548857629299164,0.724951088428497,-0.444373577833176,-0.526287078857422,0.99537605047226,-0.0220405086874962,-0.0934917330741882,0.985718011856079,-0.0206526592373848,-0.167133048176765,-0.272522687911987,-0.787151217460632,-0.553285002708435,0.658018827438354,-0.54851770401001,-0.515887141227722,0.834367573261261,-0.030473992228508,-0.550365447998047,0.0677973106503487,-0.997384190559387,-0.0250658765435219,0.834527850151062,-0.0110383694991469,-0.550855278968811,-0.279383957386017,-0.777645230293274,-0.563216269016266,0.383161634206772,-0.854162573814392,-0.35155862569809,0.439792215824127,-0.83888828754425,-0.320701330900192,0.0644267424941063,-0.997453451156616,-0.0305908005684614,0.845600008964539,-0.0301029160618782,-0.532967567443848,0.0840152055025101,-0.99553781747818,-0.0429633855819702,0.932733952999115,-0.0260155163705349,-0.359625637531281,0.0806724801659584,-0.996733903884888,-0.00368518009781837,0.101145349442959,-0.994803547859192,-0.0116476789116859,-0.374972730875015,-0.885687470436096,0.273775935173035,0.21506741642952,-0.950973749160767,0.222250252962112,0.0452995486557484,-0.968105852603912,0.24641227722168,0.0852861031889915,-0.995527029037476,-0.0406486354768276,-0.0723021849989891,-0.995469689369202,0.061746284365654,0.0659666731953621,-0.997426986694336,-0.0280673075467348,0.0547179281711578,-0.963833093643188,0.260828882455826,-0.897494971752167,-0.0177308395504951,0.440668314695358,-0.616463243961334,-0.620919406414032,0.484182149171829,
- -0.879838526248932,-0.0170436892658472,0.474966943264008,-0.779673635959625,-0.147494837641716,0.608567416667938,-0.763581395149231,-0.164487048983574,0.624409675598145,-0.0874174907803535,-0.995470225811005,0.0373814143240452,0.071061760187149,-0.995254158973694,-0.0664786025881767,-0.0738936066627502,-0.996859073638916,0.0284903347492218,-0.745241820812225,0.284668892621994,0.602974534034729,-0.516791522502899,-0.00546677689999342,0.856093943119049,-0.536436319351196,0.0150919575244188,0.843805849552155,0.337779998779297,0.00209183315746486,0.941222786903381,-0.506519973278046,0.763163864612579,0.401270985603333,-0.492797285318375,0.758050382137299,0.427212357521057,-0.0861296430230141,-0.995502114295959,0.0394630655646324,-0.842951059341431,-0.0247237086296082,0.537422060966492,-0.843041300773621,-0.0156811308115721,0.537620306015015,-0.829563558101654,-0.0238741301000118,0.557901740074158,-0.0872785374522209,-0.995473861694336,0.0376060456037521,-0.0738626345992088,-0.996859848499298,0.0285458900034428,-0.842951059341431,-0.0247237086296082,0.537422060966492,-0.842781543731689,0.0175081435590982,0.537970960140228,-0.843041300773621,-0.0156811308115721,0.537620306015015,-0.054721862077713,-0.993602931499481,0.0987867116928101,-0.0382851324975491,-0.995027780532837,0.091945618391037,0.12074988335371,-0.992380499839783,0.0245028026401997,0.0806724801659584,-0.996733903884888,-0.00368518009781837,-0.0672108307480812,-0.996306896209717,0.0534347705543041,0.101145349442959,-0.994803547859192,-0.0116476789116859,-0.0371281541883945,-0.994880318641663,0.0939931869506836,-0.0541825480759144,-0.99343729019165,0.100730337202549,-0.926633775234222,-0.0305805522948503,0.374719470739365,0.0685366094112396,-0.997389376163483,-0.0227460078895092,-0.0797248780727386,-0.996790051460266,0.0073171341791749,0.0750090032815933,-0.996892750263214,-0.0240537859499455,-0.0655872523784637,-0.997513115406036,-0.0258080326020718,-0.0873936116695404,-0.99594634771347,-0.0212896335870028,0.0642212629318237,-0.996564269065857,-0.052301149815321,
- -0.0868528336286545,-0.996034860610962,-0.0192635413259268,-0.0654000639915466,-0.997579634189606,-0.0236155427992344,-0.980325400829315,-0.0293394140899181,0.195196017622948,-0.924938440322876,-0.0261459611356258,0.379216879606247,-0.924728035926819,-0.030431654304266,0.379410117864609,-0.0576295927166939,-0.994426608085632,0.0882864966988564,-0.979975283145905,-0.0278523229062557,0.197161793708801,-0.979937851428986,-0.0293119307607412,0.197136104106903,-0.0633340701460838,-0.997992336750031,0.000349588692188263,-0.979408621788025,0.0106614008545876,0.201606422662735,-0.979258000850677,-0.0292640887200832,0.200492963194847,-0.979285597801209,-0.0280537251383066,0.200531482696533,-0.979368686676025,0.0106561873108149,0.20180056989193,-0.979041814804077,0.027892492711544,0.201740339398384,-0.979008555412292,-0.029246648773551,0.201709821820259,-0.927284777164459,0.0307176150381565,0.373094260692596,-0.925740122795105,-0.0305105932056904,0.376927584409714,-0.925963222980499,-0.026198023930192,0.376703828573227,-0.978721141815186,0.0279214326292276,0.203286170959473,-0.979024231433868,0.0106113916262984,0.2034672498703,-0.0871855691075325,0.996127605438232,0.0113319559022784,-0.909819543361664,-0.0293004792183638,0.413968533277512,-0.910955548286438,0.0312348641455173,0.411320298910141,-0.910879135131836,0.0376958847045898,0.410948008298874,-0.826360762119293,0.0416305772960186,0.561600208282471,-0.826970994472504,0.0174481552094221,0.561973750591278,-0.826897084712982,-0.0237069204449654,0.561853349208832,-0.0862581878900528,0.996167898178101,0.0144613329321146,-0.059082105755806,0.998246550559998,0.00364686967805028,-0.929389357566834,0.0306428968906403,0.367826551198959,-0.910085499286652,0.037746038287878,0.412698090076447,-0.910165190696716,0.0312573947012424,0.413064569234848,-0.069507397711277,0.997398912906647,-0.0190859995782375,-0.0862581878900528,0.996167898178101,0.0144613329321146,0.0505663938820362,0.997926831245422,-0.0398142486810684,-0.059082105755806,0.998246550559998,0.00364686967805028,-0.248227939009666,0.761337876319885,-0.598955452442169,
- -0.370923757553101,0.922122538089752,-0.110025256872177,-0.281966239213943,0.816388845443726,-0.503988564014435,-0.232721656560898,0.892172932624817,-0.387127906084061,-0.371138036251068,0.92202353477478,-0.11013275384903,-0.42757847905159,0.0456445775926113,0.902825176715851,-0.1486576795578,0.988888204097748,-0.00101225823163986,-0.0330122858285904,0.978663206100464,-0.202801659703255,-0.0345521345734596,0.979144334793091,-0.200206860899925,-0.324593961238861,0.939277529716492,0.11133985221386,-0.990618586540222,0.0286609381437302,0.13361668586731,0.00511103868484497,0.997407078742981,0.0717848092317581,0.365693867206573,0.765696883201599,0.529127836227417,-0.327239960432053,0.937191724777222,0.120772168040276,0.771655559539795,-0.547166228294373,0.324278891086578,-0.32236385345459,0.940943956375122,0.103470161557198,-0.0405920892953873,0.997742056846619,0.0535085648298264,-0.982322931289673,0.0304760169237852,0.184697136282921,-0.026109242811799,0.996752142906189,0.0761812925338745,-0.322568356990814,0.940794587135315,0.104188859462738,0.115722760558128,0.991442203521729,0.0604210309684277,-0.0476408116519451,0.997962415218353,0.0424431264400482,-0.828499734401703,0.0174544658511877,0.559717535972595,-0.827793955802917,0.0415813215076923,0.559489190578461,0.0618974082171917,0.997488737106323,-0.0344235375523567,0.0624929554760456,0.997438669204712,-0.0347968973219395,-0.0513852797448635,0.998009622097015,0.0365566462278366,-0.0451148822903633,0.997903168201447,0.0464107804000378,-0.00570930587127805,0.999794602394104,0.0194460060447454,-0.824738681316376,0.0174387600272894,0.565245032310486,-0.0436107665300369,0.997857451438904,0.0487721674144268,0.0684520900249481,0.997305810451508,-0.026372404769063,-0.00385237718001008,0.999747157096863,0.0221527088433504,0.115514919161797,0.00600202940404415,0.993287622928619,-0.273462027311325,0.88611763715744,-0.374184489250183,-0.224906489253044,0.955599427223206,0.190386116504669,-0.0205532070249319,0.998834729194641,-0.0436674393713474,-0.0056814281269908,0.999794006347656,0.0194866433739662,
- -0.057602658867836,0.977727949619293,-0.201816767454147,-0.262743592262268,0.895879209041595,-0.35828223824501,-0.237989142537117,0.963292598724365,0.124211974442005,-0.229459509253502,0.953824639320374,0.193822085857391,0.580677807331085,0.461272001266479,0.670851349830627,0.547856748104095,0.461611568927765,0.697687447071075,0.583845913410187,0.461193889379501,0.668149769306183,0.583104729652405,0.455173760652542,0.672908484935761,0.585693657398224,0.455216765403748,0.670627057552338,0.565913736820221,0.454755842685699,0.687705516815186,-0.567862570285797,0.452793896198273,-0.687393546104431,-0.56468141078949,0.452715635299683,-0.690060496330261,-0.605803847312927,0.453120350837708,-0.653975248336792,-0.566816091537476,0.446606606245041,-0.692287623882294,-0.569525063037872,0.44657176733017,-0.69008332490921,-0.581674754619598,0.446346163749695,-0.6800217628479,-0.898416101932526,0.438927620649338,0.0138244926929474,-0.898621439933777,0.438473999500275,-0.0148341469466686,-0.898465931415558,0.438900858163834,0.0111812856048346,-0.889151036739349,0.457509189844131,0.00978890247642994,-0.888201415538788,0.457740396261215,-0.0396468080580235,-0.889128744602203,0.457430452108383,0.0144072584807873,0.886016726493835,0.463559627532959,0.0093320170417428,0.885993361473084,0.463468194007874,0.0145974233746529,0.885180652141571,0.463811784982681,-0.0365206152200699,0.896322309970856,0.443183481693268,0.0139585351571441,0.896374881267548,0.443163692951202,0.0108640026301146,0.896482825279236,0.442842543125153,-0.0144579261541367,-0.452918827533722,0.44046476483345,-0.775148570537567,-0.431572765111923,0.439482718706131,-0.787781774997711,-0.450231403112412,0.44035542011261,-0.776774644851685,-0.445549517869949,0.455833196640015,-0.770520448684692,-0.405411064624786,0.455256789922714,-0.792706191539764,-0.449554473161697,0.455838054418564,-0.768187701702118,0.42869833111763,0.455430686473846,0.780256807804108,0.424516439437866,0.455404341220856,0.782555222511292,0.46824699640274,0.455157458782196,0.757348239421844,0.42932990193367,0.437770336866379,0.789957642555237,
- 0.43186417222023,0.437813580036163,0.788550972938538,0.450253576040268,0.438017785549164,0.778082489967346,-0.593650460243225,0.444905281066895,-0.670550942420959,-0.579104900360107,0.444692939519882,-0.683290362358093,-0.596337199211121,0.44492644071579,-0.668148517608643,-0.594037532806396,0.451017379760742,-0.666110277175903,-0.562041819095612,0.450716942548752,-0.693515121936798,-0.591753900051117,0.451022505760193,-0.668136298656464,0.577133417129517,0.446677148342133,0.68366414308548,0.577129065990448,0.446677148342133,0.683667838573456,0.606247127056122,0.446396201848984,0.658175408840179,0.577691555023193,0.445041477680206,0.684259235858917,0.577572286128998,0.44504302740097,0.684358894824982,0.594686508178711,0.44471687078476,0.669757425785065,-0.111963853240013,0.478347450494766,-0.871003985404968,-0.0920895859599113,0.478184193372726,-0.873418211936951,-0.0981053113937378,0.478253781795502,-0.872724890708923,-0.104205295443535,0.430156141519547,-0.896720051765442,-0.0655930042266846,0.430073171854019,-0.900408029556274,-0.113172084093094,0.430082678794861,-0.895667970180511,0.0914833918213844,0.430887281894684,0.897756576538086,0.0861335620284081,0.430851995944977,0.898302555084229,0.123012915253639,0.430841654539108,0.894004106521606,0.0824105367064476,0.473438858985901,0.876963019371033,0.0926261469721794,0.473406046628952,0.87596070766449,0.0918947160243988,0.473410099744797,0.876035630702972,-0.873271703720093,0.436467707157135,-0.216547057032585,-0.868118524551392,0.436311930418015,-0.236647859215736,-0.872027039527893,0.436446607112885,-0.221547424793243,-0.864612996578217,0.451363742351532,-0.220715373754501,-0.856104254722595,0.451161205768585,-0.252070099115372,-0.866221725940704,0.451346814632416,-0.214350044727325,0.863495707511902,0.444493055343628,0.23832967877388,0.864220917224884,0.444496810436249,0.235679358243942,0.873683214187622,0.444197744131088,0.198408767580986,0.864275872707367,0.444383949041367,0.235690876841545,0.863531589508057,0.444415152072906,0.238345131278038,0.86908620595932,0.444088280200958,0.217887386679649,
- -0.875567734241486,0.482721537351608,0.0190047845244408,-0.875795781612396,0.482681095600128,-0.000979649019427598,-0.875799119472504,0.482667624950409,-0.00282003730535507,-0.901212751865387,0.433375716209412,0.00108539499342442,-0.901264011859894,0.43261393904686,-0.0238448642194271,-0.900884747505188,0.43372243642807,0.0170756857842207,0.904239892959595,0.427022069692612,0.00158096849918365,0.903938472270966,0.427331537008286,0.0168240759521723,0.904278099536896,0.426296830177307,-0.0234966743737459,0.875516414642334,0.482814520597458,0.019008444622159,0.875747740268707,0.482760816812515,-0.00282752327620983,0.87574428319931,0.482774287462235,-0.000972891226410866,-0.79753577709198,0.444943845272064,0.407384008169174,-0.808300852775574,0.444554656744003,0.386032581329346,-0.798005163669586,0.444932401180267,0.4064761698246,-0.791195392608643,0.461261302232742,0.40155702829361,-0.810404777526855,0.46161949634552,0.360765278339386,-0.789883434772491,0.461205184459686,0.404195547103882,0.805112481117249,0.454247295856476,-0.381383329629898,0.805827677249908,0.454215526580811,-0.379907816648483,0.781399488449097,0.454621523618698,-0.427474200725555,0.807599663734436,0.450203895568848,-0.380919009447098,0.807092130184174,0.450190424919128,-0.382008880376816,0.798641324043274,0.449878811836243,-0.399726182222366,0.0706371739506722,0.448257237672806,-0.891109466552734,0.0950606912374496,0.447920680046082,-0.889005422592163,0.0738084092736244,0.448228746652603,-0.890866637229919,0.0740816220641136,0.458398222923279,-0.885653972625732,0.120252966880798,0.458666294813156,-0.880434274673462,0.0698345452547073,0.458324015140533,-0.886037349700928,-0.0961331352591515,0.465490221977234,0.879816591739655,-0.0985448658466339,0.465450137853622,0.879570960998535,-0.0471983104944229,0.46571296453476,0.88367635011673,-0.0987744182348251,0.452383100986481,0.886337041854858,-0.0979123711585999,0.45236936211586,0.886439681053162,-0.0774511098861694,0.451942950487137,0.888678312301636,0.863314568996429,0.438752949237823,-0.249367237091064,
- 0.861717820167542,0.438920170068741,-0.25454169511795,0.869093894958496,0.438008397817612,-0.229835629463196,0.853343605995178,0.455975413322449,-0.25276705622673,0.855317652225494,0.455976963043213,-0.246001750230789,0.868138670921326,0.455333203077316,-0.197501987218857,-0.861224949359894,0.456243455410004,0.223905190825462,-0.860944628715515,0.45624566078186,0.224976524710655,-0.849038362503052,0.455885231494904,0.267025530338287,-0.865351736545563,0.447058737277985,0.226505920290947,-0.865891695022583,0.447091192007065,0.224368527531624,-0.860710799694061,0.446706473827362,0.244193077087402,0.797400534152985,0.438563585281372,-0.41450497508049,0.794725000858307,0.438616365194321,-0.419556647539139,0.807430505752563,0.438227891921997,-0.394984215497971,0.789863765239716,0.449373722076416,-0.417347073554993,0.792931199073792,0.449397504329681,-0.411463230848312,0.810101509094238,0.449142605066299,-0.376837521791458,-0.801659882068634,0.447197377681732,0.396681368350983,-0.800504207611084,0.447199523448944,0.399005711078644,-0.785567045211792,0.446971088647842,0.427903443574905,-0.80142217874527,0.445079565048218,0.399533152580261,-0.802655100822449,0.445112705230713,0.397013127803802,-0.795164048671722,0.444861114025116,0.412083625793457,0.878323972225189,0.478059560060501,0.0024502407759428,0.87817245721817,0.477973818778992,-0.0188178680837154,0.878325998783112,0.478060483932495,0.00131402164697647,0.900861442089081,0.433770805597305,-0.0170775894075632,0.901061952114105,0.433689087629318,-0.00106090679764748,0.900775790214539,0.433197945356369,0.0306990649551153,-0.903185665607452,0.429247975349426,-0.00140755064785481,-0.902984917163849,0.429339677095413,-0.0169031359255314,-0.902918219566345,0.428737074136734,0.0303829405456781,-0.875831484794617,0.482243537902832,-0.0189859643578529,-0.876063525676727,0.482187718153,0.00278147868812084,-0.87606018781662,0.482200771570206,0.00101444870233536,0.422677040100098,0.442522287368774,-0.790897071361542,0.441284328699112,0.442248702049255,-0.780822813510895,0.425581157207489,0.442492783069611,-0.789354681968689,
- 0.423890292644501,0.452065825462341,-0.784827053546906,0.454443275928497,0.451824635267258,-0.767682075500488,0.420180976390839,0.45205745100975,-0.786823987960815,-0.443215310573578,0.443503707647324,0.779015123844147,-0.44083309173584,0.443514704704285,0.780359506607056,-0.406952977180481,0.443316996097565,0.798660933971405,-0.441263377666473,0.441532254219055,0.781239986419678,-0.443813294172287,0.441533386707306,0.779793739318848,-0.420394450426102,0.441382616758347,0.792748332023621,-0.0150850955396891,0.478951781988144,-0.877711534500122,-0.00188555754721165,0.478856563568115,-0.877891182899475,-0.00125696137547493,0.478849917650223,-0.877895951271057,-0.00444820709526539,0.434076756238937,-0.900864958763123,0.0239053014665842,0.433710485696793,-0.900735139846802,-0.013673092238605,0.434120655059814,-0.900750935077667,-0.00177867338061333,0.424481093883514,0.905435085296631,-0.0133720124140382,0.424561381340027,0.905300438404083,0.023376177996397,0.424110651016235,0.905308604240417,-0.0149232000112534,0.473811596632004,0.880499839782715,0.00210526003502309,0.473749548196793,0.880657076835632,0.00162482052110136,0.473753184080124,0.880656123161316,-0.0257655829191208,-0.999648034572601,0.00633070152252913,-0.0263008270412683,-0.999630928039551,0.00680356658995152,-0.747978568077087,-0.0778774693608284,0.659138262271881,-0.747440338134766,-0.0636621341109276,0.661271631717682,-0.746774673461914,-0.0777327492833138,0.660518944263458,-0.0237303003668785,-0.999673962593079,0.00943330954760313,-0.74785590171814,-0.0636247023940086,0.66080516576767,-0.747749447822571,0.0417428463697433,0.662667632102966,-0.747234582901001,-0.0777880325913429,0.659992098808289,-0.795755743980408,0.0380736850202084,0.604419708251953,-0.796031475067139,-0.058906614780426,0.602381944656372,-0.7945916056633,0.0610348619520664,0.604068696498871,-0.0288641173392534,0.998712658882141,0.0417118817567825,-0.796057403087616,0.0380487516522408,0.604023933410645,-0.794924855232239,0.0610992759466171,0.603623569011688,-0.79838901758194,0.0378551706671715,0.600950837135315,
- -0.0304970294237137,0.998761892318726,0.0393011718988419,-0.0299702808260918,0.998793363571167,0.0389056093990803,-0.0281666237860918,-0.999427199363709,0.0187591630965471,-0.0329589694738388,-0.999121785163879,0.0258744619786739,-0.558428525924683,-0.0686088129878044,0.82671070098877,-0.558284103870392,-0.0563838519155979,0.827731668949127,-0.557912886142731,-0.0685543119907379,0.827063202857971,-0.0265685617923737,-0.999204277992249,0.0297476705163717,-0.558926165103912,-0.0563398562371731,0.827301323413849,-0.557790279388428,0.0542995557188988,0.828203797340393,-0.558628976345062,-0.0686299875378609,0.826573431491852,-0.615975618362427,0.0508592128753662,0.786121726036072,-0.617545664310455,-0.0520709082484245,0.784809589385986,-0.614930987358093,0.0704998448491097,0.785423219203949,-0.00443617394194007,0.99927544593811,0.0378010384738445,-0.615975618362427,0.0508592128753662,0.786121726036072,-0.614930987358093,0.0704998448491097,0.785423219203949,-0.61957323551178,0.0506312139332294,0.783304214477539,-0.00978000182658434,0.999401330947876,0.0331860966980457,-0.00936971046030521,0.999422311782837,0.0326685197651386,0.0302560180425644,0.999163448810577,-0.0275130290538073,0.0255881361663342,0.999461829662323,-0.0205285884439945,-0.00075817946344614,0.999821662902832,0.0188693013042212,-0.0650949403643608,0.994250357151031,-0.0850230976939201,-0.0910339578986168,0.994780778884888,-0.0460869148373604,-0.0953901186585426,0.994655609130859,-0.0395085960626602,-0.010611092671752,0.999874174594879,0.0117915282025933,-0.01930514536798,0.99950248003006,0.0249459128826857,-0.0106723122298718,0.999872505664825,0.0118841510266066,0.00222082901746035,0.999831318855286,0.0182340145111084,-0.0184076279401779,0.997981429100037,0.0607812143862247,-0.0188651978969574,0.997914910316467,0.0617243871092796,-0.123264402151108,0.992361843585968,0.00489216297864914,-0.0994072034955025,0.994048535823822,-0.0445618480443954,-0.106234453618526,0.993873655796051,-0.0304865874350071,0.00627569993957877,0.999976336956024,0.00281324470415711,
- -0.0219643414020538,0.997953593730927,0.0600519590079784,-0.000900329556316137,0.99984884262085,0.0173640847206116,-0.721835255622864,-0.559390962123871,-0.4074746966362,-0.777409493923187,-0.457336097955704,-0.431831032037735,-0.758318901062012,0.534032821655273,-0.373846799135208,-0.743472456932068,0.562840044498444,-0.361192345619202,-0.759818315505981,0.534275114536285,-0.370440661907196,-0.785418331623077,-0.459038019180298,-0.415213346481323,-0.753979086875916,0.561881363391876,-0.340301156044006,-0.724679350852966,0.60701858997345,-0.326141774654388,-0.769456207752228,0.535689175128937,-0.347813487052917,-0.73543256521225,0.60748416185379,-0.300169974565506,-0.766057252883911,0.560322344303131,-0.314952731132507,-0.736145913600922,0.606450140476227,-0.300512254238129,-0.813737511634827,0.527998566627502,0.242999538779259,-0.872963666915894,0.456899493932724,0.170813754200935,-0.976366817951202,0.015475426800549,-0.215565398335457,-0.585895478725433,0.465659290552139,-0.663240551948547,-0.501613795757294,0.531503081321716,-0.68256002664566,-0.913460373878479,-6.69863002258353e-005,-0.406927645206451,-0.736291348934174,0.606461346149445,-0.300132840871811,0.282313913106918,0.948471546173096,0.143876940011978,-0.735579490661621,0.607487320899963,-0.299803406000137,0.0136986095458269,0.726291477680206,0.687250435352325,0.898609697818756,-0.427550554275513,-0.0984940379858017,-0.822316706180573,0.526086211204529,0.216860517859459,-0.781058311462402,0.55759596824646,-0.281131118535995,-0.744201898574829,0.609951198101044,-0.272255569696426,-0.746407628059387,0.607006847858429,-0.272797286510468,-0.752056539058685,0.610207319259644,-0.249114349484444,-0.787552356719971,0.559578061103821,-0.258135437965393,-0.800265491008759,0.539716482162476,-0.261306881904602,-0.867871999740601,-0.454735338687897,-0.200034976005554,-0.806341707706451,0.539125382900238,-0.243222147226334,-0.792124092578888,0.560853064060211,-0.240796968340874,-0.809024512767792,0.538789391517639,-0.234915927052498,-0.873505055904388,-0.452222913503647,-0.180231213569641,
- -0.812724769115448,-0.560888886451721,-0.157741338014603,-0.74369490146637,0.606908619403839,-0.28032124042511,-0.741506040096283,0.60978639125824,-0.279874086380005,0.309915781021118,0.95056813955307,0.0192974042147398,0.293343514204025,0.953574061393738,0.0681623741984367,0.307247281074524,0.948813438415527,0.0731586739420891,-0.743897080421448,0.606917142868042,-0.279765635728836,0.63353168964386,0.772885143756866,0.0358629077672958,0.413867235183716,0.823928654193878,-0.387111604213715,-0.240442246198654,0.387628346681595,-0.889905571937561,0.5785853266716,0.796385169029236,0.176095724105835,0.306596130132675,0.948874354362488,0.0750754550099373,0.29269739985466,0.953638136386871,0.0700181499123573,0.926945805549622,-0.0225154589861631,-0.374519020318985,0.67356014251709,0.408655524253845,-0.615887463092804,0.759992837905884,-0.623780369758606,0.182507559657097,0.75632643699646,-0.113953053951263,-0.644193291664124,0.135904312133789,0.866909086704254,0.479581832885742,0.529780328273773,0.832718133926392,0.160976871848106,0.694733142852783,0.490383297204971,-0.526184439659119,0.999323964118958,0.0201310478150845,-0.0307639986276627,0.664308667182922,-0.516136229038239,0.540645360946655,0.956057369709015,0.0579611472785473,0.287393063306808,0.783009052276611,-0.562369048595428,0.265778213739395,0.956097841262817,0.0569849535822868,0.287454038858414,0.496542185544968,0.819683611392975,0.285595387220383,0.486134320497513,0.827253758907318,0.281646400690079,0.263646215200424,0.944991886615753,0.193600177764893,0.317588239908218,0.947290897369385,0.0421644151210785,0.594547688961029,0.79193389415741,0.139118373394012,0.558912336826324,0.819571256637573,0.126174658536911,0.496542185544968,0.819683611392975,0.285595387220383,0.784667193889618,-0.542465567588806,0.300047606229782,0.486134320497513,0.827253758907318,0.281646400690079,0.775941908359528,-0.564723610877991,0.28107225894928,0.59661602973938,0.79123729467392,0.134137392044067,0.778334200382233,-0.561164975166321,0.281584292650223,0.5910884141922,0.793034315109253,0.147346884012222,
- 0.780024707317352,-0.56455785036087,0.269881695508957,0.555890560150146,0.820205211639404,0.135089322924614,0.778524100780487,-0.561215758323669,0.28095731139183,0.953502833843231,0.0577340163290501,0.29580283164978,0.776173710823059,-0.564716458320618,0.280445843935013,0.783080995082855,-0.543010830879211,0.303188741207123,0.500449597835541,0.820317029953003,0.2768215239048,0.770281076431274,-0.564820170402527,0.296049565076828,0.906722366809845,0.0492409020662308,0.418843626976013,0.759784698486328,-0.56463634967804,0.322355419397354,0.906426608562469,0.0537991300225258,0.418922990560532,0.770917296409607,-0.56481659412384,0.294395804405212,0.913672864437103,0.050962045788765,0.403242707252502,0.783831596374512,-0.542754054069519,0.301705151796341,-0.0193786732852459,0.999467134475708,0.0262674670666456,0.142678499221802,0.989426493644714,-0.0260430313646793,0.0499524064362049,0.998743772506714,0.00395967066287994,0.118785068392754,0.989762544631958,0.0791214406490326,0.133120939135551,0.987456321716309,0.0849049165844917,0.0325976796448231,0.998491168022156,0.0441923290491104,0.121705383062363,0.986771702766418,0.107095286250114,-0.388840168714523,0.911497354507446,-0.134074360132217,0.0246492046862841,0.997737884521484,0.0625423863530159,0.0155020263046026,0.99958735704422,0.0241834484040737,0.0735474601387978,0.977354347705841,0.19841705262661,0.0362135507166386,0.995613873004913,0.0862647220492363,-0.369772970676422,0.912334859371185,-0.17582131922245,0.152953058481216,0.987169921398163,0.0458360686898232,-0.311004459857941,0.938296675682068,-0.151246875524521,-0.222691506147385,0.924223780632019,-0.310191750526428,0.0599126294255257,0.972832858562469,0.223621815443039,-0.0684591457247734,0.997562766075134,-0.0134892240166664,-0.388802856206894,0.911500990390778,-0.134158074855804,-0.333471477031708,0.936705648899078,-0.106674037873745,-0.658639967441559,0.701217889785767,-0.272923082113266,-0.156596511602402,0.986229121685028,-0.0531944930553436,-0.404630482196808,0.655388355255127,-0.637762069702148,-0.252359747886658,0.932214260101318,-0.259405344724655,
- -0.705213308334351,0.689691543579102,-0.164316102862358,-0.762154519557953,0.555740594863892,-0.332073718309402,-0.764635562896729,0.545749723911285,-0.342767655849457,-0.764635562896729,0.545749723911285,-0.342767655849457,-0.695914566516876,-0.00186631828546524,-0.718122184276581,-0.705213308334351,0.689691543579102,-0.164316102862358,-0.916219413280487,-0.0728636607527733,-0.393995970487595,-0.665434122085571,0.700244963169098,-0.258562445640564,-0.914084076881409,-0.0962366461753845,-0.393940150737762,-0.659965753555298,0.701043725013733,-0.270153611898422,-0.446232736110687,0.877129912376404,-0.177537381649017,-0.381755709648132,0.912038266658783,-0.149829298257828,-0.662128925323486,0.700743436813354,-0.265601187944412,-0.913171648979187,-0.0735325813293457,-0.400887042284012,-0.664333283901215,0.698255896568298,-0.266645789146423,-0.450558602809906,0.876906216144562,-0.167428910732269,-0.662128925323486,0.700743436813354,-0.265601187944412,-0.664333283901215,0.698255896568298,-0.266645789146423,-0.619919538497925,0.694825172424316,-0.364579081535339,-0.999287784099579,-0.033625777810812,-0.0171212181448936,-0.795524597167969,0.532020390033722,-0.289991617202759,-0.795524597167969,0.532020390033722,-0.289991617202759,-0.316615581512451,0.845957696437836,-0.429080665111542,-0.619919538497925,0.694825172424316,-0.364579081535339,-0.509761214256287,0.860249936580658,-0.0106578022241592,-0.324790924787521,0.943283796310425,-0.0687495246529579,-0.306887328624725,0.948865652084351,-0.0739873871207237,8.84355904418044e-005,-0.999646604061127,-0.0265838988125324,-0.000202428520424291,-0.999631524085999,-0.0271448995918036,-0.457823097705841,-0.0768492892384529,-0.88571560382843,-0.459850013256073,-0.0682526156306267,-0.885369837284088,-0.459501296281815,-0.0767075717449188,-0.884858429431915,-0.00338836619630456,-0.999674320220947,-0.025292431935668,-0.459268599748611,-0.0682115331292152,-0.885674655437469,-0.461287915706635,0.0430135279893875,-0.886207282543182,-0.458876579999924,-0.0767603740096092,-0.885177969932556,
- -0.393127024173737,0.039230789989233,-0.91864687204361,-0.39089760184288,-0.0632769837975502,-0.91825658082962,-0.393097281455994,0.0562091618776321,-0.917777180671692,-0.0335565209388733,0.998705387115479,-0.0382294319570065,-0.392666101455688,0.0392048768699169,-0.918845057487488,-0.392595291137695,0.0562691129744053,-0.917988419532776,-0.389096438884735,0.0390040427446365,-0.920370936393738,-0.0307674631476402,0.998756110668182,-0.0392397977411747,-0.0303747374564409,0.998804330825806,-0.0383078828454018,-0.0869893804192543,-0.000590253854170442,0.99620908498764,-0.0862773880362511,-0.000584456080105156,0.996271014213562,0.967785358428955,0.00790045037865639,0.251653075218201,0.971449315547943,0.00517024472355843,0.237191051244736,0.96779191493988,0.00498413108289242,0.25170224905014,-0.0860166773200035,-0.0114626074209809,0.996227741241455,0.971431732177734,0.00621660612523556,0.237237825989723,0.994704365730286,0.00740696350112557,0.102510653436184,0.967790365219116,0.00607955921441317,0.251684010028839,0.994718551635742,0.00383567437529564,0.102568805217743,0.971498548984528,0.00180296320468187,0.237038806080818,0.996827900409698,0.00417473819106817,0.0794777795672417,0.259327948093414,0.0150900576263666,-0.965671420097351,0.994718551635742,0.00383567437529564,0.102568805217743,0.996827900409698,0.00417473819106817,0.0794777795672417,0.994718015193939,-0.000821331166662276,0.102642677724361,0.259045451879501,-0.00524551142007113,-0.965850949287415,0.251977473497391,-0.00524544715881348,-0.967718899250031,0.790004372596741,-0.568137645721436,-0.23046201467514,0.841971576213837,-0.484033584594727,-0.238317653536797,0.832931518554688,0.524840116500854,-0.175407975912094,0.812470734119415,0.55745142698288,-0.170702636241913,0.83204448223114,0.525313556194305,-0.17817884683609,0.837370812892914,-0.484001070261002,-0.254073083400726,0.807066142559052,0.558671653270721,-0.191128864884377,0.777836263179779,0.602659165859222,-0.178249061107636,0.825024962425232,0.528781771659851,-0.199307888746262,0.770932495594025,0.60528576374054,-0.198222517967224,
- 0.80119788646698,0.559656143188477,-0.21181845664978,0.770398437976837,0.606042563915253,-0.197986677289009,0.827337980270386,0.0355252251029015,-0.56057995557785,0.422213554382324,0.515151023864746,-0.745892226696014,0.4759681224823,0.47316038608551,-0.741332352161407,0.823307931423187,0.524902641773224,0.215965777635574,0.971462905406952,0.00524051813408732,-0.237133756279945,0.8588045835495,0.482224136590958,0.172958508133888,0.751733005046844,-0.567598700523376,-0.33575177192688,0.73018616437912,0.56273478269577,-0.387501984834671,0.797955811023712,-0.481077313423157,-0.363085716962814,0.71707147359848,0.561778366565704,-0.412569493055344,0.712732076644897,-0.570223569869995,-0.408482640981674,0.727055311203003,0.544457495212555,-0.418278247117996,0.742977857589722,0.549840450286865,-0.381653547286987,0.703322291374207,0.608386099338531,-0.367701262235641,0.734588086605072,0.562960743904114,-0.378755331039429,0.744202077388763,0.563271105289459,-0.359011232852936,0.711771667003632,0.610320925712585,-0.347691535949707,0.713184118270874,0.608384191989899,-0.348191291093826,-0.330323308706284,0.926236867904663,0.181581243872643,0.772249639034271,0.604815661907196,-0.194495648145676,0.77156400680542,0.605785667896271,-0.194197848439217,-0.285642147064209,0.910258889198303,0.299728989601135,-0.78559410572052,-0.545987010002136,0.291101396083832,0.746896386146545,0.611764550209045,-0.260556995868683,-0.297881126403809,0.948726654052734,0.105757974088192,0.717330634593964,0.608700752258301,-0.338998973369598,0.71560001373291,0.611124873161316,-0.338294565677643,0.72235232591629,0.609006226062775,-0.327595263719559,-0.299775987863541,0.948605000972748,0.101404905319214,-0.349967747926712,0.928581714630127,0.123526394367218,0.736020565032959,0.438563823699951,0.515689373016357,-0.643691599369049,0.724684536457062,0.245954304933548,-0.0835723951458931,0.855603694915771,0.510840475559235,-0.295579314231873,0.948845088481903,0.111021958291531,-0.48509868979454,0.854171216487885,0.187272220849991,-0.347265213727951,0.928461849689484,0.131777837872505,
- -0.383175939321518,0.923574090003967,0.01367430947721,-0.531503200531006,0.844781935214996,0.0620306730270386,-0.79230660200119,-0.546769976615906,0.270726531744003,-0.490852385759354,0.853872895240784,0.17310419678688,-0.302663266658783,0.948377549648285,0.0947376042604446,-0.645312428474426,0.725613176822662,0.238867118954659,-0.783521115779877,-0.54570472240448,0.29715484380722,-0.492377907037735,0.853758811950684,0.169292584061623,-0.763310730457306,-0.577206313610077,0.290154367685318,-0.642834365367889,0.724185824394226,0.249637737870216,-0.72608482837677,-0.5758957862854,0.37569272518158,-0.491769969463348,0.85380607843399,0.170814394950867,-0.770819783210754,-0.576805591583252,0.270429790019989,-0.939087867736816,0.0544327087700367,0.339339315891266,-0.790037155151367,-0.546528875827789,0.277754336595535,-0.955113112926483,0.0549361854791641,0.291103303432465,-0.792900383472443,-0.573715448379517,0.205328047275543,-0.954998195171356,0.0565812215209007,0.291165173053741,-0.908914089202881,0.0591912567615509,0.412761032581329,-0.730020105838776,-0.576246440410614,0.367438018321991,-0.908994436264038,0.0566051490604877,0.412946730852127,-0.130965888500214,0.253083914518356,0.958538770675659,-0.0794310942292213,0.0200731810182333,0.996638298034668,-0.0101606836542487,-0.2661492228508,0.963878273963928,-0.400771796703339,0.0365063212811947,0.91545033454895,-0.183914214372635,0.307444900274277,0.933623790740967,-0.690935432910919,-0.620391547679901,0.371109992265701,-0.0221896152943373,0.999478101730347,-0.0234749019145966,-0.0104419514536858,0.989410161972046,0.144770875573158,-0.0174055248498917,0.998786866664886,0.0460643135011196,-0.114412553608418,0.987428069114685,0.109067231416702,-0.0497967228293419,0.998531103134155,0.021354841068387,-0.104795001447201,0.989851832389832,0.0959765315055847,-0.133647307753563,0.986755073070526,0.0919401571154594,0.224395334720612,0.911518692970276,-0.344645589590073,-0.0666851326823235,0.997738480567932,0.00843242928385735,-0.0297203660011292,0.999480366706848,0.0124753313139081,
- -0.206008791923523,0.978198647499084,0.0262259915471077,-0.0956589579582214,0.995257675647736,0.01765644736588,0.260360300540924,0.912351369857788,-0.31595516204834,-0.0818452388048172,0.987079739570618,0.137749373912811,0.222927033901215,0.937898457050323,-0.265801131725311,-0.230504006147385,0.97306501865387,0.00350497616454959,0.0291292387992144,0.997593104839325,-0.0629244893789291,0.356001824140549,0.923828959465027,-0.140722841024399,0.224549099802971,0.911526203155518,-0.344525277614594,0.185242965817451,0.936276376247406,-0.298449069261551,0.424630463123322,0.701325118541718,-0.572566270828247,0.0884400308132172,0.986380934715271,-0.138676479458809,0.715970635414124,0.656592667102814,-0.237217485904694,0.314112961292267,0.931806802749634,-0.181849181652069,0.330947548151016,0.689558446407318,-0.644191741943359,0.502534747123718,0.56005185842514,-0.658635556697845,0.520101964473724,0.544114291667938,-0.658356845378876,0.520101964473724,0.544114291667938,-0.658356845378876,0.865645051002502,-0.00136632472276688,-0.500656425952911,0.330947548151016,0.689558446407318,-0.644191741943359,0.237979754805565,0.912058353424072,-0.333938926458359,0.422247499227524,0.701142132282257,-0.57454925775528,0.28107550740242,0.876651883125305,-0.390484422445297,0.60470187664032,-0.06718909740448,-0.793612778186798,0.409610658884048,0.700065076351166,-0.584917068481445,0.60399717092514,-0.101385094225407,-0.790511548519135,0.42043000459671,0.697560250759125,-0.580214083194733,0.27236419916153,0.876443028450012,-0.397071123123169,0.418394356966019,0.700832724571228,-0.577736794948578,0.418394356966019,0.700832724571228,-0.577736794948578,0.610760927200317,-0.0678623244166374,-0.788901627063751,0.42043000459671,0.697560250759125,-0.580214083194733,0.139473140239716,0.861021518707275,-0.489069759845734,0.108964622020721,0.650150418281555,-0.751951634883881,0.150859102606773,0.946071624755859,-0.286688089370728,0.503744184970856,0.69435715675354,-0.513916373252869,0.261078506708145,-0.0290087200701237,-0.964881598949432,0.474057734012604,0.532158076763153,-0.701482057571411,
- 0.474057734012604,0.532158076763153,-0.701482057571411,0.473781049251556,0.531047344207764,-0.702509939670563,0.503744184970856,0.69435715675354,-0.513916373252869,-0.996014595031738,0.075314961373806,0.0477776937186718,-0.0236131213605404,0.999622046947479,0.0140841137617826,-0.0148833226412535,0.999795734882355,0.0136761767789721,-0.0236133597791195,0.999632179737091,0.0133375050500035,-0.995884895324707,0.0755099281668663,0.0501170642673969,-0.996938765048981,0.0601242519915104,0.0499817989766598,-0.996938049793243,0.0601231120526791,0.0499991439282894,-0.995881199836731,0.0755151435732841,0.0501798093318939,-0.997800946235657,-0.0452327691018581,0.0484487600624561,-0.990768253803253,0.0550398305058479,0.123890891671181,-0.991613447666168,-0.0420363731682301,0.12221223115921,-0.990280091762543,-0.0675593242049217,0.121577970683575,-0.989909708499908,-0.067830890417099,0.124409548938274,-0.991282105445862,-0.0419144444167614,0.124911665916443,-0.0490758046507835,-0.998774349689484,-0.00644677504897118,-0.0483829230070114,-0.998805046081543,-0.00689453352242708,-0.0491377413272858,-0.998768925666809,-0.00680017750710249,-0.991542816162109,-0.0420101918280125,0.122792474925518,0.046340461820364,0.99888402223587,-0.00912481360137463,-0.0237390492111444,0.999718010425568,0.000617999525275081,-0.00826966390013695,0.999964654445648,-0.00153379002586007,-0.0348516516387463,0.993482291698456,-0.108527779579163,0.0271284189075232,0.992805302143097,-0.11662632972002,-0.0115172425284982,0.993683338165283,-0.111628666520119,0.00100927473977208,0.999951660633087,0.00978220161050558,0.0485860928893089,0.99881237745285,0.00365398917347193,0.0480076968669891,0.998839974403381,0.00372862769290805,0.0397701784968376,0.999193847179413,0.00548437004908919,-0.0236146338284016,0.999686121940613,0.00836333446204662,0.0314799137413502,0.999487221240997,0.00586258759722114,-0.0234776791185141,0.993888437747955,-0.107863537967205,0.030420932918787,0.993425369262695,-0.110366798937321,0.0148410368710756,0.993856608867645,-0.10967580974102,
- -0.0236140489578247,0.999661386013031,0.0109293265268207,0.0243113301694393,0.999665319919586,0.00885428115725517,-0.0150800729170442,0.999830603599548,0.0105614978820086,-0.954217851161957,0.0679204612970352,0.291299104690552,-0.0268592555075884,0.999404013156891,0.0216852370649576,-0.0261217281222343,0.999428391456604,0.0214611273258924,-0.0286351125687361,0.999479293823242,0.0148686952888966,-0.953732788562775,0.0680613070726395,0.29285079240799,-0.954464375972748,0.0561036802828312,0.293002277612686,-0.954411208629608,0.0560930259525776,0.293177098035812,-0.953650712966919,0.0680850222706795,0.293112277984619,-0.954988956451416,-0.0532633885741234,0.291820555925369,-0.930045962333679,0.0515857636928558,0.363804072141647,-0.930838704109192,-0.0500847585499287,0.361981749534607,-0.929812848567963,-0.0708644539117813,0.361146003007889,-0.929379999637604,-0.0710006430745125,0.36223179101944,-0.930431485176086,-0.0500342510640621,0.363034099340439,-0.043743010610342,-0.999041676521301,-0.0015188604593277,-0.0338287986814976,-0.999427497386932,-0.000620367063675076,-0.0419250652194023,-0.9991175532341,0.00254384777508676,-0.930628180503845,-0.0500586330890656,0.362526535987854,0.0354756079614162,0.999226987361908,-0.0169416218996048,-0.0300975162535906,0.999500155448914,0.00968363508582115,-0.0155471479520202,0.999872028827667,0.00377451837994158,-0.0673171281814575,0.993303656578064,-0.0938958898186684,-0.0095590353012085,0.993107676506042,-0.116815119981766,-0.0454362705349922,0.993681073188782,-0.102633386850357,-0.00400068750604987,0.9999178647995,0.0121822357177734,0.0406226553022861,0.999159753322601,-0.00545328017324209,0.0327155776321888,0.999462068080902,-0.00232655555009842,0.0319521464407444,0.999481081962585,-0.00409166421741247,-0.0288066565990448,0.999484062194824,0.014209920540452,0.0164073780179024,0.999865233898163,0.000592808180954307,-0.0573794990777969,0.993693232536316,-0.0963407829403877,-0.00435296585783362,0.993650794029236,-0.112423971295357,-0.020213982090354,0.993983387947083,-0.107649870216846,
- -0.0276518948376179,0.999443769454956,0.0186435021460056,0.0183186400681734,0.999820470809937,0.00484380265697837,-0.0270857457071543,0.999462425708771,0.0184736959636211,-0.589858889579773,-0.0509755536913872,-0.805895805358887,-0.595755577087402,0.0016331379301846,-0.803164124488831,-0.596354484558105,0.00798641238361597,-0.802681565284729,-0.631813824176788,0.00112838996574283,-0.775119364261627,-0.628747761249542,-0.0583496429026127,-0.775417029857636,-0.627323567867279,-0.0770001336932182,-0.774942636489868,-0.627532422542572,-0.0769888758659363,-0.774774730205536,-0.459192365407944,0.714830815792084,-0.527408063411713,-0.631368339061737,0.00113475462421775,-0.77548223733902,-0.698200583457947,-0.0303962994366884,-0.715256631374359,-0.641382277011871,0.0130130276083946,-0.76711118221283,-0.744640588760376,-0.0692268311977386,-0.663866102695465,-0.455179631710052,0.714925229549408,-0.530747950077057,-0.640012443065643,-0.0763012543320656,-0.764566659927368,-0.451792001724243,0.720107793807983,-0.526620209217072,-0.34411945939064,0.711739599704742,-0.612379372119904,-0.884325325489044,-0.0540917180478573,-0.463727027177811,-0.559826076030731,0.537540197372437,-0.6305912733078,-0.455179631710052,0.714925229549408,-0.530747950077057,-0.451792001724243,0.720107793807983,-0.526620209217072,-0.310211539268494,0.881883859634399,-0.355034679174423,-0.54396915435791,0.553193867206573,-0.630931198596954,-0.34411945939064,0.711739599704742,-0.612379372119904,-0.559826076030731,0.537540197372437,-0.6305912733078,-0.221508026123047,0.941073536872864,-0.255567640066147,-0.305744171142578,0.88195013999939,-0.358726173639297,-0.446134775876999,0.720004439353943,-0.531561315059662,-0.336493968963623,0.93015193939209,-0.146932765841484,-0.727979183197021,0.656732082366943,-0.196848437190056,-0.12360855191946,0.986046433448792,-0.111504815518856,0.138159334659576,0.989847421646118,0.0333781652152538,-0.000742387026548386,0.99934709072113,0.0361238233745098,0.0614166632294655,0.997498989105225,0.0349819660186768,-0.0619349628686905,0.997385621070862,-0.0372288189828396,
- 0.161437302827835,0.986814677715302,0.0116134434938431,-0.37841585278511,0.919749319553375,-0.104224190115929,-0.216301113367081,0.943615674972534,-0.250606000423431,-0.304395169019699,0.881964325904846,-0.359836846590042,-0.220812499523163,0.941067755222321,-0.256190031766891,0.0672919452190399,0.992846071720123,0.0986330807209015,-0.216301113367081,0.943615674972534,-0.250606000423431,-0.220812499523163,0.941067755222321,-0.256190031766891,-0.308913081884384,0.881906270980835,-0.356109768152237,-0.239050894975662,0.942611813545227,-0.23310449719429,-0.313946515321732,0.876412928104401,-0.365154832601547,-0.213958472013474,0.943674564361572,-0.252388775348663,0.0654561892151833,0.992801427841187,0.10030373185873,0.0738685727119446,0.991086483001709,0.110864751040936,-0.0932657495141029,0.932897508144379,-0.347856014966965,-0.0936587899923325,0.936017274856567,-0.339263468980789,-0.100648373365402,0.986731171607971,-0.127403005957603,-0.0427151471376419,0.926690340042114,-0.37339061498642,-0.0345792062580585,0.982224941253662,0.184495434165001,-0.0395105257630348,0.997966766357422,-0.0500133261084557,0.0420281365513802,0.997699022293091,0.0532001741230488,0.03538528829813,0.989895582199097,0.137312337756157,0.0364143028855324,0.991544365882874,0.124554507434368,-0.0251063816249371,0.999499440193176,0.019250750541687,-0.019232552498579,0.999717116355896,0.0139949843287468,-0.0368989519774914,0.998874485492706,0.0298030730336905,-0.0942175388336182,0.994210958480835,-0.0516511499881744,-0.0533829107880592,0.99467921257019,-0.0881110355257988,-0.0825944170355797,0.994648456573486,-0.0620705410838127,-0.0113954376429319,0.9996617436409,0.0233781225979328,0.0245542228221893,0.999661684036255,-0.00859045889228582,0.0241350755095482,0.999674916267395,-0.00821755826473236,0.000605275854468346,0.999902248382568,0.0139689520001411,0.0064655258320272,0.999933421611786,0.00956169422715902,0.00688776932656765,0.99993360042572,0.00924411043524742,-0.100066445767879,0.992915391921997,-0.0640772506594658,-0.0623306334018707,0.993789672851563,-0.092179112136364,
- -0.0726963877677917,0.993768990039825,-0.0844902843236923,0.0105897905305028,0.999851822853088,0.0135766537860036,-0.0284447148442268,0.998698711395264,0.04233093932271,0.00395695446059108,0.999821722507477,0.0184661969542503,-0.0986716151237488,0.993187308311462,-0.0619915053248405,-0.0669737830758095,0.994053363800049,-0.0858638137578964,-0.0675130113959312,0.994051694869995,-0.0854595080018044,-0.0323897264897823,0.99880838394165,0.0365060456097126,0.00615297304466367,0.999950766563416,0.00778857339173555,-0.0320277214050293,0.998829901218414,0.0362364575266838,0.0161943137645721,0.999840497970581,-0.00753836566582322,0.0158579051494598,0.999849021434784,-0.00711970776319504,0.0260397661477327,0.999464988708496,-0.0197925232350826,-0.0639836043119431,0.995049118995667,-0.0760493502020836,-0.0684133544564247,0.995163857936859,-0.0704876780509949,-0.0932444334030151,0.994872689247131,-0.0391645506024361,0.017766023054719,0.999821901321411,-0.00636692252010107,-0.0118652787059546,0.999457478523254,0.0307233799248934,-0.0121779423207045,0.999441623687744,0.0311145558953285,-0.609243988990784,0.767485499382019,-0.199468895792961,-0.597099483013153,0.766279458999634,-0.237250879406929,-0.607826232910156,0.767404019832611,-0.204055204987526,-0.00327921705320477,0.999470233917236,0.0323831588029861,0.0108497692272067,0.999929845333099,-0.00476684980094433,0.0106648057699203,0.999934017658234,-0.00428027706220746,-0.0288474839180708,0.99881112575531,0.0392969101667404,-0.00942715257406235,0.999891757965088,-0.0113020725548267,-0.0233491584658623,0.999415695667267,0.0249605048447847,-0.0786231979727745,0.996338844299316,-0.033575564622879,-0.095617488026619,0.995339393615723,0.0125255472958088,-0.0975808948278427,0.99506688117981,0.0178904701024294,-0.014243496581912,0.99888813495636,0.0449407659471035,-0.0143023291602731,0.998880445957184,0.0450938418507576,-0.0200385749340057,0.997996151447296,0.0600180961191654,-0.0350388921797276,0.0684362724423409,0.997039973735809,0.0118077071383595,0.999102532863617,0.0406777560710907,
- 0.0121333161368966,0.999421775341034,0.0317644625902176,0.0148185333237052,0.999051868915558,0.0409385971724987,-0.0359655022621155,0.0683607533574104,0.997012257575989,-0.0363160111010075,0.0494427382946014,0.998116552829742,-0.0381468497216702,-0.0646167621016502,0.997180879116058,-0.0363160111010075,0.0494427382946014,0.998116552829742,-0.0359655022621155,0.0683607533574104,0.997012257575989,-0.0415277145802975,-0.0647673681378365,0.997036039829254,-0.0416566021740437,-0.0744472444057465,0.996354520320892,-0.0397153757512569,0.0496502667665482,0.997976779937744,-0.0389646254479885,-0.0646532475948334,0.997146785259247,-0.0109806237742305,-0.999441385269165,0.0315649323165417,-0.0390360131859779,-0.0747450664639473,0.996438324451447,-0.0143187306821346,-0.999398410320282,0.031589861959219,-0.046203937381506,-0.0649744644761086,0.996816694736481,-0.0142781911417842,-0.999426960945129,0.0306910276412964,0.999968826770782,-0.000548273616004735,-0.00788672175258398,0.125838354229927,0.00831111427396536,-0.992015957832336,0.999969065189362,-0.000548529264051467,-0.00785649660974741,0.125830069184303,0.00880828686058521,-0.992012798786163,0.99993497133255,-0.00806414987891912,-0.00806399527937174,0.103050604462624,0.00901981070637703,-0.994635224342346,0.103050604462624,0.00901981070637703,-0.994635224342346,-0.0316387377679348,0.0101645058020949,-0.999447703361511,0.125830069184303,0.00880828686058521,-0.992012798786163,-0.0315377935767174,0.00365821132436395,-0.99949586391449,0.102707475423813,0.00165136670693755,-0.994710326194763,-0.0472260490059853,0.0038889751303941,-0.998876750469208,-0.996136665344238,0.0150541430339217,-0.0865166261792183,-0.0315377935767174,0.00365821132436395,-0.99949586391449,-0.0472260490059853,0.0038889751303941,-0.998876750469208,-0.031468503177166,-0.000758912472520024,-0.999504446983337,-0.996263086795807,-0.00532569363713264,-0.0862066373229027,-0.996178448200226,-0.00532582169398665,-0.0871793031692505,-0.00129522127099335,0.999503910541534,-0.0314702391624451,-0.00371937453746796,0.999229311943054,0.0390761606395245,
- -0.00318997795693576,0.999715507030487,0.0236404463648796,-0.113434575498104,0.993059992790222,0.031058182939887,-0.110977180302143,0.993357598781586,-0.0304130204021931,-0.112549737095833,0.99361652135849,0.00767153967171907,0.0112161245197058,0.99943870306015,-0.0315667018294334,0.0111866872757673,0.999461054801941,-0.0308624971657991,0.00919985212385654,0.999823212623596,0.0163972061127424,0.00866488087922335,0.999460399150848,0.0316837467253208,0.00831728335469961,0.999150037765503,0.0403749234974384,0.0102342534810305,0.999917268753052,-0.0077927797101438,-0.110032498836517,0.993480682373047,0.0298178233206272,-0.108047284185886,0.993848025798798,-0.0243274923413992,-0.108653768897057,0.994041740894318,-0.00868264213204384,0.00634094933047891,0.999702274799347,-0.0235650856047869,0.00361376581713557,0.99919456243515,0.0399660691618919,0.00598427699878812,0.999866127967834,-0.0152276000007987,-0.577141284942627,0.531725227832794,-0.619819641113281,-0.57457047700882,-0.483152955770493,-0.660629987716675,-0.537235200405121,-0.56883430480957,-0.622740745544434,-0.559894561767578,-0.483622670173645,-0.67277580499649,-0.571241199970245,0.532763838768005,-0.624376654624939,-0.560290098190308,0.560191631317139,-0.6101313829422,-0.547098636627197,0.560728788375854,-0.621503293514252,-0.556283175945282,0.535238862037659,-0.635663866996765,-0.527826964855194,0.608672380447388,-0.59238213300705,-0.511847078800201,0.617613792419434,-0.597131371498108,-0.534734666347504,0.561074376106262,-0.631865859031677,-0.515063047409058,0.610207796096802,-0.601960599422455,0.0155343860387802,0.465455621480942,-0.884934902191162,0.0772945433855057,0.51197475194931,-0.855515956878662,-0.446445733308792,0.0105707142502069,-0.894748330116272,-0.79100102186203,0.543571412563324,-0.280798405408859,-0.801689922809601,0.490072190761566,-0.342231810092926,-0.723691761493683,0.0413100495934486,-0.688885867595673,-0.367807298898697,0.555607497692108,-0.745666205883026,-0.452279716730118,-0.567237675189972,-0.688247382640839,-0.472854554653168,-0.477187812328339,-0.740743219852448,
- -0.295165091753006,-0.571198582649231,-0.765904545783997,-0.322234064340591,0.551877617835999,-0.769152998924255,-0.326839327812195,0.531028270721436,-0.781783223152161,-0.379352450370789,0.556328356266022,-0.73931759595871,-0.359555959701538,0.600984156131744,-0.713819026947021,-0.385089457035065,0.542547166347504,-0.746557891368866,-0.378708839416504,0.603772342205048,-0.701454699039459,-0.399418979883194,0.557357728481293,-0.727885186672211,-0.372998297214508,0.61576908826828,-0.69404661655426,-0.505042612552643,0.617952048778534,-0.602550625801086,-0.50823974609375,0.610958456993103,-0.606977880001068,0.16958774626255,0.948573231697083,0.267299354076386,-0.378708839416504,0.603772342205048,-0.701454699039459,-0.372998297214508,0.61576908826828,-0.69404661655426,0.248488768935204,0.932905793190002,0.26065319776535,-0.485588729381561,0.618655323982239,-0.617631912231445,0.172094732522964,0.948659718036652,0.265382945537567,0.194979175925255,0.935353755950928,0.295121133327484,0.31119367480278,0.925000905990601,0.21801820397377,0.497828364372253,-0.543785393238068,0.675621569156647,-0.460562199354172,0.61224639415741,-0.642679393291473,0.428240597248077,0.768537402153015,0.475352704524994,0.513943076133728,0.856913208961487,-0.0395290888845921,0.318985998630524,0.444717109203339,-0.836943626403809,0.180700480937958,0.948885202407837,0.25877445936203,0.312700569629669,0.84111762046814,0.441293030977249,0.203206405043602,0.935225427150726,0.289932101964951,0.422047346830368,-0.547301948070526,0.722728610038757,0.0708420500159264,0.926824033260345,0.368752837181091,0.163564175367355,0.830011487007141,0.533223986625671,0.301985502243042,0.841184377670288,0.448568433523178,0.167276605963707,0.948485136032104,0.269062489271164,0.356730163097382,0.775715529918671,0.520585298538208,0.476852416992188,-0.545216858386993,0.689456641674042,0.298001766204834,0.84117329120636,0.451245456933975,0.464505732059479,-0.578161001205444,0.670793771743774,0.357462525367737,0.775671064853668,0.520148873329163,0.543040931224823,-0.576455235481262,0.61057835817337,
- 0.296797782182693,0.841166138648987,0.452051639556885,0.448943823575974,-0.577841639518738,0.681577920913696,0.557202041149139,0.04793980717659,0.828991949558258,0.46131443977356,-0.546045362949371,0.699302136898041,0.514192998409271,0.0485526025295258,0.856299161911011,0.391226768493652,-0.574948787689209,0.718592762947083,0.514254093170166,0.0512593947350979,0.856104731559753,0.621500253677368,0.0539780333638191,0.781552135944366,0.533403754234314,-0.576982975006104,0.618523418903351,0.621310412883759,0.0564912967383862,0.781525492668152,0.887449860572815,0.457098722457886,-0.05910624563694,0.980960130691528,0.0217790249735117,-0.192984089255333,0.935606956481934,-0.2449701577425,-0.254223257303238,0.985601603984833,0.0388174466788769,0.164568215608597,0.908947587013245,0.397591948509216,-0.125438839197159,0.52201783657074,-0.624247252941132,0.58121657371521,0.0144136184826493,0.999622642993927,-0.0233861450105906,0.0620713271200657,0.0686385259032249,-0.995708763599396,0.0143652893602848,0.999641537666321,-0.0225955676287413,0.0645307898521423,0.068842425942421,-0.995538353919983,0.0137355402112007,0.999631881713867,-0.0233970452100039,0.0644523426890373,0.0591564178466797,-0.996165871620178,0.0645883828401566,0.068847194314003,-0.995534241199493,0.0644814446568489,0.0591544546186924,-0.996164083480835,0.0628178119659424,-0.0524600669741631,-0.996645331382751,0.138408839702606,0.0539995655417442,-0.988901972770691,0.136059150099754,-0.0689433440566063,-0.988298892974854,0.136578068137169,-0.0491572618484497,-0.98940896987915,0.139389052987099,-0.0490253493189812,-0.989023447036743,0.138969540596008,-0.0692200511693954,-0.987874567508698,-0.00576070696115494,-0.998779892921448,-0.0490474924445152,-0.00612856354564428,-0.998774290084839,-0.0491178520023823,-0.0073123462498188,-0.999147295951843,-0.0406352877616882,0.136869579553604,-0.0491436012089252,-0.989369332790375,0.00417498731985688,0.999182462692261,0.0402133911848068,0.00298264063894749,0.998817980289459,0.0485159307718277,0.0109026608988643,0.999918043613434,-0.0067244516685605,
- -0.116951078176498,0.992817997932434,0.0252006556838751,-0.107999697327614,0.993480265140533,-0.0365113951265812,-0.110415190458298,0.993681132793427,-0.0201547127217054,0.000987855950370431,0.999719083309174,-0.0236852336674929,-0.00970001891255379,0.998890519142151,0.0460843406617641,-0.00137565156910568,0.999964892864227,-0.00826384406536818,0.00880101043730974,0.999685645103455,-0.0234760213643312,0.00500357011333108,0.999182105064392,0.0401266142725945,0.00598665932193398,0.999701082706451,0.0237092636525631,-0.110798627138138,0.993423461914063,0.0288693197071552,-0.107518836855888,0.993884444236755,-0.0251707956194878,-0.109880447387695,0.993857204914093,0.0131984623149037,0.0112662967294455,0.999661922454834,-0.0234366375952959,0.011230775155127,0.999676585197449,-0.0228185281157494,0.00849378388375044,0.999661147594452,0.0246103890240192,0.0351148322224617,0.0841510072350502,-0.995834112167358,-0.012417234480381,0.999618113040924,-0.0246885325759649,-0.012445904314518,0.999636769294739,-0.0239074658602476,-0.00823954399675131,0.999670088291168,-0.0243279132992029,0.0363582521677017,0.084049180150032,-0.995798110961914,0.0366732738912106,0.0573005378246307,-0.997683167457581,0.0360621027648449,0.0572633929550648,-0.997707664966583,0.0356442779302597,0.0841076597571373,-0.995818972587585,0.0374537371098995,-0.0489237979054451,-0.99810004234314,0.0391623601317406,0.0574516430497169,-0.997579991817474,0.0411959700286388,-0.0490932390093803,-0.997944235801697,0.0413519404828548,-0.0584064200520515,-0.997436106204987,0.0402094721794128,-0.0585448779165745,-0.997474670410156,0.0400706343352795,-0.0490423552691936,-0.99799257516861,0.0185934975743294,-0.998706340789795,-0.047329381108284,0.0145366350188851,-0.999151587486267,-0.0385354459285736,0.0149318855255842,-0.998768925666809,-0.0473035015165806,0.0461631864309311,-0.049317117780447,-0.997715771198273,0.000165374032803811,0.998885989189148,0.0471901595592499,0.00266370596364141,0.999722003936768,-0.023426715284586,0.00211483845487237,0.999966621398926,-0.00789040513336658,
- 0.112846411764622,0.993492066860199,-0.0154713289812207,0.11037489771843,0.992823362350464,0.0460359454154968,0.111956089735031,0.99368155002594,0.00793389603495598,-0.00981090031564236,0.999951601028442,-0.00069526064908132,-0.0118239196017385,0.998811662197113,0.0472810529172421,-0.011465790681541,0.999184906482697,0.038706012070179,-0.00893186032772064,0.999662756919861,-0.0243877060711384,-0.0108445240184665,0.999664425849915,0.0235287323594093,-0.00895441696047783,0.999676048755646,-0.023825915530324,0.10943279415369,0.993895649909973,-0.013999417424202,0.107437700033188,0.993408620357513,0.0399565398693085,0.108048297464848,0.993847906589508,0.0243274960666895,-0.00694490130990744,0.999203979969025,0.0392840504646301,-0.00422762054949999,0.999703526496887,-0.0239812135696411,-0.0065968930721283,0.999492883682251,0.0311540104448795,-0.0508881583809853,0.0677065327763557,-0.996406674385071,-0.0145164513960481,0.999402642250061,-0.0313629470765591,-0.0144767854362726,0.999427914619446,-0.0305661205202341,-0.00748224090784788,0.999478280544281,-0.0314207151532173,-0.0524917319417,0.0678406655788422,-0.996314346790314,-0.0524493344128132,0.0520764477550983,-0.997264862060547,-0.0512020923197269,-0.05295255407691,-0.997283518314362,-0.0526115708053112,0.0520670600235462,-0.997256755828857,-0.0527738779783249,0.0678642466664314,-0.996297836303711,-0.127051413059235,0.0476056039333344,-0.990753054618835,-0.125154346227646,-0.0496887713670731,-0.990892231464386,-0.124584466218948,-0.0708024427294731,-0.989679574966431,-0.125745788216591,-0.0709412097930908,-0.989522814750671,-0.12627637386322,-0.049636896699667,-0.990752518177032,0.0120799988508224,-0.999040901660919,-0.0420877151191235,0.00880196411162615,-0.999424040317535,-0.0327755995094776,0.00770815415307879,-0.999116182327271,-0.0413212813436985,-0.125712275505066,-0.0496629886329174,-0.990822970867157,0.00783505756407976,0.999224424362183,0.0385900065302849,-0.00207769242115319,0.999501168727875,-0.0315158329904079,0.000114536145702004,0.999871730804443,-0.016019020229578,
- 0.107419013977051,0.993300080299377,-0.0426162481307983,0.115677230060101,0.993098080158234,0.0193647295236588,0.110578194260597,0.993680119514465,-0.019295210018754,-0.0108435349538922,0.999917984008789,-0.0068170796148479,-0.00456879800185561,0.999158084392548,0.0407704301178455,-0.00567359337583184,0.999458730220795,0.0324042774736881,-0.0113727264106274,0.999442517757416,-0.0313889570534229,-0.00915235467255116,0.999822616577148,0.0164658967405558,-0.0113439029082656,0.999462366104126,-0.030764551833272,0.107394993305206,0.993696749210358,-0.0321431644260883,0.110094651579857,0.993663489818573,0.0226276181638241,0.109359808266163,0.993977308273315,0.00704217609018087,-0.00379833625629544,0.9994877576828,0.0317790135741234,-0.00679224915802479,0.999483048915863,-0.0314262993633747,-0.00455810176208615,0.999865055084229,0.0157817974686623,0.924986600875854,-0.0528100579977036,-0.376312226057053,0.923644840717316,0.00425526779145002,-0.383225858211517,0.923636078834534,0.00443015992641449,-0.38324511051178,0.905270338058472,0.00378308049403131,-0.424819141626358,0.904803097248077,-0.060209896415472,-0.421552002429962,0.903995275497437,-0.078298807144165,-0.420311540365219,0.903892934322357,-0.0782899484038353,-0.420533448457718,0.622296810150146,0.715706884860992,-0.317033708095551,0.905541896820068,0.00378977926447988,-0.424239933490753,0.823670923709869,-0.0713415816426277,-0.56256240606308,0.864429295063019,-0.0303690917789936,-0.501836359500885,0.900332927703857,0.0124157834798098,-0.435024589300156,0.624548971652985,0.715806007385254,-0.312346637248993,0.89696604013443,-0.0776899755001068,-0.435219705104828,0.619289577007294,0.721435368061066,-0.309857249259949,0.676995575428009,0.712766528129578,-0.183414459228516,0.663098216056824,-0.0574337095022202,-0.746325850486755,0.747530996799469,0.538410246372223,-0.38898828625679,0.624548971652985,0.715806007385254,-0.312346637248993,0.619289577007294,0.721435368061066,-0.309857249259949,0.419770270586014,0.881852328777313,-0.214778214693069,0.747530996799469,0.538410246372223,-0.38898828625679,
- 0.743996262550354,0.554029226303101,-0.37352529168129,0.676995575428009,0.712766528129578,-0.183414459228516,0.302242636680603,0.940859615802765,-0.153077080845833,0.42225182056427,0.881937026977539,-0.209500789642334,0.622737050056458,0.721323788166046,-0.303134828805923,0.225155591964722,0.929337739944458,-0.292636871337891,0.367306858301163,0.658872008323669,-0.656485676765442,0.138109028339386,0.986080467700958,-0.092581033706665,-0.0657842382788658,0.9898761510849,0.125768199563026,-0.0348276495933533,0.999348223209381,-0.00949582364410162,-0.0487819574773312,0.997502088546753,0.0510891862213612,0.0511093139648438,0.997394919395447,-0.0509052351117134,-0.0503848604857922,0.986862778663635,0.153503715991974,0.194191366434097,0.918677508831024,-0.343978971242905,0.296377867460251,0.943325638771057,-0.149321541190147,0.422994792461395,0.881956577301025,-0.207913383841515,0.302674651145935,0.940856337547302,-0.15224190056324,-0.111870527267456,0.992866098880768,0.0412560515105724,0.296377867460251,0.943325638771057,-0.149321541190147,0.302674651145935,0.940856337547302,-0.15224190056324,0.420539319515228,0.881881713867188,-0.213146761059761,0.284859031438828,0.942378997802734,-0.175434589385986,0.428952932357788,0.877267956733704,-0.215407699346542,0.297547847032547,0.943379402160645,-0.146631315350533,-0.113045588135719,0.992821335792542,0.039071012288332,-0.126003071665764,0.991010010242462,0.0449729114770889,0.359135061502457,0.933263659477234,-0.00641224626451731,0.353689551353455,0.935328304767609,-0.0080411434173584,0.148546367883682,0.986661016941071,-0.066589742898941,-0.170697346329689,0.982208251953125,-0.078289695084095,0.0583250522613525,0.997955203056335,-0.0261457115411758,0.374691933393478,0.925821244716644,0.0496089830994606,-0.0620521940290928,0.997685194015503,0.0278165005147457,-0.14226396381855,0.98982834815979,0.00090760737657547,-0.128945544362068,0.991636991500854,0.00540000200271606,0.013057978823781,0.99972128868103,0.0196677558124065,-0.0199139937758446,0.998878121376038,-0.0429649017751217,
- -0.0125761674717069,0.999499559402466,-0.0290283989161253,0.0791085064411163,0.992757141590118,-0.0904167518019676,0.107882179319859,0.993523478507996,-0.0356717221438885,0.0900995880365372,0.993496894836426,-0.0696137547492981,-0.0198984835296869,0.999662458896637,-0.0167067591100931,0.00236204545944929,0.999662041664124,0.025889229029417,0.00213832478038967,0.999673545360565,0.0254613813012838,-0.0137163884937763,0.999902009963989,-0.00280170002952218,-0.0108749680221081,0.999933242797852,0.00392961036413908,-0.0106508005410433,0.999933362007141,0.00446059182286263,0.0865164995193481,0.992925524711609,-0.0813257396221161,0.104645453393459,0.993790447711945,-0.0378130599856377,0.0995225757360458,0.993769526481628,-0.0501741543412209,-0.0157092474400997,0.999851822853088,0.00704207643866539,-0.0342051349580288,0.998692333698273,-0.0379943996667862,-0.0188686288893223,0.999821782112122,-0.000643238425254822,0.0841688886284828,0.993195295333862,-0.0804910436272621,0.0993752181529999,0.994052410125732,-0.0445475094020367,0.0993752181529999,0.994052410125732,-0.0445475094020367,-0.027592159807682,0.998802959918976,-0.0403895415365696,-0.00905701704323292,0.99995082616806,0.00406004162505269,-0.0272905360907316,0.998840272426605,-0.039665725082159,-0.0177215170115232,-0.999121308326721,-0.0379821248352528,-0.666691601276398,-0.0660148859024048,-0.742404520511627,-0.0119217988103628,-0.999431371688843,-0.0315399393439293,-0.667823970317841,-0.0658929497003555,-0.741396844387054,-0.0203395169228315,-0.999166369438171,-0.0353957153856754,-0.668435990810394,-0.0526327565312386,-0.741905093193054,-0.668044745922089,-0.0526019483804703,-0.742259562015533,-0.669109404087067,0.053253848105669,-0.74125349521637,-0.667377293109894,-0.0659410879015923,-0.74179470539093,-0.610944509506226,0.0495167262852192,-0.790123462677002,-0.609564483165741,-0.0479972027242184,-0.791282117366791,-0.610462963581085,0.0711013972759247,-0.788847088813782,-0.0291772354394197,0.999412894248962,-0.0179587863385677,-0.609325349330902,0.049411877989769,-0.791379332542419,
- -0.608728051185608,0.0713512375950813,-0.790163934230804,-0.609388053417206,0.0494159311056137,-0.791330754756927,-0.0299464054405689,0.999399721622467,-0.0174183789640665,-0.0294209476560354,0.999427020549774,-0.0167345311492682,-0.00900614634156227,0.999870896339417,-0.0133132757619023,-0.00884573720395565,0.999874651432037,-0.0131381340324879,-0.0195081941783428,0.999502658843994,-0.024779487401247,0.0615039356052876,0.994656205177307,-0.0829240307211876,0.0985436588525772,0.994237065315247,-0.042213324457407,0.0668772682547569,0.994782090187073,-0.0770463868975639,-0.0181101113557816,0.999821901321411,-0.00530530465766788,0.0195100195705891,0.999153614044189,0.0362152867019176,0.0137819480150938,0.999458074569702,0.0298963040113449,-0.0272069126367569,0.99944269657135,-0.0193429440259933,0.00191106530837715,0.999820590019226,0.018844448029995,-0.0267988219857216,0.99946391582489,-0.0188074838370085,0.0607098191976547,0.994873404502869,-0.080877996981144,0.0893511399626732,0.995046257972717,-0.0435821302235127,0.0850907117128372,0.995160162448883,-0.0491524077951908,0.0035808845423162,0.99984085559845,0.0174817442893982,0.00320118758827448,0.999850749969482,0.0169809125363827,0.0131301712244749,0.99946141242981,0.0300758369266987,-0.0400197543203831,0.998887538909912,-0.0249431617558002,-0.0401839129626751,0.998878121376038,-0.0250584576278925,-0.0531519614160061,0.998001754283905,-0.0341668538749218,0.0515682101249695,0.996334433555603,-0.068254217505455,0.0109532736241817,0.995326161384583,-0.0959478840231895,0.00623030215501785,0.995052814483643,-0.0991520807147026,-0.0311857387423515,0.998807013034821,-0.0375771708786488,0.0132358744740486,0.999891936779022,-0.00641168048605323,-0.0184362791478634,0.999419808387756,-0.0286370888352394,0.0206901542842388,0.999616026878357,-0.0184316523373127,-0.0106601724401116,0.999138414859772,-0.0401096679270267,-0.0105913477018476,0.999141097068787,-0.0400621294975281,-0.0306062269955873,0.999467432498932,-0.0113169774413109,0.00211374973878264,0.999931454658508,0.0115171121433377,
- 0.00172231276519597,0.999935269355774,0.0112440371885896,-0.0550314821302891,0.997937023639679,-0.0330651439726353,-0.0182254761457443,0.999831318855286,-0.00227070925757289,-0.0547006130218506,0.997964382171631,-0.0327881798148155,0.0172187853604555,0.993497252464294,-0.11254757642746,0.0538469068706036,0.995176672935486,-0.0819995775818825,0.0479256771504879,0.995058536529541,-0.0869574993848801,-0.0168090928345919,0.999850392341614,-0.00408707000315189,-0.0172173753380775,0.999842047691345,-0.00443315040320158,-0.00480719748884439,0.999969959259033,0.00608506007120013,-0.975584030151367,0.0623859018087387,-0.210579678416252,-0.0417062900960445,0.999121129512787,0.00419587735086679,-0.0334470234811306,0.999422550201416,0.00598962744697928,-0.0420690625905991,0.99909907579422,0.00559374783188105,-0.976064920425415,0.0625884309411049,-0.208278551697731,-0.976915895938873,0.0455594696104527,-0.208709970116615,-0.976937115192413,0.0455532036721706,-0.208612039685249,-0.976094543933868,0.0626009702682495,-0.208135947585106,-0.975956499576569,-0.0576935335993767,-0.210191369056702,-0.988952577114105,-0.0543240010738373,-0.137918993830681,-0.987199485301971,-0.0797697231173515,-0.138108476996422,-0.989808797836304,0.0408426858484745,-0.136420637369156,-0.98753297328949,-0.0800676867365837,-0.135528281331062,-0.989294230937958,-0.0542064718902111,-0.135493755340576,-0.0304385684430599,-0.999427556991577,-0.0147682428359985,-0.0302243679761887,-0.999395072460175,-0.017210004851222,-0.98909467458725,-0.0542754046618938,-0.13691557943821,-0.0292875822633505,-0.999425053596497,-0.0170813947916031,0.0315960943698883,0.999499559402466,0.00153549935203046,-0.0388136394321918,0.999220371246338,-0.0072198361158371,-0.0231585614383221,0.999717891216278,-0.00527419522404671,-0.0211840830743313,0.993039727210999,-0.115859434008598,0.0409347638487816,0.993343234062195,-0.107673414051533,0.00215594284236431,0.993611335754395,-0.112835772335529,-0.017224133014679,0.99982225894928,0.00766860414296389,0.0305024236440659,0.99943619966507,0.0140399411320686,
- 0.0297377575188875,0.999460577964783,0.0139380423352122,0.0297640152275562,0.999484241008759,0.012062388472259,-0.0397410020232201,0.999204337596893,-0.00337120005860925,0.0139624504372478,0.999866008758545,0.00855608191341162,-0.0107869170606136,0.993449211120605,-0.113764233887196,0.0502779707312584,0.993672251701355,-0.100437290966511,0.027362423017621,0.994044005870819,-0.105489507317543,-0.0409076251089573,0.999162316322327,0.00111957627814263,0.00589139061048627,0.999917030334473,0.0114562269300222,-0.0328264608979225,0.999456822872162,0.00290615693666041,0.424157083034515,0.53930538892746,-0.727489113807678,0.388168066740036,-0.447865009307861,-0.805445551872253,0.349013060331345,-0.56428849697113,-0.748176753520966,0.406034350395203,-0.45031464099884,-0.795206189155579,0.43155974149704,0.539651989936829,-0.722863793373108,0.426082819700241,0.560161232948303,-0.710403263568878,0.424364507198334,0.609723687171936,-0.66944146156311,0.441768854856491,0.558908700942993,-0.701755940914154,0.44755345582962,0.540263772010803,-0.712608635425568,0.460877954959869,0.557119905948639,-0.690803170204163,0.443342566490173,0.609469294548035,-0.657262921333313,0.43994614481926,0.618739485740662,-0.65085244178772,0.781553864479065,0.467821925878525,-0.412693917751312,0.778746128082275,0.542633533477783,-0.314807087182999,0.616856753826141,0.00318437814712524,-0.787069022655487,-0.0578028708696365,0.532489001750946,-0.844460964202881,0.0402720868587494,0.452001005411148,-0.89110791683197,0.442936480045319,0.0179345365613699,-0.896373569965363,0.449573308229446,0.609316945075989,-0.653159081935883,-0.064710333943367,0.947188138961792,0.314081847667694,0.446761220693588,0.61865097284317,-0.646278202533722,0.841705858707428,0.489949643611908,-0.22689351439476,0.26039457321167,0.316094994544983,0.912293076515198,0.630042731761932,0.495332270860672,0.598073720932007,0.473347544670105,0.605360627174377,-0.639906764030457,0.494894623756409,0.558858215808868,-0.665399730205536,0.466980338096619,0.618136823177338,-0.632326185703278,0.513879716396332,0.560249924659729,-0.649652063846588,
- 0.49340945482254,0.604844629764557,-0.625068068504334,0.523289501667023,0.537918567657471,-0.660917282104492,0.53155118227005,0.561251640319824,-0.634389460086823,0.542600750923157,0.536853611469269,-0.646043956279755,0.591220498085022,-0.46448028087616,-0.659330248832703,0.605058908462524,-0.462845504283905,-0.647825479507446,0.545394361019135,0.536671221256256,-0.643839240074158,0.569514453411102,-0.559709191322327,-0.60197913646698,0.4661805331707,0.618164420127869,-0.632889032363892,-0.218928411602974,0.945515394210815,0.240979254245758,0.472507566213608,0.605373859405518,-0.640514731407166,-0.184507206082344,0.946577548980713,0.264476954936981,0.441980749368668,0.618717432022095,-0.649493515491486,-0.172138720750809,0.953769564628601,0.246357306838036,-0.23981511592865,0.944054126739502,0.226386070251465,0.269659429788589,-0.235945835709572,0.933602392673492,-0.305829018354416,0.404407113790512,-0.861930131912231,-0.192845851182938,0.946471810340881,0.258846700191498,-0.180249020457268,0.953638076782227,0.241008013486862,-0.333425909280777,0.823773503303528,0.458502441644669,-0.110470086336136,0.951859474182129,0.28593698143959,-0.341135203838348,0.700519502162933,0.626816749572754,-0.259157508611679,0.8207026720047,0.509199798107147,-0.639689087867737,0.759656429290771,-0.117132529616356,-0.572291553020477,0.779936790466309,0.253339827060699,0.354888468980789,-0.182821854948998,0.916858971118927,-0.39655590057373,0.820959866046906,0.410814046859741,-0.39167994260788,0.826756477355957,0.403807520866394,-0.256223559379578,0.942462921142578,0.214740008115768,-0.39655590057373,0.820959866046906,0.410814046859741,-0.481321156024933,-0.543061792850494,0.688050866127014,-0.39167994260788,0.826756477355957,0.403807520866394,-0.48241201043129,-0.543272614479065,0.687119722366333,-0.388661235570908,0.821603715419769,0.417025029659271,-0.474622637033463,-0.56029748916626,0.678822576999664,-0.3426473736763,0.701053857803345,0.625392973423004,-0.454468309879303,-0.560071468353271,0.692660450935364,-0.263308048248291,0.821045160293579,0.506511270999908,
- -0.473192065954208,-0.560292422771454,0.679824709892273,-0.611538767814636,0.0523335710167885,0.789481818675995,-0.481150656938553,-0.543028771877289,0.688196122646332,-0.626483678817749,0.0504168830811977,0.777802228927612,-0.499288648366928,-0.560111343860626,0.66104930639267,-0.626486241817474,0.0539134778082371,0.777565658092499,-0.462423086166382,-0.55845320224762,0.688690721988678,-0.518473863601685,0.0578233376145363,0.853136301040649,-0.461898595094681,-0.560193300247192,0.68762868642807,-0.46252653002739,-0.560201585292816,0.687199711799622,-0.334828168153763,0.698262095451355,0.632708668708801,-0.463066667318344,-0.558397352695465,0.688303530216217,-0.510920464992523,0.0580491833388805,0.857665777206421,-0.448808610439301,-0.55955582857132,0.696755468845367,-0.511199831962585,0.0540494956076145,0.857760667800903,0.145299524068832,0.414539813995361,0.898356676101685,-0.272194772958755,0.0247698277235031,0.961923360824585,-0.684937238693237,-0.514847218990326,0.515551447868347,0.135762095451355,-0.0240228697657585,0.990450263023376,0.329862833023071,0.250279039144516,0.910247683525085,-0.363038450479507,-0.624707996845245,0.691334247589111,0.0191089883446693,0.999624371528625,0.0196505356580019,0.950800359249115,0.068893738090992,0.302046895027161,0.0183661691844463,0.999642848968506,0.0194155424833298,0.950002372264862,0.0691149011254311,0.304497420787811,0.0187504552304745,0.999603927135468,0.0209850315004587,0.95087742805481,0.0553940162062645,0.304571121931076,0.950858414173126,0.0553902983665466,0.304631382226944,0.951550543308258,-0.0527844168245792,0.302927911281586,0.949971318244934,0.0691234692931175,0.304592400789261,0.92571634054184,-0.0721336826682091,0.371276170015335,0.926850318908691,-0.0495935454964638,0.372140944004059,0.926157653331757,0.0509212799370289,0.37368306517601,0.0483222827315331,-0.998797953128815,0.00822123046964407,0.925914943218231,-0.0494794249534607,0.374477446079254,0.924705743789673,-0.0724402442574501,0.373726695775986,0.926509916782379,-0.0495519675314426,0.372993230819702,
- 0.0493194572627544,-0.99876469373703,0.00605377834290266,0.0412274785339832,-0.999145984649658,0.00278483796864748,0.0226752962917089,0.999720573425293,0.00668447557836771,-0.0425769649446011,0.998878836631775,-0.0206966381520033,0.00837485771626234,0.999964714050293,0.000682521087583154,0.00340964691713452,0.992793500423431,-0.119790002703667,0.061356320977211,0.99348658323288,-0.096020944416523,0.0469172261655331,0.993678689002991,-0.101988233625889,-0.0479805804789066,0.998808145523071,-0.00896381959319115,0.00379792484454811,0.999918639659882,0.012177012860775,-0.0400572381913662,0.999180972576141,-0.00572661450132728,0.0211208164691925,0.999702990055084,0.0121590504422784,-0.0392523221671581,0.999206185340881,-0.00680362386628985,-0.0238558910787106,0.999713540077209,-0.00196563545614481,-0.00129758205730468,0.993416011333466,-0.114556431770325,0.0505805164575577,0.993883013725281,-0.0981743931770325,0.0136126521974802,0.993851363658905,-0.109882682561874,-0.0257989857345819,0.999664485454559,0.00230678170919418,0.0199288874864578,0.999663650989532,0.0165981128811836,0.0193574130535126,0.999677777290344,0.0164196565747261,0.699202716350555,-0.000245760194957256,0.714923441410065,0.699212372303009,-0.000245573901338503,0.714913964271545,0.818294942378998,0.0135029572993517,-0.574639916419983,0.818274557590485,0.0145039418712258,-0.57464474439621,0.699422001838684,-0.0117135560140014,0.714612901210785,0.832773923873901,0.0141331851482391,-0.553432822227478,0.81830233335495,0.0131338462233543,-0.574637949466705,0.832708060741425,0.0126957576721907,-0.553566873073578,0.741877913475037,0.0151133453473449,-0.670364677906036,0.741823971271515,0.00779665913432837,-0.670549392700195,0.718746483325958,0.00796695146709681,-0.695226609706879,0.818406820297241,0.00710404571145773,-0.574595332145691,0.687341332435608,0.395992696285248,-0.608893930912018,0.825552701950073,0.20791894197464,-0.524626135826111,-0.167222380638123,0.814666628837585,-0.555297136306763,-0.482773989439011,0.0161192175000906,-0.875596761703491,0.718691110610962,0.0110733266919851,-0.695241391658783,
- 0.741849362850189,0.0106026502326131,-0.670482814311981,0.718797862529755,0.00465829903259873,-0.695203602313995,-0.485863953828812,-0.00687283556908369,-0.874007403850555,-0.559843480587006,-0.00742462463676929,-0.828565180301666,-0.382648974657059,0.911598682403564,0.150225281715393,-0.366356581449509,0.919319808483124,0.143645778298378,-0.219616636633873,0.97192394733429,0.0844530314207077,-0.217629000544548,0.971865653991699,0.0900823920965195,-0.368239343166351,0.91931825876236,0.138757720589638,-0.273158848285675,0.955876708030701,0.108092725276947,0.0575532913208008,0.998327314853668,0.00549323065206409,-0.220402255654335,0.971937537193298,0.0822210237383842,-0.275920152664185,0.956240832805634,0.0973218679428101,0.052511602640152,0.99846351146698,-0.0176964942365885,-0.222601756453514,0.97194641828537,0.07595095038414,0.052511602640152,0.99846351146698,-0.0176964942365885,0.434834837913513,0.103997051715851,0.89448493719101,0.515705168247223,0.102108418941498,0.850659847259521,0.482296675443649,0.103006437420845,0.869930744171143,0.436418354511261,0.0834037959575653,0.895869851112366,0.481343805789948,0.0822559371590614,0.872663855552673,0.477698445320129,0.0823581963777542,0.874655067920685,0.507799208164215,0.0803458169102669,0.857720613479614,0.477762669324875,0.081403560936451,0.874709367752075,0.481294065713882,0.0812852159142494,0.872782230377197,0.445129215717316,0.079826146364212,0.891901195049286,0.507947683334351,0.07835653424263,0.857816636562347,0.481177300214767,0.0790394097566605,0.873052775859833,-0.000148512204759754,-0.0037722100969404,-0.999992847442627,0.0395247004926205,-0.00471995491534472,-0.999207437038422,-0.00798660516738892,-0.00358426454477012,-0.999961733818054,0.0393827296793461,-0.00109769531991333,-0.999223649501801,1.0022734386439e-005,0.000254577462328598,-1,-2.01269922399661e-005,0.000255612772889435,-1,-0.0315435752272606,0.00133801379706711,-0.999501466751099,-2.01269922399661e-005,0.000255612772889435,-1,1.0022734386439e-005,0.000254577462328598,-1,0.0156778823584318,-0.00173200108110905,-0.999875664710999,
- -0.0315005294978619,0.000425389618612826,-0.9995037317276,-3.99017480958719e-005,-0.00101350445766002,-0.999999463558197,0.872770428657532,0.0778533592820168,0.481882333755493,0.904021203517914,0.0763284638524055,0.420618206262589,0.890035033226013,0.0770818740129471,0.449328601360321,0.902007639408112,0.0966920554637909,0.420752674341202,0.88726419210434,0.0968219488859177,0.450985342264175,0.88927173614502,0.0968110710382462,0.447016298770905,0.867099523544312,0.0966061353683472,0.488677471876144,0.8892742395401,0.0967592597007751,0.447022587060928,0.887271046638489,0.0967540219426155,0.450986385345459,0.868472576141357,0.0825716406106949,0.488812208175659,0.907327592372894,0.0811808630824089,0.412512272596359,0.889880776405334,0.0819092988967896,0.448779463768005,-0.9993497133255,0.0156928654760122,-0.0324641093611717,-0.99931001663208,0.0182692911475897,0.0323374457657337,-0.999855697154999,0.0169447772204876,-0.00120081100612879,-0.999502658843994,0.000908247078768909,0.031523309648037,-0.999968886375427,0.00022721930872649,0.00788629520684481,-1,0,-0,-0.999875843524933,-0.000453880697023124,-0.0157532244920731,-1,0,-0,-0.999968886375427,0.00022721930872649,0.00788629520684481,-0.999998152256012,0.00196009781211615,-0.000138904564664699,-0.999875485897064,0.001338628702797,-0.015724990516901,-0.999505579471588,0.00321134808473289,0.0312782004475594,-0.864351809024811,-0.000288474402623251,0.502887725830078,-0.864343822002411,-0.000288257404463366,0.502901434898376,0.363373935222626,0.0135202649980783,0.931545317173004,0.338433980941772,0.0141801238059998,0.940883278846741,0.363383919000626,0.0145620414987206,0.931525647640228,-0.864103734493256,-0.0117177302017808,0.503177404403687,0.471852570772171,0.015127144753933,0.881547808647156,0.363370835781097,0.0132056688889861,0.931550979614258,0.338578432798386,0.0127534344792366,0.940851747989655,0.472044110298157,0.00782589986920357,0.881540238857269,0.502986192703247,0.00800397992134094,0.864257454872131,0.363304167985916,0.00715263374149799,0.931643128395081,0.425154030323029,0.396886110305786,0.813465118408203,
- 0.311623334884644,0.211551159620285,0.926356852054596,0.579348742961884,0.814523637294769,-0.0301037915050983,0.965277373790741,0.0160889215767384,-0.260731101036072,0.503013610839844,0.0111339297145605,0.864206731319427,0.471973210573196,0.0106411892920733,0.881548643112183,0.502950966358185,0.00462089013308287,0.864302635192871,0.964463949203491,-0.00692912098020315,-0.264123678207397,0.940577447414398,-0.00743065774440765,-0.339497864246368,-0.711067378520966,-0.00077623117249459,0.703123450279236,-0.711037158966064,-0.000776116736233234,0.703153967857361,0.583504498004913,0.00255902181379497,0.8121058344841,0.563742101192474,0.00102174654603004,0.82595020532608,0.583491384983063,0.00143339007627219,0.812118053436279,-0.710763096809387,-0.0166200902312994,0.7032350897789,0.67887020111084,0.00351866753771901,0.734249889850616,0.583491384983063,0.00143339007627219,0.812118053436279,0.563742101192474,0.00102174654603004,0.82595020532608,0.67899477481842,-0.00366257224231958,0.734134018421173,0.707064628601074,-0.00342397671192884,0.707140743732452,0.583411872386932,-0.00438058795407414,0.812164604663849,0.59953248500824,0.446953058242798,0.66392308473587,0.528394877910614,0.232469707727432,0.816551744937897,0.508289277553558,0.853213906288147,-0.116910338401794,0.870393812656403,0.0145994015038013,-0.492139726877213,0.707105159759521,-0.000146892387419939,0.707108438014984,0.67894834280014,-0.000740200281143188,0.734185755252838,0.707030236721039,-0.00581702496856451,0.707159519195557,0.868515610694885,-0.00783738400787115,-0.495599895715714,0.81860363483429,-0.00744133628904819,-0.574310660362244,-0.0524527840316296,0.912644028663635,-0.405376076698303,-0.050287913531065,0.919509530067444,-0.389837563037872,-0.028697544708848,0.971707999706268,-0.234435513615608,-0.034687839448452,0.971645414829254,-0.233884528279305,-0.045246597379446,0.919497072696686,-0.390484094619751,-0.0386801660060883,0.955574572086334,-0.292200475931168,-0.0263531804084778,0.971722900867462,-0.234648793935776,-0.0275235753506422,0.955927908420563,-0.292308539152145,
- -0.0193899646401405,0.998330116271973,0.0544153600931168,0.00441119587048888,0.998467147350311,0.0551725551486015,-0.019699439406395,0.971735954284668,-0.235247030854225,0.00441119587048888,0.998467147350311,0.0551725551486015,-0.972607851028442,0.0800512582063675,0.21823325753212,-0.954239845275879,0.0785281509160995,0.288547396659851,-0.964094281196594,0.0793448984622955,0.253429561853409,-0.964039206504822,0.0798763632774353,0.253472208976746,-0.954222977161407,0.0787917748093605,0.288531333208084,-0.965311765670776,0.0800197869539261,0.248535752296448,-0.97450202703476,0.081928551197052,0.208886384963989,-0.963929176330566,0.0809304043650627,0.253556549549103,-0.965239107608795,0.0810530036687851,0.248483255505562,-0.972661197185516,0.104095600545406,0.207591742277145,-0.95133900642395,0.102341845631599,0.290655195713043,-0.961347341537476,0.103186763823032,0.255272090435028,0.999959468841553,0.00414555473253131,0.00800426490604877,0.999484360218048,0.00520938588306308,-0.0316849164664745,0.999990582466125,0.00435604946687818,0.000171498002600856,1,0.000131392313051037,5.17292573931627e-006,0.999502122402191,0.00121625477913767,-0.0315282680094242,1,0.000131927692564204,-1.03880074675544e-005,0.999502837657928,-0.000952889211475849,0.0315179191529751,1,0.000131392313051037,5.17292573931627e-006,1,0.000131927692564204,-1.03880074675544e-005,0.999990403652191,-0.00438000587746501,-0.000172441184986383,0.999484241008759,-0.00523436348885298,0.031685896217823,0.999959349632263,-0.00416927505284548,-0.00800501089543104,-0.683432042598724,0.0726534500718117,0.726389765739441,-0.618596374988556,0.0715279951691628,0.782446444034576,-0.651477098464966,0.07215466350317,0.755229294300079,-0.683233201503754,0.0809293761849403,0.725701630115509,-0.650460124015808,0.080880381166935,0.755221784114838,-0.653813302516937,0.0808924213051796,0.75231945514679,-0.624696135520935,0.0795510783791542,0.77680516242981,-0.65384441614151,0.0798180997371674,0.752407133579254,-0.65058958530426,0.0797936394810677,0.755225837230682,-0.680570363998413,0.0861259698867798,0.727603197097778,
- -0.62461930513382,0.0848413482308388,0.776307106018066,-0.649904847145081,0.0854698419570923,0.755194365978241,0.110699027776718,0.00380277493968606,-0.993846714496613,0.125946536660194,0.00324497208930552,-0.992031753063202,0.0794270858168602,0.00494103087112308,-0.996828496456146,0.125975862145424,-0.000427722174208611,-0.992033183574677,0.110433138906956,2.29156576097012e-005,-0.993883609771729,0.102616094052792,0.000249261473072693,-0.994720995426178,0.0790722668170929,0.000929781352169812,-0.996868431568146,0.102616094052792,0.000249261473072693,-0.994720995426178,0.110433138906956,2.29156576097012e-005,-0.993883609771729,0.142330169677734,-0.00282255630008876,-0.989815294742584,0.079118624329567,-4.89680023747496e-005,-0.996865272521973,0.110331445932388,-0.0014167851768434,-0.99389386177063,0.259255439043045,-0.00576513167470694,-0.965791642665863,-0.912519633769989,-0.0122576430439949,-0.40884917974472,0.258993029594421,-0.00576825346797705,-0.965862035751343,-0.91253137588501,-0.00584984757006168,-0.408964931964874,0.258673757314682,0.0181189570575953,-0.965794801712036,-0.903484702110291,-0.00543158454820514,-0.428585857152939,-0.95619660615921,-0.00851288624107838,-0.292601734399796,-0.912531852722168,-0.00640184339135885,-0.408955603837967,-0.90345561504364,-0.00602281093597412,-0.428639501333237,-0.876811385154724,-0.198467165231705,-0.437963932752609,-0.409515410661697,-0.810372233390808,0.419039309024811,-0.880089044570923,-0.384444683790207,-0.278649806976318,-0.912528991699219,-0.00444156210869551,-0.408988147974014,-0.956241965293884,-0.00513744726777077,-0.292531937360764,-0.965850830078125,-0.00531842792406678,-0.259044229984283,-0.965839803218842,-0.00912602432072163,-0.258979350328445,-0.956195652484894,-0.00857066363096237,-0.292602896690369,-0.506462574005127,-0.0175791680812836,0.862082779407501,-0.503676414489746,0.00127749145030975,0.86389148235321,-0.418628573417664,0.00166947022080421,0.908156037330627,-0.965851247310638,-0.00367287243716419,-0.259071111679077,0.0246059484779835,0.999617755413055,0.0126101896166801,
- -0.0845055282115936,0.988401293754578,0.126181945204735,-0.0124925002455711,0.998603582382202,0.0513324737548828,0.206245422363281,0.914345264434814,-0.348476201295853,-0.11443317681551,0.985403120517731,0.126038759946823,0.0179152078926563,0.997268497943878,-0.0716573819518089,0.0238288082182407,0.981824994087219,-0.18828658759594,0.144592776894569,0.925688624382019,-0.349561840295792,0.00994803011417389,0.985512018203735,-0.169313594698906,-0.0212419759482145,0.938075125217438,-0.345780313014984,0.0188084784895182,0.992069363594055,0.124276459217072,0.0189353544265032,0.991874635219574,0.125802055001259,-0.179579079151154,0.703465700149536,-0.687668085098267,-0.387990653514862,0.870655655860901,-0.302360564470291,-0.0447594560682774,0.541773617267609,-0.839331865310669,-0.0447594560682774,0.541773617267609,-0.839331865310669,0.29902720451355,-0.019776962697506,-0.954039692878723,-0.179579079151154,0.703465700149536,-0.687668085098267,0.129164293408394,0.985770523548126,0.107578970491886,0.00186539033893496,0.999834895133972,0.018079936504364,0.0539997816085815,0.99703711271286,0.054783321917057,-0.0927198231220245,-0.0654986351728439,-0.99353563785553,-0.0588891319930553,0.710496187210083,-0.701232731342316,-0.0588254891335964,0.71112060546875,-0.700604796409607,-0.0588254891335964,0.71112060546875,-0.700604796409607,-0.0588891319930553,0.710496187210083,-0.701232731342316,-0.023936690762639,0.938062071800232,-0.345639616250992,-0.0851199850440025,-0.102725140750408,-0.991061151027679,-0.0483183786273003,0.710070967674255,-0.702470362186432,-0.0848085880279541,-0.0646618977189064,-0.994296908378601,0.0621622055768967,0.700833141803741,-0.710611522197723,-0.468203991651535,-0.0124829411506653,-0.883532226085663,-0.0989388078451157,0.54358446598053,-0.83350282907486,0.0194325279444456,0.992068648338318,0.124186500906944,-0.023886164650321,0.938062310218811,-0.345642238855362,-0.0239602867513895,0.937770426273346,-0.346428275108337,-0.0582038126885891,0.710471034049988,-0.701315402984619,-0.0239602867513895,0.937770426273346,-0.346428275108337,
- -0.023886164650321,0.938062310218811,-0.345642238855362,-0.00635744445025921,0.998079538345337,-0.0616183131933212,0.152748972177505,0.982798457145691,0.103802353143692,-0.249296098947525,0.917977750301361,-0.308493942022324,-0.0989388078451157,0.54358446598053,-0.83350282907486,0.341436177492142,0.864578187465668,-0.368681520223618,0.0621622055768967,0.700833141803741,-0.710611522197723,-0.189169183373451,0.928183972835541,-0.320452451705933,-0.0424170009791851,0.98191237449646,-0.184523403644562,-0.0164947118610144,0.987000048160553,-0.159871831536293,0.173407986760139,0.00155375339090824,0.984848916530609,0.262966722249985,0.000932261347770691,0.964804530143738,0.999949634075165,-0.00635727168992162,-0.00777350505813956,0.999923050403595,-0.00970636308193207,-0.00772055424749851,0.265814900398254,-0.0169388614594936,0.963875353336334,0.999174833297729,-0.00922578480094671,-0.0395555235445499,0.999200105667114,-0.00630926759913564,-0.0394876264035702,0.987439393997192,-0.00552382133901119,-0.157901927828789,0.999948620796204,-0.00650391262024641,-0.00777118746191263,0.462721198797226,0.637516498565674,-0.616004705429077,0.917054355144501,-0.396162211894989,-0.0454626642167568,0.276745587587357,-0.82785975933075,0.487913936376572,0.987417578697205,-0.00981432572007179,-0.157829776406288,0.999159097671509,-0.0106720998883247,-0.0395890697836876,0.989867389202118,-0.00994093623012304,-0.141646310687065,0.977046489715576,0.210376039147377,-0.0334968864917755,0.500682532787323,0.71638023853302,-0.485918134450912,0.937589585781097,0.324025750160217,-0.126226469874382,0.989955186843872,0.00356562319211662,-0.141337260603905,-0.0011633753310889,0.0492495559155941,-0.998785793781281,0.98742014169693,0.00439874036237597,-0.158057600259781,7.85863812780008e-005,-0.00332682323642075,-0.999994516372681,0.989813208580017,-0.0135617293417454,-0.141724780201912,0.0902127549052238,-0.00450528087094426,-0.995912432670593,0.0524800308048725,0.993069887161255,0.105157658457756,0.044964887201786,0.991959393024445,0.118298962712288,0.019667049869895,0.986561238765717,0.162204042077065,
- 0.107634015381336,0.915956616401672,-0.386572688817978,-0.0858226418495178,0.984701037406921,0.151651963591576,-0.00738729070872068,0.997499942779541,-0.0702798813581467,-0.0300555732101202,0.981645584106445,-0.188331291079521,0.0464888960123062,0.927037060260773,-0.372076719999313,-0.0397206284105778,0.985604703426361,-0.164333790540695,-0.117564171552658,0.938045680522919,-0.325958520174026,0.0370576195418835,0.991940319538116,0.121165715157986,0.0368086807429791,0.992036998271942,0.120448470115662,-0.269421964883804,-0.0354617238044739,-0.96236914396286,-0.315122425556183,0.0315816663205624,-0.948525428771973,-0.244860097765923,-0.0703368932008743,-0.967003762722015,-0.350193560123444,0.705076336860657,-0.616629481315613,-0.456754416227341,0.868005275726318,-0.194787964224815,-0.250849068164825,0.535923361778259,-0.806139588356018,-0.250849068164825,0.535923361778259,-0.806139588356018,0.0565629750490189,-0.0209067929536104,-0.998180150985718,-0.350193560123444,0.705076336860657,-0.616629481315613,0.0421778038144112,0.991996765136719,0.119010657072067,-0.115611769258976,0.938075840473175,-0.326569557189941,-0.115983091294765,0.937664270401001,-0.32761812210083,-0.334009528160095,-0.0380272790789604,-0.941802322864532,-0.233894407749176,0.714410006999969,-0.659478425979614,-0.234132260084152,0.713712394237518,-0.660149097442627,-0.115809671580791,0.938073039054871,-0.326507717370987,-0.234132260084152,0.713712394237518,-0.660149097442627,-0.233894407749176,0.714410006999969,-0.659478425979614,-0.233554720878601,0.714400112628937,-0.659609496593475,-0.115983091294765,0.937664270401001,-0.32761812210083,-0.115611769258976,0.938075840473175,-0.326569557189941,-0.331819534301758,-0.0379421710968018,-0.942579567432404,-0.330963492393494,-0.100620687007904,-0.938263654708862,-0.22547347843647,0.714137613773346,-0.66269850730896,-0.116842217743397,0.705597639083862,-0.698913335800171,-0.669878780841827,-0.0170788988471031,-0.742274045944214,-0.300322830677032,0.548913657665253,-0.780064225196838,-0.284740924835205,0.564344108104706,-0.774879693984985,
- -0.116842217743397,0.705597639083862,-0.698913335800171,-0.300322830677032,0.548913657665253,-0.780064225196838,-0.268487244844437,0.927234172821045,-0.261058032512665,-0.617445826530457,0.654557943344116,-0.43625071644783,-0.0608747899532318,0.987483382225037,-0.145502716302872,-0.0282352454960346,0.998091101646423,-0.0549279786646366,0.164450749754906,0.984156012535095,0.0662793964147568,-0.321286410093308,0.917242109775543,-0.235461503267288,0.145453110337257,0.986546158790588,0.0746339336037636,-0.00167969847097993,0.999825596809387,0.018603291362524,0.0477206632494926,0.998157739639282,0.0374694988131523,0.908214330673218,-0.00664439890533686,-0.418452829122543,-0.244492396712303,-0.00708816526457667,-0.969625353813171,-0.251560300588608,-0.00704832701012492,-0.96781599521637,-0.244034439325333,0.0200505908578634,-0.969559252262115,0.908187091350555,0.000480264890938997,-0.418564170598984,0.922373473644257,-0.000235904910368845,-0.386299192905426,-0.136824741959572,0.792722463607788,-0.594028651714325,0.917175054550171,0.116305708885193,-0.381133824586868,0.944656670093536,0.0369292423129082,-0.325975507497787,0.922338724136353,-0.00344665348529816,-0.386366963386536,0.908206760883331,-0.00316870235837996,-0.418509781360626,0.96330064535141,-0.00439906073734164,-0.268388688564301,0.958749115467072,-0.0215122494846582,-0.28343853354454,0.944656670093536,0.0369292423129082,-0.325975507497787,0.917175054550171,0.116305708885193,-0.381133824586868,0.963279783725739,0.00217867735773325,-0.268490731716156,0.959127426147461,0.00226093432866037,-0.28296560049057,0.922397971153259,0.00284330453723669,-0.386230498552322,0.825308740139008,0.0256658121943474,-0.564098119735718,0.883035838603973,-0.383854120969772,-0.270006954669952,0.402288317680359,-0.822463631629944,0.402141362428665,0.963292479515076,-0.000276842853054404,-0.268454015254974,0.49634861946106,-0.012338787317276,0.868035674095154,0.959114193916321,-8.50115902721882e-005,-0.28301939368248,0.409125298261642,0.00195418950170279,0.912476181983948,0.494077295064926,0.00214450806379318,0.86941534280777,
- 0.963278651237488,0.00236173672601581,-0.268493384122849,0.159665465354919,0.986976981163025,-0.0195844266563654,-0.00207140645943582,0.999837279319763,0.0179261211305857,0.0605124682188034,0.998161435127258,0.00346906017512083,-0.0671557933092117,0.997324466705322,-0.0288823340088129,0.171622857451439,0.984366416931152,-0.0396027602255344,-0.40011864900589,0.91640031337738,-0.0107556134462357,-0.369627982378006,0.927003383636475,-0.0635603293776512,-0.169715151190758,0.981923937797546,-0.0837983265519142,-0.146196216344833,0.985519289970398,-0.0858978852629662,-0.281303733587265,0.937842428684235,-0.203272745013237,0.102513343095779,0.991954565048218,0.0742779448628426,0.102419570088387,0.991969287395477,0.0742101296782494,-0.846529185771942,-0.042578861117363,-0.530636787414551,-0.853207767009735,-0.06282127648592,-0.517773985862732,-0.812154114246368,0.0440228395164013,-0.581779778003693,-0.690348982810974,0.545896589756012,-0.47477912902832,-0.0569729804992676,0.868032097816467,-0.493228614330292,-0.48931759595871,0.705706000328064,-0.512393891811371,-0.48931759595871,0.705706000328064,-0.512393891811371,-0.972966432571411,-0.0279580280184746,-0.229248121380806,-0.690348982810974,0.545896589756012,-0.47477912902832,-0.280108064413071,0.937813997268677,-0.205047309398651,0.102054588496685,0.991973638534546,0.0746535435318947,-0.280348658561707,0.937703549861908,-0.20522341132164,-0.566763281822205,0.711644887924194,-0.415139824151993,-0.805900931358337,-0.0452286936342716,-0.590320289134979,-0.564526379108429,0.714371621608734,-0.41350132226944,-0.280056238174438,0.937812685966492,-0.205124154686928,-0.566763281822205,0.711644887924194,-0.415139824151993,-0.564526379108429,0.714371621608734,-0.41350132226944,-0.566911280155182,0.711638629436493,-0.41494819521904,-0.280108064413071,0.937813997268677,-0.205047309398651,-0.280348658561707,0.937703549861908,-0.20522341132164,-0.807476222515106,-0.0451350249350071,-0.588170886039734,-0.57472813129425,0.711248219013214,-0.404738992452621,-0.803708016872406,-0.100553564727306,-0.586466014385223,
- -0.661109626293182,0.546546161174774,-0.514024674892426,-0.519328117370605,-0.0151247512549162,-0.854441046714783,-0.63686603307724,0.703259408473969,-0.315955519676209,-0.63686603307724,0.703259408473969,-0.315955519676209,-0.660863816738129,0.556707859039307,-0.503324270248413,-0.661109626293182,0.546546161174774,-0.514024674892426,-0.123899906873703,0.985993444919586,-0.111650802195072,-0.239000737667084,0.649987876415253,-0.721383690834045,-0.172187671065331,0.926527976989746,-0.334510535001755,-0.132227063179016,0.916096210479736,-0.378528654575348,0.016227575019002,0.984052896499634,0.177134647965431,-0.0470311157405376,0.997400164604187,-0.0545996651053429,0.0325089618563652,0.986909508705139,0.157964795827866,0.0248620398342609,0.997929990291595,0.0593095868825912,0.0197807047516108,0.999792456626892,-0.00486521003767848,0.855392217636108,-0.000793706625699997,0.5179802775383,0.855414807796478,-0.000793588813394308,0.51794296503067,0.65847259759903,0.00253721768967807,-0.75260055065155,0.65852028131485,-0.0013819303130731,-0.752561688423157,0.855400264263153,-0.0199720486998558,0.517582356929779,0.632363617420197,-0.000694836489856243,-0.77467143535614,0.665832877159119,-0.0306035093963146,-0.745473086833954,0.632626533508301,0.0217798035591841,-0.774150788784027,0.560442864894867,-0.761599600315094,0.325376451015472,0.632420063018799,0.00247539090923965,-0.774621665477753,0.53631728887558,0.00335743464529514,-0.844009757041931,0.658476889133453,0.00221465132199228,-0.752597689628601,0.646297931671143,-0.0318452529609203,-0.762420475482941,0.549469947814941,0.119406118988991,-0.826937139034271,0.632222354412079,-0.00743892416357994,-0.774751365184784,0.536401093006134,-0.00287427892908454,-0.843958377838135,0.632308125495911,-0.00351150287315249,-0.774709045886993,0.551000595092773,-0.00297067500650883,-0.834499657154083,0.499463200569153,0.455699682235718,-0.736800074577332,0.78326141834259,-0.0219104029238224,-0.621306359767914,-0.221386358141899,0.866163492202759,-0.448050230741501,-0.693398416042328,0.0124124512076378,-0.720447480678558,
- 0.536369264125824,-0.000324769876897335,-0.843983352184296,0.55105060338974,-0.000549563206732273,-0.834471702575684,0.536430835723877,-0.00556347006931901,-0.843926072120667,-0.695872128009796,-0.00686042755842209,-0.718132972717285,-0.756319224834442,-0.00647528283298016,-0.6541708111763,0.322650820016861,0.0251470450311899,-0.946183979511261,-0.836055457592011,-0.00430872291326523,-0.548628151416779,-0.879488825798035,-0.00658617354929447,-0.475874036550522,-0.833872199058533,0.0200132802128792,-0.551594614982605,0.322442531585693,0.0317402184009552,-0.94605678319931,0.347326219081879,0.0314025469124317,-0.937218427658081,0.325050264596939,0.412507444620132,-0.850987613201141,0.72893762588501,-0.63824063539505,-0.247586205601692,-0.381025552749634,0.833017706871033,-0.401124775409698,0.456068277359009,0.0278783440589905,-0.889508128166199,0.347293049097061,0.028582751750946,-0.937320947647095,0.322540819644928,0.0286842025816441,-0.946120858192444,0.589483022689819,-0.733301043510437,-0.338790982961655,0.339596122503281,-0.149359911680222,-0.92863667011261,0.414878696203232,-0.282894045114517,-0.864781260490417,0.347355097532272,0.034069798886776,-0.937114536762238,0.455922514200211,0.0330934152007103,-0.889403998851776,0.441599726676941,0.0332528576254845,-0.89659571647644,0.441628754138947,0.0354665108025074,-0.896496653556824,0.951784610748291,0.00412060739472508,0.30673947930336,0.975825548171997,0.00732745882123709,0.218427866697311,0.951322734355927,-0.0286548230797052,0.306861519813538,0.44151645898819,0.0276326965540648,-0.896827578544617,0.456089168787003,0.0270911417901516,-0.889521718025208,0.136605337262154,0.990027785301209,0.034408874809742,0.10580712556839,0.99436217546463,-0.00699649704620242,0.131286591291428,0.990970432758331,0.0272295866161585,-0.320031672716141,0.91840672492981,-0.232613086700439,0.114837452769279,0.982488512992859,0.14672639966011,-0.0652788653969765,0.99783194065094,-0.00837095081806183,-0.346019327640533,0.938170731067657,-0.010321500711143,0.126209944486618,0.991948843002319,0.0104235280305147,
- 0.133402973413467,0.991003811359406,0.0107307117432356,-0.165183365345001,0.986221313476563,-0.00906617846339941,-0.181752189993858,0.983035385608673,-0.0246524289250374,-0.329513996839523,0.929209172725677,-0.167304560542107,0.125732943415642,0.992014229297638,-0.00995904393494129,0.0984643176198006,0.994882941246033,0.0226452331990004,0.137105509638786,0.990274488925934,-0.023632749915123,-0.0627427101135254,0.997966110706329,0.0112696690484881,0.122066721320152,0.984656929969788,-0.124701909720898,-0.336967080831528,0.916265189647675,0.216590508818626,0.126202702522278,0.991953134536743,0.0100967306643724,-0.34622448682785,0.938120424747467,-0.00765899661928415,-0.346847474575043,0.93789005279541,-0.00768328458070755,-0.341688275337219,0.927550613880157,0.151323869824409,-0.188757091760635,0.981698572635651,0.0252730622887611,-0.162337496876717,0.986727058887482,0.0040347776375711,-0.71983015537262,0.684973061084747,0.112500794231892,-0.349495321512222,0.86152857542038,0.368268311023712,-0.83871728181839,0.544219255447388,-0.0194596480578184,-0.717548191547394,0.696138620376587,-0.0227083116769791,-0.346847474575043,0.93789005279541,-0.00768328458070755,-0.34622448682785,0.938120424747467,-0.00765899661928415,-0.994099140167236,-0.0751726701855659,-0.0782058089971542,-0.999499678611755,-0.0308140814304352,-0.00714218430221081,-0.993241667747498,-0.0792672261595726,-0.0847805067896843,-0.83871728181839,0.544219255447388,-0.0194596480578184,-0.913168370723724,-0.0532312169671059,-0.404091715812683,-0.71983015537262,0.684973061084747,0.112500794231892,-0.346847265958786,0.937890589237213,-0.00763791846111417,-0.717550277709961,0.696137547492981,-0.0226767640560865,-0.718795835971832,0.69484955072403,-0.0227299239486456,-0.996311783790588,-0.0772983059287071,-0.0372553057968616,-0.718795835971832,0.69484955072403,-0.0227299239486456,-0.717550277709961,0.696137547492981,-0.0226767640560865,-0.836671829223633,0.546400010585785,-0.0377798862755299,-0.323243588209152,0.865531861782074,-0.38258084654808,-0.710844218730927,0.685688734054565,-0.156625300645828,
- -0.718815326690674,0.694889426231384,-0.0208160486072302,-0.996278643608093,-0.0772493481636047,-0.0382281430065632,-0.995320439338684,-0.0887166559696198,-0.0382953993976116,-0.938409686088562,-0.0657719299197197,0.339207261800766,-0.836671829223633,0.546400010585785,-0.0377798862755299,-0.710844218730927,0.685688734054565,-0.156625300645828,-0.99727588891983,-0.0185117889195681,-0.0714018940925598,-0.995723903179169,-0.0852315947413445,0.0356304347515106,-0.997731149196625,-0.0670311897993088,0.00627273647114635,0.009884187951684,0.999644994735718,0.0247424226254225,0.0578586310148239,0.998134791851044,-0.0194777697324753,0.127494364976883,0.988282382488251,-0.0839234739542007,-0.0749111548066139,0.997051954269409,0.0166049357503653,0.127828627824783,0.985137462615967,-0.114735074341297,-0.351605743169785,0.914747297763824,0.199024677276611,-0.191299483180046,0.981312930583954,0.0207219943404198,-0.172060832381248,0.985061049461365,0.00706708803772926,-0.351622760295868,0.926028788089752,0.13723036646843,0.125043645501137,0.991982161998749,0.0183150954544544,-0.344965696334839,0.938178896903992,-0.0286193322390318,0.125521034002304,0.991921007633209,0.0183620769530535,-0.295016229152679,0.869794547557831,-0.395503312349319,-0.684634625911713,0.703118860721588,-0.192092269659042,-0.839033663272858,0.540931582450867,-0.0584424212574959,-0.958024084568024,-0.0214587319642305,0.285883456468582,-0.839033663272858,0.540931582450867,-0.0584424212574959,-0.684634625911713,0.703118860721588,-0.192092269659042,0.0141199296340346,0.999880015850067,-0.00636667432263494,0.106401927769184,0.985914528369904,0.129039585590363,0.0501072816550732,0.997667729854584,0.0463504940271378,-0.699367105960846,0.711266934871674,-0.0706055387854576,-0.992035388946533,-0.0669668316841125,-0.10668370872736,-0.69940447807312,0.711229801177979,-0.0706097483634949,-0.344783306121826,0.938162386417389,-0.0312413722276688,-0.699367105960846,0.711266934871674,-0.0706055387854576,-0.69940447807312,0.711229801177979,-0.0706097483634949,-0.992896616458893,-0.066149465739727,-0.098896861076355,
- -0.700726211071014,0.710881412029266,-0.0602542385458946,-0.9899862408638,-0.100586757063866,-0.099043145775795,-0.831406533718109,0.544273495674133,-0.11193585395813,-0.877163410186768,-0.0132032185792923,-0.480010569095612,-0.71043735742569,0.701961278915405,0.0502912551164627,-0.344789087772369,0.938162922859192,-0.0311586260795593,0.124945275485516,0.991983234882355,0.0189257990568876,-0.345032721757889,0.938072443008423,-0.0311849601566792,-0.699443280696869,0.711247861385345,-0.0700405910611153,-0.344789087772369,0.938162922859192,-0.0311586260795593,-0.345032721757889,0.938072443008423,-0.0311849601566792,0.102430894970894,0.983144283294678,0.151443809270859,-0.0671380162239075,0.997625172138214,-0.0153774404898286,-0.303827077150345,0.918435454368591,-0.253309398889542,-0.373614251613617,0.865937471389771,0.332512736320496,-0.831406533718109,0.544273495674133,-0.11193585395813,-0.71043735742569,0.701961278915405,0.0502912551164627,-0.181621134281158,0.982337951660156,-0.0450105592608452,-0.316670387983322,0.928529143333435,-0.193787783384323,-0.163972437381744,0.98612105846405,-0.0260455179959536,-0.0235569607466459,-0.00370639166794717,0.999715626239777,0.960062444210052,0.00128356728237122,0.279782861471176,0.982046246528625,0.00166913215070963,0.188632994890213,0.959044814109802,-0.0166114531457424,0.282766819000244,-0.0235004238784313,-0.00726916966959834,0.999697387218475,-0.0551930293440819,-0.00678199250251055,0.998452663421631,-0.621089220046997,0.639616906642914,0.452922075986862,0.482333570718765,-0.825856566429138,0.292087644338608,-0.0598576106131077,-0.386532187461853,0.920331418514252,-0.173285722732544,-0.00317507097497582,0.984866559505463,-0.0551276206970215,-0.00396938621997833,0.99847149848938,-0.023549597710371,-0.00417133187875152,0.999713957309723,-0.0487502329051495,0.213125288486481,0.975807905197144,-0.141614764928818,0.327421963214874,0.934205591678619,-0.493479579687119,0.716890513896942,0.492489606142044,-0.0552696213126183,-0.0100997556000948,0.998420417308807,-0.173184901475906,-0.0092490641400218,0.98484593629837,
- -0.158202737569809,-0.00936542358249426,0.987362265586853,-0.999872148036957,-0.00318285939283669,-0.015670832246542,-0.997399210929871,-0.00411250442266464,0.0719583481550217,-0.158240482211113,-0.0110981706529856,0.987338244915009,-0.158039405941963,-0.00210425653494895,0.98743063211441,-0.173311561346054,-0.00155189691577107,0.98486590385437,-0.999250948429108,0.0349741727113724,-0.0165623985230923,-0.964961528778076,-0.136298090219498,-0.22421470284462,-0.962344408035278,0.197241604328156,0.187053665518761,-0.995026111602783,-0.0300296265631914,-0.0949812978506088,-0.994866967201233,-0.0262791085988283,-0.0977203100919724,-0.945034205913544,-0.165913566946983,-0.281749784946442,-0.964458346366882,-0.12747710943222,-0.231451466679573,-0.945258021354675,-0.165905997157097,-0.281002640724182,-0.945058941841125,-0.166250631213188,-0.28146830201149,-0.99500983953476,-0.0296238493174315,-0.0952777415513992,-0.900307774543762,-0.116157174110413,-0.41946804523468,-0.944401741027832,-0.00329366279765964,-0.328777223825455,-0.927187204360962,-0.054247684776783,-0.370649546384811,-0.105712600052357,0.994138777256012,0.0226512104272842,-0.132981821894646,0.991019070148468,-0.0140371872112155,-0.142360284924507,0.989453852176666,-0.0267357658594847,-0.116686195135117,0.984089732170105,-0.133984297513962,0.0665644854307175,0.997491419315338,0.0240869205445051,0.319742411375046,0.915048837661743,0.245867148041725,0.34512785077095,0.938257038593292,0.0236777309328318,-0.125884369015694,0.992038011550903,0.00372660253196955,-0.135174915194511,0.990816235542297,0.00331192463636398,0.182771816849709,0.982336699962616,0.0401138179004192,0.329051792621613,0.926878750324249,0.180611878633499,0.166235417127609,0.985779345035553,0.0245950687676668,-0.125399172306061,0.991838812828064,0.0230425540357828,-0.100127078592777,0.994949340820313,-0.00709561910480261,-0.132621958851814,0.990659892559052,0.0316924825310707,0.996565937995911,-0.0454467982053757,0.0692174881696701,0.998987674713135,0.0439492501318455,0.00959633011370897,0.994048595428467,-0.0686269104480743,0.0846033990383148,
- 0.0602445676922798,0.998174607753754,0.00426929956302047,-0.121510565280914,0.982873260974884,0.138547241687775,0.337848514318466,0.918405830860138,-0.20588606595993,-0.125875979661942,0.992037653923035,0.00407616328448057,0.345326751470566,0.938247561454773,0.021001473069191,0.346879690885544,0.937673389911652,0.0210537649691105,0.342348486185074,0.929079473018646,-0.140031516551971,0.186392411589623,0.98242461681366,-0.00999796949326992,0.160065248608589,0.987041354179382,0.0113432062789798,0.347584277391434,0.867041885852814,-0.356964558362961,0.838940680027008,0.54350209236145,0.0280035547912121,0.718973159790039,0.687330901622772,-0.103217698633671,0.717220187187195,0.69608348608017,0.0326034165918827,0.346879690885544,0.937673389911652,0.0210537649691105,0.345326751470566,0.938247561454773,0.021001473069191,0.838940680027008,0.54350209236145,0.0280035547912121,0.919223189353943,-0.0341620706021786,0.392252147197723,0.718973159790039,0.687330901622772,-0.103217698633671,0.836120009422302,0.546585857868195,0.0463411100208759,0.321219891309738,0.859728813171387,0.39709460735321,0.70630270242691,0.687028527259827,0.170670300722122,0.346879661083221,0.937674283981323,0.0210075173527002,0.717222332954407,0.696082949638367,0.0325691588222981,0.714898645877838,0.698472201824188,0.0325042493641377,0.717222332954407,0.696082949638367,0.0325691588222981,0.998262166976929,-0.0463008694350719,0.0364542044699192,0.714898645877838,0.698472201824188,0.0325042493641377,0.70630270242691,0.687028527259827,0.170670300722122,0.9488525390625,-0.0103566655889153,-0.315549939870834,0.836120009422302,0.546585857868195,0.0463411100208759,0.998120844364166,-0.0462045669555664,0.0402483306825161,0.995295822620392,-0.088521420955658,0.0393729731440544,0.714751005172729,0.698120474815369,0.0419384054839611,0.0547796972095966,-0.0157963875681162,0.998373568058014,0.99620246887207,-0.00770524516701698,0.0867254436016083,0.996224820613861,-0.00770142115652561,0.0864691063761711,0.995951950550079,0.0201968532055616,0.0875893607735634,0.0548923909664154,-0.00891682412475348,0.998452544212341,
- 0.0159756932407618,-0.00975441373884678,0.999824821949005,0.605290532112122,0.792174756526947,0.0779912322759628,0.0143124703317881,0.0595216825604439,0.998124420642853,-0.0128183225169778,0.0242187716066837,0.999624609947205,0.0160419270396233,-0.0125801283866167,0.999792158603668,0.0548381172120571,-0.0122501356527209,0.998420178890228,-0.102832078933716,-0.013471907004714,0.994607508182526,-0.0850964710116386,-0.0702286586165428,0.993894636631012,-0.0128183225169778,0.0242187716066837,0.999624609947205,0.0143124703317881,0.0595216825604439,0.998124420642853,0.0158850494772196,-0.00589612405747175,0.999856472015381,-0.102730125188828,-0.00652686832472682,0.994687855243683,-0.0868166387081146,-0.00644716806709766,0.996203482151031,0.180522263050079,0.014702751301229,0.983461022377014,-0.0732990354299545,-0.348168313503265,0.934562087059021,-0.522803485393524,-0.82665228843689,0.208140715956688,-0.0867668017745018,-0.00849996507167816,0.996192395687103,-0.102762565016747,-0.00870028417557478,0.994667887687683,-0.994181394577026,-0.0139380395412445,0.106813974678516,-0.999966382980347,0.00194960029330105,0.00796585809439421,-0.99457311630249,0.00127911940217018,0.10403249412775,-0.102731585502625,-0.00662442017346621,0.994687020778656,-0.115471944212914,0.993002831935883,0.0247301198542118,-0.125725880265236,0.991953313350677,0.0148955546319485,-0.162722557783127,0.986452281475067,-0.0208191201090813,-0.126936733722687,0.984565794467926,-0.120487809181213,0.0703740119934082,0.997468888759613,0.01016690954566,0.348698765039444,0.916054904460907,0.198122650384903,0.345038503408432,0.937937796115875,-0.0349474586546421,-0.125992387533188,0.992010056972504,0.00647956039756536,-0.125868856906891,0.992025792598724,0.00646855402737856,0.189243227243423,0.981799602508545,0.016021778807044,0.349605947732925,0.927064836025238,0.135375216603279,0.170104682445526,0.985423684120178,0.0021244129166007,-0.107607901096344,0.986573815345764,0.122852295637131,-0.0176082458347082,0.99982625246048,-0.00611840561032295,-0.048042319715023,0.998144686222076,0.0374064594507217,
- 0.0601551495492458,0.998089075088501,-0.0141278244554996,-0.104152590036392,0.984148383140564,0.143542125821114,0.3071508705616,0.916682481765747,-0.255639523267746,-0.125166147947311,0.992063701152802,0.0119605893269181,0.345155537128448,0.937969982624054,-0.0328628309071064,0.345277160406113,0.937924802303314,-0.0328744240105152,0.319117367267609,0.927175045013428,-0.196240901947021,0.182624503970146,0.981909871101379,-0.0500139519572258,0.157852932810783,0.98716801404953,-0.024121081456542,0.830084681510925,0.54803454875946,-0.10304157435894,0.368770092725754,0.869072258472443,0.329730302095413,0.709941148757935,0.70233154296875,0.0520967468619347,0.345155537128448,0.937969982624054,-0.0328628309071064,0.700638175010681,0.710387885570526,-0.0667477399110794,0.345277160406113,0.937924802303314,-0.0328744240105152,0.709941148757935,0.70233154296875,0.0520967468619347,0.883768737316132,-0.0130216162651777,-0.467742681503296,0.830084681510925,0.54803454875946,-0.10304157435894,0.994740307331085,-0.0428262650966644,-0.0930468961596489,0.99113929271698,-0.0946102291345596,-0.0932295992970467,0.701641917228699,0.71014678478241,-0.0582253783941269,0.998905718326569,-0.0402638204395771,-0.0237953756004572,0.996389210224152,0.0350016094744205,-0.0773534327745438,0.998087048530579,-0.0611929297447205,-0.00882262177765369,0.345144033432007,0.937967002391815,-0.0330688878893852,0.700054466724396,0.710933983325958,-0.0670569986104965,0.700594544410706,0.710396945476532,-0.0671087205410004,0.700054466724396,0.710933983325958,-0.0670569986104965,0.994528412818909,-0.0429046452045441,-0.0952495485544205,0.700594544410706,0.710396945476532,-0.0671087205410004,0.30090543627739,0.867751598358154,-0.395554155111313,0.841796875,0.537533640861511,-0.0493530221283436,0.686362683773041,0.702526330947876,-0.188050821423531,0.841796875,0.537533640861511,-0.0493530221283436,0.953843832015991,-0.0257735624909401,0.299195379018784,0.686362683773041,0.702526330947876,-0.188050821423531,0.180855706334114,-0.00662323553115129,0.983487367630005,
- 0.999943435192108,-0.00702994223684072,-0.00798427779227495,0.999945998191834,-0.00703176530078053,-0.00765211787074804,0.999770045280457,0.0200694818049669,-0.00755615020170808,0.180968448519707,0.00040551763959229,0.983488857746124,0.14911375939846,-0.000250617245910689,0.988820016384125,0.609347760677338,0.792865812778473,0.00768806273117661,0.145479306578636,0.114051684737206,0.982765555381775,0.0861480385065079,0.0358067154884338,0.99563866853714,0.149187043309212,-0.00343577028252184,0.988803088665009,0.180912032723427,-0.00318143889307976,0.983494162559509,0.0314118973910809,-0.00433875527232885,0.99949711561203,0.145479306578636,0.114051684737206,0.982765555381775,0.039909090846777,-0.0246529206633568,0.998899161815643,0.0861480385065079,0.0358067154884338,0.99563866853714,0.149041533470154,0.00282685179263353,0.988826990127563,0.0315149240195751,0.00219596456736326,0.999500870704651,0.0392867065966129,0.00223855418153107,0.999225497245789,0.345825403928757,0.0233143214136362,0.938009202480316,0.0453985147178173,-0.386781305074692,0.921053409576416,-0.488191366195679,-0.822476148605347,0.291893899440765,0.0393425934016705,-0.000126829545479268,0.999225795269012,0.0314768850803375,-0.000226568023208529,0.999504446983337,-0.963523387908936,-0.0123634766787291,0.26733860373497,-0.984847664833069,0.00195187074132264,0.173411265015602,-0.964307904243469,0.0021391767077148,0.264774650335312,0.0315173417329788,0.00235032266937196,0.999500453472137,-0.037841621786356,0.997968256473541,0.0512578152120113,-0.132141277194023,0.990246772766113,0.0441594943404198,-0.108489990234375,0.993033349514008,0.0459857657551765,-0.181020900607109,0.983123064041138,-0.0264665670692921,0.0642607361078262,0.997416734695435,-0.0321022942662239,0.396967172622681,0.917099833488464,-0.0366737395524979,0.164010122418404,0.981988549232483,-0.093804657459259,0.363398343324661,0.927530765533447,-0.0873404145240784,0.140158742666245,0.985628247261047,-0.0943004190921783,0.268601387739182,0.93805980682373,-0.218854174017906,-0.0928336530923843,0.99293726682663,0.0738763064146042,
- -0.104505352675915,0.991026759147644,0.083334282040596,0.0270825028419495,0.868471503257751,-0.494998753070831,0.659949541091919,0.545648813247681,-0.516462981700897,0.45877543091774,0.704689860343933,-0.541236877441406,0.659949541091919,0.545648813247681,-0.516462981700897,0.954596400260925,-0.0133125483989716,-0.29760468006134,0.45877543091774,0.704689860343933,-0.541236877441406,0.768292188644409,-0.0705143958330154,-0.636203467845917,0.522049188613892,0.712583601474762,-0.468710243701935,0.767054796218872,-0.099808044731617,-0.633770763874054,-0.0910621285438538,0.992958188056946,0.075775071978569,0.266499787569046,0.938014686107636,-0.221599563956261,0.267027378082275,0.937760829925537,-0.222038358449936,0.266561716794968,0.93801611661911,-0.221518754959106,0.538802802562714,0.713599383831024,-0.44773605465889,0.539229154586792,0.713054656982422,-0.448090314865112,0.266499787569046,0.938014686107636,-0.221599563956261,0.539058148860931,0.713060557842255,-0.44828674197197,0.267027378082275,0.937760829925537,-0.222038358449936,0.538802802562714,0.713599383831024,-0.44773605465889,0.767208218574524,-0.0704497396945953,-0.637517511844635,0.539229154586792,0.713054656982422,-0.448090314865112,0.043898306787014,0.997369945049286,-0.0576742440462112,-0.00198286026716232,0.985482573509216,0.169765308499336,0.106983736157417,0.916182279586792,-0.386218190193176,0.150239050388336,0.926712930202484,-0.344429165124893,0.190380424261093,0.648481786251068,-0.737039148807526,0.117405593395233,0.985858678817749,-0.119577080011368,-0.0238028690218925,0.988848567008972,0.147010058164597,-0.0292134881019592,0.999564945697784,0.00408635241910815,-0.0269504841417074,0.997466921806335,0.0658285170793533,0.627667844295502,0.535559356212616,-0.564986109733582,0.628702819347382,0.556711792945862,-0.542959332466125,0.616088569164276,0.704820573329926,-0.351657330989838,0.616088569164276,0.704820573329926,-0.351657330989838,0.448230743408203,-0.0493497438728809,-0.892554759979248,0.627667844295502,0.535559356212616,-0.564986109733582,0.754237055778503,0.0542177967727184,-0.654359877109528,
- 0.61073499917984,-0.0605227425694466,-0.7895188331604,0.710771083831787,0.0162717569619417,-0.70323520898819,0.840465784072876,0.025316970422864,0.541272819042206,0.737752318382263,-0.00397884054109454,-0.675059795379639,0.670997798442841,-0.00652226340025663,-0.741430759429932,0.739938974380493,0.0202484726905823,-0.672369182109833,0.840391874313354,0.0318714305758476,0.541041374206543,0.823900103569031,0.031487014144659,0.56585967540741,0.718329668045044,0.47724175453186,0.50620436668396,0.101900607347488,-0.672618746757507,0.732939481735229,0.429752856492996,0.874859690666199,-0.223457187414169,0.824010491371155,0.0285932011902332,0.565852701663971,0.840432047843933,0.0287077315151691,0.541155993938446,0.756461024284363,0.0279448963701725,0.653441488742828,0.186332955956459,-0.73601895570755,0.650811910629272,0.816703021526337,-0.156017228960991,0.55556720495224,0.737221419811249,-0.287660866975784,0.611355781555176,0.75639408826828,0.0331678278744221,0.653274774551392,0.762585639953613,0.033261351287365,0.646031618118286,0.823795974254608,0.0340649262070656,0.565861940383911,0.762484788894653,0.0354246459901333,0.646035611629486,-0.527134835720062,0.00413074716925621,0.849771618843079,-0.447559297084808,0.00732067227363586,0.894224345684052,-0.527142941951752,-0.0285518504679203,0.849296867847443,0.762830853462219,0.0276403091847897,0.646007120609283,0.756467759609222,0.0273160748183727,0.653460323810577,0.00432169297710061,0.999791026115417,0.0199817139655352,-0.12159239500761,0.987667322158813,0.0986337065696716,-0.0420740358531475,0.997911155223846,0.0490214377641678,-0.154915049672127,0.983850240707397,0.0896658822894096,0.0198866277933121,0.997706592082977,-0.0647009536623955,0.277904272079468,0.91650003194809,-0.28774482011795,0.0563824996352196,0.937479138374329,-0.343444168567657,-0.0270365886390209,0.991921544075012,0.123937867581844,-0.0269164629280567,0.992009282112122,0.123260147869587,0.0651732757687569,0.980833947658539,-0.183622807264328,0.218821406364441,0.927043974399567,-0.304477632045746,0.0375775024294853,0.986181974411011,-0.161348059773445,
- 0.0850644558668137,0.987067818641663,0.135871902108192,-0.0181260667741299,0.999747097492218,0.0133132133632898,0.0228130947798491,0.997812747955322,0.0620445124804974,0.280481487512589,-0.0724281445145607,-0.957122981548309,0.180593460798264,-0.011523793451488,-0.983490347862244,0.257798194885254,-0.0584715977311134,-0.964427888393402,-0.00525812804698944,0.997745156288147,-0.0669112130999565,0.10664639621973,0.98467618227005,0.137982949614525,-0.170252352952957,0.916020393371582,-0.363209187984467,-0.0263559259474278,0.991930305957794,0.124015226960182,0.0542511641979218,0.937441825866699,-0.343889325857162,0.0540672987699509,0.937840223312378,-0.342830210924149,-0.109905607998371,0.926649689674377,-0.359501451253891,-0.00806309096515179,0.980808317661285,-0.194807767868042,0.0104665495455265,0.986395597457886,-0.164055496454239,-0.306087374687195,0.866375923156738,-0.394592493772507,0.168991088867188,0.540017604827881,-0.824513733386993,-0.00468060374259949,0.702560842037201,-0.711608350276947,0.115383923053741,0.71139520406723,-0.693255662918091,0.0540672987699509,0.937840223312378,-0.342830210924149,0.0542511641979218,0.937441825866699,-0.343889325857162,0.168991088867188,0.540017604827881,-0.824513733386993,0.550550580024719,-0.0508967041969299,-0.833248794078827,-0.00468060374259949,0.702560842037201,-0.711608350276947,0.0538397207856178,0.937842488288879,-0.342859953641891,0.115372881293297,0.711394965648651,-0.693257808685303,0.115031361579895,0.713319480419159,-0.691334366798401,0.169458553195,-0.0790373012423515,-0.982362926006317,0.115031361579895,0.713319480419159,-0.691334366798401,0.115372881293297,0.711394965648651,-0.693257808685303,0.111676722764969,0.541384100914001,-0.833325624465942,0.409498423337936,0.870635688304901,-0.272588938474655,0.235281229019165,0.705309510231018,-0.668716132640839,0.112651683390141,0.713369429111481,-0.691674590110779,0.170138582587242,-0.079000324010849,-0.982248425483704,0.170095577836037,-0.08735042065382,-0.981548488140106,-0.242552757263184,-0.0633555799722672,-0.968067288398743,
- 0.111676722764969,0.541384100914001,-0.833325624465942,0.235281229019165,0.705309510231018,-0.668716132640839,0.158363461494446,-0.00975554250180721,-0.987332701683044,0.0381010621786118,-0.08116215467453,-0.995972394943237,0.0873961448669434,-0.052139900624752,-0.994808197021484,0.0468436144292355,0.988487005233765,0.143871694803238,-0.0271600726991892,0.999611854553223,0.00619936035946012,0.00367436883971095,0.997960329055786,0.0637320503592491,0.00196442566812038,0.997042298316956,-0.0768299549818039,0.0806924924254417,0.984939694404602,0.152913883328438,-0.10720481723547,0.915706157684326,-0.387284636497498,-0.0472365319728851,0.92678040266037,-0.372621536254883,0.0260257981717587,0.98121178150177,-0.19117034971714,0.034605048596859,0.98496949672699,-0.169226542115211,-0.0477915666997433,0.992071032524109,0.116237580776215,0.11141649633646,0.938427865505219,-0.327016115188599,-0.0482764095067978,0.99188768863678,0.117593429982662,0.328405618667603,0.043828658759594,-0.943519413471222,0.15472137928009,-0.0628719627857208,-0.985955595970154,0.259118765592575,0.000430631975177675,-0.965845465660095,0.00247418181970716,0.999874114990234,0.0156765878200531,-0.150336965918541,0.986067056655884,0.0712088346481323,-0.0571725443005562,0.99766331911087,0.0374051742255688,-0.0615402385592461,-0.0515482425689697,-0.996772646903992,0.258288234472275,0.538486540317535,-0.802071988582611,0.35215824842453,0.70342230796814,-0.617399096488953,0.258288234472275,0.538486540317535,-0.802071988582611,0.454936742782593,0.869587063789368,-0.191965878009796,0.35215824842453,0.70342230796814,-0.617399096488953,-0.170849502086639,0.983345031738281,0.0619917772710323,0.0317086204886436,0.997592091560364,-0.061682965606451,0.31999745965004,0.918202817440033,-0.233464002609253,0.113720938563347,0.938407480716705,-0.326280504465103,-0.0484581589698792,0.992072343826294,0.115950435400009,0.114149764180183,0.93794983625412,-0.327444583177567,0.622567892074585,0.653425812721252,-0.430632054805756,0.266871184110641,0.928098857402802,-0.259638875722885,
- 0.0656285583972931,0.986255526542664,-0.1516342908144,0.237466976046562,0.71215558052063,-0.660639047622681,0.113720938563347,0.938407480716705,-0.326280504465103,0.114149764180183,0.93794983625412,-0.327444583177567,0.238323763012886,0.711281836032867,-0.661271452903748,0.113804720342159,0.938406705856323,-0.326253771781921,0.238006979227066,0.71217405796051,-0.660424709320068,0.238323763012886,0.711281836032867,-0.661271452903748,0.238006979227066,0.71217405796051,-0.660424709320068,0.344334632158279,-0.0705801174044609,-0.936190187931061,0.297981411218643,0.556421458721161,-0.775630235671997,0.30827209353447,0.546313405036926,-0.77878749370575,0.122271962463856,0.702910602092743,-0.700689852237701,0.345330238342285,-0.0706146284937859,-0.935820817947388,0.216655999422073,0.711260974407196,-0.668706178665161,0.34548231959343,-0.0948606505990028,-0.933618485927582,0.677015960216522,-0.00949856638908386,-0.735907077789307,0.122271962463856,0.702910602092743,-0.700689852237701,0.30827209353447,0.546313405036926,-0.77878749370575,0.452941507101059,-0.137401655316353,-0.880888640880585,0.0519604384899139,0.197421565651894,-0.978940725326538,0.336973637342453,-0.0328708738088608,-0.940940141677856,0.339689493179321,-0.028975784778595,-0.940091252326965,0.504153728485107,-0.167180240154266,-0.847277879714966,0.45988255739212,-0.12853516638279,-0.878627717494965,0.504015564918518,-0.167466521263123,-0.847303569316864,0.503962397575378,-0.167421072721481,-0.847344160079956,0.337434530258179,-0.0322107039391994,-0.940797805786133,0.585937082767487,-0.0559388101100922,-0.808423519134521,0.626505792140961,-0.117597162723541,-0.770494401454926,0.549313843250275,-0.0046219676733017,-0.835603356361389,-0.264167577028275,-0.483037292957306,-0.834799647331238,-0.266463458538055,-0.470257848501205,-0.841341018676758,-0.264023274183273,0.552159011363983,-0.790830016136169,-0.266152411699295,0.552092373371124,-0.790162563323975,-0.26995176076889,-0.470415562391281,-0.840139985084534,-0.265789836645126,0.55394321680069,-0.788988411426544,
- -0.446250468492508,-0.485169470310211,-0.751978099346161,-0.469944626092911,0.471202045679092,-0.746405184268951,-0.448297709226608,0.546274542808533,-0.707540333271027,-0.271801441907883,0.5540412068367,-0.786868631839752,-0.26276370882988,0.59508228302002,-0.759494721889496,-0.272249162197113,0.551886141300201,-0.788227200508118,-0.416425406932831,0.549299836158752,-0.724471926689148,-0.432204902172089,0.476229727268219,-0.765770316123962,-0.400390863418579,0.609056830406189,-0.684643685817719,-0.298640191555023,0.593464314937592,-0.747404992580414,-0.307318240404129,0.554158866405487,-0.773604333400726,-0.293903589248657,0.613167524337769,-0.733243703842163,-0.679369807243347,0.583647072315216,0.444761455059052,-0.949598848819733,0.24355149269104,-0.19734388589859,-0.482318639755249,-0.363227516412735,-0.797141492366791,-0.972658574581146,0.162873536348343,0.165552034974098,-0.99085533618927,0.0871430113911629,0.103013515472412,-0.73400741815567,0.510523736476898,0.447882384061813,-0.28377041220665,0.613122224807739,-0.737262189388275,0.0919279530644417,0.935459733009338,0.341268867254257,-0.288101047277451,0.594030261039734,-0.751083135604858,0.0978942140936852,0.935442209243774,0.339653730392456,-0.347791433334351,0.612160980701447,-0.710140943527222,0.0526036135852337,0.969010412693024,0.241353943943977,-0.16117462515831,0.595086872577667,-0.787333846092224,-0.171319022774696,0.542273759841919,-0.822550296783447,-0.169466376304626,0.552371263504028,-0.816190659999847,-0.169739246368408,0.542241215705872,-0.822899162769318,-0.203303903341293,-0.503215551376343,-0.839905738830566,-0.168015867471695,0.552333652973175,-0.816515982151031,-0.328883618116379,-0.476079165935516,-0.815588235855103,-0.325453519821167,-0.496416389942169,-0.804767549037933,-0.284119635820389,0.540860772132874,-0.791672706604004,-0.136035054922104,0.541213035583496,-0.829809010028839,-0.16962805390358,-0.553140640258789,-0.815635919570923,-0.174927145242691,-0.486246943473816,-0.856133460998535,-0.161628022789955,-0.5538409948349,-0.816784381866455,
- -0.127482891082764,0.540851294994354,-0.831401228904724,-0.125395178794861,0.555178582668304,-0.822224318981171,-0.123127035796642,0.596903443336487,-0.792808890342712,-0.131730943918228,0.541036128997803,-0.830618441104889,-0.123688876628876,0.593446910381317,-0.795312404632568,-0.116189867258072,0.540311574935913,-0.833404660224915,-0.109352186322212,0.596277058124542,-0.795296013355255,-0.11453253030777,0.554523885250092,-0.824248552322388,-0.138453111052513,0.597463667392731,-0.789853096008301,-0.139179602265358,0.594229459762573,-0.792161822319031,0.158470690250397,0.876660346984863,0.454261630773544,-0.151933640241623,0.594763040542603,-0.789413154125214,0.121937721967697,0.93500828742981,0.333002626895905,0.147543355822563,0.877128660678864,0.457029938697815,-0.0775985047221184,0.742308139801025,-0.665550351142883,-0.387723177671433,0.549466371536255,-0.740106403827667,-0.333777755498886,0.591433227062225,-0.734029471874237,-0.716210305690765,0.488196134567261,-0.498705625534058,0.952256560325623,0.301202476024628,-0.0498446151614189,-0.077057845890522,0.790651500225067,-0.6073979139328,-0.71702516078949,-0.395124405622482,-0.57424008846283,0.32904127240181,0.470646679401398,-0.818671882152557,-0.108703009784222,0.178281545639038,-0.977956771850586,-0.0598302707076073,0.550213813781738,-0.832877576351166,-0.0760188400745392,0.542755305767059,-0.836443603038788,-0.125818535685539,0.518607079982758,-0.845704734325409,-0.0735554248094559,0.439067184925079,-0.895438194274902,-0.0643006861209869,0.43901389837265,-0.896176517009735,-0.123077146708965,0.438706964254379,-0.890161871910095,-0.0738635212182999,0.450256139039993,-0.889839112758636,-0.0773111507296562,0.450252294540405,-0.889548182487488,-0.0634621605277061,0.450235247612,-0.890652000904083,-0.0764426589012146,0.457308888435364,-0.886016368865967,-0.0740531906485558,0.457325756549835,-0.88621062040329,-0.0630790144205093,0.4573695063591,-0.887036859989166,0.119875445961952,0.935068428516388,0.333582073450089,0.154227629303932,0.832851052284241,0.531576097011566,
- 0.141912892460823,0.877326130867004,0.45843181014061,0.0483499318361282,0.968798696994781,0.243087396025658,0.167591392993927,0.832373917102814,0.528267741203308,0.0890396609902382,0.93545538187027,0.34204575419426,0.133615985512733,0.774883091449738,0.617821097373962,0.113876536488533,0.877868473529816,0.465165704488754,0.123622089624405,0.833347737789154,0.538747906684875,0.157504066824913,0.832748830318451,0.53077495098114,0.0516882203519344,0.968966543674469,0.241727441549301,0.160846769809723,0.826347351074219,0.539702236652374,0.211256682872772,0.829228460788727,0.517446398735046,0.0641356110572815,0.969481647014618,0.236626490950584,0.267576515674591,0.736995875835419,0.62067699432373,0.127473846077919,0.833330512046814,0.537876129150391,0.0973042100667953,-0.569667041301727,0.816095173358917,0.136710315942764,0.775242447853088,0.616692423820496,0.0682209506630898,-0.383657962083817,0.920951962471008,-0.614754736423492,0.427944421768188,0.662525653839111,-0.326336234807968,0.0266528613865376,0.944877922534943,-0.16093347966671,0.0377238541841507,0.986244022846222,-0.508445560932159,0.515482902526855,0.689754009246826,0.340890675783157,-0.54613995552063,0.765195906162262,0.120792098343372,-0.568961381912231,0.813444674015045,0.113787829875946,-0.640698671340942,0.759313881397247,0.139777943491936,0.0544138997793198,0.988686680793762,0.113057479262352,-0.569229125976563,0.814368665218353,0.0905834212899208,0.832962870597839,0.54586398601532,0.104334518313408,-0.640255570411682,0.76104348897934,0.150097608566284,0.0549098774790764,0.987145185470581,0.119042910635471,-0.640919506549835,0.758321166038513,0.150151401758194,0.0508741587400436,0.987353265285492,0.140951067209244,-0.641643285751343,0.75394082069397,0.234626188874245,0.0514034032821655,0.97072559595108,0.23446960747242,0.0479776598513126,0.970938801765442,0.159116581082344,0.826204478740692,0.5404332280159,0.297557771205902,-0.55420595407486,0.777377068996429,0.155596420168877,0.832809448242188,0.53124213218689,0.234462097287178,-0.641091346740723,0.730773210525513,
- 0.153177604079247,0.832881689071655,0.531831443309784,0.252670645713806,-0.553652167320251,0.793490350246429,0.287861585617065,0.0519775412976742,0.956260502338409,0.218746215105057,-0.641604423522949,0.735182881355286,0.238067060709,-0.553204774856567,0.798303544521332,0.268185138702393,0.736903131008148,0.620524406433105,0.413594365119934,-0.549531579017639,0.725916504859924,0.208987966179848,0.829152524471283,0.51848828792572,0.315396815538406,0.052215151488781,0.947522282600403,0.281946748495102,-0.554155766963959,0.783209681510925,0.315863460302353,0.0422894842922688,0.947861790657043,0.916086971759796,0.0364363715052605,0.399320781230927,0.928533673286438,0.324847877025604,0.1797194480896,0.401899844408035,-0.620938181877136,0.672987580299377,0.479065835475922,0.0464686751365662,0.876548111438751,0.459451884031296,-0.545030474662781,0.701317131519318,0.450442761182785,-0.583173632621765,0.676025092601776,0.392716020345688,-0.588788032531738,0.706472098827362,0.45157927274704,0.0561919435858727,0.890459775924683,0.452265530824661,0.0458593852818012,0.890703499317169,0.421211987733841,-0.548894464969635,0.722007870674133,0.284499228000641,0.734298646450043,0.616332530975342,0.417828321456909,-0.561518430709839,0.714224457740784,0.420954257249832,-0.561353981494904,0.712516129016876,0.413909524679184,-0.587038278579712,0.695747792720795,0.424237877130508,-0.548629403114319,0.720435976982117,0.83010458946228,0.461929678916931,0.312325686216354,0.67221474647522,0.0512950345873833,0.73857718706131,0.0352581217885017,-0.533290803432465,0.845196902751923,0.455774188041687,0.0561402440071106,0.888323247432709,0.397855967283249,-0.588395953178406,0.703918218612671,0.405169427394867,-0.562108933925629,0.721020996570587,0.225686803460121,-0.483965843915939,-0.845483601093292,0.22657622396946,-0.479677468538284,-0.84768670797348,0.265513688325882,0.55215311050415,-0.79033499956131,0.266731441020966,0.55897319316864,-0.785113573074341,0.26771804690361,0.552129864692688,-0.789607405662537,0.22949081659317,-0.479725927114487,-0.846874892711639,
- 0.129547595977783,-0.482926338911057,-0.866025149822235,0.130493685603142,-0.568764805793762,-0.812082648277283,0.0445830337703228,0.558257162570953,-0.828469216823578,-0.00153520703315735,0.531856536865234,-0.846833169460297,-0.00271343044005334,0.554447591304779,-0.832214176654816,0.0397548489272594,-0.573808014392853,-0.818024456501007,0.0397911928594112,0.609744250774384,-0.791598737239838,0.0491135232150555,0.558556079864502,-0.828011453151703,0.0519930794835091,0.542057693004608,-0.838731229305267,0.257684916257858,0.559519052505493,-0.787741661071777,0.251557737588882,0.603931963443756,-0.756296813488007,0.258599787950516,0.552206695079803,-0.792586863040924,0.104857929050922,0.561283648014069,-0.820953965187073,0.0959793776273727,0.616355895996094,-0.781596660614014,0.0985859408974648,0.600767552852631,-0.79332160949707,0.310951560735703,0.60101705789566,-0.736266016960144,0.326289176940918,0.538051962852478,-0.777197241783142,0.323460072278976,0.550529658794403,-0.769604206085205,0.324272483587265,0.550491631031036,-0.769289493560791,0.327211976051331,0.53803414106369,-0.776821434497833,0.325321942567825,-0.495603412389755,-0.805321574211121,0.235787928104401,-0.454336225986481,-0.85905921459198,0.229490384459496,-0.492669254541397,-0.839411199092865,0.239832252264023,0.537390291690826,-0.808512330055237,0.313382387161255,0.600845515727997,-0.735374927520752,0.312592744827271,0.60410076379776,-0.733040392398834,0.327203392982483,0.538034319877625,-0.776824951171875,0.0848399996757507,0.615204155445099,-0.783789575099945,-0.0777644515037537,0.946932315826416,0.311884343624115,0.0869851410388947,0.599928081035614,-0.795311152935028,0.311902761459351,0.604131102561951,-0.733309149742126,0.312690675258636,0.600894749164581,-0.735629022121429,-0.0854808688163757,0.946836650371552,0.31015083193779,-0.098354384303093,0.946544647216797,0.307212859392166,0.0649969875812531,0.612957358360291,-0.787438035011292,-0.0980527102947235,0.947462618350983,0.304467290639877,0.385701835155487,0.856496572494507,0.342998266220093,
- 0.824945211410522,0.458603858947754,-0.330375373363495,-0.0588857159018517,0.764839768409729,0.641523599624634,-0.128264293074608,0.769863605499268,0.625186681747437,-0.0939859077334404,0.946662247180939,0.308216243982315,-0.0936203673481941,0.947683393955231,0.305174738168716,0.390064120292664,0.535518527030945,-0.74904602766037,0.371413469314575,0.600236654281616,-0.708355844020844,0.384179562330246,0.557231664657593,-0.736137866973877,0.389038950204849,0.556804239749908,-0.733905792236328,0.372113406658173,-0.471782237291336,-0.799345552921295,0.394445270299912,0.535244405269623,-0.746944785118103,0.316592037677765,-0.470587432384491,-0.823599994182587,0.333561450242996,0.560695827007294,-0.757863342761993,0.297338902950287,-0.544639766216278,-0.784192025661469,-0.247247621417046,-0.384027630090714,-0.889601826667786,0.738127708435059,0.46883898973465,-0.48513650894165,0.469557493925095,0.178277224302292,-0.86471563577652,0.430561155080795,0.55244368314743,-0.713738918304443,0.416823148727417,0.543415367603302,-0.728668808937073,0.37990865111351,0.518526911735535,-0.766028165817261,0.493091970682144,0.279095351696014,-0.823993980884552,0.507852792739868,0.540708184242249,-0.670611798763275,0.505661308765411,0.581070423126221,-0.63770192861557,0.452927857637405,0.439023286104202,-0.775960803031921,0.45850870013237,0.43898332118988,-0.772698819637299,0.407554537057877,0.438680708408356,-0.800911068916321,0.451945900917053,0.442227423191071,-0.774712741374969,0.447884857654572,0.442180603742599,-0.77709424495697,0.457794308662415,0.442277789115906,-0.771242380142212,0.448477327823639,0.438837677240372,-0.778646051883698,0.45305535197258,0.438605427742004,-0.776122629642487,0.459667444229126,0.438247442245483,-0.772427976131439,-0.14910489320755,0.555717945098877,-0.817890763282776,0.630638539791107,0.53941810131073,0.557963371276855,0.22988560795784,0.857559084892273,-0.460157603025436,0.292702078819275,0.604840576648712,-0.740603387355804,-0.0805307850241661,0.946904897689819,0.311265259981155,-0.123996488749981,0.896631062030792,0.425061881542206,
- -0.128538519144058,0.896855652332306,0.42323511838913,-0.0837072730064392,0.946863830089569,0.310551077127457,-0.176328673958778,0.822136163711548,0.541295051574707,-0.248953595757484,0.772534787654877,0.584133803844452,-0.163861751556396,0.897867500782013,0.408636182546616,-0.219422817230225,0.823177814483643,0.523671507835388,-0.0657891929149628,0.946963787078857,0.314533889293671,-0.13384747505188,0.827846348285675,0.544752478599548,-0.137267962098122,0.81967830657959,0.55613386631012,-0.119855083525181,0.945686876773834,0.302177369594574,-0.151586607098579,0.77067369222641,0.618937611579895,-0.145057111978531,0.827738583087921,0.54203987121582,-0.2491345256567,0.772518992424011,0.58407735824585,-0.219892770051956,0.823179364204407,0.523471891880035,-0.34384086728096,-0.612604081630707,0.711680948734283,-0.132796987891197,0.827850759029388,0.54500275850296,-0.23134870827198,-0.615416467189789,0.753485441207886,-0.136293485760689,0.819598972797394,0.556490480899811,-0.348560303449631,-0.612285733222961,0.709656238555908,-0.361099421977997,-0.571318924427032,0.737022340297699,-0.266431778669357,0.770887136459351,0.578573346138,-0.0246517676860094,-0.518539130687714,0.854698479175568,-0.497444778680801,-0.0893638283014297,0.862880527973175,-0.788229823112488,0.55229926109314,0.271402657032013,-0.469078332185745,-0.385569185018539,0.79454517364502,-0.220296710729599,-0.557615280151367,0.80033403635025,-0.807687222957611,0.0226733312010765,0.589175045490265,-0.358846127986908,-0.57120418548584,0.73821085691452,-0.345979332923889,-0.612461924552917,0.71076637506485,-0.431949257850647,0.0535975322127342,0.900303900241852,-0.444809824228287,0.0528515614569187,0.89406430721283,-0.350738048553467,-0.612133085727692,0.708714306354523,-0.44473597407341,0.0562039315700531,0.893896639347076,-0.312637001276016,-0.614291310310364,0.724502801895142,-0.368157863616943,0.0554431825876236,0.928108751773834,-0.368238240480423,0.0539390295743942,0.92816549539566,-0.229935050010681,-0.615395724773407,0.753935039043427,-0.136698439717293,0.827829420566559,0.544069826602936,
- -0.239436060190201,-0.562486469745636,0.791378140449524,-0.241240382194519,-0.562375426292419,0.790908932685852,-0.272556304931641,0.0539683178067207,0.960625112056732,-0.231978595256805,-0.615425288677216,0.753284513950348,-0.154270648956299,0.770738124847412,0.618193626403809,-0.0607026852667332,-0.563868641853333,0.823630690574646,-0.148964092135429,0.827675044536591,0.541076362133026,-0.275402277708054,0.0540194511413574,0.959810137748718,-0.24644348025322,-0.562043905258179,0.789539337158203,-0.275828719139099,0.0443181842565537,0.960184693336487,0.531499564647675,0.0507893040776253,0.84553462266922,0.690523862838745,0.433360815048218,0.579115867614746,-0.0548229366540909,-0.620334506034851,0.78241902589798,-0.246090814471245,0.0439332723617554,0.968250632286072,-0.212938964366913,-0.563886940479279,0.797927677631378,-0.207593247294426,-0.597217261791229,0.774749338626862,-0.0636764988303185,-0.589447319507599,0.805293321609497,-0.136754885315895,0.0534439384937286,0.98916220664978,-0.135993972420692,0.0421814061701298,0.989811301231384,-0.0686711519956589,-0.564201593399048,0.822776317596436,-0.137314915657043,0.770230889320374,0.622807323932648,-0.0693819597363472,-0.559751451015472,0.825750827789307,-0.0677237287163734,-0.559662342071533,0.825948894023895,-0.0627370849251747,-0.589354991912842,0.80543452501297,-0.0669863373041153,-0.564134180545807,0.822961449623108,0.533454596996307,0.555654585361481,0.637710094451904,0.137615963816643,0.0555912330746651,0.988924443721771,-0.398995816707611,-0.544871270656586,0.73750776052475,-0.132000669836998,0.0535167455673218,0.989803969860077,-0.0574621930718422,-0.588826894760132,0.806214094161987,-0.0624209940433502,-0.559367060661316,0.826566457748413,0.0471196174621582,0.423223316669464,-0.904799282550812,0.0436172932386398,-0.466238081455231,-0.88358348608017,0.0464830510318279,0.452178478240967,-0.890715539455414,0.0345485843718052,0.507675230503082,-0.860855638980865,0.0348845832049847,0.423785626888275,-0.905090510845184,0.0348086766898632,0.451816529035568,-0.891431629657745,
- 0.699823200702667,0.283523440361023,-0.655638635158539,0.185452446341515,-0.257872670888901,-0.948213636875153,0.114657886326313,-0.312779039144516,-0.942880034446716,0.0565716363489628,0.508216738700867,-0.859369158744812,0.0566316321492195,0.505515933036804,-0.860956847667694,0.0581648536026478,0.422660857439041,-0.904419541358948,-0.633760392665863,0.39165997505188,-0.667045950889587,-0.00765787065029144,0.940016984939575,-0.341041743755341,-0.660754561424255,0.337743163108826,-0.670323073863983,0.056916568428278,0.50550764799118,-0.860942780971527,0.0568984746932983,0.508222997188568,-0.859343886375427,0.00342455133795738,0.93161416053772,0.363432824611664,-0.239019632339478,0.910732984542847,0.336801201105118,0.792126417160034,0.346070855855942,-0.502763092517853,-0.496327877044678,0.719519317150116,0.485747426748276,0.0541531443595886,0.505585491657257,-0.861075341701508,0.00505963759496808,0.931565523147583,0.363538563251495,0.00428157905116677,0.926248908042908,0.37688809633255,-0.096942275762558,0.98419725894928,0.148182228207588,-0.669465482234955,0.376122623682022,-0.640583872795105,0.125803738832474,0.917815685272217,0.376547187566757,0.00263082678429782,0.926268815994263,0.376854240894318,0.00353788211941719,0.931610822677612,0.363440155982971,-0.0166873633861542,0.766791641712189,0.641679167747498,0.422452837228775,0.738028347492218,0.526163280010223,-0.0993896424770355,0.981580972671509,0.163157999515533,0.183141604065895,0.908994734287262,0.37441673874855,-0.00127653346862644,0.926305949687958,0.376769989728928,-0.0189308151602745,0.767027616500854,0.641334772109985,-0.0142255583778024,0.818537533283234,0.574276864528656,0.903623342514038,-0.105452321469784,0.415144145488739,-0.176010549068451,0.660598397254944,0.729815125465393,-0.621253073215485,0.646946430206299,0.442159503698349,-0.0227680429816246,0.767422020435333,0.640737891197205,-0.0469392463564873,-0.454174399375916,0.889675378799438,-0.0190832763910294,0.818515241146088,0.574167788028717,0.587930202484131,-0.000558692961931229,0.808911561965942,
- 0.708041727542877,0.446304559707642,0.547256112098694,0.0222832020372152,-0.707491636276245,0.706370294094086,0.563329219818115,0.559738755226135,0.607743918895721,0.290186047554016,0.021671824157238,0.95672482252121,-0.0732341110706329,-0.469937026500702,0.879656851291656,-0.0526118390262127,-0.454565942287445,0.889157891273499,-0.00545872002840042,0.765550553798676,0.643352568149567,-0.0527224838733673,-0.470832943916321,0.880645573139191,-0.0393286198377609,0.0465369671583176,0.998142063617706,-0.0421964041888714,-0.47121524810791,0.881008267402649,-0.0394113250076771,0.0414778590202332,0.998361825942993,-0.0524718351662159,-0.470842689275742,0.880655407905579,-0.0444355458021164,0.046446617692709,0.997931957244873,-0.0524394884705544,-0.454554289579391,0.889174044132233,-0.129302069544792,-0.662468194961548,0.737846195697784,-0.360542565584183,-0.452814429998398,0.815455794334412,-0.668985843658447,0.0245609730482101,0.742869257926941,-0.43187814950943,0.0184985883533955,0.901742279529572,-0.0160308517515659,0.997868776321411,0.06325314193964,-0.015498579479754,0.997946798801422,0.0621447935700417,-0.0127404369413853,0.997802257537842,0.0650269538164139,-0.428733795881271,0.0186812561005354,0.903237760066986,-0.428242474794388,0.0370178259909153,0.902905464172363,-0.428267806768417,0.0187082830816507,0.90345823764801,-0.42871105670929,-0.0758706107735634,0.900250256061554,-0.427740186452866,0.0369640998542309,0.903145730495453,-0.360927164554596,-0.0815291181206703,0.929023444652557,-0.360426723957062,0.022523183375597,0.932515621185303,-0.361036151647568,-0.0727782845497131,0.929707586765289,-0.359715014696121,-0.0727586150169373,0.930221080780029,-0.00714990682899952,-0.999956727027893,0.0059595899656415,-0.359504669904709,-0.0816414281725883,0.929565012454987,-0.305140107870102,-0.0718303769826889,0.949594616889954,-0.382203608751297,0.0213239565491676,0.923832058906555,0.244413614273071,-0.585209906101227,0.773169815540314,-0.0197439920157194,-0.999803245067596,0.00189907173626125,-0.36198502779007,-0.0727923288941383,0.929337561130524,
- -0.137086510658264,-0.941733181476593,0.30715811252594,-0.0232462584972382,0.445720851421356,-0.894870102405548,0.0104381581768394,0.473826706409454,-0.880556285381317,-0.591966688632965,-0.218400925397873,-0.775806963443756,-0.568902254104614,0.56195741891861,-0.600461542606354,-0.545906186103821,0.610028266906738,-0.574327409267426,-0.568717837333679,0.562368631362915,-0.600251257419586,-0.55757874250412,0.610147178173065,-0.562873363494873,-0.582017540931702,0.562349319458008,-0.587383031845093,-0.561511397361755,0.602845013141632,-0.566818296909332,-0.605353057384491,0.606415212154388,-0.515566110610962,-0.631594359874725,0.562018990516663,-0.534062922000885,-0.634576499462128,0.556649446487427,-0.53614741563797,-0.702580034732819,0.547420501708984,-0.45465612411499,-0.668659269809723,0.606430888175964,-0.430274784564972,-0.695652723312378,0.560248076915741,-0.449654906988144,0.1637904047966,0.958317279815674,0.234095647931099,-0.557060897350311,0.610145390033722,-0.563387811183929,-0.560683012008667,0.602753818035126,-0.56773442029953,-0.498339414596558,0.546835660934448,0.672776818275452,-0.185450404882431,0.249239176511765,0.950519859790802,-0.632382571697235,0.606678187847137,-0.481699049472809,-0.658206343650818,0.606919348239899,-0.445436090230942,-0.693816900253296,0.547392308712006,-0.467952758073807,-0.66342306137085,0.598747611045837,-0.448744028806686,-0.71478682756424,0.554599106311798,-0.426027834415436,-0.687044620513916,0.59907454252243,-0.411192655563354,-0.719176113605499,0.54707533121109,-0.428362429141998,0.297403812408447,0.928593516349792,0.221957787871361,0.238214701414108,0.956965088844299,0.165745958685875,-0.568702578544617,0.603601515293121,-0.558786869049072,0.314325273036957,0.928444504737854,0.197965696454048,-0.653911650180817,0.607058584690094,-0.45153021812439,-0.65928441286087,0.598575174808502,-0.455029457807541,-0.773549973964691,0.586804807186127,-0.239333525300026,-0.78881049156189,0.544182896614075,-0.285732567310333,-0.811584651470184,0.434951454401016,-0.390060871839523,
- -0.799883782863617,0.459313780069351,-0.386285811662674,-0.820278823375702,0.532954931259155,-0.207609534263611,-0.789714217185974,0.43747553229332,-0.430077433586121,-0.809900939464569,0.438556432723999,-0.389523655176163,-0.789328455924988,0.438288360834122,-0.429958194494247,-0.812644243240356,0.438522011041641,-0.383806943893433,-0.805569112300873,0.443699330091476,-0.392669498920441,-0.807460904121399,0.443719565868378,-0.38874140381813,-0.810414433479309,0.443734407424927,-0.38252866268158,-0.809555947780609,0.439290940761566,-0.389413356781006,-0.807376384735107,0.439267814159393,-0.393938064575195,-0.812743127346039,0.439304739236832,-0.382700860500336,-0.308318734169006,0.511110186576843,-0.802312970161438,-0.54605633020401,0.785151481628418,-0.292163699865341,-0.398448348045349,0.466223508119583,0.78985732793808,0.329663723707199,0.915343403816223,0.231232523918152,0.303286761045456,0.928632497787476,0.213679403066635,-0.668016076087952,0.598900616168976,-0.441670358181,0.465837150812149,0.825680255889893,0.318194895982742,0.303270667791367,0.928632497787476,0.213702112436295,0.32993495464325,0.915329217910767,0.230901062488556,0.447436988353729,0.824986100196838,0.345250725746155,0.244372725486755,0.9564049243927,0.159911245107651,0.303541481494904,0.928632080554962,0.213319510221481,0.487986981868744,0.825311303138733,0.284130305051804,0.350779205560684,0.913727283477783,0.20507650077343,0.537949681282043,0.782758116722107,0.312889844179153,0.261534065008163,0.954467236995697,0.143500283360481,0.46710279583931,0.825695633888245,0.316293716430664,0.473646908998489,0.81977242231369,0.321918994188309,0.373100012540817,0.822974860668182,0.428379207849503,0.463197439908981,0.71979820728302,0.517048001289368,0.172469452023506,0.958661079406738,0.22632560133934,0.711243033409119,-0.571354985237122,0.409495890140533,0.487986981868744,0.825311303138733,0.284130305051804,0.537949681282043,0.782758116722107,0.312889844179153,0.998939037322998,0.00472626555711031,0.0458084270358086,0.839157462120056,0.420754343271255,-0.344645619392395,
- 0.833565771579742,-0.385211974382401,0.395954698324203,0.818466484546661,0.53694874048233,-0.204447686672211,0.956849098205566,0.0298227109014988,0.289050906896591,0.550013244152069,-0.527681231498718,0.647331416606903,0.651968717575073,-0.6447674036026,0.399013578891754,0.703877389431,-0.570198535919189,0.423592060804367,0.87428492307663,0.0498178489506245,0.482849955558777,0.505142509937286,0.824033498764038,0.256514966487885,0.706909656524658,-0.570688724517822,0.417843401432037,0.656371831893921,-0.644668638706207,0.391890943050385,0.869371473789215,0.0526792034506798,0.491343230009079,0.650546789169312,-0.644789516925812,0.401292115449905,0.869418740272522,0.0507069081068039,0.491467028856277,0.8247389793396,0.0484797805547714,0.563431739807129,0.644862473011017,-0.644831418991089,0.410298585891724,0.824503123760223,0.0522624813020229,0.563438773155212,0.63302755355835,-0.552030920982361,0.542713463306427,0.473646908998489,0.81977242231369,0.321918994188309,0.46710279583931,0.825695633888245,0.316293716430664,0.467235863208771,0.82569694519043,0.316093564033508,0.599389314651489,-0.642766654491425,0.477057039737701,0.65573263168335,-0.551585555076599,0.515527009963989,0.604133605957031,-0.643163740634918,0.470492333173752,0.801106452941895,0.0501852557063103,0.59641420841217,0.660416901111603,-0.551403224468231,0.509709715843201,0.577052891254425,-0.550379574298859,0.603400707244873,0.462914407253265,0.719691634178162,0.517449855804443,0.375215440988541,0.823085188865662,0.42631459236145,0.63151627779007,-0.552035927772522,0.544466257095337,0.787433445453644,0.051095224916935,0.614278316497803,0.787321090698242,0.0366292335093021,0.615454137325287,-0.173166006803513,0.261507660150528,0.949540615081787,-0.0147189125418663,-0.00933710392564535,0.999848067760468,0.420994907617569,-0.733376860618591,0.533780634403229,0.554612398147583,-0.548756837844849,0.625516712665558,0.697010219097137,0.0391651540994644,0.715990900993347,0.533457279205322,-0.588531374931335,0.607498347759247,0.684868097305298,0.0594617538154125,0.726236879825592,
- 0.566866397857666,-0.588507175445557,0.576473653316498,0.685937464237213,0.0394081696867943,0.726592659950256,0.457905530929565,0.717782080173492,0.524510681629181,0.574187040328979,-0.550200760364532,0.606290698051453,0.568441331386566,-0.56338357925415,0.599561035633087,0.410650789737701,0.0318775773048401,0.911235272884369,0.00779285933822393,0.427727103233337,0.903874278068542,0.738813579082489,-0.535112082958221,0.409645676612854,0.555793762207031,-0.588651657104492,0.587011575698853,0.567487180233002,-0.563432097434998,0.60041868686676,0.573336720466614,-0.550146102905273,0.607144415378571,0.576029419898987,-0.562962830066681,0.592674493789673,0.564218997955322,-0.588554382324219,0.579016923904419,0.680917859077454,0.0590558685362339,0.729974865913391,0.722047924995422,0.430440247058868,0.541634559631348,0.696710169315338,0.453037798404694,0.556193947792053,0.980477273464203,-0.191502317786217,0.0446227379143238,0.826317548751831,0.55937260389328,0.0655878558754921,0.795412242412567,0.602162897586823,0.0686968937516212,0.827620923519135,0.557458817958832,0.0654472038149834,0.7947758436203,0.605237543582916,0.0449325293302536,0.827500939369202,0.559941709041595,0.0413215644657612,0.794015049934387,0.606229484081268,0.0450117290019989,0.828684628009796,0.559017837047577,-0.02794542722404,0.795160114765167,0.605591416358948,-0.0312981158494949,0.828190088272095,0.559747576713562,-0.0279976464807987,-0.336494415998459,0.939054250717163,0.0703461170196533,0.795001804828644,0.60440468788147,0.0516443364322186,0.793690085411072,0.606115579605103,0.0517681017518044,-0.759651780128479,-0.493669152259827,0.42334371805191,0.72630763053894,0.607496619224548,-0.321597844362259,-0.25069397687912,0.699611127376556,0.669101595878601,0.794422030448914,0.606345474720001,0.0351982116699219,0.826923191547394,0.56099271774292,0.038540031760931,0.809735774993896,0.585642576217651,0.0367547385394573,0.821707308292389,0.560533165931702,0.102954670786858,0.829887986183167,0.548111081123352,0.104212030768394,0.801184177398682,0.590033531188965,0.0998217314481735,
- 0.795151710510254,0.606359958648682,0.00783639773726463,-0.322903335094452,0.946400463581085,-0.00771588366478682,-0.337319642305374,0.94135719537735,-0.00788057781755924,-0.320537745952606,0.946094751358032,-0.046479407697916,0.794422030448914,0.606345474720001,0.0351982116699219,0.809735774993896,0.585642576217651,0.0367547385394573,-0.251150786876678,0.700886011123657,0.667594373226166,-0.400457501411438,0.594996809959412,0.696859061717987,-0.820665240287781,-0.538333892822266,0.191585808992386,-0.323078542947769,0.946361601352692,-0.00448582181707025,-0.545423746109009,0.838123977184296,-0.00781887769699097,-0.337326377630234,0.941376030445099,-0.00469877105206251,-0.797944486141205,-0.532279849052429,-0.282776743173599,-0.757361650466919,0.0102821215987206,-0.652914702892303,-0.673872053623199,-0.738481879234314,-0.0232592727988958,-0.832945585250854,-0.551017105579376,-0.0508125387132168,-0.806992173194885,-0.588163316249847,-0.0531761348247528,-0.999916613101959,0.000203422445338219,-0.0129173249006271,-0.999974608421326,0.000112203088065144,-0.00712489616125822,-0.806954920291901,-0.588733792304993,-0.0470777302980423,-0.999456107616425,-0.0316261537373066,-0.00934883300215006,-0.806884288787842,-0.589302659034729,-0.0407455377280712,-0.833511054515839,-0.551158547401428,-0.0385171920061111,-0.826893091201782,-0.560998678207397,-0.0390933491289616,-0.823023974895477,-0.549711346626282,0.142999842762947,-0.989992201328278,-0.0290059093385935,0.138109087944031,-0.790950179100037,-0.595407128334045,0.141026064753532,-0.544334411621094,0.833469867706299,0.0950158908963203,-0.82547527551651,-0.561098158359528,-0.0613134391605854,-0.832431733608246,-0.550853908061981,-0.0601449869573116,-0.828600168228149,-0.559705793857574,0.012299919500947,-0.998877346515656,-0.0472659282386303,-0.00316969817504287,-0.999496102333069,-0.0315372571349144,-0.00362364342436194,-0.998476922512054,-0.0478220209479332,-0.0275117959827185,-0.828109323978424,-0.560465753078461,-0.0106306737288833,-0.811476230621338,-0.584306657314301,-0.0095958486199379,
- -0.544745564460754,0.837870299816132,-0.0350096523761749,-0.811441123485565,-0.584347307682037,-0.0100805945694447,-0.82809442281723,-0.560478508472443,-0.0111107900738716,-0.989170908927917,-0.0499921329319477,-0.137991830706596,-0.802846193313599,-0.589184761047363,-0.0911008194088936,-0.989072561264038,-0.0521567910909653,-0.137895479798317,-0.783286392688751,-0.589553713798523,-0.197202637791634,-0.968861043453217,-0.0514955334365368,-0.242191269993782,-0.968661487102509,-0.0552970394492149,-0.242151126265526,-0.810952723026276,-0.58487731218338,-0.0165609829127789,-0.545337855815887,0.838124692440033,-0.0123932640999556,-0.559524655342102,0.828716635704041,-0.0126838199794292,-0.545345664024353,0.838125348091125,-0.0120026748627424,-0.322938174009323,0.946393609046936,-0.00707925669848919,-0.559544026851654,0.828709244728088,-0.0123171415179968,-0.790833234786987,-0.590194761753082,-0.162028282880783,-0.805552244186401,-0.569012582302094,-0.165258228778839,-0.977352023124695,-0.0535046681761742,-0.204744711518288,-0.803546607494354,-0.588995575904846,-0.0860065296292305,-0.552411198616028,0.827137589454651,-0.103369526565075,-0.53549063205719,0.838417589664459,-0.101518154144287,-0.531793713569641,0.837847113609314,-0.123319290578365,-0.80508828163147,-0.568971157073975,-0.167644649744034,-0.790386855602264,-0.590176820755005,-0.164255768060684,-0.318378359079361,0.944880962371826,-0.0763881281018257,-0.53549063205719,0.838417589664459,-0.101518154144287,-0.552411198616028,0.827137589454651,-0.103369526565075,-0.752005875110626,0.567785382270813,0.334823757410049,-0.99140077829361,-0.0578288063406944,-0.117389537394047,-0.720939815044403,-0.542006313800812,-0.431827425956726,-0.799613773822784,-0.568284928798676,-0.194088235497475,-0.528112769126892,0.836946129798889,-0.143590211868286,-0.62289947271347,0.764371514320374,-0.16653136909008,-0.995161712169647,-0.0655681490898132,0.0731721222400665,-0.741015315055847,0.444804966449738,0.503035664558411,-0.890354633331299,-0.389714121818542,-0.235354110598564,-0.534570336341858,0.838310718536377,-0.107097029685974,
- -0.31831881403923,0.944838404655457,-0.0771591067314148,-0.391394346952438,0.916054368019104,-0.0874923840165138,-0.528112769126892,0.836946129798889,-0.143590211868286,-0.386723220348358,0.915732085704803,-0.108995400369167,-0.62289947271347,0.764371514320374,-0.16653136909008,-0.318184405565262,0.94474071264267,-0.0788914039731026,0.800191044807434,0.590328931808472,0.105858668684959,-0.391007959842682,0.916044294834137,-0.0893062129616737,-0.534708321094513,0.778767824172974,-0.328036367893219,-0.352283269166946,0.903071105480194,-0.245680719614029,-0.0322970412671566,0.995264291763306,-0.0916848257184029,0.62613046169281,0.541599571704865,0.560919404029846,-0.0698661878705025,0.996196329593658,-0.0520743802189827,-0.33877369761467,0.894516468048096,-0.291672468185425,0.740945935249329,0.585195362567902,0.329462647438049,0.740339934825897,0.586201369762421,0.329036176204681,-0.0129539873450994,0.993631422519684,-0.111933097243309,0.761965274810791,0.589878916740417,0.267304688692093,0.789053976535797,0.54807323217392,0.277506053447723,0.764000594615936,0.586891710758209,0.268069475889206,0.812308132648468,0.550275683403015,0.193267285823822,0.807892560958862,0.557183980941772,0.191978082060814,0.789963603019714,0.584015011787415,0.186772719025612,0.814328134059906,0.574417233467102,0.0831539332866669,0.870223462581635,0.433864772319794,0.233393475413322,0.325952738523483,0.831514954566956,-0.449819803237915,0.800198674201965,0.581185162067413,0.14800651371479,0.81093966960907,0.556344747543335,0.181266039609909,0.823640048503876,0.519277274608612,0.22796568274498,0.857127547264099,0.43366327881813,0.277972370386124,0.85883229970932,0.456613928079605,0.232187375426292,0.841791570186615,0.538555681705475,0.036670558154583,0.867668390274048,0.439091771841049,0.233131021261215,0.854604542255402,0.438768059015274,0.277729511260986,0.869092881679535,0.439067333936691,0.227810561656952,0.859944999217987,0.452326953411102,0.2364212423563,0.861028015613556,0.45233678817749,0.232426866889,0.862834274768829,0.452335834503174,0.225631326436996,
- 0.863995254039764,0.446477085351944,0.232745349407196,0.862721025943756,0.446309119462967,0.237740650773048,0.866590201854706,0.446790397167206,0.222260788083076,-0.0417524240911007,0.423329740762711,0.905013084411621,-0.0739980638027191,0.448463946580887,0.89073246717453,0.565015256404877,-0.208485066890717,0.798305630683899,0.473840743303299,0.55492377281189,0.68376499414444,0.447288155555725,0.61015248298645,0.653947412967682,0.469898223876953,0.563590049743652,0.679383516311646,0.463193416595459,0.611967146396637,0.641052424907684,0.490654706954956,0.554600059986115,0.672069072723389,0.460461765527725,0.61726188659668,0.637936413288116,0.463982671499252,0.555004894733429,0.690427124500275,0.44686821103096,0.60838383436203,0.655879497528076,0.443681836128235,0.617431998252869,0.649556875228882,0.468699425458908,0.605470359325409,0.643215775489807,0.484233677387238,0.554751634597778,0.676585793495178,0.48146852850914,0.564418315887451,0.670537054538727,0.555958390235901,0.589217662811279,0.586287319660187,0.55807501077652,0.553380131721497,0.618322491645813,0.53190290927887,0.244525969028473,0.810732007026672,-0.228856831789017,0.948570191860199,-0.21872153878212,0.472771763801575,0.612944364547729,0.633076667785645,0.470633059740067,0.61703097820282,0.630695998668671,-0.117972008883953,0.942205131053925,-0.313579529523849,0.443159282207489,0.617433190345764,0.649912416934967,0.446293890476227,0.608454704284668,0.656204700469971,0.443086504936218,0.617433369159698,0.649961888790131,-0.177529379725456,0.943364918231964,-0.280260533094406,-0.168343067169189,0.948973298072815,-0.266665309667587,0.339020371437073,-0.328252851963043,-0.881654918193817,-0.145525217056274,0.943286180496216,-0.298384934663773,-0.353593349456787,0.482461869716644,0.801375269889832,-0.803379535675049,0.00951185822486877,0.59539133310318,0.806845545768738,0.13558766245842,-0.574992418289185,-0.796953916549683,0.0691149681806564,0.600073099136353,-0.603228867053986,0.797311663627625,0.0202251225709915,0.464405357837677,-0.259025990962982,-0.846896171569824,
- -0.491846978664398,0.801894307136536,-0.339193493127823,-0.293168842792511,-0.542015194892883,-0.787573218345642,0.0100903259590268,-0.0468719601631165,-0.998849987983704,-0.423745840787888,-0.743742287158966,-0.516997933387756,-0.48102393746376,-0.555864274501801,-0.677960872650146,-0.602371275424957,-0.0582751408219337,-0.796085953712463,-0.602497696876526,-0.0565879046916962,-0.796112060546875,-0.272589862346649,0.829111516475677,-0.488128006458282,-0.268868505954742,0.833726167678833,-0.48229718208313,-0.150825053453445,0.943387269973755,-0.295419096946716,-0.448203504085541,-0.552911460399628,-0.702426195144653,-0.268868505954742,0.833726167678833,-0.48229718208313,-0.272589862346649,0.829111516475677,-0.488128006458282,-0.161437273025513,0.948662877082825,-0.271986544132233,-0.169962733983994,0.943461716175079,-0.284592241048813,-0.293347358703613,0.834759593009949,-0.465965330600739,0.347340762615204,0.734201967716217,-0.583354115486145,0.118546918034554,0.724620759487152,-0.678875088691711,-0.923543930053711,-0.381550252437592,-0.0385521836578846,-0.358758598566055,0.839831590652466,-0.407400757074356,-0.222870543599129,0.948864877223969,-0.223571643233299,-0.364416629076004,0.833565235137939,-0.415174186229706,-0.604401111602783,-0.0583383738994598,-0.794541358947754,-0.487645357847214,-0.555870234966278,-0.673209011554718,-0.486040771007538,-0.559523463249207,-0.671340346336365,-0.362995237112045,0.839648008346558,-0.404011994600296,-0.480902522802353,-0.559692561626434,-0.674890398979187,-0.482623547315598,-0.555869102478027,-0.676819145679474,-0.489710599184036,-0.559388935565948,-0.668780624866486,-0.35720819234848,0.839892387390137,-0.408635705709457,-0.362861484289169,0.833661198616028,-0.416341781616211,-0.26409974694252,0.833442389965057,-0.485412448644638,-0.450180798768997,-0.553005695343018,-0.701086282730103,-0.447850257158279,-0.560255944728851,-0.696809470653534,-0.471030861139297,-0.559954881668091,-0.681601524353027,-0.539103031158447,-0.0524483509361744,-0.840605199337006,-0.539167582988739,-0.056184746325016,-0.840322315692902,
- -0.522314965724945,-0.0525491088628769,-0.851132035255432,-0.447850257158279,-0.560255944728851,-0.696809470653534,-0.450180798768997,-0.553005695343018,-0.701086282730103,0.492558062076569,0.478256911039352,0.727088034152985,0.454959958791733,0.505319237709045,0.733255743980408,0.927147328853607,-0.162554800510406,0.337600260972977,0.796444773674011,0.551541924476624,0.247946009039879,0.755758702754974,0.612528860569,0.231597110629082,0.788499295711517,0.564252555370331,0.244720205664635,0.759575605392456,0.612450122833252,0.218974441289902,0.800801396369934,0.550910413265228,0.234978333115578,0.753255844116211,0.621054470539093,0.216557145118713,0.755590081214905,0.552832901477814,0.351367950439453,0.719155311584473,0.607921004295349,0.336523205041885,0.708311080932617,0.622916996479034,0.332069009542465,0.727246880531311,0.607522010803223,0.319419831037521,0.763072192668915,0.553093373775482,0.334377944469452,0.758117735385895,0.561092793941498,0.332313656806946,0.762281656265259,0.60261332988739,0.236186116933823,0.782717347145081,0.559710621833801,0.272172182798386,0.824416697025299,0.431848347187042,0.365847319364548,0.760387718677521,0.61241888999939,0.216226011514664,0.754199624061584,0.620891213417053,0.213721767067909,-0.278283327817917,0.949630737304688,-0.144082739949226,-0.296626567840576,0.948548197746277,-0.110765814781189,0.708023905754089,0.622900187969208,0.332712382078171,0.71882438659668,0.607932507991791,0.337208598852158,-0.760092973709106,-0.270341277122498,0.590909719467163,0.693772733211517,0.371483594179153,-0.616992235183716,-0.165568992495537,0.875913143157959,-0.453170001506805,-0.261198371648788,-0.279717236757278,-0.923868894577026,-0.306469321250916,0.94750052690506,-0.0912107974290848,0.197852313518524,0.438898205757141,0.876483201980591,-0.688895046710968,-0.558540999889374,-0.462012588977814,-0.588764309883118,-0.109360180795193,-0.800872683525085,-0.642505288124084,-0.743541717529297,-0.185290992259979,-0.798962593078613,-0.553374946117401,-0.235446318984032,-0.94858580827713,-0.0573023296892643,-0.311290055513382,
- -0.948493123054504,-0.0596232265233994,-0.311136513948441,0.699213325977325,0.622249364852905,0.35200360417366,-0.305885434150696,0.947575926780701,-0.0923803150653839,-0.309438318014145,0.94625449180603,-0.0940759778022766,-0.278505712747574,0.949675798416138,-0.143354266881943,0.753680527210236,0.620981872081757,0.215284079313278,-0.288771748542786,0.946114897727966,-0.146551698446274,-0.518533527851105,0.832148015499115,-0.196602687239647,-0.308339029550552,0.946324348449707,-0.096939243376255,-0.304500848054886,0.947747826576233,-0.0951486229896545,-0.493475317955017,0.779286801815033,0.386256992816925,-0.164138644933701,-0.219339191913605,-0.961742699146271,-0.617724359035492,0.784855127334595,0.0491865053772926,-0.316474258899689,0.945588231086731,-0.0755454152822495,-0.527659952640533,0.83062469959259,-0.177869588136673,-0.523662507534027,0.83357310295105,-0.175879001617432,-0.751561999320984,-0.543728709220886,-0.37351530790329,-0.523662507534027,0.83357310295105,-0.175879001617432,-0.527659952640533,0.83062469959259,-0.177869588136673,-0.509592115879059,0.833523809909821,-0.21343357861042,-0.277908205986023,0.949553549289703,-0.145310193300247,-0.288032233715057,0.94605553150177,-0.148378849029541,-0.521863520145416,0.833643019199371,-0.180824980139732,-0.753709614276886,-0.544528186321259,-0.367982447147369,-0.745000958442688,-0.558370232582092,-0.364960700273514,-0.911620855331421,-0.0504484884440899,-0.407924592494965,-0.745000958442688,-0.558370232582092,-0.364960700273514,-0.753709614276886,-0.544528186321259,-0.367982447147369,-0.755480408668518,-0.558397054672241,-0.342698127031326,-0.91949337720871,-0.0524452812969685,-0.389591336250305,-0.919336915016174,-0.0548430234193802,-0.38963058590889,-0.949108362197876,-0.0573478862643242,-0.309684693813324,-0.799546837806702,-0.553217053413391,-0.233828455209732,-0.79914915561676,-0.553861260414124,-0.233662873506546,-0.279995292425156,0.949964046478271,-0.138458982110024,-0.511620938777924,0.833611845970154,-0.208171710371971,-0.496732085943222,0.843632519245148,-0.20381686091423,
- -0.0644513592123985,0.749346077442169,-0.659034550189972,-0.350636690855026,0.761014223098755,-0.545812487602234,-0.764245748519897,-0.27524322271347,0.583240628242493,-0.800481557846069,-0.553562998771667,-0.229776591062546,-0.496301144361496,0.843547940254211,-0.2052121758461,-0.511117935180664,0.833592355251312,-0.209480717778206,-0.498563349246979,0.843974053859711,-0.19784440100193,-0.797169625759125,-0.554281890392303,-0.239358246326447,-0.797492444515228,-0.553762257099152,-0.239485263824463,-0.769899129867554,0.0162800289690495,-0.637957990169525,-0.0571993142366409,0.997891783714294,-0.0306635163724422,-0.0567421019077301,0.997929453849792,-0.0302838683128357,-0.059774924069643,0.997824549674988,-0.0278088711202145,-0.772044479846954,0.0164633542299271,-0.635355353355408,-0.771855115890503,0.035952016711235,-0.634781181812286,-0.772369801998138,0.0164912026375532,-0.634959042072296,-0.768810749053955,-0.0803884789347649,-0.6344034075737,-0.772210001945496,0.0358998998999596,-0.634352326393127,-0.813248634338379,-0.0857930555939674,-0.575557231903076,-0.817107796669006,0.0204579569399357,-0.576121747493744,-0.81439334154129,-0.0702259913086891,-0.576048612594604,-0.815196394920349,-0.0702014118432999,-0.574914395809174,-0.00405059475451708,-0.999956548213959,-0.00839540828019381,-0.814150512218475,-0.0859035179018974,-0.574264287948608,-0.891344964504242,-0.066824272274971,-0.448373377323151,-0.860360562801361,0.024612583220005,-0.509091436862946,-0.81674337387085,-0.576215028762817,0.0301099121570587,0.00245514186099172,-0.999818742275238,-0.0188802108168602,-0.815279245376587,-0.0701988637447357,-0.57479727268219,-0.251243323087692,-0.94782543182373,-0.196223691105843,0.872358441352844,0.448093414306641,0.19545590877533,0.848652005195618,0.477959483861923,0.226593375205994,0.897225499153137,-0.215550616383553,-0.385388642549515,0.720459222793579,0.559823155403137,-0.409312516450882,0.684715390205383,0.615116238594055,-0.390892416238785,0.718009769916534,0.563872575759888,-0.408056080341339,0.67863929271698,0.615185379981995,-0.401242613792419,
- 0.713039755821228,0.560086488723755,-0.421755194664001,0.687547981739044,0.601657867431641,-0.40655329823494,0.650043845176697,0.604805886745453,-0.460057616233826,0.674596071243286,0.559679329395294,-0.481330662965775,0.677179336547852,0.554590284824371,-0.483588427305222,0.614038050174713,0.5475053191185,-0.56850266456604,0.583361387252808,0.604406476020813,-0.542570114135742,0.608400702476501,0.558594822883606,-0.563755631446838,-0.272672027349472,0.957891225814819,0.0899690315127373,0.698865830898285,0.614590466022491,-0.36587592959404,0.710406124591827,0.598221063613892,-0.370748996734619,0.59407639503479,0.604912042617798,-0.530240178108215,0.623524844646454,0.547465980052948,-0.558119833469391,0.59929347038269,0.595350623130798,-0.535168170928955,-0.903372406959534,0.370443493127823,-0.216078653931618,0.810727775096893,0.578665494918823,-0.0886947214603424,-0.452308535575867,0.836236000061035,-0.31004273891449,0.564324617385864,0.595730125904083,-0.571527183055878,0.587143838405609,0.547049105167389,-0.596656918525696,0.585438132286072,0.550915837287903,-0.594772219657898,-0.31135892868042,0.905690670013428,0.287715286016464,0.595453679561615,0.60496574640274,-0.528631567955017,0.600808262825012,0.595298767089844,-0.533524990081787,0.639877796173096,0.605199337005615,-0.473592907190323,-0.329759269952774,0.905387938022614,0.267454028129578,-0.220064073801041,0.957728564739227,0.185277462005615,0.375177383422852,0.575998723506927,-0.726269602775574,0.423017233610153,0.53256893157959,-0.733093976974487,0.592971801757813,0.340567082166672,-0.729656517505646,0.831372022628784,0.52884429693222,-0.170717492699623,0.448841631412506,0.734092652797699,-0.509557843208313,-0.742992043495178,0.321963727474213,-0.586772799491882,0.565634787082672,0.460940688848495,-0.683806240558624,0.408579766750336,0.529933631420136,-0.743123769760132,0.610150635242462,0.436700284481049,-0.661066591739655,0.569587290287018,0.438527822494507,-0.695171713829041,0.571620583534241,0.438544452190399,-0.693490266799927,0.609744787216187,0.438273429870605,-0.660399615764618,
- 0.581644773483276,0.446425795555115,-0.679995179176331,0.569521009922028,0.44658699631691,-0.690076768398285,0.566815674304962,0.446607708930969,-0.69228720664978,0.57020491361618,0.443990677595139,-0.691186487674713,0.582869470119476,0.443161606788635,-0.681080758571625,0.567009687423706,0.444179952144623,-0.693688869476318,-0.218824550509453,0.957591474056244,0.187441721558571,-0.324665457010269,0.905540227890015,0.273110449314117,-0.441724240779877,0.818394958972931,0.367572337388992,-0.290712535381317,0.905234336853027,0.309898614883423,-0.413498491048813,0.79960435628891,0.43549045920372,-0.395876049995422,0.817909836769104,0.417499452829361,-0.428156405687332,0.818644642829895,0.38275733590126,-0.425262182950974,0.821124911308289,0.380665183067322,-0.202294290065765,0.955214142799377,0.215969771146774,-0.615046322345734,0.718449652194977,0.324881732463837,-0.260766983032227,0.95886504650116,0.112153753638268,-0.506046235561371,0.822939872741699,0.258238524198532,-0.581065475940704,-0.569875419139862,0.581037759780884,-0.39341726899147,0.817780375480652,0.420069128274918,-0.411447584629059,0.799247860908508,0.438079714775085,0.0750539153814316,0.548065543174744,0.833061337471008,-0.633008182048798,-0.163139373064041,0.756760358810425,-0.773029685020447,-0.523160696029663,0.358787089586258,-0.677450597286224,-0.554370582103729,0.483460456132889,-0.585918009281158,-0.387024879455566,0.711977422237396,-0.283201664686203,0.00638495292514563,0.959039092063904,-0.388656973838806,0.817501366138458,0.425014525651932,-0.576032876968384,-0.570358514785767,0.585557222366333,-0.548686742782593,-0.624581038951874,0.555734992027283,-0.549376845359802,-0.624601006507874,0.555030465126038,-0.576181769371033,-0.570344686508179,0.585424244403839,-0.685992658138275,0.0534999035298824,0.72563898563385,-0.632740080356598,-0.622166931629181,0.461029708385468,-0.427880138158798,0.821443855762482,0.377026319503784,-0.431154429912567,0.818618893623352,0.379432767629623,-0.687721490859985,0.0537176579236984,0.72398453950882,-0.687594294548035,0.0555732063949108,0.723965287208557,
- -0.557896792888641,-0.624797999858856,0.546240448951721,-0.746808111667633,0.0470430292189121,0.663373708724976,-0.567305445671082,-0.624907314777374,0.536335289478302,-0.746689677238464,0.0554938279092312,0.66285365819931,-0.425051629543304,0.821098685264587,0.380957096815109,-0.640269696712494,-0.621411025524139,0.451556473970413,-0.673328161239624,-0.561554551124573,0.480921864509583,-0.790603697299957,0.0498018078505993,0.61029976606369,-0.672000408172607,-0.561526834964752,0.482807487249374,-0.63864803314209,-0.621582329273224,0.453612327575684,-0.717234671115875,-0.56065845489502,0.413807511329651,-0.615572512149811,0.718247175216675,0.324332416057587,-0.504958927631378,0.823039531707764,0.260043114423752,-0.676416754722595,-0.561607599258423,0.47650533914566,-0.786925792694092,0.0495701283216476,0.615053415298462,-0.787964284420013,0.0358621813356876,0.61467570066452,-0.90228796005249,0.212804511189461,-0.374954253435135,-0.966291785240173,-0.00916548259556293,-0.257286161184311,-0.619171500205994,-0.734251320362091,0.278391242027283,-0.619030773639679,-0.558270633220673,0.552390098571777,-0.786961555480957,0.0358328223228455,0.615960717201233,-0.606459975242615,-0.579052269458771,0.544889688491821,-0.870753705501556,0.0602984726428986,0.488008350133896,-0.696303486824036,-0.58935672044754,0.409658640623093,-0.871417343616486,0.0381586030125618,0.489056020975113,-0.621504962444305,0.715922832489014,0.318097680807114,-0.710973739624023,-0.561021327972412,0.423994779586792,-0.710870862007141,-0.561189770698547,0.423944234848022,-0.994771778583527,0.0252149570733309,0.0989617556333542,-0.90172266960144,0.380976319313049,-0.204336315393448,-0.645068466663361,-0.550684690475464,0.529748260974884,-0.693304657936096,-0.58925324678421,0.414860546588898,-0.711023390293121,-0.561205267906189,0.423667818307877,-0.711140751838684,-0.561012744903564,0.423725873231888,-0.715616643428802,-0.561647772789001,0.415264517068863,-0.698142647743225,-0.589409947395325,0.406439185142517,-0.873445928096771,0.0598855949938297,0.483224421739578,
- -0.632262825965881,0.441028386354446,0.636975467205048,-0.644815385341644,0.465830236673355,0.605982959270477,-0.146396338939667,-0.199886485934258,0.968820691108704,-0.183006748557091,0.564486503601074,0.80489981174469,-0.181525573134422,0.607361912727356,0.773408114910126,-0.183030486106873,0.563633441925049,0.805491924285889,-0.141333431005478,0.611934185028076,0.7781782746315,-0.144434586167336,0.564026832580566,0.81302672624588,-0.141668424010277,0.607205033302307,0.781813383102417,-0.15420600771904,0.607581436634064,0.779144048690796,-0.164365708827972,0.56437349319458,0.808991014957428,-0.166227906942368,0.556049227714539,0.814357221126556,-0.302266061306,0.547610640525818,0.780229330062866,-0.286229163408279,0.605359673500061,0.74270623922348,-0.299284547567368,0.558984875679016,0.773281693458557,-0.133370995521545,0.612716913223267,0.778967499732971,-0.134008467197418,0.606926381587982,0.783378660678864,0.0384146980941296,0.948924541473389,-0.313155621290207,0.271194934844971,0.924005329608917,-0.26956894993782,-0.117644101381302,0.735578596591949,-0.6671462059021,0.665931403636932,0.470607787370682,0.578846991062164,-0.261744797229767,0.606648504734039,0.750644564628601,-0.278521209955215,0.546167373657227,0.790017187595367,-0.266630411148071,0.589898407459259,0.762186467647552,0.0380570441484451,0.938670217990875,-0.342709511518478,0.0324641615152359,0.948856890201569,-0.314032942056656,-0.160677239298821,0.607736766338348,0.777713894844055,-0.266257703304291,0.606441855430603,0.749223053455353,-0.270936697721481,0.590283453464508,0.760367453098297,0.144575968384743,0.939291179180145,-0.311174899339676,-0.0151883698999882,0.947078347206116,-0.320643067359924,0.0242480300366879,0.835604786872864,-0.548795878887177,0.0508409701287746,0.72515606880188,-0.686705112457275,0.0783528089523315,0.838953971862793,-0.538532316684723,0.034359049052,0.948882222175598,-0.313754856586456,0.0398364253342152,0.938775599002838,-0.342218548059464,-0.43808177113533,0.594952702522278,0.673880994319916,-0.455800145864487,0.547893404960632,0.701469302177429,
- -0.442537009716034,0.583653450012207,0.680815517902374,-0.386821269989014,0.549799859523773,0.740330696105957,-0.385239362716675,0.554522514343262,0.737628281116486,-0.376064717769623,0.580883800983429,0.721906721591949,-0.516961455345154,0.58927708864212,0.620889186859131,-0.521247565746307,0.582126498222351,0.624043107032776,0.125324875116348,0.991411447525024,0.037376657128334,-0.34331014752388,0.578290402889252,0.740079998970032,-0.377393454313278,0.553851842880249,0.742174088954926,-0.418331623077393,0.522509634494781,0.742955207824707,-0.282690078020096,0.571508228778839,0.770366549491882,-0.434960126876831,0.437366813421249,0.787095963954926,0.354014754295349,0.831084251403809,0.428920209407806,-0.474561542272568,0.436113446950912,0.764589011669159,-0.431280821561813,0.458536952733994,0.777007579803467,-0.246685907244682,0.536707103252411,0.806902468204498,-0.434672802686691,0.439081370830536,0.786299645900726,-0.474114686250687,0.43882143497467,0.763315796852112,-0.434442102909088,0.439080208539963,0.786427795886993,-0.437299728393555,0.452356338500977,0.777266323566437,-0.432383298873901,0.452365309000015,0.780006766319275,-0.430787056684494,0.452365100383759,0.780889511108398,-0.4337417781353,0.444562643766403,0.783729672431946,-0.439894944429398,0.444339245557785,0.780419826507568,-0.426727414131165,0.444790095090866,0.78744238615036,-0.564711451530457,0.582887649536133,0.584245681762695,0.0776653215289116,0.996195793151855,-0.0395218655467033,0.321092754602432,0.903029263019562,-0.285372674465179,0.181190326809883,0.915207862854004,-0.35995090007782,0.160281971096992,0.938392698764801,-0.306151747703552,-0.283193647861481,0.591311156749725,0.75508439540863,0.450203448534012,0.775615096092224,-0.442422956228256,0.324059098958969,0.902508318424225,-0.283662617206573,0.0958756729960442,0.99534010887146,-0.0102991731837392,0.232418492436409,0.838380336761475,-0.493051886558533,0.159969940781593,0.938413023948669,-0.306252509355545,0.181035041809082,0.915208518505096,-0.360027372837067,0.267508000135422,0.83698296546936,-0.477387756109238,
- 0.200509756803513,0.91491174697876,-0.350331753492355,0.314537465572357,0.761207342147827,-0.567123889923096,0.157780259847641,0.938553214073181,-0.30695840716362,0.228490427136421,0.838459193706512,-0.494750827550888,0.234127849340439,0.827704071998596,-0.509990334510803,0.10309773683548,0.940431118011475,-0.323975592851639,0.157850742340088,0.829975426197052,-0.534998893737793,0.154321253299713,0.839333415031433,-0.521252810955048,0.382310032844543,-0.568763852119446,-0.728249073028564,0.267508000135422,0.83698296546936,-0.477387756109238,0.314537465572357,0.761207342147827,-0.567123889923096,0.279423832893372,-0.586164534091949,-0.760482430458069,0.234127849340439,0.827704071998596,-0.509990334510803,0.228490427136421,0.838459193706512,-0.494750827550888,0.248738467693329,0.837886273860931,-0.48587629199028,0.357005625963211,-0.56945264339447,-0.740453064441681,0.351292282342911,-0.58717930316925,-0.72925591468811,0.2016681432724,-0.581184864044189,-0.788387179374695,0.154321253299713,0.839333415031433,-0.521252810955048,0.157850742340088,0.829975426197052,-0.534998893737793,-0.140283361077309,0.566014587879181,-0.812371850013733,0.355219751596451,-0.0577269904315472,-0.932998657226563,0.594791352748871,-0.542389631271362,-0.593326807022095,0.171091809868813,-0.0656246393918991,-0.983067214488983,-0.306845009326935,0.443479895591736,-0.842123329639435,0.446549713611603,-0.391528189182281,-0.804548978805542,0.349093228578568,-0.58720201253891,-0.730292916297913,0.354682385921478,-0.569493055343628,-0.741537630558014,0.435013920068741,-0.0534212328493595,-0.898837745189667,0.382470339536667,-0.586475729942322,-0.713976621627808,0.470124900341034,-0.0513352528214455,-0.881105840206146,0.469995409250259,-0.0568830147385597,-0.880834102630615,0.374061167240143,-0.055517241358757,-0.925740778446198,0.285495191812515,-0.58638721704483,-0.758051931858063,0.374136000871658,-0.0541242621839046,-0.92579311132431,0.158937081694603,0.839191317558289,-0.520093381404877,0.202344208955765,-0.581244766712189,-0.788169682025909,
- 0.206774801015854,-0.559279322624207,-0.802777051925659,0.261336088180542,-0.053762536495924,-0.963749527931213,0.205918431282043,-0.55926513671875,-0.803006947040558,0.201450735330582,-0.581165492534637,-0.788456916809082,0.161323249340057,-0.557927966117859,-0.814058482646942,0.0470189265906811,0.725626647472382,-0.686480343341827,0.0187473073601723,0.835122108459473,-0.549745082855225,0.180849194526672,-0.558657228946686,-0.809441685676575,0.236823201179504,-0.053290031850338,-0.97009015083313,0.236569076776505,-0.0590428411960602,-0.969819128513336,0.800238907337189,0.362313628196716,-0.477856427431107,0.7066490650177,-0.0333919823169708,-0.706775844097137,0.0875331461429596,-0.73274564743042,-0.674849510192871,0.000391878245864064,-0.543635249137878,-0.839321613311768,0.0191887374967337,-0.0554763488471508,-0.998275697231293,-0.00209790095686913,-0.597453594207764,-0.801900744438171,0.155283212661743,-0.0531479604542255,-0.986439287662506,0.164209723472595,-0.591439187526703,-0.789452254772186,0.155588671565056,-0.0580281801521778,-0.986116111278534,0.0610046572983265,0.72385162115097,-0.687253415584564,0.155528768897057,-0.55766886472702,-0.815362632274628,0.155452936887741,-0.559421002864838,-0.814176023006439,0.146530374884605,-0.0532902143895626,-0.987769722938538,0.542352855205536,0.564631104469299,-0.622129499912262,-0.24806635081768,-0.532874226570129,-0.809016883373261,0.154999583959579,-0.592213034629822,-0.790733098983765,0.15650974214077,-0.559368789196014,-0.814009428024292,0.156577989459038,-0.557717204093933,-0.815128684043884,0.168892741203308,-0.558707892894745,-0.811985671520233,0.1676025390625,-0.591140806674957,-0.788962543010712,0.159722998738289,-0.0530741401016712,-0.985734164714813,-0.737401068210602,0.348641484975815,-0.57852303981781,-0.706363320350647,0.357803672552109,-0.610759794712067,-0.96442312002182,0.0264521781355143,0.263036727905273,-0.817347884178162,0.561095535755157,0.13082192838192,-0.781966507434845,0.611404895782471,0.121295019984245,-0.815774202346802,0.563480913639069,0.130390539765358,
- -0.782902777194977,0.610999882221222,0.117228969931602,-0.818203270435333,0.561027407646179,0.125665530562401,-0.78409731388092,0.609411835670471,0.117510266602039,-0.788128197193146,0.609409749507904,0.0864516198635101,-0.823372542858124,0.56017130613327,0.0909163653850555,-0.829356014728546,0.55114758014679,0.0916795581579208,0.26492628455162,0.961090981960297,-0.0782204493880272,-0.768301904201508,0.615748167037964,0.174832344055176,-0.774283647537231,0.607759714126587,0.176388874650002,0.254599869251251,0.959381282329559,-0.121517069637775,0.381063491106033,-0.162181615829468,0.910213053226471,-0.413366049528122,0.0605830997228622,-0.908547282218933,-0.833424389362335,0.55163049697876,0.0332807824015617,-0.802534699440002,0.595646023750305,0.0338202603161335,-0.793168365955353,0.608054935932159,0.033958051353693,-0.802526235580444,0.595733463764191,0.0324543826282024,-0.833522498607636,0.551611542701721,0.0310630593448877,-0.834466576576233,0.550184965133667,0.0310174226760864,-0.788368999958038,0.60938835144043,0.0843814313411713,0.334975868463516,0.938580870628357,-0.0828078910708427,0.265856683254242,0.961152791976929,-0.0742000192403793,-0.793110072612762,0.608087182044983,0.0347328223288059,-0.802538871765137,0.59559553861618,0.0346009582281113,0.340596467256546,0.940032124519348,0.0182663984596729,-0.832330346107483,0.551281571388245,-0.0575750842690468,-0.794883787631989,0.604198336601257,-0.0557153075933456,-0.798786282539368,0.599011182785034,-0.0559121966362,-0.79863452911377,0.601769626140594,-0.00750078912824392,-0.834314048290253,0.551216304302216,-0.00898410473018885,-0.831666469573975,0.555204629898071,-0.00887052156031132,-0.796452283859253,0.599080324172974,-0.0822600200772285,-0.792134284973145,0.604912340641022,-0.0812672451138496,0.413551241159439,0.903082847595215,0.115830525755882,0.423113733530045,0.904950141906738,0.0451672486960888,0.341498076915741,0.938808560371399,0.0449169129133224,-0.802127361297607,0.597095847129822,0.00827200617641211,-0.798762500286102,0.601623475551605,-0.00527467206120491,
- -0.82853090763092,0.557145655155182,-0.0559039488434792,-0.796657025814056,0.604428648948669,-0.00195051939226687,0.31242299079895,0.794546008110046,0.520661592483521,-0.790414988994598,0.60513311624527,-0.0951733142137527,-0.710371673107147,0.703743577003479,-0.0108216274529696,-0.888100445270538,0.459548324346542,0.0096351495012641,-0.825732171535492,0.535227596759796,0.178038865327835,-0.899554669857025,0.435178816318512,-0.0376926548779011,-0.898493885993958,0.438843756914139,0.0111855352297425,-0.897903263568878,0.43855082988739,-0.0379847213625908,-0.89846408367157,0.438829481601715,0.0138214007019997,-0.892282962799072,0.451476544141769,0.000336067751049995,-0.891999542713165,0.451920986175537,0.0102090612053871,-0.891858875751495,0.452089726924896,0.0142390467226505,-0.859331667423248,0.511387765407562,0.0056452271528542,-0.859176516532898,0.511653184890747,0.00516944518312812,-0.86238956451416,0.506016731262207,0.015208724886179,0.582715749740601,0.811351299285889,0.0463835708796978,0.341528177261353,0.938747525215149,0.0459520779550076,0.422957003116608,0.904957354068756,0.0464713349938393,0.0551050007343292,-0.00742793641984463,-0.998452961444855,0.112097278237343,-0.0200205352157354,-0.993495523929596,0.976517736911774,-0.215330198407173,-0.00678205350413919,0.395860880613327,0.400469690561295,-0.826388597488403,0.983331680297852,0.00631197215989232,-0.181711241602898,0.544431447982788,-0.430100828409195,0.720144212245941,0.999220252037048,-0.0393393784761429,0.00336357578635216,0.784527182579041,-0.619776487350464,-0.0198597609996796,0.999955356121063,0.00791439320892096,0.00517265545204282,0.341387212276459,0.939019024372101,0.0412100590765476,0.58378803730011,0.81108683347702,0.0364652462303638,0.552147448062897,0.832911610603333,0.0373039282858372,0.784546613693237,-0.619791865348816,-0.0185628775507212,0.552067697048187,0.833134174346924,0.0332979150116444,0.584184408187866,0.810963749885559,0.0326549634337425,0.784593045711517,-0.619828581809998,-0.0150401387363672,0.99921840429306,-0.0393393076956272,0.00388033245690167,
- 0.828091382980347,-0.560442507266998,-0.0129948081448674,0.55195826292038,0.833387792110443,0.0284051354974508,0.784593045711517,-0.619828581809998,-0.0150401387363672,0.828091382980347,-0.560442507266998,-0.0129948081448674,0.545245826244354,0.833398163318634,-0.0903028026223183,0.544674873352051,0.833775579929352,-0.0902640596032143,0.335562288761139,0.939059138298035,-0.0746050998568535,0.826138377189636,-0.560737371444702,-0.05539795383811,0.544674873352051,0.833775579929352,-0.0902640596032143,0.545245826244354,0.833398163318634,-0.0903028026223183,0.335213452577591,0.938780069351196,-0.0795235186815262,0.542798936367035,0.83344441652298,-0.103632412850857,0.266571521759033,0.961189329624176,-0.0710967630147934,0.994410455226898,-0.0391500145196915,-0.0980574190616608,0.828181087970734,-0.557253003120422,-0.0598760508000851,0.825870215892792,-0.560712277889252,-0.059500727802515,0.544813930988312,0.833794593811035,-0.0892434492707253,0.825870215892792,-0.560712277889252,-0.059500727802515,0.828181087970734,-0.557253003120422,-0.0598760508000851,0.826437056064606,-0.557627141475677,-0.0778062045574188,0.992480099201202,-0.0390740185976028,-0.116002321243286,0.991124629974365,-0.0669544860720634,-0.114844366908073,0.5356325507164,0.831161856651306,-0.149223640561104,0.524056196212769,0.838894844055176,-0.147039189934731,0.260942965745926,0.960648417472839,-0.0952029749751091,0.815589666366577,-0.557123005390167,-0.156293675303459,0.52454274892807,0.83894670009613,-0.144994601607323,0.535977423191071,0.831301808357239,-0.147192031145096,0.344626843929291,0.822036683559418,0.453307896852493,0.573102533817291,0.776564836502075,0.261726081371307,0.54712587594986,-0.424222260713577,-0.721587717533112,0.52167272567749,0.83859246969223,-0.156909137964249,0.817221403121948,-0.557376801967621,-0.146562188863754,0.822393238544464,-0.549303591251373,-0.148105010390282,0.779362678527832,-0.545931696891785,-0.30749374628067,0.941078722476959,-0.072287306189537,-0.330371618270874,0.746358394622803,-0.594366908073425,-0.29946157336235,
- 0.791672885417938,-0.592459738254547,-0.149149805307388,0.820863246917725,-0.549140572547913,-0.156933516263962,0.815717399120331,-0.557144284248352,-0.155548453330994,0.976541221141815,-0.0695377811789513,-0.203793615102768,0.977341830730438,-0.0538692362606525,-0.204697862267494,0.793654799461365,-0.59191507101059,-0.140529945492744,0.822912931442261,-0.549350202083588,-0.145013391971588,0.794422507286072,-0.591686487197876,-0.137113243341446,0.978209614753723,-0.0539170652627945,-0.200497224926949,0.839177429676056,-0.5410515666008,0.0551768951117992,0.916028201580048,-0.0504897423088551,0.397923529148102,0.652475357055664,-0.741254985332489,-0.157533943653107,0.834367096424103,0.551100432872772,-0.0109564876183867,0.904640674591064,-0.424199968576431,-0.0409835129976273,0.863920390605927,-0.501882791519165,-0.0418954975903034,0.903004586696625,-0.429356306791306,0.0153640154749155,0.833769500255585,0.550165355205536,0.0463302172720432,0.834572315216064,0.548947930335999,0.0463155023753643,0.801885545253754,0.59703004360199,0.0231225229799747,0.834737718105316,0.550228655338287,0.0214802082628012,0.834364950656891,0.550792872905731,0.0215000510215759,0.829850137233734,0.553401589393616,-0.0713829845190048,0.799312353134155,0.596922338008881,-0.0691640079021454,0.832016050815582,0.550119400024414,-0.071539118885994,0.86384916305542,-0.500744581222534,-0.054950375109911,0.830510675907135,0.553293645381927,-0.0641732886433601,0.832460045814514,0.550344109535217,-0.0642773434519768,0.83061009645462,0.553274154663086,-0.0630443692207336,0.864802181720734,-0.500143051147461,-0.0444327481091022,0.87042760848999,-0.490237176418304,-0.0449810922145844,0.828587889671326,-0.505249738693237,-0.24117374420166,0.839895009994507,0.471551507711411,-0.268729537725449,0.797270596027374,0.545934677124023,-0.25751668214798,0.848247230052948,0.475889354944229,-0.232391923666,0.763682544231415,0.606352686882019,-0.221642524003983,0.804662525653839,0.548530220985413,-0.227228626608849,0.795395135879517,0.594918727874756,-0.115838035941124,
- 0.824511229991913,0.553397059440613,-0.118037641048431,0.783906102180481,0.610148847103119,-0.114932872354984,0.870583117008209,-0.41181805729866,-0.269241183996201,-0.267133295536041,0.625789821147919,-0.73282116651535,0.429272323846817,0.247598707675934,-0.868573665618896,0.0950653478503227,0.179123595356941,-0.979222774505615,0.16577735543251,0.101433590054512,-0.980932772159576,-0.251935213804245,0.516176104545593,-0.818590879440308,0.785144090652466,0.610140800476074,-0.106193169951439,-0.346696674823761,0.937966346740723,0.0045387577265501,0.796284437179565,0.595405757427216,-0.106879368424416,-0.346581399440765,0.937974512577057,0.00923236645758152,0.77665251493454,0.60945188999176,-0.159309267997742,-0.247468635439873,0.968856930732727,-0.00870048720389605,0.8018998503685,0.597455382347107,0.00197155750356615,-0.345051378011703,0.936964571475983,0.0551095046103001,-0.444085270166397,0.894212663173676,0.0563203692436218,-0.248137384653091,0.968629002571106,-0.0136256944388151,-0.542438626289368,0.839597702026367,0.0289162062108517,-0.34679964184761,0.937939345836639,5.88484181207605e-005,-0.443544119596481,0.894199192523956,0.0606332868337631,0.799069106578827,0.601238965988159,0.000515580119099468,0.801884889602661,0.59747850894928,0.000225729279918596,0.799339056015015,0.600822448730469,0.00833847559988499,0.834589660167694,0.550832509994507,0.00660409964621067,0.801932990550995,0.597357630729675,0.00821672566235065,-0.540338397026062,0.840168535709381,0.0463834181427956,-0.24838699400425,0.968537271022797,-0.0154755041003227,-0.670246124267578,0.738160192966461,0.0767449289560318,-0.345222800970078,0.937140226364136,0.0508866161108017,-0.579264581203461,0.813634216785431,0.0495169535279274,-0.444770663976669,0.894205093383789,0.050757672637701,-0.580132961273193,0.813511371612549,0.0405594035983086,-0.34567579627037,0.93754768371582,0.0388942658901215,-0.541068136692047,0.840004324913025,0.0404714494943619,0.782316982746124,0.601492047309875,-0.161825403571129,-0.300080388784409,0.742106854915619,0.599357426166534,
- 0.671112239360809,0.741215348243713,-0.0144326537847519,-0.964136958122253,-0.265273571014404,-0.00835507363080978,-0.0905727297067642,-0.0219343341886997,-0.995648264884949,-0.0406520888209343,-0.00818733777850866,-0.999139845371246,0.834417641162872,0.551128685474396,-0.00208170898258686,0.799025893211365,0.601296365261078,-0.000619681493844837,0.831970453262329,0.554816365242004,-0.00197652727365494,0.698996782302856,0.715025961399078,-0.0118913184851408,0.792620301246643,0.550822198390961,-0.261434555053711,0.77557635307312,0.59930694103241,-0.198273867368698,0.831998527050018,0.55477637052536,-0.00129179283976555,0.892302274703979,-0.450373589992523,-0.0309890955686569,0.834432542324066,0.551108419895172,-0.0014454034389928,0.83264034986496,-0.548586785793304,-0.0759123861789703,0.889963507652283,-0.449595302343369,-0.076349176466465,0.830011785030365,0.556515336036682,-0.0370317734777927,0.873520612716675,0.486777067184448,0.00315066240727901,0.875001728534698,0.484057426452637,0.00776855647563934,0.878847002983093,0.476677000522614,0.0201734956353903,0.894094824790955,0.447754204273224,0.0105212153866887,0.894313514232636,0.447441011667252,1.79074704647064e-005,0.893997550010681,0.447849780321121,0.0141055043786764,0.898347079753876,0.439144521951675,0.0111631751060486,0.898317039012909,0.439130127429962,0.0138308703899384,0.897755563259125,0.438850909471512,-0.0380107127130032,0.832740664482117,0.553182244300842,0.0230780392885208,0.839244604110718,0.543745458126068,0.00307090394198895,0.853052794933319,0.519878149032593,-0.0450288206338882,0.657608926296234,-0.382789134979248,-0.648862838745117,0.772694408893585,0.479473203420639,0.415991604328156,0.983465194702148,0.180421590805054,-0.0156270675361156,-0.394997835159302,-0.297642141580582,0.869129419326782,-0.931072235107422,-0.0102028697729111,-0.364692240953445,-0.268339157104492,0.234613955020905,-0.9343181848526,-0.541609048843384,0.839860081672668,0.0359850861132145,-0.781684815883636,-0.623642325401306,0.0062547423876822,-0.580519080162048,0.813432157039642,0.0364112704992294,
- -0.781440436840057,-0.62384033203125,-0.0131944110617042,-0.999129056930542,0.0393357910215855,0.0139230657368898,-0.999895334243774,-0.00777713442221284,0.0121992770582438,-0.781614363193512,-0.62315821647644,0.027439484372735,-0.542919993400574,0.839421093463898,0.0247019827365875,-0.833061873912811,-0.552379786968231,0.0297413859516382,-0.998532116413116,0.0393122881650925,0.0372582077980042,-0.781668722629547,-0.623319327831268,0.0216122176498175,-0.833371758460999,-0.552176773548126,0.0243395324796438,-0.670387089252472,0.737367868423462,0.0828839018940926,-0.809633076190948,-0.550107598304749,0.204636052250862,-0.540022194385529,0.840229213237762,0.0488974303007126,-0.996479868888855,0.0392314903438091,0.0740867480635643,-0.828833997249603,-0.55350524187088,0.0816465020179749,-0.996391892433167,0.0415587536990643,0.0740005895495415,-0.611892282962799,0.0337263457477093,0.790221869945526,-0.404623746871948,0.32022687792778,0.856582939624786,-0.75111198425293,-0.618955194950104,0.22961987555027,-0.961570024490356,0.0463803634047508,0.27061402797699,-0.782611489295959,-0.540170609951019,0.309410840272903,-0.753515303134918,-0.581172943115234,0.307331591844559,-0.778940141201019,-0.591202139854431,0.209122806787491,-0.973573446273804,0.0536615289747715,0.221980437636375,-0.973885297775269,0.0453487299382687,0.222465574741364,-0.80112099647522,-0.547319173812866,0.242171376943588,-0.670679569244385,0.731591820716858,0.122320733964443,-0.792434275150299,-0.560400247573853,0.2408307492733,-0.79185688495636,-0.560298800468445,0.242956608533859,-0.771871328353882,-0.588730871677399,0.240022122859955,-0.800626039505005,-0.547145009040833,0.244193226099014,-0.499624699354172,0.443991035223007,0.743805825710297,-0.858125329017639,0.0472982451319695,0.51125705242157,-0.83293479681015,-0.538045704364777,-0.129331067204475,-0.972519218921661,0.0536034218966961,0.226568251848221,-0.777720928192139,-0.590799808502197,0.214722573757172,-0.798365712165833,-0.561314761638641,0.218031942844391,-0.86798757314682,0.427657067775726,-0.252402633428574,
- -0.846770644187927,0.452994227409363,-0.278883129358292,-0.911392569541931,-0.221606478095055,0.346776783466339,-0.782440423965454,0.550388097763062,0.291307628154755,-0.744421362876892,0.610049903392792,0.271433144807816,-0.774419605731964,0.563800394535065,0.287060052156448,-0.734004318714142,0.612271130084991,0.293873727321625,-0.773609757423401,0.549972951412201,0.314734399318695,-0.736642897129059,0.608429372310638,0.295247286558151,-0.785219252109528,0.550448894500732,0.28361377120018,-0.748154819011688,0.603628635406494,0.275493890047073,-0.74435430765152,0.608696937561035,0.274635642766953,-0.740109205245972,0.600212812423706,0.303287029266357,-0.775434494018555,0.550084710121155,0.310013234615326,-0.767209112644196,0.562330722808838,0.308503478765488,-0.706685483455658,0.584078788757324,0.399308979511261,-0.736037611961365,0.551547706127167,0.392484068870544,-0.911338090896606,0.266057819128037,0.314127743244171,0.267217397689819,0.948374807834625,-0.170821651816368,-0.728378474712372,0.613281905651093,0.305532515048981,-0.731896817684174,0.608131170272827,0.307414442300797,0.330721884965897,0.942933082580566,-0.0387329682707787,-0.744583189487457,0.608700454235077,0.274006605148315,-0.748336672782898,0.603702962398529,0.274836301803589,-0.744567692279816,0.608700335025787,0.274049282073975,0.313072144985199,0.944004774093628,-0.104119896888733,0.299872398376465,0.94879537820816,-0.0993170887231827,0.775734841823578,-0.325570464134216,0.540591597557068,0.322911351919174,0.94395524263382,-0.0683876350522041,-0.694253623485565,0.481039017438889,-0.535362899303436,-0.389634042978287,0.0758115127682686,-0.917844176292419,-0.384454429149628,0.0130919963121414,-0.923051178455353,0.366614282131195,0.131964683532715,0.920966506004334,0.12568898499012,0.797118902206421,-0.59059602022171,0.711342930793762,-0.256653726100922,0.654308795928955,0.450278639793396,0.80137175321579,-0.393767118453979,0.831473171710968,-0.546875774860382,-0.0978740006685257,0.966839969158173,-0.049344390630722,0.25057065486908,0.600641787052155,-0.745653092861176,-0.288497895002365,
- 0.772106766700745,-0.55980396270752,-0.300783634185791,0.918642163276672,-0.0546532608568668,-0.391292244195938,0.918574750423431,-0.0567898899316788,-0.39114648103714,0.540484130382538,0.82856011390686,-0.146167919039726,0.533883333206177,0.833213210105896,-0.1439598351717,0.321398288011551,0.944048643112183,-0.0739951133728027,0.792908489704132,-0.548723876476288,-0.264949411153793,0.533883333206177,0.833213210105896,-0.1439598351717,0.540484130382538,0.82856011390686,-0.146167919039726,0.523824095726013,0.834260821342468,-0.172096505761147,0.303454220294952,0.948473513126373,-0.0911795273423195,0.315472453832626,0.944111108779907,-0.0955582857131958,0.482891947031021,0.737198173999786,0.47260382771492,0.629422068595886,0.727111160755157,0.274111837148666,0.260158181190491,-0.38300621509552,-0.886354327201843,0.491939246654511,0.833068311214447,-0.252968311309814,0.48366916179657,0.838898062705994,-0.249628335237503,0.271341592073441,0.948744177818298,-0.162043869495392,0.917644500732422,-0.0547237880527973,-0.39361646771431,0.769090414047241,-0.559799551963806,-0.308422803878784,0.769710183143616,-0.558775544166565,-0.308732986450195,0.481416255235672,0.838707983493805,-0.254572778940201,0.771919310092926,-0.558911263942719,-0.302917003631592,0.771381258964539,-0.559806346893311,-0.30263477563858,0.768113017082214,-0.55866539478302,-0.312882602214813,0.484478354454041,0.838960587978363,-0.247842773795128,0.492687314748764,0.83316308259964,-0.251193940639496,0.535740435123444,0.832929909229279,-0.138599738478661,0.792088150978088,-0.548821032047272,-0.267192453145981,0.785340368747711,-0.559266984462738,-0.265445172786713,0.776138603687286,-0.559113502502441,-0.291549295186996,0.946029365062714,-0.0571669563651085,-0.318999081850052,0.946366965770721,-0.0523213520646095,-0.318829476833344,0.952184200286865,-0.0572088994085789,-0.300120681524277,0.785340368747711,-0.559266984462738,-0.265445172786713,0.792088150978088,-0.548821032047272,-0.267192453145981,-0.463301599025726,0.419495314359665,0.780624985694885,-0.476787328720093,0.450212597846985,0.754971921443939,
- -0.14119128882885,-0.15519617497921,0.977741897106171,-0.0605740509927273,0.4698666036129,0.880656659603119,-0.0591108538210392,0.51128077507019,0.857378542423248,-0.0606998912990093,0.466060787439346,0.882668018341064,-0.035442341119051,0.0392780639231205,0.998599588871002,0.513099193572998,0.360056132078171,0.77915894985199,-0.102529302239418,-0.00182511378079653,0.994728326797485,-0.038889404386282,0.511788845062256,0.858230590820313,-0.0406017638742924,0.468806207180023,0.882367432117462,-0.0390432476997375,0.508071780204773,0.860429346561432,-0.699366807937622,0.399380564689636,0.592774212360382,-0.70831710100174,0.382199972867966,0.593472957611084,-0.099799357354641,0.929807126522064,0.354258209466934,-0.0378249883651733,0.511809825897217,0.858265697956085,-0.0380281880497932,0.508036315441132,0.860495865345001,0.0395259596407413,0.931432604789734,-0.361761033535004,-0.101091034710407,0.925770580768585,-0.364320456981659,-0.77052503824234,-0.226072147488594,-0.595972120761871,0.761603891849518,0.331912219524384,0.556591272354126,-0.720409035682678,0.389722943305969,0.573695778846741,-0.09059177339077,0.989308834075928,-0.114285580813885,0.195695787668228,0.91304075717926,-0.357854664325714,0.0409322641789913,0.925616979598999,-0.376241832971573,0.0401608943939209,0.931416273117065,-0.361733138561249,-0.0425364784896374,0.508189916610718,0.860193967819214,0.479554533958435,0.745449244976044,-0.46296101808548,0.253565728664398,0.902350544929504,-0.348522812128067,-0.0893214493989944,0.985640823841095,-0.143296912312508,-0.038367971777916,0.65454626083374,-0.755047738552094,0.946482717990875,-0.116339139640331,-0.301057577133179,-0.591457962989807,0.643530607223511,-0.485845655202866,0.0395969599485397,0.925626933574677,-0.376360028982162,0.0474455133080482,0.828086674213409,-0.558588743209839,0.0389282368123531,0.931447625160217,-0.361787140369415,0.0450749918818474,0.82814621925354,-0.558696746826172,0.0359596088528633,0.925645768642426,-0.376678645610809,0.0449904538691044,0.829337537288666,-0.55693382024765,
- 0.691939055919647,0.680281281471252,-0.241738855838776,0.562556982040405,0.692248821258545,-0.45201900601387,-0.739781677722931,-0.245213016867638,-0.626573026180267,0.0414368733763695,-0.464223027229309,-0.884748518466949,0.0465038865804672,0.828110933303833,-0.558632016181946,0.0464236475527287,0.829339861869812,-0.556812584400177,0.0435028187930584,0.828183114528656,-0.558766663074493,0.0493591502308846,-0.46377819776535,-0.884575426578522,0.0493728779256344,-0.463459640741348,-0.884741485118866,-0.165144562721252,-0.465433597564697,-0.869539558887482,0.0354229994118214,-0.664801716804504,-0.746179521083832,-0.453977406024933,-0.0491801910102367,-0.889654934406281,0.0617097914218903,-0.0461318492889404,-0.997027516365051,0.0454810298979282,-0.463216572999954,-0.885077297687531,0.0454379878938198,-0.464002072811127,-0.884668111801147,0.0501051768660545,-0.463504582643509,-0.884676694869995,0.0643907859921455,-0.0460817292332649,-0.996860265731812,0.0644546449184418,-0.0428046695888042,-0.997002243995667,0.417078942060471,-0.452786535024643,-0.788054227828979,0.634261012077332,-0.0652882978320122,-0.770357310771942,0.0255177654325962,-0.810189008712769,-0.585613071918488,0.808066964149475,0.430285096168518,0.402346342802048,0.802158415317535,0.430602431297302,0.413670718669891,0.802965819835663,0.430563598871231,0.412141740322113,0.797667801380157,0.44183748960495,0.410494357347488,0.802690804004669,0.441761791706085,0.400667011737823,0.7989661693573,0.441823184490204,0.407977193593979,0.798825979232788,0.438976347446442,0.411311268806458,0.800252139568329,0.438994705677032,0.408509612083435,0.819994449615479,0.438775628805161,0.36753922700882,0.876167118549347,-0.377328634262085,-0.299923717975616,0.476014584302902,0.487631976604462,0.731864154338837,0.887487649917603,0.180996596813202,0.423799484968185,0.737291693687439,0.5517937541008,0.38977512717247,0.749220550060272,0.544270038604736,0.377410471439362,0.781882226467133,0.521694481372833,0.341313779354095,0.587907075881958,0.760709643363953,0.27511140704155,
- 0.83279287815094,0.538235425949097,0.129455596208572,0.772422790527344,0.61082911491394,0.173927485942841,0.762346565723419,0.424655914306641,-0.48835963010788,0.382625490427017,0.902788996696472,0.196391835808754,0.408030420541763,0.897445797920227,0.167637258768082,0.266289263963699,0.954153418540955,0.136679440736771,0.317984521389008,-0.0237766802310944,-0.947797775268555,-0.319937825202942,0.0172862112522125,0.947280883789063,0.739577293395996,0.552522301673889,0.384375661611557,0.702886879444122,0.611300528049469,0.363678157329559,0.739908576011658,0.551947891712189,0.38456329703331,0.738689243793488,-0.552969515323639,0.385438561439514,0.742877840995789,0.552373945713043,0.37817394733429,0.743033051490784,0.552108883857727,0.378256171941757,0.749308943748474,0.551999509334564,0.365831464529037,0.746253609657288,-0.552157938480377,0.371789276599884,0.789482653141022,-0.471813887357712,0.392566919326782,0.770465075969696,-0.465863585472107,0.435149013996124,0.768238663673401,-0.470778048038483,0.433794260025024,0.718897223472595,0.552838206291199,0.421374768018723,0.679770112037659,0.558077156543732,0.475880831480026,0.683570742607117,0.551310658454895,0.478317499160767,0.733617722988129,-0.471655964851379,0.489229798316956,0.730548977851868,0.613991141319275,0.298853188753128,0.772207736968994,0.549631059169769,0.318749070167542,0.746822476387024,0.590135455131531,0.30658832192421,0.650643825531006,0.606379985809326,0.457127898931503,0.683570742607117,0.551310658454895,0.478317499160767,0.679770112037659,0.558077156543732,0.475880831480026,0.670548737049103,0.593256413936615,0.445433795452118,0.694737493991852,0.552042901515961,0.461073130369186,0.66295063495636,0.605345129966736,0.44051530957222,0.719556570053101,0.613249659538269,0.325827032327652,0.734996914863586,0.591733515262604,0.331105679273605,-0.391690641641617,0.912783265113831,-0.115780740976334,0.663192629814148,0.605321943759918,0.440182983875275,-0.338462680578232,0.916284382343292,-0.214163362979889,0.670785903930664,0.593268513679504,0.445060402154922,
- 0.796436071395874,0.60054886341095,0.0709277167916298,-0.442637294530869,0.896643042564392,-0.0101717850193381,-0.625321447849274,0.779936075210571,-0.0259407125413418,0.642067134380341,0.561545729637146,0.521935045719147,0.617979049682617,0.607842862606049,0.498627215623856,0.642962574958801,0.559706151485443,0.522808015346527,0.632638037204742,-0.473418056964874,0.612898409366608,0.630167484283447,0.562071800231934,0.535690426826477,0.631222426891327,0.55980658531189,0.536819219589233,0.631671845912933,0.562016010284424,0.533974468708038,0.633267879486084,-0.473526030778885,0.612164080142975,0.627752661705017,-0.48599100112915,0.608061969280243,0.628447234630585,-0.502622008323669,0.593654096126556,0.602664947509766,-0.562103033065796,0.566423118114471,0.582361578941345,0.562357068061829,0.587034523487091,0.590550482273102,0.551045775413513,0.589575052261353,0.584598481655121,0.562404215335846,0.584761679172516,0.622557461261749,-0.561314344406128,0.545296728610992,0.5443035364151,0.61435204744339,0.571231424808502,0.571481585502625,0.562049210071564,0.597920954227448,0.576331973075867,0.551936686038971,0.602666974067688,0.623037576675415,0.607730329036713,0.492430865764618,0.647161841392517,0.561259806156158,0.515915751457214,0.620121002197266,0.612965285778046,0.489615738391876,0.564089417457581,0.561767280101776,0.605161607265472,0.536713123321533,0.614471316337585,0.578242242336273,0.537429571151733,0.613178014755249,0.578949332237244,0.618762075901031,0.613046526908875,0.491230577230453,-0.204085364937782,0.951248705387115,-0.231247127056122,0.621710777282715,0.607763648033142,0.494063854217529,-0.321243196725845,0.915055513381958,-0.243877604603767,0.655453443527222,0.606009304523468,0.450703561306,-0.242333769798279,0.951620101928711,-0.188927739858627,-0.236229434609413,0.950565814971924,-0.201544731855392,0.535511672496796,0.613080024719238,0.580827116966248,0.534715890884399,0.614491701126099,0.580067992210388,-0.22347155213356,0.95106840133667,-0.213376060128212,-0.221907392144203,0.951806008815765,-0.211713209748268,
- 0.53711986541748,0.613162517547607,0.579253077507019,0.211749196052551,-0.271040499210358,-0.938988447189331,-0.479622066020966,0.875891625881195,0.0526922643184662,-0.265594303607941,0.376626551151276,0.8874751329422,-0.321243196725845,0.915055513381958,-0.243877604603767,-0.242333769798279,0.951620101928711,-0.188927739858627,-0.449736326932907,0.828823447227478,-0.332849740982056,-0.221978604793549,0.951108336448669,-0.214752346277237,-0.393321543931961,0.827232420444489,-0.40122926235199,-0.220552816987038,0.951786994934082,-0.213209122419357,-0.631089627742767,0.769948840141296,-0.0943645089864731,-0.607515037059784,0.763740539550781,0.218234091997147,0.178826302289963,-0.288757830858231,-0.940553069114685,-0.396371990442276,0.827478528022766,-0.397704094648361,-0.217693626880646,0.951200902462006,-0.218692719936371,-0.379161953926086,0.843494653701782,-0.380464196205139,-0.951539516448975,-0.0882848724722862,-0.294581830501556,-0.626688182353973,-0.549368917942047,-0.552680432796478,-0.518263578414917,-0.626154124736786,-0.582523763179779,-0.457358449697495,0.828526079654694,-0.323059946298599,-0.46299746632576,0.823891162872314,-0.326858967542648,-0.32660847902298,0.915550947189331,-0.234719902276993,-0.536460399627686,0.784196615219116,-0.311843067407608,-0.341292768716812,0.916384100914001,-0.209188133478165,-0.487817078828812,0.824609339237213,-0.28645059466362,-0.696756422519684,-0.0606852546334267,-0.71473616361618,-0.550785779953003,-0.595697104930878,-0.584619522094727,-0.575987279415131,-0.545747637748718,-0.608603417873383,-0.550180673599243,-0.595688700675964,-0.585197567939758,-0.695680677890778,-0.0605744086205959,-0.715792715549469,-0.695633351802826,-0.0613616891205311,-0.715771615505219,-0.568697214126587,-0.544999420642853,-0.616083681583405,-0.543125092983246,-0.595560669898987,-0.591880619525909,-0.562756359577179,-0.55732399225235,-0.610487818717957,-0.59854656457901,-0.062870129942894,-0.79861718416214,-0.461910545825958,-0.546011447906494,-0.698934972286224,-0.440811693668365,-0.588062167167664,-0.678135633468628,
- -0.567920565605164,-0.557648062705994,-0.605388283729553,-0.382920145988464,0.843349814414978,-0.377005726099014,-0.573637723922729,-0.545512318611145,-0.611028790473938,-0.380166202783585,0.843458116054535,-0.379541903734207,-0.584818124771118,-0.558511435985565,-0.588262557983398,-0.397231787443161,0.827544808387756,-0.396707117557526,-0.753245055675507,-0.053159024566412,-0.655588269233704,-0.647257328033447,-0.55878871679306,-0.518471956253052,-0.753249168395996,-0.0598272234201431,-0.655008733272552,-0.631097793579102,-0.610957264900208,-0.477961272001266,-0.408713132143021,0.828295350074768,-0.383249789476395,-0.659075081348419,-0.558255791664124,-0.503954827785492,-0.66127735376358,-0.558133363723755,-0.501197934150696,-0.779684007167816,-0.0515883937478065,-0.62404465675354,-0.632872104644775,-0.611064732074738,-0.475471168756485,-0.451622813940048,0.828762054443359,-0.330439865589142,-0.660864949226379,-0.612009525299072,-0.434398293495178,-0.458026647567749,0.823534488677979,-0.334668189287186,-0.647544682025909,-0.611741960048676,-0.454376041889191,-0.83141815662384,-0.0479639694094658,-0.553573310375214,-0.831153035163879,-0.0523436367511749,-0.553574502468109,-0.881383895874023,-0.0484823919832706,-0.46990630030632,-0.71059376001358,-0.609514057636261,-0.351495623588562,-0.88127863407135,-0.0527292191982269,-0.469646245241165,-0.723679304122925,-0.568540155887604,-0.391216605901718,-0.486425936222076,0.824618279933929,-0.288781076669693,-0.697082102298737,-0.610807776451111,-0.375486850738525,-0.722367107868195,-0.568686604499817,-0.393422603607178,-0.695957660675049,-0.610892772674561,-0.377429395914078,-0.870176672935486,-0.0505697913467884,-0.490137994289398,-0.487817078828812,0.824609339237213,-0.28645059466362,-0.729280710220337,-0.567865788936615,-0.381678104400635,-0.536460399627686,0.784196615219116,-0.311843067407608,-0.820395112037659,-0.391511291265488,-0.416738331317902,-0.81672477722168,-0.542610287666321,-0.196302592754364,-0.692123651504517,-0.0740760266780853,-0.717967748641968,-0.73234498500824,-0.567462265491486,-0.376374274492264,
- -0.732944190502167,-0.564367413520813,-0.379845082759857,-0.22042253613472,0.582293510437012,-0.782526850700378,-0.863264799118042,0.440619051456451,-0.246228948235512,-0.861667335033417,0.440338402986526,-0.252253353595734,-0.860680401325226,0.440159499645233,-0.255907893180847,-0.861135125160217,0.441514849662781,-0.252013742923737,-0.862851083278656,0.441456466913223,-0.246179148554802,-0.86046028137207,0.441533237695694,-0.254276901483536,-0.862273812294006,0.438992440700531,-0.252526700496674,-0.861689209938049,0.438980042934418,-0.254535675048828,-0.875088214874268,0.438718438148499,-0.204320445656776,-0.800976037979126,-0.385731667280197,0.457873791456223,-0.655651569366455,0.465978741645813,-0.594125390052795,-0.951426327228546,0.18134531378746,-0.248800784349442,-0.799914002418518,0.5500368475914,-0.239993840456009,-0.807294189929962,0.544020891189575,-0.228729978203774,-0.833742439746857,0.520074248313904,-0.18546250462532,-0.883184611797333,-0.456798791885376,-0.106394842267036,-0.817923367023468,0.558356106281281,-0.13870869576931,-0.83154308795929,-0.547210276126862,-0.0953791216015816,-0.819414377212524,0.534324288368225,-0.207503333687782,-0.806999325752258,0.553525984287262,-0.205817878246307,-0.873208940029144,-0.458120703697205,-0.166227161884308,-0.927631080150604,0.241374254226685,-0.285024702548981,-0.775595247745514,0.537084460258484,-0.331650912761688,-0.739267528057098,0.583563983440399,-0.336060613393784,-0.821138620376587,0.53487092256546,-0.199109256267548,-0.775176405906677,0.602300047874451,-0.190620467066765,-0.8086878657341,0.554325759410858,-0.196842163801193,-0.765646398067474,0.565497279167175,0.306591659784317,0.396928817033768,0.535034775733948,-0.745778381824493,-0.520189642906189,0.845756709575653,-0.118736356496811,-0.788206160068512,0.60331404209137,-0.121421620249748,-0.785898685455322,0.606352925300598,-0.12124115973711,-0.833674550056458,0.537974953651428,-0.124778777360916,0.330210775136948,0.943888127803802,0.00600350042805076,0.457005172967911,0.889201402664185,0.0216164663434029,
- -0.787778437137604,0.606852352619171,-0.105524852871895,-0.785898685455322,0.606352925300598,-0.12124115973711,-0.788206160068512,0.60331404209137,-0.121421620249748,0.330179482698441,0.943890154361725,0.00728270737454295,0.330113708972931,0.943889260292053,0.00990096013993025,0.559095144271851,0.827998161315918,0.0427980162203312,0.456164628267288,0.889464318752289,0.0276937633752823,0.625434458255768,0.773975133895874,0.0989657863974571,0.450951248407364,0.890328347682953,0.0629167184233665,0.553552687168121,0.828572690486908,0.0839454084634781,-0.825205087661743,0.550840377807617,-0.124946944415569,-0.788285195827484,0.603359639644623,-0.120680093765259,-0.833522737026215,0.537951231002808,-0.125890091061592,-0.858520030975342,-0.444732189178467,-0.255258172750473,-0.807426273822784,0.543977916240692,-0.228365689516068,-0.814358174800873,0.532616853713989,-0.23052117228508,-0.828103721141815,0.551579058170319,-0.100024811923504,-0.89377635717392,-0.437859028577805,-0.097176656126976,-0.888746857643127,-0.448126524686813,-0.0964969545602798,-0.880897998809814,-0.472737818956375,-0.0231883320957422,-0.830458223819733,0.551967859268188,-0.0753048658370972,-0.869320571422577,-0.493784159421921,-0.0214232616126537,-0.826064348220825,0.558576762676239,-0.0748983472585678,-0.830500364303589,0.551972150802612,-0.0748059675097466,-0.88083827495575,-0.472765028476715,-0.0248459056019783,-0.82664567232132,0.558969855308533,-0.0648824572563171,-0.792863726615906,0.605774700641632,-0.0663636326789856,-0.831313908100128,0.552030384540558,-0.064649797976017,-0.826465666294098,-0.562864124774933,-0.011766005307436,-0.825919985771179,0.558479189872742,0.0771824344992638,-0.864400386810303,-0.502774178981781,-0.0054885339923203,-0.840044319629669,0.529693067073822,0.117263935506344,-0.822780311107636,0.556356132030487,0.116191491484642,-0.81942743062973,-0.568156480789185,0.0757437646389008,-0.788030326366425,0.611357450485229,0.0724596604704857,-0.826453447341919,0.558839857578278,0.0683576166629791,-0.839630663394928,0.539036393165588,0.0667845755815506,
- -0.827810168266296,0.55975729227066,0.0374454483389854,-0.787388026714325,0.615202069282532,0.0393277481198311,-0.795018136501312,0.6053307056427,0.0389990918338299,-0.78727400302887,0.615553379058838,0.0359684154391289,0.329769402742386,0.943796396255493,0.0223728232085705,-0.795082569122314,0.605442702770233,0.0358199253678322,0.329514563083649,0.943654954433441,0.0305858440697193,-0.787328779697418,0.615388870239258,0.0375501364469528,0.316308289766312,0.948150098323822,0.030991081148386,0.540458619594574,-0.342405736446381,0.768545866012573,0.302044719457626,0.912990570068359,-0.274257481098175,-0.458129197359085,0.460766613483429,-0.760139465332031,0.316310852766037,0.948188126087189,0.029779864475131,0.551363110542297,0.833970189094543,0.0221920385956764,0.32955202460289,0.943678855895996,0.0294222813099623,0.496206820011139,0.731347024440765,0.467878639698029,0.279019981622696,0.824763894081116,0.491845935583115,0.816546082496643,-0.542929708957672,-0.196162670850754,0.551189422607422,0.834348976612091,0.00721879489719868,0.563072741031647,0.826373040676117,0.0075282035395503,0.330312132835388,0.94387024641037,0.00169720826670527,0.810990154743195,0.00921239983290434,-0.58498740196228,0.827300786972046,-0.54861044883728,-0.12083013355732,0.778941929340363,-0.626785278320313,-0.0197412688285112,0.551176190376282,0.834364354610443,0.00639213994145393,0.794492661952972,-0.60683935880661,0.0229675807058811,0.563154518604279,0.826324284076691,0.00672998651862144,0.625421404838562,0.773959040641785,0.0991742610931396,0.553472995758057,0.82857072353363,0.084488533437252,0.781216979026794,-0.603487133979797,0.159697666764259,0.999874353408813,0.000249611708568409,-0.015850342810154,0.80700010061264,-0.587793827056885,-0.0570036992430687,0.832743525505066,-0.550955891609192,-0.0546424649655819,0.806989014148712,-0.588238477706909,-0.0523854456841946,0.999931216239929,0.000184762189746834,-0.011732398532331,0.99982613325119,0.0153269171714783,-0.0106266969814897,0.825454771518707,-0.560658693313599,-0.0654690712690353,
- 0.551052629947662,0.831372261047363,0.0718416422605515,0.832159698009491,-0.550758540630341,-0.0646155998110771,0.833127319812775,-0.55106794834137,-0.0471478477120399,0.806972324848175,-0.588524043560028,-0.0493477024137974,0.826602876186371,-0.560758888721466,-0.0477199554443359,0.996968746185303,0.018673887476325,0.0755292400717735,0.82727187871933,-0.556444764137268,0.0773994848132133,0.799717307090759,-0.595508277416229,0.0763045027852058,0.793126165866852,-0.607085049152374,0.048975583165884,0.551065385341644,0.83446204662323,0.000197729095816612,0.828258872032166,-0.558190107345581,0.0491041392087936,0.999192178249359,0.0171658284962177,0.0363352000713348,0.793344676494598,-0.607075810432434,0.0454229973256588,0.828338444232941,-0.558384537696838,0.0454114899039268,0.792674243450165,-0.607081234455109,0.0558565109968185,0.998765230178833,0.0175582394003868,0.0464732125401497,0.997800588607788,0.0482147820293903,0.0454912111163139,0.785991907119751,-0.605421006679535,0.125228688120842,0.990419626235962,0.0498336479067802,0.128785237669945,0.990326821804047,0.0518540553748608,0.128700882196426,0.975300550460815,0.0529941096901894,0.214430555701256,0.779641151428223,-0.602782964706421,0.169742003083229,0.975219786167145,0.0545149780809879,0.214416742324829,0.804557502269745,-0.569450438022614,0.168562978506088,0.780565500259399,-0.603199183940887,0.163915276527405,0.978437304496765,0.0537827014923096,0.199419230222702,0.780155956745148,-0.603015899658203,0.166519284248352,0.803978562355042,-0.569565176963806,0.170920938253403,0.624224901199341,0.772478342056274,0.116707012057304,0.884717583656311,-0.387373715639114,0.259261399507523,0.830961644649506,-0.555905699729919,0.0217202510684729,0.767955541610718,0.023174999281764,0.640083849430084,0.837069630622864,-0.518330335617065,-0.175066128373146,0.957847833633423,-0.0977198481559753,0.270145118236542,0.449612259864807,0.55639523267746,0.698765456676483,0.0904122963547707,0.456681877374649,0.885023891925812,0.0888185352087021,0.456582725048065,0.885236382484436,
- 0.0979799404740334,0.45713672041893,0.883983075618744,0.0885543674230576,0.449764162302017,0.888746559619904,0.0913145765662193,0.449775665998459,0.888461291790009,0.0918379500508308,0.44977742433548,0.888406455516815,0.0927029997110367,0.439011186361313,0.893686354160309,0.0471585690975189,0.438763082027435,0.897364437580109,0.0919637307524681,0.439014464616776,0.893761157989502,0.0474889613687992,0.436279624700546,0.898557126522064,0.0901287645101547,0.458837926387787,0.883937001228333,0.268243104219437,0.541373133659363,0.796844244003296,0.138499066233635,0.580507874488831,0.802389442920685,0.113176748156548,0.557290554046631,0.822568118572235,0.0807551220059395,0.526525974273682,0.846314966678619,0.213188394904137,0.574147999286652,0.790509223937988,0.0937645509839058,0.430666238069534,0.897627353668213,0.554605603218079,0.831996321678162,0.0139639545232058,0.103166557848454,0.582340359687805,0.806372344493866,0.105083860456944,0.553520858287811,0.826179146766663,0.10481334477663,0.557749569416046,0.823364794254303,-0.113660648465157,0.58858197927475,0.800407707691193,-0.116823777556419,0.577231884002686,0.808180451393127,0.151931643486023,0.977350294589996,-0.147319942712784,0.0179100055247545,0.598175525665283,0.801164925098419,0.0201021358370781,0.552006185054779,0.833597719669342,0.0186118800193071,0.583730041980743,0.81173449754715,0.0765482634305954,0.981950879096985,-0.172953262925148,0.0741900205612183,0.919789850711823,-0.385334461927414,0.0365845859050751,0.598694562911987,0.800141453742981,0.18620178103447,0.604218900203705,0.774756968021393,0.192101925611496,0.550852477550507,0.81219357252121,0.187283098697662,0.595141768455505,0.781493127346039,0.18620178103447,0.604218900203705,0.774756968021393,0.187283098697662,0.595141768455505,0.781493127346039,-0.0416188687086105,0.931003451347351,-0.362629979848862,0.222468912601471,0.54888778924942,0.805747985839844,0.214884921908379,0.605125725269318,0.766581594944,0.22172212600708,0.554916858673096,0.801814615726471,0.273282200098038,0.60529625415802,0.747618496417999,
- 0.284427016973495,0.562053084373474,0.776657998561859,0.286000370979309,0.555548965930939,0.780749082565308,0.0776341110467911,0.788001358509064,-0.610759377479553,0.0846609547734261,0.91813051700592,-0.387129098176956,0.0861641466617584,0.981712520122528,-0.169753760099411,0.294237285852432,0.562422096729279,0.772726237773895,0.281479060649872,0.60513573884964,0.744701504707336,0.2769495844841,0.619319319725037,0.734671771526337,-0.181320622563362,0.927028179168701,-0.32824033498764,0.284327298402786,0.620024740695953,0.731250524520874,0.28949436545372,0.604933857917786,0.741787075996399,0.327264815568924,0.563205003738403,0.758747577667236,0.306097388267517,0.621874153614044,0.720816850662231,0.327172070741653,0.563479781150818,0.758583545684814,-0.442531228065491,0.314329713582993,0.839858889579773,0.393359065055847,0.0339137241244316,0.918759226799011,0.490354239940643,-0.00924417749047279,0.871474266052246,0.199722915887833,0.973036646842957,0.115371406078339,0.941290080547333,0.209141224622726,-0.26501527428627,0.941521108150482,0.20765195786953,-0.26536500453949,-0.0291023962199688,0.914007008075714,-0.404653131961823,0.869480848312378,0.0211076587438583,-0.49351555109024,0.877514004707336,-0.351166546344757,-0.326575100421906,0.25947117805481,0.61749142408371,0.742549002170563,-0.146288320422173,0.929854214191437,-0.337595731019974,-0.120581045746803,0.956338465213776,-0.26622748374939,-0.862711846828461,0.41502246260643,0.288937002420425,-0.0291023962199688,0.914007008075714,-0.404653131961823,0.877514004707336,-0.351166546344757,-0.326575100421906,-0.120486445724964,0.956337034702301,-0.26627516746521,-0.1462691873312,0.929855525493622,-0.337600737810135,-0.207956403493881,0.834512710571289,-0.510237812995911,-0.328903824090958,0.73199474811554,-0.59666246175766,-0.163562521338463,0.955839693546295,-0.244167879223824,-0.276256293058395,0.831530213356018,-0.481912851333618,-0.22063884139061,0.8320432305336,-0.508942782878876,-0.219573065638542,0.834329783916473,-0.505649566650391,-0.162602037191391,0.928693115711212,-0.33330112695694,
- 0.392681121826172,0.383054375648499,-0.836104571819305,0.16482912003994,-0.0516937598586082,-0.984966576099396,-0.313835680484772,-0.732537925243378,-0.604065775871277,-0.0337711870670319,0.930656015872955,-0.364333510398865,-0.0836904719471931,0.832393825054169,-0.547828853130341,-0.084299735724926,0.83090078830719,-0.549997687339783,-0.0422722101211548,0.931029617786407,-0.362487077713013,-0.0755967944860458,0.784409463405609,-0.615619242191315,-0.0670409500598907,0.831813991069794,-0.550990998744965,-0.376399844884872,-0.0568957440555096,-0.924708604812622,0.179957836866379,0.53472775220871,-0.825639963150024,-0.656138181686401,-0.529078662395477,-0.538106381893158,-0.107670828700066,-0.570397555828094,-0.814281046390533,-0.0670409500598907,0.831813991069794,-0.550990998744965,-0.0755967944860458,0.784409463405609,-0.615619242191315,-0.632132291793823,0.595335423946381,-0.495968282222748,-0.0924780145287514,-0.321572244167328,-0.942358255386353,0.121859908103943,-0.54838615655899,-0.827298581600189,0.114723324775696,-0.549526751041412,-0.827562034130096,-0.0923456251621246,-0.39332902431488,-0.91474848985672,-0.421787649393082,-0.0659705698490143,-0.904291450977325,-0.336802333593369,-0.560012876987457,-0.756934523582459,-0.326783269643784,-0.588803470134735,-0.739272058010101,-0.431969225406647,-0.0564156919717789,-0.900122165679932,-0.435737580060959,-0.0563749670982361,-0.898306548595428,-0.330096185207367,-0.589031577110291,-0.737616658210754,-0.43505322933197,-0.0664022862911224,-0.897952914237976,-0.337451487779617,-0.589509904384613,-0.733896911144257,-0.347449064254761,-0.560323536396027,-0.751875460147858,-0.347831249237061,-0.559166967868805,-0.7525594830513,-0.486655354499817,-0.548097848892212,-0.680261194705963,-0.548678040504456,-0.0696026384830475,-0.833131432533264,-0.472719043493271,-0.590921878814697,-0.653718590736389,-0.322912633419037,0.731058657169342,-0.60106635093689,-0.348608464002609,-0.559144079685211,-0.752216875553131,-0.348214417695999,-0.560342907905579,-0.751506865024567,-0.341649532318115,-0.559334814548492,-0.755261659622192,
- -0.332821160554886,0.732586026191711,-0.593757390975952,-0.281866014003754,0.831077337265015,-0.479439407587051,-0.276592999696732,-0.559571146965027,-0.7812659740448,-0.352757632732391,-0.0524702966213226,-0.934242427349091,-0.352184534072876,-0.0635269582271576,-0.933772146701813,-0.207789391279221,0.834514379501343,-0.510303139686584,-0.253612995147705,-0.600682199001312,-0.758196115493774,-0.264656901359558,-0.559320032596588,-0.785568535327911,-0.335156738758087,-0.0523599088191986,-0.940706372261047,-0.265581965446472,-0.559342622756958,-0.785240113735199,-0.254662692546844,-0.600615859031677,-0.757896780967712,-0.242909982800484,-0.60131710767746,-0.761191606521606,-0.219573065638542,0.834329783916473,-0.505649566650391,-0.22063884139061,0.8320432305336,-0.508942782878876,-0.219858273863792,-0.602426946163177,-0.767296671867371,-0.084299735724926,0.83090078830719,-0.549997687339783,-0.0836904719471931,0.832393825054169,-0.547828853130341,-0.0733536034822464,0.832061886787415,-0.549811124801636,-0.132984191179276,-0.570970237255096,-0.810128509998322,-0.129822790622711,-0.603488028049469,-0.78673267364502,-0.132459968328476,-0.603529512882233,-0.786261081695557,-0.135804280638695,-0.571010828018188,-0.809631943702698,-0.157851681113243,-0.0552791133522987,-0.985914289951324,-0.227015376091003,-0.0513092763721943,-0.972538650035858,-0.213429182767868,-0.60267448425293,-0.768915772438049,-0.226874515414238,-0.0482556782662869,-0.972727835178375,-0.127145513892174,-0.0537996962666512,-0.990423977375031,-0.127171263098717,-0.0515925399959087,-0.990538120269775,-0.0988438352942467,-0.602678716182709,-0.791838526725769,0.331048488616943,-0.448205530643463,-0.830372631549835,0.545057475566864,-0.0652400404214859,-0.83585661649704,-0.0391529984772205,-0.810787081718445,-0.584030389785767,-0.0424549654126167,-0.460940003395081,-0.886415183544159,-0.043764628469944,-0.316909343004227,-0.947445690631866,-0.043451227247715,-0.0450985506176949,-0.998037159442902,-0.770718097686768,-0.338472127914429,-0.539842903614044,-0.138235464692116,-0.733456492424011,-0.665531814098358,
- -0.88627028465271,-0.166256919503212,-0.432300448417664,-0.04883748665452,-0.316949039697647,-0.947184324264526,-0.0485229082405567,-0.460600972175598,-0.886280059814453,-0.0485323294997215,-0.459154963493347,-0.887029588222504,-0.0213023219257593,0.828955590724945,-0.558908760547638,-0.0445997901260853,-0.45899111032486,-0.887320637702942,-0.0445662103593349,-0.460823953151703,-0.886371850967407,-0.0523536503314972,-0.459307223558426,-0.886733293533325,-0.0186674892902374,0.828906178474426,-0.559076130390167,-0.0187121536582708,0.828411459922791,-0.559807419776917,-0.115784883499146,0.657093286514282,-0.744864046573639,0.917407274246216,-0.121445566415787,-0.378965795040131,-0.642238140106201,0.640587091445923,-0.420925736427307,0.653749048709869,0.684539616107941,-0.322517812252045,0.508783876895905,0.694673240184784,-0.50849586725235,-0.801483511924744,-0.248532950878143,-0.543926119804382,-0.830932259559631,-0.228175580501556,-0.507432222366333,0.816601037979126,0.338663309812546,0.467407584190369,-0.151280850172043,0.922238945960999,-0.355794101953506,-0.0200711116194725,0.82893317937851,-0.558987438678741,-0.00988856982439756,0.926337838172913,-0.376563996076584,-0.0201161149889231,0.828401267528534,-0.559773802757263,-0.00618206802755594,0.926332533359528,-0.376656085252762,-0.0176547858864069,0.828885674476624,-0.559139430522919,-0.00575575092807412,0.929154217243195,-0.369647830724716,0.426472276449203,0.745490193367004,-0.512216627597809,0.210070922970772,0.903750479221344,-0.372968107461929,-0.103653006255627,0.985024869441986,-0.137775629758835,-0.0048497412353754,0.926327586174011,-0.376687943935394,-0.00447774166241288,0.929126799106598,-0.36973437666893,0.0482588037848473,0.51125293970108,0.858074426651001,-0.65764844417572,0.390276849269867,0.644346594810486,-0.102032639086246,0.988652348518372,-0.110253937542439,0.15137904882431,0.914271414279938,-0.375755667686462,0.0527844987809658,0.514317274093628,0.855974018573761,0.052835751324892,0.511103332042694,0.857893764972687,-0.00510154850780964,0.929140329360962,-0.369692206382751,
- -0.632197499275208,0.401108235120773,0.66290158033371,-0.643344521522522,0.379248261451721,0.665040373802185,-0.0629319548606873,0.930813133716583,0.360036790370941,0.0516802370548248,0.514287233352661,0.856059432029724,0.0528606846928597,0.470093637704849,0.881032168865204,0.0517699755728245,0.511139154434204,0.857937455177307,0.0638999342918396,0.0753797516226768,0.995105445384979,0.604819118976593,0.359168261289597,0.710768640041351,-0.00306934048421681,0.0389806218445301,0.999235332012177,0.0310021620243788,0.471133887767792,0.881516754627228,0.0298499222844839,0.513563275337219,0.857532322406769,0.0310771558433771,0.468234360218048,0.883057653903961,-0.57852828502655,0.451559662818909,0.679263532161713,-0.587381660938263,0.451129078865051,0.671911656856537,-0.590677201747894,0.450952440500259,0.669135510921478,-0.587770402431488,0.450118005275726,0.672249734401703,-0.578927576541901,0.450064390897751,0.679915368556976,-0.587244391441345,0.450116515159607,0.672710299491882,-0.591972231864929,0.439022779464722,0.675890445709229,-0.590533196926117,0.439033329486847,0.677141308784485,-0.556741297245026,0.438834071159363,0.705311179161072,0.0729687809944153,-0.374125182628632,0.924503147602081,-0.825521171092987,0.488931655883789,0.281887620687485,-0.627512872219086,0.182528927922249,0.756908774375916,-0.557731568813324,0.552778601646423,0.619169890880585,-0.547212243080139,0.544072389602661,0.636037766933441,-0.521571815013886,0.522683322429657,0.674362599849701,-0.524292886257172,-0.546684920787811,0.652880311012268,-0.557395815849304,-0.455274939537048,0.694287240505219,-0.520721554756165,0.553435862064362,0.650044500827789,-0.555639147758484,0.552851140499115,0.6209836602211,-0.600208222866058,-0.453977227210999,0.658524751663208,-0.556410789489746,0.551135718822479,0.621817111968994,-0.546024978160858,0.546526074409485,0.634953558444977,-0.548897206783295,0.55305540561676,0.626770794391632,-0.5580974817276,0.574572443962097,0.598659873008728,-0.554993808269501,0.551112532615662,0.62310254573822,-0.543799936771393,0.574936032295227,0.61133474111557,
- -0.554177582263947,0.552899301052094,0.622245669364929,-0.581725239753723,0.465561419725418,0.666969537734985,-0.613200426101685,0.571022272109985,0.545819461345673,-0.547089338302612,0.826324939727783,-0.133717447519302,-0.472243428230286,0.573745548725128,0.669180333614349,-0.483880221843719,0.547567129135132,0.682664036750793,-0.465739697217941,0.587691187858582,0.66159325838089,-0.383970320224762,0.577267467975616,0.720644891262054,-0.0531559064984322,0.997349917888641,-0.0496746823191643,-0.386503309011459,0.566543757915497,0.727766036987305,-0.0166053548455238,0.998936533927917,-0.0430128462612629,-0.368649661540985,0.574729740619659,0.730604708194733,0.158559530973434,0.900989949703217,-0.403826713562012,0.163643449544907,0.901930749416351,-0.399677246809006,0.244803160429001,0.799463212490082,-0.548570930957794,-0.0232943687587976,0.998749494552612,-0.0442361459136009,-0.614637613296509,0.550256729125977,0.565188646316528,-0.586069464683533,0.605471134185791,0.538449048995972,-0.593691289424896,0.591501951217651,0.545578718185425,0.244489207863808,0.948275804519653,-0.202479600906372,0.314761966466904,0.911418676376343,-0.265030264854431,-0.600513219833374,0.591184377670288,0.538409650325775,-0.587753593921661,0.591729521751404,0.551726281642914,-0.580817222595215,0.604967057704926,0.544670760631561,0.219250738620758,0.946388125419617,-0.237231194972992,0.425526320934296,0.792151808738709,-0.437519282102585,0.292510688304901,0.912395238876343,-0.286308318376541,0.386337459087372,0.834586381912231,-0.392694532871246,0.244362488389015,0.948270738124847,-0.202656641602516,0.418987214565277,0.834125399589539,-0.358726292848587,0.314537942409515,0.911432862281799,-0.265247166156769,0.386337459087372,0.834586381912231,-0.392694532871246,0.542554080486298,-0.567019462585449,-0.619777500629425,0.425526320934296,0.792151808738709,-0.437519282102585,0.363559633493423,-0.536453902721405,-0.7616046667099,0.623987257480621,-0.294641315937042,-0.723758578300476,0.809546828269959,0.585898637771606,-0.0368342399597168,0.603370606899261,-0.391694307327271,-0.694636225700378,
- 0.389438033103943,-0.542375266551971,-0.744424045085907,0.862875878810883,-0.0771341398358345,-0.49949523806572,0.556366384029388,-0.568224787712097,-0.606281340122223,0.533095300197601,-0.612950682640076,-0.583181798458099,0.685718595981598,-0.0534653998911381,-0.72590047121048,0.554778337478638,-0.568096160888672,-0.607855081558228,0.388016134500504,0.834607601165771,-0.390990614891052,0.531734645366669,-0.612874865531921,-0.584502041339874,0.669645249843597,-0.0514499843120575,-0.740896880626678,0.512364566326141,-0.611572861671448,-0.60287743806839,0.669371008872986,-0.0555205419659615,-0.740850806236267,0.596782267093658,-0.613971352577209,-0.516614079475403,0.738909125328064,-0.0465454570949078,-0.672195553779602,0.73877364397049,-0.0555289685726166,-0.671662211418152,0.43137925863266,0.830055594444275,-0.353439807891846,0.579933226108551,-0.61421012878418,-0.53518533706665,0.427346378564835,0.833701014518738,-0.349739789962769,0.422943472862244,0.83394056558609,-0.354488283395767,0.248179912567139,0.948406100273132,-0.197313234210014,0.427446007728577,0.829892933368683,-0.358563274145126,0.647846937179565,-0.5561643242836,-0.520553290843964,0.794539868831635,-0.0500497557222843,-0.605145871639252,0.613455832004547,-0.613336384296417,-0.497484087944031,0.615292191505432,-0.613241016864777,-0.495329201221466,0.468240410089493,0.829851269721985,-0.303476214408875,0.649832844734192,-0.556271970272064,-0.517956376075745,0.818993628025055,-0.0515901520848274,-0.571478724479675,0.661310851573944,-0.5567826628685,-0.502654016017914,0.818243205547333,-0.0605456382036209,-0.571675181388855,0.267556875944138,0.951267957687378,-0.153305634856224,0.489004492759705,0.828245043754578,-0.273650974035263,0.275870621204376,0.948147535324097,-0.157834500074387,0.920081734657288,-0.0640438199043274,-0.386455625295639,0.791603446006775,-0.543581306934357,-0.27907595038414,0.766038715839386,-0.586317539215088,-0.26347029209137,0.70244300365448,-0.593814313411713,-0.392375320196152,0.863245964050293,-0.0614197477698326,-0.501033067703247,
- 0.86321097612381,-0.0622650869190693,-0.500988900661469,0.45670622587204,0.844256401062012,-0.280446916818619,0.71555632352829,-0.556242406368256,-0.422579646110535,0.476315379142761,0.829362332820892,-0.292030453681946,0.477305114269257,0.829290747642517,-0.290614396333694,0.262393534183502,0.95112681388855,-0.162811100482941,0.457559734582901,0.844308257102966,-0.278895795345306,0.736003279685974,-0.544869303703308,-0.401766836643219,0.707413136959076,-0.593688726425171,-0.383536636829376,0.73032557964325,-0.555085301399231,-0.39812695980072,0.726724565029144,-0.555414021015167,-0.404211342334747,0.457432478666306,0.844300627708435,-0.279127180576324,0.732380390167236,-0.545377850532532,-0.407654225826263,0.862563967704773,-0.0615194886922836,-0.502193987369537,0.702110707759857,-0.593820512294769,-0.392960429191589,0.730377018451691,-0.545645773410797,-0.410877257585526,0.239079341292381,0.769477069377899,-0.592238247394562,-0.0689648538827896,0.758925497531891,-0.64751523733139,0.865590453147888,-0.280985713005066,0.414488077163696,0.517364382743835,-0.0892689451575279,-0.851096570491791,0.688264071941376,-0.549335658550262,-0.473838597536087,0.690889179706573,-0.626174569129944,-0.361355185508728,0.860535442829132,-0.271717667579651,0.430869191884995,0.0663677677512169,0.876704216003418,-0.476429522037506,-0.79606020450592,0.379582285881042,-0.471386969089508,0.265340924263,0.95122092962265,-0.157394364476204,0.273168683052063,0.948271095752716,-0.161743685603142,-0.691737830638886,0.613461256027222,0.381004005670547,-0.69528067111969,0.613171398639679,0.374974340200424,-0.694640934467316,0.614145696163177,0.374565094709396,0.250678449869156,0.9504035115242,-0.184102103114128,-0.62759655714035,0.608081042766571,0.486168891191483,-0.623946309089661,0.613635003566742,0.483883559703827,0.283520489931107,0.947679281234741,-0.146698042750359,-0.69297981262207,0.614118576049805,0.377673625946045,-0.693510711193085,0.613320350646973,0.377996265888214,-0.722594916820526,0.566783726215363,0.395743489265442,-0.628977417945862,0.608122527599335,0.484328836202621,
- -0.654885590076447,0.566321849822998,0.500404357910156,-0.625300407409668,0.613717138767242,0.482027679681778,-0.686247050762177,0.613933742046356,0.390064567327499,-0.715468406677246,0.567174851894379,0.407943278551102,-0.724859714508057,0.550836443901062,0.413712054491043,-0.715590178966522,0.549899697303772,0.430744826793671,-0.70605742931366,0.567512273788452,0.423571467399597,-0.679219186306,-0.562641263008118,0.471270769834518,-0.73841005563736,-0.484764456748962,0.468779355287552,-0.695959270000458,-0.563535511493683,0.445048868656158,-0.70891809463501,0.56743049621582,0.418876886367798,-0.659988105297089,0.56664252281189,0.493286967277527,-0.634243369102478,0.608252048492432,0.477247089147568,-0.663756191730499,0.560172319412231,0.495615541934967,-0.599761068820953,0.606609225273132,0.521835207939148,-0.629340589046478,0.549418687820435,0.549608528614044,-0.625042200088501,0.558289408683777,0.545559525489807,-0.668896675109863,0.567103564739227,0.480594277381897,-0.672984182834625,0.560293018817902,0.482870548963547,-0.747788608074188,-0.472794473171234,0.466130614280701,-0.735057055950165,-0.500622391700745,0.457239925861359,-0.747143089771271,-0.472892314195633,0.467065513134003,-0.672442734241486,0.560289800167084,0.483628213405609,-0.660198092460632,-0.451042205095291,0.600582599639893,-0.625042200088501,0.558289408683777,0.545559525489807,-0.629340589046478,0.549418687820435,0.549608528614044,-0.608532786369324,0.556880712509155,0.565306723117828,-0.645464599132538,-0.449332118034363,0.617637574672699,-0.626452624797821,-0.496947884559631,0.600499868392944,0.611982882022858,-0.561096549034119,-0.557357668876648,0.920545637607574,-0.106606170535088,-0.375806897878647,0.338197499513626,-0.741939663887024,-0.57891970872879,0.421806901693344,-0.554804384708405,-0.717127025127411,0.532276153564453,-0.0573957525193691,-0.844623029232025,0.532329201698303,-0.056669045239687,-0.844638526439667,0.530083119869232,-0.057464987039566,-0.845996260643005,0.419494718313217,-0.554535925388336,-0.718689143657684,0.419025123119354,-0.555707693099976,-0.718057751655579,
- 0.515114963054657,-0.560452878475189,-0.648497700691223,0.601204872131348,-0.0536315962672234,-0.797293126583099,0.601204335689545,-0.0549514442682266,-0.797203660011292,0.617066502571106,-0.0516301691532135,-0.785215437412262,0.534147262573242,-0.560448408126831,-0.632917404174805,0.539490878582001,-0.545861721038818,-0.641080796718597,0.313634991645813,0.843259155750275,-0.436517000198364,0.423814564943314,-0.556118011474609,-0.714922487735748,0.424218863248825,-0.55508017539978,-0.715488910675049,0.660832643508911,0.743651330471039,0.101405292749405,0.615272998809814,0.759989619255066,-0.20941586792469,-0.395811825990677,-0.263156563043594,-0.87981903553009,0.41650927066803,-0.555485367774963,-0.719691693782806,0.320156902074814,0.842828035354614,-0.432597309350967,0.327328622341156,0.833587288856506,-0.444958537817001,0.20200103521347,0.950155913829803,-0.237485900521278,0.326181977987289,0.833606243133545,-0.445764571428299,0.318911015987396,0.842914342880249,-0.43334886431694,0.302129179239273,0.833626449108124,-0.462368965148926,0.539490878582001,-0.545861721038818,-0.641080796718597,0.534147262573242,-0.560448408126831,-0.632917404174805,-0.298412054777145,0.826417922973633,-0.477476418018341,0.000877648708410561,-0.450930774211884,-0.892558574676514,-0.0413516573607922,0.562125623226166,0.826017439365387,0.544372200965881,-0.5450679063797,-0.637620568275452,0.297786355018616,0.833554625511169,-0.465306252241135,0.300407886505127,0.830892205238342,-0.468372970819473,0.331203430891037,0.833511412143707,-0.442225098609924,0.208802163600922,0.949691355228424,-0.233427003026009,0.21435372531414,0.94611930847168,-0.242715612053871,0.149989068508148,0.945659637451172,-0.288498073816299,0.300407886505127,0.830892205238342,-0.468372970819473,0.297786355018616,0.833554625511169,-0.465306252241135,0.216771721839905,0.946020424365997,-0.240947112441063,0.211338996887207,0.949502527713776,-0.231907233595848,-0.389012485742569,0.613228023052216,0.687474131584167,-0.254663169384003,0.779216229915619,-0.572685599327087,0.972186088562012,-0.22162926197052,0.0757280588150024,
- 0.10067281126976,0.784863710403442,-0.611436128616333,0.316113650798798,0.832379639148712,-0.4552101790905,0.168543487787247,0.9463951587677,-0.2755526304245,0.166530594229698,0.947470307350159,-0.273070722818375,0.953244626522064,-0.297192275524139,-0.0547861158847809,0.131879061460495,0.944031894207001,-0.302343904972076,-0.898715376853943,0.438511520624161,0.00428155064582825,0.166669398546219,0.947480201721191,-0.272951751947403,0.168708384037018,0.946399569511414,-0.275436699390411,-0.516069889068604,0.604727387428284,0.606610894203186,-0.464596897363663,0.612544000148773,0.63948380947113,-0.468435496091843,0.603947937488556,0.644837379455566,0.186505496501923,0.946645379066467,-0.262827306985855,-0.842563807964325,0.467910706996918,0.266731739044189,-0.838146090507507,0.494936048984528,0.229236632585526,-0.554278910160065,-0.207217559218407,0.806124031543732,-0.433238804340363,0.553958177566528,0.710939228534698,-0.407999932765961,0.613516747951508,0.676116347312927,-0.427783727645874,0.56757116317749,0.703465759754181,-0.484444558620453,0.555404722690582,0.675898671150208,-0.464229106903076,0.60377448797226,0.648033857345581,-0.460204064846039,0.612722158432007,0.642482578754425,-0.487794131040573,0.604532241821289,0.629760086536407,-0.508748948574066,0.555334150791168,0.657859086990356,-0.506343543529511,0.561317443847656,0.654628872871399,-0.398653090000153,0.599053621292114,0.694413840770721,-0.435554206371307,0.558870196342468,0.705660462379456,-0.56332540512085,0.390260875225067,0.728258848190308,-0.149908453226089,-0.755063712596893,0.638283908367157,-0.825591146945953,-0.291745483875275,0.482994705438614,-0.931069016456604,-0.0864256024360657,0.354458957910538,0.0476022660732269,-0.473996192216873,0.87923926115036,0.056310873478651,-0.276176810264587,0.959455788135529,0.0486285984516144,-0.454051226377487,0.889647543430328,0.0677120536565781,0.043891042470932,0.996739089488983,0.0628540962934494,-0.276168256998062,0.959051966667175,0.0559876635670662,-0.474197417497635,0.878636538982391,0.631062865257263,0.56128317117691,0.535463333129883,
- 0.405580580234528,0.0240077171474695,0.91374397277832,0.0335705056786537,-0.473584711551666,0.880108237266541,0.0485037267208099,-0.454059243202209,0.889650285243988,0.0602032579481602,0.769632160663605,0.635643005371094,0.0473477840423584,-0.473989635705948,0.87925660610199,0.671629428863525,0.0032716877758503,0.740880131721497,0.761072993278503,0.453721910715103,0.46357786655426,0.100301533937454,-0.706102073192596,0.700970351696014,0.0428387187421322,0.771373987197876,0.634938597679138,0.0532130599021912,-0.453751593828201,0.889538049697876,0.0388050265610218,0.823315262794495,0.566256284713745,0.907939910888672,-0.152214974164963,0.39048159122467,-0.122818991541862,0.723562061786652,0.679244875907898,-0.371678411960602,0.746183693408966,0.552327036857605,0.0339645221829414,0.925650894641876,0.376851260662079,0.0458956770598888,0.771084487438202,0.635076642036438,0.0428555831313133,0.823360621929169,0.565898180007935,0.473259538412094,0.744931221008301,0.470215886831284,-0.105731949210167,0.982523381710052,0.153194442391396,0.231909990310669,0.906746447086334,0.352177172899246,0.0375055260956287,0.92563933134079,0.376543909311295,0.0368642061948776,0.931497037410736,0.361876338720322,0.0478069931268692,0.770899832248688,0.635159909725189,-0.441155076026917,0.72091144323349,0.534480154514313,-0.204667612910271,0.909617483615875,0.36153456568718,0.733771860599518,0.347970545291901,-0.583519816398621,-0.0427466295659542,0.508196890354156,-0.860179543495178,0.0383894890546799,0.931460916996002,0.36181053519249,0.03916409984231,0.925629854202271,0.376398265361786,-0.0399067141115665,0.508101582527161,-0.860372185707092,-0.0397194102406502,0.511772155761719,-0.858202576637268,0.0368290022015572,0.931497752666473,0.361877828836441,-0.104317724704742,0.985823452472687,0.131415203213692,-0.735134124755859,0.382564127445221,-0.559662818908691,0.174687147140503,0.91609650850296,0.360903948545456,-0.040114838629961,0.511764049530029,-0.858188927173615,-0.0402439311146736,0.508113086223602,-0.860349655151367,-0.0420534014701843,0.453529328107834,-0.890248656272888,
- -0.0614727512001991,0.935472905635834,-0.348010808229446,-0.711503267288208,0.375238478183746,-0.594103753566742,-0.698485732078552,0.39977103471756,-0.593549311161041,-0.061734676361084,0.511199414730072,-0.857242107391357,-0.0637075826525688,0.454841315746307,-0.888290882110596,-0.0647149980068207,0.421841025352478,-0.904357254505157,0.0913995429873466,-0.137838080525398,-0.986228585243225,0.0149144446477294,-0.189413443207741,-0.981784164905548,0.637134671211243,0.292120516300201,-0.713249742984772,0.999845802783966,0.000276550796115771,-0.017560975626111,0.884507417678833,-0.466479063034058,-0.00663561187684536,0.99984472990036,-0.00194650760386139,-0.0175185687839985,0.746396780014038,-0.663836479187012,0.0470435246825218,0.848908066749573,-0.456886678934097,0.265724927186966,0.823652446269989,-0.00892952457070351,0.567024767398834,0.884852290153503,-0.465859860181808,0.0033311489969492,0.999962747097015,0.000135928668896668,-0.00863147061318159,0.889549732208252,-0.456828206777573,0.00307801971212029,0.88970273733139,-0.456537842750549,-0.00155379250645638,0.565740764141083,0.824470341205597,-0.0136406160891056,0.884699285030365,-0.466159969568253,-0.00140670116525143,0.565773487091064,0.82439249753952,-0.016655869781971,0.889343976974487,-0.457158714532852,0.00855425093322992,0.565017879009247,0.824910402297974,-0.0166657026857138,0.361904114484787,-0.112047120928764,-0.925457119941711,0.751745700836182,0.652669012546539,0.0943491011857986,0.465116709470749,0.64458554983139,0.606775164604187,0.279220849275589,0.671497762203217,-0.686386585235596,0.592585742473602,-0.250650942325592,0.765516996383667,0.482802629470825,0.681154251098633,-0.550391316413879,0.551749229431152,-0.226145729422569,0.802764534950256,0.356644183397293,0.923906862735748,0.138568237423897,-0.515171647071838,0.328994929790497,-0.791429400444031,0.376392066478729,0.926316797733307,-0.0163151118904352,0.56575745344162,0.824433207511902,-0.0151143418624997,0.565071761608124,0.824903190135956,-0.015120361931622,0.565787494182587,0.824352204799652,-0.0181113369762897,
- 0.376264929771423,0.92628026008606,-0.0207306481897831,0.363589584827423,0.931325554847717,-0.020865123718977,0.363504141569138,0.906924426555634,-0.212962195277214,0.495381712913513,0.747058629989624,-0.443283557891846,0.166025102138519,0.982810437679291,0.0807420164346695,0.363609492778778,0.931285440921783,-0.0222624987363815,0.376220017671585,0.926263630390167,-0.0222310833632946,-0.858936071395874,0.512049913406372,-0.0057998769916594,0.148347228765488,0.985708296298981,0.0798266008496284,-0.609994351863861,0.382852971553802,0.693779945373535,0.368857502937317,0.916464447975159,-0.155038848519325,-0.858956813812256,0.511958599090576,-0.00956709217280149,-0.85872495174408,0.512347280979156,-0.00957611482590437,0.363594979047775,0.931315124034882,-0.0212378744035959,-0.63210928440094,0.395289152860641,0.666471540927887,-0.344749510288239,0.93761146068573,0.0450833849608898,-0.634641945362091,0.334881573915482,0.696479678153992,-0.908344864845276,0.418147087097168,-0.00790919084101915,-0.858740508556366,0.512335240840912,-0.00880289822816849,-0.858953714370728,0.511977851390839,-0.00879959296435118,-0.714321136474609,0.290453463792801,-0.63669627904892,-0.963279843330383,-0.256466388702393,-0.0794796571135521,-0.950580298900604,-0.310329794883728,-0.00961990654468536,-0.858965635299683,0.511845648288727,0.0138652333989739,-0.907695293426514,0.419316440820694,0.0162199679762125,-0.884757339954376,0.465808361768723,0.0150736682116985,-0.985580861568451,-0.166492193937302,0.0301791727542877,-0.723678469657898,0.416403830051422,0.550361156463623,-0.754792273044586,0.388171225786209,0.528783142566681,-0.884747743606567,0.46607032418251,0.000121362041682005,-0.908180177211761,0.418579161167145,0.000435374560765922,-0.95174252986908,-0.306867301464081,0.00432870257645845,-0.884667158126831,-0.466217339038849,-0.00233098678290844,-0.99990576505661,0.00021624552027788,-0.0137315904721618,-0.999905049800873,-0.00152166618499905,-0.0136949960142374,-0.823863804340363,-0.00892468634992838,0.566717565059662,-0.848136007785797,-0.460290491580963,0.26229402422905,
- -0.746659815311432,-0.663541972637177,0.0470226556062698,-0.999962866306305,0.000135744208819233,-0.00861975643783808,-0.884852588176727,-0.465859174728394,0.00334151089191437,-0.887885630130768,-0.460053384304047,0.0031787077896297,-0.565740585327148,0.824470698833466,-0.0136250164359808,-0.888042032718658,-0.45975986123085,-0.00148160732351244,-0.884700119495392,-0.466158598661423,-0.00138377398252487,-0.887678444385529,-0.460383206605911,0.00861898344010115,-0.565773487091064,0.82439249753952,-0.0166556760668755,-0.565017879009247,0.824910342693329,-0.0166655089706182,-0.465911328792572,0.645853281021118,0.604814291000366,-0.742500364780426,0.658704400062561,0.121662348508835,-0.361338913440704,-0.112743884325027,-0.925593316555023,-0.279288679361343,0.671685576438904,-0.686175167560577,-0.482956022024155,0.681396007537842,-0.549957275390625,-0.592332422733307,-0.250497728586197,0.765763282775879,-0.552198231220245,-0.226413145661354,0.802380383014679,0.51563686132431,0.329260915517807,-0.791015863418579,-0.35661593079567,0.923859655857086,0.138954803347588,-0.56575745344162,0.824433207511902,-0.0151145439594984,-0.376392066478729,0.926316797733307,-0.0163152478635311,-0.565071761608124,0.824903190135956,-0.0151205658912659,-0.363589733839035,0.931325435638428,-0.0208726264536381,-0.376264691352844,0.926280081272125,-0.0207384098321199,-0.565787613391876,0.824351966381073,-0.0181230120360851,-0.141283139586449,0.984389007091522,0.104964286088943,-0.493462890386581,0.744606077671051,-0.449506759643555,-0.362571358680725,0.905182480812073,-0.221780613064766,-0.363609552383423,0.931285262107849,-0.0222685057669878,0.858982741832733,0.51197212934494,-0.0057837194763124,-0.376219809055328,0.926263511180878,-0.0222372990101576,0.606899440288544,0.393585979938507,0.690480470657349,-0.115433886647224,0.987934410572052,0.103250414133072,-0.368106812238693,0.915186047554016,-0.164109125733376,0.858725845813751,0.512346684932709,-0.00953578948974609,0.859033465385437,0.511830806732178,-0.00952381826937199,-0.363594800233841,0.931315362453461,-0.0212268680334091,
- 0.354912996292114,0.932927846908569,0.0606825798749924,0.632607758045197,0.40745535492897,0.658625483512878,0.63433039188385,0.382156074047089,0.67199832201004,0.858741521835327,0.51233446598053,-0.00875283032655716,0.884960830211639,0.465591609477997,-0.0083038005977869,0.859023928642273,0.51186066865921,-0.00874833483248949,0.999968409538269,-0.000757375790271908,-0.00791551265865564,0.996369361877441,0.039739690721035,-0.0752921998500824,0.73557323217392,0.345882892608643,-0.582492113113403,0.884362936019897,0.466666668653488,0.0111570749431849,0.858961522579193,0.511922240257263,0.0109915342181921,0.88493812084198,0.465574860572815,0.0111606493592262,-0.953667759895325,-0.29971581697464,0.0262379422783852,-0.887042343616486,-0.461150795221329,0.0222702082246542,-0.99950110912323,0.00471031619235873,0.0312308669090271,-0.661587834358215,-0.736852884292603,-0.139102220535278,-0.613537609577179,-0.364506363868713,-0.70050460100174,-0.508070170879364,-0.152553454041481,-0.847698211669922,-0.887462556362152,-0.460677266120911,0.0136691760271788,-0.953860819339752,-0.29970845580101,0.0180105809122324,-0.889965534210205,-0.455818593502045,0.0138122951611876,-0.890011787414551,-0.455624759197235,0.0168853774666786,-0.565542697906494,0.824466347694397,0.0204142834991217,-0.887318253517151,-0.460852235555649,0.0167768448591232,-0.565544962882996,0.824476182460785,0.0199491251260042,-0.889823853969574,-0.456256568431854,0.00659871846437454,-0.568317770957947,0.822566986083984,0.0199627969413996,-0.679300963878632,0.723509430885315,-0.122818440198898,-0.543063521385193,0.753553688526154,-0.370457589626312,-0.433240950107574,-0.159572198987007,0.887039542198181,-0.473815619945526,0.683265089988709,0.555560648441315,-0.26799002289772,0.672454416751862,0.689917683601379,-0.599624454975128,-0.249414399266243,-0.760422825813293,0.583415865898132,0.393534481525421,0.710462212562561,-0.646358191967011,-0.277607977390289,-0.71074253320694,-0.36134946346283,0.924262762069702,0.123145893216133,-0.565550625324249,0.824502050876617,0.018678268417716,
- -0.568380653858185,0.822553098201752,0.0187047943472862,-0.376143127679825,0.926413059234619,0.0165885519236326,-0.37594598531723,0.926400780677795,0.0211222786456347,-0.36328262090683,0.931441307067871,0.0210468899458647,-0.565535247325897,0.82443642616272,0.0217858627438545,-0.360065758228302,0.907635927200317,0.215753793716431,-0.49171370267868,0.747474372386932,0.446653842926025,-0.144294202327728,0.983931303024292,-0.105159670114517,-0.363265544176102,0.931203424930573,0.0299721155315638,0.862314343452454,0.506371676921844,-0.00127797934692353,0.858910143375397,0.512125134468079,-0.00107356149237603,0.862105488777161,0.506635844707489,-0.00971005391329527,-0.363281816244125,0.931408107280731,0.0224783271551132,-0.375877529382706,0.926392376422882,0.0226585194468498,-0.119355954229832,0.987440586090088,-0.103514656424522,0.60610955953598,0.387737303972244,-0.694471776485443,-0.366160869598389,0.916767597198486,0.159573093056679,0.862234830856323,0.506486177444458,-0.00479251472279429,0.900721371173859,0.434360951185226,-0.00563127407804132,0.859004259109497,0.511946678161621,-0.00472602527588606,0.900664210319519,0.433477699756622,-0.0300178006291389,0.861425638198853,0.507091701030731,-0.028351217508316,0.894350528717041,0.446376800537109,-0.0297455489635468,0.631797969341278,0.384572893381119,-0.673004508018494,0.630779922008514,0.40084370970726,-0.664410173892975,0.355760902166367,0.932611167430878,-0.0605851225554943,0.982460737228394,-0.161423087120056,0.0933467000722885,0.975576102733612,-0.218984231352806,0.0172428544610739,0.734245121479034,0.299156814813614,0.609417200088501,0.884894907474518,-0.465746104717255,-0.00646209996193647,0.954049706459045,-0.299618899822235,-0.0041989884339273,0.999874234199524,0.0158598758280277,0.000108004300273024,0.61455899477005,-0.37677189707756,-0.693080306053162,0.658273279666901,-0.739679276943207,-0.139824569225311,0.508524239063263,-0.159701824188232,-0.84610778093338,0.954023361206055,-0.299610644578934,-0.0085354708135128,0.884976983070374,-0.465504616498947,-0.0110178692266345,
- 0.889208495616913,-0.457372486591339,-0.0108993658795953,0.569313824176788,0.822109639644623,0.0041861548088491,0.889351308345795,-0.457160323858261,-0.00767393317073584,0.884919404983521,-0.465680122375488,-0.00772382505238056,0.888807535171509,-0.45788562297821,-0.0190242491662502,0.569299697875977,0.82212221622467,0.00359403993934393,0.565452873706818,0.824772477149963,0.00368583761155605,0.525814890861511,0.750101745128632,-0.401081025600433,0.683559358119965,0.719495058059692,-0.122774079442024,0.444327294826508,-0.149899452924728,0.883234620094299,0.287523478269577,0.678804755210876,0.675688147544861,0.495005935430527,0.685335338115692,0.534120500087738,0.587604582309723,-0.261687725782394,-0.765663325786591,0.355040550231934,0.92342621088028,-0.145706161856651,0.54848313331604,-0.238850444555283,-0.801321864128113,-0.511651933193207,0.341283440589905,0.788503587245941,0.565479755401611,0.824758648872375,0.00241565401665866,0.569269299507141,0.822147786617279,0.00234216800890863,0.376708090305328,0.926314055919647,0.00576222501695156,0.376629292964935,0.926307380199432,0.0102503057569265,0.569340884685516,0.822084188461304,0.00534805236384273,0.363498508930206,0.931535124778748,0.0105514479801059,0.495741844177246,0.741776585578918,0.451671898365021,0.364294320344925,0.904752969741821,0.220707267522812,0.144857108592987,0.983844637870789,-0.105196088552475,0.376600623130798,0.926300823688507,0.0117838401347399,0.363534569740295,0.931503772735596,0.0119746793061495,-0.85896509885788,0.511806547641754,0.0152721656486392,-0.609603345394135,0.382632583379745,-0.694245040416718,0.119987554848194,0.987359583377838,-0.10355706512928,0.369499206542969,0.91508287191391,0.16153559088707,-0.858955323696136,0.511698186397552,0.0189980585128069,0.363507479429245,0.931527495384216,0.0109030762687325,-0.858341455459595,0.512726962566376,0.0190074909478426,-0.632364511489868,0.395432353019714,-0.66614443063736,-0.633556008338928,0.376009702682495,-0.676183104515076,-0.352706044912338,0.933747947216034,-0.0609358362853527,-0.858367502689362,0.512709379196167,0.0182864852249622,
- -0.885071635246277,0.46508726477623,0.0184930469840765,-0.858958005905151,0.511719226837158,0.018291411921382,-0.996331691741943,0.0408780686557293,0.0751807987689972,-0.728001117706299,0.346528679132462,0.591550827026367,-0.999994456768036,-0.00334380939602852,0.000263292080489919,-0.884620487689972,0.466289728879929,-0.00454847188666463,-0.8589688539505,0.512004494667053,-0.00489642284810543,-0.884871482849121,0.465813040733337,-0.00454482762143016,1.51806102621777e-006,1,-1.77055107997148e-006,1.3215501439845e-006,1,-1.53911537381646e-006,1.54476606439857e-006,1,-1.34963636355678e-006,1.49860488818376e-006,1,-1.42580756801181e-006,-0.000168035039678216,1,-0.000115672373794951,-6.6736618464347e-005,1,-4.85668751935009e-005,1.3215501439845e-006,1,-1.53911537381646e-006,1.51806102621777e-006,1,-1.77055107997148e-006,2.64334630628582e-007,1,-2.44418697548099e-006,2.94358272867612e-007,1,-2.68132885139494e-006,6.06917865297874e-007,1,-2.42013288698217e-006,6.33661557003506e-007,1,-2.98785221275466e-006,8.19828258613597e-008,1,-1.94845847545366e-006,9.11630095856708e-008,1,-2.19439630200213e-006,2.94358272867612e-007,1,-2.68132885139494e-006,2.64334630628582e-007,1,-2.44418697548099e-006,-9.35392430179149e-010,1,2.04176373586051e-008,-2.31960695096234e-009,1,5.12176150380128e-008,7.00504551787162e-006,0.999994277954102,0.0033826706930995,0,1,-9.23915877137915e-008,1.72001239917563e-008,1,-1.54561305976131e-007,-4.1058406452521e-008,1,3.64380440487366e-007,-2.31960695096234e-009,1,5.12176150380128e-008,-9.35392430179149e-010,1,2.04176373586051e-008,-0.000138164017698728,1,-0.000233328784815967,-0.00010057586041512,1,-3.09646711684763e-005,-0.000196867535123602,1,-1.01134719443507e-005,-0.000681451987475157,0.999999761581421,-0.000395374867366627,-1.18023022466218e-008,1,1.3762981865284e-008,0,1,0,-0.00010057586041512,1,-3.09646711684763e-005,-0.000138164017698728,1,-0.000233328784815967,2.06315780815203e-006,1,-1.43152954024117e-006,2.11780411518703e-006,1,-1.46948673318548e-006,1.54476606439857e-006,1,-1.34963636355678e-006,
- 1.37463428018236e-006,1,-1.17148590561555e-006,1.3215501439845e-006,1,-1.53911537381646e-006,-6.6736618464347e-005,1,-4.85668751935009e-005,1.41220232308115e-006,1,-1.99803389477893e-006,1.20869901820697e-006,1,-1.40726717745565e-006,-6.6736618464347e-005,1,-4.85668751935009e-005,-0.000134438363602385,1,-7.46146397432312e-005,1.24580162719212e-006,1,-2.50954394687142e-006,1.41220232308115e-006,1,-1.99803389477893e-006,8.65582308051671e-007,1,-2.28617727771052e-006,8.2320894989607e-007,1,-2.17478077502165e-006,6.06917865297874e-007,1,-2.42013288698217e-006,4.92723643219506e-007,1,-1.85985493317276e-006,2.94358272867612e-007,1,-2.68132885139494e-006,9.11630095856708e-008,1,-2.19439630200213e-006,1.07264050086542e-007,1,-2.58603404290625e-006,2.94137919354398e-007,1,-2.67473137682828e-006,6.76233830745332e-005,0.999907732009888,0.0135889863595366,-5.49434098218171e-009,1,-2.05630340133212e-006,1.40680167532992e-005,0.999976992607117,0.00679331319406629,0.00013524282258004,0.999630630016327,0.0271771792322397,0.0684085935354233,0.997596323490143,-0.0110376533120871,0.00264434958808124,0.999797463417053,-0.0199556890875101,-0.0177859198302031,0.999800980091095,-0.00904496293514967,-0.00178562733344734,0.999677658081055,0.0253275185823441,0.00726502714678645,0.999659717082977,0.0250568185001612,-0.797265231609344,0.601485311985016,-0.0508286617696285,-0.797272861003876,0.601482212543488,-0.0507458932697773,-0.797491610050201,0.601146996021271,-0.051278255879879,-0.797491490840912,0.601147055625916,-0.0512782521545887,-0.795196831226349,0.601601839065552,-0.0757444202899933,-0.795038640499115,0.601592004299164,-0.0774644836783409,-0.797272861003876,0.601482212543488,-0.0507458932697773,-0.797265231609344,0.601485311985016,-0.0508286617696285,0.929588496685028,0.0031879972666502,0.368585228919983,0.9419105052948,0.00318795396015048,0.335848808288574,0.953006744384766,-1.50874271298562e-007,0.302949368953705,0.953011751174927,-1.20885670185089e-006,0.302933484315872,-0.654323518276215,0.602160573005676,-0.457453161478043,-0.654732465744019,0.602151870727539,-0.45687934756279,
- -0.664358854293823,0.601700246334076,-0.443378150463104,-0.662928640842438,0.601698100566864,-0.445516645908356,-0.585172891616821,0.599877834320068,-0.545636653900146,-0.615986526012421,0.600612938404083,-0.509730160236359,-0.654732465744019,0.602151870727539,-0.45687934756279,-0.654323518276215,0.602160573005676,-0.457453161478043,0.569474935531616,-0.00136730703525245,0.822007656097412,0.612960696220398,-1.28522529507791e-007,0.790113508701324,0.612958371639252,-2.03028321266174e-007,0.790115237236023,0.569478452205658,-0.00136729166842997,0.822005212306976,1.24580162719212e-006,1,-2.50954394687142e-006,-0.000134438363602385,1,-7.46146397432312e-005,8.2320894989607e-007,1,-2.17478077502165e-006,8.65582308051671e-007,1,-2.28617727771052e-006,0.916221022605896,7.45058148510225e-009,0.400673478841782,0.916218459606171,-3.5017725963371e-007,0.400678962469101,0.9419105052948,0.00318795396015048,0.335848808288574,0.929588496685028,0.0031879972666502,0.368585228919983,-1.00652659966727e-005,1,-2.05408241527039e-006,-1.03407737697125e-005,1,-2.12663371712551e-006,-1.06162960946676e-005,1,-2.1991891117068e-006,-1.06163106465829e-005,1,-2.19919252231193e-006,-1.04326190921711e-005,1,-2.15081968235609e-006,0.00189411523751915,0.0259576737880707,0.999661326408386,0.00189408217556775,0.0259576588869095,0.999661326408386,0.00189404957927763,0.025957640260458,0.999661326408386,0.00189408217556775,0.0259576588869095,0.999661326408386,3.97325038647978e-006,1,1.8338290601605e-006,3.78658228328277e-006,1,1.61859611580439e-006,3.59991645382252e-006,1,1.40336487675086e-006,3.59991827281192e-006,1,1.40336703680077e-006,3.7243607948767e-006,1,1.54685278630495e-006,0,1,0,5.24899022025238e-008,1,-4.58682301029967e-008,0,1,0,-1.18023022466218e-008,1,1.3762981865284e-008,1.37463428018236e-006,1,-1.17148590561555e-006,1.54476606439857e-006,1,-1.34963636355678e-006,1.3215501439845e-006,1,-1.53911537381646e-006,1.20869901820697e-006,1,-1.40726717745565e-006,-0.551036417484283,0.600760579109192,-0.579176783561707,-0.551046371459961,0.600760519504547,-0.579167306423187,
- -0.615986526012421,0.600612938404083,-0.509730160236359,-0.585172891616821,0.599877834320068,-0.545636653900146,-7.18963875101508e-008,1,3.39079889499772e-007,-3.45581270266848e-008,1,1.37705185920822e-007,-4.1058406452521e-008,1,3.64380440487366e-007,1.72001239917563e-008,1,-1.54561305976131e-007,4.92723643219506e-007,1,-1.85985493317276e-006,6.06917865297874e-007,1,-2.42013288698217e-006,2.94358272867612e-007,1,-2.68132885139494e-006,2.94137919354398e-007,1,-2.67473137682828e-006,-0.792388439178467,0.602097630500793,-0.0979747995734215,-0.792022228240967,0.602100431919098,-0.100876577198505,-0.795038640499115,0.601592004299164,-0.0774644836783409,-0.795196831226349,0.601601839065552,-0.0757444202899933,0.0391777940094471,0.999185144901276,-0.00971365347504616,0.0391698926687241,0.999185383319855,-0.00971767213195562,0.0392050594091415,0.999184131622314,-0.00969977583736181,0.0392596013844013,0.999182283878326,-0.00967202428728342,0.0392226465046406,0.999183535575867,-0.00969082489609718,-0.000564204819966108,0.99999988079071,-0.000323214364470914,-0.000134438363602385,1,-7.46146397432312e-005,-6.6736618464347e-005,1,-4.85668751935009e-005,-0.000168035039678216,1,-0.000115672373794951,4.75148863188224e-006,1,-0,5.6980888984981e-006,1,-0,6.64466915623052e-006,1,-0,8.53780511533841e-006,1,-0,5.69806070416234e-006,1,-0,2.85826490653562e-006,1,-0,0,1,-1.78485890955926e-006,1.40680167532992e-005,0.999976992607117,0.00679331319406629,9.11630095856708e-008,1,-2.19439630200213e-006,8.19828258613597e-008,1,-1.94845847545366e-006,1.40680167532992e-005,0.999976992607117,0.00679331319406629,-5.49434098218171e-009,1,-2.05630340133212e-006,1.07264050086542e-007,1,-2.58603404290625e-006,9.11630095856708e-008,1,-2.19439630200213e-006,-0.000679637596476823,0.999996483325958,-0.00258090277202427,-0.000186700955964625,0.999999642372131,-0.000908547372091562,8.76302292454056e-005,0.999999821186066,0.000706657068803906,0.0003327195008751,0.999997913837433,0.0020625286269933,-0.00117844226770103,0.999994933605194,-0.00296630966477096,
- -0.000438654591562226,0.999999284744263,-0.00111115211620927,-0.000186700955964625,0.999999642372131,-0.000908547372091562,-0.000679637596476823,0.999996483325958,-0.00258090277202427,-0.00142706418409944,0.999992609024048,-0.00358403148129582,-0.000544594426173717,0.999999046325684,-0.00133016612380743,9.47423905017786e-005,1,0.000173210501088761,0.000357717886799946,0.999999701976776,0.000741293421015143,-0.000833428173791617,0.999994695186615,-0.003154142992571,-0.000239416491240263,0.999999463558197,-0.00107287871651351,-0.000544594426173717,0.999999046325684,-0.00133016612380743,-0.00142706418409944,0.999992609024048,-0.00358403148129582,3.46065680787433e-005,1,0.000412434077588841,2.41449324676069e-005,1,0.000412981113186106,3.05549983750097e-005,0.999999940395355,0.000412645924370736,8.76302292454056e-005,0.999999821186066,0.000706657068803906,2.73603509413078e-005,1,0.000216245141928084,-0.000186700955964625,0.999999642372131,-0.000908547372091562,-0.000438654591562226,0.999999284744263,-0.00111115211620927,2.16612079384504e-006,1,-7.92748835465318e-007,2.19338244278333e-006,1,-5.71125895021396e-007,2.06315780815203e-006,1,-1.43152954024117e-006,2.15464569919277e-006,1,-1.19050298508228e-006,8.08573968242854e-005,1,0.000142663018777967,2.11780411518703e-006,1,-1.46948673318548e-006,-0.288190931081772,0.601087391376495,-0.745412707328796,-0.26493102312088,0.60124671459198,-0.753866136074066,-0.311684608459473,0.601265251636505,-0.735753297805786,-0.310042858123779,0.601264178752899,-0.73644745349884,-0.185517281293869,0.600545704364777,-0.777771353721619,-0.185588464140892,0.600538790225983,-0.777759730815887,-0.26493102312088,0.60124671459198,-0.753866136074066,-0.288190931081772,0.601087391376495,-0.745412707328796,-0.997849822044373,0.0615360252559185,0.0225612744688988,-0.997366547584534,0.0376839973032475,0.0619673505425453,-0.99476683139801,0.013751994818449,0.101241916418076,-0.997366547584534,0.0376840010285378,0.061967346817255,5.28982866399019e-007,1,4.82221275888151e-006,2.85005683053896e-007,1,2.52589484261989e-006,
- 6.87763872520009e-008,1,4.90740319492033e-007,1.94431081013136e-007,1,1.67340476764366e-006,2.57258989222464e-007,1,2.26474253395281e-006,3.47833207570147e-007,1,3.11722851620289e-006,0.524352252483368,-9.87201929092407e-008,0.85150146484375,0.52434229850769,2.03028321266174e-007,0.851507663726807,0.569474935531616,-0.00136730703525245,0.822007656097412,0.569478452205658,-0.00136729166842997,0.822005212306976,0.000397514959331602,0.999996900558472,0.00248565920628607,0.00332328397780657,0.999994397163391,0.000482071016449481,-0.000239416491240263,0.999999463558197,-0.00107287871651351,-0.000833428173791617,0.999994695186615,-0.003154142992571,2.73603509413078e-005,1,0.000216245141928084,8.76302292454056e-005,0.999999821186066,0.000706657068803906,-0.000186700955964625,0.999999642372131,-0.000908547372091562,2.19338244278333e-006,1,-5.71125895021396e-007,-0.1296276897192,0.600969791412354,-0.788690090179443,-0.129628911614418,0.600969791412354,-0.788689851760864,-0.185588464140892,0.600538790225983,-0.777759730815887,-0.185517281293869,0.600545704364777,-0.777771353721619,1.26383611132042e-006,1,-1.98604038814665e-006,1.2638348607652e-006,1,-1.98604288925708e-006,1.17298839086288e-006,1,-2.15284103433078e-006,9.91292836260982e-007,1,-2.48644300882006e-006,1.12756515591173e-006,1,-2.2362403342413e-006,0.000299596344120801,0.999999761581421,0.000615251658018678,8.08573968242854e-005,1,0.000142663018777967,-0.000438654591562226,0.999999284744263,-0.00111115211620927,-0.00117844226770103,0.999994933605194,-0.00296630966477096,8.08573968242854e-005,1,0.000142663018777967,2.15464569919277e-006,1,-1.19050298508228e-006,2.16612079384504e-006,1,-7.92748835465318e-007,-0.000438654591562226,0.999999284744263,-0.00111115211620927,0.594473719596863,0.601352453231812,0.533831655979156,0.551065444946289,0.600748419761658,0.579161643981934,0.551065564155579,0.600748419761658,0.579161643981934,0.573443949222565,0.601001501083374,0.556739807128906,0.673090934753418,0.599399983882904,0.433207154273987,0.594473719596863,0.601352453231812,0.533831655979156,
- 0.573443949222565,0.601001501083374,0.556739807128906,0.672813713550568,0.599397301673889,0.433641016483307,0.718259811401367,0.601528823375702,0.349665641784668,0.673090934753418,0.599399983882904,0.433207154273987,0.672813713550568,0.599397301673889,0.433641016483307,0.717410981655121,0.60152804851532,0.351405113935471,0.792549788951874,0.599694013595581,0.110599026083946,0.766627609729767,0.601871728897095,0.223679319024086,0.767309963703156,0.601870059967041,0.221331968903542,0.783231019973755,0.59862357378006,0.167925894260406,0.799492835998535,0.600675761699677,-0.000158816124894656,0.792549788951874,0.599694013595581,0.110599026083946,0.783231019973755,0.59862357378006,0.167925894260406,0.799498856067657,0.600667715072632,7.2435024776496e-005,0.797504782676697,0.601129412651062,-0.0512809902429581,0.799492835998535,0.600675761699677,-0.000158816124894656,0.799498856067657,0.600667715072632,7.2435024776496e-005,0.797504723072052,0.601129531860352,-0.0512796826660633,0.188265144824982,0.600454807281494,0.777180969715118,0.129631042480469,0.600973010063171,0.78868705034256,0.129630789160728,0.600972950458527,0.78868705034256,0.188211396336555,0.600447773933411,0.777199447154999,0.291333198547363,0.600219130516052,0.744890570640564,0.188265144824982,0.600454807281494,0.777180969715118,0.188211396336555,0.600447773933411,0.777199447154999,0.335176318883896,0.599630951881409,0.726704597473145,0.377438366413116,0.601195573806763,0.704346597194672,0.291333198547363,0.600219130516052,0.744890570640564,0.335176318883896,0.599630951881409,0.726704597473145,0.376136988401413,0.60119503736496,0.705043017864227,-3.0892667837179e-006,0.999999403953552,-0.00115618400741369,3.36668272211682e-005,0.999977111816406,0.00676538189873099,8.45905960886739e-005,0.999855518341064,0.0169985629618168,7.00504551787162e-006,0.999994277954102,0.0033826706930995,-9.27280563445265e-009,1,2.05037849809742e-007,-3.0892667837179e-006,0.999999403953552,-0.00115618400741369,7.00504551787162e-006,0.999994277954102,0.0033826706930995,-2.31960695096234e-009,1,5.12176150380128e-008,
- 1.22748389230765e-007,1,-4.63339119960438e-007,-5.14888789382439e-008,1,4.56187279951337e-007,-4.1058406452521e-008,1,3.64380440487366e-007,-3.45581270266848e-008,1,1.37705185920822e-007,6.59664010527194e-006,1,2.48288597504143e-006,1.22748389230765e-007,1,-4.63339119960438e-007,-3.45581270266848e-008,1,1.37705185920822e-007,2.34876097238157e-005,1,-4.21634322265163e-005,8.48557561994312e-008,1,-7.23180377804056e-008,0,1,0,0,1,0,5.24899022025238e-008,1,-4.58682301029967e-008,-2.29872987311808e-009,1,1.59495050500169e-009,8.48557561994312e-008,1,-7.23180377804056e-008,5.24899022025238e-008,1,-4.58682301029967e-008,9.1941984692312e-008,1,-6.37944594927831e-008,-2.04726447350367e-007,1,3.15711368159555e-008,1.26499315911133e-007,1,-3.2938540783789e-008,-0.000239416491240263,0.999999463558197,-0.00107287871651351,0.00332328397780657,0.999994397163391,0.000482071016449481,0.00434720423072577,0.999990522861481,0.000272889767074957,-2.04726447350367e-007,1,3.15711368159555e-008,0.00332328397780657,0.999994397163391,0.000482071016449481,0.000121679338917602,1,0.000256541708949953,-0.00421269284561276,0.999991118907928,0.000239529937971383,0.00434720423072577,0.999990522861481,0.000272889767074957,0.00332328397780657,0.999994397163391,0.000482071016449481,-5.83925547914532e-008,1,3.22630420157566e-008,-2.29872987311808e-009,1,1.59495050500169e-009,9.1941984692312e-008,1,-6.37944594927831e-008,9.47423905017786e-005,1,0.000173210501088761,8.60613624809048e-008,1,-3.14961710046191e-008,-5.83925547914532e-008,1,3.22630420157566e-008,9.47423905017786e-005,1,0.000173210501088761,-0.000544594426173717,0.999999046325684,-0.00133016612380743,-5.14888789382439e-008,1,4.56187279951337e-007,-9.27280563445265e-009,1,2.05037849809742e-007,-2.31960695096234e-009,1,5.12176150380128e-008,-4.1058406452521e-008,1,3.64380440487366e-007,3.23194240081648e-006,1,9.57476277108071e-006,6.59664010527194e-006,1,2.48288597504143e-006,2.34876097238157e-005,1,-4.21634322265163e-005,-0.000196867535123602,1,-1.01134719443507e-005,0,1,0,3.23194240081648e-006,1,9.57476277108071e-006,
- -0.000196867535123602,1,-1.01134719443507e-005,-0.00010057586041512,1,-3.09646711684763e-005,0,1,0,0,1,0,-0.00010057586041512,1,-3.09646711684763e-005,0,1,0,1.26499315911133e-007,1,-3.2938540783789e-008,8.60613624809048e-008,1,-3.14961710046191e-008,-0.000544594426173717,0.999999046325684,-0.00133016612380743,-0.000239416491240263,0.999999463558197,-0.00107287871651351,-0.999996900558472,0,0.00248814560472965,-0.999987602233887,0,0.00497627584263682,-0.999987661838531,0,0.00497627584263682,-0.999996900558472,0,0.00248814560472965,-0.999510586261749,1.39525246911631e-009,-0.0312825851142406,-0.999996900558472,0,0.00248814560472965,-0.999996900558472,0,0.00248814560472965,-0.999491274356842,1.38587508136112e-009,-0.0318959802389145,-0.990714371204376,1.77296163861307e-010,-0.135959535837173,-0.999510586261749,1.39525246911631e-009,-0.0312825851142406,-0.999491274356842,1.38587508136112e-009,-0.0318959802389145,-0.990632295608521,-1.87740087365107e-010,-0.1365567445755,-0.962465226650238,-1.78775092507522e-008,-0.271405041217804,-0.990714371204376,1.77296163861307e-010,-0.135959535837173,-0.990632295608521,-1.87740087365107e-010,-0.1365567445755,-0.970886766910553,-1.57963810920592e-008,-0.239539057016373,-0.929620683193207,-2.30154135749672e-008,-0.368517845869064,-0.962465226650238,-1.78775092507522e-008,-0.271405041217804,-0.970886766910553,-1.57963810920592e-008,-0.239539057016373,-0.941896498203278,-2.09293737896132e-008,-0.335903376340866,-0.894509255886078,-3.55786440309203e-008,-0.447049677371979,-0.929620683193207,-2.30154135749672e-008,-0.368517845869064,-0.941896498203278,-2.09293737896132e-008,-0.335903376340866,-0.894521296024323,-3.55139171404062e-008,-0.447025388479233,-0.894509255886078,-3.55786440309203e-008,-0.447049677371979,-0.894521296024323,-3.55139171404062e-008,-0.447025388479233,-0.831454575061798,-6.2427227831563e-009,-0.555592954158783,-0.831449687480927,-5.96767124605435e-009,-0.555600225925446,-0.723878681659698,-3.00411926446031e-008,-0.689927339553833,-0.831449687480927,-5.96767124605435e-009,-0.555600225925446,
- -0.831454575061798,-6.2427227831563e-009,-0.555592954158783,-0.756801247596741,-2.98488060934687e-008,-0.653645038604736,-0.639124393463135,-2.46630893485644e-008,-0.769103407859802,-0.723878681659698,-3.00411926446031e-008,-0.689927339553833,-0.756801247596741,-2.98488060934687e-008,-0.653645038604736,-0.664605736732483,-2.43666846699853e-008,-0.747194290161133,-0.569483280181885,2.48418423609564e-008,-0.82200300693512,-0.639124393463135,-2.46630893485644e-008,-0.769103407859802,-0.664605736732483,-2.43666846699853e-008,-0.747194290161133,-0.569479823112488,2.48200855423875e-008,-0.822005391120911,-0.569483280181885,2.48418423609564e-008,-0.82200300693512,-0.569479823112488,2.48200855423875e-008,-0.822005391120911,-0.480909496545792,-2.84772809777678e-008,-0.876770317554474,-0.480912566184998,-2.8363331239234e-008,-0.87676864862442,-0.0852362290024757,-1.46300571657321e-008,-0.996360778808594,-0.0495381839573383,-3.19416457728039e-008,-0.998772263526917,-0.0495398379862309,-3.19416422200902e-008,-0.998772203922272,-0.0673918724060059,-1.56271031670485e-008,-0.997726619243622,-0.136911481618881,-1.52436410161272e-008,-0.990583300590515,-0.0852362290024757,-1.46300571657321e-008,-0.996360778808594,-0.0673918724060059,-1.56271031670485e-008,-0.997726619243622,-0.119990758597851,-1.62491389232855e-008,-0.992775022983551,-0.251160979270935,-5.27855199550231e-008,-0.967945337295532,-0.136911481618881,-1.52436410161272e-008,-0.990583300590515,-0.119990758597851,-1.62491389232855e-008,-0.992775022983551,-0.202661365270615,-5.38537001659734e-008,-0.979249000549316,-0.391435116529465,-6.10315211702073e-008,-0.92020571231842,-0.251160979270935,-5.27855199550231e-008,-0.967945337295532,-0.202661365270615,-5.38537001659734e-008,-0.979249000549316,-0.345540404319763,-6.21854425730817e-008,-0.938403964042664,-0.480909496545792,-2.84772809777678e-008,-0.876770317554474,-0.391435116529465,-6.10315211702073e-008,-0.92020571231842,-0.345540404319763,-6.21854425730817e-008,-0.938403964042664,-0.480912566184998,-2.8363331239234e-008,-0.87676864862442,
- -0.994935870170593,0.057947188615799,0.082126222550869,-0.998415350914001,0.0348700247704983,0.0441698543727398,-0.99991250038147,0.0117236319929361,0.00612578075379133,-0.998415350914001,0.0348700247704983,0.0441698543727398,0.000611054769251496,0.0302625596523285,0.999541878700256,0.0006110435933806,0.0302625652402639,0.999541878700256,0.000611034163739532,0.0302625671029091,0.999541759490967,0.000611044408287853,0.0302625596523285,0.999541759490967,-0.147286936640739,0.961215734481812,-0.233175694942474,0.00204013544134796,0.754577875137329,-0.656207323074341,0.00264434958808124,0.999797463417053,-0.0199556890875101,0.0684085935354233,0.997596323490143,-0.0110376533120871,0.00204013544134796,0.754577875137329,-0.656207323074341,0.0584981292486191,0.94419276714325,-0.324157536029816,-0.0177859198302031,0.999800980091095,-0.00904496293514967,0.00264434958808124,0.999797463417053,-0.0199556890875101,0.237860426306725,0.962109327316284,-0.133297488093376,-0.325550884008408,0.895148754119873,0.304508566856384,-0.0193433966487646,0.999513566493988,0.0244637541472912,-0.131363213062286,0.991242587566376,-0.0134857026860118,-0.00236882269382477,0.874622046947479,0.48479962348938,0.107610940933228,0.894638001918793,0.433639138936996,0.00726502714678645,0.999659717082977,0.0250568185001612,-0.00178562733344734,0.999677658081055,0.0253275185823441,0.107610940933228,0.894638001918793,0.433639138936996,-0.147286936640739,0.961215734481812,-0.233175694942474,0.0684085935354233,0.997596323490143,-0.0110376533120871,0.00726502714678645,0.999659717082977,0.0250568185001612,1.34899016757117e-006,1,1.90252592346951e-006,1.17221168238757e-006,1,1.65573078447778e-006,9.34189017698372e-007,1,1.82627627509646e-006,1.01934119811631e-006,1,1.80004474259476e-006,0.000152536813402548,1,-0.000134493602672592,6.31245275144465e-005,1,-5.27763113495894e-005,1.17221168238757e-006,1,1.65573078447778e-006,1.34899016757117e-006,1,1.90252592346951e-006,2.33949367611785e-006,1,8.58623536714731e-007,2.5474980702711e-006,1,9.39756432671857e-007,2.20039578380238e-006,1,1.17640922780993e-006,
- 2.74468129646266e-006,1,1.34015976982482e-006,1.98488305613864e-006,1,5.26437986536621e-007,2.2581048142456e-006,1,5.95692370097822e-007,2.5474980702711e-006,1,9.39756432671857e-007,2.33949367611785e-006,1,8.58623536714731e-007,-3.83285907901154e-007,1,-1.01580106104393e-007,-3.75387912754377e-007,1,-9.90293429481426e-008,-0.00313621922396123,0.999994993209839,-0.000362523132935166,-2.94612107154535e-007,1,-4.66885339278633e-008,3.22440385502887e-008,1,1.18425944606315e-008,-5.88523334954516e-007,1,-2.17102723354401e-007,-3.75387912754377e-007,1,-9.90293429481426e-008,-3.83285907901154e-007,1,-1.01580106104393e-007,0.000260484492173418,1,-7.80735572334379e-005,5.51035482203588e-005,1,-9.09775408217683e-005,5.99190498178359e-005,1,-0.000191471292055212,0.000550882308743894,0.999999761581421,-0.000567201117519289,-2.13170267215901e-007,1,-3.00705522704448e-007,-1.87383449201661e-007,1,-2.64685354522953e-007,5.51035482203588e-005,1,-9.09775408217683e-005,0.000260484492173418,1,-7.80735572334379e-005,8.87731744114717e-007,1,2.34896424444742e-006,9.11285894744651e-007,1,2.41119528254785e-006,9.34189017698372e-007,1,1.82627627509646e-006,8.0266795521311e-007,1,1.61796754127863e-006,1.17221168238757e-006,1,1.65573078447778e-006,6.31245275144465e-005,1,-5.27763113495894e-005,1.59537057697889e-006,1,1.85509918537718e-006,1.0716894394136e-006,1,1.51421670580021e-006,6.31245275144465e-005,1,-5.27763113495894e-005,0.000104707141872495,1,-0.00011194634862477,2.13199814425025e-006,1,1.81790414899297e-006,1.59537057697889e-006,1,1.85509918537718e-006,2.00755835066957e-006,1,1.39480050620477e-006,1.90979926628643e-006,1,1.32665593355341e-006,2.20039578380238e-006,1,1.17640922780993e-006,1.6845458503667e-006,1,9.29570319385675e-007,2.5474980702711e-006,1,9.39756432671857e-007,2.2581048142456e-006,1,5.95692370097822e-007,2.6545565106062e-006,1,6.99851227636827e-007,2.55018130701501e-006,1,9.41300413614954e-007,-0.0150956381112337,0.999885737895966,-0.000840635504573584,2.27036684918858e-006,1,2.34163550771882e-007,-0.00752137694507837,0.999971330165863,-0.000868780189193785,
- -0.0301897339522839,0.999542772769928,-0.00168118509463966,0.209120914340019,0.601779818534851,-0.770798087120056,0.207934230566025,0.601768732070923,-0.771127641201019,0.178062260150909,0.601650655269623,-0.778659343719482,0.180461063981056,0.6016486287117,-0.778108477592468,0.273555845022202,0.601941168308258,-0.750222682952881,0.257662534713745,0.602039277553558,-0.755750477313995,0.207934230566025,0.601768732070923,-0.771127641201019,0.209120914340019,0.601779818534851,-0.770798087120056,-0.58327728509903,0.00318772601895034,0.812266826629639,-0.554508149623871,0.00318770739249885,0.832172214984894,-0.525271952152252,-1.04308128356934e-006,0.850934445858002,-0.525273501873016,-9.25734639167786e-007,0.85093355178833,0.602635145187378,0.602155208587646,-0.523679435253143,0.602174699306488,0.602146446704865,-0.524218678474426,0.591410994529724,0.601696729660034,-0.536837100982666,0.593146026134491,0.601694524288177,-0.534921944141388,0.671394288539886,0.59987485408783,-0.435178101062775,0.644045650959015,0.600610017776489,-0.473785549402237,0.602174699306488,0.602146446704865,-0.524218678474426,0.602635145187378,0.602155208587646,-0.523679435253143,-0.93568617105484,-0.00136716978158802,0.35283100605011,-0.915308237075806,-3.08267772197723e-007,0.402754187583923,-0.915304005146027,-4.09781968357947e-008,0.402763962745667,-0.935681700706482,-0.00136715394910425,0.352842748165131,2.13199814425025e-006,1,1.81790414899297e-006,0.000104707141872495,1,-0.00011194634862477,1.90979926628643e-006,1,1.32665593355341e-006,2.00755835066957e-006,1,1.39480050620477e-006,-0.611153244972229,-6.27711415290833e-007,0.791512370109558,-0.611158788204193,-1.04494392871857e-006,0.79150801897049,-0.554508149623871,0.00318770739249885,0.832172214984894,-0.58327728509903,0.00318772601895034,0.812266826629639,8.63173045217991e-006,1,-6.95852577337064e-006,9.04356147657381e-006,1,-7.7074701039237e-006,9.45540159591474e-006,1,-8.45643080538139e-006,9.45541069086175e-006,1,-8.45644808578072e-006,9.18084424483823e-006,1,-7.95713003753917e-006,
- -0.99860805273056,0.0508158020675182,-0.014134556055069,-0.998155295848846,0.0276110302656889,-0.0540713369846344,-0.995572805404663,0.0043473532423377,-0.0938927382230759,-0.998155295848846,0.0276110302656889,-0.0540713369846344,-4.01596298615914e-006,1,-3.60852709491155e-007,-4.01596298615914e-006,1,-3.60852709491155e-007,-4.01596207666444e-006,1,-3.60852936864831e-007,-4.01596116716973e-006,1,-3.60853164238506e-007,-4.01596207666444e-006,1,-3.60852823177993e-007,-2.60082771319503e-007,1,-4.59254806628451e-007,-1.02379907218619e-007,1,-2.00107820091944e-007,-1.87383449201661e-007,1,-2.64685354522953e-007,-2.13170267215901e-007,1,-3.00705522704448e-007,8.0266795521311e-007,1,1.61796754127863e-006,9.34189017698372e-007,1,1.82627627509646e-006,1.17221168238757e-006,1,1.65573078447778e-006,1.0716894394136e-006,1,1.51421670580021e-006,0.695633888244629,0.600764691829681,-0.393923103809357,0.695631563663483,0.600764691829681,-0.393927127122879,0.644045650959015,0.600610017776489,-0.473785549402237,0.671394288539886,0.59987485408783,-0.435178101062775,-4.24119917852295e-007,1,-2.07087410331042e-007,-3.44564341503428e-007,1,-1.84296851557519e-007,-5.88523334954516e-007,1,-2.17102723354401e-007,3.22440385502887e-008,1,1.18425944606315e-008,1.6845458503667e-006,1,9.29570319385675e-007,2.20039578380238e-006,1,1.17640922780993e-006,2.5474980702711e-006,1,9.39756432671857e-007,2.55018130701501e-006,1,9.41300413614954e-007,0.287426978349686,0.60209196805954,-0.744896709918976,0.290162444114685,0.602094829082489,-0.743833124637604,0.257662534713745,0.602039277553558,-0.755750477313995,0.273555845022202,0.601941168308258,-0.750222682952881,-9.00272279977798e-005,0.999185085296631,0.0403641015291214,-8.42120498418808e-005,0.99918532371521,0.0403574109077454,-0.00011000782251358,0.999184131622314,0.0403870604932308,-0.000149961560964584,0.999182283878326,0.0404329895973206,-0.000122904792078771,0.999183595180511,0.0404018871486187,0.000449146522441879,0.99999988079071,-0.000467388890683651,0.000104707141872495,1,-0.00011194634862477,
- 6.31245275144465e-005,1,-5.27763113495894e-005,0.000152536813402548,1,-0.000134493602672592,-6.04511626534077e-007,1,5.47794297744986e-006,-6.87510521402146e-007,1,6.23005917077535e-006,-7.70512997405604e-007,1,6.98220901540481e-006,-9.365148798679e-007,1,8.48647960083326e-006,-6.87513079355995e-007,1,6.23008281763759e-006,-4.38510681988191e-007,1,3.97368148696842e-006,1.95113852896611e-006,1,3.09192216718657e-007,-0.00752137694507837,0.999971330165863,-0.000868780189193785,2.2581048142456e-006,1,5.95692370097822e-007,1.98488305613864e-006,1,5.26437986536621e-007,-0.00752137694507837,0.999971330165863,-0.000868780189193785,2.27036684918858e-006,1,2.34163550771882e-007,2.6545565106062e-006,1,6.99851227636827e-007,2.2581048142456e-006,1,5.95692370097822e-007,0.00261958362534642,0.999996662139893,-0.000107640022179112,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,4.9066173232859e-005,1,1.73491025634576e-006,0,1,2.43462136495509e-006,0.002505112439394,0.999996900558472,-0.000335430289851502,0.00093490252038464,0.999999642372131,-0.00012362832785584,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,0.00261958362534642,0.999996662139893,-0.000107640022179112,0.00263296789489686,0.999996542930603,-0.000357905839337036,0.000976669136434793,0.999999523162842,-0.000143285389640369,-0.000193956482689828,1,5.02364491694607e-005,-0.000818025728221983,0.999999701976776,0.000169021703186445,0.00297100585885346,0.999995589256287,-0.000128849118482322,0.00107470701914281,0.999999463558197,-2.98322211165214e-005,0.000976669136434793,0.999999523162842,-0.000143285389640369,0.00263296789489686,0.999996542930603,-0.000357905839337036,0.000126616141642444,1,1.82664689418743e-006,0.00012661145592574,1,1.49442462316074e-006,0.000126602841191925,1,8.83959842212789e-007,4.9066173232859e-005,1,1.73491025634576e-006,6.59622164675966e-005,1,1.69562815699464e-006,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,0.00093490252038464,0.999999642372131,-0.00012362832785584,2.43647320985474e-007,1,2.26940983338864e-006,
- 8.64171809666914e-008,1,2.14928377317847e-006,8.87731744114717e-007,1,2.34896424444742e-006,6.31706825515721e-007,1,2.37926064983185e-006,-0.000157781993038952,1,4.37325543316547e-005,9.11285894744651e-007,1,2.41119528254785e-006,0.79454380273819,0.601009726524353,-0.0865312516689301,0.794425487518311,0.601001739501953,-0.0876656100153923,0.789409101009369,0.601278007030487,-0.123685076832771,0.789683282375336,0.601276934146881,-0.121928513050079,0.799210429191589,0.600832462310791,-0.0162189789116383,0.798680126667023,0.600862741470337,-0.0327755883336067,0.794425487518311,0.601001739501953,-0.0876656100153923,0.79454380273819,0.601009726524353,-0.0865312516689301,-0.0123255280777812,0.0433755405247211,-0.998982787132263,-0.0130918379873037,0.0429112203419209,-0.998993158340454,-0.0138581292703748,0.042446855455637,-0.999002575874329,-0.0130918333306909,0.0429112128913403,-0.998993158340454,-4.85124246552004e-006,1,0,-1.66493725828332e-006,1,0,9.96047333501338e-007,1,-0,-4.2773126551765e-007,1,0,-1.13962471459672e-006,1,0,-2.37682797887828e-006,1,0,-0.953332841396332,-4.60538956303935e-007,0.301921278238297,-0.95333731174469,-8.5681676864624e-008,0.301907420158386,-0.93568617105484,-0.00136716978158802,0.35283100605011,-0.935681700706482,-0.00136715394910425,0.352842748165131,0,1,-3.29722183778358e-007,6.41289298073389e-005,0.999996364116669,0.0027005230076611,0.00107470701914281,0.999999463558197,-2.98322211165214e-005,0.00297100585885346,0.999995589256287,-0.000128849118482322,6.59622164675966e-005,1,1.69562815699464e-006,4.9066173232859e-005,1,1.73491025634576e-006,0.000942787737585604,0.999999642372131,-1.69589457073016e-005,8.64171809666914e-008,1,2.14928377317847e-006,0.799733579158783,0.60035514831543,3.87114005206968e-006,0.799733579158783,0.60035514831543,2.70979626293411e-006,0.798680126667023,0.600862741470337,-0.0327755883336067,0.799210429191589,0.600832462310791,-0.0162189789116383,1.10323969693127e-006,1,-2.85793277043922e-007,1.10324253910221e-006,1,-2.85794044430077e-007,1.28711178604135e-006,1,-3.33425191456627e-007,
- 1.65485607794835e-006,1,-4.28689020282036e-007,1.37904646635434e-006,1,-3.57240764969902e-007,-0.000668570341076702,0.999999821186066,0.000141014155815355,-0.000157781993038952,1,4.37325543316547e-005,0.00093490252038464,0.999999642372131,-0.00012362832785584,0.002505112439394,0.999996900558472,-0.000335430289851502,-0.000157781993038952,1,4.37325543316547e-005,6.31706825515721e-007,1,2.37926064983185e-006,2.43647320985474e-007,1,2.26940983338864e-006,0.00093490252038464,0.999999642372131,-0.00012362832785584,-0.00944408588111401,0.999937355518341,-0.00601328769698739,0.00547404726967216,0.999824464321136,0.0179193615913391,-0.00659322738647461,0.999817073345184,0.0179577544331551,0.0126216318458319,0.999901831150055,-0.0061007384210825,0.000600207189563662,0.999904274940491,-0.0138233993202448,-0.662203013896942,0.60135281085968,0.447059392929077,-0.695635974407196,0.60074907541275,0.393943220376968,-0.695633828639984,0.600749135017395,0.3939468562603,-0.679319441318512,0.601001858711243,0.42109626531601,-0.58366596698761,0.599397122859955,0.547774791717529,-0.662203013896942,0.60135281085968,0.447059392929077,-0.679319441318512,0.601001858711243,0.42109626531601,-0.584027349948883,0.599394679069519,0.547392070293427,-0.513594746589661,0.601521790027618,0.611875891685486,-0.58366596698761,0.599397122859955,0.547774791717529,-0.584027349948883,0.599394679069519,0.547392070293427,-0.515091478824615,0.601520955562592,0.610617280006409,-0.297315806150436,0.600069224834442,0.742644131183624,-0.403138309717178,0.601873874664307,0.689367473125458,-0.40103468298912,0.601872205734253,0.690594792366028,-0.351739585399628,0.598932325839996,0.719415962696075,-0.158054828643799,0.599913239479065,0.784297704696655,-0.297315806150436,0.600069224834442,0.742644131183624,-0.351739585399628,0.598932325839996,0.719415962696075,-0.159078404307365,0.59991842508316,0.78408670425415,-0.0762253180146217,0.60150158405304,0.795226812362671,-0.158054828643799,0.599913239479065,0.784297704696655,-0.159078404307365,0.59991842508316,0.78408670425415,
- -0.0782628804445267,0.601500391960144,0.795029640197754,-0.79890900850296,0.600819647312164,0.0275726560503244,-0.799746930599213,0.600337326526642,7.74249372170743e-007,-0.799746930599213,0.600337326526642,1.54849874434149e-006,-0.798917829990387,0.600802600383759,0.0276872254908085,-0.793354690074921,0.599995374679565,0.102927215397358,-0.79890900850296,0.600819647312164,0.0275726560503244,-0.798917829990387,0.600802600383759,0.0276872254908085,-0.786361277103424,0.599430441856384,0.149396046996117,-0.774914622306824,0.601201951503754,0.195099011063576,-0.793354690074921,0.599995374679565,0.102927215397358,-0.786361277103424,0.599430441856384,0.149396046996117,-0.775271654129028,0.601201355457306,0.193677201867104,-3.1984529869078e-007,1,-3.29888045769167e-008,-0.00421269284561276,0.999991118907928,0.000239529937971383,0.000121679338917602,1,0.000256541708949953,-0.00313621922396123,0.999994993209839,-0.000362523132935166,-5.13228997078841e-007,1,-1.35310145310541e-007,-3.1984529869078e-007,1,-3.29888045769167e-008,-0.00313621922396123,0.999994993209839,-0.000362523132935166,-3.75387912754377e-007,1,-9.90293429481426e-008,2.05006230658e-007,1,1.13126780831863e-007,-7.00256350683048e-007,1,-2.58472454106595e-007,-5.88523334954516e-007,1,-2.17102723354401e-007,-3.44564341503428e-007,1,-1.84296851557519e-007,-2.94683081847325e-006,1,3.84841041523032e-006,2.05006230658e-007,1,1.13126780831863e-007,-3.44564341503428e-007,1,-1.84296851557519e-007,3.62622486136388e-005,1,3.10779141727835e-005,-5.87267869889274e-008,1,-1.18378025604216e-007,-1.72179241531012e-007,1,-2.43284659973142e-007,-1.87383449201661e-007,1,-2.64685354522953e-007,-1.02379907218619e-007,1,-2.00107820091944e-007,-8.08982107969314e-008,1,-2.14075114968182e-007,-5.87267869889274e-008,1,-1.18378025604216e-007,-1.02379907218619e-007,1,-2.00107820091944e-007,-4.03508444435374e-008,1,-1.06774088237671e-007,0,1,-4.07793322665384e-007,-7.51778017615834e-009,1,-1.71176750995983e-007,0.00107470701914281,0.999999463558197,-2.98322211165214e-005,6.41289298073389e-005,0.999996364116669,0.0027005230076611,
- 0.00019562550005503,0.999988198280334,0.00486220512539148,0,1,-4.07793322665384e-007,6.41289298073389e-005,0.999996364116669,0.0027005230076611,0.000235832150792703,0.99997341632843,0.00729319406673312,0.00018506110063754,0.999992787837982,0.00378374778665602,0.00019562550005503,0.999988198280334,0.00486220512539148,6.41289298073389e-005,0.999996364116669,0.0027005230076611,-1.02853853434226e-007,1,-3.87364480047836e-007,-8.08982107969314e-008,1,-2.14075114968182e-007,-4.03508444435374e-008,1,-1.06774088237671e-007,-0.000193956482689828,1,5.02364491694607e-005,-2.21071587702681e-008,1,-2.00344587142354e-007,-1.02853853434226e-007,1,-3.87364480047836e-007,-0.000193956482689828,1,5.02364491694607e-005,0.000976669136434793,0.999999523162842,-0.000143285389640369,-7.00256350683048e-007,1,-2.58472454106595e-007,-5.13228997078841e-007,1,-1.35310145310541e-007,-3.75387912754377e-007,1,-9.90293429481426e-008,-5.88523334954516e-007,1,-2.17102723354401e-007,-7.63973093853565e-006,1,-2.38741176872281e-006,-2.94683081847325e-006,1,3.84841041523032e-006,3.62622486136388e-005,1,3.10779141727835e-005,5.99190498178359e-005,1,-0.000191471292055212,7.07001618138747e-007,1,-1.04154241853394e-006,-7.63973093853565e-006,1,-2.38741176872281e-006,5.99190498178359e-005,1,-0.000191471292055212,5.51035482203588e-005,1,-9.09775408217683e-005,-1.72179241531012e-007,1,-2.43284659973142e-007,7.07001618138747e-007,1,-1.04154241853394e-006,5.51035482203588e-005,1,-9.09775408217683e-005,-1.87383449201661e-007,1,-2.64685354522953e-007,-7.51778017615834e-009,1,-1.71176750995983e-007,-2.21071587702681e-008,1,-2.00344587142354e-007,0.000976669136434793,0.999999523162842,-0.000143285389640369,0.00107470701914281,0.999999463558197,-2.98322211165214e-005,0.123019978404045,0,-0.992404282093048,0.0556002333760262,0,-0.998453140258789,0.0555992014706135,0,-0.998453259468079,0.0893428847193718,0,-0.996000945568085,0.253015428781509,6.48015685555947e-008,-0.967462241649628,0.123019978404045,0,-0.992404282093048,0.0893428847193718,0,-0.996000945568085,0.204957768321037,6.41415311974924e-008,-0.978770911693573,
- 0.393597215414047,4.13335001780979e-008,-0.919282972812653,0.253015428781509,6.48015685555947e-008,-0.967462241649628,0.204957768321037,6.41415311974924e-008,-0.978770911693573,0.347342669963837,3.99048651900102e-008,-0.937738299369812,0.496976464986801,-5.71903591151113e-008,-0.867764055728912,0.393597215414047,4.13335001780979e-008,-0.919282972812653,0.347342669963837,3.99048651900102e-008,-0.937738299369812,0.46810856461525,-5.82398698156794e-008,-0.883671045303345,0.583225548267365,-2.53056899879311e-008,-0.812310397624969,0.496976464986801,-5.71903591151113e-008,-0.867764055728912,0.46810856461525,-5.82398698156794e-008,-0.883671045303345,0.554563581943512,-2.59892676268692e-008,-0.832141399383545,0.650867283344269,2.41081572482926e-008,-0.759191572666168,0.583225548267365,-2.53056899879311e-008,-0.812310397624969,0.554563581943512,-2.59892676268692e-008,-0.832141399383545,0.650847375392914,2.41918893806314e-008,-0.759208679199219,0.650867283344269,2.41081572482926e-008,-0.759191572666168,0.650847375392914,2.41918893806314e-008,-0.759208679199219,0.740846395492554,1.50934589271401e-008,-0.671674489974976,0.740853190422058,1.4428939820732e-008,-0.671667039394379,0.845041871070862,0,-0.534700155258179,0.740853190422058,1.4428939820732e-008,-0.671667039394379,0.740846395492554,1.50934589271401e-008,-0.671674489974976,0.817842781543732,0,-0.575441777706146,0.901276111602783,2.80825958043351e-008,-0.43324539065361,0.845041871070862,0,-0.534700155258179,0.817842781543732,0,-0.575441777706146,0.886209428310394,2.98804998521973e-008,-0.463284939527512,0.935677886009216,5.3461688409584e-009,-0.352855533361435,0.901276111602783,2.80825958043351e-008,-0.43324539065361,0.886209428310394,2.98804998521973e-008,-0.463284939527512,0.935682237148285,5.31241894918821e-009,-0.352843970060349,0.935677886009216,5.3461688409584e-009,-0.352855533361435,0.935682237148285,5.31241894918821e-009,-0.352843970060349,0.967296361923218,-1.23097994020327e-008,-0.253648996353149,0.967298805713654,-1.23531984641545e-008,-0.253639727830887,0.999972462654114,0,-0.00742752756923437,
- 0.999889671802521,0,-0.0148546444252133,0.999889731407166,0,-0.0148546453565359,0.999972462654114,0,-0.00742752756923437,1,0,0,0.999972462654114,0,-0.00742752756923437,0.999972462654114,0,-0.00742752756923437,1,0,0,0.999128758907318,1.79773751440848e-009,-0.0417337156832218,1,0,0,1,0,0,0.999790847301483,9.04406383117617e-010,-0.0204538591206074,0.987421035766602,6.9033836425092e-009,-0.158113285899162,0.999128758907318,1.79773751440848e-009,-0.0417337156832218,0.999790847301483,9.04406383117617e-010,-0.0204538591206074,0.993909418582916,4.90870322167325e-009,-0.110200598835945,0.967296361923218,-1.23097994020327e-008,-0.253648996353149,0.987421035766602,6.9033836425092e-009,-0.158113285899162,0.993909418582916,4.90870322167325e-009,-0.110200598835945,0.967298805713654,-1.23531984641545e-008,-0.253639727830887,0.00606056628748775,0.0300849042832851,-0.999529004096985,0.00551765784621239,0.030414005741477,-0.99952220916748,0.00497474567964673,0.0307430922985077,-0.999514937400818,0.00551765644922853,0.030414005741477,-0.99952220916748,-0.994154572486877,0.0521073490381241,-0.0945599898695946,-0.998079419136047,0.0288939923048019,-0.0547968745231628,-0.999873042106628,0.00561894476413727,-0.0149167533963919,-0.998079419136047,0.0288939997553825,-0.0547968782484531,0.150615647435188,0.964705586433411,-0.216005340218544,-0.155032619833946,0.911041378974915,0.382058203220367,0.00547404726967216,0.999824464321136,0.0179193615913391,-0.00944408588111401,0.999937355518341,-0.00601328769698739,-0.155032619833946,0.911041378974915,0.382058203220367,0.10078576952219,0.907160639762878,0.408536344766617,-0.00659322738647461,0.999817073345184,0.0179577544331551,0.00547404726967216,0.999824464321136,0.0179193615913391,0.10078576952219,0.907160639762878,0.408536344766617,-0.149020731449127,0.964608907699585,-0.217537328600883,0.0126216318458319,0.999901831150055,-0.0061007384210825,-0.00659322738647461,0.999817073345184,0.0179577544331551,-0.149020731449127,0.964608907699585,-0.217537328600883,0.00185647665057331,0.786212742328644,-0.617953181266785,
- 0.000600207189563662,0.999904274940491,-0.0138233993202448,0.0126216318458319,0.999901831150055,-0.0061007384210825,0.00185647665057331,0.786212742328644,-0.617953181266785,0.150615647435188,0.964705586433411,-0.216005340218544,-0.00944408588111401,0.999937355518341,-0.00601328769698739,0.000600207189563662,0.999904274940491,-0.0138233993202448
- }
- BinormalsW: *7160 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *21480 {
- 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,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,
- -0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,
- 0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,
- 0,-0,0,0,-0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,-0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,
- 0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,
- 0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,
- 0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,-0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,
- -0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,
- -0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,
- 0,0,0,-0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,
- 0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,
- 0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,
- -0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,
- 0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,
- 0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,
- 0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,0,0,-0,0,0,-0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,-0,0,0,0,-0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,0,0,0,-0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0.00545808533206582,0.999964833259583,-0.00636589620262384,0.177343979477882,0.962231993675232,-0.206539899110794,0.270549714565277,0.933236181735992,-0.236374765634537,0.236091449856758,0.945412874221802,-0.224622905254364,-0.00912785343825817,0.999880194664001,0.0125029375776649,-0.167581290006638,0.957031965255737,0.236656650900841,0.177343979477882,0.962231993675232,-0.206539899110794,0.00545808533206582,0.999964833259583,-0.00636589620262384,0.00233923876658082,0.999763369560242,-0.0216299183666706,
- 0.029795840382576,0.962001860141754,-0.271412283182144,0.114800222218037,0.881625354290009,-0.45777490735054,0.0701621845364571,0.94107860326767,-0.330829977989197,-0.00101455149706453,0.999708771705627,0.024112505838275,-0.00607952475547791,0.989215552806854,0.146341010928154,0.029795840382576,0.962001860141754,-0.271412283182144,0.00233923876658082,0.999763369560242,-0.0216299183666706,0.000736419693566859,-0.999870598316193,-0.0160744823515415,0.00833600759506226,-0.982879459857941,-0.184061542153358,-0.00105993484612554,-0.859084665775299,-0.511832535266876,-0,-0.949104487895966,-0.314961552619934,-0.00299368472769856,-0.99963366985321,0.0269014239311218,-0.0174460168927908,-0.987787425518036,0.154827907681465,0.00833600759506226,-0.982879459857941,-0.184061542153358,0.000736419693566859,-0.999870598316193,-0.0160744823515415,0.00763745093718171,-0.999917507171631,-0.0103308279067278,0.136544063687325,-0.971696496009827,-0.192773580551147,0.257514744997025,-0.826198935508728,-0.501080393791199,0.258079290390015,-0.853093683719635,-0.453460395336151,-0.0763211101293564,-0.993103265762329,0.0890000984072685,-0.127607345581055,-0.980627238750458,0.148615509271622,0.136544063687325,-0.971696496009827,-0.192773580551147,0.00763745093718171,-0.999917507171631,-0.0103308279067278,0.18082669377327,0.975479185581207,-0.125467270612717,0.352782011032104,0.903119504451752,-0.244785860180855,0.270549714565277,0.933236181735992,-0.236374765634537,-0,1,0,0.177343979477882,0.962231993675232,-0.206539899110794,-0.167581290006638,0.957031965255737,0.236656650900841,-0.187638580799103,0.94568145275116,0.26547771692276,0.113755635917187,0.984641253948212,-0.132443711161613,-0.167581290006638,0.957031965255737,0.236656650900841,-0.241926074028015,0.848590731620789,0.470495223999023,-0.00962747354060411,0.999765634536743,0.0193935930728912,-0.187638580799103,0.94568145275116,0.26547771692276,-0,1,0,0.0478175953030586,0.990835607051849,-0.126326113939285,0.114800222218037,0.881625354290009,-0.45777490735054,0.0520925261080265,0.97909289598465,-0.196630582213402,
- 0.029795840382576,0.962001860141754,-0.271412283182144,-0.00607952475547791,0.989215552806854,0.146341010928154,-0,1,0,0.0184686221182346,0.985623598098755,-0.167943686246872,0.000998101895675063,0.979678988456726,0.200569555163383,0.000488016870804131,0.983178973197937,0.182644411921501,0.000788178760558367,0.924737751483917,0.380604088306427,0.00195563887245953,0.919541776180267,0.392987549304962,0.888730406761169,0.456758320331573,-0.0391176380217075,0.94113165140152,0.337973058223724,-0.00674579013139009,0.962057173252106,0.270467191934586,0.0359642133116722,-0.177893772721291,0.983914613723755,0.0163048822432756,0.981845855712891,-0.182211875915527,-0.0527035221457481,-0.799525558948517,0.600626170635223,0.00264333724044263,-0.798687100410461,0.601266741752625,-0.0240257754921913,-0.800068795681,0.599210560321808,0.0289232116192579,-0.800068795681,0.599210679531097,0.0289222188293934,-0.789469540119171,0.600530028343201,-0.126891389489174,-0.789554059505463,0.600554466247559,-0.126248449087143,-0.798687100410461,0.601266741752625,-0.0240257754921913,-0.799525558948517,0.600626170635223,0.00264333724044263,-0.929588437080383,-0.00318799703381956,-0.368585228919983,-0.941910564899445,-0.00318795419298112,-0.335848689079285,-0.953006744384766,1.50874271298562e-007,-0.302949368953705,-0.953011751174927,1.20885670185089e-006,-0.302933484315872,-0.668159544467926,0.601883828639984,-0.437377154827118,-0.667918682098389,0.601889669895172,-0.437736809253693,-0.71082478761673,0.599351048469543,-0.368111938238144,-0.711599409580231,0.599266946315765,-0.366749823093414,-0.575908541679382,0.599399566650391,-0.555922210216522,-0.598871409893036,0.600367605686188,-0.530011177062988,-0.667918682098389,0.601889669895172,-0.437736809253693,-0.668159544467926,0.601883828639984,-0.437377154827118,-0.612988173961639,0.00136599107645452,-0.790090978145599,-0.612961411476135,1.06170787717019e-007,-0.790112972259521,-0.612958788871765,1.90921127796173e-007,-0.790114939212799,-0.61298805475235,0.00136475812178105,-0.790091037750244,-0.00962747354060411,0.999765634536743,0.0193935930728912,
- -0.241926074028015,0.848590731620789,0.470495223999023,0.0478175953030586,0.990835607051849,-0.126326113939285,-0,1,0,-0.916220784187317,2.42143904927161e-008,-0.40067395567894,-0.916218519210815,3.53902549932172e-007,-0.400679081678391,-0.941910564899445,-0.00318795419298112,-0.335848689079285,-0.929588437080383,-0.00318799703381956,-0.368585228919983,-0.967031896114349,0,-0.254655420780182,-0.967031896114349,0,-0.254655420780182,-0.967031896114349,4.94603341394395e-007,-0.254655420780182,-0.967031896114349,9.8920668278879e-007,-0.254655420780182,-0.967031896114349,3.29735485138372e-007,-0.25465539097786,-0.864371538162231,-0.50252377986908,0.0182126555591822,-0.864371418952942,-0.502523362636566,0.0182290468364954,-0.864371359348297,-0.502522885799408,0.0182454362511635,-0.864371418952942,-0.502523362636566,0.0182290468364954,-0.655196070671082,5.6843418860808e-014,-0.755458950996399,-0.655196070671082,5.6843418860808e-014,-0.755458950996399,-0.654378473758698,-0.0499435402452946,-0.754516065120697,0.651927530765533,0.099762499332428,0.751690030097961,-0.65483295917511,-0.0332910753786564,-0.755040168762207,0,-1,-0,-0.169464841485024,-0.974346995353699,0.148086607456207,-0.127607345581055,-0.980627238750458,0.148615509271622,-0.0763211101293564,-0.993103265762329,0.0890000984072685,-0,1,0,0.270549714565277,0.933236181735992,-0.236374765634537,0.177343979477882,0.962231993675232,-0.206539899110794,0.113755635917187,0.984641253948212,-0.132443711161613,-0.551044464111328,0.600760519504547,-0.579169154167175,-0.551054775714874,0.600760519504547,-0.579159319400787,-0.598871409893036,0.600367605686188,-0.530011177062988,-0.575908541679382,0.599399566650391,-0.555922210216522,-0.0606093406677246,-0.956356525421143,0.285847574472427,-0.0909563004970551,-0.927559316158295,0.362437278032303,-0.0174460168927908,-0.987787425518036,0.154827907681465,-0.00299368472769856,-0.99963366985321,0.0269014239311218,0.0520925261080265,0.97909289598465,-0.196630582213402,0.114800222218037,0.881625354290009,-0.45777490735054,0.029795840382576,0.962001860141754,-0.271412283182144,
- 0.0184686221182346,0.985623598098755,-0.167943686246872,-0.774459898471832,0.59880667924881,-0.204064875841141,-0.774841248989105,0.598921060562134,-0.202274173498154,-0.789554059505463,0.600554466247559,-0.126248449087143,-0.789469540119171,0.600530028343201,-0.126891389489174,-0.891599416732788,-1.17113813757896e-005,-0.452825158834457,-0.891599357128143,-1.27730891108513e-005,-0.452825099229813,-0.891599357128143,-1.49914994835854e-005,-0.452825129032135,-0.891599476337433,-2.15480085898889e-005,-0.452824890613556,-0.891599416732788,-1.6100702850963e-005,-0.452825039625168,-0.275877386331558,0.829831957817078,0.485047101974487,-0.241926074028015,0.848590731620789,0.470495223999023,-0.167581290006638,0.957031965255737,0.236656650900841,-0.00912785343825817,0.999880194664001,0.0125029375776649,-0.967539608478546,0.252719700336456,0,0.707106828689575,-0.707106828689575,-0,-0.967539668083191,0.252719432115555,0,-1,0,0,-1,-5.02518196299206e-006,0,-1,7.91172851677402e-007,0,-0,0.949104607105255,0.314961314201355,0.000788178760558367,0.924737751483917,0.380604088306427,-0.00607952475547791,0.989215552806854,0.146341010928154,-0.00101455149706453,0.999708771705627,0.024112505838275,0.000788178760558367,0.924737751483917,0.380604088306427,0.000488016870804131,0.983178973197937,0.182644411921501,-0,1,0,-0.00607952475547791,0.989215552806854,0.146341010928154,-0.00160140625666827,0.9999960064888,-0.00233847415074706,0.181875467300415,0.982152700424194,-0.0479306168854237,0.538120865821838,0.84059476852417,-0.0618589408695698,0.285743743181229,0.957304298877716,-0.0438082925975323,-0.0202680360525846,0.99978631734848,0.00406028749421239,-0.147756099700928,0.98759514093399,0.0531406924128532,0.181875467300415,0.982152700424194,-0.0479306168854237,-0.00160140625666827,0.9999960064888,-0.00233847415074706,0.0172581393271685,-0.999848604202271,-0.00224158307537436,0.137699663639069,-0.989251613616943,-0.0491948574781418,0.42385470867157,-0.876741290092468,-0.227314963936806,0.259897828102112,-0.957328379154205,-0.126394271850586,
- 0.00159590295515954,-0.999994397163391,0.00295305787585676,-0.124010495841503,-0.991727590560913,0.0331347025930882,0.137699663639069,-0.989251613616943,-0.0491948574781418,0.0172581393271685,-0.999848604202271,-0.00224158307537436,3.15861288981978e-005,1,0.00041259202407673,2.04936386580812e-005,1,0.000413172063417733,0.186472505331039,0.982415795326233,-0.0093446122482419,0.538120865821838,0.84059476852417,-0.0618589408695698,0.277441829442978,0.960339844226837,-0.0278104227036238,0.181875467300415,0.982152700424194,-0.0479306168854237,-0.147756099700928,0.98759514093399,0.0531406924128532,-0,1,0,-0,1,0,-0.18497109413147,0.974327445030212,0.128342881798744,-0.172851204872131,0.9803067445755,0.0955052003264427,-0.365704596042633,0.909824073314667,0.196164339780808,-0.36044180393219,0.898627519607544,0.250100791454315,-0.326743811368942,0.59999144077301,-0.730238914489746,-0.285588353872299,0.601123511791229,-0.746384501457214,-0.36609473824501,0.600196063518524,-0.711153507232666,-0.367032915353775,0.600158393383026,-0.710701644420624,-0.187711015343666,0.600561797618866,-0.77723240852356,-0.187674820423126,0.600552797317505,-0.777248024940491,-0.285588353872299,0.601123511791229,-0.746384501457214,-0.326743811368942,0.59999144077301,-0.730238914489746,-0.0331520289182663,0.518783450126648,-0.85426265001297,-0.0225696638226509,0.518352806568146,-0.854869067668915,-0.0119847673922777,0.517863690853119,-0.855379223823547,-0.0225696600973606,0.518352806568146,-0.85486900806427,-0.10565247386694,1.11022302462516e-016,-0.994403183460236,-0.105652458965778,9.2261876716293e-007,-0.994403123855591,-0.10565248131752,0,-0.994403183460236,-0.10565247386694,-8.1558903275436e-007,-0.994403123855591,-0.105652466416359,-5.2146228881611e-006,-0.994403123855591,-0.10565247386694,-8.1558903275436e-007,-0.994403183460236,-0.524353563785553,1.38767063617706e-007,-0.851500630378723,-0.524343550205231,-1.65775418281555e-007,-0.851506888866425,-0.524305582046509,0.00136464147362858,-0.851529181003571,-0.524312853813171,0.00136584439314902,-0.851524651050568,
- -0.246414110064507,-0.968455970287323,0.0370567664504051,-0.323753207921982,-0.945422291755676,0.036887314170599,-0.124010495841503,-0.991727590560913,0.0331347025930882,0.00159590295515954,-0.999994397163391,0.00295305787585676,0.277441829442978,0.960339844226837,-0.0278104227036238,0.538120865821838,0.84059476852417,-0.0618589408695698,0.181875467300415,0.982152700424194,-0.0479306168854237,-0,1,0,-0.129628285765648,0.600969731807709,-0.788689911365509,-0.129629984498024,0.600969791412354,-0.788689732551575,-0.187674820423126,0.600552797317505,-0.777248024940491,-0.187711015343666,0.600561797618866,-0.77723240852356,-0.466454833745956,0.221225917339325,-0.856433868408203,0.431488335132599,-0.431488335132599,0.792234599590302,-0.473105549812317,0.147064134478569,-0.868644535541534,-0.478306472301483,5.68434256370716e-014,-0.878193080425262,-0.478306472301483,3.94185690311133e-007,-0.878193080425262,-0.299944519996643,0.942784249782562,0.14557209610939,-0.365704596042633,0.909824073314667,0.196164339780808,-0.147756099700928,0.98759514093399,0.0531406924128532,-0.0202680360525846,0.99978631734848,0.00406028749421239,-0.365704596042633,0.909824073314667,0.196164339780808,-0.172851204872131,0.9803067445755,0.0955052003264427,-0,1,0,-0.147756099700928,0.98759514093399,0.0531406924128532,-0.610420405864716,-0.601213753223419,-0.515683174133301,-0.55107045173645,-0.600748419761658,-0.579156875610352,-0.551069617271423,-0.600748419761658,-0.579157710075378,-0.581323564052582,-0.601184725761414,-0.548306286334991,-0.6599360704422,-0.599778890609741,-0.45249280333519,-0.610420405864716,-0.601213753223419,-0.515683174133301,-0.581323564052582,-0.601184725761414,-0.548306286334991,-0.660178661346436,-0.599718451499939,-0.452219069004059,-0.680582463741302,-0.599579632282257,-0.421084076166153,-0.6599360704422,-0.599778890609741,-0.45249280333519,-0.660178661346436,-0.599718451499939,-0.452219069004059,-0.681233286857605,-0.599642932415009,-0.419940024614334,-0.796585321426392,-0.599445819854736,-0.0782088115811348,-0.78948050737381,-0.599233567714691,-0.132814764976501,
- -0.789168119430542,-0.59931755065918,-0.134284496307373,-0.793232858181,-0.599632203578949,-0.105938322842121,-0.79848039150238,-0.600688576698303,-0.0400291383266449,-0.796585321426392,-0.599445819854736,-0.0782088115811348,-0.793232858181,-0.599632203578949,-0.105938322842121,-0.798520386219025,-0.600620210170746,-0.0402573086321354,-0.800082147121429,-0.599193096160889,-0.0289193708449602,-0.79848039150238,-0.600688576698303,-0.0400291383266449,-0.798520386219025,-0.600620210170746,-0.0402573086321354,-0.80008202791214,-0.599193155765533,-0.0289193745702505,-0.186180502176285,-0.60043603181839,-0.777697503566742,-0.129631847143173,-0.600973010063171,-0.788686990737915,-0.129632398486137,-0.600973010063171,-0.788686811923981,-0.18621538579464,-0.600430846214294,-0.777693212032318,-0.271092355251312,-0.600047767162323,-0.752629816532135,-0.186180502176285,-0.60043603181839,-0.777697503566742,-0.18621538579464,-0.600430846214294,-0.777693212032318,-0.300447404384613,-0.600175559520721,-0.741296589374542,-0.328969717025757,-0.600308835506439,-0.728977501392365,-0.271092355251312,-0.600047767162323,-0.752629816532135,-0.300447404384613,-0.600175559520721,-0.741296589374542,-0.329753249883652,-0.600337028503418,-0.728600263595581,0.000738612376153469,-0.961033225059509,0.276431888341904,-0.00010033325816039,-0.999796748161316,-0.0201620664447546,-0.00156729260925204,-0.949107348918915,-0.314949005842209,-4.17534429288935e-005,-0.999796748161316,-0.0201623439788818,7.57704032849915e-009,-1,-1.67541529094706e-007,-0.000637765624560416,-0.97109580039978,-0.238689139485359,-0.00105993484612554,-0.859084665775299,-0.511832535266876,0.00833600759506226,-0.982879459857941,-0.184061542153358,-0.0397602990269661,-0.987873494625092,0.15008345246315,-0.0189326498657465,-0.985649228096008,0.167741760611534,-0.0174460168927908,-0.987787425518036,0.154827907681465,-0.0909563004970551,-0.927559316158295,0.362437278032303,-6.54303084957064e-006,-1,-2.6244811124343e-006,-0.0397602990269661,-0.987873494625092,0.15008345246315,-0.0909563004970551,-0.927559316158295,0.362437278032303,
- -0.0362752676010132,-0.994738340377808,0.0958110019564629,-3.00023913268888e-007,-1,2.5569437411832e-007,-0.114634044468403,-0.984401226043701,0.133466690778732,-0.127607345581055,-0.980627238750458,0.148615509271622,-0.169464841485024,-0.974346995353699,0.148086607456207,-0.153370752930641,-0.982422173023224,0.106414750218391,0,-1,-0,-0.169464841485024,-0.974346995353699,0.148086607456207,-0.301347315311432,-0.930306792259216,0.209091514348984,-0.130073517560959,-0.991301536560059,0.0200588088482618,-0.000173150037880987,-1,4.50856969109736e-005,-0.124010495841503,-0.991727590560913,0.0331347025930882,-0.323753207921982,-0.945422291755676,0.036887314170599,-0.136388435959816,-0.990633249282837,0.00663255341351032,-0.130073517560959,-0.991301536560059,0.0200588088482618,-0.323753207921982,-0.945422291755676,0.036887314170599,-0.208342105150223,-0.978055834770203,-0.000743801589123905,-1.25330670925905e-005,-1,-0.000252695928793401,-0.136388435959816,-0.990633249282837,0.00663255341351032,-0.323753207921982,-0.945422291755676,0.036887314170599,1.7933685967364e-006,-1,-9.90871740214061e-007,0.136113747954369,-0.986181497573853,-0.094441145658493,0.268462300300598,-0.945108532905579,-0.186274066567421,0.145965546369553,-0.98617547750473,-0.0784351602196693,-5.89065969336389e-008,-1,2.15582485196819e-008,0.194525107741356,-0.97499144077301,-0.107478976249695,0.42385470867157,-0.876741290092468,-0.227314963936806,0.137699663639069,-0.989251613616943,-0.0491948574781418,-0.0189326498657465,-0.985649228096008,0.167741760611534,7.57704032849915e-009,-1,-1.67541529094706e-007,0.00833600759506226,-0.982879459857941,-0.184061542153358,-0.0174460168927908,-0.987787425518036,0.154827907681465,0.0789841040968895,-0.984092772006989,-0.159132540225983,-6.54303084957064e-006,-1,-2.6244811124343e-006,-0.0362752676010132,-0.994738340377808,0.0958110019564629,0.257514744997025,-0.826198935508728,-0.501080393791199,-4.553979948696e-008,-1,6.44335287347531e-008,0.0789841040968895,-0.984092772006989,-0.159132540225983,0.257514744997025,-0.826198935508728,-0.501080393791199,
- 0.136544063687325,-0.971696496009827,-0.192773580551147,-0.114634044468403,-0.984401226043701,0.133466690778732,-4.553979948696e-008,-1,6.44335287347531e-008,0.136544063687325,-0.971696496009827,-0.192773580551147,-0.127607345581055,-0.980627238750458,0.148615509271622,-0.000173150037880987,-1,4.50856969109736e-005,-5.89065969336389e-008,-1,2.15582485196819e-008,0.137699663639069,-0.989251613616943,-0.0491948574781418,-0.124010495841503,-0.991727590560913,0.0331347025930882,0.944732785224915,0,0.327841579914093,0.816072702407837,0,0.577949285507202,0.94473272562027,0,0.327841550111771,0.998657524585724,0,0.0517991967499256,0.999510586261749,-1.39525246911631e-009,0.0312825851142406,1,0,-4.1331961853075e-008,1,0,-8.26639237061499e-008,0.999491214752197,-1.38587696874026e-009,0.0318960212171078,0.990714430809021,-1.77296302639185e-010,0.135959640145302,0.999510586261749,-1.39525246911631e-009,0.0312825851142406,0.999491214752197,-1.38587696874026e-009,0.0318960212171078,0.990632236003876,1.87740309409712e-010,0.136556908488274,0.962465345859528,1.78774897108269e-008,0.27140474319458,0.990714430809021,-1.77296302639185e-010,0.135959640145302,0.990632236003876,1.87740309409712e-010,0.136556908488274,0.970886826515198,1.57963615521339e-008,0.239538744091988,0.929620623588562,2.30154189040377e-008,0.368517935276031,0.962465345859528,1.78774897108269e-008,0.27140474319458,0.970886826515198,1.57963615521339e-008,0.239538744091988,0.941896557807922,2.09293631314722e-008,0.335903197526932,0.894509255886078,3.55786440309203e-008,0.447049677371979,0.929620623588562,2.30154189040377e-008,0.368517935276031,0.941896557807922,2.09293631314722e-008,0.335903197526932,0.894521236419678,3.55139242458336e-008,0.447025507688522,0.894509255886078,3.55786440309203e-008,0.447049677371979,0.894521236419678,3.55139242458336e-008,0.447025507688522,0.831454575061798,6.2427227831563e-009,0.555592954158783,0.831449687480927,5.96767124605435e-009,0.555600225925446,0.723878622055054,3.00411961973168e-008,0.689927399158478,0.831449687480927,5.96767124605435e-009,0.555600225925446,
- 0.831454575061798,6.2427227831563e-009,0.555592954158783,0.756801247596741,2.98488060934687e-008,0.653645038604736,0.639124274253845,2.46630946776349e-008,0.769103527069092,0.723878622055054,3.00411961973168e-008,0.689927399158478,0.756801247596741,2.98488060934687e-008,0.653645038604736,0.689303636550903,2.36257076124957e-008,0.72447258234024,0.61295872926712,-2.38781474592997e-008,0.790114879608154,0.639124274253845,2.46630946776349e-008,0.769103527069092,0.612962663173676,2.57662637892508e-008,0.790111839771271,0.612960755825043,-2.38571224997486e-008,0.79011344909668,0.524352252483368,-2.57333194753073e-008,0.85150146484375,0.524343013763428,-2.57108787593552e-008,0.851507186889648,0.524333715438843,2.76569256385528e-008,0.851512849330902,0.524343013763428,2.75461289334089e-008,0.851507246494293,0.0855870172381401,1.46296166292359e-008,0.996330797672272,0.0495381839573383,3.19416457728039e-008,0.998772263526917,0.0495398379862309,3.19416422200902e-008,0.998772203922272,0.0673918724060059,1.56271031670485e-008,0.997726619243622,0.137240797281265,1.52429411315325e-008,0.990537822246552,0.0855870172381401,1.46296166292359e-008,0.996330797672272,0.0673918724060059,1.56271031670485e-008,0.997726619243622,0.120340280234814,1.6248447920475e-008,0.992732763290405,0.251142174005508,5.27857899612627e-008,0.967950284481049,0.137240797281265,1.52429411315325e-008,0.990537822246552,0.120340280234814,1.6248447920475e-008,0.992732763290405,0.202642261981964,5.38539133287941e-008,0.979252874851227,0.391435116529465,6.10315211702073e-008,0.92020571231842,0.251142174005508,5.27857899612627e-008,0.967950284481049,0.202642261981964,5.38539133287941e-008,0.979252874851227,0.345540404319763,6.21854425730817e-008,0.938403964042664,0.436272025108337,2.9225761366547e-008,0.89981484413147,0.391435116529465,6.10315211702073e-008,0.92020571231842,0.345540404319763,6.21854425730817e-008,0.938403964042664,0.436268299818039,2.91089321535765e-008,0.899816691875458,-0.0773060992360115,-0.517957925796509,-0.851905822753906,-0.0657420456409454,-0.5184565782547,-0.852573096752167,
- -0.0541691556572914,-0.518885493278503,-0.853125691413879,-0.0657420456409454,-0.5184565782547,-0.852573037147522,-0.864406406879425,0.502701461315155,-0.00964580755680799,-0.86440646648407,0.502700984477997,-0.00966300070285797,-0.86440646648407,0.502700448036194,-0.0096801919862628,-0.864406406879425,0.502700984477997,-0.00966300070285797,0.243855625391006,-0.961520314216614,0.126542955636978,0.837271749973297,-0.412595629692078,0.358805060386658,0.94113165140152,0.337973058223724,-0.00674579013139009,0.888730406761169,0.456758320331573,-0.0391176380217075,0.837271749973297,-0.412595629692078,0.358805060386658,0.642972469329834,0.614014983177185,0.457790434360504,0.962057173252106,0.270467191934586,0.0359642133116722,0.94113165140152,0.337973058223724,-0.00674579013139009,0.642972469329834,0.614014983177185,0.457790434360504,-0.479104340076447,0.856513381004334,0.191947728395462,-0.177893772721291,0.983914613723755,0.0163048822432756,0.962057173252106,0.270467191934586,0.0359642133116722,-0.479104340076447,0.856513381004334,0.191947728395462,-0.76045286655426,-0.642586350440979,0.09377720952034,0.981845855712891,-0.182211875915527,-0.0527035221457481,-0.177893772721291,0.983914613723755,0.0163048822432756,-0.76045286655426,-0.642586350440979,0.09377720952034,0.243855625391006,-0.961520314216614,0.126542955636978,0.888730406761169,0.456758320331573,-0.0391176380217075,0.981845855712891,-0.182211875915527,-0.0527035221457481,0.00485005276277661,0.999964833259583,0.00684019178152084,0.157306596636772,0.962229132652283,0.222193136811256,0.163614571094513,0.933232545852661,0.31985542178154,0.160585224628448,0.945408463478088,0.283575862646103,-0.00991340540349483,0.999880194664001,-0.0118905417621136,-0.188887804746628,0.957030713558197,-0.220030695199966,0.157306596636772,0.962229132652283,0.222193136811256,0.00485005276277661,0.999964833259583,0.00684019178152084,0.0204270500689745,0.999763250350952,0.00749698374420404,0.256195157766342,0.961993932723999,0.0945088416337967,0.41620397567749,0.8816237449646,0.22251732647419,
- 0.303902745246887,0.941076099872589,0.148388162255287,-0.0259255822747946,0.999640226364136,-0.0068760784342885,-0.153235226869583,0.987362623214722,-0.0404237471520901,0.256195157766342,0.961993932723999,0.0945088416337967,0.0204270500689745,0.999763250350952,0.00749698374420404,0.0143373841419816,-0.999889969825745,0.00379975605756044,0.166791051626205,-0.985010087490082,0.044000368565321,0.477111577987671,-0.877110719680786,0.0551504716277123,0.290847599506378,-0.955658614635468,0.0460919551551342,-0.0254191961139441,-0.999633371829987,-0.00933596584945917,-0.146229520440102,-0.987778902053833,-0.0539431907236576,0.166791051626205,-0.985010087490082,0.044000368565321,0.0143373841419816,-0.999889969825745,0.00379975605756044,0.00816605426371098,-0.999917507171631,0.0099174315109849,0.15384529531002,-0.971698045730591,0.179261356592178,0.42354354262352,-0.826208829879761,0.3714699447155,0.377212345600128,-0.853102564811707,0.360453516244888,-0.0678043141961098,-0.993103325366974,-0.0956471711397171,-0.113182224333286,-0.980627536773682,-0.159873649477959,0.15384529531002,-0.971698045730591,0.179261356592178,0.00816605426371098,-0.999917507171631,0.0099174315109849,0.0778066068887711,0.975479483604431,0.20587857067585,0.151802569627762,0.903120458126068,0.40165838599205,0.163614571094513,0.933232545852661,0.31985542178154,0,1,-0,0.157306596636772,0.962229132652283,0.222193136811256,-0.188887804746628,0.957030713558197,-0.220030695199966,-0.211975991725922,0.945680141448975,-0.246485978364944,0.100864373147488,0.98464024066925,0.142513781785965,-0.188887804746628,0.957030713558197,-0.220030695199966,-0.397679418325424,0.848585963249207,-0.348931312561035,-0.0164758767932653,0.999765634536743,-0.0140485884621739,-0.211975991725922,0.945680141448975,-0.246485978364944,0,1,-0,0.110931068658829,0.990836143493652,0.0770590752363205,0.41620397567749,0.8816237449646,0.22251732647419,0.178093358874321,0.979093849658966,0.0982759147882462,0.256195157766342,0.961993932723999,0.0945088416337967,-0.153235226869583,0.987362623214722,-0.0404237471520901,
- 0,1,-0,0.158518254756927,0.985620856285095,0.0585108548402786,-0.219780027866364,0.975472748279572,-0.0122389579191804,-0.196446821093559,0.980305075645447,-0.0202613454312086,-0.409607112407684,0.911034286022186,-0.0473129488527775,-0.428778797388077,0.903093874454498,-0.0238775387406349,0.168144807219505,0.600945830345154,-0.781403481960297,0.168868735432625,0.600973129272461,-0.781226456165314,0.0950254425406456,0.599503338336945,-0.794711232185364,0.0935507118701935,0.599426746368408,-0.794943869113922,0.337585121393204,0.599771201610565,-0.725472867488861,0.288470208644867,0.601692676544189,-0.74481600522995,0.168868735432625,0.600973129272461,-0.781226456165314,0.168144807219505,0.600945830345154,-0.781403481960297,0.583277344703674,-0.00318772625178099,-0.812266826629639,0.554508030414581,-0.00318770715966821,-0.832172274589539,0.525271952152252,1.04308128356934e-006,-0.850934445858002,0.525273501873016,9.25734639167786e-007,-0.85093355178833,0.586518466472626,0.60187828540802,-0.541976571083069,0.586805701255798,0.601884126663208,-0.54165905714035,0.529676854610443,0.599347472190857,-0.600187480449677,0.528552711009979,0.599264085292816,-0.601260900497437,0.679122507572174,0.599396586418152,-0.423693865537643,0.659564077854156,0.600364625453949,-0.452258408069611,0.586805701255798,0.601884126663208,-0.54165905714035,0.586518466472626,0.60187828540802,-0.541976571083069,0.915298521518707,0.00136585393920541,-0.402773857116699,0.915307819843292,2.84053356836012e-007,-0.40275502204895,0.915303766727448,2.70083582165626e-008,-0.402764469385147,0.915293157100677,0.00136460526846349,-0.40278622508049,-0.0164758767932653,0.999765634536743,-0.0140485884621739,-0.397679418325424,0.848585963249207,-0.348931312561035,0.110931068658829,0.990836143493652,0.0770590752363205,0,1,-0,0.611153721809387,6.63101673126221e-007,-0.791512012481689,0.611158788204193,1.04494392871857e-006,-0.79150801897049,0.554508030414581,-0.00318770715966821,-0.832172274589539,0.583277344703674,-0.00318772625178099,-0.812266826629639,0.481839150190353,0,-0.876259803771973,
- 0.481839150190353,0,-0.876259803771973,0.481839120388031,-7.48679849493783e-006,-0.876259684562683,0.481839150190353,-1.49735978993704e-005,-0.876259803771973,0.481839090585709,-4.99119869346032e-006,-0.876259803771973,0.033978059887886,-0.503167450428009,-0.863520681858063,0.0345788560807705,-0.503183662891388,-0.863487422466278,0.0351796336472034,-0.503199636936188,-0.863453805446625,0.0345788560807705,-0.503183662891388,-0.863487422466278,0.891945719718933,0,-0.452142715454102,0.891945719718933,0,-0.452142715454102,0.872872829437256,0.205691605806351,-0.442474812269211,-0.816470563411713,-0.40258651971817,0.413884073495865,0.883561074733734,0.136792421340942,-0.447892725467682,0,-1,-0,-0.102504424750805,-0.974347114562988,-0.20035120844841,-0.113182224333286,-0.980627536773682,-0.159873649477959,-0.0678043141961098,-0.993103325366974,-0.0956471711397171,0,1,-0,0.163614571094513,0.933232545852661,0.31985542178154,0.157306596636772,0.962229132652283,0.222193136811256,0.100864373147488,0.98464024066925,0.142513781785965,0.695628464221954,0.600764691829681,-0.393932670354843,0.695625782012939,0.600764691829681,-0.393937170505524,0.659564077854156,0.600364625453949,-0.452258408069611,0.679122507572174,0.599396586418152,-0.423693865537643,-0.262579530477524,-0.956354558467865,-0.128211185336113,-0.329506009817123,-0.927558302879334,-0.176242634654045,-0.146229520440102,-0.987778902053833,-0.0539431907236576,-0.0254191961139441,-0.999633371829987,-0.00933596584945917,0.178093358874321,0.979093849658966,0.0982759147882462,0.41620397567749,0.8816237449646,0.22251732647419,0.256195157766342,0.961993932723999,0.0945088416337967,0.158518254756927,0.985620856285095,0.0585108548402786,0.385992407798767,0.598801553249359,-0.701745450496674,0.384355336427689,0.598915457725525,-0.702546358108521,0.288470208644867,0.601692676544189,-0.74481600522995,0.337585121393204,0.599771201610565,-0.725472867488861,0.655763208866119,7.58469013817376e-006,-0.754966616630554,0.655763566493988,2.29263678193092e-005,-0.75496631860733,0.655763030052185,-3.77185642719269e-006,-0.754966855049133,
- 0.655762553215027,-2.64747031906154e-005,-0.754967212677002,0.655762791633606,-1.71177089214325e-005,-0.754967093467712,-0.403555631637573,0.829826056957245,-0.385398000478745,-0.397679418325424,0.848585963249207,-0.348931312561035,-0.188887804746628,0.957030713558197,-0.220030695199966,-0.00991340540349483,0.999880194664001,-0.0118905417621136,0.106153093278408,-0.251820802688599,-0.961934447288513,-0.0777954086661339,0.704963803291321,0.704963862895966,0.106153078377247,-0.251821100711823,-0.961934387683868,0.109687894582748,0,-0.993966162204742,0.109687887132168,5.92293474710459e-007,-0.993966042995453,0.109687902033329,7.91194281646312e-007,-0.993966162204742,-0.335804045200348,0.940427482128143,-0.0532140620052814,-0.409607112407684,0.911034286022186,-0.0473129488527775,-0.153235226869583,0.987362623214722,-0.0404237471520901,-0.0259255822747946,0.999640226364136,-0.0068760784342885,-0.409607112407684,0.911034286022186,-0.0473129488527775,-0.196446821093559,0.980305075645447,-0.0202613454312086,0,1,-0,-0.153235226869583,0.987362623214722,-0.0404237471520901,0.00258121127262712,0.999996185302734,-0.00104459642898291,0.00770296528935432,0.984889328479767,0.173013761639595,0.00280237128026783,0.862964451313019,0.505256950855255,0,0.963675618171692,0.267075568437576,0.000310965348035097,0.999789118766785,-0.0205363053828478,-0.0160922538489103,0.987598299980164,-0.156174883246422,0.00770296528935432,0.984889328479767,0.173013761639595,0.00258121127262712,0.999996185302734,-0.00104459642898291,-0.000769863836467266,-0.999852955341339,0.0171324890106916,0.0152899296954274,-0.989260196685791,0.145363241434097,0.117606215178967,-0.876741945743561,0.46636101603508,0.0595201328396797,-0.95732855796814,0.282806396484375,-0.00293551664799452,-0.999995291233063,0.000924839230719954,-0.00694242725148797,-0.990524709224701,-0.137158960103989,0.0152899296954274,-0.989260196685791,0.145363241434097,-0.000769863836467266,-0.999852955341339,0.0171324890106916,0.000126577142509632,1,-9.401344982507e-007,0.000126563885714859,1,-1.8802689965014e-006,
- 0.00259453314356506,0.984526515007019,0.17521633207798,0.00280237128026783,0.862964451313019,0.505256950855255,0.00196633045561612,0.965853333473206,0.259082078933716,0.00770296528935432,0.984889328479767,0.173013761639595,-0.0160922538489103,0.987598299980164,-0.156174883246422,0,1,-0,0,1,-0,-0.0795882493257523,0.974328696727753,-0.210592851042748,-0.0506777316331863,0.980305850505829,-0.190872624516487,-0.101494967937469,0.909822106361389,-0.402395993471146,-0.155095607042313,0.89863258600235,-0.410371541976929,0.790809154510498,0.600495338439941,-0.118433274328709,0.790854692459106,0.600507140159607,-0.118068009614944,0.778758764266968,0.600208878517151,-0.182439565658569,0.778546929359436,0.600170910358429,-0.183465912938118,0.799168229103088,0.600844502449036,-0.0177763607352972,0.798558950424194,0.600853323936462,-0.0357615724205971,0.790854692459106,0.600507140159607,-0.118068009614944,0.790809154510498,0.600495338439941,-0.118433274328709,0.854958593845367,0.518694221973419,-0.00144340086262673,0.855173051357269,0.518248975276947,0.00985917635262012,0.855277955532074,0.517737329006195,0.0211604908108711,0.855172991752625,0.518248915672302,0.00985917635262012,1,0,-0,1,-5.49823653273052e-006,0,1,0,-0,1,4.86040653413511e-006,-0,1,3.10759278363548e-005,-0,1,4.86040653413511e-006,-0,0.953332364559174,5.00585827012401e-007,-0.301922768354416,0.953336834907532,1.23400226925696e-007,-0.301908820867538,0.953350126743317,0.00136450759600848,-0.301863968372345,0.953346610069275,0.00136572436895221,-0.301874727010727,0,-0.963675618171692,-0.267075777053833,-0.00197188253514469,-0.936156451702118,-0.351578176021576,-0.00694242725148797,-0.990524709224701,-0.137158960103989,-0.00293551664799452,-0.999995291233063,0.000924839230719954,0.00196633045561612,0.965853333473206,0.259082078933716,0.00280237128026783,0.862964451313019,0.505256950855255,0.00770296528935432,0.984889328479767,0.173013761639595,0,1,-0,0.799733579158783,0.60035514831543,3.31215505866567e-006,0.799733579158783,0.60035514831543,1.65607752933283e-006,0.798558950424194,0.600853323936462,-0.0357615724205971,
- 0.799168229103088,0.600844502449036,-0.0177763607352972,0.968046307563782,3.94175060591806e-007,-0.250771552324295,-0.968046367168427,-0,0.250771582126617,0.968046307563782,2.62783373727871e-007,-0.250771552324295,0.968046367168427,0,-0.250771552324295,0.968046367168427,3.94175089013515e-007,-0.250771552324295,-0.0683789327740669,0.942781567573547,-0.326323807239532,-0.101494967937469,0.909822106361389,-0.402395993471146,-0.0160922538489103,0.987598299980164,-0.156174883246422,0.000310965348035097,0.999789118766785,-0.0205363053828478,-0.101494967937469,0.909822106361389,-0.402395993471146,-0.0506777316331863,0.980305850505829,-0.190872624516487,0,1,-0,-0.0160922538489103,0.987598299980164,-0.156174883246422,-0.852263569831848,0.522434890270233,-0.0266200732439756,-0.451442241668701,0.892300426959991,0.000285135611193255,-0.981017231941223,0.190330520272255,0.0371426567435265,-0.995800673961639,-0.0871313139796257,0.0280931107699871,-0.895698130130768,0.444620341062546,-0.00614672666415572,0.64846932888031,-0.601214110851288,-0.466935932636261,0.695632100105286,-0.60074907541275,-0.393949955701828,0.695630609989166,-0.600749135017395,-0.393952518701553,0.673051118850708,-0.601185023784637,-0.430788576602936,0.59918087720871,-0.599776208400726,-0.530330896377563,0.64846932888031,-0.601214110851288,-0.466935932636261,0.673051118850708,-0.601185023784637,-0.430788576602936,0.598981618881226,-0.599715828895569,-0.530624151229858,0.573728859424591,-0.599572658538818,-0.557985663414001,0.59918087720871,-0.599776208400726,-0.530330896377563,0.598981618881226,-0.599715828895569,-0.530624151229858,0.572791397571564,-0.599634945392609,-0.558881103992462,0.266832917928696,-0.599829971790314,-0.754323661327362,0.320542633533478,-0.599235653877258,-0.73360013961792,0.321899116039276,-0.59932005405426,-0.732936859130859,0.293964445590973,-0.599990963935852,-0.744040191173553,0.19732466340065,-0.600223779678345,-0.77510929107666,0.266832917928696,-0.599829971790314,-0.754323661327362,0.293964445590973,-0.599990963935852,-0.744040191173553,
- 0.196741819381714,-0.600135087966919,-0.775326192378998,0.152638375759125,-0.599720180034637,-0.785517156124115,0.19732466340065,-0.600223779678345,-0.77510929107666,0.196741819381714,-0.600135087966919,-0.775326192378998,0.151415154337883,-0.599777042865753,-0.785710513591766,0.798988163471222,-0.600809097290039,-0.0254262126982212,0.799746930599213,-0.600337326526642,-1.6561268694204e-006,0.799746930599213,-0.600337326526642,-3.31225373884081e-006,0.798993408679962,-0.600793719291687,-0.0256213173270226,0.795982480049133,-0.599821269512177,-0.0814022645354271,0.798988163471222,-0.600809097290039,-0.0254262126982212,0.798993408679962,-0.600793719291687,-0.0256213173270226,0.79212760925293,-0.599961936473846,-0.112159132957459,0.787037968635559,-0.600315153598785,-0.142101898789406,0.795982480049133,-0.599821269512177,-0.0814022645354271,0.79212760925293,-0.599961936473846,-0.112159132957459,0.786860287189484,-0.600343704223633,-0.14296318590641,-0.255414038896561,-0.966472804546356,-0.0263433735817671,0.0188828371465206,-0.999821722507477,-0.000193782208953053,0.29313987493515,-0.956069588661194,0.000448901409981772,0.0187512524425983,-0.999821901321411,0.00216750218532979,1.4944706094866e-007,-1,3.94009340709545e-008,0.221084445714951,-0.974988162517548,0.0228026229888201,0.477111577987671,-0.877110719680786,0.0551504716277123,0.166791051626205,-0.985010087490082,0.044000368565321,-0.13593378663063,-0.987874209880829,-0.0750111415982246,-0.158418357372284,-0.985639154911041,-0.058473989367485,-0.146229520440102,-0.987778902053833,-0.0539431907236576,-0.329506009817123,-0.927558302879334,-0.176242634654045,2.87922921415884e-006,-1,-3.89537672162987e-006,-0.13593378663063,-0.987874209880829,-0.0750111415982246,-0.329506009817123,-0.927558302879334,-0.176242634654045,-0.0841341763734818,-0.994738817214966,-0.0584498643875122,-1.75186968931484e-007,-1,-3.53131639485582e-007,-0.101636990904808,-0.984401345252991,-0.143610343337059,-0.113182224333286,-0.980627536773682,-0.159873649477959,-0.102504424750805,-0.974347114562988,-0.20035120844841,
- -0.0659884437918663,-0.982422113418579,-0.17462046444416,0,-1,0,-0.102504424750805,-0.974347114562988,-0.20035120844841,-0.129660621285439,-0.930306553840637,-0.343100488185883,0,-0.989898264408112,-0.141779437661171,-8.51772983878618e-006,-1,-0.000193945175851695,-0.00694242725148797,-0.990524709224701,-0.137158960103989,-0.00197188253514469,-0.936156451702118,-0.351578176021576,-0.00223435857333243,-0.988757908344269,-0.149508640170097,0,-0.989898264408112,-0.141779437661171,-0.00197188253514469,-0.936156451702118,-0.351578176021576,-0.00342430756427348,-0.973674833774567,-0.22791613638401,-0.000130291999084875,-1,1.93565483641578e-006,-0.00223435857333243,-0.988757908344269,-0.149508640170097,-0.00197188253514469,-0.936156451702118,-0.351578176021576,5.25819245922321e-007,-1,1.98032171283558e-006,0.0585644617676735,-0.986181080341339,0.154974922537804,0.11551296710968,-0.945106625556946,0.305663764476776,0.040652196854353,-0.986175000667572,0.1606435328722,-7.29856930448136e-009,-1,-6.61427748127608e-008,0.0570338815450668,-0.9749915599823,0.214798957109451,0.117606215178967,-0.876741945743561,0.46636101603508,0.0152899296954274,-0.989260196685791,0.145363241434097,-0.158418357372284,-0.985639154911041,-0.058473989367485,1.4944706094866e-007,-1,3.94009340709545e-008,0.166791051626205,-0.985010087490082,0.044000368565321,-0.146229520440102,-0.987778902053833,-0.0539431907236576,0.135186031460762,-0.984093427658081,0.115260355174541,2.87922921415884e-006,-1,-3.89537672162987e-006,-0.0841341763734818,-0.994738817214966,-0.0584498643875122,0.42354354262352,-0.826208829879761,0.3714699447155,-9.71609210864699e-007,-1,7.33864283120056e-007,0.135186031460762,-0.984093427658081,0.115260355174541,0.42354354262352,-0.826208829879761,0.3714699447155,0.15384529531002,-0.971698045730591,0.179261356592178,-0.101636990904808,-0.984401345252991,-0.143610343337059,-9.71609210864699e-007,-1,7.33864283120056e-007,0.15384529531002,-0.971698045730591,0.179261356592178,-0.113182224333286,-0.980627536773682,-0.159873649477959,-8.51772983878618e-006,-1,-0.000193945175851695,
- -7.29856930448136e-009,-1,-6.61427748127608e-008,0.0152899296954274,-0.989260196685791,0.145363241434097,-0.00694242725148797,-0.990524709224701,-0.137158960103989,-0.847860217094421,-0,0.530219852924347,-0.522275269031525,-0,0.852776944637299,-0.086987130343914,-0,0.996209442615509,-0.522275269031525,-0,0.852776944637299,-0.253015547990799,-6.48015756610221e-008,0.967462301254272,-0.156517997384071,0,0.987675189971924,-0.156521186232567,0,0.987674593925476,-0.204957827925682,-6.41415311974924e-008,0.978770911693573,-0.393597215414047,-4.13335001780979e-008,0.919282972812653,-0.253015547990799,-6.48015756610221e-008,0.967462301254272,-0.204957827925682,-6.41415311974924e-008,0.978770911693573,-0.347342759370804,-3.99048616372966e-008,0.937738239765167,-0.496976166963577,5.71903697732523e-008,0.867764234542847,-0.393597215414047,-4.13335001780979e-008,0.919282972812653,-0.347342759370804,-3.99048616372966e-008,0.937738239765167,-0.468108236789703,5.82398769211068e-008,0.88367110490799,-0.583225548267365,2.53056846588606e-008,0.812310218811035,-0.496976166963577,5.71903697732523e-008,0.867764234542847,-0.468108236789703,5.82398769211068e-008,0.88367110490799,-0.554563343524933,2.59892711795828e-008,0.832141518592834,-0.650867283344269,-2.41081572482926e-008,0.759191572666168,-0.583225548267365,2.53056846588606e-008,0.812310218811035,-0.554563343524933,2.59892711795828e-008,0.832141518592834,-0.650847494602203,-2.41918840515609e-008,0.759208500385284,-0.650867283344269,-2.41081572482926e-008,0.759191572666168,-0.650847494602203,-2.41918840515609e-008,0.759208500385284,-0.740846455097198,-1.50934589271401e-008,0.671674489974976,-0.740853190422058,-1.4428939820732e-008,0.671667039394379,-0.845041871070862,0,0.534700155258179,-0.740853190422058,-1.4428939820732e-008,0.671667039394379,-0.740846455097198,-1.50934589271401e-008,0.671674489974976,-0.817842781543732,0,0.575441777706146,-0.901276111602783,-2.80825851461941e-008,0.433245211839676,-0.845041871070862,0,0.534700155258179,-0.817842781543732,0,0.575441777706146,-0.870158791542053,-3.1782292353455e-008,0.492771446704865,
- -0.915303766727448,-6.10234618392269e-009,0.402764439582825,-0.901276111602783,-2.80825851461941e-008,0.433245211839676,-0.915312647819519,-2.59757921838855e-008,0.402744054794312,-0.915308177471161,-6.06386851842444e-009,0.402754247188568,-0.953332901000977,-4.57445636925513e-009,0.301921308040619,-0.953336954116821,-4.54553106266076e-009,0.301908254623413,-0.9533411860466,1.46512286747225e-008,0.301895201206207,-0.953336954116821,1.47040557507694e-008,0.301908254623413,-0.999970316886902,0,0.00771514279767871,-0.999889671802521,0,0.0148546444252133,-0.999889731407166,0,0.0148546453565359,-0.999972462654114,0,0.00742752756923437,-0.999999940395355,0,0.000362268561730161,-0.999970316886902,0,0.00771514279767871,-0.999972462654114,0,0.00742752756923437,-0.999999940395355,0,0.000383497070288286,-0.99912965297699,-1.79682280165849e-009,0.0417124815285206,-0.999999940395355,0,0.000362268561730161,-0.999999940395355,0,0.000383497070288286,-0.999791324138641,-9.03467856083751e-010,0.0204326324164867,-0.987421035766602,-6.90338319841999e-009,0.158113270998001,-0.99912965297699,-1.79682280165849e-009,0.0417124815285206,-0.999791324138641,-9.03467856083751e-010,0.0204326324164867,-0.993909418582916,-4.90870188940562e-009,0.110200569033623,-0.97881156206131,9.93734161625071e-009,0.20476345717907,-0.987421035766602,-6.90338319841999e-009,0.158113270998001,-0.993909418582916,-4.90870188940562e-009,0.110200569033623,-0.978818297386169,9.97116433865131e-009,0.204731047153473,0.854792535305023,-0.516989648342133,-0.0452922210097313,0.855007290840149,-0.517502307891846,-0.0339718014001846,0.855112135410309,-0.5179483294487,-0.0226470101624727,0.855007231235504,-0.517502248287201,-0.033971793949604,0.063551127910614,0.503097355365753,-0.861890017986298,0.0628266781568527,0.503118753433228,-0.86193060874939,0.062102198600769,0.503140091896057,-0.861970722675323,0.0628266781568527,0.503118813037872,-0.861930549144745,0.668878376483917,0.603361427783966,0.434231281280518,-0.48624324798584,0.855106115341187,0.179891780018806,-0.451442241668701,0.892300426959991,0.000285135611193255,
- -0.852263569831848,0.522434890270233,-0.0266200732439756,-0.48624324798584,0.855106115341187,0.179891780018806,-0.766790628433228,-0.637125730514526,0.0781212002038956,-0.981017231941223,0.190330520272255,0.0371426567435265,-0.451442241668701,0.892300426959991,0.000285135611193255,-0.766790628433228,-0.637125730514526,0.0781212002038956,0.249998226761818,-0.96124541759491,0.116224877536297,0.327840715646744,0.944621562957764,-0.014516981318593,-0.981017231941223,0.190330520272255,0.0371426567435265,0.249998226761818,-0.96124541759491,0.116224877536297,0.841432631015778,-0.424838989973068,0.333920568227768,-0.895698130130768,0.444620341062546,-0.00614672666415572,0.327840715646744,0.944621562957764,-0.014516981318593,0.841432631015778,-0.424838989973068,0.333920568227768,0.668878376483917,0.603361427783966,0.434231281280518,-0.852263569831848,0.522434890270233,-0.0266200732439756,-0.895698130130768,0.444620341062546,-0.00614672666415572
- }
- BinormalsW: *7160 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *21480 {
- a: -0.795521855354309,-0.00909467227756977,-0.605856657028198,-0.777487337589264,-0.00921585317701101,-0.628831088542938,-0.77811723947525,-0.0106466179713607,-0.628028810024261,-0.777962863445282,0.00622793426737189,-0.628279387950897,-0.795002520084381,0.00687033543363214,-0.606567203998566,-0.795339584350586,0.00520774675533175,-0.606141805648804,0.0154547356069088,0.00616196123883128,-0.999861598014832,-0.0153546649962664,0.00709591573104262,-0.999856948852539,-0.00804072711616755,0.00530469929799438,-0.999953627586365,-0.0162327215075493,-0.00884244218468666,-0.999829232692719,0.0161825157701969,-0.00925448071211576,-0.99982625246048,0.0151626383885741,-0.0105718830600381,-0.999829173088074,0.798854947090149,0.00626858929172158,-0.601491034030914,0.781855821609497,0.00683700339868665,-0.623421788215637,0.781524896621704,0.00522642303258181,-0.62385219335556,0.78129118680954,-0.00912797544151545,-0.624099969863892,0.799277722835541,-0.00917316041886806,-0.600891828536987,0.79864764213562,-0.0106957508251071,-0.601703882217407,0.999860465526581,0.00636793673038483,0.0154449874535203,0.999858498573303,0.00685582170262933,-0.0153679233044386,0.999860286712646,0.00503966491669416,-0.015944242477417,0.999826908111572,-0.00907095707952976,-0.0162452794611454,0.999828279018402,-0.00905830785632133,0.0161732789129019,0.999826848506927,-0.0106755876913667,0.0152409467846155,0.998585760593414,-0.0524494200944901,0.00868885684758425,0.998602747917175,-0.0525704696774483,0.00537936901673675,0.998582184314728,-0.0529169924557209,-0.00577950617298484,0.999406397342682,-0.0130453938618302,-0.0318882465362549,0.999876141548157,-0.0139320092275739,-0.00732453633099794,0.999869406223297,-0.0144748967140913,0.00718913413584232,0.999965131282806,0.00248857378028333,-0.00797171704471111,0.99950248003006,0.00316015770658851,-0.0313808582723141,0.99950122833252,0.00173975608777255,-0.0315351486206055,0.780051469802856,-0.0523392781615257,0.623522698879242,0.782106876373291,-0.0527116246521473,0.620910882949829,
- 0.786138474941254,-0.0525260269641876,0.615814387798309,0.805886805057526,-0.0129896467551589,0.591927111148834,0.788100481033325,-0.0135737843811512,0.615397095680237,0.781987845897675,-0.0146756591275334,0.623121082782745,0.78856760263443,0.00282430066727102,0.614941596984863,0.805571436882019,0.00322283338755369,0.592489898204803,0.805684387683868,0.00185798143502325,0.592342138290405,0.00797266699373722,0.00251273764297366,0.999965071678162,0.0313500314950943,0.00331171764992177,0.999503076076508,0.0315357558429241,0.00175906985532492,0.999501168727875,0.0319848470389843,-0.0128909097984433,0.999405205249786,0.0073267430998385,-0.0138761242851615,0.999876976013184,-0.0071859322488308,-0.0145425144582987,0.999868452548981,-0.00537707051262259,-0.0526187010109425,0.99860018491745,0.00578170968219638,-0.0528616011142731,0.998585104942322,-0.00868845172226429,-0.0524229779839516,0.998587191104889,-0.784615814685822,0.00260627223178744,0.619976818561554,-0.770869791507721,0.00318857911042869,0.636984825134277,-0.770754635334015,0.00188526138663292,0.637129306793213,-0.770402014255524,-0.0130248945206404,0.637425363063812,-0.784942507743835,-0.0137908654287457,0.619415044784546,-0.794743597507477,-0.0147046390920877,0.606767177581787,-0.792629778385162,-0.052758727222681,0.607416272163391,-0.784870624542236,-0.0527523495256901,0.617410182952881,-0.79466038942337,-0.0523413121700287,0.604793727397919,-0.410255610942841,-0.118678711354733,0.904215514659882,-0.413747072219849,-0.0619867853820324,0.908279120922089,-0.538727402687073,-0.0639335513114929,0.840050756931305,-0.423224598169327,0.117274716496468,0.89840292930603,-0.482346057891846,0.106363043189049,0.869499504566193,-0.542340815067291,0.107875362038612,0.83320426940918,-0.490417301654816,0.0103189367800951,0.871426641941071,-0.568297803401947,0.0161147024482489,0.822665154933929,-0.542384386062622,0.0150999398902059,0.839994728565216,-0.542056560516357,0.00338608073070645,0.840335190296173,-0.569013297557831,0.00370640959590673,0.822319984436035,-0.565587997436523,0.00236530578695238,0.82468456029892,
- -0.552647233009338,-0.171902850270271,0.815494000911713,-0.565714359283447,-0.231596887111664,0.791410267353058,-0.751792013645172,-0.367198318243027,-0.547698974609375,-0.63543713092804,0.567354559898376,-0.5237637758255,-0.413825303316116,0.619959473609924,0.666632473468781,-0.642078995704651,0.609227240085602,-0.465378016233444,0.0705572217702866,0.993151366710663,0.0931238830089569,-0.380864530801773,0.680700242519379,0.625771045684814,-0.498536735773087,0.0233675800263882,0.866553544998169,-0.568287432193756,0.0162841062992811,0.822668969631195,-0.490407526493073,0.0104806795716286,0.871430218219757,-0.544322729110718,0.0221260916441679,0.838584065437317,-0.498536735773087,0.0233675800263882,0.866553544998169,0.0788115710020065,0.98919290304184,0.123637154698372,0.0705572217702866,0.993151366710663,0.0931238830089569,-0.420366883277893,0.0312065500766039,0.906817555427551,-0.378259301185608,0.0305963642895222,0.925194025039673,-0.488585531711578,0.0376498699188232,0.871703326702118,-0.379922032356262,-0.0105760293081403,0.924958169460297,-0.417714297771454,-0.0125469323247671,0.908491790294647,-0.362694144248962,-0.00851029250770807,0.931869387626648,-0.544335246086121,0.0353103205561638,0.83812427520752,-0.544095277786255,0.0221325233578682,0.838731467723846,-0.490683227777481,0.00582563318312168,0.871318697929382,-0.378291547298431,0.0299254208803177,0.925202786922455,-0.40742501616478,0.039895873516798,0.912366807460785,-0.48862761259079,0.0370781496167183,0.87170422077179,0.628196895122528,0.558705747127533,0.541494786739349,0.446730017662048,0.0316784605383873,0.894107818603516,0.438943892717361,-0.0103688919916749,0.898454666137695,-0.545065820217133,0.0352821871638298,0.837650537490845,-0.54442572593689,0.0237494148313999,0.838472783565521,-0.544845819473267,0.0221112854778767,0.838244795799255,-0.552156686782837,0.0219027865678072,0.833452641963959,-0.551947295665741,0.0239474382251501,0.833535194396973,-0.552248477935791,0.0130452392622828,0.833577513694763,-0.387840747833252,-0.013364665210247,0.92162948846817,
- -0.38818085193634,0.040440883487463,0.92069548368454,-0.378002732992172,0.0358090214431286,0.925111711025238,-0.388375341892242,-0.0133713074028492,0.921404242515564,-0.388787746429443,0.0194982048124075,0.921121001243591,-0.388893365859985,0.0404211059212685,0.920395612716675,0.411994755268097,-0.00973227061331272,0.911134243011475,-0.434180974960327,0.61057460308075,0.662333369255066,0.664632558822632,0.487065374851227,0.566595911979675,-0.808837890625,-0.0173658691346645,0.587775230407715,-0.316221982240677,0.476368248462677,0.820412695407867,-0.793967843055725,-0.560194611549377,0.236214563250542,-0.557378053665161,0.0131664117798209,0.830154538154602,-0.492305934429169,0.0202003624290228,0.870187938213348,-0.512908160686493,0.0170197915285826,0.858274757862091,-0.492193698883057,0.0183139648288488,0.870293021202087,-0.556879639625549,0.0131546389311552,0.830489158630371,-0.556567490100861,0.0240686926990747,0.830453813076019,-0.253267228603363,0.800022184848785,0.543893575668335,0.679767668247223,0.453054130077362,0.57676500082016,-0.389650404453278,0.718585789203644,0.576026916503906,-0.492347359657288,0.0209050346165895,0.870147705078125,-0.514865338802338,0.0112370513379574,0.857197403907776,-0.512937784194946,0.0177894271910191,0.858241558074951,0.761529982089996,-0.243585228919983,0.600614964962006,-0.509136617183685,-0.32895565032959,0.795341491699219,0.736152827739716,-0.282864153385162,0.614871442317963,-0.380177676677704,0.0192553047090769,0.924713015556335,-0.380780637264252,-0.0132766263559461,0.924570083618164,-0.381128996610641,-0.0436295419931412,0.923491954803467,0.631871581077576,-0.0365768298506737,0.774209678173065,0.635925590991974,0.00393798435106874,0.77174037694931,0.499802529811859,-0.24157889187336,0.831767439842224,-0.378240585327148,0.0192005541175604,0.925508201122284,-0.323694050312042,0.00570665625855327,0.946144580841064,-0.490420073270798,-0.00834592431783676,0.871446192264557,-0.323548376560211,0.00348851969465613,0.946205198764801,-0.376391977071762,0.0191482715308666,0.926262617111206,
- -0.37729087471962,-0.0437037646770477,0.925063014030457,-0.443517714738846,0.00654834695160389,0.896241664886475,-0.514666616916656,0.0139047466218472,0.857277631759644,-0.492463320493698,0.0228990204632282,0.870031893253326,-0.323694050312042,0.00570665625855327,0.946144580841064,-0.443421363830566,0.00773295853286982,0.89627993106842,-0.490420073270798,-0.00834592431783676,0.871446192264557,0.649106681346893,-0.513895928859711,0.560866713523865,-0.500813007354736,-0.391684979200363,0.771860897541046,0.0955461338162422,-0.00407626247033477,0.995416760444641,-0.161180943250656,-0.0141159584745765,0.986823916435242,0.321074515581131,-0.895956873893738,0.306875646114349,0.326061546802521,-0.887278854846954,0.32622092962265,-0.551598846912384,0.0153567371889949,0.833968162536621,-0.514666616916656,0.0139047466218472,0.857277631759644,-0.443517714738846,0.00654834695160389,0.896241664886475,-0.514079630374908,0.0215117540210485,0.857472658157349,-0.543055951595306,0.0155559154227376,0.839552402496338,-0.541789352893829,-0.0279448535293341,0.840049624443054,0.356948763132095,-0.872895658016205,0.332627028226852,-0.314372807741165,-0.0198500398546457,0.949092149734497,-0.291392475366592,-0.0301142930984497,0.956129491329193,-0.348121017217636,-0.0295113157480955,0.936984956264496,-0.460247069597244,-0.544216334819794,0.7014279961586,0.278550177812576,-0.919875502586365,0.276113837957382,-0.556395292282104,-0.0261576678603888,0.830505907535553,-0.542056560516357,0.00338608073070645,0.840335190296173,-0.565587997436523,0.00236530578695238,0.82468456029892,-0.542500972747803,0.0200688783079386,0.839815437793732,-0.551268994808197,-0.0262650121003389,0.833914041519165,-0.550893664360046,0.00867549050599337,0.834530353546143,-0.555902361869812,-0.0284273494035006,0.83076149225235,-0.557207107543945,0.00877491477876902,0.830327212810516,-0.557571411132813,-0.0261328388005495,0.829717576503754,-0.547368228435516,0.00861997250467539,0.836847603321075,-0.545978903770447,-0.028088366612792,0.83732795715332,-0.547190248966217,0.0154598914086819,0.836865484714508,
- -0.446873784065247,-0.0411125347018242,0.893651843070984,-0.387524217367172,-0.0412114039063454,0.920938014984131,-0.388691693544388,0.0186995435506105,0.921178102493286,-0.385458081960678,-0.0411736816167831,0.921806395053864,-0.385129272937775,0.00606502778828144,0.922842681407928,-0.386623382568359,0.0187363643199205,0.92204737663269,-0.255435585975647,-0.0599679611623287,0.964964509010315,-0.447039008140564,-0.0439071357250214,0.893436253070831,-0.319955378770828,-0.045113779604435,0.946357905864716,-0.3976871073246,-0.0413944534957409,0.916586875915527,-0.446804046630859,-0.0399498641490936,0.893739402294159,-0.255215644836426,-0.0558838956058025,0.965267837047577,-0.0948693230748177,0.000765982957091182,0.995489537715912,-0.252088099718094,-0.00451459363102913,0.967693865299225,-0.322145342826843,-0.016753476113081,0.946541965007782,-0.395844101905823,0.00623376574367285,0.918296575546265,-0.395754516124725,-0.041359968483448,0.917424499988556,-0.396426767110825,-0.0648970678448677,0.915769755840302,-0.399793803691864,-0.064793772995472,0.914312124252319,-0.401502072811127,-0.0360530279576778,0.915148198604584,-0.399314284324646,0.00628841435536742,0.916792511940002,-0.405745178461075,-0.0141117861494422,0.913877308368683,-0.388567358255386,-0.065134160220623,0.919115304946899,-0.316164016723633,-0.000530529185198247,0.948704421520233,-0.450554311275482,-0.0631072744727135,0.890515744686127,-0.149318426847458,-0.617992281913757,0.771874070167542,-0.17818795144558,-0.60454797744751,0.776383280754089,-0.220859572291374,-0.0689432546496391,0.97286581993103,-0.204852253198624,-0.00466454541310668,0.978781819343567,-0.24385778605938,-0.00763350492343307,0.96978098154068,-0.203318163752556,-0.0237957462668419,0.97882354259491,-0.217803478240967,-0.0689918249845505,0.973551213741302,-0.215695202350616,0.0605107843875885,0.97458404302597,-0.218017578125,-0.0375823155045509,0.97522097826004,-0.216409996151924,0.0605245158076286,0.974424719810486,-0.218523651361465,-0.0689804330468178,0.973390519618988,-0.158054411411285,0.402756869792938,0.901557385921478,
- -0.218921974301338,0.39583483338356,0.891845285892487,-0.267687380313873,0.0614296607673168,0.961545586585999,-0.073690690100193,-0.0240074228495359,0.996992230415344,-0.193483904004097,-0.0369729287922382,0.980406641960144,-0.252263724803925,-0.00713383872061968,0.967632234096527,-0.0731861218810081,-0.0190168041735888,0.997136950492859,-0.251882910728455,-0.00148719968274236,0.967756688594818,-0.095213308930397,0.00515529466792941,0.995443642139435,-0.159901201725006,0.531931519508362,0.831553041934967,-0.380698800086975,0.0628403350710869,0.922561407089233,-0.3967025578022,-0.0195342674851418,0.91773933172226,-0.0419662296772003,-0.0304623562842608,0.998654544353485,0.0481061339378357,-0.0146334543824196,0.998735129833221,-0.132263749837875,-0.0282572470605373,0.990811705589294,-0.208562508225441,0.060372106730938,0.976143896579742,-0.209186807274818,-0.0373653024435043,0.977161586284637,-0.209925934672356,-0.0126567957922816,0.977635383605957,-0.363473743200302,0.0626798942685127,0.929493427276611,-0.346979409456253,-0.0155801316723228,0.937743306159973,-0.380140423774719,-0.0201450306922197,0.924709379673004,-0.206540867686272,-0.0372997671365738,0.977726757526398,-0.0729908719658852,-0.0170903541147709,0.997186183929443,-0.207281768321991,-0.0125987837091088,0.978200256824493,0.0484782829880714,-0.0206344556063414,0.998611092567444,-0.0204524807631969,-0.0309912115335464,0.999310374259949,-0.0202664993703365,-0.0231321379542351,0.999526977539063,-0.0204524807631969,-0.0309912115335464,0.999310374259949,-0.0207023061811924,-0.00836108438670635,0.999750733375549,-0.0202664993703365,-0.0231321379542351,0.999526977539063,0.578475415706635,-0.0329175554215908,0.815035343170166,0.0318147242069244,-0.285435348749161,0.9578697681427,0.0584809742867947,-0.193932637572289,0.979270219802856,0.00425854697823524,0.015611844137311,0.999869167804718,-0.023333802819252,-0.00343500170856714,0.999721825122833,0.00322206667624414,-0.0236914120614529,0.999714136123657,-0.00169575435575098,-0.00791381485760212,0.999967277050018,
- -0.0011845714179799,0.0157833695411682,0.999874830245972,-0.00226704543456435,-0.0235618855804205,0.9997199177742,0.0469502657651901,0.00383198028430343,0.998889863491058,-0.0234478488564491,-0.0028409119695425,0.999721050262451,-0.00561943184584379,0.0159227792173624,0.999857544898987,0.465578854084015,0.883840024471283,0.0454221665859222,-0.0217156764119864,0.797215044498444,0.603304743766785,0.575633585453033,-0.00525320088490844,0.817690908908844,0.605695903301239,0.0283225663006306,0.795192122459412,0.465578854084015,0.883840024471283,0.0454221665859222,0.575633585453033,-0.00525320088490844,0.817690908908844,-0.00488446746021509,0.015899695456028,0.999861657619476,-0.00567629933357239,-0.00800772197544575,0.999951839447021,-0.00617000181227922,0.0235179029405117,0.999704480171204,-0.444898188114166,0.894741773605347,0.0387680903077126,-0.497508883476257,0.0126541713252664,0.867366552352905,-0.47111639380455,0.88104236125946,0.042587649077177,-0.00513280648738146,0.0235343649983406,0.999709963798523,-0.00466689141467214,-0.00798392109572887,0.999957263469696,-0.0322063378989697,-0.0102767730131745,0.999428510665894,-0.434755891561508,0.0144235054031014,0.900432825088501,0.0159575771540403,0.585430681705475,0.810565412044525,-0.553615212440491,0.831628918647766,0.0436296947300434,-0.0707044452428818,0.00527613284066319,0.997483372688293,-0.0314235351979733,0.000803875096607953,0.999505937099457,-0.0181648805737495,-0.00830153655260801,0.999800562858582,0.0200788266956806,0.628803789615631,0.777304708957672,-0.856235265731812,0.516475439071655,0.0107010761275887,-0.840320825576782,0.540342628955841,0.0434854403138161,-0.0712095573544502,0.000365189946023747,0.997461318969727,-0.0230499412864447,-0.00790137890726328,0.999703109264374,-0.0317994356155396,-0.00451022991910577,0.999484121799469,-0.884034216403961,-0.465485632419586,0.0425045043230057,-0.0505343042314053,-0.288086026906967,0.956270217895508,-0.00306428666226566,-0.21213398873806,0.977235794067383,-0.0226745009422302,-0.0118359411135316,0.999672830104828,
- -0.071479432284832,-0.0022656568326056,0.997439503669739,-0.0934478938579559,-0.0171287525445223,0.995476841926575,-0.00206615938805044,-0.222062885761261,0.975030183792114,-0.181869953870773,-0.0203590150922537,0.983111798763275,-0.621409952640533,-0.78223729133606,0.0442092567682266,-0.148346856236458,-0.0210192110389471,0.988712012767792,-0.147632628679276,-0.988230288028717,0.0400691516697407,-0.166759327054024,-0.985329806804657,0.0362862423062325,0.00822998955845833,-0.0317383445799351,0.999462425708771,-0.0232234019786119,-0.00608221814036369,0.999711811542511,-0.0939224138855934,-0.0111976796761155,0.995516657829285,-0.0248797032982111,0.0113302785903215,0.999626338481903,-0.00499940849840641,-0.0313227511942387,0.999496817588806,-0.00417199172079563,-0.0235495939850807,0.999714076519012,0.216376185417175,-0.975619792938232,0.0367064662277699,0.285690665245056,-0.0271275024861097,0.957937955856323,0.259254276752472,0.00408274354413152,0.96580046415329,-0.00499940849840641,-0.0313227511942387,0.999496817588806,-0.0033773819450289,-5.31871082785074e-005,0.999994397163391,-0.00417199172079563,-0.0235495939850807,0.999714076519012,0.75340074300766,-0.657359957695007,0.0162843652069569,0.749275684356689,-0.661951243877411,0.020161259919405,0.951067745685577,0.0149774448946118,0.308619171380997,-0.00645348010584712,-0.0312767401337624,0.999490022659302,-0.0907898545265198,-0.049608338624239,0.994633734226227,-0.00497659901157022,0.0159025900065899,0.999861180782318,-0.0947882458567619,-0.000265198032138869,0.995497524738312,-0.322066307067871,-0.0178395751863718,0.946549117565155,-0.212264254689217,0.0220707338303328,0.976963043212891,-0.20928430557251,-0.0461463965475559,0.976765394210815,-0.208387136459351,0.02196179702878,0.977799832820892,-0.322605103254318,-0.010328670963645,0.946477293968201,0.9997199177742,0.0157436206936836,0.017670514062047,-0.0380392372608185,-0.991337180137634,0.125712558627129,0.972070574760437,-0.234414264559746,0.0113456612452865,-0.0267616286873817,-0.79970371723175,0.599798142910004,
- 0.962912082672119,-0.269766420125961,-0.00516289565712214,0.959966480731964,-0.279859244823456,0.0119659882038832,0.99993222951889,0.00820223707705736,0.00826096720993519,0.0104706063866615,0.0664068311452866,0.99773770570755,0.0563385039567947,-0.154595553874969,0.986370205879211,0.0456827990710735,0.0237900968641043,0.998672664165497,0.00868945848196745,0.0207629092037678,0.999746680259705,0.00165791984181851,0.021055581048131,0.99977695941925,0.0125484308227897,0.000197613102500327,0.999921262264252,0.00157318380661309,0.0199794322252274,0.999799132347107,0.00863132532685995,0.0192802641540766,0.99977695941925,0.04677364975214,0.00663103861734271,0.998883605003357,0.000187278070370667,0.00237843301147223,0.99999725818634,-0.0394149050116539,0.00119776872452348,0.999222218990326,0.00110297685023397,0.0140078002586961,0.999901294708252,0.0265230219811201,0.000417685427237302,0.999648213386536,0.0271955076605082,-0.0148839112371206,0.999519348144531,-0.00392740219831467,-0.0498779565095901,0.998747706413269,-0.258706271648407,-0.0233556870371103,0.965673625469208,-0.0384172163903713,-0.0145987579599023,0.999155163764954,0.0353441387414932,-0.014623305760324,0.999268233776093,0.0349540933966637,0.000550458149518818,0.999388873577118,0.0341913364827633,-0.0325378514826298,0.99888551235199,-0.0107498709112406,-0.0160836614668369,0.999812841415405,-0.00924499984830618,-0.0311882104724646,0.999470770359039,-0.00777464499697089,0.0159904137253761,0.999841928482056,-0.0673346295952797,0.989628493785858,0.126892432570457,-0.999249637126923,-0.03182028606534,0.0220879297703505,-0.519876718521118,0.549265265464783,-0.654244482517242,0.632237315177917,-0.194371730089188,0.749997079372406,0.0628247931599617,-0.278575450181961,0.958357334136963,-0.0185070186853409,-0.301921397447586,0.953153192996979,-0.0272734388709068,-0.494818657636642,0.868568181991577,0.579488158226013,-0.401905179023743,0.708989202976227,0.69400155544281,0.0105213755741715,0.719896614551544,0.0772795826196671,-0.679890155792236,0.729230582714081,0.573332667350769,-0.419812738895416,0.703595697879791,
- -0.0346003323793411,-0.627749741077423,0.777645885944366,-0.00522924121469259,-0.0159105230122805,0.999859750270844,-0.00387275405228138,0.0158679075539112,0.999866604804993,-0.00622398545965552,0.0155497919768095,0.999859750270844,-0.00559802586212754,0.015569563023746,0.99986320734024,-0.00116049428470433,-0.0210546813905239,0.999777674674988,-0.00460381340235472,-0.0158908776938915,0.999863147735596,0.0463975518941879,0.0125717967748642,0.998843967914581,0.000193867701455019,0.0035173452924937,0.999993801116943,-0.141284823417664,0.0142714036628604,0.989866137504578,-0.141058951616287,0.0168251600116491,0.989858210086823,0.000341503182426095,0.00619587721303105,0.999980747699738,-0.0551887378096581,0.0139842620119452,0.998378098011017,0.0478828735649586,-0.011046695522964,0.998791873455048,-0.143240466713905,-0.00830045528709888,0.98965311050415,-0.0937139764428139,-0.0195604246109724,0.995406985282898,-0.0988350510597229,0.381087243556976,0.919241189956665,-0.219010844826698,0.387532711029053,0.895462274551392,-0.108835056424141,0.395934730768204,0.911806225776672,-0.219005361199379,0.0289934314787388,0.975292801856995,-0.218611657619476,0.00848113000392914,0.975775063037872,-0.218782141804695,0.0222532954066992,0.975519955158234,-0.214348375797272,0.00863027572631836,0.976719260215759,-0.214572206139565,0.0290592983365059,0.976275742053986,-0.142252653837204,0.00320645049214363,0.989825189113617,-0.206876575946808,0.0291720628738403,0.977932155132294,-0.206138759851456,0.0218985080718994,0.978277802467346,-0.206905782222748,-0.0461702793836594,0.977270841598511,-0.943168163299561,0.00303967972286046,0.33230197429657,-0.941425800323486,-0.0159139130264521,0.336844503879547,-0.847796618938446,-0.516971051692963,0.118244901299477,-0.242941483855248,0.0255734976381063,0.969703793525696,-0.207079634070396,0.024973863735795,0.978005290031433,-0.14100769162178,0.0174033790826797,0.989855527877808,-0.243007227778435,0.0244712587445974,0.969715774059296,-0.141115248203278,0.0161896608769894,0.989860773086548,-0.221347019076347,0.02895837277174,0.974765062332153,
- 0.11362686753273,-0.772150039672852,-0.625198602676392,0.993132174015045,0.00413722172379494,-0.116925589740276,0.891518592834473,0.232747152447701,0.388617217540741,-0.244631037116051,-0.00454943347722292,0.969605565071106,-0.24385778605938,-0.00763350492343307,0.96978098154068,-0.204852253198624,-0.00466454541310668,0.978781819343567,-0.379396438598633,-0.194871470332146,0.904479682445526,-0.250114321708679,-0.194046691060066,0.948572039604187,-0.000109342530777212,-0.518343865871429,0.855172276496887,-0.146684989333153,-0.627939999103546,0.764313340187073,-0.220844447612762,-0.646470189094543,0.730276644229889,-0.247452139854431,-0.621946632862091,0.74293327331543,-0.380581080913544,-0.157153755426407,0.911296188831329,-0.349240481853485,-0.158753573894501,0.923487067222595,-0.249858096241951,-0.16488416492939,0.954140543937683,0.781295716762543,0.0102167529985309,0.624077439308167,0.781334102153778,-0.0180165339261293,0.623852849006653,-0.630272150039673,-0.198650136590004,0.750529885292053,-0.504334986209869,-0.688343346118927,0.521372854709625,-0.383877545595169,-0.758730947971344,0.526274979114532,0.752860844135284,-0.256933927536011,0.605958342552185,-0.655057013034821,0.0221463181078434,0.755254864692688,-0.678475022315979,0.0192501302808523,0.734371244907379,-0.686053037643433,0.0196315031498671,0.727286636829376,-0.654408633708954,0.00739094614982605,0.756104946136475,-0.686940431594849,0.00312304985709488,0.726706981658936,-0.718909680843353,0.00107909180223942,0.695102632045746,0.650322020053864,0.0170807987451553,0.759466588497162,-0.386542648077011,-0.83629846572876,0.388831198215485,0.763100385665894,-0.204506129026413,0.61307018995285,-0.686081051826477,0.0191598404198885,0.727272868156433,-0.678500831127167,0.0183961875736713,0.734369337558746,-0.676481306552887,0.00627074530348182,0.736433148384094,0.567008495330811,0.0174337513744831,0.823527455329895,0.596652567386627,-0.636327147483826,0.488971829414368,0.589707970619202,-0.640457093715668,0.491995126008987,0.253831893205643,-0.941061496734619,0.223545476794243,
- -0.246275410056114,0.0133226132020354,0.96910834312439,0.25721001625061,-0.934167981147766,0.247332230210304,-0.685458660125732,0.0291073862463236,0.727529525756836,-0.985222935676575,0.165894865989685,-0.0425986014306545,-0.720283269882202,0.0950512811541557,0.687137007713318,-0.566138625144959,0.669214725494385,0.481288582086563,-0.968648850917816,0.247759774327278,-0.0182893760502338,0.147092640399933,0.882221758365631,-0.447267860174179,-0.204169780015945,-0.134447023272514,0.969659090042114,-0.733411967754364,-0.197261720895767,0.650534152984619,-0.69597864151001,-0.191718727350235,0.69199550151825,-0.983780443668365,0.174868017435074,-0.0399678274989128,-0.686671435832977,0.00851156655699015,0.72691810131073,-0.912159264087677,-0.0366659052670002,0.408192723989487,-0.186440125107765,0.146200463175774,0.971527516841888,-0.963765442371368,0.266451567411423,-0.0126399071887136,-0.920684158802032,-0.037378553301096,0.388514459133148,-0.686199247837067,0.0171358864754438,0.727211773395538,-0.670268356800079,0.00640876870602369,0.742091119289398,-0.669054567813873,-0.0199089292436838,0.742946624755859,-0.550703585147858,-0.644948244094849,0.529874801635742,-0.206267952919006,-0.382003158330917,0.900848031044006,-0.657746016979218,-0.577108144760132,0.484062343835831,-0.714049339294434,-0.44782480597496,0.538132548332214,-0.206311196088791,-0.37981641292572,0.901762247085571,-0.194909170269966,0.00623739464208484,0.980801463127136,-0.862715184688568,-0.00936288386583328,0.505603492259979,-0.755937695503235,-0.0116317477077246,0.654540359973907,-0.782173454761505,-0.020125450566411,0.622735619544983,-0.756082355976105,-0.00867435894906521,0.654419004917145,-0.86259800195694,-0.00622071139514446,0.505851745605469,-0.875366389751434,-0.0229277219623327,0.482916206121445,-0.78148877620697,-0.0271045006811619,0.623330295085907,-0.781817734241486,-0.0148079404607415,0.623331189155579,-0.782394051551819,-0.0461326278746128,0.621072769165039,-0.862715184688568,-0.00936288386583328,0.505603492259979,-0.782173454761505,-0.020125450566411,0.622735619544983,
- -0.812453627586365,-0.0164112187922001,0.582794785499573,-0.862274050712585,0.00148998328950256,0.506439745426178,-0.912311315536499,0.00966187845915556,0.409383624792099,-0.876736283302307,0.0122756045311689,0.480814725160599,-0.91250878572464,3.483902401058e-005,0.409057140350342,-0.91535496711731,-0.00256716692820191,0.40263968706131,-0.876502573490143,0.00367832463234663,0.481383353471756,-0.900242328643799,0.0281077921390533,0.434481233358383,-0.862870275974274,-0.0139323053881526,0.505233407020569,-0.900153756141663,-0.0215002540498972,0.43504136800766,-0.912201106548309,0.0137702655047178,0.409511297941208,-0.862054884433746,0.00611737556755543,0.506778001785278,-0.895249247550964,0.0281503889709711,0.444675803184509,-0.781795144081116,-0.0294255446642637,0.622840702533722,-0.783116459846497,-0.0148745784536004,0.621697127819061,-0.78279322385788,-0.0271920002996922,0.621687531471252,-0.665397107601166,-0.0196844283491373,0.746230006217957,-0.666290819644928,0.00649635260924697,0.745663702487946,-0.666683971881866,-0.0351737067103386,0.744510114192963,-0.900846779346466,0.0281023122370243,0.433226644992828,-0.90068119764328,-0.0215341076254845,0.433946579694748,-0.901244282722473,-0.0136408386752009,0.433096617460251,-0.808941662311554,-0.016223905608058,0.587665200233459,-0.806901216506958,-0.027875354513526,0.590028345584869,-0.807232618331909,-0.0185808148235083,0.589940905570984,0.786977529525757,-0.573638737201691,0.227167263627052,-0.422838091850281,-0.893530607223511,0.151033848524094,-0.507229268550873,0.0255476888269186,0.861432433128357,-0.687914490699768,-0.0342511720955372,0.724983096122742,-0.68710321187973,0.00603123009204865,0.726534783840179,-0.687456846237183,-0.0171501524746418,0.726022779941559,-0.778799772262573,0.00374613748863339,0.627261579036713,-0.162607282400131,-0.983360409736633,-0.0810010358691216,-0.750490069389343,-0.0156067507341504,0.660697460174561,-0.893115878105164,0.0140167698264122,-0.449608206748962,-0.892238736152649,0.0562039911746979,-0.448052644729614,-0.786372780799866,0.496580064296722,-0.367458999156952,
- -0.900761544704437,0.0281030926853418,0.433404088020325,-0.901531994342804,-0.0136219933629036,0.432498246431351,-0.899317562580109,0.0566499270498753,0.433611214160919,-0.656062722206116,-0.249131441116333,0.712401032447815,-0.764025032520294,-0.0152363209053874,0.645006656646729,-0.516546130180359,-0.781839191913605,-0.349152982234955,-0.695923626422882,0.0119700077921152,0.718016028404236,-0.687914490699768,-0.0342511720955372,0.724983096122742,-0.687456846237183,-0.0171501524746418,0.726022779941559,-0.722796082496643,-0.462671041488647,-0.513323783874512,-0.685683071613312,-0.300435304641724,0.66300630569458,-0.660210728645325,-0.231993705034256,0.714353442192078,-0.517313182353973,0.623523533344269,0.586178719997406,-0.678868591785431,0.518883526325226,-0.519516468048096,-0.689131081104279,0.542765736579895,-0.480107992887497,-0.669978082180023,-0.0350340381264687,0.741553783416748,-0.696051180362701,0.0141319558024406,0.717853128910065,-0.727139472961426,0.0112567553296685,0.686397433280945,-0.916279494762421,0.0166682079434395,0.400192588567734,-0.524030923843384,0.612455725669861,0.59185266494751,-0.461757659912109,0.835240721702576,-0.29858472943306,-0.696066737174988,0.014400034211576,0.717832684516907,-0.732435286045074,0.0240669716149569,0.680411100387573,-0.727142632007599,0.0113245537504554,0.686393022537231,-0.734528541564941,-0.00530319660902023,0.678557097911835,-0.694121778011322,-0.0141748869791627,0.719717979431152,-0.703626096248627,-0.0102369617670774,0.710496783256531,-0.721672654151917,-0.0633132010698318,0.689333140850067,-0.864977955818176,-0.0823008641600609,0.495014905929565,-0.808274805545807,-0.0277865882962942,0.588149428367615,-0.736963331699371,-0.0789276883006096,0.671308755874634,-0.86519980430603,-0.0802918970584869,0.49495729804039,-0.721905767917633,-0.0609766356647015,0.689299643039703,-0.805624604225159,-0.0186498556286097,0.592132925987244,-0.805347502231598,-0.0279752369970083,0.592142522335052,-0.866320788860321,-0.0695915669202805,0.494616359472275,-0.734367907047272,-0.00268526887521148,0.678746342658997,
- -0.703495681285858,-0.0072985552251339,0.710662066936493,-0.690708041191101,-0.0160620212554932,0.722955346107483,-0.675560176372528,-0.0154732139781117,0.737142503261566,-0.703771770000458,-0.0136985555291176,0.71029406785965,-0.675739228725433,0.0227252766489983,0.736790418624878,-0.869382202625275,-0.033137533813715,0.493027895689011,-0.736111879348755,-0.0381369926035404,0.675784647464752,-0.871701538562775,-0.0176304075866938,0.489719897508621,-0.818631887435913,-0.021264586597681,0.573924958705902,-0.871701538562775,-0.0176304075866938,0.489719897508621,-0.736111879348755,-0.0381369926035404,0.675784647464752,-0.946484506130219,0.028779499232769,0.32146355509758,-0.903922975063324,-0.0134640522301197,0.427483588457108,-0.872010231018066,0.0412447340786457,0.48774716258049,-0.90078604221344,0.0567424334585667,0.430540382862091,-0.90299254655838,-0.0135257821530104,0.429443538188934,-0.946393370628357,0.00580164510756731,0.322964280843735,-0.871003925800323,0.00366255221888423,0.491262465715408,-0.927483081817627,0.0135370856150985,0.373620003461838,-0.871626079082489,0.014583277516067,0.48995441198349,-0.94646692276001,0.0309764333069324,0.321311086416245,-0.872013926506042,0.0433336943387985,0.487559348344803,-0.925935029983521,0.0428037941455841,0.375249415636063,-0.871554553508759,-0.0119579313322902,0.490152716636658,-0.808921933174133,-0.0208515077829361,0.587546348571777,-0.809335827827454,0.00287671806290746,0.587339162826538,-0.901461899280548,-0.000281455431832001,0.432858377695084,-0.901245057582855,-0.0144692817702889,0.433068156242371,-0.871629595756531,-0.0147180054336786,0.489944159984589,-0.927626192569733,0.00971550587564707,0.373383522033691,-0.871156573295593,-0.000112480178358965,0.491005331277847,-0.900048434734344,-0.0144019015133381,0.435551881790161,-0.810459971427917,-0.00745495921000838,0.585746586322784,-0.810987055301666,0.00282778427936137,0.585057437419891,-0.810585379600525,-0.0209220070391893,0.585246622562408,-0.901317358016968,-0.00313486158847809,0.433148264884949,-0.901245057582855,-0.0144692817702889,0.433068156242371,
- -0.901461899280548,-0.000281455431832001,0.432858377695084,-0.67630261182785,0.0208282172679901,0.73632937669754,-0.677007436752319,-0.0155292712152004,0.735812306404114,-0.677282750606537,0.0227039363235235,0.735372424125671,-0.40613666176796,0.877330958843231,-0.255623608827591,-0.959680140018463,0.0355871319770813,0.278832525014877,-0.948359668254852,0.014951971359551,0.316844463348389,-0.0999308824539185,-0.00390027207322419,0.994986712932587,0.33919557929039,0.893848836421967,0.293224483728409,0.338372528553009,0.883633315563202,0.323567986488342,0.338372528553009,0.883633315563202,0.323567986488342,-0.445326685905457,0.785404205322266,0.429912358522415,-0.0999308824539185,-0.00390027207322419,0.994986712932587,-0.702853381633759,-0.00180483714211732,0.711332559585571,-0.690572321414948,0.0214954130351543,0.722943902015686,-0.654282629489899,0.00485139386728406,0.756234586238861,-0.690517127513886,-0.0160545725375414,0.72313779592514,-0.690144777297974,0.0214753653854132,0.723352611064911,-0.691081464290619,-0.0173165053129196,0.722569406032562,-0.688329100608826,-0.017420694231987,0.725189328193665,-0.687415659427643,0.0213474631309509,0.725950419902802,-0.70289158821106,-0.00152647425420582,0.711295366287231,-0.802657902240753,-0.00776779651641846,0.596389293670654,-0.802597761154175,-0.0205844547599554,0.596165359020233,-0.802667558193207,-0.0124607747420669,0.596296489238739,-0.356089293956757,-0.0266157705336809,0.934072911739349,-0.674534618854523,-0.149447500705719,0.722958147525787,-0.747581303119659,-0.107936859130859,0.655341029167175,-0.755886912345886,-0.0126369521021843,0.654580235481262,-0.802657902240753,-0.00776779651641846,0.596389293670654,-0.802667558193207,-0.0124607747420669,0.596296489238739,-0.809581756591797,-0.00749052362516522,0.586959362030029,-0.755898237228394,-0.0124140344560146,0.65457147359848,-0.877123117446899,-0.0341815911233425,0.479047685861588,-0.879637777805328,-0.00113057624548674,0.475642859935761,-0.902258515357971,-0.0277615804225206,0.430300921201706,-0.902366161346436,-0.00307489489205182,0.43095925450325,
- -0.902248442173004,-0.0145259955897927,0.430971890687943,-0.902366161346436,-0.00307489489205182,0.43095925450325,-0.902258515357971,-0.0277615804225206,0.430300921201706,-0.905402958393097,-0.027601782232523,0.423655122518539,-0.880010187625885,0.00523782148957253,0.474926203489304,-0.915321230888367,-0.00364007777534425,0.402708113193512,-0.220145002007484,-0.0109241036698222,-0.975405991077423,-0.611345589160919,0.0152927115559578,-0.79121595621109,-0.444618105888367,-0.856565296649933,0.261936336755753,-0.557845830917358,-0.0262409094721079,-0.829529643058777,-0.568763136863709,0.0169431753456593,-0.822326838970184,-0.105610057711601,-0.116976611316204,-0.987503409385681,-0.703427672386169,0.679905772209167,0.207165792584419,-0.942380905151367,0.0501238033175468,0.330765545368195,-0.943599104881287,-0.0170826930552721,0.33064928650856,-0.487990766763687,0.833187639713287,0.2601218521595,-0.943599104881287,-0.0170826930552721,0.33064928650856,-0.942380905151367,0.0501238033175468,0.330765545368195,-0.154830396175385,0.0449506603181362,0.986918032169342,-0.408714890480042,0.529087066650391,0.74365246295929,-0.174352869391441,0.00823712348937988,0.984648764133453,-0.292907506227493,0.0138381309807301,0.956040620803833,-0.440358340740204,0.550302624702454,0.70940226316452,-0.374433696269989,0.925894618034363,0.0501855611801147,-0.958284139633179,-0.00870413146913052,0.285684794187546,-0.969412982463837,-0.0115049695596099,0.245165422558784,-0.963651299476624,0.0455268360674381,0.263255476951599,-0.963497579097748,-0.0613140799105167,0.260601192712784,-0.963917315006256,0.0455394014716148,0.262278079986572,-0.969438076019287,-0.0106129040941596,0.245106473565102,-0.964985072612762,0.0481430739164352,0.257848978042603,-0.964480578899384,0.0455660149455071,0.260194063186646,-0.964057981967926,-0.0612797029316425,0.258528977632523,-0.546724319458008,-0.813727259635925,0.197333320975304,-0.955873191356659,-0.293687969446182,-0.00733789755031466,-0.993991255760193,-0.0517489388585091,-0.0964544713497162,-0.962749361991882,-0.0613591596484184,0.263341873884201,
- -0.957308828830719,-0.113965339958668,0.26565346121788,-0.963751435279846,0.0482736118137836,0.262398213148117,-0.990923821926117,-0.11796709895134,-0.0644493997097015,-0.997974395751953,-0.0539442375302315,-0.0337243303656578,-0.953538119792938,-0.299111098051071,0.0360250547528267,-0.968019664287567,0.0478069633245468,0.246277123689651,-0.976921796798706,-0.0123825250193477,0.213238179683685,-0.928303182125092,-0.0252164788544178,0.370968401432037,-0.976932048797607,-0.0137294018641114,0.213109046220779,-0.963751435279846,0.0482736118137836,0.262398213148117,-0.957308828830719,-0.113965339958668,0.26565346121788,-0.928221464157104,-0.0148792741820216,0.371730715036392,-0.976780652999878,-0.00186061428394169,0.214233741164207,-0.946239233016968,-0.00240376172587276,0.323458641767502,-0.905114412307739,-0.318911105394363,0.281182557344437,-0.968801558017731,0.0058530461974442,0.247769013047218,-0.963073074817657,-0.114651530981064,0.243608936667442,-0.655168473720551,-0.752192497253418,0.0704328268766403,-0.975843667984009,-0.116171836853027,0.185022294521332,-0.983264625072479,0.00430259946733713,0.182132184505463,-0.967623889446259,0.0059603825211525,0.25232657790184,-0.93186217546463,-0.313255071640015,0.183041498064995,-0.970850169658661,0.0210534818470478,0.238760814070702,-0.96121609210968,0.0205403212457895,0.2750304043293,-0.92159515619278,-0.316075563430786,0.225296631455421,-0.912582039833069,0.40269410610199,0.070932649075985,-0.994510412216187,0.00247110426425934,0.104609496891499,-0.991767525672913,-0.0595964156091213,0.113337688148022,-0.975796699523926,-0.0691746845841408,0.207450523972511,-0.995502352714539,0.00436403276398778,0.0946365669369698,-0.997056007385254,-0.0246956907212734,0.0725923404097557,-0.99705445766449,0.0229762885719538,0.0731745660305023,-0.997060418128967,-0.0246948469430208,0.0725321471691132,-0.995502591133118,0.00359462294727564,0.0946671292185783,-0.998023748397827,0.00241283560171723,0.0627916380763054,-0.953502476215363,-0.0272504519671202,0.300150781869888,-0.83597719669342,-0.544306576251984,0.0698034837841988,
- -0.0447751060128212,-0.922138094902039,0.384261280298233,-0.996395647525787,0.0228937566280365,0.0816797316074371,-0.996370613574982,-0.0215913392603397,0.0823375061154366,-0.996651411056519,0.00193097838200629,0.0817448198795319,-0.997216522693634,-0.0218725241720676,0.0712798982858658,-0.997216641902924,0.0229978356510401,0.0709244757890701,-0.997217059135437,-0.0246642604470253,0.0703549757599831,-0.0406852625310421,-0.875644624233246,0.481239259243011,-0.940966784954071,-0.0142384693026543,0.33819967508316,-0.933708429336548,-0.027677558362484,0.356962949037552,-0.992845594882965,0.00997789297252893,0.118987798690796,-0.996441900730133,0.00199039909057319,0.0842603221535683,-0.996160268783569,-0.0215267743915319,0.0848605334758759,-0.874803423881531,-0.00922214239835739,0.484390288591385,-0.0425489321351051,-0.897421717643738,0.439117163419724,-0.0561269074678421,-0.887778222560883,0.456836491823196,-0.0418472215533257,-0.514528155326843,0.856451749801636,-0.916310131549835,-0.392818063497543,0.077908493578434,-0.724030733108521,-0.000809287012089044,0.689767241477966,-0.00375759461894631,-0.243741720914841,0.969832897186279,-0.939671099185944,-0.331201404333115,0.0855797603726387,-0.0307034328579903,-0.28316867351532,0.958578526973724,-0.976526379585266,-0.050231646746397,0.20945879817009,-0.992554187774658,-0.0402332209050655,0.114968106150627,-0.990941524505615,-0.0334783159196377,0.13005442917347,-0.991446912288666,-0.0205680932849646,0.128879725933075,-0.946225523948669,-0.00300201075151563,0.323493838310242,-0.976752460002899,-0.000396508810808882,0.214370399713516,-0.58312052488327,0.80142068862915,0.133023902773857,-0.0354297384619713,0.4529929459095,0.890809834003448,-0.689130485057831,0.723427832126617,0.0418488197028637,-0.992844343185425,-0.0116700837388635,0.118844091892242,-0.991762459278107,-0.00879042688757181,0.127789467573166,-0.992991626262665,-0.0182813256978989,0.116762392222881,-0.464580237865448,-0.00662876758724451,0.885506212711334,-0.787006795406342,0.614061057567596,0.0595767125487328,
- -0.0367618463933468,0.487307131290436,0.8724564909935,-0.997508764266968,0.0146220158785582,0.0690107867121696,-0.991762459278107,-0.00879042688757181,0.127789467573166,-0.992844343185425,-0.0116700837388635,0.118844091892242,-0.0394558422267437,0.559093773365021,0.828165054321289,-0.432097434997559,0.0314969047904015,0.901276707649231,-0.438110947608948,-0.0072564035654068,0.898891627788544,-0.989984810352325,0.0266600828617811,0.138633698225021,-0.0489055886864662,0.989263832569122,0.137714803218842,-0.0303438119590282,0.992667078971863,0.117009900510311,-0.991608381271362,-0.0151832550764084,0.128383457660675,-0.998119711875916,0.0147816333919764,0.0594860315322876,-0.997463285923004,-0.0406505763530731,0.0584355182945728,-0.996605575084686,-0.0409238524734974,0.0714337080717087,-0.997257173061371,0.0145620414987206,0.0725675523281097,-0.997109174728394,0.0252466518431902,0.0716654881834984,-0.960806488990784,0.00101694709155709,0.277218073606491,-0.946313500404358,0.00113240501377732,0.323248267173767,-0.991570949554443,-0.0165220312774181,0.128507182002068,-0.947221696376801,-0.0447906516492367,0.317434787750244,-0.947441816329956,-9.71994668361731e-005,0.319928407669067,-0.980073869228363,-0.14183184504509,0.13906529545784,-0.94647079706192,0.0305416956543922,0.321341395378113,-0.965387403964996,0.0014404624234885,0.260816276073456,-0.963299810886383,0.0606803074479103,0.261479586362839,-0.973896563053131,-0.0253454092890024,0.22557270526886,-0.970889329910278,0.00198682141490281,0.239520341157913,-0.970837891101837,-0.0437897592782974,0.235703706741333,-0.995731234550476,0.0256158877164125,0.0886742323637009,-0.99552184343338,-0.0292313992977142,0.0898998752236366,-0.99517434835434,-0.0412828177213669,0.0890152528882027,-0.965483725070953,0.00144964328501374,0.260459750890732,-0.964838683605194,-0.0186626557260752,0.262179374694824,-0.963384747505188,0.0606856569647789,0.26116481423378,-0.964395761489868,0.0013465816155076,0.264459908008575,-0.964183151721954,-0.0241284929215908,0.264137983322144,-0.964345157146454,-0.018622450530529,0.263992100954056,
- -0.14824253320694,0.00933811254799366,0.988906919956207,-0.148817226290703,0.0120561476796865,0.988791227340698,0.15279383957386,0.36541560292244,0.918218672275543,0.131528005003929,0.0187154021114111,0.991135776042938,-0.644982695579529,-0.752005159854889,0.135961577296257,0.455078810453415,0.080353707075119,0.88681823015213,-0.963616728782654,-0.0185635052621365,0.266642421483994,-0.963464260101318,-0.0240440107882023,0.266755878925323,-0.958692014217377,-0.021968774497509,0.283596634864807,-0.76386684179306,0.642201125621796,-0.0639149472117424,-0.887789845466614,0.356841236352921,0.290677696466446,-0.841107487678528,0.371537506580353,0.393062740564346,-0.880488455295563,0.304314523935318,0.363500684499741,-0.867734611034393,0.292829155921936,0.401606440544128,-0.910012423992157,0.293711215257645,0.292593777179718,-0.509967565536499,-0.855672180652618,0.0880808010697365,-0.275111377239227,-0.939596116542816,0.203649371862412,-0.395613849163055,-0.885780334472656,0.242658048868179,-0.379851281642914,0.913931131362915,0.142979562282562,-0.245870873332024,0.958479821681976,0.144443571567535,-0.305122166872025,0.951906085014343,0.0278441868722439,-0.958650708198547,-0.0118026817217469,0.284340500831604,-0.969412982463837,-0.0115049695596099,0.245165422558784,-0.958284139633179,-0.00870413146913052,0.285684794187546,-0.98616486787796,0.00152564619202167,0.16576112806797,-0.958571076393127,-0.00523440260440111,0.284805357456207,-0.958376348018646,-0.0234636161476374,0.284542053937912,-0.969499349594116,-0.00830701738595963,0.244953185319901,-0.958629906177521,-0.00971333961933851,0.284489691257477,-0.986199617385864,-0.00249249232001603,0.16554194688797,-0.99592137336731,0.0255696382373571,0.0865262821316719,-0.986215114593506,-0.0130563238635659,0.164952978491783,-0.995708525180817,-0.0292871333658695,0.0877894312143326,-0.727338075637817,-0.681112945079803,0.0840504616498947,-0.806996166706085,-0.570125758647919,0.153992906212807,-0.712039053440094,-0.664074242115021,0.228047788143158,-0.955354452133179,0.238882169127464,0.173876956105232,
- -0.973922550678253,0.210599049925804,0.0843974128365517,-0.991176128387451,0.130780801177025,0.0215930417180061,-0.99846738576889,-0.0102469986304641,0.0543881580233574,-0.986194849014282,-0.0166854280978441,0.164746344089508,-0.995795905590057,0.0256002955138683,0.0879495963454247,-0.986192941665649,-0.0169378109276295,0.16473188996315,-0.998465418815613,-0.0105187445878983,0.054370928555727,-0.995377361774445,-0.0120886648073792,0.0952775478363037,-0.0303438119590282,0.992667078971863,0.117009900510311,-0.727516651153564,0.681051135063171,0.0830002054572105,-0.989984810352325,0.0266600828617811,0.138633698225021,-0.998023748397827,0.00241283560171723,0.0627916380763054,-0.995502591133118,0.00359462294727564,0.0946671292185783,-0.998463749885559,0.00384599179960787,0.0552757009863853,0.0182217322289944,0.566067457199097,-0.824157536029816,-0.780986189842224,0.619135737419128,0.0820471197366714,-0.025463480502367,0.610577762126923,-0.791547000408173,-0.98268860578537,-0.172594711184502,0.067337729036808,-0.972058176994324,-0.231478318572044,0.0389966703951359,-0.0348057299852371,-0.365743517875671,-0.930064618587494,-0.778828561306,-0.117829211056232,-0.616070091724396,-0.782876372337341,-0.0616917125880718,-0.619111239910126,-0.687516808509827,-0.0637233704328537,-0.723367094993591,-0.770980715751648,0.117559559643269,-0.62591427564621,-0.727056443691254,0.106297232210636,-0.678299248218536,-0.679960787296295,0.108025953173637,-0.725247442722321,-0.663069546222687,0.0158577300608158,-0.748389840126038,-0.686568021774292,0.0152905359864235,-0.726904809474945,-0.726982235908508,0.0102675892412663,-0.686579465866089,-0.662562787532806,0.00344918644987047,-0.748998522758484,-0.662346363067627,0.0023507415316999,-0.749194085597992,-0.686980187892914,0.00357576995156705,-0.72666734457016,-0.633235931396484,-0.232277676463127,-0.738281428813934,0.713890492916107,-0.368108987808228,-0.595697999000549,-0.656606256961823,-0.171784654259682,-0.734410166740417,0.662542462348938,0.567763924598694,-0.488550543785095,-0.547406554222107,0.62202376127243,-0.559850454330444,
- 0.607318878173828,0.609764754772186,-0.509264886379242,-0.109232924878597,0.992902100086212,0.0470487102866173,-0.516769289970398,0.680382609367371,-0.519643127918243,-0.720140874385834,0.0226815678179264,-0.693457007408142,-0.663075685501099,0.0160256139934063,-0.748380780220032,-0.726988017559052,0.0104280970990658,-0.686570942401886,-0.681335031986237,0.0214593708515167,-0.731657087802887,-0.720140874385834,0.0226815678179264,-0.693457007408142,-0.14107421040535,0.988863170146942,0.0474105179309845,-0.109232924878597,0.992902100086212,0.0470487102866173,-0.779855489730835,0.0314570926129818,-0.625168681144714,-0.80598908662796,0.0305725112557411,-0.591140389442444,-0.727690756320953,0.0375617519021034,-0.684876084327698,-0.805355608463287,-0.010666087269783,-0.592696070671082,-0.782126069068909,-0.0123532814905047,-0.62299782037735,-0.81876277923584,-0.00827043876051903,-0.574072360992432,-0.680967390537262,0.0321716889739037,-0.731606721878052,-0.681532680988312,0.0214655976742506,-0.731472790241241,-0.726813077926636,0.00576305482536554,-0.686811208724976,-0.805989742279053,0.0298996567726135,-0.591173827648163,-0.786251604557037,0.0371457450091839,-0.616788983345032,-0.727681457996368,0.036987591534853,-0.684917211532593,-0.678269803524017,0.558787643909454,0.477185964584351,-0.975881218910217,0.0307363960891962,0.216127425432205,-0.978455007076263,-0.00487579870969057,0.20640304684639,-0.68116956949234,0.023047648370266,-0.731762826442719,-0.680877447128296,0.0214449595659971,-0.732083320617676,-0.680335760116577,0.0321418456733227,-0.732195436954498,-0.674455583095551,0.0212426967918873,-0.738009750843048,-0.674560964107513,0.0232394728809595,-0.737853229045868,-0.674552083015442,0.0174335762858391,-0.738021373748779,-0.799875617027283,-0.0157464221119881,-0.599959254264832,-0.79913467168808,0.0377543941140175,-0.599965333938599,-0.80597060918808,0.035921934992075,-0.590864598751068,-0.799515545368195,-0.0157511364668608,-0.600438833236694,-0.799234688282013,0.0189203526824713,-0.60072124004364,-0.798606514930725,0.0377294421195984,-0.600669741630554,
- -0.984113574028015,-0.00419280305504799,0.177490666508675,-0.529925942420959,0.614700376987457,-0.584227621555328,-0.711508512496948,0.487090736627579,0.506456553936005,-0.382033228874207,-0.017559140920639,-0.923981785774231,-0.721337139606476,0.471528381109238,-0.507280707359314,-0.0383149869740009,-0.561085343360901,-0.826870739459991,-0.669981241226196,0.0175315998494625,-0.742170989513397,-0.725324690341949,0.0202726367861032,-0.688108384609222,-0.702396392822266,0.0165846832096577,-0.711592853069305,-0.725454330444336,0.0183778088539839,-0.688024997711182,-0.670419812202454,0.0175222475081682,-0.741775095462799,-0.670451879501343,0.0233570169657469,-0.741585254669189,-0.462360471487045,0.80236554145813,-0.377402096986771,-0.725094676017761,0.452969193458557,0.518706858158112,-0.455453485250473,0.724368810653687,-0.517544150352478,-0.703747928142548,0.0115655967965722,-0.710355639457703,-0.70235687494278,0.0173538215458393,-0.711613416671753,-0.725275814533234,0.0209776442497969,-0.688138782978058,-0.768012762069702,-0.243418902158737,0.592371165752411,-0.644588768482208,-0.331235855817795,-0.689048826694489,-0.775734484195709,-0.28285676240921,0.564117074012756,-0.804410636425018,-0.015686172991991,-0.593866527080536,-0.803640365600586,-0.0363165996968746,-0.594006299972534,-0.804713785648346,0.0186887793242931,-0.593368709087372,-0.901029765605927,-0.0320675410330296,0.432570248842239,-0.900519967079163,-0.000243127695284784,0.434814840555191,-0.924077689647675,-0.247457414865494,0.291282474994659,-0.805958330631256,0.0186355616897345,-0.591679036617279,-0.837855756282806,0.00550463888794184,-0.54586398601532,-0.726998627185822,-0.00826789997518063,-0.686589121818542,-0.837948977947235,0.00331302615813911,-0.545738577842712,-0.807134568691254,0.0185850374400616,-0.590074896812439,-0.806094586849213,-0.036386925727129,-0.590667068958282,-0.70387327671051,0.014229778200388,-0.710183024406433,-0.725135505199432,0.022972522303462,-0.688222944736481,-0.760735392570496,0.00669578788802028,-0.649027585983276,-0.726998627185822,-0.00826789997518063,-0.686589121818542,
- -0.837855756282806,0.00550463888794184,-0.54586398601532,-0.760793149471283,0.00782762747257948,-0.648947238922119,-0.702240586280823,-0.513807535171509,0.492808282375336,-0.624237596988678,-0.392681509256363,-0.675372958183289,-0.988886475563049,-0.00584871554747224,-0.14855769276619,-0.918562710285187,-0.0155499400570989,-0.394969254732132,-0.376110523939133,-0.895808160305023,0.236788675189018,-0.396263390779495,-0.88710218667984,0.23669607937336,-0.675079226493835,0.0154545968398452,-0.737583339214325,-0.70387327671051,0.014229778200388,-0.710183024406433,-0.760735392570496,0.00669578788802028,-0.649027585983276,-0.704203248023987,0.021830428391695,-0.709662735462189,-0.682605743408203,0.0157465040683746,-0.730617165565491,-0.683272659778595,-0.0287243351340294,-0.729598104953766,-0.409802317619324,-0.872740089893341,0.265305161476135,-0.844660222530365,-0.0210585836321115,-0.534888446331024,-0.855717539787292,-0.0242836959660053,-0.516873121261597,-0.822973668575287,-0.0239094588905573,-0.567576110363007,-0.568467319011688,-0.54420804977417,-0.616994798183441,-0.335876882076263,-0.919772982597351,0.202988594770432,-0.670764803886414,-0.0216822624206543,-0.741353094577789,-0.686980187892914,0.00357576995156705,-0.72666734457016,-0.662346363067627,0.0023507415316999,-0.749194085597992,-0.686364769935608,0.0202566534280777,-0.72697526216507,-0.675406575202942,-0.0217586141079664,-0.737124502658844,-0.675827026367188,0.011605809442699,-0.736968874931335,-0.670871198177338,-0.0291732288897038,-0.740999937057495,-0.670210301876068,0.0116862868890166,-0.742079257965088,-0.669790685176849,-0.0216661859303713,-0.74223381280899,-0.67890191078186,0.0115612279623747,-0.734137952327728,-0.679622352123261,-0.0288580432534218,-0.732994318008423,-0.678952574729919,0.0156046766787767,-0.734016299247742,-0.757410407066345,-0.0409881584346294,-0.651651322841644,-0.799262464046478,-0.0424817427992821,-0.599478781223297,-0.798844039440155,0.0204266496002674,-0.601191282272339,-0.800607621669769,-0.0424428582191467,-0.59768408536911,
- -0.801672160625458,0.009412438608706,-0.597689867019653,-0.80021595954895,0.0204842630773783,-0.599362015724182,-0.83897602558136,-0.0452851876616478,-0.542280852794647,-0.872760057449341,-0.0597958564758301,-0.48447322845459,-0.757160365581512,-0.0437946356832981,-0.651759326457977,-0.792576014995575,-0.0426702313125134,-0.608278334140778,-0.757511556148529,-0.0398336201906204,-0.651605367660522,-0.87310779094696,-0.0557138994336128,-0.484333336353302,-0.838456094264984,-0.0109279435127974,-0.54485958814621,-0.934212684631348,0.00489996932446957,-0.356682807207108,-0.876433134078979,0.00150426744949073,-0.481521457433701,-0.794644415378571,0.00955905392765999,-0.60699987411499,-0.793830573558807,-0.042635478079319,-0.606642782688141,-0.79197633266449,-0.0656834915280342,-0.607008397579193,-0.789758563041687,-0.0655719116330147,-0.60990309715271,-0.790254592895508,-0.0360521897673607,-0.611717343330383,-0.792333900928497,0.00960648898035288,-0.610012054443359,-0.787993729114532,-0.0141828451305628,-0.615519881248474,-0.797099471092224,-0.0659399107098579,-0.600236892700195,-0.826210498809814,-0.00490447739139199,-0.563340187072754,-0.758799254894257,-0.0639806389808655,-0.648174643516541,-0.730596899986267,-0.589827120304108,-0.343994379043579,-0.710157036781311,-0.578411519527435,-0.401393979787827,-0.889966249465942,-0.0701644793152809,-0.450596570968628,-0.900802731513977,-0.00447124103084207,-0.434205591678619,-0.881708741188049,-0.00760519271716475,-0.471732825040817,-0.901216208934784,-0.0236116833984852,-0.432726085186005,-0.891413927078247,-0.0702217146754265,-0.447716593742371,-0.892914474010468,0.0597535893321037,-0.446243733167648,-0.893090128898621,-0.0387425422668457,-0.448206514120102,-0.89258223772049,0.0597639754414558,-0.446906268596649,-0.891086459159851,-0.070208802819252,-0.448369950056076,-0.839790523052216,0.402036666870117,-0.364853978157043,-0.813677847385406,0.394296914339066,-0.42715135216713,-0.868021011352539,0.0604119598865509,-0.492838680744171,-0.917507767677307,-0.0200956482440233,-0.397209852933884,
- -0.90078592300415,-0.0383087359368801,-0.432570368051529,-0.875861346721649,-0.0130411479622126,-0.482386589050293,-0.917713463306427,-0.0158035941421986,-0.396928519010544,-0.876055061817169,-0.00861432403326035,-0.482134133577347,-0.934463322162628,-0.00382640678435564,-0.356038868427277,-0.89844012260437,0.0595734044909477,-0.435036331415176,-0.899187505245209,-0.0384010896086693,-0.435875177383423,-0.897812306880951,0.0494857132434845,-0.437589168548584,-0.897699236869812,0.0494794808328152,-0.43782177567482,-0.899075984954834,-0.0384074971079826,-0.436104863882065,-0.917822062969208,-0.0133800897747278,-0.396766424179077,-0.795054614543915,-0.0154924457892776,-0.606339991092682,-0.770171225070953,0.533266365528107,-0.349947512149811,-0.803977847099304,0.0612703785300255,-0.59149432182312,-0.827632427215576,0.0456175543367863,-0.559413611888886,-0.805535793304443,-0.0160431917756796,-0.592330098152161,-0.81470400094986,0.0611922815442085,-0.576639294624329,-0.961326122283936,-0.0259600933641195,-0.274186313152313,-0.981851637363434,-0.0140617480501533,-0.189128577709198,-0.932221055030823,-0.0275972448289394,-0.360835582017899,-0.918720006942749,0.0167924053966999,-0.394552379846573,-0.960534393787384,-0.0313947945833206,-0.276383876800537,-0.95921778678894,0.0528702698647976,-0.277679622173309,-0.960534393787384,-0.0313947945833206,-0.276383876800537,-0.960218846797943,-0.0258644018322229,-0.278048187494278,-0.95921778678894,0.0528702698647976,-0.277679622173309,-0.981823861598969,-0.0199398454278708,-0.188743978738785,-0.965345442295074,-0.0263156741857529,-0.25964567065239,-0.965615153312683,-0.0166813042014837,-0.259439885616302,-0.965345442295074,-0.0263156741857529,-0.25964567065239,-0.965268433094025,-0.0309722572565079,-0.259417831897736,-0.965615153312683,-0.0166813042014837,-0.259439885616302,-0.956380724906921,-0.0294570196419954,0.29063406586647,-0.97338855266571,-0.216227114200592,-0.0758982002735138,-0.96782374382019,-0.180130183696747,-0.175699442625046,-0.995122015476227,-0.0212310440838337,-0.0963413342833519,
- -0.995280146598816,0.0194170903414488,-0.0950820669531822,-0.992841005325317,-0.00369726517237723,-0.11938614398241,-0.994725525379181,-0.0266174171119928,-0.0990588217973709,-0.994908154010773,0.0195603426545858,-0.0988694429397583,-0.994744479656219,-0.0211313422769308,-0.100184455513954,-0.998857378959656,0.00491002295166254,-0.0475380644202232,-0.992818892002106,-0.00258248229511082,-0.119599230587482,-0.994844257831573,0.0195843819528818,-0.0995055958628654,-0.0454367063939571,0.884290993213654,0.46472030878067,-0.613409698009491,0.785217881202698,-0.0846253409981728,-0.84642219543457,-0.00763348350301385,0.532457888126373,-0.84642219543457,-0.00763348350301385,0.532457888126373,-0.821877300739288,0.0283743664622307,0.568957507610321,-0.0454367063939571,0.884290993213654,0.46472030878067,-0.996171832084656,0.0190467052161694,-0.0853175446391106,-0.995938301086426,-0.0262388586997986,-0.0861300081014633,-0.99594920873642,0.0221539828926325,-0.0871458500623703,-0.038701169192791,0.893680691719055,-0.447031319141388,-0.844491899013519,0.011516410857439,-0.535444498062134,-0.0494817532598972,0.882154703140259,-0.468353092670441,-0.881393671035767,0.0133842015638947,-0.472192853689194,-0.788774430751801,0.613116860389709,-0.043847531080246,-0.0501435250043869,0.833712518215179,-0.549917340278625,-0.996205270290375,0.0222071520984173,-0.0841537490487099,-0.996184647083282,-0.0261542983353138,-0.0832604840397835,-0.993491590023041,-0.0212499555200338,-0.111905805766582,-0.778233408927917,0.62658816576004,-0.0417140536010265,-0.0106068793684244,0.518339872360229,-0.855108916759491,-0.0477645806968212,0.542009890079498,-0.839013636112213,-0.957235932350159,-0.0316691920161247,-0.287569910287857,-0.918728411197662,0.0173313245177269,-0.394509524106979,-0.988558351993561,-0.0051228734664619,-0.150752663612366,-0.988552212715149,-0.0054301037453115,-0.150781244039536,-0.99376380443573,-0.00952262990176678,-0.111098386347294,-0.994830369949341,-0.0265868213027716,-0.098008818924427,-0.934180855751038,0.0058562783524394,-0.35675173997879,
- -0.988598167896271,-0.00293922168202698,-0.150549098849297,-0.918760776519775,0.0195938777178526,-0.394328445196152,-0.0424443259835243,-0.461468130350113,-0.886140882968903,-0.944953620433807,-0.301742166280746,-0.12654784321785,-0.968898832798004,-0.23220257461071,-0.085540883243084,-0.988472938537598,-0.00911516230553389,-0.151122957468033,-0.993914067745209,-0.0173609256744385,-0.108781479299068,-0.993686974048615,-0.0134946536272764,-0.111373566091061,-0.986378192901611,-0.0545917972922325,-0.155170306563377,-0.934466004371643,-0.0560349486768246,-0.351615428924561,-0.987153649330139,-0.0396692641079426,-0.154771044850349,-0.993731319904327,0.0098902378231287,-0.111356519162655,-0.988738238811493,0.0183333214372396,-0.148528218269348,-0.987337529659271,0.0065522245131433,-0.158498182892799,-0.964745044708252,-0.249615475535393,-0.083420991897583,-0.978657841682434,-0.0198969338089228,-0.204531133174896,-0.0442349687218666,-0.778993546962738,-0.625469624996185,-0.986165821552277,-0.0207052547484636,-0.164463609457016,-0.0400715693831444,-0.988045454025269,-0.148863673210144,-0.0362711325287819,-0.985427916049957,-0.166181474924088,-0.99667876958847,-0.0375321544706821,-0.0722701326012611,-0.993716895580292,0.010585930198431,-0.111421175301075,-0.987319231033325,0.00749205192551017,-0.15857045352459,-0.993728339672089,0.0100406659767032,-0.111370518803597,-0.994610965251923,-0.0368689261376858,-0.0969005599617958,-0.995116531848907,-0.0219913125038147,-0.0962264314293861,-0.934423983097076,-0.057692714035511,-0.351458936929703,-0.966955661773682,-0.0320947170257568,-0.252916425466537,-0.987103283405304,-0.0414789728820324,-0.154618203639984,-0.0358440205454826,-0.963498950004578,0.265302062034607,-0.951591074466705,-0.0272998064756393,0.306152194738388,-0.958100140094757,0.0120510989800096,0.28617987036705,-0.994610965251923,-0.0368689261376858,-0.0969005599617958,-0.995403170585632,0.00633287569507957,-0.0955638960003853,-0.995116531848907,-0.0219913125038147,-0.0962264314293861,-0.334904581308365,0.0174732897430658,0.942090034484863,
- -0.0161387864500284,-0.641225039958954,0.767183125019073,-0.0194543898105621,-0.646649479866028,0.762539327144623,-0.967933535575867,-0.0322226285934448,-0.249131351709366,-0.934742271900177,-0.039572324603796,-0.353115946054459,-0.968734800815582,0.0173715204000473,-0.247489646077156,-0.838498294353485,-0.0123822223395109,-0.544763565063477,-0.897998511791229,0.024367043748498,-0.439323216676712,-0.934258460998535,0.00347751867957413,-0.356579720973969,-0.897524893283844,0.0244013052433729,-0.440288186073303,-0.838636994361877,-0.0176856778562069,-0.544403553009033,-0.896511435508728,-0.0387706905603409,-0.441320896148682,-0.00390190933831036,0.0157767254859209,0.999868035316467,0.428146958351135,-0.903569996356964,0.0158644616603851,-0.0107503347098827,-0.191975742578506,0.981340885162354,-0.421525537967682,-0.904937565326691,-0.0583458952605724,0.00437632761895657,-0.253838151693344,0.967236816883087,-0.0117713073268533,-0.265454947948456,0.964051425457001,-0.00835984200239182,0.0102985259145498,0.999912023544312,-0.995622754096985,0.0364799834787846,-0.0860508158802986,-0.979895889759064,-0.196871012449265,-0.0323428101837635,-0.998582065105438,0.0214980356395245,-0.0487005859613419,-0.996076345443726,0.0186337605118752,-0.0865153893828392,-0.995428740978241,0.019014373421669,-0.0935954675078392,-0.996860802173615,0.0066068060696125,-0.0788980573415756,-0.995431900024414,0.0187684427946806,-0.0936113819479942,-0.996086180210114,0.0180218946188688,-0.0865308120846748,-0.998833119869232,0.00745134521275759,-0.0477170124650002,-0.995508968830109,0.00300310668535531,-0.0946196988224983,-0.989783406257629,0.00067607662640512,-0.142577484250069,-0.995457947254181,0.0165345780551434,-0.0937556996941566,-0.997437953948975,0.00673224963247776,-0.0712210237979889,-0.997371375560761,-0.0184652414172888,-0.0700685754418373,-0.997711658477783,-0.0182748418301344,-0.0650963485240936,-0.997801899909973,0.00681866705417633,-0.0659157037734985,-0.997058272361755,-0.0376775525510311,-0.0667474120855331,-0.995352745056152,0.0239253137260675,-0.0932764038443565,
- -0.561087787151337,0.165902778506279,-0.810960531234741,-0.984869241714478,0.0896982550621033,-0.148279428482056,-0.56199324131012,0.1725123077631,-0.8089519739151,-0.995490074157715,-0.000843032903503627,-0.0948620811104774,-0.88569176197052,-0.0321824327111244,-0.463157027959824,-0.730004131793976,0.666078805923462,-0.153078243136406,-0.571067452430725,0.255155175924301,-0.780242145061493,0.445575773715973,0.879638731479645,-0.166427090764046,-0.88237863779068,0.099336288869381,0.459935039281845,-0.571212112903595,0.25688698887825,-0.779567718505859,-0.885432541370392,-0.0321978144347668,-0.463651269674301,-0.877050638198853,-0.201996043324471,0.435866981744766,-0.948038756847382,-0.271428436040878,-0.165979892015457,-0.956867754459381,-0.265170127153397,-0.118696704506874,-0.841406524181366,-0.490733742713928,-0.226308301091194,-0.822139799594879,-0.412050098180771,0.39281153678894,-0.884403705596924,0.00444648461416364,0.466701537370682,-0.736274898052216,-0.669353902339935,-0.0993207544088364,-0.823104679584503,-0.409468740224838,0.393489539623261,-0.762995660305023,-0.609743416309357,-0.214594081044197,-0.971653342247009,-0.0327233299612999,-0.234134614467621,-0.971698462963104,0.0173885468393564,-0.235583811998367,-0.971823036670685,-0.0245338995009661,-0.234431877732277,-0.972133636474609,0.0174414906650782,-0.233777686953545,-0.972406387329102,-0.0320056118071079,-0.231088012456894,-0.972258150577545,-0.0244696941226721,-0.232627034187317,-0.966907143592834,0.0168267916887999,-0.254573464393616,-0.966976940631866,-0.0320974923670292,-0.252834528684616,-0.967782855033875,0.0175091866403818,-0.251176744699478,-0.928212106227875,0.0102134319022298,-0.371911287307739,-0.981649458408356,0.00812788587063551,-0.190521046519279,-0.973299145698547,-0.00107724743429571,-0.229538351297379,-0.973342061042786,0.00250369170680642,-0.229344666004181,-0.957558870315552,0.0158209931105375,-0.287803620100021,-0.928285598754883,0.0136539526283741,-0.371617347002029,-0.981852054595947,-0.0105905784294009,-0.189352601766586,-0.927660644054413,-0.00744622899219394,-0.373350083827972,
- -0.94645881652832,-0.0188940651714802,-0.322271257638931,-0.870365560054779,0.379322975873947,-0.313971191644669,-0.816993355751038,0.386380016803741,-0.428056448698044,-0.86178070306778,0.395620226860046,-0.317519545555115,-0.892704725265503,0.0281166862696409,-0.449764341115952,-0.89320319890976,0.0104804392904043,-0.449531137943268,-0.892885386943817,0.0247315485030413,-0.449604272842407,-0.895452857017517,0.0106399217620492,-0.445029467344284,-0.895026743412018,0.0281898211687803,-0.445120692253113,-0.928083658218384,0.00514197256416082,-0.372336506843567,-0.898263394832611,0.0282917618751526,-0.438545882701874,-0.89885413646698,0.0243048947304487,-0.437573492527008,-0.897936463356018,-0.0388038866221905,-0.438411176204681,-0.124751284718513,0.00392917776480317,-0.992180287837982,-0.130104824900627,-0.0129286609590054,-0.991415977478027,0.0600171126425266,-0.52778548002243,-0.847254633903503,-0.928413867950439,0.0216693487018347,-0.370915293693542,-0.876667618751526,0.0310056805610657,-0.480096340179443,-0.899137496948242,0.0313349664211273,-0.436543107032776,-0.928390085697174,0.019855497404933,-0.371076285839081,-0.888514697551727,0.0279847159981728,-0.457994222640991,-0.876673936843872,0.0292974580079317,-0.480192124843597,0.680425465106964,-0.649795234203339,0.338802993297577,-0.0434391349554062,0.00136817805469036,0.999055147171021,-0.494259357452393,0.300845474004745,0.815597891807556,-0.881708741188049,-0.00760519271716475,-0.471732825040817,-0.900802731513977,-0.00447124103084207,-0.434205591678619,-0.876277446746826,-0.00425854278728366,-0.481788069009781,-0.780824720859528,-0.219559550285339,-0.584898591041565,-0.850608706474304,-0.216507390141487,-0.479154795408249,-0.846365809440613,-0.507630228996277,-0.161172151565552,-0.67478209733963,-0.617485582828522,-0.404203742742538,-0.678611099720001,-0.595068454742432,-0.430558353662491,-0.724124193191528,-0.600210964679718,-0.339692443609238,-0.787269473075867,-0.185710951685905,-0.587978065013886,-0.810389280319214,-0.190048396587372,-0.554211914539337,
- -0.855851471424103,-0.191013932228088,-0.48065784573555,0.0282242335379124,-0.234433680772781,-0.971722304821014,0.931840896606445,-0.361215323209763,-0.0345841199159622,0.00731733348220587,-0.173391446471214,-0.984825789928436,0.821757733821869,0.569538235664368,0.0184508264064789,-0.0225856266915798,0.63126415014267,-0.775239109992981,0.791344285011292,0.610280930995941,-0.0364888906478882,0.0159899648278952,0.00516798300668597,-0.999858796596527,0.00829252321273088,0.00483600096777081,-0.999953925609589,0.0153199201449752,0.00772514753043652,-0.999852895736694,-0.111951671540737,0.993012189865112,-0.0373319014906883,-0.0287518259137869,0.719805955886841,-0.693579733371735,-0.153720110654831,0.0269635617733002,-0.987746477127075,0.0166109818965197,-0.0157311633229256,-0.999738276004791,0.00634767627343535,-0.0176063869148493,-0.999824821949005,-0.0384604819118977,-0.0184940528124571,-0.999089062213898,0.0166109818965197,-0.0157311633229256,-0.999738276004791,-0.0384604819118977,-0.0184940528124571,-0.999089062213898,-0.00195521418936551,0.0236615836620331,-0.999718129634857,-0.00111767672933638,-0.626116514205933,-0.779728710651398,-0.0458745583891869,-0.602105438709259,-0.797097742557526,-0.0554779022932053,-0.606620788574219,-0.793053209781647,-0.153720110654831,0.0269635617733002,-0.987746477127075,-0.138405829668045,0.989167153835297,-0.0489119067788124,-0.111951671540737,0.993012189865112,-0.0373319014906883,-0.038821030408144,-0.0109434463083744,-0.999186277389526,-0.0165625344961882,-0.0115388166159391,-0.999796271324158,-0.0555958673357964,-0.00897299963980913,-0.998413026332855,-0.82790219783783,0.559482157230377,-0.039470050483942,-0.88394969701767,0.0319000892341137,-0.466492563486099,-0.881022453308105,-0.00642507988959551,-0.473030805587769,-0.0470820181071758,0.177391543984413,-0.983013510704041,-0.044806182384491,0.152568995952606,-0.987276613712311,-0.1154989823699,0.170679658651352,-0.978533923625946,-0.0536221228539944,0.901175200939178,-0.43012547492981,-0.0750785171985626,0.937042593955994,-0.341048896312714,
- 0.040429875254631,0.939488291740417,-0.340187013149261,-0.13083590567112,-0.912436902523041,-0.387738406658173,-0.00988111179322004,-0.910219728946686,-0.414007723331451,-0.11521065980196,-0.961906254291534,-0.247917026281357,-0.039138276129961,-0.00426044315099716,-0.999224722385406,-0.00665088929235935,-0.0234055779874325,-0.999703943729401,-0.00537488469853997,0.0237420238554478,-0.999703764915466,-0.124815747141838,0.392591834068298,-0.911203980445862,-0.183155581355095,0.345939844846725,-0.920206427574158,-0.117171533405781,0.336589753627777,-0.934333026409149,-0.180975168943405,0.00033564685145393,-0.983487725257874,-0.165833383798599,-0.00222203368321061,-0.986151278018951,-0.251505494117737,0.00399432191625237,-0.967847645282745,-0.039780780673027,0.00938958860933781,-0.999164342880249,-0.110618591308594,0.00480473414063454,-0.99385142326355,-0.252827137708664,-0.0188687238842249,-0.967327475547791,-0.0382867231965065,-0.0221161544322968,-0.999022126197815,-0.0293749514967203,-0.0231429263949394,-0.999300539493561,-0.0293831992894411,-0.0226803161203861,-0.999310970306396,0.609292805194855,0.45532163977623,-0.649187564849854,-0.112546540796757,0.582823216915131,-0.804767310619354,-0.166379079222679,0.615406036376953,-0.770450174808502,-0.957793354988098,0.00829585362225771,-0.287337929010391,-0.0821286886930466,-0.437559992074966,-0.895430684089661,-0.974538207054138,0.188209131360054,0.121871329843998,-0.181343570351601,0.0100965136662126,-0.98336797952652,-0.250897020101547,0.0126088261604309,-0.967931687831879,-0.285324484109879,0.0018917853012681,-0.958429217338562,-0.253345042467117,-0.0238701831549406,-0.967081546783447,-0.450884610414505,-0.00945375580340624,-0.892532169818878,-0.284556657075882,-0.00721761072054505,-0.958632051944733,-0.402392864227295,-0.580142498016357,0.708177030086517,-0.0466631352901459,-0.892953276634216,-0.447724252939224,-0.703117787837982,0.0278568677604198,-0.710527539253235,-0.181492522358894,0.0141784558072686,-0.983290135860443,-0.285703033208847,0.00649113487452269,-0.958296239376068,
- -0.21492862701416,0.0264462362974882,-0.976271629333496,-0.916834056377411,0.0107033997774124,-0.399124979972839,-0.916523396968842,0.00498580001294613,-0.399950057268143,-0.923896312713623,0.374147951602936,-0.0801808387041092,0.650544583797455,0.00769446231424809,-0.759429097175598,0.649796426296234,0.0579743832349777,-0.757894158363342,0.546456873416901,0.498840510845184,-0.672713160514832,-0.0339298881590366,-0.0225337874144316,-0.999170124530792,-0.0338559746742249,-0.0230690501630306,-0.999160468578339,-0.0342798829078674,-0.00107968074735254,-0.999411702156067,-0.0252879466861486,-0.000796472071669996,-0.999679982662201,-0.0271825715899467,-0.0231788996607065,-0.99936181306839,-0.0267881974577904,0.062424760311842,-0.997690081596375,-0.00552156148478389,0.0237454660236835,-0.99970281124115,-0.00667033810168505,-0.0234049614518881,-0.999703824520111,-0.00605533272027969,-0.0472857393324375,-0.998863041400909,0.00264826556667686,-0.0471496731042862,-0.998884320259094,0.0124963382259011,-0.0240069758147001,-0.9996337890625,-0.00187279982492328,-5.89763149037026e-005,-0.999998271465302,-0.00226110359653831,0.0157104395329952,-0.99987405538559,-0.00136958644725382,0.023647777736187,-0.999719440937042,-0.00127193133812398,-0.0472114123404026,-0.998884201049805,-0.0751690119504929,-0.0482390336692333,-0.996003329753876,-0.0780205801129341,-0.0024573365226388,-0.996948719024658,-0.00960263144224882,-0.121953405439854,-0.992489397525787,-0.00146202382165939,-0.0185677036643028,-0.999826550483704,0.00869453977793455,0.0158823728561401,-0.999836087226868,0.00968324299901724,-0.0470370911061764,-0.998846232891083,-0.0850436612963676,0.0299617256969213,-0.995926737785339,-0.0255085714161396,-0.000803420669399202,-0.999674260616302,-0.0269371401518583,0.0624221749603748,-0.997686266899109,-0.0405566170811653,-0.00127737375441939,-0.999176442623138,-0.0869528576731682,0.000284649606328458,-0.996212363243103,-0.0004580230161082,-0.00581688433885574,-0.999983072280884,-0.00139231642242521,0.0157241430133581,-0.999875426292419,
- -0.000965396640822291,-0.0122605366632342,-0.99992436170578,-0.0476636774837971,-0.0100682461634278,-0.998812675476074,-0.865660309791565,-0.00574901141226292,-0.500598847866058,-0.00716175697743893,0.62721586227417,-0.778812527656555,-0.872038662433624,0.488052517175674,-0.0367904789745808,-0.0986065492033958,0.830288708209991,-0.548541188240051,-0.89052277803421,0.453555285930634,-0.0354517810046673,0.00515866372734308,0.759578585624695,-0.650395095348358,-0.0476636774837971,-0.0100682461634278,-0.998812675476074,-0.000965396640822291,-0.0122605366632342,-0.99992436170578,-0.046146035194397,-0.0162197984755039,-0.998803019523621,-0.970455348491669,-0.241249546408653,-0.00388513598591089,-0.0167358256876469,-0.32421013712883,-0.945837140083313,-0.959011435508728,-0.281938433647156,-0.0284224580973387,-0.0444731079041958,-0.0351580567657948,-0.99839174747467,-0.00245872675441206,-0.0312258303165436,-0.999509334564209,-0.0207415390759707,-0.0330490805208683,-0.99923849105835,-0.00077293993672356,-0.00981632992625237,-0.999951541423798,-0.087208092212677,-0.0037757670506835,-0.996182978153229,-0.0231217667460442,-0.00569861894473433,-0.999716520309448,-0.858243823051453,-0.511855840682983,-0.037697795778513,-0.0119679216295481,-0.369684129953384,-0.929080426692963,-0.650953590869904,0.00257067778147757,-0.759113192558289,-0.44378000497818,-0.00719052832573652,-0.896106898784637,-0.437337577342987,-0.898286700248718,-0.0426246300339699,-0.459593951702118,-0.886769115924835,-0.0491322837769985,-0.0479531139135361,0.00445952778682113,-0.998839616775513,-0.00668483832851052,0.00803149491548538,-0.999945402145386,-0.00767757557332516,-0.0233730841428041,-0.999697327613831,-0.000119784497655928,0.00787659920752048,-0.999969065189362,-0.0444731079041958,-0.0351580567657948,-0.99839174747467,-0.0207415390759707,-0.0330490805208683,-0.99923849105835,-0.486796587705612,-0.872579276561737,-0.0404287949204445,-0.364581316709518,-0.0105118816718459,-0.931112229824066,-0.384829878807068,-0.0248251594603062,-0.92265373468399,-0.323616713285446,-0.0248913671821356,-0.945860803127289,
- -0.0154042579233646,-0.594130635261536,-0.804221034049988,-0.389431148767471,-0.919976472854614,-0.0445745512843132,-0.0121461041271687,-0.0237093009054661,-0.999645113945007,0.0143973184749484,-0.00715223094448447,-0.999870777130127,0.0156742073595524,-0.00152128690388054,-0.999876022338867,-0.00282079796306789,-0.0235265716910362,-0.999719262123108,-0.002238156972453,0.0235977862030268,-0.999719023704529,-0.00186635286081582,-0.0236301049590111,-0.999719023704529,0.0157445762306452,-0.00197391584515572,-0.999874114990234,-0.00519374571740627,-0.0236560124903917,-0.99970668554306,-0.0055647068656981,0.0235713012516499,-0.99970668554306,-0.00680717872455716,0.0235613416880369,-0.999699234962463,-0.00767757557332516,-0.0233730841428041,-0.999697327613831,-0.00668483832851052,0.00803149491548538,-0.999945402145386,0.08001609146595,0.247208535671234,-0.965652823448181,-0.133415445685387,0.0223544146865606,-0.990808069705963,-0.143525451421738,-0.316181212663651,-0.937779247760773,-0.0833755880594254,0.00981574878096581,-0.996469855308533,-0.0676466673612595,-0.317025065422058,-0.946001708507538,-0.0676796585321426,0.0230287201702595,-0.997441291809082,0.224916890263557,-0.303060114383698,-0.926049113273621,-0.0524082779884338,-0.555059432983398,-0.830158054828644,-0.11533260345459,-0.497060745954514,-0.860016882419586,-0.0277992133051157,-0.316730976104736,-0.948107957839966,-0.00421386444941163,0.00797319039702415,-0.999959349632263,-0.00670062517747283,-0.118052892386913,-0.992984712123871,-0.00421386444941163,0.00797319039702415,-0.999959349632263,0.0348252207040787,-0.616579055786133,-0.786522388458252,-0.00670062517747283,-0.118052892386913,-0.992984712123871,-0.0703315287828445,-0.894217610359192,-0.442072808742523,0.323777735233307,-0.291898727416992,-0.899979531764984,0.446229636669159,-0.0422439426183701,-0.89392101764679,0.243547439575195,-0.120369017124176,-0.962390720844269,0.214764848351479,-0.0503781400620937,-0.97536563873291,0.160631969571114,-0.308504819869995,-0.937561810016632,-0.0289630386978388,-0.055466216057539,-0.998040497303009,
- -0.0301462505012751,0.0469331666827202,-0.998443007469177,-0.0164975095540285,-0.0106187276542187,-0.99980753660202,-0.0165625344961882,-0.0115388166159391,-0.999796271324158,-0.0310020875185728,0.0469252094626427,-0.99841719865799,-0.0555958673357964,-0.00897299963980913,-0.998413026332855,-0.580646872520447,0.552857756614685,-0.597660005092621,0.0371685065329075,0.923698723316193,-0.381312370300293,-0.85704118013382,0.0175798218697309,-0.514947891235352,-0.0307790506631136,-0.0554917342960835,-0.997984647750854,-0.033865250647068,-0.117349997162819,-0.992513060569763,-0.0293312910944223,0.0480929128825665,-0.998412132263184,-0.0267216078937054,-0.0554344542324543,-0.998104691505432,-0.0255025643855333,0.047977551817894,-0.998522818088531,-0.027887437492609,0.0469540171325207,-0.998507797718048,-0.0221195556223392,-0.0172396674752235,-0.999606668949127,-0.0293312910944223,0.0480929128825665,-0.998412132263184,-0.033865250647068,-0.117349997162819,-0.992513060569763,-0.920615255832672,0.0473070815205574,-0.387594908475876,-0.621351957321167,0.531701743602753,-0.575512826442719,-0.913136839866638,0.0120606487616897,-0.407474726438522,-0.0240144319832325,0.0479325242340565,-0.998561859130859,-0.0227283723652363,-0.0102331312373281,-0.999689280986786,-0.141173660755157,-0.0188648216426373,-0.989805102348328,-0.0227283723652363,-0.0102331312373281,-0.999689280986786,-0.0873856395483017,-0.00661384128034115,-0.996152698993683,-0.141173660755157,-0.0188648216426373,-0.989805102348328,-0.0308271460235119,0.68265563249588,-0.730089724063873,-0.0969909951090813,0.0500164963304996,-0.994027733802795,-0.0839964747428894,-0.0143680078908801,-0.996362447738647,-0.137172177433968,0.83291882276535,-0.536125242710114,-0.0839964747428894,-0.0143680078908801,-0.996362447738647,-0.0969909951090813,0.0500164963304996,-0.994027733802795,0.940310716629028,-0.0201579481363297,-0.339719921350479,0.934936344623566,0.0210801679641008,-0.354188799858093,0.983233690261841,-0.118823766708374,0.138320058584213,-0.145574048161507,-0.85320383310318,-0.500850737094879,
- 0.999629259109497,-0.012081615626812,0.0244048330932856,0.915088355541229,0.0193069465458393,-0.402790993452072,-0.191005736589432,-0.0291928127408028,-0.98115473985672,-0.245480686426163,0.00601318245753646,-0.96938282251358,-0.165907859802246,-0.00329258921556175,-0.98613578081131,-0.246328577399254,-0.000430130807217211,-0.969186305999756,-0.1951874345541,-0.0293049924075603,-0.980328023433685,-0.195896476507187,-0.00462747504934669,-0.980613768100739,-0.1959098726511,-0.0123564433306456,-0.980544030666351,-0.195896476507187,-0.00462747504934669,-0.980613768100739,-0.1951874345541,-0.0293049924075603,-0.980328023433685,-0.373219817876816,-0.00881621427834034,-0.927701056003571,-0.451082110404968,-0.0133042261004448,-0.892383277416229,-0.250856190919876,-0.0362815447151661,-0.967344224452972,-0.1431565284729,0.00896615535020828,-0.989659547805786,-0.268406599760056,-0.000678414769936353,-0.963305592536926,-0.205007404088974,-0.0121838925406337,-0.978684604167938,-0.451041251420975,-0.0124965626746416,-0.892415642738342,-0.38322776556015,-0.00905262306332588,-0.923609495162964,-0.38318920135498,-0.0120689515024424,-0.923591136932373,-0.816392660140991,-0.0257131531834602,-0.576924443244934,-0.53751528263092,-0.148115426301956,-0.830144047737122,-0.453817993402481,-0.107507929205894,-0.884585499763489,-0.200494632124901,-0.00473609240725636,-0.979683458805084,-0.200403124094009,-0.0122713940218091,-0.979636669158936,-0.200284197926521,-0.00456030573695898,-0.979727327823639,-0.200403124094009,-0.0122713940218091,-0.979636669158936,-0.267248302698135,-0.0154820904135704,-0.963503420352936,-0.200284197926521,-0.00456030573695898,-0.979727327823639,-0.372643411159515,-0.0233498960733414,-0.927680909633636,-0.373042017221451,-0.00881201401352882,-0.927772700786591,-0.372390627861023,-0.00144325231667608,-0.928074955940247,-0.38322776556015,-0.00905262306332588,-0.923609495162964,-0.383121848106384,-0.023050369694829,-0.923410177230835,-0.38318920135498,-0.0120689515024424,-0.923591136932373,-0.267561852931976,-0.0115485684946179,-0.963471591472626,
- -0.37506115436554,-0.023281168192625,-0.926707684993744,-0.374782860279083,-0.00139799469616264,-0.927111566066742,-0.537191689014435,0.0180998463183641,-0.843265950679779,-0.519433259963989,-0.00150924525223672,-0.854509830474854,-0.536370635032654,-0.0168935656547546,-0.843813419342041,-0.533881783485413,-0.0182180143892765,-0.845362842082977,-0.533998489379883,0.0182138588279486,-0.84528923034668,-0.533162713050842,-0.0167925283312798,-0.845846176147461,-0.51947295665741,-0.00175331311766058,-0.854485094547272,-0.533543705940247,0.018230052664876,-0.845575988292694,-0.577927768230438,0.00518416427075863,-0.816071450710297,-0.396708011627197,0.883253991603851,0.249970272183418,-0.311451345682144,0.784550428390503,-0.536170423030853,-0.942925810813904,-0.00436186464503407,-0.33297461271286,-0.942925810813904,-0.00436186464503407,-0.33297461271286,-0.951875865459442,0.0272925812751055,-0.305266231298447,-0.396708011627197,0.883253991603851,0.249970272183418,-0.549830198287964,0.0176433082669973,-0.835090100765228,-0.549346208572388,-0.0176609512418509,-0.835408329963684,-0.548706710338593,0.026120737195015,-0.835606753826141,0.338558614253998,0.883078932762146,-0.324884116649628,0.328159391880035,0.894597887992859,-0.303325295448303,-0.0931071266531944,0.0178764592856169,-0.995495617389679,-0.166740626096725,0.01946328766644,-0.985808670520782,-0.448669523000717,0.612668097019196,-0.650640845298767,0.402195304632187,0.835215032100677,-0.375039726495743,-0.550983786582947,-0.0176012087613344,-0.834330320358276,-0.520554006099701,-0.0139294778928161,-0.853715121746063,-0.550459623336792,0.026143966242671,-0.834452331066132,-0.444429457187653,0.624689698219299,-0.64206326007843,0.66911256313324,0.519054412841797,-0.531856119632721,0.633508205413818,0.542883396148682,-0.55131208896637,-0.520981907844543,-0.00747387809678912,-0.853534996509552,-0.533584952354431,-0.0182285830378532,-0.845550000667572,-0.481381475925446,-0.00279814703390002,-0.876506865024567,-0.360221743583679,-0.0236993618309498,-0.932565629482269,-0.267041236162186,-0.0180511064827442,-0.963516056537628,
- -0.478075563907623,-0.0383336916565895,-0.877481818199158,0.673735797405243,-0.463215917348862,-0.575770020484924,-0.47887259721756,-0.301028907299042,-0.824659109115601,-0.531256496906281,-0.232239261269569,-0.814758539199829,-0.481157869100571,-0.00542706251144409,-0.876617193222046,-0.528259217739105,-0.01429074537009,-0.848962843418121,-0.52078914642334,-0.0104226786643267,-0.8536217212677,-0.530369102954865,-0.249378770589828,-0.810258507728577,-0.440392136573792,-0.0174709744751453,-0.897635519504547,0.463138788938522,-0.783243477344513,-0.414767503738403,-0.47468563914299,-0.0181419998407364,-0.879968404769897,0.0917894244194031,-0.988285660743713,-0.121927715837955,0.107088081538677,-0.985877871513367,-0.128751486539841,-0.525969207286835,0.0142549201846123,-0.850384116172791,-0.483463376760483,0.0239290706813335,-0.875037491321564,-0.486850678920746,0.0111262341961265,-0.87341433763504,-0.246841639280319,-0.957823932170868,0.147113934159279,-0.855785548686981,-0.0242844466120005,-0.516760468482971,-0.843793928623199,0.00906322430819273,-0.536590814590454,-0.941093385219574,0.0174795668572187,0.337694704532623,-0.613149762153625,-0.646013140678406,0.454658508300781,-0.611119508743286,-0.651016592979431,0.450233638286591,-0.526181638240814,0.0118179386481643,-0.850290060043335,-0.536550521850586,-0.0344022512435913,-0.843166649341583,-0.537330269813538,-0.019331818446517,-0.843150317668915,-0.557025194168091,-0.0349971801042557,-0.829757869243622,-0.525992333889008,0.0139919556677341,-0.850374341011047,-0.486855387687683,0.0110628250986338,-0.873412549495697,-0.536550521850586,-0.0344022512435913,-0.843166649341583,-0.538025438785553,0.00183562142774463,-0.842926621437073,-0.537330269813538,-0.019331818446517,-0.843150317668915,-0.266421645879745,-0.0808188244700432,-0.960462272167206,-0.490935951471329,-0.0614131577312946,-0.869028389453888,-0.473504036664963,-0.0792738571763039,-0.877216935157776,-0.267041236162186,-0.0180511064827442,-0.963516056537628,-0.263548254966736,-0.0339257605373859,-0.964049458503723,
- -0.478075563907623,-0.0383336916565895,-0.877481818199158,-0.491024821996689,-0.0637577250599861,-0.868809282779694,-0.266531854867935,-0.0828295797109604,-0.960260510444641,-0.373901873826981,-0.029319042339921,-0.927004754543304,-0.143414989113808,0.0127130299806595,-0.989580988883972,-0.260036408901215,0.0137106766924262,-0.965501487255096,-0.268687039613724,0.00302460440434515,-0.963222801685333,-0.0849523544311523,0.0313517674803734,-0.995891749858856,-0.2575603723526,0.0432351566851139,-0.965294480323792,-0.145398631691933,0.0425059348344803,-0.988459765911102,-0.257743239402771,0.0411446802318096,-0.965337038040161,-0.0850965231657028,0.0291556939482689,-0.995946049690247,-0.194862306118011,-0.013859698548913,-0.980732679367065,-0.37881138920784,-0.0192166939377785,-0.92527437210083,-0.378590673208237,-0.0294735636562109,-0.925094842910767,-0.265807837247849,-0.0699575990438461,-0.961484432220459,-0.198498278856277,0.058502621948719,-0.978353679180145,-0.196801617741585,-0.0139177236706018,-0.980344533920288,-0.0866451561450958,0.00514966016635299,-0.996225953102112,-0.201273486018181,0.0262999422848225,-0.979181945323944,-0.200157091021538,-0.0140180448070169,-0.979663550853729,-0.201873511075974,0.0584063120186329,-0.977668523788452,-0.201467663049698,0.0263020563870668,-0.9791419506073,-0.202286377549171,-0.0183512195944786,-0.979154467582703,-0.201373472809792,-0.0140543915331364,-0.97941380739212,-0.373611450195313,-0.0130838053300977,-0.927493035793304,-0.376109182834625,-0.0293918401002884,-0.926109194755554,-0.376299291849136,-0.0191456526517868,-0.926300346851349,-0.203832030296326,-0.0183071531355381,-0.978834688663483,-0.20313473045826,0.0263201612979174,-0.97879695892334,-0.28397411108017,-0.0139481667429209,-0.958730518817902,-0.413135856389999,-0.0305983424186707,-0.910155236721039,-0.411828398704529,-0.0117958197370172,-0.911185085773468,-0.411998093128204,-0.0261264257133007,-0.910810053348541,-0.562646567821503,-0.0192474685609341,-0.826473593711853,-0.562023997306824,0.00233803479932249,-0.827117621898651,
- -0.560975909233093,-0.0351106636226177,-0.827087223529816,-0.284257173538208,-0.0106965824961662,-0.958688497543335,-0.417387694120407,-0.0213845428079367,-0.908476889133453,-0.368344932794571,-0.0132578667253256,-0.929594695568085,-0.413748264312744,-0.0260539166629314,-0.910018444061279,-0.4135722219944,-0.0117359794676304,-0.910395681858063,-0.41577872633934,-0.046355776488781,-0.908283770084381,-0.284257173538208,-0.0106965824961662,-0.958688497543335,-0.451054096221924,-0.0127487126737833,-0.892405688762665,-0.417387694120407,-0.0213845428079367,-0.908476889133453,-0.37998628616333,-0.645279109477997,-0.662740767002106,-0.826118052005768,-0.381759881973267,-0.414473533630371,-0.313366025686264,-0.574858844280243,-0.755869746208191,-0.351488053798676,-0.448308765888214,-0.821873247623444,-0.8260218501091,-0.381999045610428,-0.414444983005524,-0.903670191764832,0.00448806583881378,-0.428205609321594,-0.89328408241272,-0.134724661707878,-0.428827285766602,-0.452677428722382,-0.195547237992287,-0.869968056678772,-0.49957999587059,-0.190423607826233,-0.845079123973846,0.265803009271622,0.203552976250649,-0.942292392253876,-0.134603276848793,-0.0358067154884338,-0.990252435207367,-0.90555477142334,0.0350682511925697,-0.422777473926544,-0.34211403131485,0.639290809631348,-0.688669204711914,0.262538552284241,0.212950453162193,-0.941129982471466,0.473923176527023,0.834661424160004,0.280601352453232,0.268503308296204,0.195705249905586,-0.943188965320587,-0.537461400032043,0.0233418848365545,-0.842965245246887,-0.185701340436935,-0.0342750996351242,-0.982008278369904,-0.538359344005585,0.0501920431852341,-0.841219365596771,0.268257588148117,0.196422204375267,-0.94310986995697,-0.487218886613846,0.109667584300041,-0.866366446018219,-0.536882519721985,0.0102481599897146,-0.843594789505005,-0.55976814031601,0.0022904728539288,-0.828646123409271,-0.560535728931427,-0.019353648647666,-0.827904045581818,-0.496933311223984,0.000888772716280073,-0.867788255214691,-0.577770411968231,0.00772643368691206,-0.816162884235382,-0.536537110805511,0.00328550091944635,-0.843870460987091,
- -0.537100672721863,0.0149422902613878,-0.843385815620422,-0.565647840499878,0.0128073282539845,-0.824547469615936,-0.565294742584229,0.00240711588412523,-0.824885487556458,-0.537224888801575,0.017736466601491,-0.843252539634705,-0.577094674110413,0.0180193856358528,-0.816478431224823,-0.565663516521454,0.0160893648862839,-0.824479162693024,-0.993180930614471,0.0165493879467249,0.115402519702911,-0.495185136795044,-0.463194102048874,-0.735012173652649,-0.762844800949097,-0.294247984886169,0.575748145580292,-0.795499920845032,0.0101184705272317,0.605869174003601,-0.565647721290588,0.0128566101193428,-0.824546754360199,-0.578278362751007,-0.197462856769562,-0.79158228635788,-0.500954747200012,-0.444019854068756,-0.74289345741272,-0.759344279766083,-0.26427361369133,0.594605505466461,-0.761487662792206,-0.29995122551918,0.574600517749786,-0.354835838079453,0.885017096996307,-0.301390647888184,-0.353962361812592,0.883561193943024,-0.306643605232239,-0.276563227176666,0.886740863323212,-0.370409727096558,-0.350833386182785,0.88816887140274,-0.296769261360168,-0.272628396749496,0.889824092388153,-0.365905523300171,-0.233384102582932,0.88836669921875,-0.395394057035446,0.240176320075989,0.889910459518433,0.387782096862793,0.313844233751297,0.891099214553833,0.327786535024643,0.241739645600319,0.887945652008057,0.39129838347435,0.309972375631332,0.894176602363586,0.323056280612946,0.236207023262978,0.893048942089081,0.382974922657013,0.336415350437164,0.89315938949585,0.298481523990631,0.439145267009735,0.897970795631409,0.0282825473695993,0.436189472675323,0.896547257900238,0.0770827978849411,0.437282592058182,0.896851122379303,-0.0666485875844955,0.455924957990646,0.887502789497375,-0.0668672770261765,0.45945417881012,0.884888470172882,-0.0766438990831375,0.457657277584076,0.888688027858734,0.0279901754111052,-0.461986631155014,0.884357631206512,-0.0669325664639473,-0.463697999715805,0.885554194450378,0.0278914719820023,-0.465247452259064,0.882449448108673,-0.0694842040538788,-0.443403244018555,0.8958780169487,0.0282166320830584,
- -0.441553145647049,0.894752383232117,-0.0667010396718979,-0.440568178892136,0.894397497177124,0.0771542489528656,0.191622495651245,0.897211492061615,0.397860020399094,0.157029792666435,0.896563947200775,0.414143323898315,0.26614710688591,0.896574020385742,0.354006737470627,0.273912787437439,0.888804793357849,0.367420494556427,0.285422265529633,0.886853098869324,0.363353461027145,0.199387609958649,0.889499485492706,0.411139249801636,-0.164715275168419,0.888568997383118,-0.428151875734329,-0.248274937272072,0.889721512794495,-0.383086383342743,-0.162999197840691,0.886904060840607,-0.432241201400757,-0.239855125546455,0.898529171943665,-0.367579787969589,-0.156226456165314,0.897380173206329,-0.412676721811295,-0.279332309961319,0.896768629550934,-0.343190163373947,0.275052964687347,0.895265758037567,0.350492596626282,0.247014477849007,0.894444525241852,0.372763752937317,0.335062325000763,0.894329726696014,0.296492159366608,0.339122831821442,0.891273558139801,0.301043480634689,0.337830424308777,0.890447199344635,0.304917395114899,0.27910977602005,0.892199635505676,0.355073988437653,-0.240455448627472,0.892991781234741,-0.38045608997345,-0.308215856552124,0.894383132457733,-0.324163556098938,-0.249969601631165,0.892620980739594,-0.375157237052917,-0.307160317897797,0.895198047161102,-0.322913229465485,-0.239399343729019,0.893807351589203,-0.379204899072647,-0.347182542085648,0.893448948860168,-0.284979313611984,0.0253302250057459,0.877604246139526,0.478716135025024,-0.00362473842687905,0.876978635787964,0.480515688657761,0.115458257496357,0.876503229141235,0.467345386743546,0.109984152019024,0.901082754135132,0.419467955827713,0.100804373621941,0.900591015815735,0.422817140817642,0.0192251149564981,0.902238547801971,0.430808514356613,0.0261038355529308,0.900189638137817,-0.434715092182159,-0.0758850127458572,0.901871383190155,-0.425287485122681,0.0192545056343079,0.899640202522278,-0.436207234859467,-0.0799126401543617,0.880261957645416,-0.467710256576538,0.0217029638588429,0.878573834896088,-0.477113246917725,-0.111362218856812,0.87912505865097,-0.463397920131683,
- 0.417178839445114,0.899410426616669,0.130471169948578,0.406489104032516,0.89854222536087,0.165494710206985,0.437265008687973,0.898048639297485,0.0480409562587738,0.451748043298721,0.890644609928131,0.0517292954027653,0.451599478721619,0.890228688716888,0.0595882311463356,0.431626439094543,0.892036557197571,0.134050041437149,-0.411250531673431,0.894077658653259,-0.177477777004242,-0.435618788003922,0.895469665527344,-0.0914909839630127,-0.416574239730835,0.893723726272583,-0.166505381464958,-0.43550980091095,0.895525574684143,-0.0914612710475922,-0.411175310611725,0.894116401672363,-0.177457019686699,-0.446769505739212,0.893771469593048,-0.0396177843213081,0.483095496892929,0.8748899102211,0.034444484859705,0.481657475233078,0.874067068099976,0.0633472427725792,0.481652230024338,0.873546540737152,-0.0701967030763626,0.432236701250076,0.899020075798035,-0.0702449381351471,0.433270543813705,0.899897992610931,-0.049600675702095,0.434058427810669,0.900187373161316,0.0354404486715794,-0.42586761713028,0.902055323123932,-0.0702355355024338,-0.427662581205368,0.903238713741302,0.0355605818331242,-0.426943957805634,0.902907729148865,-0.0497665703296661,-0.483188539743423,0.874838709831238,0.0344424694776535,-0.481745660305023,0.873495042324066,-0.0701964050531387,-0.481750905513763,0.87401556968689,0.0633473470807076,0.411986827850342,0.895005106925964,-0.170975804328918,0.430473655462265,0.893532991409302,-0.12763699889183,0.363532453775406,0.893342971801758,-0.264164179563522,0.378124386072159,0.885022222995758,-0.271583467721939,0.38380378484726,0.883549332618713,-0.268393844366074,0.426474660634995,0.886735022068024,-0.17838279902935,-0.436235338449478,0.889166474342346,0.138136506080627,-0.39552253484726,0.890335559844971,0.225531622767448,-0.439859241247177,0.887170374393463,0.139472678303719,-0.391891807317734,0.892370820045471,0.223819509148598,-0.432561695575714,0.8912273645401,0.136397019028664,-0.373970121145248,0.891393899917603,0.256053298711777,-0.0706253498792648,0.89334636926651,0.443784087896347,-0.108672209084034,0.89238166809082,0.438001543283463,
- 0.0243235938251019,0.892228305339813,0.450929075479507,0.0234783329069614,0.887046456336975,0.461082816123962,0.0259942356497049,0.885111153125763,0.464653164148331,-0.0714190974831581,0.888223707675934,0.453825920820236,0.120891630649567,0.882827162742615,-0.453873813152313,0.0163236502557993,0.884510278701782,-0.46623507142067,0.11361688375473,0.881423830986023,-0.458457380533218,0.014871671795845,0.891264140605927,-0.453240573406219,0.11945516616106,0.889621794223785,-0.440798729658127,-0.0309612210839987,0.889835476875305,-0.455229818820953,-0.406344085931778,0.897364318370819,0.172109603881836,-0.430632531642914,0.897971391677856,0.0905706584453583,-0.438378393650055,0.897267937660217,0.0522934794425964,-0.446997493505478,0.889432370662689,0.0954113528132439,-0.422917515039444,0.888736248016357,0.176886633038521,-0.42258957028389,0.886820197105408,0.186997205018997,0.458222806453705,0.887635707855225,-0.0462028458714485,0.432176440954208,0.889293789863586,-0.14959979057312,0.459761440753937,0.886536538600922,-0.0516947545111179,0.423282951116562,0.893947422504425,-0.147273853421211,0.449342012405396,0.892280638217926,-0.0438978336751461,0.406861901283264,0.891889333724976,-0.197476178407669,-0.36430498957634,0.897453546524048,0.248714670538902,-0.400014638900757,0.898364245891571,0.181466847658157,-0.416243135929108,0.897616922855377,0.145001605153084,-0.40953004360199,0.893031775951386,0.186492457985878,-0.373932927846909,0.892077803611755,0.253715127706528,-0.376441895961761,0.891230225563049,0.252982556819916,0.42741671204567,0.892730534076691,-0.142643243074417,0.388320177793503,0.89412260055542,-0.22305254638195,0.425273299217224,0.892321288585663,-0.151345193386078,0.38642218708992,0.895179688930511,-0.222106412053108,0.425544768571854,0.893771886825562,-0.141717135906219,0.361737906932831,0.893395245075226,-0.266440659761429,-0.477032333612442,0.876076817512512,0.0702105835080147,-0.478344172239304,0.877492785453796,-0.0345469601452351,-0.477027773857117,0.87660276889801,-0.0633411854505539,-0.434106826782227,0.900164067745209,-0.0354395285248756,
- -0.432550847530365,0.898868918418884,0.0702453106641769,-0.43428435921669,0.898522436618805,0.0636748299002647,0.428098917007446,0.90099823474884,0.0702392235398293,0.429672330617905,0.902285993099213,-0.0355230718851089,0.42981231212616,0.900659501552582,0.0638262704014778,0.482617110013962,0.875153481960297,-0.0344548597931862,0.481171101331711,0.873811542987823,0.0701982378959656,0.481176257133484,0.874332070350647,-0.063346691429615,-0.231793865561485,0.896444916725159,0.37770140171051,-0.263130992650986,0.895648300647736,0.358575195074081,-0.155390322208405,0.89507007598877,0.417975395917892,-0.159945204854012,0.890273451805115,0.42641618847847,-0.168780580163002,0.889876842498779,0.423830509185791,-0.236288383603096,0.89167445898056,0.386114537715912,0.272099018096924,0.894592583179474,-0.354494631290436,0.195065304636955,0.895954251289368,-0.399018228054047,0.263429045677185,0.894145607948303,-0.362089455127716,0.194089934229851,0.89693284034729,-0.397291481494904,0.271122634410858,0.895566642284393,-0.352778851985931,0.144388914108276,0.895114421844482,-0.421808063983917,-0.0276307631283998,0.877276659011841,0.479189336299896,-0.0527132637798786,0.876624584197998,0.478278875350952,0.063342347741127,0.876171767711639,0.477818787097931,0.0631984621286392,0.899194955825806,0.432960033416748,0.0495715737342834,0.899370014667511,0.434368789196014,-0.0283560547977686,0.900304615497589,0.434335976839066,0.0702308043837547,0.903253793716431,-0.42332050204277,-0.0284992679953575,0.904851734638214,-0.424771904945374,0.0498232804238796,0.903936684131622,-0.424754440784454,-0.0277185346931219,0.880063414573669,-0.474046528339386,0.0702217817306519,0.878415107727051,-0.472711354494095,-0.0633339807391167,0.878938138484955,-0.472712129354477,-0.653766810894012,0.0120591195300221,-0.756599962711334,-0.698915123939514,0.0135219627991319,-0.715076863765717,-0.65447211265564,-0.0786872431635857,-0.751980423927307,-0.664281904697418,0.0597753040492535,-0.745088219642639,-0.655845463275909,-0.07883021235466,-0.750767946243286,
- -0.699007093906403,0.00984559860080481,-0.715046942234039,-0.663814008235931,0.0598151385784149,-0.745501935482025,-0.663981080055237,-0.0470091514289379,-0.74627023935318,-0.655321419239044,-0.0787756592035294,-0.751231133937836,-0.605617702007294,-0.0500271953642368,-0.794181644916534,-0.605203628540039,0.0644667744636536,-0.793456077575684,-0.595560550689697,0.115068197250366,-0.795026361942291,-0.560775578022003,0.0183649510145187,-0.82776415348053,-0.605221152305603,-0.0500461682677269,-0.794482827186584,-0.595115602016449,0.115034006536007,-0.795364439487457,-0.602141976356506,-0.0501927509903908,-0.796809852123261,-0.560689151287079,0.0154565200209618,-0.82788211107254,-0.61051744222641,0.0125272329896688,-0.791903734207153,-0.82443904876709,0.0126147661358118,-0.565810143947601,-0.855014622211456,0.0147802345454693,-0.518393278121948,-0.822169959545136,-0.0868873745203018,-0.562572121620178,-0.829501330852509,0.0568116568028927,-0.555607736110687,-0.822519898414612,-0.0869303718209267,-0.562053680419922,-0.855237007141113,0.00731342844665051,-0.518185436725616,-0.829068839550018,0.0568552911281586,-0.556248426437378,-0.829944849014282,-0.0459331274032593,-0.555951356887817,-0.822033762931824,-0.0868706405162811,-0.562773704528809,-0.787726163864136,-0.0497155413031578,-0.614016354084015,-0.786378383636475,0.0607891790568829,-0.614746868610382,-0.777165472507477,0.114677257835865,-0.618759214878082,-0.756736099720001,0.0213565826416016,-0.653371512889862,-0.787726163864136,-0.0497155413031578,-0.614016354084015,-0.777165472507477,0.114677257835865,-0.618759214878082,-0.784899532794952,-0.0499477088451386,-0.617606639862061,-0.7566859126091,0.0142993424087763,-0.653622210025787,-0.788684964179993,0.0126978270709515,-0.614666402339935,0.8551145195961,-0.0116218347102404,0.518308877944946,0.824523210525513,-0.0094890957698226,0.565748751163483,0.812183856964111,-0.0103927049785852,0.58330899477005,0.853170037269592,0.0996441319584847,0.512027502059937,0.807066321372986,0.100809566676617,0.581791579723358,0.85011214017868,0.102048590779305,0.516619265079498,
- 0.812114894390106,0.00173734757117927,0.583494961261749,0.812110900878906,0.00112248898949474,0.583501994609833,0.855380594730377,0.00297337933443487,0.517991483211517,-0.912529289722443,0.00948408432304859,-0.408901333808899,-0.905382096767426,0.00915411487221718,-0.424499124288559,-0.880018711090088,0.0127296037971973,-0.474768370389938,-0.871547341346741,-0.105897560715675,-0.478738933801651,-0.907078564167023,-0.108938284218311,-0.406621396541595,-0.906327188014984,-0.109397105872631,-0.408170729875565,-0.912487745285034,0.00687740929424763,-0.409046232700348,-0.879946827888489,0.00921505410224199,-0.474982798099518,-0.878226637840271,0.00751369958743453,-0.478185683488846,-0.465171754360199,-0.0437730960547924,0.884137511253357,-0.439535915851593,-0.0961112380027771,0.893068194389343,-0.403453052043915,0.0659762322902679,0.912618637084961,-0.457658380270004,-0.0343796089291573,0.888463318347931,-0.40062215924263,0.0639841631054878,0.914006531238556,-0.42505943775177,-0.0876228660345078,0.900914371013641,-0.44013386964798,-0.0475420504808426,0.896672666072845,-0.392716765403748,0.0250963438302279,0.919317007064819,-0.381783992052078,0.0508038960397244,0.922854363918304,-0.372190117835999,0.00802254397422075,0.928121864795685,-0.418758422136307,-0.0633230060338974,0.905887186527252,-0.358081519603729,0.0278024151921272,0.933276414871216,0.089242972433567,-0.299620032310486,0.94987553358078,0.0116961114108562,-0.330475002527237,0.943742275238037,-0.213826701045036,0.0757533311843872,0.973930060863495,-0.587625563144684,0.319467216730118,0.743395507335663,-0.646928668022156,0.293358445167542,0.703863739967346,-0.405714303255081,0.0773179084062576,0.910723924636841,-0.357782244682312,0.0275558941066265,0.933398485183716,-0.343334406614304,-0.0401483103632927,0.938354730606079,-0.371899634599686,0.00778260920196772,0.928240299224854,-0.444288194179535,-0.611319005489349,0.654902338981628,-0.0733446180820465,-0.367713928222656,0.927042067050934,0.0564065463840961,-0.303866058588028,0.951043486595154,-0.280223578214645,0.089356541633606,0.955766797065735,
- -0.330516517162323,0.0179317016154528,0.943629860877991,-0.336167693138123,0.00986616779118776,0.941750466823578,-0.312231421470642,0.00302070006728172,0.950001299381256,-0.26141682267189,0.0759622678160667,0.962232291698456,-0.32598552107811,-0.0258175656199455,0.945022165775299,-0.280594140291214,0.116415850818157,0.952740430831909,-0.310651868581772,-0.0361141599714756,0.949837446212769,-0.247217878699303,0.0658912360668182,0.966717064380646,-0.303596585988998,-0.0408221036195755,0.951925873756409,-0.262533336877823,0.125822454690933,0.956684470176697,-0.231642737984657,0.0626313835382462,0.97078263759613,-0.3421271443367,0.0147210452705622,0.939538359642029,-0.336521148681641,0.0228613913059235,0.94139838218689,-0.312727928161621,0.082749992609024,0.946231305599213,-0.328323215246201,0.0335246399044991,0.943970322608948,-0.321214497089386,0.031036414206028,0.946497738361359,-0.341687351465225,0.0143621815368533,0.939703941345215,-0.313080757856369,0.213692799210548,0.925373315811157,-0.150201126933098,0.481216013431549,0.86363810300827,-0.777987897396088,0.471281558275223,0.415485918521881,-0.40573513507843,0.0937375724315643,0.909171223640442,-0.321836113929749,0.0291147325187922,0.946347653865814,-0.328899323940277,0.0316497907042503,0.943834483623505,0.374449998140335,0.118398435413837,0.919657111167908,0.213772356510162,0.689939677715302,0.691581249237061,0.599209845066071,0.78124338388443,0.174946665763855,0.490763783454895,-0.552293241024017,0.67388653755188,-0.423213541507721,-0.386883527040482,0.819274961948395,-0.306435823440552,0.0109536908566952,0.951828300952911,0.129336014389992,0.634460628032684,0.762057662010193,0.0281606707721949,0.118827059864998,0.992515563964844,-0.498188853263855,0.23348431289196,0.835040688514709,-0.286360263824463,-0.0255800243467093,0.957780599594116,-0.276396453380585,0.0682103484869003,0.958620011806488,-0.292093187570572,0.106197252869606,0.950475513935089,-0.408338248729706,-0.0697594583034515,0.910161256790161,-0.371811032295227,-0.0958674252033234,0.923345029354095,
- -0.357869148254395,-0.0905567780137062,0.929370284080505,-0.310994178056717,0.0620506666600704,0.948384046554565,-0.381962090730667,0.125924184918404,0.915558874607086,-0.317665427923203,0.0710669681429863,0.945536017417908,-0.408338248729706,-0.0697594583034515,0.910161256790161,-0.444045394659042,-0.154091641306877,0.882654786109924,-0.371811032295227,-0.0958674252033234,0.923345029354095,-0.347339034080505,-0.0105520915240049,0.937680244445801,-0.378723233938217,0.130228936672211,0.916301906108856,-0.289298921823502,0.0774948969483376,0.954096794128418,-0.387293756008148,0.118796765804291,0.9142706990242,-0.338070571422577,-0.0172789078205824,0.940962135791779,-0.322924107313156,0.0633318722248077,0.944303512573242,-0.288787424564362,0.0771261379122734,0.954281628131866,-0.294754862785339,-0.0260886289179325,0.955216705799103,-0.346820682287216,-0.0109293106943369,0.937867879867554,-0.446836680173874,-0.152159005403519,0.881580770015717,-0.40353998541832,-0.0618664585053921,0.912868142127991,-0.359718263149261,-0.00150885235052556,0.933059751987457,-0.41270911693573,-0.1006930321455,0.905280113220215,-0.381388634443283,0.0144876763224602,0.924301266670227,-0.417658656835556,-0.0334587134420872,0.907987773418427,-0.358352839946747,-0.00250967359170318,0.933582961559296,-0.397084414958954,-0.0998329743742943,0.912336230278015,-0.445518612861633,-0.153072342276573,0.882089555263519,0.935221910476685,0.00883063487708569,0.353952258825302,-0.214171051979065,0.0565516166388988,0.975157797336578,-0.395074725151062,0.0161181930452585,0.91850757598877,-0.228290379047394,-0.050326831638813,0.972291469573975,-0.455656766891479,-0.0150996465235949,0.890027463436127,-0.396883726119995,-0.027648588642478,0.917452394962311,-0.458837747573853,-0.0397437810897827,0.887630760669708,-0.406564056873322,-0.0391748510301113,0.91278201341629,-0.397456616163254,-0.0476236119866371,0.91638445854187,-0.912400424480438,0.0240351557731628,-0.408592730760574,-0.46897229552269,-0.141691640019417,0.871773183345795,-0.904844880104065,0.0693081915378571,-0.420062303543091,
- -0.423979878425598,0.00269568688236177,0.9056676030159,-0.449388086795807,0.0281700305640697,0.892892360687256,-0.457785457372665,-0.0084316823631525,0.889022707939148,-0.506655395030975,0.162117660045624,0.846769392490387,-0.470908403396606,-0.169982954859734,0.865650653839111,-0.909960448741913,-0.0679790452122688,-0.409085392951965,-0.40659973025322,-0.0390912406146526,0.912769734859467,-0.441687762737274,-0.055265374481678,0.895465075969696,-0.432118147611618,-0.0555475689470768,0.900104641914368,-0.898995101451874,-0.164634928107262,-0.405836373567581,-0.675874888896942,0.255456924438477,0.691328465938568,-0.492550194263458,0.10699662566185,0.863681674003601,-0.351008236408234,-0.138266548514366,0.92610776424408,-0.501831889152527,-0.831206917762756,-0.239290311932564,-0.498001754283905,-0.837948203086853,-0.22324213385582,-0.498001754283905,-0.837948203086853,-0.22324213385582,-0.696817517280579,-0.24003030359745,0.67589259147644,-0.351008236408234,-0.138266548514366,0.92610776424408,-0.399433881044388,0.0887040868401527,0.912460505962372,-0.421580523252487,-0.0667011141777039,0.904334485530853,-0.366472482681274,-0.219901219010353,0.904069364070892,-0.430090606212616,-0.0577038303017616,0.90093982219696,-0.395810335874558,-0.0155148068442941,0.918201208114624,-0.413223385810852,-0.0234162211418152,0.910328567028046,-0.426752805709839,-0.0612427480518818,0.902292311191559,-0.406353235244751,0.08815036714077,0.909453988075256,-0.377621382474899,-0.00568239390850067,0.925942659378052,-0.390879034996033,-0.0251599252223969,0.920098125934601,-0.426752805709839,-0.0612427480518818,0.902292311191559,-0.377621382474899,-0.00568239390850067,0.925942659378052,-0.446807026863098,0.0693660527467728,0.891937255859375,-0.0207195356488228,0.109757997095585,0.9937424659729,0.472918540239334,0.844374656677246,0.25175279378891,0.472918540239334,0.844374656677246,0.25175279378891,-0.505513668060303,0.232278183102608,0.830964982509613,-0.446807026863098,0.0693660527467728,0.891937255859375,-0.309730529785156,-0.171952351927757,0.935146749019623,
- 0.866615414619446,0.325929224491119,0.37782022356987,0.877040982246399,0.3121337890625,0.365201056003571,0.892905235290527,0.0120482016354799,-0.450083673000336,0.864429652690887,0.0134722869843245,-0.502573490142822,0.888482868671417,-0.0749184489250183,-0.452753156423569,0.883731663227081,0.0624270066618919,-0.463811576366425,0.887616097927094,-0.0750635415315628,-0.454426169395447,0.864423036575317,0.00978795625269413,-0.502670109272003,0.884034037590027,0.0624718889594078,-0.463229238986969,0.885020971298218,-0.0484576635062695,-0.463022410869598,0.887939214706421,-0.0750095471739769,-0.453803360462189,0.917333006858826,-0.0515679530799389,-0.394766956567764,0.916320204734802,0.0674653425812721,-0.394722312688828,0.916117489337921,0.10943952947855,-0.38568377494812,0.940022766590118,0.0185466874390841,-0.340607196092606,0.917530477046967,-0.0515876673161983,-0.394305408000946,0.916332602500916,0.10940869897604,-0.385180830955505,0.919049859046936,-0.0517396666109562,-0.39073058962822,0.940118193626404,0.0155835896730423,-0.340492278337479,0.91512531042099,0.0123741896823049,-0.402979612350464,-0.0314387977123261,-0.999500095844269,-0.00333745218813419,0.02349011041224,-0.999723136425018,0.00144776969682425,0.00368537870235741,-0.999845087528229,0.0172164421528578,0.0162455420941114,-0.99886554479599,-0.0447628200054169,0.000862588116433471,-0.999863803386688,0.0164823606610298,0.0244275201112032,-0.999657571315765,-0.00939294043928385,0.017263175919652,-0.998859584331512,-0.044514324516058,0.00574857462197542,-0.999847948551178,0.0164637081325054,0.00192288064863533,-0.999857723712921,0.0167581103742123,0.00219566747546196,-0.999868035316467,0.0160974580794573,0.0129706198349595,-0.998877286911011,-0.0455621555447578,0.011036722920835,-0.996225714683533,-0.0860961601138115,-0.0112539865076542,-0.999762833118439,-0.0186450090259314,0.00219566747546196,-0.999868035316467,0.0160974580794573,0.011036722920835,-0.996225714683533,-0.0860961601138115,-0.00243733613751829,-0.999875128269196,0.0156195629388094,-0.0165256820619106,-0.999862968921661,0.000997969415038824,
- 0.0367217436432838,-0.99921327829361,0.0149778751656413,-0.247672721743584,0.0481283031404018,-0.967647612094879,-0.273407548666,-0.00199271575547755,-0.961896240711212,-0.299709469079971,0.161391615867615,-0.940280258655548,-0.246775791049004,0.0635589510202408,-0.966986119747162,-0.302163362503052,0.159843876957893,-0.939759135246277,-0.287189930677414,0.00595195032656193,-0.95785516500473,-0.263914942741394,0.051747277379036,-0.963156878948212,-0.315921664237976,0.129765704274178,-0.939869344234467,-0.320833951234818,0.147967144846916,-0.935505926609039,-0.332413554191589,0.116903081536293,-0.935860633850098,-0.281227469444275,0.0397087745368481,-0.958819210529327,-0.294956028461456,0.0634827390313149,-0.953399658203125,-0.561485350131989,0.0801771804690361,-0.823593258857727,-0.708694934844971,-0.325479775667191,-0.625950813293457,-0.70317941904068,-0.301514476537704,-0.643915951251984,0.0517373457551003,0.309507429599762,-0.949488520622253,-0.236672341823578,0.0875382646918297,-0.967638075351715,0.029067063704133,0.291199743747711,-0.95622056722641,-0.441681087017059,-0.0552701279520988,-0.895468056201935,-0.453010320663452,-0.0258260387927294,-0.891131103038788,-0.409475296735764,0.00933382287621498,-0.912273466587067,-0.473496168851852,-0.0417434610426426,-0.879806160926819,-0.502192795276642,-0.00825529266148806,-0.864716291427612,-0.409859865903854,-0.14458030462265,-0.900617241859436,-0.380234658718109,-0.122527182102203,-0.916738092899323,-0.395163327455521,-0.0953702256083488,-0.913646817207336,-0.445836871862412,-0.0203131679445505,-0.894883692264557,-0.429596871137619,-0.00794493407011032,-0.902985811233521,-0.379733234643936,-0.082081526517868,-0.921447396278381,-0.414585620164871,-0.0344433151185513,-0.909358263015747,-0.330575555562973,0.0666652247309685,-0.94142210483551,-0.329342097043991,0.119311548769474,-0.936642169952393,-0.291893422603607,0.0658896565437317,-0.954178690910339,-0.369867831468582,0.183814913034439,-0.910719394683838,-0.321147918701172,-0.0423342846333981,-0.946082353591919,-0.383381724357605,0.0760349109768867,-0.920454859733582,
- -0.399700790643692,-0.0233493931591511,-0.916348218917847,-0.407369136810303,-0.0283035095781088,-0.912824928760529,-0.372468799352646,-0.0758651122450829,-0.9249387383461,-0.398396730422974,-0.0207145046442747,-0.916979253292084,-0.39828160405159,-0.0278547629714012,-0.916840136051178,-0.309703469276428,0.00975743867456913,-0.950783133506775,0.330287754535675,0.432308703660965,-0.839058518409729,-0.223502650856972,0.129359751939774,-0.966081082820892,-0.491436272859573,0.410572379827499,-0.768063127994537,-0.401405990123749,-0.017897205427289,-0.915725469589233,-0.379910379648209,-0.0129715101793408,-0.924932360649109,-0.312730729579926,0.0178203955292702,-0.949674665927887,-0.267525404691696,-0.0967979356646538,-0.958676338195801,-0.311700135469437,-0.1269651055336,-0.94165974855423,-0.30421108007431,-0.0306047759950161,-0.952112913131714,-0.372446745634079,-0.0260338596999645,-0.927688360214233,-0.396091967821121,-0.0347495637834072,-0.917553067207336,-0.218778938055038,0.124044932425022,-0.967857778072357,-0.326172918081284,-0.0458302870392799,-0.944198608398438,-0.370427638292313,-0.0295406337827444,-0.928391575813293,-0.363795012235641,0.0128928693011403,-0.931389808654785,-0.225956454873085,0.132123172283173,-0.965135812759399,-0.433348655700684,-0.0409561283886433,-0.900295257568359,-0.371234327554703,-0.0281409155577421,-0.928112685680389,-0.347601860761642,0.0250737555325031,-0.937306940555573,-0.339242488145828,0.0112918596714735,-0.940631210803986,-0.310057163238525,-0.034644078463316,-0.95008659362793,-0.291085004806519,0.00851130206137896,-0.956659317016602,-0.293767273426056,0.0646830573678017,-0.953686058521271,-0.292839556932449,-0.0237975642085075,-0.955865502357483,-0.414308667182922,-0.0162527915090322,-0.909991323947906,-0.426685839891434,-0.0356841944158077,-0.903695642948151,-0.413159936666489,0.00843213032931089,-0.910619556903839,-0.668685495853424,0.691267013549805,-0.273878931999207,-0.995320498943329,0.0535939633846283,-0.0804054960608482,-0.845509827136993,-0.512345552444458,-0.150383442640305,
- -0.914523899555206,0.044074147939682,-0.402123779058456,-0.656100511550903,0.668864130973816,-0.349503815174103,-0.560542464256287,0.783936738967896,0.266899555921555,-0.56937038898468,0.00666701095178723,0.822054088115692,-0.890055179595947,0.0567876026034355,-0.452301889657974,-0.795575022697449,0.0140704400837421,-0.60569167137146,-0.748120963573456,-0.0134048089385033,-0.663426995277405,-0.794205844402313,-0.0266241729259491,-0.607065320014954,-0.883926033973694,-0.0484837330877781,-0.465106546878815,-0.744925200939178,-0.0388379879295826,-0.666016519069672,-0.786975204944611,-0.039078202098608,-0.615745782852173,-0.792966365814209,-0.0478656105697155,-0.607382237911224,0.614439129829407,0.0281123053282499,-0.788463234901428,-0.728241443634033,-0.135355919599533,-0.671820819377899,0.627008497714996,0.0740223675966263,-0.77548760175705,-0.775819420814514,0.00289493543095887,-0.63094836473465,-0.752380609512329,0.0294504575431347,-0.658069968223572,-0.750077128410339,-0.00912516284734011,-0.661287426948547,-0.720862746238709,-0.168339505791664,-0.672323405742645,0.61446750164032,-0.0675231218338013,-0.786047399044037,-0.696832001209259,0.162101209163666,-0.69867616891861,-0.786931335926056,-0.0389000996947289,-0.615813136100769,-0.760261237621307,-0.0558871813118458,-0.647208988666534,-0.766676783561707,-0.0578305646777153,-0.639423608779907,0.608766913414001,-0.163719773292542,-0.776272296905518,-0.505460441112518,0.253154724836349,-0.824877202510834,-0.716690421104431,0.107110597193241,-0.689116954803467,-0.811528146266937,-0.140394046902657,-0.567196249961853,0.354792356491089,-0.828307509422302,-0.433623194694519,0.337295711040497,-0.839011132717133,-0.426956623792648,0.337295711040497,-0.839011132717133,-0.426956623792648,-0.484588414430618,-0.253611385822296,-0.837171018123627,-0.811528146266937,-0.140394046902657,-0.567196249961853,-0.782974362373352,-0.023299191147089,-0.621617436408997,-0.767991721630096,-0.0600082650780678,-0.637642323970795,-0.795986950397491,-0.0143350819125772,-0.605144023895264,-0.788758873939514,0.0876398682594299,-0.608423173427582,
- -0.774805307388306,-0.0714853629469872,-0.628145337104797,-0.786990880966187,-0.232468649744987,-0.571492493152618,-0.805668592453003,-0.00709260813891888,-0.592324078083038,-0.799009680747986,-0.0239098612219095,-0.600842654705048,-0.770097732543945,-0.0635204464197159,-0.634755730628967,-0.770097732543945,-0.0635204464197159,-0.634755730628967,-0.784076511859894,0.0871196091175079,-0.614519476890564,-0.805668592453003,-0.00709260813891888,-0.592324078083038,-0.832553863525391,-0.165426552295685,-0.528666377067566,-0.902213931083679,-0.252873688936234,-0.349377989768982,-0.56493878364563,0.320492446422577,0.760347783565521,-0.756376266479492,0.0671475157141685,-0.65068131685257,-0.958980143070221,0.106553345918655,-0.262685149908066,-0.358855187892914,0.844293236732483,0.397985100746155,-0.358855187892914,0.844293236732483,0.397985100746155,-0.342703640460968,0.846023380756378,0.408409863710403,-0.756376266479492,0.0671475157141685,-0.65068131685257,-0.0540102906525135,-0.0830145254731178,-0.995083630084991,-0.000332592229824513,0.0140801845118403,-0.999900817871094,-0.0630618333816528,0.0127118760719895,-0.99792867898941,-0.00031496022711508,0.0133337862789631,-0.999911069869995,-0.0563518330454826,-0.0828372240066528,-0.994968593120575,-0.0459794029593468,0.066204808652401,-0.996746122837067,-0.0459967441856861,0.0662058591842651,-0.996745228767395,-0.0564146414399147,-0.0828324630856514,-0.994965434074402,-0.0465799421072006,-0.0414940305054188,-0.998052358627319,-0.119913868606091,0.0704884380102158,-0.990278780460358,-0.120329923927784,-0.0447291992604733,-0.99172580242157,-0.127674788236618,0.0947690084576607,-0.987278163433075,-0.130514964461327,0.0945748090744019,-0.98692524433136,-0.123029060661793,-0.0448434762656689,-0.991389393806458,-0.172625839710236,0.0148392105475068,-0.984875679016113,-0.117614217102528,0.0125516531988978,-0.992980062961578,-0.172608226537704,0.0151976002380252,-0.984873294830322,-0.120910108089447,-0.0447537899017334,-0.991654098033905,0.173380151391029,0.000953161099459976,0.984854519367218,
- 0.102586723864079,0.00182108697481453,0.994722425937653,0.17331226170063,0.00294391065835953,0.984862625598907,0.0993626788258553,0.111500263214111,0.988784492015839,0.177403956651688,0.110035724937916,0.977967262268066,0.101981520652771,0.112221233546734,0.988436341285706,0.102624833583832,-0.00983412936329842,0.994671523571014,0.172764331102371,-0.01200698222965,0.984890103340149,0.117767877876759,-0.0093671465292573,0.992996990680695,-0.078158475458622,0.00858268607407808,-0.996904015541077,-0.000197493805899285,0.00836100336164236,-0.999965131282806,0.000184558710316196,0.00585968187078834,-0.999982833862305,0.002547258278355,-0.107833459973335,-0.99416571855545,-0.0822495073080063,-0.107555463910103,-0.990791022777557,-0.0805753916501999,-0.108142428100109,-0.9908646941185,-0.000258091371506453,0.0109262792393565,-0.999940276145935,-0.0782407149672508,0.0107323545962572,-0.99687671661377,-0.0630150884389877,0.00959137454628944,-0.997966587543488,-0.296500712633133,-0.0863654688000679,-0.951119542121887,-0.252188831567764,0.0142169333994389,-0.967573702335358,-0.307120859622955,0.0124067524448037,-0.95158976316452,-0.251993328332901,0.00717635219916701,-0.967702388763428,-0.298057436943054,-0.0862545296549797,-0.950643002986908,-0.28984260559082,0.0581505186855793,-0.955306231975555,-0.290017277002335,0.0581607781350613,-0.955252468585968,-0.298319756984711,-0.086235798895359,-0.950562298297882,-0.2899070084095,-0.0408488623797894,-0.956182658672333,-0.360590189695358,0.0621933490037918,-0.930648565292358,-0.359984904527664,-0.0446893125772476,-0.931887209415436,-0.367276102304459,0.115770757198334,-0.922878861427307,-0.368370056152344,0.115687280893326,-0.922453224658966,-0.361036092042923,-0.0447458550333977,-0.931477725505829,-0.408288449048996,0.0192644149065018,-0.912649691104889,-0.353309690952301,0.0125395264476538,-0.935422360897064,-0.408479183912277,0.0148169556632638,-0.912647485733032,-0.360529094934464,-0.0447185896337032,-0.931675493717194,0.409089714288712,0.00094714923761785,0.912493705749512,0.339805155992508,0.00112043810077012,0.940495193004608,
- 0.409012317657471,0.0029150084592402,0.912524223327637,0.33442759513855,0.111128993332386,0.935846447944641,0.410513758659363,0.110419683158398,0.905144155025482,0.336869567632675,0.111962519586086,0.934870719909668,0.339896380901337,-0.0100972894579172,0.940408706665039,0.408610701560974,-0.0116317728534341,0.912634670734406,0.353414535522461,-0.00939090549945831,0.935419797897339,-0.316035062074661,0.00621935399249196,-0.948727130889893,-0.251973778009415,0.00649594468995929,-0.96771228313446,-0.244317471981049,0.00458406377583742,-0.969684481620789,-0.247038885951042,-0.107630848884583,-0.963009536266327,-0.31761634349823,-0.10797730833292,-0.942051351070404,-0.323028445243835,-0.108390130102634,-0.940161824226379,-0.252103120088577,0.011075172573328,-0.967637002468109,-0.323141485452652,0.0105050522834063,-0.946292459964752,-0.307037323713303,0.00926918350160122,-0.951652348041534,-0.793432414531708,-0.148929253220558,0.590156853199005,-0.80312716960907,-0.0110144317150116,0.595705807209015,-0.613634288311005,-0.649195492267609,0.449442028999329,-0.77508020401001,-0.0110775269567966,0.631765782833099,-0.762984097003937,-0.146197646856308,0.62966775894165,-0.778600692749023,0.0419689826667309,0.626114666461945,-0.778432428836823,0.0419896319508553,0.626322507858276,-0.767282783985138,-0.0199524741619825,0.640998482704163,-0.775443077087402,-0.0110768768936396,0.631320297718048,-0.0437086820602417,0.999044299125671,0.000209962468943559,-0.0280489567667246,0.99879002571106,0.0403949096798897,-0.667281329631805,0.0538335666060448,0.742857694625854,-0.769670069217682,-0.0162196010351181,0.638235807418823,-0.768204391002655,0.0432265549898148,0.638743698596954,-0.751403987407684,0.0110528962686658,0.659749865531921,-0.806415379047394,0.11001855880022,0.581025063991547,-0.466607511043549,0.0690253525972366,0.88176691532135,0.314249455928802,0.841903448104858,0.438686519861221,-0.769670069217682,-0.0162196010351181,0.638235807418823,-0.751403987407684,0.0110528962686658,0.659749865531921,-0.769927203655243,-0.0139880701899529,0.637978374958038,
- 0.339502960443497,0.832714438438416,0.437406480312347,-0.806415379047394,0.11001855880022,0.581025063991547,0.314249455928802,0.841903448104858,0.438686519861221,-0.745076894760132,0.00575012760236859,0.666953802108765,-0.771712124347687,-0.0088768070563674,0.635910034179688,-0.75477659702301,0.0164619833230972,0.655775308609009,-0.700697660446167,-0.143072947859764,0.698965609073639,-0.488641262054443,-0.295601665973663,0.820883274078369,0.629194438457489,0.164770022034645,0.759582281112671,-0.729469954967499,0.0789055004715919,0.679446458816528,0.641220808029175,-0.0272441264241934,0.766872644424438,0.651385486125946,-0.066612496972084,0.755817234516144,0.638223111629486,0.0682545602321625,0.766819775104523,-0.724673986434937,0.110547952353954,0.680166721343994,-0.678974807262421,-0.199282914400101,0.706597149372101,-0.795299530029297,-0.0214041713625193,0.605838894844055,-0.772245228290558,-0.00733562745153904,0.635282218456268,-0.745283305644989,0.00662849470973015,0.66671496629715,-0.739382266998291,-0.0167530756443739,0.673077404499054,-0.795299530029297,-0.0214041713625193,0.605838894844055,-0.745283305644989,0.00662849470973015,0.66671496629715,-0.770449101924896,-0.0125012518838048,0.637378931045532,-0.788759768009186,-0.0484935753047466,0.612785756587982,-0.936255514621735,-0.349647700786591,-0.0342364944517612,-0.795932948589325,-0.0186256635934114,0.605098366737366,-0.739547073841095,-0.0192178152501583,0.67283046245575,-0.822369694709778,-0.0023500279057771,0.568948686122894,-0.98307591676712,-0.141616955399513,-0.116217002272606,-0.818850040435791,0.121409475803375,0.561020851135254,-0.611673355102539,-0.162362620234489,-0.774270057678223,-0.823081254959106,0.179203063249588,0.538909554481506,-0.824956178665161,-0.132258281111717,0.549504339694977,-0.618638277053833,-0.0637370645999908,-0.783086359500885,-0.618472337722778,0.0677983984351158,-0.782876312732697,-0.824922025203705,-0.0486288294196129,0.563150882720947,-0.610167026519775,0.120767928659916,-0.783014237880707,0.699116706848145,0.00378994876518846,0.714997529983521,
- 0.640932738780975,0.00158473465126008,0.767595410346985,0.640933990478516,0.000773955136537552,0.767595589160919,0.693193733692169,0.102753221988678,0.713389217853546,0.697369575500488,0.100290134549141,0.709660232067108,0.635879576206207,0.100555211305618,0.765209674835205,0.641119956970215,-0.010637354105711,0.767366945743561,0.6989786028862,-0.0110239312052727,0.715057611465454,0.653829038143158,-0.00956606958061457,0.756581842899323,-0.59751433134079,0.0115627460181713,-0.801774859428406,-0.560112833976746,0.0115424869582057,-0.82833594083786,-0.597441673278809,0.0115280067548156,-0.801829516887665,-0.552529692649841,-0.109011173248291,-0.82633376121521,-0.556671380996704,-0.111274868249893,-0.823246538639069,-0.593075811862946,-0.111182600259781,-0.797433078289032,-0.614940643310547,0.0172182787209749,-0.788385391235352,-0.560796976089478,0.0191118624061346,-0.827732741832733,-0.597501516342163,0.0171713996678591,-0.801683902740479,-0.552780508995056,-0.106504872441292,-0.826492846012115,-0.61137443780899,-0.108894817531109,-0.783813297748566,-0.616211295127869,-0.108909741044044,-0.780014276504517,-0.560582995414734,0.0120846442878246,-0.828010082244873,-0.619868159294128,0.00992577243596315,-0.784643232822418,-0.610413014888763,0.00916095450520515,-0.792030334472656,-0.801774263381958,0.0084808599203825,-0.597566783428192,-0.756372511386871,0.00733859045431018,-0.654100000858307,-0.801679849624634,0.00905070267617702,-0.597685098648071,-0.753828287124634,-0.0981279611587524,-0.649703025817871,-0.799014329910278,-0.0969625785946846,-0.593442857265472,-0.750982463359833,-0.0961035415530205,-0.65329122543335,-0.801741003990173,0.0104408599436283,-0.597580432891846,-0.788651406764984,0.00953531358391047,-0.614766657352448,-0.756651103496552,0.0111320968717337,-0.653724074363709,0.713211238384247,0.640291392803192,0.285230815410614,0.716575801372528,0.642459630966187,0.271596908569336,0.711029350757599,0.640393376350403,0.290402501821518,0.937996685504913,-0.00815075263381004,0.346548348665237,0.95172393321991,-0.00886400789022446,0.306827217340469,
- 0.932681560516357,-0.00840394198894501,0.360603004693985,0.928734838962555,0.012245049700141,0.37054243683815,0.951739132404327,0.0124393850564957,0.306656062602997,0.937711775302887,0.0132371764630079,0.347161948680878,0.94853287935257,0.0851296409964561,0.30502188205719,0.924249887466431,0.0841017812490463,0.372409790754318,0.946877777576447,0.0872903168201447,0.309520453214645,0.951786041259766,-0.000229640529141761,0.306762635707855,0.929072737693787,-0.00339528685435653,0.369881749153137,0.925261914730072,-0.00423272792249918,0.379305213689804,-0.996265351772308,-0.0811715424060822,-0.029440101236105,-0.99614679813385,0.015288800932467,-0.0863585025072098,-0.999647736549377,0.0128736840561032,-0.0232082549482584,-0.996106564998627,0.0183085426688194,-0.0862351581454277,-0.996232330799103,-0.0812351629137993,-0.0303674265742302,-0.997365415096283,0.0609690621495247,-0.0393088459968567,-0.998161613941193,-0.0445699989795685,-0.0410724766552448,-0.997365415096283,0.0609690621495247,-0.0393088459968567,-0.996232330799103,-0.0812351629137993,-0.0303674265742302,-0.998026669025421,-0.0443508662283421,-0.0444500036537647,-0.993048369884491,0.112963952124119,-0.0330777503550053,-0.997235834598541,0.0608001761138439,-0.0427107512950897,-0.998130023479462,-0.0445170439779758,-0.041889451444149,-0.999908745288849,0.0112232537940145,0.00751980720087886,-0.99315482378006,0.112767107784748,-0.0304484665393829,-0.999866604804993,0.014559798873961,0.00741438707336783,-0.997821092605591,-0.0440468825399876,-0.0491215586662292,-0.99838387966156,0.0125612737610936,-0.0554246641695499,-0.000734346453100443,-0.999720990657806,-0.0236096773296595,0.0166657511144876,-0.999841511249542,-0.00626260740682483,-0.000300922052701935,-0.999504268169403,0.0314828157424927,0.0167283248156309,-0.999837338924408,-0.00675588799640536,-0.00825208052992821,-0.999688625335693,-0.0235497169196606,-0.0461360551416874,-0.998839318752289,-0.0138379270210862,-0.0461360551416874,-0.998839318752289,-0.0138379270210862,0.0154096409678459,-0.999824464321136,-0.0106561481952667,
- 0.0167283248156309,-0.999837338924408,-0.00675588799640536,0.0156151950359344,-0.999869465827942,-0.00415229564532638,-0.0468949861824512,-0.99887877702713,-0.00650036567822099,-0.0869598016142845,-0.996211886405945,0.000232785940170288,-0.0163533631712198,-0.999763607978821,0.0143278753384948,0.0156151950359344,-0.999869465827942,-0.00415229564532638,-0.0869598016142845,-0.996211886405945,0.000232785940170288,0.0157543681561947,-0.999875962734222,0.000263182359049097,0.00395282078534365,-0.999862790107727,0.0160882398486137,0.00874519813805819,-0.999205350875854,-0.0388875380158424,0.999968290328979,0.0010468726977706,-0.00790673680603504,0.997495353221893,0.000947090971749276,0.0707259327173233,0.999963939189911,0.00337507692165673,-0.00779401324689388,0.991031467914581,0.110869869589806,0.074595533311367,0.993791818618774,0.110679380595684,-0.0113110952079296,0.991129100322723,0.111712105572224,0.0719967409968376,0.999906122684479,-0.0114586437121034,-0.0075123724527657,0.998423278331757,-0.00946654845029116,0.0553293637931347,0.997456610202789,-0.0103346630930901,0.0705231502652168,-0.999683856964111,0.00940602924674749,-0.0233183261007071,-0.996182084083557,0.0117880003526807,-0.0865005031228065,-0.999916732311249,0.0101722627878189,-0.00795345660299063,-0.990121603012085,-0.106938764452934,-0.090682789683342,-0.994114696979523,-0.108205318450928,-0.00527163781225681,-0.994048476219177,-0.108715400099754,-0.00697112642228603,-0.999948918819427,0.00615348946303129,-0.00801896490156651,-0.996210217475891,0.00707043008878827,-0.0866901651024818,-0.99625301361084,0.00464737787842751,-0.086362823843956,-0.781680703163147,-0.139988511800766,0.607765138149261,-0.764715731143951,0.0292521584779024,0.643703460693359,-0.740944385528564,-0.0344556570053101,0.670681893825531,-0.775525331497192,0.0200403966009617,0.630998313426971,-0.7860027551651,-0.1359823346138,0.603082656860352,-0.752199530601501,-0.0357083827257156,0.657967150211334,-0.761847913265228,-0.0259421207010746,0.647236287593842,-0.796659171581268,-0.125888362526894,0.591173648834229,
- -0.791953265666962,-0.100653469562531,0.602228283882141,-0.77941769361496,-0.0415481328964233,0.625125408172607,-0.770576417446136,-0.0168911069631577,0.637123763561249,-0.800313353538513,-0.0908827111124992,0.592654287815094,-0.937810122966766,0.313752830028534,0.148564279079437,-0.92924976348877,0.347929447889328,0.124258533120155,-0.890578389167786,0.0918901711702347,0.445450693368912,-0.493758022785187,-0.296147137880325,0.817618429660797,-0.512241184711456,-0.268193155527115,0.815893054008484,-0.684626817703247,0.0827588886022568,0.724180281162262,-0.877391278743744,0.0582976378500462,0.476220488548279,-0.859909892082214,0.0725932493805885,0.505257546901703,-0.849137306213379,0.0222688373178244,0.527702450752258,-0.925677895545959,-0.0275782402604818,0.37730610370636,-0.895132899284363,0.086772121489048,0.437273055315018,-0.855502068996429,0.1852847635746,0.483514010906219,-0.872461676597595,0.0509613342583179,0.486018061637878,-0.838113784790039,0.128308549523354,0.530190706253052,-0.830911457538605,0.148202583193779,0.536304175853729,-0.829635381698608,0.114472836256027,0.546444058418274,-0.863459408283234,0.0380875915288925,0.502978324890137,-0.854606151580811,0.0632567629218102,0.515409469604492,-0.78384405374527,-0.0361700505018234,0.619903564453125,-0.804663777351379,-0.0856911018490791,0.587514638900757,-0.794441342353821,-0.0289173703640699,0.60665225982666,-0.829635381698608,0.114472836256027,0.546444058418274,-0.854606151580811,0.0632567629218102,0.515409469604492,-0.832572937011719,0.0681772902607918,0.54970371723175,-0.796042084693909,-0.020943121984601,0.604878842830658,-0.793901920318604,-0.0259228125214577,0.607492983341217,-0.846703886985779,0.00864583533257246,0.531994163990021,-0.811223089694977,0.139049753546715,0.567963302135468,-0.827224016189575,-0.0637233629822731,0.558247029781342,-0.787145256996155,0.0529089607298374,0.61449408531189,-0.824661552906036,0.117265813052654,0.553337395191193,-0.629094183444977,0.407832443714142,0.661750137805939,-0.896682322025299,0.427597790956497,-0.114546626806259,
- -0.791987538337708,-0.0156258903443813,0.610337316989899,-0.825297117233276,0.0106015577912331,0.564599215984344,-0.844767153263092,0.017744243144989,0.534839808940887,-0.868336737155914,-0.0149585912004113,0.4957495033741,-0.865971088409424,-0.126327484846115,0.483875662088394,-0.867262184619904,-0.136646538972855,0.478731691837311,-0.82927793264389,-0.00029303933843039,0.55883651971817,-0.794931054115295,-0.0316759049892426,0.605872273445129,-0.858021080493927,0.051638275384903,0.511012077331543,-0.839490592479706,-0.050018060952425,0.541067242622375,-0.830717802047729,-0.00433044042438269,0.556677103042603,-0.817453145980835,0.011392455548048,0.575882434844971,-0.85771632194519,0.0523004941642284,0.511456370353699,-0.767529666423798,-0.0458182655274868,0.63937383890152,-0.831148624420166,-0.00554927950724959,0.556022644042969,-0.826102077960968,0.0223379842936993,0.563077569007874,-0.830227971076965,0.0132530899718404,0.557266414165497,-0.848128318786621,-0.0399707965552807,0.528280913829803,-0.857530295848846,0.0107941785827279,0.514320254325867,-0.854948461055756,0.0619178302586079,0.515004217624664,-0.856339871883392,-0.0242099370807409,0.515844881534576,-0.781992733478546,-0.0173210091888905,0.623046875,-0.774258136749268,-0.0386084988713264,0.631691157817841,-0.782933413982391,0.00473066559061408,0.622087717056274,-0.275480180978775,0.628857493400574,0.727082490921021,0.191646486520767,0.0523385778069496,0.980067491531372,0.0929249674081802,-0.523822069168091,0.846744000911713,-0.166134506464005,0.0413139201700687,0.985237300395966,-0.193056523799896,0.668073117733002,0.718614995479584,0.394426643848419,0.78086930513382,0.484428286552429,-0.999772191047668,0.0140396757051349,-0.0160760898143053,-0.994290411472321,-0.0825065970420837,-0.0676704496145248,-0.997396349906921,0.0127285635098815,-0.0709822997450829,-0.99413388967514,-0.0823365598917007,-0.0701334029436111,-0.999781847000122,0.013361700810492,-0.0160602256655693,-0.995915114879608,0.0670710206031799,-0.0604531690478325,-0.994130074977875,-0.0823325589299202,-0.0701910778880119,
- -0.995913207530975,0.0670727416872978,-0.0604822784662247,-0.997251749038696,-0.0426027812063694,-0.0606135614216328,-0.988354206085205,0.0712884962558746,-0.134439423680305,-0.985386788845062,0.0937669426202774,-0.142199382185936,-0.989850342273712,-0.0463747717440128,-0.134334936738014,-0.989458322525024,-0.046514205634594,-0.137144654989243,-0.984980523586273,0.0935628637671471,-0.145118340849876,-0.982085704803467,0.0148890390992165,-0.187845781445503,-0.982083439826965,0.0152631467208266,-0.18782739341259,-0.991007566452026,0.0126702012494206,-0.133204579353333,-0.989809989929199,-0.0463892444968224,-0.134626299142838,0.991025865077972,-0.00950704701244831,0.133332565426826,0.982098042964935,-0.0120637128129601,0.187983766198158,0.993824303150177,-0.0100930705666542,0.110505022108555,0.975114405155182,0.109979405999184,0.192500993609428,0.98710161447525,0.111527375876904,0.11485667526722,0.98773181438446,0.111962094902992,0.10885938256979,0.992991805076599,0.0018184621585533,0.118170015513897,0.982054650783539,0.000835616490803659,0.188594609498978,0.982062578201294,0.00290908361785114,0.188532769680023,-0.999837458133698,0.00842791423201561,-0.0159445554018021,-0.995489954948425,0.00877855159342289,-0.09446020424366,-0.999858260154724,0.00635747192427516,-0.0155956223607063,-0.989317417144775,-0.107478626072407,-0.0984857231378555,-0.994078516960144,-0.107871763408184,-0.0131066283211112,-0.989415287971497,-0.108103796839714,-0.0968039259314537,-0.999812602996826,0.0108928261324763,-0.0160023905336857,-0.997436583042145,0.0095870029181242,-0.0709109380841255,-0.995461761951447,0.0107857817783952,-0.0945490747690201,0.996270358562469,-0.0815344974398613,0.0282403025776148,0.996194660663605,0.0144973043352365,0.0859421268105507,0.999643802642822,0.0130033921450377,0.0233064666390419,0.996238052845001,0.0103052407503128,0.0860449075698853,0.996225774288177,-0.0816394612193108,0.0294831842184067,0.997353851795197,0.060612864792347,0.0401423834264278,0.997376143932343,0.0606479682028294,0.0395310036838055,0.99625164270401,-0.081579215824604,0.0287695191800594,
- 0.998185932636261,-0.045283917337656,0.0396766401827335,0.997259199619293,0.0604696646332741,0.0426322780549526,0.998038470745087,-0.0451001711189747,0.0434185341000557,0.992154777050018,0.120278105139732,0.0340899154543877,0.992201805114746,0.120210781693459,0.0329413712024689,0.998084306716919,-0.0451554954051971,0.0422933027148247,0.999796211719513,0.0189444534480572,-0.00697739934548736,0.998380959033966,0.0123842554166913,0.0555164404213429,0.999857604503632,0.0152868311852217,-0.00715068448334932,0.997821092605591,-0.044855248183012,0.048385251313448,-0.999969065189362,-0.000205965989152901,0.00786404311656952,-0.997496247291565,0.00100075709633529,-0.0707123428583145,-0.999966740608215,0.00217683287337422,0.00785661395639181,-0.991096138954163,0.111439518630505,-0.0728675797581673,-0.993858933448792,0.109886437654495,0.0130171487107873,-0.991195797920227,0.112236864864826,-0.0702422261238098,-0.997450172901154,-0.00983550492674112,-0.0706854462623596,-0.99989926815033,-0.0121822478249669,0.00729768583551049,-0.99842095375061,-0.00931105297058821,-0.0553976520895958,0.996232092380524,0.0109999403357506,0.086027979850769,0.999910235404968,0.0106559544801712,0.00812501832842827,0.999681174755096,0.0095119271427393,0.0233898237347603,0.99024373292923,-0.107786744832993,0.0883152857422829,0.994180798530579,-0.107665590941906,0.00358939240686595,0.994114577770233,-0.108206324279308,0.00527161313220859,0.999944925308228,0.00663023628294468,0.00813461467623711,0.996263086795807,0.0062794778496027,0.0861421748995781,0.996192812919617,0.0038604773581028,0.0870917737483978,0.994925439357758,-0.0832731127738953,-0.056470975279808,0.999863684177399,0.0142619851976633,-0.00832214113324881,0.997918844223022,0.0125203477218747,-0.0632553696632385,0.999941051006317,0.00723102362826467,-0.00810130219906569,0.994842231273651,-0.0831638872623444,-0.0580769404768944,0.997110545635223,0.0576833002269268,-0.049429040402174,0.99791556596756,-0.0419890768826008,-0.0490050539374352,0.997102081775665,0.0576917752623558,-0.0495913065969944,
- 0.994827210903168,-0.0831446349620819,-0.0583594925701618,0.990372896194458,0.0614249631762505,-0.124051190912724,0.991359412670136,-0.0458048209547997,-0.122916452586651,0.984204113483429,0.11762772500515,-0.132310375571251,0.984056413173676,0.117544092237949,-0.133478134870529,0.991217136383057,-0.0458610318601131,-0.124037943780422,0.984812319278717,0.0191775746643543,-0.17255987226963,0.992956340312958,0.0126084834337235,-0.117808826267719,0.984856247901917,0.0147424982860684,-0.172745004296303,0.991288900375366,-0.0458327792584896,-0.123474113643169,-0.984855234622955,0.00102662842255086,0.173375591635704,-0.994722723960876,0.00116715999320149,0.102593064308167,-0.983494162559509,0.00301110930740833,0.180914759635925,-0.988907873630524,0.111170083284378,0.0985009595751762,-0.978069543838501,0.110483899712563,0.176559597253799,-0.98855459690094,0.111971072852612,0.101105064153671,-0.9946608543396,-0.010086327791214,0.102703779935837,-0.984875798225403,-0.0115576516836882,0.172875836491585,-0.992979049682617,-0.00945971626788378,0.117911487817764,0.999904453754425,0.0111197121441364,-0.00822349265217781,0.996873080730438,0.0104153556749225,-0.0783299282193184,0.99795937538147,0.00938273780047894,-0.0631591007113457,0.994185388088226,-0.107591405510902,-0.00443952810019255,0.990819573402405,-0.107925541698933,-0.0814165249466896,0.990898668766022,-0.108456209301949,-0.0797314941883087,0.996910154819489,0.00627808505669236,-0.0782991349697113,0.999946057796478,0.00654135132208467,-0.00807962007820606,0.999958634376526,0.00468164216727018,-0.00779995461925864,-0.379917591810226,-0.149107128381729,-0.912923693656921,-0.383168607950211,-0.0102896811440587,-0.923621118068695,-0.289346963167191,-0.647688508033752,-0.70482474565506,-0.424763023853302,-0.0104724960401654,-0.905243992805481,-0.425756901502609,-0.146275788545609,-0.892935872077942,-0.418743759393692,0.036269161850214,-0.907379865646362,-0.418964803218842,0.0362883061170578,-0.907277047634125,-0.434640765190125,-0.0209152884781361,-0.900361001491547,-0.424183785915375,-0.0104700736701488,-0.905515611171722,
- -0.560464084148407,0.0485438331961632,-0.826754808425903,0.0104711586609483,0.999044954776764,-0.042421218007803,-0.0317682065069675,0.998801290988922,-0.0372417122125626,-0.431398332118988,-0.0171926319599152,-0.901997745037079,-0.433596342802048,0.0375556014478207,-0.900324285030365,-0.458614438772202,0.0120458723977208,-0.888553738594055,-0.368135511875153,0.11215116083622,-0.922983407974243,-0.743541955947876,0.0644011944532394,-0.665580809116364,-0.50279825925827,0.841351568698883,0.198296457529068,-0.431398332118988,-0.0171926319599152,-0.901997745037079,-0.458614438772202,0.0120458723977208,-0.888553738594055,-0.426715046167374,-0.0171065013855696,-0.904224336147308,-0.50279825925827,0.841351568698883,0.198296457529068,-0.507701516151428,0.83215993642807,0.223044827580452,-0.368135511875153,0.11215116083622,-0.922983407974243,-0.459558874368668,0.00312918913550675,-0.888141810894012,-0.424259543418884,-0.0119629548862576,-0.905461609363556,-0.453922212123871,0.0174964349716902,-0.890869498252869,-0.501846551895142,-0.146826267242432,-0.852403700351715,-0.677445471286774,-0.294111877679825,-0.674214959144592,-0.890065848827362,0.16457188129425,0.425086945295334,-0.482258558273315,0.0788026973605156,-0.872477531433105,-0.900043547153473,-0.0272339601069689,0.434948235750198,-0.891571581363678,-0.0665449500083923,0.447964161634445,-0.899265885353088,0.068132646381855,0.432063430547714,-0.484109669923782,0.110302664339542,-0.868027150630951,-0.514620900154114,-0.203121602535248,-0.833010733127594,-0.399180293083191,-0.019684674218297,-0.916661143302917,-0.423518836498261,-0.0104170786216855,-0.905827522277832,-0.459274470806122,0.00401388248428702,-0.888285338878632,-0.473693758249283,-0.0167849343270063,-0.880529642105103,-0.399180293083191,-0.019684674218297,-0.916661143302917,-0.459274470806122,0.00401388248428702,-0.888285338878632,-0.425957143306732,-0.0155157223343849,-0.904610276222229,-0.407480150461197,-0.0466119274497032,-0.912023723125458,0.260014444589615,-0.348276704549789,-0.900608599185944,-0.398308962583542,-0.0169167518615723,-0.917095303535461,
- -0.473414719104767,-0.0192485433071852,-0.880629301071167,-0.349145621061325,-0.00186759699136019,-0.937066614627838,0.350185841321945,-0.141119495034218,-0.925988733768463,-0.349411487579346,0.124143920838833,-0.928708732128143,0.900337278842926,-0.162788853049278,-0.403599500656128,-0.329608649015427,-0.131799161434174,-0.934872806072235,0.910643517971039,-0.0639172196388245,-0.408219546079636,-0.326788425445557,0.181950062513351,-0.927417635917664,0.910397052764893,0.0680017098784447,-0.408109039068222,-0.342841684818268,-0.0484150052070618,-0.938144743442535,0.906504273414612,0.12007962167263,-0.404760271310806,-0.864330947399139,0.00139546685386449,0.502921521663666,-0.900673151016235,0.000732931948732585,0.434496700763702,-0.86440122127533,0.0037261659745127,0.502788841724396,-0.89741325378418,0.110414363443851,0.42715123295784,-0.857671320438385,0.111155994236469,0.502040326595306,-0.896199524402618,0.111366800963879,0.429446280002594,-0.900497317314148,-0.0106591824442148,0.434730976819992,-0.864426374435425,-0.0109748477116227,0.502639651298523,-0.892902672290802,-0.00955520756542683,0.450148582458496,0.922278702259064,0.0115690240636468,-0.386352360248566,0.940420866012573,0.0115631632506847,-0.339815944433212,0.922314167022705,0.0115471398457885,-0.386268347501755,0.936634242534637,-0.108882643282413,-0.332957774400711,0.934643805027008,-0.111267685890198,-0.337728410959244,0.916995882987976,-0.111175730824471,-0.383090794086456,0.912374079227448,0.0172154381871223,-0.408995270729065,0.939999461174011,0.019235797226429,-0.340633511543274,0.922187685966492,0.0171549525111914,-0.386361986398697,0.936848223209381,-0.106393903493881,-0.333160579204559,0.907082140445709,-0.108903236687183,-0.406623035669327,0.907082140445709,-0.108903236687183,-0.406623035669327,0.940216839313507,0.0122103346511722,-0.340357840061188,0.912464380264282,0.00992539525032043,-0.409035742282867,0.915222465991974,0.00900809280574322,-0.402848213911057,0.711366832256317,0.014095151796937,-0.702679634094238,0.745166540145874,-0.080134429037571,-0.662046313285828,
- 0.749343276023865,0.0119550470262766,-0.662073850631714,0.744151830673218,-0.0802347287535667,-0.663174569606781,0.711296737194061,0.0104178795590997,-0.702814638614655,0.739615797996521,0.0582374669611454,-0.670504927635193,0.739969193935394,0.0582652911543846,-0.670112490653992,0.739794611930847,-0.0471415109932423,-0.671179294586182,0.744552433490753,-0.0801951736211777,-0.662729501724243,0.788511395454407,-0.0510527938604355,-0.612897515296936,0.788840591907501,0.0621134340763092,-0.611451268196106,0.790637969970703,0.114039309322834,-0.601570129394531,0.818171262741089,0.0135569591075182,-0.574814796447754,0.789763271808624,-0.0511542856693268,-0.61127507686615,0.791974425315857,0.113883160054684,-0.599839270114899,0.789714932441711,-0.0511503629386425,-0.611337900161743,0.818143427371979,0.0144965266808867,-0.574831426143646,0.784371256828308,0.0127061130478978,-0.620161533355713,-0.711075723171234,0.00295701599679887,0.703109204769135,-0.763701319694519,0.00172626879066229,0.64556759595871,-0.756497621536255,0.00144847587216645,0.653994858264923,-0.7084681391716,0.102027043700218,0.698328971862793,-0.704731106758118,0.0996734276413918,0.702438116073608,-0.760818779468536,0.100800968706608,0.64108806848526,-0.763537704944611,-0.0104040810838342,0.645679414272308,-0.711319983005524,-0.0115830581635237,0.702772855758667,-0.749311327934265,-0.0094740055501461,0.662150084972382,0.818239152431488,0.0111502353101969,-0.574769854545593,0.77472335100174,0.0104350540786982,-0.632214248180389,0.784465312957764,0.0093652056530118,-0.620102167129517,0.816437363624573,-0.0961087718605995,-0.569379806518555,0.81365031003952,-0.0981597453355789,-0.573007702827454,0.770038604736328,-0.0969871655106544,-0.630582273006439,0.774717450141907,0.00828003603965044,-0.632253408432007,0.818535387516022,0.00713481567800045,-0.574411749839783,0.774807691574097,0.00884339958429337,-0.632135152816772,-0.527170896530151,9.85434890026227e-005,0.84975928068161,-0.583351969718933,-0.00309201353229582,0.812213599681854,-0.592184662818909,-0.00395227037370205,0.805792629718781,
- -0.524681270122528,0.0851822346448898,0.847026288509369,-0.58463180065155,0.0842191129922867,0.806915640830994,-0.528651058673859,0.08744265884161,0.84432327747345,-0.583902180194855,0.012307807803154,0.811730742454529,-0.527043163776398,0.0124255307018757,0.849747657775879,-0.565820753574371,0.0131850913167,0.824422836303711,-0.526803195476532,0.0265688560903072,0.849571943283081,-0.569703161716461,0.0268965400755405,0.821410417556763,-0.566021978855133,0.027037350460887,0.82394677400589,-0.568980276584625,-0.008112583309412,0.822311162948608,-0.527205109596252,-0.00867223367094994,0.849693834781647,-0.574551820755005,-0.00821339711546898,0.81842702627182,0.670076549053192,0.0123602161183953,-0.742189109325409,0.614887416362762,0.00941761583089828,-0.788558661937714,0.631900429725647,0.00917332898825407,-0.77499532699585,0.672111988067627,-0.094839058816433,-0.734350740909576,0.672961950302124,-0.0968351885676384,-0.733311116695404,0.613287746906281,-0.0980298221111298,-0.783752739429474,0.61492782831192,0.00711457896977663,-0.788551449775696,0.674893200397491,0.00835012830793858,-0.737868189811707,0.619880080223084,0.00775481201708317,-0.784658372402191,0.204958498477936,-0.0859089121222496,-0.974993169307709,0.251200556755066,0.0145503096282482,-0.967825710773468,0.197234064340591,0.0124755911529064,-0.980277061462402,0.251140058040619,0.015993369743228,-0.96781861782074,0.202656000852585,-0.0857614725828171,-0.975487351417542,0.211304128170013,0.0624691434204578,-0.975422024726868,0.211206048727036,0.0624737180769444,-0.975443005561829,0.202513307332993,-0.0857523232698441,-0.975517749786377,0.212811306118965,-0.0437474548816681,-0.976113498210907,0.140543401241302,-0.0478673838078976,-0.98891681432724,0.128616601228714,0.113889925181866,-0.985132932662964,0.138897940516472,0.0656500905752182,-0.988128244876862,0.126031026244164,0.113680645823479,-0.985491216182709,0.138118058443069,-0.0480004362761974,-0.989251911640167,0.0873443856835365,0.0120589882135391,-0.996105194091797,0.0874187424778938,0.0145089020952582,-0.996065974235535,
- 0.139539942145348,-0.0479224771261215,-0.98905622959137,0.141806855797768,0.0127615295350552,-0.989812195301056,-0.086932361125946,0.0012176469899714,0.996213495731354,-0.158029288053513,0.000996196526102722,0.987434029579163,-0.0863669663667679,0.00325524341315031,0.996258080005646,-0.161341220140457,0.11097090691328,0.980639934539795,-0.0829451307654381,0.110770180821419,0.990378856658936,-0.158744037151337,0.111745297908783,0.980975687503815,-0.15782156586647,-0.0102922562509775,0.987414002418518,-0.0873221084475517,-0.0113282566890121,0.996115744113922,-0.141713127493858,-0.0095876706764102,0.989861309528351,0.181158766150475,0.00647387327626348,-0.983432650566101,0.251518964767456,0.00673823151737452,-0.967828929424286,0.259196221828461,0.00464518694207072,-0.965813517570496,0.254410654306412,-0.107300274074078,-0.961125314235687,0.176568731665611,-0.107824102044106,-0.978364706039429,0.179048821330071,-0.108696065843105,-0.977817296981812,0.251331895589828,0.0113744828850031,-0.967834234237671,0.181031703948975,0.0102006513625383,-0.983424365520477,0.197338327765465,0.00933186803013086,-0.980291128158569,-0.849254846572876,-0.0420276671648026,-0.526307761669159,-0.865610659122467,0.122775360941887,-0.485432207584381,-0.885825991630554,0.0618548132479191,-0.459876388311386,-0.857375264167786,0.113461829721928,-0.502029955387115,-0.845517158508301,-0.0373148620128632,-0.532642781734467,-0.877470076084137,0.0647323429584503,-0.475243300199509,-0.846399545669556,0.00440213084220886,-0.532530248165131,-0.869678378105164,0.0747794210910797,-0.487921714782715,-0.837161242961884,-0.0270503405481577,-0.546286880970001,-0.859704434871674,0.0871111452579498,-0.503309011459351,-0.836615085601807,0.0181500241160393,-0.547490477561951,-0.83207380771637,0.00824670679867268,-0.554603636264801,-0.583672642707825,0.314823031425476,-0.748473584651947,-0.528634071350098,0.297414571046829,-0.795041263103485,-0.785153269767761,0.0723342373967171,-0.615062713623047,-0.939445734024048,-0.315217345952988,-0.134461060166359,-0.918340384960175,-0.334688752889633,-0.211268603801727,
- -0.894866108894348,0.0701479688286781,-0.440788060426712,-0.833283424377441,0.0226975828409195,-0.552379906177521,-0.850634813308716,0.11220721155405,-0.513643801212311,-0.828434586524963,0.0133251696825027,-0.55992728471756,-0.4335997402668,0.362948536872864,-0.82477867603302,-0.739075839519501,0.673252522945404,-0.0223178211599588,-0.575163722038269,0.815108418464661,-0.0691751092672348,-0.809776782989502,0.0131195448338985,-0.586591362953186,-0.774629056453705,-0.0632370784878731,-0.629246294498444,-0.817208051681519,0.0285208821296692,-0.575636863708496,-0.762166976928711,-0.0494119599461555,-0.645492017269135,-0.797711372375488,0.0282232910394669,-0.602378606796265,-0.797942340373993,0.0370924770832062,-0.601591348648071,-0.74994945526123,-0.0363054536283016,-0.660498082637787,-0.784938454627991,0.0502047426998615,-0.617536306381226,-0.771183431148529,-0.0862764194607735,-0.630739688873291,-0.760374426841736,-0.0946552529931068,-0.642550468444824,-0.782999932765961,0.0521174743771553,-0.619834542274475,-0.745239853858948,-0.042607057839632,-0.665433824062347,-0.817664444446564,0.0279161129146814,-0.575017869472504,-0.821253597736359,-0.045196395367384,-0.568770408630371,-0.810267210006714,0.0124917952343822,-0.585927486419678,-0.829665124416351,-0.00574675854295492,-0.558231770992279,-0.830994844436646,0.00976056605577469,-0.556194484233856,-0.835544884204865,-0.00890491995960474,-0.549350023269653,-0.815399289131165,-0.0693107321858406,-0.574734926223755,-0.851921737194061,-0.510415375232697,0.117071606218815,-0.886715829372406,-0.450653374195099,0.103182375431061,-0.82776665687561,-0.0152707872912288,-0.560864686965942,-0.833832919597626,-0.0181716326624155,-0.551717758178711,-0.811257660388947,-0.00293337879702449,-0.584681451320648,-0.845909774303436,0.0609854720532894,-0.52982771396637,-0.705453813076019,0.249914824962616,-0.663232624530792,-0.837943434715271,0.0711222216486931,-0.541103005409241,-0.559629380702972,-0.564769148826599,-0.606507062911987,-0.689894378185272,-0.290901094675064,-0.662889361381531,
- -0.820085883140564,-0.531761586666107,0.211397156119347,-0.782339572906494,-0.0680891647934914,-0.61911928653717,-0.806262135505676,-0.0969458296895027,-0.583560526371002,-0.810392916202545,-0.0883505865931511,-0.579186975955963,-0.782339572906494,-0.0680891647934914,-0.61911928653717,-0.752872347831726,-0.145870342850685,-0.641798496246338,-0.806262135505676,-0.0969458296895027,-0.583560526371002,-0.752173721790314,-0.145082980394363,-0.642795145511627,-0.786291539669037,-0.0598223768174648,-0.614952921867371,-0.818613767623901,-0.00239501614123583,-0.574339389801025,-0.704720556735992,0.248411923646927,-0.664575397968292,-0.829972207546234,-0.0160917863249779,-0.557572782039642,-0.836648464202881,0.0670530945062637,-0.543620467185974,-0.819441616535187,-0.00337366992607713,-0.573152899742126,-0.789798498153687,-0.100045785307884,-0.605152189731598,-0.752981305122375,-0.145993292331696,-0.641642689704895,-0.777997136116028,-0.101025246083736,-0.620092213153839,-0.803807199001312,0.0146387545391917,-0.594709753990173,-0.779392898082733,-0.0332741513848305,-0.625651299953461,-0.854656279087067,0.0739422515034676,-0.513901948928833,-0.85505735874176,-0.0258900485932827,-0.517886638641357,-0.82586008310318,-0.0110647706314921,-0.563766539096832,-0.825508654117584,-0.0106387631967664,-0.564289391040802,-0.708469033241272,0.256154358386993,-0.657614290714264,-0.85430783033371,0.0743628591299057,-0.514420568943024,-0.859592080116272,-0.025379603728652,-0.510350227355957,-0.861883580684662,0.0650748983025551,-0.502913475036621,-0.851293921470642,0.105423808097839,-0.513988792896271,-0.770017147064209,0.617528676986694,-0.160411924123764,-0.954953730106354,0.115853130817413,-0.273205816745758,-0.68929922580719,0.228625789284706,-0.687456786632538,-0.983664214611053,0.11601035296917,0.137645691633224,-0.710794508457184,0.700389444828033,0.065006360411644,-0.317155122756958,0.780499458312988,0.538733184337616,0.259422153234482,0.0140237538143992,-0.9656623005867,0.307283252477646,-0.0855911001563072,-0.947761237621307,0.314130663871765,0.0126662291586399,-0.949295282363892,
- 0.309741586446762,-0.0854126065969467,-0.946976661682129,0.259448319673538,0.015405192039907,-0.965634226799011,0.301401495933533,0.0588269270956516,-0.951681017875671,0.301461666822433,0.0588304251432419,-0.951661646366119,0.301000654697418,-0.0414659269154072,-0.952722012996674,0.309836864471436,-0.085405670106411,-0.946946144104004,0.377482175827026,0.114984214305878,-0.918850302696228,0.370132744312286,-0.045233815908432,-0.927876949310303,0.370462983846664,0.0627385675907135,-0.926726102828979,0.417974770069122,0.012744901701808,-0.908369243144989,0.372466683387756,-0.0453586168587208,-0.926936447620392,0.379951030015945,0.114791318774223,-0.917856276035309,0.370984107255936,-0.045279361307621,-0.927534699440002,0.417858302593231,0.0151280649006367,-0.90838623046875,0.369540274143219,0.0126585522666574,-0.929128587245941,-0.353666722774506,0.00176753441337496,0.935369849205017,-0.418599039316177,0.000974494789261371,0.908170640468597,-0.425016015768051,0.0029417471960187,0.905181050300598,-0.420744985342026,0.110095717012882,0.900473535060883,-0.349041163921356,0.111484929919243,0.930452227592468,-0.350657910108566,0.111986801028252,0.929783821105957,-0.418014138936996,-0.0119283804669976,0.908362209796906,-0.353762328624725,-0.0100461905822158,0.93528151512146,-0.369668960571289,-0.00949500966817141,0.929115116596222,0.25926610827446,0.00626898743212223,-0.965785682201386,0.330100566148758,0.00654030637815595,-0.943923115730286,0.259028732776642,0.0042820586822927,-0.96586012840271,0.332423567771912,-0.107613191008568,-0.93697065114975,0.255159974098206,-0.107897952198982,-0.960859715938568,0.330819964408875,-0.108180522918701,-0.937472760677338,0.330093264579773,0.0106970025226474,-0.943887710571289,0.259360432624817,0.0108640100806952,-0.965719521045685,0.314071118831635,0.0095114903524518,-0.949351787567139,-0.0170169770717621,-0.999722361564636,0.0162991229444742,0.0222834832966328,-0.999506592750549,-0.0221374053508043,0.0200945343822241,-0.99978506565094,0.00512181781232357,0.020913802087307,-0.999770939350128,0.00454648351296782,
- 0.0142594911158085,-0.999437987804413,-0.0303386263549328,-0.0450145490467548,-0.994635343551636,-0.0931356251239777,0.0197924245148897,-0.999789893627167,0.00533396890386939,-0.0462180003523827,-0.994654715061188,-0.0923357233405113,-0.00465765502303839,-0.999605715274811,-0.0276905987411737,-0.0100874602794647,-0.999689519405365,-0.0227833446115255,0.0167089346796274,-0.99984347820282,0.00581649504601955,0.0148570230230689,-0.999850928783417,0.00879941508173943,0.279224783182144,-0.917948663234711,-0.28178671002388,0.118328019976616,-0.972763538360596,-0.199322760105133,-0.473595052957535,-0.560365557670593,-0.679483771324158,-0.138509690761566,-0.98865133523941,0.05816899985075,0.0189419277012348,-0.999813914299011,0.00365646905265749,-0.00800520088523626,-0.999663710594177,-0.0246654152870178,0.0143304206430912,-0.999864459037781,0.00811705738306046,-0.127247005701065,-0.98875892162323,0.0785122811794281,0.043331865221262,-0.998853921890259,-0.0203278511762619,0.371627062559128,0.00300238584168255,0.928377270698547,0.360401719808578,-0.00212818942964077,0.932794749736786,0.332271039485931,-0.00687334919348359,0.94315892457962,0.333576321601868,-0.0126758329570293,0.942637979984283,0.358477771282196,0.00268734246492386,0.933534383773804,0.249723926186562,-0.0380518585443497,0.96756911277771,0.211775973439217,-0.0175855848938227,0.977160036563873,0.331750452518463,-0.00457349652424455,0.943356096744537,0.246669590473175,-0.0274154022336006,0.968711793422699,0.213082075119019,0.00610985048115253,0.977015197277069,0.330278664827347,0.00188477814663202,0.943881690502167,0.213082075119019,0.00610985048115253,0.977015197277069,-0.0810026302933693,0.993799448013306,-0.0761661231517792,0.00800838693976402,0.992255032062531,-0.123959727585316,0.0404324978590012,0.989386796951294,-0.139567047357559,-0.0719844847917557,0.995739161968231,-0.0576345659792423,0.0505278669297695,0.99132776260376,-0.121311157941818,-0.0672542452812195,0.996102750301361,-0.0570624731481075,-0.074885755777359,0.995989322662354,-0.048963088542223,
- -0.0667964220046997,0.99618124961853,-0.0562242306768894,0.0509991496801376,0.991407752037048,-0.120456606149673,0.0349181964993477,0.993713796138763,-0.106365419924259,-0.0738714709877968,0.996147811412811,-0.0472500175237656,0.0520891807973385,0.991589307785034,-0.118479393422604,-0.0393393263220787,-0.999218881130219,0.00377513282001019,0.0390925072133541,-0.999215960502625,0.00626634014770389,-0.0314500667154789,-0.999498069286346,0.00383379124104977,0.0392355285584927,-0.99922651052475,0.00264410115778446,-0.0393396057188511,-0.999225974082947,-0.000254774698987603,0.0784971937537193,-0.996914327144623,-0.000256403960520402,0.0471025519073009,-0.998886048793793,-0.00282371393404901,0.0784971937537193,-0.996914327144623,-0.000256403960520402,-0.0393396057188511,-0.999225974082947,-0.000254774698987603,-0.0393570885062218,-0.999224603176117,0.00111376086715609,0.0471313521265984,-0.99888688325882,-0.0019105268875137,-0.0393395833671093,-0.999225497245789,0.00101428967900574,-0.0375739708542824,0.994985163211823,-0.0926979035139084,-0.0891512557864189,0.995958745479584,0.0108759617432952,-0.0295521393418312,0.993284463882446,-0.111859768629074,-0.107630930840969,0.99418842792511,0.00226688128896058,-0.100649781525135,0.994800269603729,-0.0155560690909624,-0.0472383350133896,0.991555988788605,-0.120769381523132,-0.103479072451591,0.9945467710495,-0.0129997143521905,-0.0471918694674969,0.991561055183411,-0.120746023952961,-0.100589208304882,0.994807004928589,-0.0155252767726779,-0.0912411138415337,0.995810091495514,-0.00610718969255686,-0.0475709401071072,0.994702994823456,-0.0911207273602486,-0.0338782370090485,0.992898046970367,-0.11404263228178,-0.0176940206438303,-0.997900426387787,0.062302578240633,-0.0197652112692595,-0.998719990253448,-0.0465611144900322,-0.0169872734695673,-0.997354507446289,0.0706786662340164,-0.00239368248730898,-0.99888664484024,-0.0471161231398582,-0.000660873483866453,-0.99848461151123,-0.055029384791851,-0,-0.997498512268066,0.0706888735294342,0.00070178892929107,-0.999875962734222,-0.0157350264489651,
- -0,-0.997498512268066,0.0706888735294342,-0.000660873483866453,-0.99848461151123,-0.055029384791851,-0.00196501333266497,-0.997496485710144,0.0706887319684029,-0.00109072064515203,-0.999875247478485,-0.0157632455229759,-0.00123800116125494,-0.998018682003021,0.0629063099622726,-0.0116020739078522,-0.999722242355347,-0.0205148532986641,0.0160478483885527,-0.99950635433197,0.0270087569952011,-0.00979875586926937,-0.999783933162689,0.0183329302817583,0.100955672562122,-0.994662404060364,-0.0213229339569807,-0.00942011177539825,-0.999769270420074,0.0193036012351513,0.0259306877851486,-0.999437749385834,0.0212562456727028,0.0279498565942049,-0.999606907367706,0.00219271797686815,-0.00991309620440006,-0.999788105487823,0.018039807677269,0.100470140576363,-0.994681715965271,-0.0226724501699209,0.0245028361678123,-0.999690771102905,-0.00424590893089771,-0.00955584179610014,-0.999844610691071,0.0148210376501083,-0.0121127888560295,-0.999849736690521,0.0123997963964939,0.206567347049713,-0.917564332485199,0.339714109897614,0.166194126009941,-0.972008466720581,0.166069433093071,0.77244907617569,-0.560460865497589,-0.298674166202545,-0.0237061437219381,-0.988588094711304,-0.148767530918121,-0.00798120629042387,-0.999814569950104,0.0175265017896891,0.0258321091532707,-0.999664843082428,-0.00176330690737814,-0.0112576764076948,-0.9998659491539,0.0118966782465577,-0.046170748770237,-0.988694727420807,-0.142657563090324,0.00910013169050217,-0.998850047588348,0.0470739118754864,-0.0272020231932402,-0.999220490455627,-0.0286124683916569,0.0116609502583742,-0.999874889850616,0.0106880562379956,-0.0113120218738914,-0.999872505664825,0.0112784681841731,0.0853903889656067,-0.994712829589844,-0.0570516400039196,-0.0119689097627997,-0.999874770641327,0.0103642148897052,0.0229266230016947,-0.999737143516541,-0.000455502915428951,0.0197732336819172,-0.999713480472565,-0.0134910475462675,-0.0119689097627997,-0.999874770641327,0.0103642148897052,0.0853903889656067,-0.994712829589844,-0.0570516400039196,0.0148962587118149,-0.999712944030762,-0.0187649689614773,
- -0.0135310897603631,-0.999870717525482,0.00868825893849134,-0.0153615241870284,-0.999866187572479,0.00564182968810201,0.319086939096451,-0.894244015216827,0.313864856958389,0.214232563972473,-0.967167258262634,0.136718481779099,0.710274457931519,-0.492103666067123,-0.503333032131195,-0.072542667388916,-0.98484867811203,-0.157513990998268,-0.0112136211246252,-0.99987655878067,0.0110058579593897,0.0168810281902552,-0.999719381332397,-0.0166188720613718,-0.0152233187109232,-0.999859750270844,0.00699578737840056,-0.0923497900366783,-0.984925806522369,-0.146263122558594,0.0119829513132572,-0.99947714805603,0.0300303213298321,-0.990672290325165,0.00356820062734187,0.13621923327446,-0.991748929023743,0.000111365334305447,0.128195405006409,-0.995833396911621,-0.00748337665572762,0.0908834859728813,-0.995642781257629,-0.0133289210498333,0.0922921821475029,-0.991991698741913,0.00478487648069859,0.126212373375893,-0.999251663684845,-0.0369894616305828,0.0113108288496733,-0.995898306369781,-0.00519586633890867,0.0903313606977463,-0.999621152877808,-0.0263205245137215,0.00804842542856932,-0.999317765235901,-0.0176405850797892,-0.0324468910694122,-0.999496161937714,0.00613656174391508,-0.0311419609934092,-0.996052145957947,0.00129590090364218,0.0887617617845535,-0.999496161937714,0.00613656174391508,-0.0311419609934092,0.0951201617717743,0.993690550327301,0.0594246871769428,0.063643753528595,0.996129631996155,-0.0606237053871155,0.102528862655163,0.991539776325226,0.0796034559607506,0.103045612573624,0.991497099399567,0.0794676020741463,0.0638962909579277,0.996108829975128,-0.0607000701129436,0.0695853531360626,0.996296882629395,-0.0505034103989601,0.0717671290040016,0.99586033821106,-0.0557823702692986,0.104070462286472,0.991411745548248,0.0791980922222137,0.0705864280462265,0.996213257312775,-0.0507611334323883,0.093460850417614,0.993787825107574,-0.0604224354028702,0.118512906134129,0.992204308509827,0.0385402776300907,0.125703454017639,0.989342927932739,0.0734807401895523,0.00439534150063992,-0.999495804309845,-0.031445574015379,
- 0.00644863257184625,-0.999213099479675,0.0391359925270081,0.00435942411422729,-0.999216496944427,-0.0393392331898212,0.00013149410369806,-0.999225914478302,-0.0393396019935608,0.00245440751314163,-0.999225914478302,0.0392622984945774,0.000132336033857428,-0.996914327144623,0.0784971937537193,-0.00219096895307302,-0.999226212501526,0.0392706096172333,0.00013149410369806,-0.999225914478302,-0.0393396019935608,0.000132336033857428,-0.996914327144623,0.0784971937537193,-0.00438339915126562,-0.999216318130493,-0.0393392220139503,-0.00647361716255546,-0.999212980270386,0.0391351990401745,-0.00441907253116369,-0.999495685100555,-0.0314453840255737,0.0210980232805014,0.996585369110107,-0.0798280760645866,0.0938486903905869,0.995444655418396,-0.0168033223599195,0.112899243831635,0.993603408336639,0.00246038078330457,0.0267744194716215,0.995947420597076,-0.0858592912554741,0.118617929518223,0.992931306362152,-0.00417417660355568,0.0291788373142481,0.996224939823151,-0.0817598700523376,0.0128053342923522,0.995707154273987,-0.0916705131530762,0.0284737758338451,0.996311485767365,-0.0809485539793968,0.117905959486961,0.993019104003906,-0.0033476366661489,0.104937106370926,0.994286894798279,-0.0195392780005932,0.0161249153316021,0.995270252227783,-0.0957973152399063,0.12162372469902,0.992546677589417,-0.00766552286222577,-0.0699588507413864,-0.997482419013977,-0.0116090122610331,0.00821906793862581,-0.999963760375977,-0.0022274402435869,-0.0625761672854424,-0.997990787029266,-0.00993284769356251,0.00775643717497587,-0.999969005584717,0.00141611485742033,-0.0703778192400932,-0.99748957157135,-0.00784287229180336,0.0549122840166092,-0.998476505279541,0.00541458651423454,0.0473413951694965,-0.99887478351593,0.00282349810004234,0.0549122840166092,-0.998476505279541,0.00541458651423454,-0.0703778192400932,-0.99748957157135,-0.00784287229180336,-0.0707619339227676,-0.997466266155243,-0.00733081577345729,0.0472639016807079,-0.998875319957733,0.00380028039216995,-0.0705371350049973,-0.997488558292389,-0.00640836777165532,0.0212514847517014,-0.999706029891968,0.0116722900420427,
- 0.00475223455578089,-0.999801099300385,0.0193682629615068,-0.024240942671895,-0.999706029891968,-0.000529761833604425,-0.00109603616874665,-0.999859154224396,0.0167476255446672,0.0274388920515776,-0.999558448791504,-0.0114032868295908,0.0488192923367023,-0.994716644287109,-0.0903076902031899,0.0150740435346961,-0.999682784080505,-0.0201761052012444,-0.000592250959016383,-0.999855875968933,0.0169734042137861,0.049356285482645,-0.994713246822357,-0.0900529399514198,0.223315060138702,-0.974731624126434,-0.00537252146750689,0.329528778791428,-0.559702098369598,-0.760358035564423,0.374142199754715,-0.92284369468689,0.0915267392992973,-0.00238131638616323,-0.999866485595703,0.0161715932190418,0.0118453977629542,-0.999705851078033,-0.0211639497429132,0.00106840569060296,-0.999862670898438,0.0165445748716593,0.00474651111289859,-0.999835073947906,0.0175309348851442,0.0151293091475964,-0.999682307243347,-0.0201591942459345,-0.140669152140617,-0.984713554382324,-0.102721117436886,-0.150340139865875,-0.984869539737701,-0.0861967355012894,0.0422857105731964,-0.998877882957459,0.0213284995406866,-0.000521168403793126,-0.9998699426651,0.0161182228475809,-0.0781486034393311,0.0144987562671304,-0.996836304664612,-0.996391892433167,-0.0848231837153435,-0.00286312820389867,-0.0635786578059196,0.0504393242299557,-0.99670135974884,-0.977359473705292,0.209691092371941,-0.0282540619373322,-0.993399858474731,-0.114510394632816,-0.00665673986077309,-0.0799481421709061,-0.0700105652213097,-0.994337379932404,-0.0843954607844353,-0.18569216132164,-0.978977024555206,-0.988363027572632,0.151980519294739,-0.00636088149622083,-0.0813246294856071,-0.167963698506355,-0.982432961463928,-0.998657763004303,-0.00356737896800041,0.0516715198755264,-0.9897740483284,0.000896185752935708,0.142642185091972,-0.999789714813232,0.0177934858947992,0.0101943146437407,-0.983236312866211,-0.105904377996922,0.148427098989487,-0.920451939105988,-0.349222213029861,0.175533637404442,-0.0754121765494347,-0.839609026908875,-0.537930965423584,-0.0754121765494347,-0.839609026908875,-0.537930965423584,
- -0.947852671146393,-0.121681652963161,-0.294565558433533,-0.983236312866211,-0.105904377996922,0.148427098989487,-0.981490194797516,0.111620165407658,0.155621722340584,0.102612845599651,-0.0181759111583233,0.994555294513702,0.115143708884716,-0.0607148334383965,0.991491615772247,-0.989568054676056,-0.104438997805119,0.0992346778512001,-0.992124557495117,0.03613455966115,0.119929976761341,-0.997768461704254,-0.0196772627532482,0.0638038888573647,-0.997768461704254,-0.0196772627532482,0.0638038888573647,-0.992124557495117,0.03613455966115,0.119929976761341,-0.998596906661987,-0.00609868252649903,0.0526043958961964,-0.976850152015686,0.204530194401741,0.0626995414495468,-0.992695510387421,0.043700210750103,0.112454131245613,-0.990277469158173,-0.104959107935429,0.091291531920433,-0.991924822330475,0.122242942452431,0.0337901599705219,-0.861548960208893,0.228537172079086,0.453325688838959,0.0360376052558422,0.839020431041718,0.54290509223938,-0.989761888980865,0.00152168702334166,0.142720490694046,-0.998598039150238,-0.00605122186243534,0.0525869019329548,-0.99173641204834,0.0213908161967993,0.126496493816376,-0.992164969444275,0.0366253219544888,0.119445569813252,-0.99173641204834,0.0213908161967993,0.126496493816376,-0.998598039150238,-0.00605122186243534,0.0525869019329548,0.10243272036314,0.061945416033268,0.992809414863586,-0.978097140789032,0.135312929749489,0.158165872097015,-0.960190951824188,-0.192841768264771,0.202102497220039,0.0360376052558422,0.839020431041718,0.54290509223938,-0.931416392326355,0.363834619522095,-0.00937339756637812,-0.991924822330475,0.122242942452431,0.0337901599705219,-0.973822474479675,-0.135446101427078,0.182549074292183,0.0963764637708664,0.187849625945091,0.977458000183105,0.101295627653599,0.160720497369766,0.981788337230682,-0.0462362132966518,-0.998883366584778,0.00971696991473436,0.15956923365593,-0.986269772052765,-0.042539119720459,-0.00623388728126884,-0.999855816364288,0.0157948508858681,-0.00958329346030951,-0.999828934669495,0.0158208031207323,0.154778152704239,-0.986124753952026,-0.0600141547620296,
- -0.0101494751870632,-0.99967896938324,-0.0232148785144091,-0.00723442621529102,-0.999701738357544,-0.0233301818370819,-0.00295937620103359,-0.999859988689423,0.0164712592959404,-0.00638054357841611,-0.999854981899261,0.0157959945499897,-0.279250502586365,-0.554674804210663,-0.783808052539825,-0.396818101406097,-0.91787725687027,-0.00605933275073767,-0.134259775280952,-0.53607565164566,-0.833424985408783,-0.0071966047398746,-0.999827027320862,0.0171486902981997,-0.0115950591862202,-0.999664604663849,-0.023157624527812,-0.0131760006770492,-0.999672889709473,-0.0219194497913122,0.209364250302315,-0.977335810661316,-0.0313293151557446,-0.203491359949112,-0.44820848107338,-0.870459914207459,0.317705690860748,-0.945754766464233,-0.0679044872522354,0.00019838051230181,-0.999715983867645,-0.0238311011344194,0.0235867965966463,-0.998507380485535,-0.0492632985115051,0.00683980248868465,-0.999865651130676,0.0149034848436713,0.0236153416335583,-0.999715685844421,0.00332775129936635,-0.0167612582445145,-0.999630451202393,-0.0214062593877316,-0.532872796058655,-0.845027267932892,-0.0444465167820454,-0.319377213716507,0.116462901234627,-0.940443813800812,-0.966761291027069,0.0133724790066481,0.255330681800842,-0.307601660490036,0.16033698618412,-0.937909007072449,-0.955299139022827,0.202976018190384,0.214951947331429,-0.963993668556213,-0.120524629950523,0.237044408917427,-0.323575973510742,-0.0688850879669189,-0.943691492080688,-0.316220849752426,-0.18807715177536,-0.929855585098267,-0.960218846797943,0.144145950675011,0.239168748259544,-0.321213692426682,-0.1683289706707,-0.931926548480988,-0.954127967357636,-0.0156853515654802,0.29898801445961,-0.921746611595154,-0.0129074761644006,0.387578129768372,-0.967106342315674,0.00500487256795168,0.254323601722717,-0.961865901947021,-0.0390474945306778,0.270719915628433,-0.0399617999792099,-0.999001324176788,-0.0199860390275717,0.0019427997758612,-0.997398734092712,0.0720557793974876,-0.914083421230316,-0.113527104258537,0.389311343431473,-0.845905959606171,-0.356009423732758,0.397115111351013,
- -0.194868534803391,-0.843674838542938,-0.500238955020905,-0.194868534803391,-0.843674838542938,-0.500238955020905,-0.997283756732941,-0.0484267175197601,-0.0554978847503662,-0.914083421230316,-0.113527104258537,0.389311343431473,-0.921526432037354,-0.0073965503834188,0.388245224952698,-0.954366505146027,-0.0137660671025515,0.298320472240448,-0.927613139152527,0.0156604051589966,0.373213946819305,-0.941388368606567,-0.0365536585450172,0.335338652133942,-0.93256938457489,0.0269832108169794,0.359981209039688,-0.950455665588379,-0.0252122674137354,0.309836089611053,-0.954342484474182,-0.0139605738222599,0.298388183116913,-0.950455665588379,-0.0252122674137354,0.309836089611053,-0.93256938457489,0.0269832108169794,0.359981209039688,-0.932654440402985,0.0272434260696173,0.359740942716599,-0.927613139152527,0.0156604051589966,0.373213946819305,-0.954366505146027,-0.0137660671025515,0.298320472240448,-0.942162394523621,-0.0366419851779938,0.333147644996643,-0.931714773178101,0.192442700266838,0.308015614748001,-0.934641003608704,0.0334258265793324,0.354018270969391,-0.954326987266541,0.115072324872017,0.275714367628098,-0.727249264717102,0.216487899422646,0.651338219642639,0.16180108487606,0.835281670093536,0.525475919246674,0.185656040906906,0.82550185918808,0.532990157604218,-0.954326987266541,0.115072324872017,0.275714367628098,0.16180108487606,0.835281670093536,0.525475919246674,-0.895451247692108,-0.140343353152275,0.422458112239838,-0.736988961696625,-0.287512868642807,0.611705482006073,0.334424585103989,0.157525613903999,0.929164052009583,0.338745176792145,0.0612523779273033,0.938882231712341,-0.907714664936066,0.124696485698223,0.400630652904511,-0.877891421318054,-0.195260405540466,0.43724137544632,-0.910951852798462,0.104110687971115,0.39915868639946,0.339915782213211,-0.0169247388839722,0.940303683280945,0.351702809333801,-0.0519007965922356,0.934671938419342,0.000574850593693554,-0.999853193759918,0.0171238202601671,-0.0135542256757617,-0.999850690364838,0.01072683557868,0.0322184264659882,-0.999480247497559,-0.00109547085594386,
- -0.0201848037540913,-0.999674677848816,-0.0155929420143366,0.00704635307192802,-0.99987518787384,0.0141416843980551,-0.00935120973736048,-0.999720513820648,-0.0217175409197807,-0.203074425458908,-0.609378814697266,-0.766432166099548,0.0982360318303108,-0.992932021617889,-0.0666013360023499,-0.32465061545372,-0.037662610411644,-0.945083975791931,-0.0123134991154075,-0.999714493751526,-0.0204767696559429,0.00373195088468492,-0.999870359897614,0.0156691074371338,7.26010000562383e-007,-0.999865770339966,0.0163910388946533,-0.0273099634796381,-0.99949061870575,-0.0165189597755671,-0.32465061545372,-0.037662610411644,-0.945083975791931,0.0982360318303108,-0.992932021617889,-0.0666013360023499,0.00633782474324107,-0.999872982501984,0.0146250799298286,-0.00450393604114652,-0.999719560146332,-0.0232542362064123,-0.00651019066572189,-0.999716401100159,-0.0229072645306587,-0.562707424163818,-0.0460815206170082,-0.825370728969574,-0.374424070119858,-0.923092663288116,0.0877867862582207,-0.327422589063644,-0.53945130109787,-0.775749146938324,0.00397215876728296,-0.99987530708313,0.0152844022959471,0.150597214698792,-0.983515083789825,-0.100092776119709,-0.0067546097561717,-0.999722003936768,-0.0225901640951633,-0.0350633002817631,-0.999225497245789,0.0178612414747477,0.157889470458031,-0.983590126037598,-0.0873003676533699,0.00651418464258313,-0.99987256526947,0.0145759237930179,-0.511529266834259,0.0996863692998886,0.85346382856369,0.81218159198761,-0.00877607055008411,0.583338737487793,0.822697818279266,-0.0518426634371281,0.56611031293869,0.80940306186676,0.071382574737072,0.58289897441864,-0.507642447948456,0.122815109789371,0.852769494056702,-0.480502426624298,-0.199774444103241,0.853936553001404,-0.504333853721619,-0.142702460289001,0.851635694503784,0.794414103031158,0.186632454395294,0.577992022037506,0.798917949199677,0.168828800320625,0.577258110046387,-0.558431446552277,0.0122810769826174,0.8294597864151,-0.525971710681915,-0.00932565052062273,0.850450932979584,-0.635473906993866,0.00785167887806892,0.772082448005676,
- -0.532110095024109,0.0382398031651974,0.845811188220978,-0.0618570111691952,0.997901499271393,-0.0191445704549551,0.0173949040472507,0.998533070087433,0.0512752719223499,0.428153157234192,0.837259352207184,0.340120136737823,-0.622680962085724,0.355273962020874,0.697172045707703,-0.635577857494354,0.113745100796223,0.763611853122711,-0.635577857494354,0.113745100796223,0.763611853122711,-0.230410844087601,0.04993586987257,0.971811354160309,0.428153157234192,0.837259352207184,0.340120136737823,-0.559032142162323,0.014288017526269,0.829022884368896,-0.63553261756897,0.00728197023272514,0.772039711475372,-0.618785262107849,-0.0130986925214529,0.785450994968414,-0.611443758010864,-0.0256036855280399,0.790873527526855,-0.591841638088226,0.0350657925009727,0.805291295051575,-0.569825232028961,0.0251421760767698,0.821381211280823,-0.559058129787445,0.0143749434500933,0.829003870487213,-0.611443758010864,-0.0256036855280399,0.790873527526855,-0.569825232028961,0.0251421760767698,0.821381211280823,-0.611306488513947,-0.0257761031389236,0.790974199771881,-0.559032142162323,0.014288017526269,0.829022884368896,-0.618785262107849,-0.0130986925214529,0.785450994968414,-0.589690566062927,0.0351862646639347,0.806862413883209,-0.603963315486908,-0.034928310662508,0.796246528625488,-0.561606287956238,-0.197464644908905,0.803496301174164,-0.454205751419067,-0.836839020252228,-0.305610597133636,-0.831652879714966,-0.221075758337975,0.509390830993652,-0.538038671016693,-0.111893579363823,0.835460484027863,-0.538038671016693,-0.111893579363823,0.835460484027863,-0.454272210597992,-0.830559551715851,-0.32219186425209,-0.454205751419067,-0.836839020252228,-0.305610597133636,-0.792308688163757,-0.166041940450668,-0.587091982364655,-0.798725605010986,0.2908775806427,0.526714026927948,-0.657146871089935,0.14493253827095,0.739697635173798,-0.666338205337524,0.200567781925201,0.718168497085571,-0.643469929695129,-0.125318601727486,0.755143523216248,-0.800557553768158,-0.0703270211815834,-0.595114886760712,-0.642853081226349,-0.100371532142162,0.759385049343109,
- -0.78834867477417,0.0560531951487064,-0.612670063972473,-0.801693916320801,0.0129533354192972,-0.597594559192657,-0.0209877826273441,-0.999230742454529,0.0331280715763569,0.00744965020567179,-0.99987655878067,-0.0138355605304241,0.0134688979014754,-0.999873876571655,0.00841349642723799,0.0108878295868635,-0.999876260757446,0.0113633424043655,-0.00895940791815519,-0.999677360057831,-0.0237676650285721,-0.0188047606498003,-0.999718725681305,-0.0144536187872291,-0.745935320854187,-0.0483597703278065,-0.664260447025299,-0.00458401488140225,-0.999481678009033,-0.0318652205169201,-0.646292269229889,-0.647857844829559,-0.403220236301422,-0.0167993698269129,-0.999715983867645,-0.016910120844841,0.0151135586202145,-0.99987006187439,0.00562631478533149,0.0132564697414637,-0.999874770641327,0.00865629129111767,-0.762923240661621,-0.0475512519478798,-0.644737958908081,0.0462575629353523,-0.992564737796783,-0.11258552968502,-0.0230703018605709,-0.999691367149353,-0.00922739040106535,0.0117706898599863,-0.999871551990509,0.0108864614740014,-0.0205863490700722,-0.999712884426117,-0.0122709553688765,-0.0213393867015839,-0.999716818332672,-0.0105310780927539,0.233652502298355,-0.889820396900177,-0.391951680183411,-0.621493697166443,-0.0528694279491901,-0.781633198261261,-0.67047244310379,-0.468825608491898,-0.575038611888886,-0.133205890655518,-0.98482608795166,0.111237309873104,0.0131383799016476,-0.999875545501709,0.00873447675257921,-0.0200049169361591,-0.999721109867096,-0.0125520275905728,0.0103279696777463,-0.999860107898712,0.0131562864407897,-0.119612365961075,-0.984880447387695,0.125313311815262,0.0255048386752605,-0.999482750892639,-0.019594069570303,0.0305060427635908,-0.999403953552246,-0.0161588620394468,-0.0784721300005913,-0.988748967647552,0.127349078655243,0.0358933247625828,-0.997974395751953,-0.0525242835283279,-0.0990132018923759,-0.988555729389191,0.113815680146217,0.0326341167092323,-0.999216318130493,-0.0224011074751616,-0.0112674320116639,-0.999227344989777,-0.0376558527350426,0.122901581227779,-0.910647571086884,-0.394482493400574,
- -0.660057663917542,-0.559319674968719,-0.501483201980591,-0.748308777809143,-0.53265792131424,-0.395360022783279,0.0267332121729851,-0.999487340450287,-0.0176185928285122,-0.0122474888339639,-0.999311864376068,-0.0350110083818436,0.0316478498280048,-0.999308705329895,-0.019507709890604,-0.787105977535248,-0.427152305841446,-0.444977581501007,-0.0737356394529343,-0.98850029706955,0.132023617625237,-0.151888430118561,-0.958634495735168,0.240727618336678,-0.010340228676796,-0.999139964580536,-0.0401575565338135,0.029112670570612,-0.999328255653381,-0.022259920835495,-0.0135685727000237,-0.998951256275177,-0.0437319278717041,-0.0125899259001017,-0.998875021934509,-0.0457187294960022,0.00150906923227012,-0.999960601329803,0.00875054020434618,0.121616415679455,-0.848608136177063,-0.514853119850159,-0.029686015099287,-0.999558508396149,-0.00130739680025727,-0.0160525906831026,-0.999122440814972,-0.0386874005198479,0.026374002918601,-0.99950897693634,-0.0169180128723383,-0.990344405174255,0.137311786413193,-0.0190692078322172,-0.994355499744415,0.10574546456337,-0.00866222102195024,-0.128328531980515,-0.010247721336782,0.991678774356842,-0.152584552764893,0.192355886101723,0.969390094280243,-0.14323665201664,-0.129783198237419,0.981141984462738,-0.997835993766785,-0.0653407275676727,-0.00734249548986554,-0.0772849097847939,-0.0175373572856188,0.996854782104492,0.0221104342490435,-0.0133178355172277,0.999666810035706,-0.126127049326897,0.00623702630400658,0.991994500160217,-0.986231446266174,-0.165244489908218,-0.00646447623148561,-0.983312964439392,-0.181889921426773,-0.00344620831310749,-0.130854338407516,0.130544811487198,0.982769250869751,0.024678960442543,0.00690798042342067,0.999671578407288,0.992627382278442,-0.0998064503073692,0.0687719061970711,0.989027917385101,-0.135530099272728,0.0587819889187813,0.995523810386658,0.0617814920842648,0.0715218558907509,0.038955632597208,0.120791614055634,0.991913318634033,0.0823329538106918,-0.20048651099205,0.97623074054718,0.0221516918390989,-0.0129935629665852,0.999670207500458,
- -0.0763604715466499,-0.0200430247932673,0.996878921985626,0.00472758943215013,0.00993994064629078,0.999939441680908,0.0597880780696869,-0.139235123991966,0.988452911376953,0.979480266571045,0.186354741454124,0.0767485499382019,0.984200716018677,0.161626249551773,0.0722917914390564,0.0320922806859016,-0.129056960344315,0.991117775440216,0.0596265830099583,-0.371806681156158,0.926393270492554,-0.544510185718536,-0.838610589504242,0.0155219724401832,-0.0656507909297943,-0.0351400412619114,0.997223734855652,0.00472758943215013,0.00993994064629078,0.999939441680908,-0.0763604715466499,-0.0200430247932673,0.996878921985626,-0.0743085741996765,-0.0533166937530041,0.995809018611908,0.0306358709931374,-0.999246120452881,0.0238453596830368,0.0776318609714508,-0.996729969978333,0.0224205255508423,-0.544510185718536,-0.838610589504242,0.0155219724401832,-0.399847894906998,-0.0752333328127861,0.913488686084747,0.0320922806859016,-0.129056960344315,0.991117775440216,0.0047433259896934,0.00989738944917917,0.999939858913422,-0.0656280890107155,-0.0351620614528656,0.997224450111389,-0.0108502386137843,0.0214783698320389,0.999710440635681,-0.0334315411746502,-0.0501856990158558,0.998180210590363,-0.0108502386137843,0.0214783698320389,0.999710440635681,-0.0656280890107155,-0.0351620614528656,0.997224450111389,0.543130874633789,0.836604654788971,0.0714264959096909,-0.125853583216667,0.36137393116951,0.923888385295868,-0.107171200215817,0.114491105079651,0.987626492977142,-0.00947416201233864,0.020148117095232,0.999752104282379,-0.0344025604426861,-0.0502610094845295,0.998143434524536,-0.0423113107681274,0.0438367463648319,0.998142421245575,0.334425717592239,0.073934830725193,0.939517498016357,0.543130874633789,0.836604654788971,0.0714264959096909,-0.107171200215817,0.114491105079651,0.987626492977142,-0.0212531555444002,0.999058306217194,0.0378267541527748,0.0314168259501457,0.0502780452370644,0.998241007328033,-0.0668622925877571,0.997471392154694,0.0240886844694614,-0.99544894695282,0.0121820494532585,-0.0945146232843399,-0.99582040309906,0.0563213974237442,-0.0719004198908806,
- 0.0127674248069525,-0.0862422585487366,-0.996192395687103,-0.992675483226776,-0.0729789212346077,-0.0962781235575676,0.00881284382194281,-0.116807781159878,-0.993115544319153,-0.0113203246146441,0.208429425954819,-0.977971911430359,-0.976949214935303,-0.188326239585876,-0.10051603615284,-0.980515956878662,-0.170567855238914,-0.097443625330925,0.0107774650678039,0.150586098432541,-0.988538146018982,0.15900394320488,-0.0018149227835238,-0.987276375293732,0.0689448863267899,-0.00508137606084347,-0.997607529163361,0.0257349703460932,0.0152467582374811,-0.999552547931671,0.191624984145164,-0.351657330989838,-0.916306138038635,0.162716954946518,-0.109456181526184,-0.980582773685455,-0.535768449306488,-0.840139925479889,-0.0843644365668297,-0.281336665153503,-0.121396355330944,-0.951899468898773,-0.535768449306488,-0.840139925479889,-0.0843644365668297,0.162716954946518,-0.109456181526184,-0.980582773685455,0.993783891201019,-0.0133300730958581,0.110526397824287,0.172037124633789,0.109565161168575,-0.978978395462036,0.989767014980316,-0.0558116920292377,0.131325244903564,0.133744671940804,0.0331868045032024,-0.990459978580475,0.113253936171532,-0.103503718972206,-0.988160192966461,0.077683724462986,-0.022560928016901,-0.996722757816315,0.0698513686656952,-0.00754729239270091,-0.997528970241547,0.133744671940804,0.0331868045032024,-0.990459978580475,0.077683724462986,-0.022560928016901,-0.996722757816315,0.105436369776726,-0.104027986526489,-0.98896986246109,0.12643101811409,0.0406156629323959,-0.991143584251404,0.0775796622037888,0.198486939072609,-0.97702831029892,0.542951941490173,0.838574945926666,0.0446711331605911,0.465484470129013,0.222126975655556,-0.856728553771973,0.0477571785449982,0.119383037090302,-0.991699039936066,0.0698227658867836,-0.0074694724753499,-0.997531473636627,0.159081235527992,-0.00120130472350866,-0.987264752388,0.143514886498451,0.019893379881978,-0.989448189735413,0.133345752954483,0.0335924811661243,-0.990500092506409,0.0698227658867836,-0.0074694724753499,-0.997531473636627,0.143514886498451,0.019893379881978,-0.989448189735413,
- 0.174430683255196,0.132133483886719,-0.975763738155365,0.991613864898682,0.0684234127402306,0.109636522829533,0.217562034726143,-0.191969186067581,-0.956982016563416,0.00751721486449242,0.361286550760269,-0.932424545288086,0.542951941490173,0.838574945926666,0.0446711331605911,0.0477571785449982,0.119383037090302,-0.991699039936066,0.976241409778595,0.185616612434387,0.111799828708172,0.198403611779213,-0.134942471981049,-0.970786571502686,0.980264544487,0.165840610861778,0.107602320611477,0.015824731439352,-0.999869346618652,-0.0033340728841722,-0.0472828298807144,-0.98486202955246,0.166767209768295,0.0105194812640548,-0.9988893866539,-0.0459269508719444,-0.0647192299365997,-0.984722673892975,0.161656051874161,0.0159085690975189,-0.999849677085876,-0.00689630582928658,-0.0231700632721186,-0.99969893693924,-0.00807126518338919,-0.781205594539642,-0.551673591136932,-0.292188405990601,-0.831450581550598,-0.536577701568604,-0.144133821129799,-0.000434352114098147,-0.921974420547485,-0.387250483036041,0.0160676911473274,-0.999870836734772,-0.000396357558201998,-0.023325253278017,-0.999714076519012,-0.00526216067373753,0.0158356837928295,-0.999867498874664,-0.00379894161596894,-0.0347351878881454,-0.976740300655365,0.211593598127365,-0.073848120868206,-0.944581270217896,0.319863885641098,-0.867474436759949,-0.446678459644318,-0.219012513756752,-0.0229867603629828,-0.999670922756195,-0.011384884826839,0.0171200782060623,-0.999833106994629,-0.00637925369665027,-0.0219132769852877,-0.999675452709198,-0.0129933301359415,0.00281154923141003,-0.999716103076935,0.0236596167087555,-0.0350553169846535,-0.844651818275452,-0.534167110919952,-0.0216390285640955,-0.999657690525055,-0.0147047294303775,-0.0230617690831423,-0.999717116355896,-0.00582150230184197,0.015786362811923,-0.999874770641327,0.00120245490688831,-0.0353511720895767,-0.999109327793121,0.0230442956089973,-0.0385458916425705,-0.771599531173706,0.634939849376678,-0.0476913601160049,-0.799953818321228,0.598163425922394,-0.0319295078516006,-0.80702930688858,0.589647531509399,
- -0.0365529619157314,-0.807160139083862,0.589199781417847,-0.0562498494982719,-0.766353130340576,0.63995224237442,-0.04956379160285,-0.773105800151825,0.632337808609009,-0.0318760015070438,-0.810053765773773,0.585488557815552,-0.055834174156189,-0.766280055046082,0.640076100826263,-0.0324297957122326,-0.807044446468353,0.58959972858429,-0.252960503101349,-0.644623279571533,0.721437335014343,-0.201845765113831,-0.783538222312927,0.587644755840302,-0.191252887248993,-0.782228648662567,0.592908680438995,0.994365572929382,0.105501525104046,0.0103219514712691,0.126570999622345,0.00293375551700592,-0.991953313350677,0.989533305168152,0.142912104725838,0.0199989136308432,0.141734644770622,-0.117025047540665,-0.982963085174561,0.99775105714798,-0.0667334645986557,0.00628014001995325,0.149800941348076,0.20740570127964,-0.966717422008514,0.0745807513594627,-0.00226821587421,-0.997212409973145,-0.0238945744931698,0.000723343924619257,-0.999714314937592,0.124226108193398,0.0202639382332563,-0.992047011852264,0.983123898506165,-0.182940274477005,0.000538777851033956,0.128064155578613,0.145694971084595,-0.981005907058716,0.986054658889771,-0.166377499699593,0.00383423268795013,-0.0263225212693214,0.0198915246874094,-0.999455571174622,-0.992460429668427,-0.100378185510635,-0.0703316926956177,-0.9896399974823,-0.130575925111771,-0.0596878603100777,0.0680490732192993,-0.026773689314723,-0.997322678565979,0.0442913770675659,-0.9982590675354,-0.0389527641236782,-0.065658412873745,-0.997141599655151,-0.0373873189091682,-0.995677530765533,0.0603956468403339,-0.0705595910549164,-0.0406571589410305,0.134535953402519,-0.990074276924133,-0.0786376371979713,-0.190439790487289,-0.978544235229492,-0.023938586935401,0.00107022107113153,-0.999712884426117,0.0736542865633965,-0.00478616263717413,-0.997272372245789,-8.91301242518239e-005,0.0224804934114218,-0.999747276306152,-0.0558840446174145,-0.128638714551926,-0.990115702152252,-0.979930460453033,0.185167983174324,-0.0738179907202721,-0.984572112560272,0.160466656088829,-0.0697726085782051,-0.06213453784585,-0.35856631398201,-0.931434214115143,
- 0.544166147708893,-0.838485538959503,-0.0287264473736286,-0.0361364223062992,-0.111339390277863,-0.993125319480896,0.0618338249623775,-0.0169694367796183,-0.997942209243774,-8.91301242518239e-005,0.0224804934114218,-0.999747276306152,0.0736542865633965,-0.00478616263717413,-0.997272372245789,0.544166147708893,-0.838485538959503,-0.0287264473736286,0.39090022444725,-0.0401894822716713,-0.919555246829987,-0.0361364223062992,-0.111339390277863,-0.993125319480896,-0.543975532054901,0.837071716785431,-0.0583228692412376,0.130932539701462,0.374970555305481,-0.917743861675262,0.111206859350204,0.130415543913841,-0.98520302772522,-0.0001051745202858,0.0224371254444122,-0.999748349189758,0.0618092082440853,-0.016993336379528,-0.99794340133667,0.0122616505250335,0.0339558571577072,-0.999348104000092,0.0618092082440853,-0.016993336379528,-0.99794340133667,0.0353112556040287,-0.025268018245697,-0.999056875705719,0.0122616505250335,0.0339558571577072,-0.999348104000092,0.111206859350204,0.130415543913841,-0.98520302772522,-0.305757790803909,0.218943640589714,-0.926593661308289,-0.543975532054901,0.837071716785431,-0.0583228692412376,0.0391023755073547,-0.0254436861723661,-0.998911201953888,0.056525107473135,0.200518190860748,-0.978057980537415,0.0190110057592392,0.0405491515994072,-0.998996675014496,-0.0165658891201019,-0.999751627445221,-0.0149092385545373,-0.0049308268353343,-0.999470591545105,-0.0321596935391426,-0.00970496609807014,-0.999693512916565,0.0227742195129395,0.0228789653629065,-0.999296307563782,-0.0297263227403164,-0.0161885656416416,-0.99983674287796,-0.00803917925804853,0.0234548449516296,-0.99967360496521,-0.0101277120411396,0.791244029998779,-0.609475195407867,0.0497284419834614,0.0245051942765713,-0.997947692871094,0.0591597557067871,0.998804211616516,-0.0468582063913345,0.013943076133728,0.0234095957130194,-0.999642133712769,-0.0129538541659713,-0.0163714792579412,-0.999801337718964,-0.0113678788766265,-0.0143196601420641,-0.999784708023071,-0.0150225358083844,0.0296740159392357,-0.997249066829681,-0.0679250136017799,
- 0.998804211616516,-0.0468582063913345,0.013943076133728,0.0245051942765713,-0.997947692871094,0.0591597557067871,0.0235163290053606,-0.999703824520111,-0.00626883562654257,-0.0150336055085063,-0.99985408782959,-0.00811341963708401,0.0241831690073013,-0.999698042869568,-0.0043622818775475,0.982438743114471,-0.0506563857197762,-0.179577305912972,0.0524329170584679,-0.937132120132446,-0.345013380050659,0.846263945102692,-0.53266853094101,0.0100802080705762,0.0243613887578249,-0.999682664871216,-0.00640790723264217,-0.0148102641105652,-0.999837636947632,-0.0102756032720208,0.0330093875527382,-0.983308434486389,0.178927198052406,-0.00232327659614384,-0.99888402223587,-0.0471730791032314,0.0176216997206211,-0.983406364917755,0.18055859208107,-0.0150235807523131,-0.999853432178497,-0.00821046717464924,0.990204989910126,0.11704245954752,-0.0761257484555244,-0.0174941066652536,0.0127955554053187,-0.99976509809494,0.984668970108032,0.161012306809425,-0.0670975968241692,-0.000325325760059059,-0.121511727571487,-0.992589950561523,0.994428098201752,-0.0693502426147461,-0.0793936103582382,0.0253596249967813,0.202091380953789,-0.979038298130035,-0.0564128048717976,-0.0164429694414139,-0.998272120952606,-0.148707285523415,-0.0124282781034708,-0.988803267478943,-0.0164338275790215,0.00443447241559625,-0.999855220317841,0.978790819644928,-0.187309339642525,-0.0829694345593452,0.0031029642559588,0.143346697092056,-0.989667773246765,0.982295334339142,-0.169392168521881,-0.0800137296319008,-0.162506833672524,0.104453526437283,-0.981163084506989,-0.994564116001129,-0.0168868098407984,0.102747783064842,-0.991832375526428,-0.0521015040576458,0.116421446204185,-0.992899358272552,0.0612855330109596,0.101955614984035,-0.164742738008499,0.125261709094048,-0.978350341320038,-0.204137727618217,-0.198907405138016,-0.958521604537964,-0.149403378367424,-0.00692917872220278,-0.988752067089081,-0.0556921921670437,-0.0144843757152557,-0.998342931270599,-0.129605561494827,0.0129599664360285,-0.991480946540833,-0.184872791171074,-0.142187684774399,-0.972422063350677,
- -0.977816939353943,0.186700046062469,0.0949588418006897,-0.982115209102631,0.159489989280701,0.100063554942608,-0.548121392726898,0.835860013961792,0.0300169214606285,0.00474987085908651,0.352965027093887,-0.935624480247498,-0.035513624548912,0.109581492841244,-0.99334329366684,-0.0556921921670437,-0.0144843757152557,-0.998342931270599,-0.119932353496552,0.025034636259079,-0.992466390132904,-0.129605561494827,0.0129599664360285,-0.991480946540833,-0.035513624548912,0.109581492841244,-0.99334329366684,-0.454730331897736,0.211798742413521,-0.86507910490036,-0.548121392726898,0.835860013961792,0.0300169214606285,-0.0945864766836166,-0.0354448407888412,-0.994885444641113,-0.0739574134349823,0.189939916133881,-0.979006290435791,-0.113913275301456,0.0311320908367634,-0.993002891540527,-0.0253413151949644,-0.0383307673037052,-0.998943746089935,0.0324488207697868,-0.998894393444061,-0.034016028046608,-0.0613223537802696,-0.998001754283905,-0.0152334086596966,-0.0557634271681309,-0.0146779716014862,-0.998336136341095,-0.0695830509066582,-0.0255447067320347,-0.997249066829681,-0.120187200605869,0.0247762557119131,-0.99244213104248,-0.0695830509066582,-0.0255447067320347,-0.997249066829681,-0.0967888012528419,-0.035349927842617,-0.994677007198334,-0.120187200605869,0.0247762557119131,-0.99244213104248,-0.178016439080238,-0.356377154588699,-0.917227029800415,0.534062206745148,-0.842658221721649,-0.0685923174023628,-0.154351338744164,-0.111966416239738,-0.981651365756989,0.534062206745148,-0.842658221721649,-0.0685923174023628,0.297719538211823,-0.0492559336125851,-0.953381836414337,-0.154351338744164,-0.111966416239738,-0.981651365756989,-0.0166724901646376,-0.999854266643524,-0.00366751593537629,-0.00715456996113062,-0.99985134601593,-0.0156893581151962,-0.00678717764094472,-0.999479651451111,0.0315331146121025,0.0199473947286606,-0.999674618244171,-0.0158999767154455,-0.0154007337987423,-0.999876141548157,0.00324611132964492,0.0232363343238831,-0.999722957611084,-0.00375741254538298,0.79286402463913,-0.609192788600922,-0.0158366039395332,
- 0.0401322655379772,-0.993196070194244,0.109321363270283,0.995506584644318,-0.042524129152298,-0.0846072882413864,0.0227611381560564,-0.999717056751251,-0.00690781092271209,-0.0160498414188623,-0.999871253967285,-0.000282076100120321,-0.015866931527853,-0.999866724014282,-0.0038416984025389,0.0401322655379772,-0.993196070194244,0.109321363270283,0.0226015988737345,-0.999417543411255,-0.0255687162280083,0.995506584644318,-0.042524129152298,-0.0846072882413864,0.0236952472478151,-0.999718964099884,-0.000713490240741521,-0.0156613010913134,-0.999873757362366,0.00269059487618506,0.0236669555306435,-0.999719142913818,0.0013091426808387,0.937475204467773,-0.0504664815962315,-0.344374179840088,0.00652263779193163,-0.921869516372681,-0.387445509433746,0.832876443862915,-0.538987517356873,-0.125735029578209,0.0235739313066006,-0.999721527099609,-0.00105507066473365,-0.0157376099377871,-0.999876141548157,0.000268964271526784,0.0603055506944656,-0.983271062374115,0.171876281499863,-0.00874699093401432,-0.999223053455353,-0.0384294502437115,0.0460889227688313,-0.983346462249756,0.175800308585167,-0.0156564339995384,-0.999873399734497,0.00284489523619413,0.773801207542419,0.0617209635674953,-0.630414485931396,-0.573368847370148,-0.0400194376707077,-0.818319380283356,0.777389049530029,0.113580711185932,-0.618680596351624,-0.559861302375793,-0.125136822462082,-0.819082617759705,0.77205628156662,-0.0700722858309746,-0.631679654121399,-0.53237247467041,0.197521194815636,-0.823143303394318,0.757363855838776,-0.186279028654099,-0.625859498977661,-0.555828213691711,0.140617981553078,-0.819317758083344,0.761942028999329,-0.168187871575356,-0.625425577163696,-0.6073357462883,-0.0114262010902166,-0.794363141059875,-0.682039082050323,-0.0093598086386919,-0.731255829334259,-0.579043865203857,0.00749332783743739,-0.815261960029602,-0.663528382778168,-0.354744911193848,-0.658700346946716,0.406160026788712,-0.837417840957642,-0.365739554166794,-0.678146481513977,-0.115901939570904,-0.725730061531067,0.406160026788712,-0.837417840957642,-0.365739554166794,
- -0.292784482240677,-0.226305022835732,-0.929012000560761,-0.678146481513977,-0.115901939570904,-0.725730061531067,-0.635269165039063,0.0378737673163414,-0.771361589431763,-0.630731463432312,-0.0473880954086781,-0.774552881717682,-0.639221429824829,-0.203542500734329,-0.741597235202789,-0.682277858257294,-0.00678118644282222,-0.731061518192291,-0.608260869979858,-0.014669694006443,-0.793601632118225,-0.66865861415863,0.0143747180700302,-0.743430614471436,-0.608233749866486,-0.0145741989836097,-0.79362428188324,-0.616481244564056,-0.0282304678112268,-0.786863327026367,-0.6564661860466,0.022604351863265,-0.754016697406769,-0.608260869979858,-0.014669694006443,-0.793601632118225,-0.656606674194336,0.0224186070263386,-0.753899931907654,-0.66865861415863,0.0143747180700302,-0.743430614471436,-0.616481244564056,-0.0282304678112268,-0.786863327026367,-0.636577904224396,0.0379939191043377,-0.770275950431824,-0.6564661860466,0.022604351863265,-0.754016697406769,-0.762489855289459,0.0707495659589767,0.643120288848877,-0.688325166702271,0.121803127229214,-0.715103209018707,-0.712012887001038,-0.200529277324677,-0.67292320728302,-0.704156339168549,-0.144240081310272,-0.695240020751953,-0.827931880950928,-0.297370731830597,-0.475499182939529,-0.7546746134758,0.166837871074677,0.634532392024994,-0.687916338443756,0.0905005410313606,-0.720125615596771,-0.763193547725677,-0.0249449070543051,0.64568829536438,-0.748953342437744,-0.063763216137886,0.659547686576843,-0.422731786966324,0.843909800052643,0.3303242623806,-0.433648109436035,0.830556511878967,0.349464237689972,-0.584936559200287,0.110389649868011,-0.80353182554245,-0.584936559200287,0.110389649868011,-0.80353182554245,-0.890465557575226,0.0630183219909668,-0.450665891170502,-0.422731786966324,0.843909800052643,0.3303242623806,-0.0616085082292557,0.998032033443451,0.0116811506450176,-0.787935614585876,0.0523804165422916,-0.613525688648224,-0.0226789973676205,0.999742805957794,0.000210448168218136,0.00852033775299788,-0.999401986598969,0.0335150398313999,-0.0983811989426613,-0.989940345287323,-0.101683057844639,
- 0.042344257235527,-0.997992217540741,0.0471009202301502,-0.0802972167730331,-0.989741146564484,-0.118172854185104,0.0140327084809542,-0.999214351177216,0.0370644852519035,0.0392910838127136,-0.999226629734039,-0.00160687509924173,0.405410557985306,-0.878456354141235,0.25289711356163,0.639441549777985,-0.520114839076996,-0.566211104393005,0.607675790786743,-0.463269025087357,-0.645067512989044,0.0369049645960331,-0.999313533306122,-0.00324555486440659,0.0113719310611486,-0.999310255050659,0.0353513471782207,0.0108400071039796,-0.999485373497009,0.030194703489542,0.620120346546173,-0.425689488649368,-0.658968269824982,-0.115548647940159,-0.987473368644714,-0.107446804642677,-0.200330018997192,-0.957214951515198,-0.208823904395103,0.0147931259125471,-0.999325573444366,0.0336091741919518,0.0457234568893909,-0.998951017856598,-0.00254103587940335,0.0414166264235973,-0.999142050743103,-0.000146943479194306,0.0473748408257961,-0.998876631259918,-0.00114195689093322,-0.00886346120387316,-0.999960541725159,-0.000637412536889315,0.467931509017944,-0.850224614143372,0.241160199046135,0.00836892612278461,-0.999561369419098,-0.0284090377390385,0.0414321012794971,-0.999122262001038,-0.00617584213614464,0.0103640845045447,-0.999502658843994,0.0297835879027843,0.181075915694237,0.0188691709190607,-0.983288109302521,-0.962044537067413,-0.0928099676966667,-0.256625533103943,0.195575669407845,0.056341715157032,-0.97906893491745,-0.957243800163269,-0.127039417624474,-0.259894847869873,0.180032446980476,-0.0672293826937675,-0.981360554695129,-0.940078914165497,0.197879374027252,-0.277660936117172,-0.978672564029694,-0.0161643624305725,-0.204789504408836,-0.993517935276031,-0.0129692992195487,-0.112934067845345,-0.9693244099617,0.00423403969034553,-0.245748475193977,0.171629965305328,-0.192289888858795,-0.96621310710907,-0.955560743808746,0.140420243144035,-0.259202688932419,0.177186608314514,-0.165479183197021,-0.970165729522705,-0.990238666534424,0.098862387239933,-0.0982525497674942,-0.157720476388931,-0.0160077549517155,0.987354040145874,
- -0.142991259694099,-0.0581659525632858,0.98801326751709,-0.959046304225922,-0.0621823035180569,-0.276339620351791,-0.0330210961401463,-0.99943870306015,0.00564716383814812,-0.0302940364927053,-0.998165667057037,0.0524192564189434,-0.158671513199806,0.0652319714426994,0.985174179077148,-0.988147377967834,0.120371863245964,-0.0952650383114815,-0.978277146816254,-0.201360777020454,-0.0492735542356968,-0.993536114692688,-0.0122897289693356,-0.112849123775959,-0.978793025016785,-0.0182058271020651,-0.204041108489037,-0.991508305072784,0.00975731667131186,-0.129677519202232,-0.986880242824554,-0.144775405526161,-0.071466788649559,-0.162526175379753,0.190938338637352,0.968053638935089,-0.158413216471672,0.163628250360489,0.973720192909241,-0.93128377199173,-0.358498454093933,-0.0647255405783653,0.0717384591698647,-0.841065764427185,-0.536154985427856,-0.987461030483246,-0.115536980330944,-0.107573010027409,-0.980707764625549,-0.0292812064290047,-0.193274170160294,-0.991508305072784,0.00975731667131186,-0.129677519202232,-0.978793025016785,-0.0182058271020651,-0.204041108489037,0.0717384591698647,-0.841065764427185,-0.536154985427856,-0.833866715431213,-0.0807588845491409,-0.54602587223053,-0.987461030483246,-0.115536980330944,-0.107573010027409,-0.991520583629608,0.00954205729067326,-0.129598811268806,-0.980709075927734,-0.0292892064899206,-0.193266376852989,-0.989581644535065,0.0216302126646042,-0.142338752746582,-0.984745383262634,-0.0535310767591,-0.165562614798546,-0.989581644535065,0.0216302126646042,-0.142338752746582,-0.980709075927734,-0.0292892064899206,-0.193266376852989,-0.118355721235275,0.839848577976227,0.529760658740997,-0.904612004756927,0.348759293556213,-0.245038881897926,-0.968063414096832,0.108770608901978,-0.22588087618351,-0.989855349063873,0.019915048032999,-0.140676096081734,-0.984628200531006,-0.0535856559872627,-0.166241005063057,-0.983874976634979,0.0408396273851395,-0.174133151769638,-0.968561112880707,0.072691410779953,0.237919166684151,-0.118355721235275,0.839848577976227,0.529760658740997,-0.968063414096832,0.108770608901978,-0.22588087618351,
- -0.0374268628656864,0.999173283576965,-0.0158756263554096,-0.997742772102356,0.052064124494791,-0.0424115099012852,-0.0189072843641043,0.998362600803375,-0.0539872385561466,0.962182104587555,-0.0833439603447914,0.259344518184662,0.329984039068222,0.0148195335641503,-0.943870186805725,0.314645618200302,0.0593416392803192,-0.947352588176727,0.331094056367874,-0.0731451809406281,-0.940758466720581,0.959936082363129,-0.118096373975277,0.254118025302887,0.953228831291199,0.205383196473122,0.221748903393745,0.958074510097504,0.147574082016945,0.245591416954994,0.331405758857727,-0.188889354467392,-0.924386858940125,0.32928654551506,-0.171110033988953,-0.928596615791321,0.918427586555481,-0.00210527796298265,0.39558357000351,0.952745735645294,-0.00729184038937092,0.303681463003159,0.962111175060272,0.0145482486113906,0.272269010543823,0.0515451692044735,-0.998265981674194,-0.0284307189285755,0.986428737640381,-0.0456771031022072,0.157708346843719,0.0228577833622694,-0.999722540378571,0.00568659091368318,-0.353774040937424,-0.0137876383960247,0.935229301452637,0.907299339771271,0.109000585973263,0.406111836433411,-0.367411196231842,-0.0558625608682632,0.928379416465759,0.996590793132782,-0.0581556744873524,-0.0585214830935001,0.209270894527435,-0.841717302799225,-0.497712463140488,0.911346733570099,-0.107488192617893,0.397358328104019,0.209270894527435,-0.841717302799225,-0.497712463140488,0.84449428319931,-0.35287156701088,0.40287846326828,0.911346733570099,-0.107488192617893,0.397358328104019,0.903661251068115,0.131307885050774,0.407620579004288,-0.352358847856522,0.0689089670777321,0.933324575424194,0.875554800033569,-0.192464202642441,0.443126767873764,0.952473402023315,-0.00956195313483477,0.304471641778946,0.918392658233643,-0.00138521916233003,0.3956678211689,0.925183415412903,0.0197180546820164,0.379007697105408,0.729343831539154,-0.285009443759918,0.621954441070557,0.893182158470154,-0.137008190155029,0.428315818309784,-0.347642183303833,0.165040254592896,0.922987878322601,0.92905467748642,0.0320956967771053,0.368547588586807,
- 0.952473402023315,-0.00956195313483477,0.304471641778946,0.925183415412903,0.0197180546820164,0.379007697105408,0.947507202625275,-0.0208530370146036,0.319053679704666,0.952463388442993,-0.00964448414742947,0.304500341415405,0.928916454315186,0.0316817164421082,0.36893156170845,0.947507202625275,-0.0208530370146036,0.319053679704666,0.928916454315186,0.0316817164421082,0.36893156170845,0.937237441539764,-0.0325233153998852,0.347171753644943,-0.190707296133041,0.830863058567047,0.522778451442719,-0.174821779131889,0.837249040603638,0.518122971057892,0.951095521450043,0.118795439600945,0.2851402759552,0.93687105178833,-0.0324483178555965,0.348166227340698,0.934127032756805,0.0479946658015251,0.35369935631752,0.92515629529953,0.201140359044075,0.321913987398148,0.718972504138947,0.222184047102928,0.658568799495697,0.951095521450043,0.118795439600945,0.2851402759552,-0.174821779131889,0.837249040603638,0.518122971057892,-0.606970012187958,-0.771233260631561,-0.191798567771912,-0.569829046726227,-0.799160122871399,-0.191410973668098,-0.563835859298706,-0.807410359382629,-0.173717245459557,-0.562203824520111,-0.807559490203857,-0.178254052996635,-0.607909083366394,-0.765549004077911,-0.210668712854385,-0.601728081703186,-0.772760510444641,-0.201902732253075,-0.556977987289429,-0.812802314758301,-0.170668914914131,-0.608067631721497,-0.765496373176575,-0.210402131080627,-0.56356018781662,-0.807437062263489,-0.17448653280735,-0.529530107975006,-0.781591534614563,-0.329715818166733,-0.637778580188751,-0.645592749118805,-0.420057743787766,-0.521366357803345,-0.78336364030838,-0.338405877351761,-0.942503988742828,-0.0544137693941593,0.329735279083252,-0.945156455039978,-0.0435744114220142,0.3236985206604,-0.95408171415329,-0.0292308535426855,0.298116773366928,-0.95348995923996,-0.0304633658379316,0.299881398677826,-0.944165945053101,-0.0418376289308071,0.326803058385849,-0.943830490112305,0.0171389821916819,0.329985290765762,-0.867326617240906,0.0274667963385582,0.496981024742126,-0.873685956001282,-0.127795800566673,0.469405055046082,
- -0.872060418128967,-0.0934394672513008,0.480395346879959,-0.942116975784302,0.0136071909219027,0.335008502006531,-0.951925158500671,-0.0314280427992344,0.304714560508728,-0.951767086982727,-0.0339960567653179,0.304932177066803,-0.887721836566925,-0.0735969617962837,0.454459458589554,-0.892958104610443,-0.107556402683258,0.437101453542709,-0.887246668338776,-0.0708861872553825,0.455816298723221,-0.941286444664001,-0.0539510622620583,0.333270370960236,-0.931136786937714,-0.00740420538932085,0.36459493637085,-0.927976489067078,0.000813712307717651,0.372638136148453,-0.629895269870758,-0.77476304769516,0.0545378774404526,-0.287118434906006,-0.423137903213501,0.859370291233063,0.114859774708748,-0.928349614143372,0.353517025709152,-0.038141343742609,0.591140687465668,-0.805666267871857,-0.0487929619848728,0.480384409427643,-0.875699758529663,0.565282642841339,0.824783027172089,-0.0137305818498135,-0.931125044822693,0.00749770971015096,0.364623010158539,-0.965540528297424,-5.98457954765763e-005,0.260252714157104,-0.94456547498703,-0.047314714640379,0.324896037578583,-0.964953899383545,0.00572223449125886,0.262357145547867,-0.909153819084167,-0.0351283736526966,0.414976358413696,-0.924956321716309,-0.0438224375247955,0.377538651227951,-0.974283754825592,0.0313420072197914,0.223134115338326,-0.976135313510895,0.0196645949035883,0.216271460056305,-0.975326299667358,0.0249002296477556,0.219359517097473,-0.976411163806915,0.0205420628190041,0.214940115809441,-0.974569618701935,0.0214346256107092,0.223057851195335,-0.975577235221863,0.0257215965539217,0.218145579099655,-0.944074034690857,0.144109129905701,0.296575039625168,-0.940849781036377,0.0851828902959824,0.327941477298737,-0.949455738067627,-0.0437851436436176,0.31083220243454,-0.981674432754517,0.0391913801431656,0.186492338776588,-0.985476553440094,0.088579498231411,0.144877821207047,-0.981430351734161,0.0166013594716787,0.191099241375923,-0.986820220947266,0.0840893536806107,0.138256400823593,-0.982821583747864,0.0439019910991192,0.179260492324829,-0.980677127838135,0.0560764521360397,0.187424093484879,
- -0.982265174388886,0.0405291765928268,0.183064803481102,-0.98226124048233,0.0415632091462612,0.182853385806084,-0.979748547077179,0.0541425831615925,0.192772969603539,-0.984220564365387,0.0501090809702873,0.169702634215355,-0.983893811702728,0.0488885678350925,0.171938568353653,-0.982005059719086,0.0622182078659534,0.17831152677536,-0.980222284793854,0.0312017537653446,0.195424601435661,-0.977668225765228,0.0447434782981873,0.205336019396782,-0.967662632465363,0.0464478023350239,0.247934699058533,-0.975767552852631,0.0369805060327053,0.215662181377411,-0.96221125125885,0.0290581621229649,0.270749270915985,-0.969388961791992,0.036554291844368,0.242793902754784,0.00421809963881969,0.667801737785339,0.744327306747437,-0.909462690353394,-0.0972346067428589,0.404256224632263,-0.93198573589325,-0.0902394503355026,0.351083308458328,-0.683408915996552,-0.345833599567413,0.642924070358276,-0.233861848711967,0.824601650238037,0.515112340450287,0.0100700873881578,0.609795451164246,0.792494833469391,-0.697002649307251,0.397098928689957,0.597075998783112,-0.932300090789795,0.299765884876251,-0.202378273010254,-0.0678340718150139,0.980162978172302,0.186223700642586,-0.98684960603714,0.092911995947361,0.132270261645317,-0.0161384604871273,0.838091313838959,0.545291244983673,-0.0242386683821678,0.850617706775665,0.525225877761841,-0.0250782556831837,0.89677220582962,0.441781312227249,0.0664903894066811,0.897924065589905,0.435099303722382,-0.0356347672641277,0.894449412822723,0.445747047662735,-0.0241557229310274,0.891206920146942,0.452953368425369,0.109092250466347,0.890681624412537,0.441344738006592,0.0672911927103996,0.892350316047668,0.446298986673355,0.109702572226524,0.887079238891602,0.448392689228058,-0.0235678479075432,0.88759982585907,0.460012018680573,0.014810404740274,0.889137923717499,0.457399636507034,-0.962470352649689,0.0270543973892927,0.270035028457642,-0.971200108528137,0.0288941767066717,0.236506775021553,-0.970229208469391,0.031461339443922,0.240136429667473,-0.925188422203064,-0.0482776686549187,0.376424878835678,
- -0.968983471393585,0.040364071726799,0.24380686879158,-0.965811192989349,-0.00285776797682047,0.259230852127075,-0.934138953685761,-0.109711952507496,0.33962881565094,-0.973917901515961,0.00614985451102257,0.226817324757576,-0.975568234920502,0.00269952695816755,0.219679996371269,-0.970674157142639,0.0317044667899609,0.238299235701561,-0.925007879734039,-0.0447813831269741,0.377299636602402,-0.91834944486618,-0.0750410556793213,0.388591170310974,-0.908079326152802,-0.0293467231094837,0.417768776416779,-0.924228310585022,-0.0317335017025471,0.380519479513168,-0.959653377532959,0.146066069602966,0.240270897746086,-0.97507244348526,0.00599058344960213,0.221805915236473,-0.994470655918121,-0.0231094900518656,0.10244082659483,-0.933691084384918,-0.107143968343735,0.341673970222473,-0.0624615699052811,-0.922934234142303,-0.379856824874878,-0.715922832489014,-0.655243635177612,-0.241061002016068,-0.94365394115448,-0.0673201903700829,-0.324014544487,-0.985433161258698,-0.0618004351854324,-0.158437296748161,-0.794954061508179,-0.588861584663391,-0.145911082625389,-0.939272880554199,-0.163663521409035,0.301630169153214,-0.991891741752625,-0.0365732796490192,0.121709436178207,-0.982092320919037,0.0429742261767387,0.18343360722065,-0.988655686378479,-0.0477651618421078,0.142402395606041,-0.99280309677124,-0.032137606292963,0.115365639328957,-0.979188680648804,-0.0254639014601707,0.20134824514389,-0.983141541481018,0.0491359643638134,0.176120266318321,-0.987141668796539,-0.0471941605210304,0.152722239494324,-0.981469213962555,0.0395442321896553,0.187495246529579,-0.988381803035736,0.0315427035093308,0.148682549595833,-0.978563129901886,0.0252084489911795,0.204398483037949,-0.971799433231354,-0.0118293361738324,0.235512167215347,-0.97183746099472,0.0357947796583176,0.232917860150337,-0.918650925159454,-0.0765975415706635,0.387573897838593,-0.934301733970642,-0.0016049750847742,0.356479853391647,-0.970981776714325,0.0300680864602327,0.237255826592445,-0.960458517074585,-0.0366525650024414,0.276000112295151,-0.971366286277771,0.0279937982559204,0.235931977629662,
- -0.947426915168762,0.0248220954090357,0.319008022546768,-0.9573814868927,-0.00897655729204416,0.288686960935593,-0.964159250259399,-0.0261784289032221,0.264029532670975,-0.951201498508453,0.0333356559276581,0.306764513254166,-0.959483444690704,0.146533504128456,0.240664526820183,-0.889044344425201,-0.0718461275100708,0.452148467302322,-0.908604145050049,-0.0314177423715591,0.416475057601929,-0.948666632175446,-0.00747136306017637,0.31618943810463,-0.939130663871765,0.0076308217830956,0.343475729227066,-0.947989583015442,-0.0273342132568359,0.317125588655472,-0.40067133307457,0.0441319905221462,0.91515839099884,-0.361049860715866,0.677474796772003,0.64083606004715,0.283427506685257,0.783219814300537,0.553385555744171,-0.876897871494293,-0.0193964373320341,0.480285257101059,-0.866235613822937,-0.100442074239254,0.489435613155365,-0.866967499256134,-0.104866221547127,0.487206816673279,-0.894597887992859,-0.0664608776569366,0.441902190446854,-0.89209246635437,0.0108493957668543,0.451722592115402,-0.891016185283661,-0.0207960661500692,0.453495025634766,-0.885460793972015,-0.0765614807605743,0.458364188671112,-0.954773366451263,0.159071698784828,0.251205563545227,-0.877320885658264,-0.0451053120195866,0.477779805660248,-0.87582528591156,-0.0471074543893337,0.480323761701584,-0.884991645812988,-0.0804640427231789,0.458601534366608,-0.884014964103699,-0.0784382745623589,0.46083077788353,-0.550870358943939,0.59255313873291,0.587726652622223,-0.74018931388855,0.0253783743828535,0.671919465065002,-0.971096992492676,0.181489184498787,0.155023723840714,-0.889956593513489,0.0111138252541423,0.455909818410873,-0.892323911190033,-0.0698469504714012,0.445959061384201,-0.883238554000854,-0.0370261557400227,0.467460095882416,-0.96493798494339,0.00833817292004824,-0.262345910072327,-0.963547945022583,0.0167311709374189,-0.267012119293213,-0.94985419511795,0.00937808305025101,-0.312552481889725,-0.957442581653595,0.0604843646287918,-0.282215088605881,-0.949235260486603,0.0106598669663072,-0.314386367797852,-0.962857902050018,0.0152796357870102,-0.269575923681259,
- -0.990443527698517,-0.0213428474962711,-0.136257648468018,-0.99141788482666,-0.0813596621155739,-0.102328583598137,-0.992901980876923,-0.0667705535888672,-0.0984245613217354,-0.97196638584137,-0.199897468090057,-0.123784244060516,-0.993898689746857,-0.0932588875293732,-0.0588914416730404,-0.99917858839035,-0.0292769279330969,-0.0280222184956074,-0.979529738426209,-0.132648929953575,-0.151413306593895,-0.992688179016113,-0.0642223358154297,-0.102204129099846,-0.970575988292694,-0.170304894447327,-0.17023129761219,-0.959916889667511,0.0552070699632168,-0.274794012308121,-0.954902291297913,0.0275194868445396,-0.295642077922821,-0.95175975561142,0.00536284502595663,-0.30679726600647,-0.988355576992035,-0.0327112711966038,-0.148604214191437,-0.975627779960632,-0.0974127054214478,-0.196624472737312,-0.982547998428345,-0.0675978139042854,-0.173291623592377,-0.93724536895752,0.0653423890471458,-0.342493087053299,-0.926177978515625,0.0175616107881069,-0.376677572727203,-0.931715667247772,0.0433372035622597,-0.360593646764755,-0.931433260440826,0.0438173078000546,-0.361264675855637,-0.925852417945862,0.0180978011339903,-0.377451956272125,-0.926420867443085,0.00362455728463829,-0.376472413539886,-0.942502975463867,0.108523845672607,-0.316086649894714,-0.954685270786285,0.0539713650941849,-0.292682677507401,-0.9522345662117,-0.0319373048841953,-0.303692787885666,-0.936435401439667,0.0669016242027283,-0.344402313232422,-0.930872023105621,0.0411813408136368,-0.363017052412033,-0.925855338573456,0.0180928260087967,-0.377444714307785,-0.976659536361694,-0.104439750313759,-0.187692686915398,-0.975926160812378,-0.00836392492055893,-0.217940717935562,-0.983642876148224,-0.0746820792555809,-0.163918480277061,-0.931103527545929,0.040733627974987,-0.362473726272583,-0.93666660785675,0.0664578452706337,-0.343859076499939,-0.975280582904816,-0.0158531982451677,-0.220400616526604,-0.974066555500031,-0.0283571165055037,-0.224477753043175,-0.978180468082428,-0.116906456649303,-0.171743616461754,-0.986093044281006,-0.051246352493763,-0.158096089959145,
- -0.912813186645508,0.408319979906082,0.00684857089072466,-0.529648005962372,0.423162311315537,-0.735123574733734,-0.973694384098053,0.0976962447166443,-0.205851599574089,-0.96700382232666,0.0428316704928875,-0.251135557889938,-0.974497735500336,-0.0241127423942089,-0.223098024725914,-0.986523687839508,-0.0469880737364292,-0.156726270914078,-0.901177108287811,0.0550293959677219,-0.429943710565567,-0.909004390239716,0.0796839371323586,-0.409098386764526,-0.906865835189819,0.0781728029251099,-0.414105832576752,-0.904791712760925,0.0811609625816345,-0.418048858642578,-0.90533846616745,0.00542291393503547,-0.424656182527542,-0.89926815032959,0.0576349198818207,-0.433583945035934,-0.926215767860413,0.0339897163212299,-0.375458538532257,-0.926680266857147,0.0473105311393738,-0.372861385345459,-0.895321726799011,0.126244455575943,-0.427155196666718,-0.910428464412689,0.406316131353378,0.0776354596018791,-0.652048170566559,0.31114000082016,-0.691393554210663,-0.162251695990562,0.980145573616028,0.113969400525093,-0.885785818099976,0.106883622705936,-0.451618611812592,-0.326109409332275,0.837660789489746,0.438152104616165,-0.320123702287674,0.85064560174942,0.41704061627388,-0.192221820354462,0.958687365055084,0.209688603878021,-0.843851268291473,0.155732840299606,-0.513480603694916,-0.841750383377075,0.170266568660736,-0.512314200401306,-0.273761332035065,0.896791100502014,0.347592353820801,-0.193690776824951,0.897941470146179,0.395202428102493,-0.284093618392944,0.894442558288574,0.345345556735992,-0.275379300117493,0.895215392112732,0.350365042686462,-0.159563109278679,0.894722104072571,0.417147427797318,-0.195373207330704,0.896323382854462,0.398037254810333,-0.157890111207962,0.896366477012634,0.41424372792244,-0.273550301790237,0.896995544433594,0.347230792045593,-0.239086180925369,0.89871734380722,0.367620587348938,-0.97056919336319,-0.24043969810009,0.0135714560747147,-0.690787136554718,0.717830359935761,0.0867912620306015,-0.4766985476017,0.511437296867371,0.714975833892822,-0.937316596508026,0.0283097121864557,-0.347327142953873,
- -0.975701808929443,-0.0110483523458242,-0.218823954463005,-0.927101254463196,0.0480109453201294,-0.371723294258118,-0.926482439041138,0.0436161942780018,-0.373801946640015,-0.975434422492981,-0.0141314538195729,-0.21983627974987,-0.929717659950256,0.0415228009223938,-0.365924805402756,-0.951449751853943,-0.0823565572500229,-0.296581894159317,-0.920891523361206,0.00929967314004898,-0.389707982540131,-0.920500040054321,0.00320113427005708,-0.390729337930679,-0.976806640625,0.00325051741674542,-0.214099168777466,-0.972693204879761,-0.00456952676177025,-0.232049733400345,-0.936282098293304,0.0758906900882721,-0.342952489852905,-0.971655368804932,-0.0492667220532894,-0.231211692094803,-0.96362316608429,0.0242217145860195,-0.266164779663086,-0.971084773540497,-0.0141171533614397,-0.238317221403122,-0.951402366161346,-0.0825034976005554,-0.296692997217178,-0.920387864112854,0.00278083677403629,-0.390996664762497,-0.918126463890076,0.0603058971464634,-0.391672343015671,-0.972837150096893,-0.00367553252726793,-0.231461316347122,-0.952712178230286,-0.0135340541601181,-0.303572952747345,-0.936424493789673,0.0767436996102333,-0.34237352013588,-0.916345059871674,0.0634571239352226,-0.395328909158707,-0.883142232894897,-0.0442759580910206,-0.467011421918869,-0.946704149246216,-0.0965684056282043,-0.307288140058517,-0.953795254230499,-0.243890807032585,-0.175476714968681,0.0171762239187956,-0.995499551296234,-0.0931964814662933,-0.588156640529633,-0.546404600143433,-0.596249759197235,0.166468784213066,-0.922139763832092,-0.349208295345306,-0.928333103656769,-0.13202577829361,-0.347515285015106,-0.58914041519165,-0.0709575414657593,-0.80490905046463,-0.884060204029083,-0.0457327328622341,-0.465130418539047,-0.917322754859924,0.0617332272231579,-0.393329650163651,-0.90159022808075,-0.0517334565520287,-0.429486572742462,-0.895315229892731,-0.0524953231215477,-0.442328989505768,-0.915513813495636,0.0649127215147018,-0.397015124559402,-0.894419550895691,0.0246754270046949,-0.446547597646713,-0.92921507358551,0.039582148194313,-0.367413401603699,
- -0.929231405258179,0.0118194445967674,-0.36930924654007,-0.928534865379334,0.0292974207550287,-0.37008735537529,-0.953054249286652,-0.014447052963078,-0.302454739809036,-0.972296714782715,-0.00699641183018684,-0.233645752072334,-0.966326534748077,0.0589342638850212,-0.250479102134705,-0.965877771377563,0.0599846802651882,-0.251956701278687,-0.961625933647156,0.0173512846231461,-0.27381506562233,-0.952558994293213,-0.0131271285936236,-0.304071098566055,-0.963197112083435,0.022074518725276,-0.267888098955154,-0.99369603395462,-0.0437774248421192,-0.103207349777222,-0.970493137836456,-0.0174482930451632,-0.24049673974514,-0.960814654827118,0.0171914156526327,-0.276658058166504,-0.964563250541687,0.0630153119564056,-0.256216436624527,-0.960917115211487,0.0118096861988306,-0.276584208011627,-0.847022116184235,0.0226024556905031,0.531076908111572,-0.689002811908722,0.637748301029205,0.344314157962799,-0.0834985226392746,0.783701062202454,0.615500330924988,-0.968959510326386,0.0131695717573166,-0.246868535876274,-0.972508907318115,0.043540682643652,-0.228758856654167,-0.964177906513214,-0.00877067167311907,-0.265111327171326,-0.984215080738068,-0.0964228585362434,-0.148402512073517,-0.990573704242706,-0.0153026450425386,-0.136123225092888,-0.990428626537323,0.0180083066225052,-0.136846214532852,-0.993177175521851,-0.0392532385885715,-0.10981035977602,-0.965760290622711,0.0356198139488697,-0.256979614496231,-0.991477727890015,-0.0527987256646156,-0.119097463786602,-0.991592466831207,-0.0537347793579102,-0.117716334760189,-0.98427551984787,-0.0969854220747948,-0.147633865475655,-0.993292212486267,-0.040210235863924,-0.108414523303509,-0.816685020923615,0.534576952457428,0.217378199100494,-0.990454435348511,-0.00020140600099694,0.137840211391449,-0.910299003124237,0.138653099536896,-0.39003986120224,-0.991218447685242,-0.015046052634716,-0.131375804543495,-0.984597444534302,-0.100141927599907,-0.143316000699997,-0.991940319538116,-0.0567263625562191,-0.113298520445824,-0.998393535614014,0.0484906658530235,-0.0293120723217726,
- -0.998923540115356,-0.0063682240433991,-0.0459506437182426,-0.997391402721405,-0.0282865017652512,-0.0664099156856537,-0.997872173786163,-0.0301347952336073,-0.0578189417719841,-0.998895883560181,0.0433020368218422,-0.018225010484457,-0.997867047786713,-0.0335758291184902,-0.0559824667870998,-0.713622629642487,0.317936778068542,-0.624226689338684,-0.0224829073995352,0.963586330413818,-0.266450583934784,-0.019974559545517,0.948221862316132,-0.31698003411293,-0.996866166591644,-0.0189187657088041,-0.076811209321022,-0.998395144939423,0.028674203902483,-0.0488357543945313,-0.997810900211334,0.0531710349023342,-0.0393226929008961,-0.773529469966888,-0.3208909034729,0.546517372131348,-0.186653271317482,0.333713978528976,0.924010574817657,-0.749942123889923,-0.25961297750473,0.608430743217468,-0.998378932476044,0.0288184806704521,-0.0490814745426178,-0.996847569942474,-0.0187521353363991,-0.0770929679274559,-0.997478723526001,0.0289441235363483,-0.0647955760359764,-0.968424022197723,-0.198262602090836,-0.15115162730217,-0.607847213745117,0.372662305831909,-0.701173722743988,-0.848823189735413,-0.284848392009735,-0.445376932621002,-0.998532652854919,0.0274192783981562,-0.0466984584927559,-0.997471749782562,0.0304712112993002,-0.0641997456550598,-0.999713659286499,0.0128381159156561,-0.0201941579580307,-0.159688085317612,-0.162335112690926,0.97372841835022,-0.742843151092529,-0.338969439268112,0.577307343482971,-0.991775751113892,0.125364392995834,0.0257808156311512,-0.999719381332397,0.0113086579367518,-0.0208164546638727,-0.997478306293488,0.0290499720722437,-0.0647542849183083,-0.98313981294632,0.104294300079346,-0.150196552276611,-0.906248271465302,0.354012250900269,0.231061518192291,-0.158176437020302,-0.177470415830612,0.971331298351288,-0.982804596424103,0.178411319851875,0.0475872233510017,-0.999722003936768,0.0076883090659976,-0.0222892072051764,-0.983099102973938,0.102544210851192,-0.151660442352295,-0.999774932861328,-0.00260393205098808,-0.0210542008280754,-0.415962010622025,-0.447254776954651,0.791794657707214,
- -0.0625969246029854,-0.747399985790253,0.661418855190277,-0.783451974391937,-0.501468658447266,-0.367058902978897,-0.983017683029175,0.0995494648814201,-0.154162645339966,-0.993658006191254,-0.0698764100670815,-0.0880968868732452,-0.999694049358368,-0.00658115744590759,-0.0238443519920111,-0.807040333747864,0.0675776824355125,0.58661687374115,-0.682289659976959,0.632185876369476,0.367181122303009,-0.0222368221729994,0.70602023601532,0.707842469215393,-0.805917084217072,0.534358680248261,0.254869490861893,-0.955388903617859,0.0640108287334442,0.288330852985382,-0.997190594673157,0.0484231412410736,-0.0571501739323139,-0.993373811244965,-0.0672821328043938,-0.0931751132011414,-0.983266174793243,0.113044321537018,-0.142858698964119,-0.998485267162323,0.0387538820505142,-0.039057731628418,-0.999102532863617,-0.0175550635904074,-0.0385479815304279,-0.998985469341278,0.0337895639240742,-0.0297743324190378,-0.997708678245544,0.0533539354801178,-0.0416021794080734,-0.998498380184174,0.0386356823146343,-0.0388366617262363,-0.998888432979584,-0.0177927333861589,-0.0436500087380409,-0.993382930755615,-0.0673609972000122,-0.0930208489298821,0.0207242891192436,-0.745735466480255,-0.665919721126556,-0.92712926864624,0.0782061517238617,-0.366490334272385,-0.743108749389648,-0.043250747025013,-0.667771518230438,-0.901074945926666,-0.0524235479533672,-0.430483102798462,-0.880074918270111,0.0159434899687767,-0.474567115306854,-0.905436635017395,0.0123605392873287,-0.424301713705063,-0.880128800868988,0.0196740739047527,-0.474327355623245,-0.902575254440308,-0.0523587316274643,-0.427336454391479,-0.897817492485046,0.0960428044199944,-0.429766863584518,-0.902796506881714,-0.052349079400301,-0.426870107650757,-0.902580261230469,0.0794722214341164,-0.423122942447662,-0.898056864738464,0.096063494682312,-0.429261744022369,-0.931759655475616,0.0736558735370636,-0.355526298284531,-0.931958913803101,-0.0508245229721069,-0.358983993530273,-0.931724965572357,-0.0138221411034465,-0.362901568412781,-0.932235896587372,-0.0139252943918109,-0.361583352088928,
- -0.951758921146393,0.00497676245868206,-0.30680638551712,-0.932309329509735,0.0735313519835472,-0.354107946157455,-0.951497793197632,-0.0181143078953028,-0.307121872901917,-0.923241674900055,-0.0513391718268394,-0.380774348974228,-0.490590631961823,-0.762402594089508,-0.421975284814835,-0.951581001281738,0.0182088427245617,-0.306858390569687,-0.931356728076935,-0.0137480050325394,-0.363848358392715,-0.530682981014252,-0.192008078098297,-0.825535237789154,0.918928980827332,-0.343007862567902,-0.194718107581139,0.902080237865448,-0.384412527084351,-0.196158796548843,0.227903679013252,-0.968658745288849,0.0987933725118637,0.713240683078766,-0.0263596996665001,-0.700423359870911,0.718222796916962,-0.0122621254995465,-0.695705115795136,0.722170948982239,-0.00793738104403019,-0.691669106483459,0.709199249744415,-0.00228430493734777,-0.705004394054413,0.702579319477081,-0.0159448385238647,-0.711426794528961,0.668467223644257,-0.0732596814632416,-0.740124702453613,0.629039824008942,-0.0323997847735882,-0.77669757604599,0.658369660377502,0.0250138100236654,-0.752278983592987,0.610965430736542,-0.063542976975441,-0.789102971553802,0.544709086418152,0.00258938758634031,-0.838621079921722,0.561282634735107,0.0321043506264687,-0.82700127363205,0.540401220321655,-0.0042953216470778,-0.841396510601044,0.745688378810883,0.0350862257182598,-0.665370523929596,0.709606051445007,-0.00272971321828663,-0.704593360424042,0.669162154197693,-0.0740062594413757,-0.739422142505646,0.578391075134277,0.787765085697174,-0.211872532963753,0.704856991767883,0.707720041275024,-0.0480532310903072,0.643389225006104,0.0650108829140663,-0.762773811817169,0.573504865169525,0.0209277160465717,-0.818934798240662,0.555827975273132,-0.00612812396138906,-0.831274747848511,0.547296524047852,-0.0206560585647821,-0.836683869361877,0.524124205112457,0.0215104892849922,-0.85137015581131,0.517332851886749,0.00592075334861875,-0.855763792991638,0.522601544857025,0.0196082070469856,-0.852351546287537,0.580783605575562,0.00856052525341511,-0.814013004302979,0.72534966468811,-0.061813723295927,-0.685599684715271,
- 0.662360072135925,-0.0667406395077705,-0.746206939220428,0.571802616119385,-0.0187032055109739,-0.820178031921387,0.578396916389465,0.0164015796035528,-0.815590560436249,0.552275002002716,-0.0251625888049603,-0.833282291889191,0.375877678394318,0.120770499110222,-0.918765842914581,0.404233127832413,0.109123140573502,-0.908123195171356,0.41774308681488,0.898773729801178,0.133028119802475,0.439732879400253,0.886570930480957,0.143621772527695,0.335810929536819,0.154925525188446,-0.929101228713989,0.424750179052353,0.895749568939209,0.131225809454918,0.420998275279999,0.897020220756531,0.134592816233635,0.42546671628952,0.895352065563202,0.131616055965424,0.381320983171463,0.898169040679932,0.218830272555351,0.367014199495316,0.893953621387482,0.25719165802002,0.425659596920013,0.894477546215057,0.136835813522339,0.386037319898605,0.895605325698853,0.221057116985321,0.421661376953125,0.89666074514389,0.134911775588989,0.363021224737167,0.896139442920685,0.255244344472885,0.408462971448898,0.89803022146225,0.163400411605835,0.802871823310852,-0.312556833028793,-0.507646560668945,0.731438040733337,0.616858243942261,0.290661871433258,0.592185258865356,0.788386404514313,-0.166623800992966,0.633061051368713,-0.0326202511787415,-0.773414254188538,0.577733278274536,-0.000870450807269663,-0.816225171089172,0.541680812835693,-0.015604673884809,-0.84043937921524,0.554680466651917,0.00769820157438517,-0.832027852535248,0.577741742134094,-0.000844629481434822,-0.816219210624695,0.632919788360596,-0.0330124720931053,-0.773513376712799,0.569626867771149,0.0347126349806786,-0.821170032024384,0.723298251628876,-0.069947250187397,-0.686984002590179,0.57759952545166,-0.00127992441412061,-0.816319286823273,0.535297453403473,-0.0258521884679794,-0.844267904758453,0.621609508991241,-0.0634026750922203,-0.780757129192352,0.64506059885025,-0.143291443586349,-0.750576019287109,0.717271506786346,-0.0927112475037575,-0.690598547458649,0.553615033626556,0.00581234646961093,-0.832752406597137,0.653530716896057,-0.0821212232112885,-0.752431869506836,
- 0.715709567070007,0.0385100319981575,-0.697335481643677,0.562728404998779,0.211844891309738,-0.799035966396332,0.743728935718536,0.0239157192409039,-0.668053448200226,0.456239014863968,-0.0679642781615257,-0.887258052825928,0.535297453403473,-0.0258521884679794,-0.844267904758453,0.64506059885025,-0.143291443586349,-0.750576019287109,0.046051599085331,-0.102520920336246,-0.993664383888245,0.0361641049385071,-0.675431966781616,-0.736535012722015,-0.333113640546799,-0.922291159629822,-0.195995837450027,0.188694968819618,-0.587306261062622,-0.787061333656311,0.290585309267044,-0.098201222717762,-0.951796591281891,0.641487419605255,-0.229386419057846,-0.732035338878632,0.52851939201355,0.00909852050244808,-0.848872482776642,0.467522472143173,-0.0770664438605309,-0.880615413188934,0.485413104295731,-0.0897276848554611,-0.869668364524841,0.519139409065247,-0.0526867732405663,-0.853064119815826,0.462924838066101,-0.0733483955264091,-0.883357584476471,0.523041129112244,0.014497647061944,-0.852184176445007,0.491901904344559,0.0026730087120086,-0.87064653635025,0.530268609523773,0.0073667149990797,-0.847797691822052,0.494075983762741,-0.0892282798886299,-0.864827990531921,0.565295159816742,-0.0429885983467102,-0.823767781257629,0.537166953086853,0.000499140121974051,-0.843475818634033,0.563887238502502,0.00713275745511055,-0.825820982456207,0.652274966239929,0.00279608927667141,-0.757977426052094,0.653530716896057,-0.0821212232112885,-0.752431869506836,0.553615033626556,0.00581234646961093,-0.832752406597137,0.553502798080444,0.00561388442292809,-0.832828521728516,0.587476313114166,-0.0515628047287464,-0.807597100734711,0.629445195198059,0.0223460998386145,-0.776723504066467,0.582596361637115,-0.0463487394154072,-0.811439037322998,0.598315596580505,-0.0409847423434258,-0.800211668014526,0.624528646469116,0.0264663510024548,-0.780553340911865,0.702279508113861,-0.0427592359483242,-0.710616052150726,0.562961339950562,0.212206929922104,-0.798775911331177,0.714602768421173,0.0360755138099194,-0.698599576950073,0.653738260269165,0.0015184604562819,-0.75671923160553,
- 0.616199374198914,-0.0398445315659046,-0.786581814289093,0.61634236574173,-0.0212855730205774,-0.787190556526184,0.707975029945374,0.703279137611389,-0.0645740181207657,0.995386958122253,0.0946753546595573,0.0155373672023416,0.490027129650116,0.679093301296234,0.546539783477783,0.720133066177368,-0.0600995756685734,-0.691228210926056,0.716888606548309,-0.0161513835191727,-0.697000622749329,0.745126783847809,-0.0128889009356499,-0.666798293590546,0.72247314453125,0.0742625296115875,-0.68739914894104,0.720036923885345,0.013950277119875,-0.693795621395111,0.727490365505219,-0.0155490394681692,-0.685941696166992,0.567042946815491,0.218578636646271,-0.794157207012177,0.704624533653259,-0.0450010746717453,-0.708151936531067,0.7428098320961,0.0381410382688046,-0.668415248394012,0.906850457191467,0.089634895324707,-0.411810457706451,0.72880345582962,0.616471588611603,-0.298007220029831,0.573625683784485,0.18030771613121,-0.799026131629944,0.728617787361145,0.00495280139148235,-0.684902608394623,0.743538975715637,0.0374176986515522,-0.667644917964935,0.705316603183746,-0.0456647165119648,-0.707420110702515,0.736940979957581,0.0439169108867645,-0.674528956413269,0.722113192081451,0.0117895305156708,-0.691674470901489,0.726197421550751,0.0745857059955597,-0.683428347110748,-0.404479920864105,-0.372509628534317,0.835243999958038,-0.384141951799393,-0.419183790683746,0.822629868984222,-0.19520415365696,-0.975263357162476,0.103714697062969,-0.0587437003850937,-0.0302189234644175,0.997815608978271,0.017016377300024,-0.135492235422134,0.990632295608521,-0.000924964435398579,-0.115247204899788,0.99333643913269,0.0360768586397171,-0.121019966900349,0.991994261741638,-0.0386468395590782,-0.0166172459721565,0.999114751815796,-0.045336626470089,-0.0147841088473797,0.998862385749817,0.00109720695763826,0.0483053475618362,0.998832106590271,0.0153513755649328,0.0314933434128761,0.999386072158813,0.018776323646307,0.0222161505371332,0.99957686662674,0.0237298682332039,-0.0662228763103485,0.9975226521492,0.0306977778673172,-0.125112846493721,0.991667509078979,
- -0.050707183778286,-0.0188849736005068,0.998535096645355,0.345449805259705,0.245218634605408,0.905832350254059,0.324726641178131,0.10911563783884,0.939492642879486,0.225707992911339,-0.629883170127869,0.743170976638794,-0.0375352054834366,-0.00882869865745306,0.999256312847137,-0.0540137961506844,0.0110230194404721,0.99847936630249,-0.108272396028042,0.0875539854168892,0.9902583360672,-0.107314728200436,-0.0252363998442888,0.993904769420624,-0.156096428632736,0.0487739183008671,0.986536979675293,-0.15968319773674,0.0500335060060024,0.985899567604065,-0.0157786253839731,0.00776966894045472,0.999845325946808,-0.0546530820429325,-0.0105069037526846,0.998450219631195,-0.00265835411846638,0.0074186697602272,0.999968945980072,-0.0671500340104103,0.0262493006885052,0.997397541999817,-0.0375352054834366,-0.00882869865745306,0.999256312847137,-0.108272396028042,0.0875539854168892,0.9902583360672,0.225199609994888,-0.62846428155899,0.744525194168091,0.370712369680405,-0.590283751487732,0.717033863067627,0.151376858353615,0.118482120335102,0.981349587440491,-0.0536081902682781,-0.0135684898123145,0.998469948768616,-0.0175164975225925,-0.00207159412093461,0.999844431877136,-0.00158503430429846,0.00442336034029722,0.999988973140717,-0.244317337870598,-0.143246471881866,0.959056556224823,-0.652995645999908,-0.01192547660321,0.757267773151398,-0.738848090171814,0.673538029193878,0.0212137643247843,-0.0510705001652241,-0.014884571544826,0.998584151268005,0.0036036828532815,-0.0949459299445152,0.995476007461548,-0.0129189249128103,-0.0157447662204504,0.999792575836182,-0.00712578045204282,-0.0157456807792187,0.999850749969482,0.00854652933776379,-0.091341570019722,0.995782971382141,-0.00984078366309404,0.0154354488477111,0.999832451343536,0.0136770196259022,-0.087596520781517,0.996062159538269,-0.0408139601349831,-0.0081010153517127,0.999133944511414,-0.0544720552861691,0.0107121560722589,0.998457849025726,0.0967000052332878,0.112479895353317,0.988937497138977,0.137567043304443,0.0199279692023993,0.990292072296143,0.160147458314896,0.0210035722702742,0.986869633197784,
- 0.0386509671807289,-0.0882275849580765,0.995350182056427,-0.072868600487709,-0.00178062834311277,0.997339963912964,-0.0588545650243759,-0.0200347676873207,0.998065531253815,-0.0118804378435016,0.0395449995994568,0.999147176742554,-0.0042802500538528,0.0234131403267384,0.999716818332672,-0.00411774031817913,0.0156162846833467,0.999869585037231,-0.0286015830934048,0.022255277261138,0.99934321641922,-0.0308911334723234,0.026691060513258,0.999166309833527,-0.0718564242124558,0.0834704041481018,0.993916153907776,-0.0323443971574306,0.0207243859767914,0.999261915683746,-0.0722521841526031,0.0831854194402695,0.993911385536194,-0.0312890559434891,0.0264217462390661,0.999161183834076,-0.138979002833366,0.0168234892189503,0.990152418613434,-0.138184815645218,0.0352546237409115,0.989778816699982,-0.13968500494957,0.0323639810085297,0.989667057991028,-0.223873749375343,-0.0284253302961588,0.974203526973724,-0.239503979682922,-0.0532535500824451,0.969433784484863,-0.243867486715317,0.0266457330435514,0.969442546367645,-0.0775414928793907,0.0793735235929489,0.993824541568756,-0.0200117267668247,0.00176299607846886,0.999798178672791,-0.0527911633253098,-0.0203621555119753,0.998397946357727,-0.0197986792773008,0.00143556750845164,0.999802947044373,-0.0544471740722656,-0.0111103374511003,0.998454868793488,-0.0525856651365757,-0.0206665154546499,0.998402535915375,-0.195550307631493,-0.00719788251444697,0.980667233467102,-0.189849361777306,-0.0163382384926081,0.981677293777466,-0.202081456780434,-0.0512345731258392,0.978027760982513,-0.13405179977417,0.0382859148085117,0.99023449420929,-0.103424414992332,0.0550390295684338,0.993113338947296,-0.16121831536293,0.016513530164957,0.98678058385849,-0.17302305996418,0.0350539237260818,0.984293758869171,-0.191807463765144,-0.0177217181771994,0.981272578239441,-0.197346478700638,-0.0085386885330081,0.980296730995178,-0.0767383947968483,0.0546276569366455,0.995553612709045,-0.16121831536293,0.016513530164957,0.98678058385849,-0.103424414992332,0.0550390295684338,0.993113338947296,-0.0259281173348427,-0.533044874668121,0.845689594745636,
- -0.114796541631222,-0.0462986044585705,0.992309629917145,-0.406451672315598,-0.173986777663231,0.896953523159027,-0.21348337829113,-0.0330834910273552,0.976386368274689,-0.183952391147614,0.0523237437009811,0.981541514396667,-0.422115385532379,-0.149175837635994,0.894184112548828,0.0755454003810883,-0.0344753637909889,0.99654620885849,0.13069574534893,-0.639269590377808,0.757794857025146,0.367791563272476,-0.920394718647003,0.132676169276237,-0.164244085550308,0.0212547462433577,0.986190736293793,-0.0769849345088005,0.0553594008088112,0.995494186878204,-0.207963913679123,0.00456595467403531,0.978125870227814,-0.183952391147614,0.0523237437009811,0.981541514396667,-0.216526418924332,0.024723133072257,0.975963771343231,-0.422115385532379,-0.149175837635994,0.894184112548828,-0.0775387734174728,0.0570035688579082,0.995358407497406,-0.164587616920471,0.0464185141026974,0.985269725322723,-0.208689421415329,0.00626480765640736,0.977961897850037,-0.529407322406769,-0.00615118211135268,0.848345458507538,-0.268951654434204,0.153749525547028,0.950802862644196,-0.68920236825943,0.044258326292038,0.723215937614441,-0.524743258953094,-0.239400953054428,0.816903710365295,-0.686412215232849,-0.0101300664246082,0.727142095565796,-0.285781145095825,0.197526782751083,0.937716543674469,-0.344084233045578,-0.0904951021075249,0.934567630290985,-0.386195957660675,-0.0297412797808647,0.921937167644501,-0.689837098121643,0.0721554979681969,0.720359861850739,-0.294624716043472,-0.0518244318664074,0.954206764698029,-0.300789058208466,-0.0491973571479321,0.952420890331268,-0.336977243423462,0.00863975379616022,0.941473126411438,-0.230728775262833,-0.00114412407856435,0.973017454147339,-0.27734187245369,0.0720310062170029,0.958067357540131,-0.270569920539856,0.0586774684488773,0.960910558700562,-0.184716612100601,0.12067062407732,0.975355505943298,-0.436188220977783,0.898760259151459,-0.0443851761519909,-0.608110070228577,0.548719048500061,0.573680698871613,-0.238605678081512,0.0820993483066559,0.967639923095703,-0.268301725387573,0.0782493427395821,0.960151672363281,
- -0.518812298774719,0.852267444133759,-0.066889576613903,-0.440229773521423,0.896910846233368,-0.041817981749773,-0.458209723234177,0.887418866157532,-0.0503148846328259,-0.144899636507034,0.160000681877136,0.976424038410187,-0.441248923540115,0.896218121051788,-0.0457436926662922,-0.445107728242874,0.894424617290497,-0.0434015579521656,-0.415547490119934,0.897899448871613,-0.145247638225555,-0.413728624582291,0.889038741588593,-0.19605815410614,-0.454070240259171,0.889606595039368,-0.049196619540453,-0.428391337394714,0.891288876533508,-0.148610323667526,-0.448398470878601,0.892561972141266,-0.0476671531796455,-0.407908290624619,0.892074942588806,-0.194456115365028,-0.439209252595901,0.894325017929077,-0.0853114053606987,-0.914263188838959,-0.381512194871902,0.136277318000793,-0.894693851470947,-0.424389600753784,0.139343559741974,-0.250115990638733,-0.965300977230072,-0.0750733464956284,-0.825715303421021,0.0101215140894055,0.563996255397797,-0.77838671207428,-0.0945535823702812,0.620623648166656,-0.785376250743866,-0.0844149962067604,0.613235890865326,-0.769028306007385,-0.0819919407367706,0.633934378623962,-0.815836250782013,0.0214860271662474,0.577883660793304,-0.817423045635223,0.0146375438198447,0.575851798057556,-0.831294715404511,0.00351819815114141,0.555820763111115,-0.865042746067047,0.106957636773586,0.490164399147034,-0.826650977134705,0.00203590211458504,0.562711298465729,-0.853411376476288,0.122378438711166,0.506668090820313,-0.81966370344162,0.0171307008713484,0.572588860988617,-0.843913614749908,0.0919800698757172,0.528535425662994,-0.799312472343445,0.185454428195953,0.57158225774765,-0.795332789421082,0.144217804074287,0.588767349720001,-0.333495289087296,0.94051718711853,-0.0648719146847725,-0.775545418262482,-0.0418691001832485,0.629901826381683,-0.763177216053009,-0.0743345394730568,0.641899466514587,-0.811609506607056,0.0223441701382399,0.583772838115692,-0.877123951911926,0.0491754412651062,0.477739840745926,-0.826931238174438,0.00164567003957927,0.562300622463226,-0.865339159965515,0.106553763151169,0.489728927612305,
- -0.826970338821411,0.0015913222450763,0.562243521213531,-0.867033541202545,-0.0152107160538435,0.498017579317093,-0.790889859199524,0.0314358994364738,0.611150562763214,-0.878110110759735,-0.446730107069016,-0.171333223581314,-0.872975587844849,0.0194906555116177,0.487374573945999,-0.907172441482544,-0.385747790336609,-0.168038070201874,0.49922189116478,0.555790960788727,0.664735972881317,0.393640577793121,0.602364003658295,0.694409608840942,0.136786952614784,-0.94697505235672,0.290736317634583,-0.647594571113586,-0.504443109035492,0.571102797985077,-0.81874281167984,-0.490125745534897,-0.299060553312302,-0.764166176319122,-0.21085949242115,0.609580636024475,-0.899273693561554,-0.123343363404274,0.419634640216827,-0.99945455789566,-0.0318853221833706,-0.00860018469393253,-0.498512029647827,0.668048620223999,-0.552446186542511,-0.814406037330627,-0.00299282465130091,0.580287754535675,-0.796318411827087,-0.0248563941568136,0.604366719722748,-0.797500908374786,0.00338462297804654,0.603308200836182,-0.866924464702606,0.0083861481398344,0.498369008302689,-0.835390031337738,0.0473795421421528,0.547611832618713,-0.872075438499451,0.0137607092037797,0.489177912473679,-0.827723145484924,-0.0400821343064308,0.559703350067139,-0.835390031337738,0.0473795421421528,0.547611832618713,-0.866924464702606,0.0083861481398344,0.498369008302689,-0.792328298091888,0.0397131331264973,0.608801066875458,-0.868548512458801,-0.0069846804253757,0.495554983615875,-0.827111899852753,0.0228125602006912,0.561574161052704,-0.730205893516541,0.602068066596985,0.322975873947144,-0.851657867431641,0.425717383623123,0.305685460567474,-0.204225346446037,0.404244303703308,0.891559600830078,-0.78145170211792,-0.0315217971801758,0.623169004917145,-0.777286887168884,-0.0345543213188648,0.628196716308594,-0.798352956771851,-0.0501306280493736,0.600099742412567,-0.794778883457184,-0.0247076246887445,0.606395959854126,-0.810458719730377,0.00153757876250893,0.585793912410736,-0.820915281772614,0.0288057364523411,0.57032299041748,-0.779492735862732,-0.0360801331698895,0.625371336936951,
- -0.823935866355896,0.0253094546496868,0.566117584705353,-0.813459098339081,-0.00190035568084568,0.581619024276733,-0.818731367588043,0.03131003677845,0.573322415351868,-0.782161593437195,-0.0298562832176685,0.622359871864319,-0.799060881137848,-0.0485075265169144,0.599290192127228,-0.836909830570221,0.0521336756646633,0.544852316379547,-0.82664942741394,-0.0387603715062141,0.561380803585052,-0.842358410358429,0.00309437909163535,0.538908839225769,-0.829618990421295,0.0186251942068338,0.558019399642944,-0.841909408569336,0.00560480449348688,0.539589762687683,-0.840400218963623,-0.0292763933539391,0.541175007820129,-0.852426290512085,0.00456445431336761,0.522827446460724,-0.842358410358429,0.00309437909163535,0.538908839225769,-0.82664942741394,-0.0387603715062141,0.561380803585052,-0.686706900596619,-0.2996486723423,0.662302255630493,-0.671467363834381,-0.346190392971039,0.655197560787201,-0.20286625623703,-0.975286722183228,0.0875277146697044,-0.323592722415924,0.0423414260149002,0.94524872303009,-0.294424295425415,0.00193078571464866,0.955672860145569,-0.304053723812103,0.0117499632760882,0.952582538127899,-0.28443244099617,0.0100080734118819,0.958643853664398,-0.312655657529831,0.0498903803527355,0.948555409908295,-0.316490858793259,0.0536215379834175,0.947078824043274,-0.410024523735046,-0.0191605109721422,0.9118732213974,-0.434385627508163,0.0153294261544943,0.900596559047699,-0.407254457473755,-0.0236293468624353,0.913008987903595,-0.420698374509811,0.0268311258405447,0.906803727149963,-0.395925879478455,-0.00889355223625898,0.918239414691925,-0.403346478939056,0.00303528737276793,0.915042281150818,-0.353272914886475,0.0816093385219574,0.931953966617584,-0.353248536586761,0.0394765250384808,0.93469625711441,-0.514020383358002,0.841835618019104,0.164608806371689,-0.282254278659821,0.0117633519694209,0.959267497062683,-0.314235091209412,0.0554799772799015,0.947722673416138,-0.29157030582428,0.0594094432890415,0.954702734947205,-0.452359706163406,-0.0374086871743202,0.891050696372986,-0.407753556966782,-0.0240683443844318,0.912774741649628,
- -0.434932887554169,0.0148666938766837,0.900340139865875,0.418899059295654,0.491334080696106,0.763619303703308,0.420162320137024,0.487026900053024,0.765681684017181,-0.367480516433716,0.371623605489731,0.852557301521301,-0.791732609272003,-0.485442638397217,0.370816618204117,-0.445750117301941,-0.0581882484257221,0.89326423406601,-0.81653505563736,-0.420917212963104,0.395093888044357,-0.527864933013916,-0.050254862755537,0.847840368747711,-0.807959139347076,0.0506506524980068,0.587057530879974,-0.723760008811951,0.668273031711578,-0.171995967626572,-0.338934361934662,0.0909380093216896,0.936404705047607,-0.310214430093765,-0.0270236097276211,0.950282573699951,-0.315914839506149,0.104738771915436,0.942988634109497,-0.42268380522728,-0.0372788645327091,0.905510306358337,-0.4461510181427,-0.0569475926458836,0.893144011497498,-0.357852399349213,-0.0242183171212673,0.933464050292969,-0.291357904672623,0.0586848519742489,0.954812347888947,-0.315478205680847,0.0544561967253685,0.94736909866333,-0.374728292226791,0.0291666034609079,0.926675796508789,-0.442245602607727,-0.0642193108797073,0.894592046737671,-0.358800023794174,-0.0213152542710304,0.933171153068542,-0.447097182273865,-0.0540098175406456,0.892853438854218,-0.221582397818565,-0.542084217071533,0.810583710670471,-0.817388355731964,-0.515545010566711,0.257079422473907,-0.287879973649979,-0.283896207809448,0.914619088172913,-0.351645350456238,-0.0429792776703835,0.935146152973175,-0.43131560087204,-0.08159089833498,0.898504197597504,-0.340416371822357,-0.0154889319092035,0.940147221088409,-0.360859662294388,-0.135112404823303,0.922781109809875,-0.340416371822357,-0.0154889319092035,0.940147221088409,-0.43131560087204,-0.08159089833498,0.898504197597504,-0.361139357089996,0.0179463513195515,0.932339131832123,-0.29192790389061,0.0606304332613945,0.954516649246216,-0.375297039747238,0.0310323256999254,0.92638498544693,-0.343167930841446,-0.0111012384295464,0.939208447933197,-0.356352359056473,-0.13185378909111,0.925001382827759,-0.435096800327301,-0.0079594012349844,0.900348484516144,
- -0.401773154735565,-0.100093476474285,0.910252511501312,-0.435096800327301,-0.0079594012349844,0.900348484516144,-0.356352359056473,-0.13185378909111,0.925001382827759,-0.416635155677795,0.00578110245987773,0.909055411815643,-0.383413761854172,-0.0990618243813515,0.91824871301651,-0.388416856527328,-0.0317186787724495,0.920937716960907,-0.308611899614334,-0.0269267894327641,0.950806856155396,-0.337553739547729,0.0918937623500824,0.93681001663208,-0.325109511613846,0.0712630227208138,0.942987501621246,-0.289926737546921,0.0538169927895069,0.955534517765045,-0.358259439468384,0.0132448896765709,0.933528125286102,-0.294262707233429,0.057221133261919,0.95401006937027,-0.397870630025864,0.586351811885834,0.705613613128662,-0.458680123090744,0.368574857711792,0.808557569980621,0.411273837089539,0.488604873418808,0.769492745399475,-0.321814984083176,0.0735438466072083,0.943942070007324,-0.294989019632339,0.058455154299736,0.953710913658142,-0.358976632356644,0.0144139844924212,0.933235228061676,-0.291149288415909,0.0519420802593231,0.955266535282135,-0.329933792352676,0.0679140761494637,0.941557943820953,-0.342379182577133,0.0885490328073502,0.935379922389984,0.636420071125031,-0.0543010868132114,-0.769428908824921,0.669894933700562,0.0155891049653292,-0.74229222536087,0.631720364093781,0.0123978704214096,-0.775097191333771,0.669670045375824,0.0194263029843569,-0.742404639720917,0.633815884590149,-0.0542457886040211,-0.771579444408417,0.635013401508331,0.0931933671236038,-0.766859292984009,0.633419334888458,-0.0542373284697533,-0.771905601024628,0.629869520664215,0.0761201307177544,-0.772961914539337,0.634581685066223,0.0932134464383125,-0.767214000225067,0.571342468261719,0.0699723735451698,-0.817723453044891,0.574551939964294,-0.0528688915073872,-0.816758811473846,0.578397214412689,-0.017626540735364,-0.815564811229706,0.577264666557312,-0.0177241358906031,-0.816364705562592,0.527193784713745,0.00499860243871808,-0.849730372428894,0.570056617259979,0.069836713373661,-0.818631947040558,0.450870126485825,-0.0278728995472193,-0.892154276371002,
- 0.507498741149902,-0.0510671399533749,-0.86013787984848,0.536469399929047,-0.777549028396606,-0.328051924705505,0.527203619480133,0.0173374135047197,-0.849562108516693,0.577147722244263,-0.0177342090755701,-0.816447198390961,0.944323003292084,-0.19553305208683,-0.264614641666412,-0.0345402993261814,-0.342320322990417,0.938948333263397,-0.0279162097722292,-0.387313902378082,0.921525180339813,-0.149065762758255,-0.969380974769592,0.195140868425369,0.506857693195343,-0.0222358945757151,0.861742913722992,0.502149760723114,-0.00945128593593836,0.864729046821594,0.496653109788895,-0.00431702192872763,0.86793839931488,0.510331451892853,-0.00206804927438498,0.859975337982178,0.517243146896362,-0.0141223315149546,0.855721950531006,0.551130354404449,-0.067838728427887,0.831656932830811,0.594903349876404,-0.0283569116145372,0.803296864032745,0.566468238830566,0.0256003215909004,0.823685824871063,0.615743041038513,-0.0672901049256325,0.785068511962891,0.678867340087891,0.00105662457644939,0.734260201454163,0.660421371459961,0.0358759872615337,0.750037670135498,0.68378359079361,-0.00837373081594706,0.72963684797287,0.469099134206772,0.0507214441895485,0.881687760353088,0.482261508703232,-0.0271277166903019,0.875607311725616,0.521334886550903,-0.0934124886989594,0.84822404384613,0.650799632072449,0.0259937532246113,0.758804440498352,0.670164406299591,-0.00664352811872959,0.742182970046997,0.678273558616638,-0.0225470401346684,0.734463572502136,0.0968568921089172,0.667065322399139,0.738676249980927,0.252408415079117,-0.20881475508213,0.944820940494537,0.299701690673828,0.469933688640594,0.830265760421753,0.7076336145401,0.00750601850450039,0.706539690494537,0.702257573604584,0.0223705675452948,0.711571395397186,0.699872493743896,0.0268539134413004,0.713762819766998,0.67657607793808,-0.00133305648341775,0.736371517181396,0.649539709091187,0.0247122757136822,0.759925961494446,0.676932096481323,-0.0238778684288263,0.735658049583435,0.605824530124664,-0.0181123428046703,0.795392096042633,0.667801201343536,0.023454999551177,0.743970036506653,
- 0.495959460735321,-0.0537041760981083,0.86668336391449,0.823680520057678,0.152237489819527,0.546236336231232,0.80846506357193,0.143525809049606,0.57077544927597,-0.168928951025009,0.938603758811951,0.300809234380722,0.357810437679291,-0.274361908435822,0.892578959465027,-0.422721803188324,0.676809191703796,0.602690279483795,-0.0515990816056728,0.846532166004181,0.529830932617188,-0.245376914739609,0.885718047618866,0.394073277711868,0.815856516361237,0.152969643473625,0.55765438079834,-0.230548515915871,0.896135270595551,0.379195123910904,-0.304850161075592,0.898166239261627,0.316802442073822,-0.23108971118927,0.897018134593964,0.376770466566086,-0.231619626283646,0.895366966724396,0.380355596542358,-0.336467176675797,0.893119513988495,0.298542112112045,-0.236216768622398,0.89304131269455,0.382986724376678,-0.309973061084747,0.894176065921783,0.323057115077972,-0.234561190009117,0.894334971904755,0.380980283021927,-0.334341078996658,0.894743680953979,0.296057134866714,-0.260545343160629,0.89562463760376,0.360517233610153,0.49650764465332,-0.056096289306879,0.866217970848084,0.670292437076569,0.0165612008422613,0.741912245750427,0.661770880222321,0.0205927174538374,0.749423265457153,0.685700953006744,-0.028779074549675,0.727314233779907,0.616630673408508,-0.105982676148415,0.780086100101471,0.69017618894577,-0.0348988547921181,0.722799360752106,0.670628905296326,0.00392272742465138,0.741782665252686,0.583478987216949,-0.072794072329998,0.808859288692474,0.503468990325928,-0.0877161845564842,0.859549224376678,0.66871589422226,0.256972074508667,0.697699368000031,0.475819915533066,0.0265721790492535,0.879141271114349,0.51498818397522,0.048114649951458,0.855845868587494,0.740165770053864,-0.0731759071350098,0.668430924415588,0.691580653190613,-0.0378094501793385,0.721308946609497,0.618001043796539,-0.108638614416122,0.778634965419769,0.738634765148163,-0.59179699420929,0.322792679071426,0.129089027643204,-0.986100792884827,-0.104600422084332,0.536570310592651,-0.237519770860672,0.809738636016846,0.65310275554657,-0.150950238108635,0.742071986198425,
- 0.272145867347717,-0.921531856060028,-0.276975899934769,0.953556418418884,-0.105103679001331,0.282282382249832,0.694267094135284,-0.0434265919029713,0.718406140804291,0.744089126586914,-0.0693097785115242,0.664475381374359,0.699822783470154,0.0205309465527534,0.714021384716034,0.69928115606308,0.0199148338288069,0.714569270610809,0.743973851203918,-0.0694239065051079,0.664592564105988,0.720338225364685,-0.0906936749815941,0.687668144702911,0.624859273433685,-0.0585773326456547,0.778536856174469,0.581561923027039,-0.0691031143069267,0.810561835765839,0.668705403804779,0.00758755905553699,0.743488729000092,0.718687832355499,-0.0905648618936539,0.689409732818604,0.725030303001404,-0.00142971205059439,0.688715577125549,0.692502856254578,0.0122664421796799,0.72131085395813,0.662061452865601,-0.0417046621441841,0.74828827381134,0.684816479682922,0.00372955482453108,0.728706061840057,0.664010047912598,0.00329552730545402,0.74771648645401,0.583632409572601,-0.0730903595685959,0.808721840381622,0.617141664028168,-0.0661164969205856,0.784069359302521,0.57489013671875,0.0113566583022475,0.818151772022247,0.609092473983765,-0.0383680276572704,0.792170584201813,0.576441526412964,0.0126517526805401,0.81704044342041,0.618819653987885,-0.0644856318831444,0.782881736755371,0.519079923629761,-0.0336834006011486,0.854061782360077,0.668231546878815,0.257537513971329,0.697954893112183,0.516054391860962,0.0463787838816643,0.855299293994904,0.571252822875977,0.00832992512732744,0.82073187828064,0.613836705684662,-0.0386668816208839,0.788485467433929,0.614463031291962,-0.0179808996617794,0.788740694522858,-0.106486327946186,0.732747435569763,0.672117471694946,-0.256964147090912,0.0956668257713318,0.961674332618713,-0.649940848350525,0.678147614002228,0.343063801527023,0.632985234260559,0.061695858836174,0.771701574325562,0.615746736526489,-0.0180393401533365,0.787737607955933,0.603594303131104,0.110808603465557,0.789553880691528,0.49146556854248,0.0748347565531731,0.867675840854645,0.497273862361908,0.0154530322179198,0.867456018924713,0.488962531089783,-0.0123826432973146,0.872216880321503,
- 0.662717580795288,0.263930022716522,0.700818419456482,0.527622759342194,-0.0269740633666515,0.849050402641296,0.482755422592163,0.0490251556038857,0.874381899833679,0.10089398920536,0.0927380695939064,0.990565538406372,0.111171901226044,0.66110634803772,0.742010235786438,0.567694365978241,0.118675328791142,0.814640581607819,0.50144636631012,0.0189919471740723,0.864980280399323,0.482530683279037,0.0488477721810341,0.874515891075134,0.527397632598877,-0.0271516870707273,0.849184632301331,0.475692123174667,0.0434653647243977,0.87853741645813,0.494688481092453,0.013267514295876,0.868969082832336,0.486664742231369,0.0751655697822571,0.870349228382111,-0.774714052677155,-0.368248164653778,-0.514015018939972,-0.764177262783051,-0.409179896116257,-0.498602956533432,-0.0817485079169273,-0.973577976226807,-0.213220849633217,-0.975032031536102,0.000533987069502473,-0.222063511610031,-0.983261048793793,-0.124649703502655,-0.132891744375229,-0.983075737953186,-0.111490219831467,-0.145368576049805,-0.98983770608902,-0.0998125746846199,-0.101285837590694,-0.981487452983856,0.0227822586894035,-0.190166622400284,-0.978584825992584,0.0332420393824577,-0.203142210841179,-0.976687610149384,0.0254525858908892,-0.21315136551857,-0.97834700345993,0.0113066472113132,-0.206662222743034,-0.969223618507385,0.0599470138549805,-0.238771736621857,-0.91926521062851,0.0490683130919933,-0.390568494796753,-0.946451902389526,-0.0578155778348446,-0.317626118659973,-0.936725616455078,-0.0178949031978846,-0.349606782197952,-0.990941941738129,-0.0948896408081055,-0.0950263291597366,-0.979663133621216,0.0379912741482258,-0.197019755840302,-0.989131689071655,-0.00840085465461016,-0.146792739629745,-0.952003419399261,0.216200277209282,-0.216672882437706,-0.985025405883789,-0.0011730546830222,0.172405332326889,-0.745847940444946,0.403676092624664,0.529864549636841,-0.953513383865356,-0.0421967506408691,-0.298381686210632,-0.926735818386078,0.063137412071228,-0.370370626449585,-0.918711185455322,0.0834905281662941,-0.3860042989254,-0.962448120117188,-0.0578174442052841,-0.265237599611282,
- -0.989344775676727,-0.0141086876392365,-0.144906371831894,-0.975643873214722,0.0214242823421955,-0.218311756849289,-0.952263116836548,-0.0450693629682064,-0.301933377981186,-0.917450308799744,0.0807226523756981,-0.389575064182281,-0.952288031578064,0.0466556809842587,-0.301613926887512,-0.989760756492615,-0.0597586631774902,-0.129624769091606,-0.981709241867065,-0.0837904885411263,-0.170956537127495,-0.990722239017487,0.123393461108208,0.056953452527523,-0.9788778424263,-0.0375790074467659,-0.200962677598,-0.989280760288239,-0.012291269376874,-0.145507588982582,-0.962376117706299,-0.0560818649828434,-0.265870779752731,-0.850415289402008,-0.03133699670434,-0.525177896022797,-0.853615581989288,-0.0458039492368698,-0.518885731697083,-0.833399653434753,0.0126081202179194,-0.552527010440826,-0.887007713317871,-0.00230365339666605,-0.46174892783165,-0.861163198947906,0.071238599717617,-0.503312289714813,-0.865430116653442,0.0581744164228439,-0.497640937566757,-0.804905414581299,-0.0877682119607925,-0.586876511573792,-0.786571741104126,-0.0440343841910362,-0.615927040576935,-0.520922422409058,0.0978193581104279,-0.847980797290802,-0.87893807888031,0.079940602183342,-0.470188677310944,-0.864630281925201,0.076277382671833,-0.496584564447403,0.19142310321331,0.850313186645508,-0.490229457616806,-0.900266885757446,0.119115918874741,-0.41872563958168,0.149845987558365,0.897083580493927,-0.415676862001419,-0.402169078588486,0.549330770969391,-0.732458710670471,0.146973520517349,0.895697057247162,-0.419673234224319,0.16012804210186,0.88644939661026,-0.434242427349091,-0.91058087348938,0.156574338674545,-0.382527053356171,0.150677368044853,0.896245718002319,-0.417181223630905,0.148408561944962,0.894373536109924,-0.421984702348709,0.242912366986275,0.897894144058228,-0.367123574018478,0.290416836738586,0.889012396335602,-0.353998601436615,0.157126843929291,0.889614701271057,-0.428831934928894,0.249336838722229,0.891274988651276,-0.378761172294617,0.153336927294731,0.893539428710938,-0.421989440917969,0.28647056221962,0.893046438694,-0.346990942955017,
- 0.188589990139008,0.895321428775787,-0.403526127338409,-0.772154748439789,-0.123258844017982,-0.623365461826324,-0.530126929283142,0.00769180618226528,-0.847883403301239,-0.85704118013382,0.148856729269028,-0.493276864290237,-0.897101044654846,0.00384236429817975,-0.441808760166168,-0.949770629405975,0.0621604099869728,-0.306711405515671,-0.913741290569305,0.0728137344121933,-0.399718642234802,-0.695362567901611,-0.00629750825464725,-0.718631505966187,-0.855924010276794,0.151983350515366,-0.494262278079987,-0.527137815952301,0.0419940426945686,-0.84874153137207,-0.91718065738678,0.0202244389802217,-0.397958070039749,-0.949823319911957,0.0618521384894848,-0.306610822677612,-0.897132396697998,0.00368394562974572,-0.441746473312378,-0.907567203044891,0.0524412989616394,-0.416619420051575,-0.89298152923584,0.0235938969999552,-0.449474483728409,-0.766341030597687,-0.148935571312904,-0.624931871891022,-0.950189411640167,0.0596889965236187,-0.305904090404511,-0.918167114257813,0.0166356228291988,-0.395843952894211,-0.941208899021149,0.0615692585706711,-0.332167237997055,-0.957666635513306,0.00583399133756757,-0.287820428609848,-0.956960380077362,-0.00504386052489281,-0.290174812078476,-0.969807267189026,0.0278481133282185,-0.242277845740318,-0.895164370536804,-0.0325048193335533,-0.444549471139908,-0.907567203044891,0.0524412989616394,-0.416619420051575,-0.766341030597687,-0.148935571312904,-0.624931871891022,-0.928751528263092,0.0359444580972195,-0.36895614862442,-0.941208899021149,0.0615692585706711,-0.332167237997055,-0.918167114257813,0.0166356228291988,-0.395843952894211,-0.912889838218689,0.0351728312671185,-0.406687825918198,-0.9055535197258,-0.0165101289749146,-0.423910677433014,-0.904019236564636,-0.0100658889859915,-0.427373290061951,-0.948676466941834,0.0842914879322052,-0.304808050394058,-0.969807267189026,0.0278481133282185,-0.242277845740318,-0.956960380077362,-0.00504386052489281,-0.290174812078476,-0.816414594650269,-0.530326247215271,-0.22851973772049,-0.934485971927643,-0.0470812544226646,-0.352872997522354,
- -0.770521521568298,-0.174247875809669,-0.613134801387787,-0.984973549842834,-0.0352485179901123,-0.169070571660995,-0.769453406333923,-0.636352181434631,-0.0547502487897873,-0.219862848520279,-0.919625461101532,0.325498670339584,-0.904870688915253,-0.00863821059465408,-0.425598919391632,-0.906466007232666,-0.0150498701259494,-0.422010570764542,-0.900115549564362,-0.051915492862463,-0.432546824216843,-0.891276299953461,-0.0304482076317072,-0.452437222003937,-0.882285535335541,-0.0539790578186512,-0.467609375715256,-0.881408393383026,0.0230668727308512,-0.471791476011276,-0.926870763301849,0.0114665357396007,-0.375205397605896,-0.926903188228607,0.0321080982685089,-0.373924493789673,-0.926174223423004,0.028953792527318,-0.375982731580734,-0.969061493873596,0.0318441577255726,-0.2447569668293,-0.948532581329346,0.083877258002758,-0.305369883775711,-0.965567469596863,0.0157466288655996,-0.259675800800323,-0.964735627174377,0.0179787706583738,-0.262606412172318,-0.965750455856323,0.0162425767630339,-0.258963793516159,-0.948722660541534,0.0844246596097946,-0.304627388715744,-0.974192559719086,0.0419244691729546,-0.22179089486599,-0.990910887718201,0.120595261454582,0.059601966291666,-0.981829702854156,-0.0884709134697914,-0.167879045009613,-0.970757365226746,0.0307147540152073,-0.238089695572853,-0.971043765544891,0.0193343795835972,-0.238118097186089,-0.971328616142273,0.00985217280685902,-0.23753710091114,-0.586287498474121,0.640160977840424,-0.496448278427124,-0.707520544528961,-0.0444455184042454,-0.705293774604797,0.048119593411684,0.679769158363342,-0.731845915317535,-0.987459480762482,0.132295280694962,-0.0861497521400452,-0.999537765979767,0.0224832762032747,-0.020462442189455,-0.999874234199524,0.013860184699297,-0.00771065521985292,-0.987838804721832,-0.0163009073585272,-0.154625251889229,-0.9863001704216,-0.0856889486312866,-0.140958845615387,-0.987540483474731,0.0146919377148151,-0.156677961349487,-0.990148365497589,0.130828201770782,0.0499037802219391,-0.975134432315826,0.0452406480908394,-0.216947346925735,
- -0.986711025238037,-0.0484823361039162,-0.155083283782005,-0.989175021648407,-0.0158297158777714,-0.145884826779366,-0.830643475055695,0.471454113721848,-0.296247333288193,-0.967588424682617,0.17705225944519,0.180069863796234,-0.987789452075958,-0.0801666006445885,-0.133586466312408,-0.986543953418732,-0.0490815229713917,-0.155955284833908,-0.974966585636139,0.0446405410766602,-0.217824622988701,-0.984499633312225,-0.0561057887971401,-0.16617052257061,-0.985729277133942,-0.087723545730114,-0.143674463033676,-0.987130582332611,-0.0165396947413683,-0.15905873477459,0.409302622079849,-0.450693070888519,-0.793314039707184,0.403894245624542,-0.504859447479248,-0.762880325317383,-0.0462025701999664,-0.996533334255219,-0.0691855698823929,-0.165774792432785,-0.0115715190768242,-0.986095726490021,-0.224962219595909,-0.0953446552157402,-0.969691395759583,-0.21401210129261,-0.084643691778183,-0.973156869411469,-0.221682190895081,-0.0979068502783775,-0.970191359519959,-0.1615000218153,-0.0145043730735779,-0.986766219139099,-0.14099745452404,0.00947681069374084,-0.989964604377747,-0.11637407541275,-0.00961173791438341,-0.993158936500549,-0.132651448249817,-0.0342079736292362,-0.990572273731232,-0.0938120484352112,0.0243932101875544,-0.99529105424881,-0.225981310009956,-0.0169776305556297,-0.973983705043793,-0.267939865589142,-0.0613246783614159,-0.961482048034668,-0.187546566128731,0.0458339378237724,-0.981185793876648,0.237555235624313,0.059760820120573,0.96953409910202,-0.747677206993103,0.525051295757294,0.406570941209793,-0.700862407684326,0.615821540355682,0.359938442707062,-0.0451196953654289,-0.00790022499859333,-0.998950362205505,0.00565067166462541,0.0642741620540619,-0.997916281223297,-0.0746509879827499,-0.0417349934577942,-0.996336102485657,0.00674909166991711,0.0634588375687599,-0.997961640357971,-0.043269407004118,-0.00912481267005205,-0.999021768569946,-0.0128856766968966,0.036789782345295,-0.999240040779114,-0.114731162786484,-0.010881882160902,-0.993336975574493,-0.0725666806101799,-0.0619255602359772,-0.995439350605011,
- -0.224886000156403,-0.0130109386518598,-0.974298238754272,-0.0752677470445633,-0.0412621386349201,-0.996309280395508,0.00502281822264194,0.0647401362657547,-0.997889518737793,-0.038325022906065,0.0332927033305168,-0.998710572719574,0.0610469207167625,-0.0120669668540359,-0.998061954975128,0.0967341810464859,0.0355409421026707,-0.994675517082214,0.0776817873120308,0.0105357151478529,-0.996922552585602,0.0581428818404675,0.0647466704249382,-0.99620646238327,0.0205092318356037,0.014749021269381,-0.999680876731873,0.0468581169843674,0.0542549975216389,-0.997427046298981,0.0987815111875534,-0.0053110970184207,-0.995094954967499,0.11713644862175,0.0199969112873077,-0.992914497852325,0.14890019595623,0.0584235787391663,-0.987124919891357,0.119040779769421,-0.00610260665416718,-0.992870628833771,-0.0292203612625599,0.0583716593682766,-0.997867286205292,0.0261860881000757,0.04901023209095,-0.998455047607422,0.0563579984009266,0.0660910382866859,-0.996220707893372,0.0860312357544899,0.0280086044222116,-0.99589866399765,0.603154063224792,0.794759035110474,-0.0675518289208412,0.309172749519348,0.433207273483276,-0.846607148647308,0.128225326538086,0.0115180034190416,-0.991678178310394,0.702729821205139,0.708322584629059,-0.0667079165577888,0.457967936992645,0.886448740959167,-0.0668896064162254,-0.109686993062496,0.157248869538307,-0.981448709964752,0.43680813908577,0.896199345588684,-0.0776234790682793,0.437225341796875,0.896879076957703,-0.0666478723287582,0.44019278883934,0.894554078578949,-0.0774810835719109,0.439047068357468,0.898018777370453,0.0282840579748154,0.450382113456726,0.89006769657135,0.0702525228261948,0.450326412916183,0.890361309051514,-0.0668044164776802,0.452313899993896,0.891416788101196,0.0280761234462261,0.509908199310303,0.857588768005371,-0.0673438012599945,0.510713875293732,0.856891334056854,0.0700628533959389,0.505266070365906,0.862200736999512,-0.0362808592617512,0.110352389514446,-0.0224508848041296,-0.993638932704926,-0.0288660693913698,0.059345543384552,-0.99782007932663,0.119596429169178,-0.00491395872086287,-0.992810428142548,
- -0.998449623584747,-0.00829517003148794,-0.0550431087613106,-0.582382678985596,-0.811414837837219,-0.0493596121668816,-0.215436965227127,-0.976033747196198,-0.0307412222027779,-0.441621482372284,-0.705987870693207,-0.553671002388,-0.181650280952454,-0.00917297787964344,-0.983320415019989,0.565084099769592,-0.446416467428207,-0.693824410438538,0.00336097180843353,-0.000132322966237552,-0.999994337558746,-0.01558359246701,0.0123110385611653,-0.999802768230438,0.0052346489392221,-0.00783244892954826,-0.999955654144287,-0.0304886400699615,0.0548840723931789,-0.998027145862579,0.104531690478325,-0.030546648427844,-0.994052350521088,-0.0187639500945807,0.0571451522409916,-0.998189628124237,-0.0145659549161792,0.0115071041509509,-0.999827802181244,-0.0209795497357845,0.0538022369146347,-0.998331189155579,0.102293372154236,-0.0336551666259766,-0.994184792041779,-0.0118017252534628,0.00932336319237947,-0.999886989593506,0.00387732870876789,-0.000152651729877107,-0.999992489814758,-0.0284369345754385,-0.0188442785292864,-0.999417960643768,-0.0236847382038832,0.0497187674045563,-0.998482406139374,-0.0118017252534628,0.00932336319237947,-0.999886989593506,-0.0284369345754385,-0.0188442785292864,-0.999417960643768,-0.0890277400612831,-0.0495451986789703,-0.99479615688324,-0.135245770215988,-0.0188941638916731,-0.990631937980652,-0.0698048323392868,-0.0541918501257896,-0.996087610721588,-0.0635551512241364,0.00495762936770916,-0.997966110706329,-0.135245770215988,-0.0188941638916731,-0.990631937980652,-0.0890277400612831,-0.0495451986789703,-0.99479615688324,-0.0714612081646919,-0.0588288679718971,-0.995707035064697,-0.142588227987289,-0.0301509760320187,-0.989322781562805,-0.224038183689117,-0.00994985364377499,-0.974529564380646,-0.0979815125465393,0.00385754113085568,-0.995180785655975,-0.0893354788422585,-0.0257859621196985,-0.99566775560379,-0.0669513642787933,0.00726311560720205,-0.997729897499084,-0.134684562683105,-0.0180351845920086,-0.990724384784698,-0.0669513642787933,0.00726311560720205,-0.997729897499084,-0.0893354788422585,-0.0257859621196985,-0.99566775560379,
- -0.104243084788322,-0.015741229057312,-0.994427263736725,-0.115912519395351,0.00456348620355129,-0.99324893951416,-0.117157563567162,-0.0316990241408348,-0.992607295513153,-0.16751067340374,-0.0686198398470879,-0.983479380607605,-0.231978759169579,-0.0255204327404499,-0.972386121749878,-0.230569437146187,-0.0337445177137852,-0.972470581531525,-0.169347286224365,0.028457148000598,-0.985145509243011,-0.23087652027607,-0.0237567517906427,-0.972693085670471,-0.166403993964195,-0.0669029951095581,-0.983785390853882,-0.0498579628765583,0.498236477375031,-0.865606486797333,0.00156100571621209,0.318344175815582,-0.947973906993866,-0.636304914951324,0.349309593439102,-0.687821865081787,-0.237290143966675,-0.0340406261384487,-0.970842242240906,-0.161288782954216,0.022956682369113,-0.986640334129334,-0.167033225297928,0.0157267414033413,-0.985825836658478,-0.294038504362106,0.114692479372025,-0.948887228965759,-0.332302033901215,-0.0161949079483747,-0.943033993244171,-0.348283261060715,0.0346190929412842,-0.936749875545502,-0.22716997563839,-0.0588383488357067,-0.972076058387756,-0.174396380782127,0.0206486769020557,-0.984459102153778,-0.168730333447456,0.0280357338488102,-0.985263466835022,-0.205963850021362,-0.025538744404912,-0.97822630405426,-0.204387605190277,0.0112654566764832,-0.978825211524963,-0.220145702362061,-0.0640860795974731,-0.97335958480835,-0.16445392370224,0.0140044139698148,-0.986285328865051,-0.217359140515327,-0.0661629140377045,-0.973846733570099,-0.200193330645561,0.0110342754051089,-0.979694306850433,0.00345407240092754,-0.0961504206061363,-0.995360851287842,0.397320449352264,-0.0218995306640863,-0.917418599128723,0.708715677261353,0.670480787754059,-0.21949391067028,-0.0134808113798499,0.000530674820765853,-0.999908983707428,0.00330101186409593,0.103137582540512,-0.994661629199982,-0.028321510180831,0.0346415787935257,-0.998998522758484,0.054483849555254,0.0789694413542748,-0.995387017726898,0.0343287959694862,0.0320934951305389,-0.998895168304443,0.0170280281454325,0.0583275817334652,-0.998152375221252,
- 0.00915320217609406,0.0264202132821083,-0.999608993530273,-0.00373048149049282,0.044658899307251,-0.998995423316956,0.0136046018451452,0.018415654078126,-0.999737858772278,-0.0942322537302971,0.0129007082432508,-0.995466649532318,-0.0648389384150505,-0.0287529081106186,-0.997481524944305,-0.0640255883336067,-0.0328715518116951,-0.997406721115112,-0.0946630835533142,-0.0542236901819706,-0.994031548500061,-0.0882211327552795,0.0169073548167944,-0.995957434177399,-0.0579678490757942,-0.028866495937109,-0.997901022434235,-0.087279736995697,0.0175344832241535,-0.996029615402222,-0.0855202674865723,-0.0595173798501492,-0.99455726146698,-0.0775891020894051,-0.0463831946253777,-0.995905876159668,-0.263478994369507,0.0281784329563379,-0.964253604412079,-0.238313660025597,-0.124434806406498,-0.963183581829071,-0.248777836561203,-0.091515377163887,-0.964227437973022,-0.206624493002892,-0.106649801135063,-0.972590446472168,-0.2279252409935,-0.0679793357849121,-0.971302688121796,-0.223716601729393,-0.0743931531906128,-0.971810936927795,-0.102229900658131,-0.0566979013383389,-0.993143677711487,-0.133086666464806,-0.0130936233326793,-0.991017937660217,-0.143708378076553,-0.00177959667053074,-0.989618480205536,-0.417530298233032,-0.907845973968506,0.0385250300168991,0.0900713875889778,-0.740913212299347,-0.665533423423767,-0.760225176811218,-0.420166313648224,-0.495497703552246,0.791279673576355,0.583266198635101,0.183512911200523,0.857166767120361,0.477028369903564,0.194188177585602,-0.12649792432785,0.82105278968811,0.556660413742065,-0.136783346533775,0.00360617553815246,-0.990594446659088,-0.0237461049109697,-0.00393964443355799,-0.999710261821747,-0.0950546562671661,-0.051331952214241,-0.994147717952728,-0.0253735911101103,0.000464168668258935,-0.999677956104279,-0.178806975483894,-0.0292097013443708,-0.983450591564178,-0.135027199983597,-0.0433784797787666,-0.989891886711121,-0.00781198358163238,0.013784690760076,-0.999874472618103,-0.0412555038928986,0.0435182563960552,-0.998200476169586,-0.123527228832245,0.00115449132863432,-0.992340505123138,
- -0.133794248104095,-0.0481986030936241,-0.989836454391479,-0.114545695483685,-0.0398181341588497,-0.992619693279266,-0.0221922621130943,-0.00814278330653906,-0.999720573425293,-0.125456377863884,0.00504139717668295,-0.992086350917816,-0.0375659093260765,0.050782322883606,-0.998003005981445,-0.00921212509274483,0.012741488404572,-0.999876499176025,-0.0313012078404427,0.0554936267435551,-0.997968375682831,-0.01615821570158,0.0364617630839348,-0.999204397201538,-0.00280317291617393,0.0175161231309175,-0.999842762947083,-0.124075748026371,-0.0250337179750204,-0.991957008838654,-0.133330270648003,-0.0500087104737759,-0.989809155464172,0.0248517543077469,0.125676438212395,-0.991759955883026,-0.0397955663502216,0.0395545028150082,-0.998424649238586,-0.0990884155035019,-0.00998929236084223,-0.995028495788574,-0.121036306023598,-0.00385735766030848,-0.992640614509583,-0.0938708558678627,-0.017311830073595,-0.995433866977692,-0.0356473997235298,0.0282988473773003,-0.99896377325058,-0.120853617787361,-0.0300398878753185,-0.992215692996979,-0.16704124212265,-0.0476910248398781,-0.984795808792114,-0.349889189004898,0.498893916606903,-0.792894959449768,-0.740314483642578,0.669010996818542,-0.0660208463668823,0.265405148267746,-0.963659226894379,-0.0303514748811722,0.580657005310059,-0.813399851322174,-0.0349021926522255,0.999142348766327,0.00754672102630138,-0.0407140292227268,-0.0234122555702925,0.0316722877323627,-0.999224066734314,-0.0384748578071594,0.0500983670353889,-0.998002946376801,-0.0411088801920414,0.0580910332500935,-0.997464537620544,-0.714045226573944,0.696931719779968,-0.0665255635976791,-0.256159961223602,-0.088265024125576,-0.96259617805481,-0.195969149470329,-0.0699883252382278,-0.978109359741211,-0.040537741035223,0.0584718883037567,-0.997465670108795,-0.0312258899211884,0.00690607959404588,-0.999488592147827,-0.0228808932006359,0.0320232398808002,-0.999225199222565,-0.0239775944501162,0.101234219968319,-0.994573652744293,-0.0717178285121918,0.027352798730135,-0.997049927711487,-0.0703235641121864,0.0385558046400547,-0.996778845787048,
- -0.485772281885147,0.871263265609741,0.0701826065778732,-0.482523590326309,0.873306512832642,-0.0671320036053658,-0.476064234972,0.878937602043152,-0.0288357045501471,-0.446152031421661,0.892464160919189,-0.066755972802639,-0.446336567401886,0.89210319519043,0.0702533274888992,-0.448071897029877,0.89355456829071,0.0281434543430805,-0.437526702880859,0.896731793880463,-0.0666516199707985,-0.439347863197327,0.897871792316437,0.0282794274389744,-0.44049397110939,0.894406914710999,-0.0774683356285095,-0.020198805257678,0.0720084086060524,-0.997199475765228,-0.542333483695984,0.837446570396423,-0.0675101801753044,-0.521824598312378,0.849870920181274,-0.0736107751727104,-0.511287868022919,0.405793398618698,-0.757572710514069,0.311140298843384,0.285133898258209,-0.906581819057465,-0.181097090244293,0.979796886444092,-0.0848641768097878,-0.674560964107513,-0.548272550106049,-0.494332730770111,0.36474996805191,-0.00445937318727374,-0.931094825267792,0.522838473320007,-0.779138445854187,-0.345808088779449,-0.118406139314175,-0.0338373631238937,-0.992388546466827,0.00495816953480244,-0.0162425879389048,-0.999855816364288,-0.0914527401328087,-0.0207014232873917,-0.995594203472137,0.0201616063714027,-0.00410918844863772,-0.999788284301758,-0.0139122875407338,0.000547726638615131,-0.999903082847595,-0.0121372891589999,-0.00796875637024641,-0.999894678592682,-0.0116062201559544,-0.0294534247368574,-0.999498784542084,-0.112241856753826,-0.0433821193873882,-0.992733478546143,-0.0594883039593697,0.0360042862594128,-0.997579514980316,-0.0372293666005135,0.00146572268567979,-0.999305665493011,-0.00704942783340812,-0.0258200857788324,-0.9996417760849,-0.054976798593998,0.0389946326613426,-0.997725903987885,0.0207014810293913,0.130244329571724,-0.991265773773193,-0.205000326037407,-0.0616554617881775,-0.976818025112152,-0.12544484436512,-0.0229041781276464,-0.991836190223694,-0.0740293934941292,0.00291454419493675,-0.997251808643341,-0.102786391973495,0.00719220004975796,-0.994677543640137,-0.0752139836549759,-0.0284328982234001,-0.996761977672577,
- -0.789024174213409,0.0434895418584347,-0.612820982933044,-0.534908413887024,0.676852822303772,-0.505710661411285,-0.603185594081879,0.784791648387909,0.142370000481606,-0.271729648113251,-0.0196066685020924,-0.962173879146576,-0.291633725166321,-0.12097705155611,-0.948848962783813,-0.288188546895981,-0.128171861171722,-0.948957085609436,-0.209976807236671,-0.068337507545948,-0.97531521320343,-0.221644014120102,0.0122165968641639,-0.97505122423172,-0.2236098498106,-0.0218872651457787,-0.974432945251465,-0.236085027456284,-0.0828338488936424,-0.96819543838501,-0.00603038305416703,0.159525528550148,-0.987175405025482,-0.260953187942505,-0.0453976429998875,-0.964283406734467,-0.262700021266937,-0.0466333255171776,-0.963750004768372,-0.23463299870491,-0.087097130715847,-0.968174278736115,-0.237757906317711,-0.0839769169688225,-0.967687487602234,-0.447462379932404,0.602948486804962,-0.660477519035339,-0.51048219203949,0.0281368438154459,-0.859427869319916,0.047627080231905,0.163144692778587,-0.985451936721802,-0.226224854588509,0.0124690840020776,-0.973995268344879,-0.214448422193527,-0.0717328637838364,-0.974097788333893,-0.242199927568436,-0.0321742258965969,-0.969692766666412,0.0823546051979065,-0.377269804477692,-0.922434389591217,0.0732577443122864,-0.419960767030716,-0.90458071231842,0.147218719124794,-0.962437510490417,-0.228124707937241,-0.342900216579437,0.00968881696462631,-0.939321875572205,-0.410151213407516,-0.0970047786831856,-0.906844139099121,-0.400573313236237,-0.0857449769973755,-0.912243843078613,-0.428514629602432,-0.081822358071804,-0.899822354316711,-0.362382978200912,0.0234660562127829,-0.931733846664429,-0.3585085272789,0.0188553463667631,-0.933336019515991,-0.33648806810379,0.00518603669479489,-0.941673457622528,-0.265277802944183,0.108458660542965,-0.958052515983582,-0.342210292816162,0.00546096544712782,-0.939607620239258,-0.286960482597351,0.125997588038445,-0.949620068073273,-0.358461737632751,0.0206813123077154,-0.933315336704254,-0.311189413070679,0.0942386165261269,-0.945663928985596,-0.361529439687729,0.187036901712418,-0.913407742977142,
- -0.379074245691299,0.144540056586266,-0.914008140563965,0.160525232553482,0.932350873947144,-0.323965311050415,-0.42624095082283,-0.0426582768559456,-0.903603434562683,-0.438009083271027,-0.0738655254244804,-0.895930767059326,-0.368100851774216,0.0268017780035734,-0.929399490356445,-0.249510824680328,0.0477832965552807,-0.967192411422729,-0.341711938381195,0.00505348248407245,-0.939791262149811,-0.264764249324799,0.108044348657131,-0.958241283893585,-0.341745674610138,0.00508109759539366,-0.939778745174408,-0.27132722735405,-0.0161598194390535,-0.962351500988007,-0.403934389352798,0.0319670327007771,-0.914229273796082,0.379576116800308,-0.443631142377853,-0.811857998371124,-0.25953996181488,0.0188322495669127,-0.965548753738403,0.384863436222076,-0.380436956882477,-0.840920865535736,-0.318231761455536,-0.946301996707916,0.0569305196404457,-0.762175381183624,0.559653639793396,0.325386792421341,-0.76679927110672,0.603453516960144,0.218775615096092,-0.394759505987167,-0.505971729755402,-0.766914308071136,0.489728420972824,-0.486758172512054,-0.723348259925842,-0.403704047203064,-0.210634395480156,-0.890312433242798,-0.193310216069222,-0.119626522064209,-0.973817586898804,0.249384209513664,-0.028989240527153,-0.967970728874207,0.656375706195831,0.665915846824646,-0.354579985141754,-0.364098489284515,-0.00176026730332524,-0.931358814239502,-0.39313155412674,-0.0279424209147692,-0.919057548046112,-0.391398221254349,0.00708188582211733,-0.920194149017334,-0.271301835775375,0.00718410918489099,-0.96246749162674,-0.328492939472198,0.0475004054605961,-0.943311274051666,-0.261411070823669,0.013348656706512,-0.965135276317596,-0.34225532412529,-0.0413133427500725,-0.938698291778564,-0.328492939472198,0.0475004054605961,-0.943311274051666,-0.271301835775375,0.00718410918489099,-0.96246749162674,-0.344306945800781,0.0225696060806513,-0.938585817813873,-0.401250511407852,0.0404069311916828,-0.915076673030853,-0.268532574176788,-0.00776484655216336,-0.963239312171936,-0.141073569655418,0.598141729831696,-0.788875639438629,-0.0915348902344704,0.419674575328827,-0.903047382831573,
- -0.81304007768631,0.408276617527008,-0.415061444044113,-0.388503223657608,-0.0499765686690807,-0.920091092586517,-0.413055717945099,-0.0326730012893677,-0.910119593143463,-0.423627376556396,-0.0334520116448402,-0.905218660831451,-0.395454734563828,-0.0278040412813425,-0.918064534664154,-0.370427548885345,0.00283748377114534,-0.928857028484344,-0.357401371002197,0.0235414002090693,-0.933654129505157,-0.415679186582565,-0.0372334644198418,-0.908748865127563,-0.352604627609253,0.0200637578964233,-0.935557305812836,-0.365632891654968,-0.000647236534859985,-0.930758893489838,-0.360821336507797,0.0260264668613672,-0.932271838188171,-0.412106215953827,-0.0310275629162788,-0.91060733795166,-0.387554079294205,-0.0483703538775444,-0.920577049255371,-0.32545530796051,0.0522320792078972,-0.944113671779633,-0.344149678945541,-0.0400015935301781,-0.938062310218811,-0.321605652570724,-0.00219485932029784,-0.946871161460876,-0.343217760324478,0.0132843973115087,-0.939162015914917,-0.319375038146973,0.00268012518063188,-0.947624623775482,-0.320695459842682,-0.032097265124321,-0.946638345718384,-0.300528228282928,0.00154452072456479,-0.953771650791168,-0.321605652570724,-0.00219485932029784,-0.946871161460876,-0.344149678945541,-0.0400015935301781,-0.938062310218811,-0.886059880256653,-0.203573346138,-0.416480243206024,-0.879018723964691,-0.244199156761169,-0.409503251314163,-0.214617803692818,-0.959349632263184,-0.183268770575523,-0.994402766227722,0.0481113083660603,-0.0940671935677528,-0.998251438140869,-0.0302751790732145,-0.0507691465318203,-0.998031139373779,-0.0143434144556522,-0.0610597431659698,-0.0933884158730507,0.994724810123444,-0.0424402058124542,-0.853952646255493,0.305694073438644,0.421089142560959,-0.0550740510225296,0.998474895954132,-0.00384464161470532,-0.9992436170578,-0.0199182331562042,-0.0334013439714909,-0.995418310165405,0.0575329810380936,-0.0763713121414185,-0.997239112854004,0.0346195064485073,-0.0656935349106789,-0.711966514587402,-0.315959811210632,-0.62711489200592,-0.700566112995148,-0.277511328458786,-0.657415151596069,
- -0.00420010881498456,0.355638861656189,-0.93461412191391,-0.999284386634827,-0.0193730648607016,-0.0324871353805065,-0.997278332710266,0.0351366326212883,-0.0648177117109299,-0.998719871044159,0.0253883823752403,-0.0437520742416382,-0.994376242160797,-0.105641111731529,0.00747443409636617,-0.630333602428436,0.409183502197266,0.659733593463898,-0.648042857646942,0.390075474977493,0.654126584529877,-0.69066709280014,-0.327797919511795,-0.644614219665527,0.0420794151723385,-0.110852465033531,-0.992945671081543,-0.977491319179535,0.152279138565063,-0.146019816398621,-0.996047616004944,0.00809295102953911,-0.0884524583816528,-0.998694539070129,0.0259805414825678,-0.043982058763504,-0.997096240520477,0.032839447259903,-0.0687073394656181,-0.874649107456207,0.363471060991287,-0.32074561715126,-0.964100897312164,0.206387594342232,-0.167073681950569,0.0447127297520638,-0.139758825302124,-0.98917555809021,0.0922249779105186,-0.750059604644775,-0.654908537864685,-0.320332378149033,-0.452667206525803,-0.832153558731079,-0.803219318389893,-0.523138880729675,0.284894108772278,-0.996101498603821,0.00685209594666958,-0.0879479944705963,-0.998593628406525,0.0260752886533737,-0.0461631081998348,-0.9987433552742,0.0248309299349785,-0.0435355603694916,-0.998703360557556,0.0241095572710037,-0.0448370352387428,-0.996239542961121,0.00347228674218059,-0.0865732058882713,-0.996473610401154,-0.00226965383626521,-0.0838773027062416,-0.721265375614166,0.636732757091522,-0.272667586803436,-0.826419830322266,0.455191224813461,-0.331407964229584,-0.666147351264954,0.398007988929749,0.630743503570557,-0.998361349105835,-0.0542157553136349,-0.0183111615478992,-0.998637855052948,0.025294441729784,-0.0456363707780838,-0.996407866477966,-0.0010767977219075,-0.0846782624721527,-0.998773157596588,0.0228058975189924,-0.0439575053751469,-0.998001039028168,-0.0578983910381794,-0.0253324620425701,-0.994279384613037,0.0611956268548965,-0.0875421091914177,-0.985479414463043,0.0425912663340569,0.164366483688354,-0.126070305705071,-0.743655920028687,0.656568467617035,
- -0.89087438583374,0.00742824329063296,0.454189032316208,-0.997970223426819,-0.0185936018824577,-0.0609078258275986,-0.994464993476868,0.063009075820446,-0.0840786918997765,-0.998187243938446,-0.0560759305953979,-0.0218570940196514,-0.99424284696579,0.0608542636036873,-0.0881937369704247,-0.997800827026367,-0.0187174752354622,-0.0635862872004509,-0.99640429019928,0.0522954612970352,-0.0666612088680267,-0.903921723365784,-0.116293087601662,-0.411584347486496,-0.77116072177887,0.0174497477710247,-0.636401355266571,-0.0184353291988373,0.585322797298431,-0.810590744018555,-0.415372252464294,0.900488257408142,-0.128789752721787,-0.353969782590866,0.900853157043457,-0.251334488391876,-0.383052408695221,0.902560234069824,-0.19661095738411,-0.363976299762726,0.89539635181427,-0.256489455699921,-0.425668656826019,0.894913911819458,-0.133922845125198,-0.409205913543701,0.896549761295319,-0.16955554485321,-0.361427545547485,0.896802544593811,-0.255177468061447,-0.406685292720795,0.897938191890717,-0.168268606066704,-0.362864106893539,0.895113348960876,-0.259040027856827,-0.134005427360535,0.407020837068558,-0.903535604476929,0.721213221549988,0.259763091802597,-0.642163991928101,-0.128167822957039,0.980302095413208,-0.150269150733948,0.450709998607636,0.0280259419232607,-0.89223051071167,-0.455435276031494,0.837093114852905,-0.303073912858963,-0.43900054693222,0.849462687969208,-0.292731463909149,-0.650475203990936,0.646742463111877,-0.398253947496414,0.230639308691025,-0.124757789075375,-0.965008318424225,0.267401307821274,-0.0643836930394173,-0.961431920528412,-0.294903725385666,-0.443762183189392,-0.846230983734131,-0.80316948890686,0.430083781480789,-0.412246227264404,-0.77605664730072,0.437659561634064,-0.454081743955612,0.848865926265717,-0.299317955970764,0.435701102018356,0.753011465072632,0.613752543926239,0.237237319350243,0.575226008892059,-0.79092001914978,0.208711668848991,0.472311973571777,-0.0191676840186119,-0.881223022937775,0.417241662740707,0.0597423575818539,-0.90682989358902,0.446400940418243,0.0248063690960407,-0.894489169120789,
- 0.489861696958542,0.0476189665496349,-0.870498657226563,0.467103451490402,-0.0230496600270271,-0.883902192115784,0.441180616617203,0.0209198202937841,-0.897174477577209,0.456715732812881,-0.0307376589626074,-0.889081537723541,0.478259295225143,0.0562537424266338,-0.876415193080902,0.435146629810333,-0.0208054129034281,-0.900119185447693,0.535911440849304,0.103670224547386,-0.837885081768036,0.504824280738831,0.0288323517888784,-0.862740516662598,0.50322949886322,0.00426433840766549,-0.864142298698425,0.596916854381561,-0.0439711324870586,-0.801097393035889,0.550258278846741,0.0412896238267422,-0.833973050117493,0.553934335708618,-0.00198483094573021,-0.832558035850525,0.366658866405487,0.0165045540779829,-0.930209040641785,0.416831344366074,-0.0596153326332569,-0.907026827335358,0.423548221588135,-0.0666592344641685,-0.903417766094208,0.601287841796875,-0.0437206737697124,-0.797835469245911,0.550258278846741,0.0412896238267422,-0.833973050117493,0.596916854381561,-0.0439711324870586,-0.801097393035889,0.536191403865814,0.0273888893425465,-0.843651950359344,0.536090433597565,0.029948091134429,-0.84362918138504,0.587691128253937,-0.0562629587948322,-0.807126760482788,0.387787073850632,0.0343855768442154,-0.921107411384583,0.443752557039261,-0.050544623285532,-0.894722819328308,0.454411536455154,0.0824898555874825,-0.88696426153183,0.587418138980865,-0.0565122254192829,-0.807308077812195,0.495332628488541,-0.0200193505734205,-0.868472695350647,0.535894632339478,0.0271263681352139,-0.843849003314972,0.183929607272148,-0.128835454583168,-0.974459528923035,0.404948979616165,0.189760640263557,-0.894431352615356,0.205471143126488,0.132487758994102,-0.969653964042664,0.648160398006439,-0.0340199545025826,-0.76074355840683,0.63481205701828,-0.0116340341046453,-0.7725790143013,0.636393129825592,-0.0106114652007818,-0.77129203081131,0.64735347032547,-0.111132919788361,-0.754044532775879,0.659735560417175,-0.0237969569861889,-0.751120984554291,0.648039579391479,-0.000378747266950086,-0.761606574058533,0.658295392990112,-0.0250798854976892,-0.75234180688858,
- 0.646737217903137,-0.11067196726799,-0.754640758037567,0.658367037773132,-0.0852843075990677,-0.747849881649017,0.714149415493011,0.0703406408429146,-0.696450173854828,0.694093525409698,0.0190155729651451,-0.719633638858795,0.702294170856476,0.0156694073230028,-0.711714386940002,0.729192614555359,-0.0513797998428345,-0.68237692117691,0.700433254241943,0.0138757862150669,-0.713583052158356,0.676308393478394,0.0353229194879532,-0.735771179199219,0.73174375295639,-0.0147173888981342,-0.681420922279358,0.711175680160522,0.0243243519216776,-0.702593386173248,0.740481734275818,-0.0407088957726955,-0.670842468738556,0.629848122596741,-0.0164962001144886,-0.776543140411377,0.643073618412018,-0.0384500920772552,-0.764838516712189,0.642744898796082,-0.0391280576586723,-0.765080511569977,0.717053174972534,0.0301409717649221,-0.696366548538208,0.737329125404358,-0.00836832728236914,-0.675481855869293,0.713330566883087,0.0356403104960918,-0.699920952320099,0.644053161144257,-0.0378333441913128,-0.764044582843781,0.676604032516479,-0.0336559973657131,-0.735577583312988,0.631157875061035,-0.0152172837406397,-0.775505244731903,0.506669700145721,-0.0514910444617271,-0.860601246356964,0.596041321754456,-0.0485908053815365,-0.801482200622559,0.66386604309082,0.0206396449357271,-0.747566640377045,0.730896770954132,0.0371477454900742,-0.681476294994354,0.714771449565887,0.037287101149559,-0.698363423347473,0.738778829574585,-0.00670549692586064,-0.673914611339569,0.734897911548615,0.0205964334309101,-0.677865028381348,0.670970141887665,-0.00848757103085518,-0.741435825824738,0.713563799858093,0.0359064713120461,-0.699669599533081,0.87600839138031,0.478625118732452,0.0593907907605171,0.599980890750885,0.37117263674736,-0.708698630332947,0.872453391551971,0.485589802265167,0.0550242364406586,0.506669700145721,-0.0514910444617271,-0.860601246356964,0.66386604309082,0.0206396449357271,-0.747566640377045,0.616961538791656,0.0188150312751532,-0.78676849603653,0.73535019159317,0.0186648350208998,-0.677430212497711,0.654371798038483,-0.0546716786921024,-0.754193961620331,
- 0.671416640281677,-0.0104084685444832,-0.741007089614868,0.536598742008209,0.345467895269394,-0.769879162311554,0.470042556524277,0.567147135734558,-0.676316618919373,0.883317470550537,0.468149483203888,0.0242182686924934,0.652528584003448,-0.0508093647658825,-0.756058812141418,0.736630082130432,0.0131271574646235,-0.676168441772461,0.736510992050171,0.0261937137693167,-0.675918221473694,0.29254823923111,0.0354456827044487,-0.955593705177307,0.647680759429932,0.0271800700575113,-0.761426866054535,-0.385702222585678,0.779063701629639,-0.494260609149933,0.611332535743713,0.0290996544063091,-0.790838599205017,0.534446716308594,-0.0346910208463669,-0.844489932060242,0.503227889537811,-0.0417656116187572,-0.863143861293793,0.381386250257492,-0.104350738227367,-0.918507218360901,0.493386924266815,-0.0147735727950931,-0.869684457778931,0.511893033981323,0.00441211322322488,-0.85903787612915,0.711014926433563,0.0732661113142967,-0.699349582195282,0.722825467586517,0.00978268776088953,-0.690961420536041,0.693157315254211,0.0685895010828972,-0.717515468597412,0.723286151885986,0.0102812275290489,-0.690471887588501,0.712067544460297,0.0733577832579613,-0.698268175125122,0.717709004878998,-0.0157662760466337,-0.696164667606354,0.699150860309601,0.0743006318807602,-0.711103022098541,0.728599190711975,0.016070244833827,-0.684751749038696,0.712890863418579,0.0466308258473873,-0.699722945690155,0.800471127033234,-0.00782171916216612,-0.599320292472839,0.782014489173889,0.121061436831951,-0.611389756202698,0.794686555862427,0.0955697447061539,-0.599449515342712,0.708783686161041,0.0425806902348995,-0.704139590263367,0.734564125537872,0.0305031109601259,-0.677853345870972,0.695103049278259,0.0704364627599716,-0.715451240539551,0.735993146896362,0.0273442100733519,-0.676436543464661,0.694907069206238,0.029144449159503,-0.718508720397949,0.6520054936409,-0.0497185289859772,-0.756582379341125,0.657552242279053,-0.0370462760329247,-0.752497732639313,0.637154698371887,-0.0232279915362597,-0.770385980606079,0.65698379278183,-0.0208455119282007,-0.753616452217102,
- 0.580922961235046,0.0360732451081276,-0.813158810138702,0.644870460033417,-0.0350592508912086,-0.76348751783371,0.624922454357147,-0.0336877480149269,-0.779959678649902,0.622591614723206,-0.0356585383415222,-0.781734049320221,0.625976085662842,-0.0392039194703102,-0.778856217861176,0.578989505767822,0.0342038795351982,-0.814617395401001,0.615581929683685,0.0213519912213087,-0.787783563137054,0.546821117401123,0.00379257812164724,-0.837240874767303,0.538712918758392,-0.0423219092190266,-0.841425716876984,0.562531471252441,0.0184864122420549,-0.826569139957428,0.555425047874451,-0.0435633696615696,-0.830424726009369,0.554038643836975,0.00651051476597786,-0.832465469837189,0.47240075469017,-0.0904562473297119,-0.876729846000671,0.480429381132126,-0.0553408712148666,-0.875285685062408,0.470236301422119,0.00136850168928504,-0.882539510726929,0.509462654590607,-0.0577024631202221,-0.858556032180786,0.513215124607086,0.00217398931272328,-0.858257234096527,0.499832361936569,-0.0385203324258327,-0.865265130996704,0.511321485042572,-0.0562406107783318,-0.857547402381897,0.501396834850311,-0.0371482819318771,-0.86441957950592,0.492739856243134,-0.0893060564994812,-0.865581810474396,0.511893033981323,0.00441211322322488,-0.85903787612915,0.501411497592926,-0.0639994740486145,-0.862838685512543,0.381386250257492,-0.104350738227367,-0.918507218360901,0.364346385002136,-0.919634759426117,0.146709308028221,0.340917110443115,-0.17928059399128,-0.922840297222137,0.721778988838196,-0.0710325017571449,-0.688468933105469,0.496925234794617,-0.0674842000007629,-0.865165412425995,0.518255949020386,-0.824923396110535,0.225637197494507,0.620208919048309,-0.535525500774384,-0.57319575548172,0.441909492015839,0.895484864711761,0.0531326457858086,0.40460404753685,0.896147012710571,0.182252779603004,0.416823208332062,0.89778059720993,0.142297700047493,0.405735313892365,0.895567953586578,0.182583898305893,0.442716747522354,0.895072340965271,0.053362924605608,0.433140009641647,0.896689414978027,0.0913114920258522,0.403309881687164,0.896807134151459,0.181873843073845,
- 0.430689960718155,0.897942125797272,0.0905876234173775,0.403349071741104,0.89444899559021,0.193055793642998,0.296725988388062,0.408477127552032,0.863191962242126,-0.506621181964874,0.311953216791153,0.803753793239594,0.152504861354828,0.979605495929718,0.130826413631439,-0.216059133410454,0.109134770929813,0.970261871814728,0.504431307315826,0.837268590927124,0.211022317409515,0.483056247234344,0.849726796150208,0.211236923933029,-0.137687593698502,0.0356620401144028,0.98983359336853,-0.132459565997124,0.0518600530922413,0.989830791950226,-0.195307850837708,0.127292647957802,0.972446084022522,-0.204320937395096,0.0659538879990578,0.976679623126984,-0.187872245907784,0.0897771492600441,0.978081941604614,-0.19099460542202,0.00789396744221449,0.981559336185455,0.213718131184578,0.968873500823975,0.124934896826744,-0.291540712118149,0.161218017339706,0.942874729633331,-0.294493168592453,0.168633937835693,0.940657436847687,-0.197277367115021,0.0613633990287781,0.97842538356781,-0.179844751954079,0.0788601264357567,0.980528891086578,-0.18046572804451,0.0846986323595047,0.979927659034729,0.216859817504883,-0.221804335713387,0.950670659542084,0.263918608427048,0.71168315410614,0.65104079246521,0.797231197357178,0.530728697776794,0.287662118673325,-0.106048233807087,0.0611956603825092,0.992476224899292,-0.124923519790173,0.0363376922905445,0.991500735282898,-0.134810000658035,0.0208646357059479,0.990651786327362,-0.0242489259690046,0.00212475913576782,0.999703705310822,-0.135468751192093,0.0455637872219086,0.989733397960663,-0.112462610006332,0.0267311166971922,0.993296325206757,-0.124923519790173,0.0363376922905445,0.991500735282898,-0.106048233807087,0.0611956603825092,0.992476224899292,-0.0246714390814304,0.000916966528166085,0.999695181846619,-0.0255361199378967,-0.00155515724327415,0.999672710895538,-0.121899262070656,0.0310329236090183,0.992057323455811,-0.138272553682327,0.0401025637984276,0.989582002162933,-0.0622019693255425,-0.07697494328022,0.995090842247009,-0.154429569840431,0.00840195640921593,0.98796808719635,
- -0.145004451274872,-0.00336736906319857,0.989425301551819,-0.125848263502121,0.0363439619541168,0.99138355255127,-0.105459310114384,0.0607448928058147,0.992566585540771,-0.135745197534561,0.0214681793004274,0.990511178970337,-0.288018345832825,0.00637082243338227,0.957603812217712,-0.211810871958733,0.0939892083406448,0.972780644893646,-0.223623991012573,0.0785598531365395,0.971504330635071,-0.105096772313118,0.0225069541484118,0.994207262992859,-0.14551605284214,0.0781459286808968,0.986264824867249,-0.118141382932663,0.0205233972519636,0.992784678936005,-0.0353050194680691,0.0167735870927572,0.999235808849335,-0.0845001190900803,0.00880268216133118,0.996384680271149,-0.0263658799231052,0.00304725393652916,0.999647736549377,-0.0620451271533966,0.0419543199241161,0.997191190719604,-0.0840842947363853,0.00852631311863661,0.996422171592712,-0.0367662683129311,0.0159893520176411,0.999195992946625,-0.0537480525672436,0.0363439172506332,0.997892916202545,-0.0623074769973755,0.0277458727359772,0.997671246528625,-0.0756181851029396,0.00290196854621172,0.99713271856308,0.0437226966023445,-0.0850070714950562,0.995420575141907,0.063937246799469,-0.0432337485253811,0.997017085552216,0.00710598519071937,-0.023130351677537,0.999707221984863,0.0135104106739163,-0.195655345916748,0.980579674243927,0.0962519943714142,-0.0650846809148788,0.993226826190948,0.116172343492508,-0.0352213084697723,0.992604374885559,-0.00610981183126569,-0.1254593282938,0.992079973220825,0.056626845151186,-0.0382905229926109,0.997660875320435,-0.0296197328716516,-0.168212860822678,0.985305607318878,0.031019477173686,-0.0209750719368458,0.999298691749573,-0.0323917791247368,-0.104997232556343,0.993944942951202,0.0214789286255836,-0.036159485578537,0.999115288257599,-0.0350526235997677,-0.10291749984026,0.994072079658508,-0.0296528693288565,-0.0133316740393639,0.999471366405487,0.0189492404460907,-0.0342332683503628,0.999234199523926,-0.0323619544506073,-0.0210874564945698,0.999253749847412,-0.0337998680770397,-0.103896841406822,0.994013607501984,-0.0023043833207339,-0.0319003611803055,0.999488413333893,
- -0.635854542255402,0.431971818208694,0.639600932598114,0.0939426943659782,0.257787615060806,0.961623907089233,-0.641207218170166,0.420941978693008,0.641608238220215,-0.00192107376642525,-0.0307513568550348,0.999525308609009,0.00746454717591405,-0.0315311774611473,0.999474883079529,-0.0319782420992851,-0.0199886411428452,0.99928867816925,-0.240490719676018,-0.402034997940063,0.883477389812469,-0.149010360240936,-0.468797236680985,0.870646357536316,0.172217756509781,-0.0952296033501625,0.980444967746735,0.0157223716378212,-0.0190359205007553,0.999695181846619,-0.101960480213165,0.0604279451072216,0.992951512336731,-0.0228263139724731,0.00619054958224297,0.999720275402069,0.585059881210327,-0.0127699142321944,0.810889542102814,0.109452441334724,-0.0535528510808945,0.99254834651947,0.627096056938171,0.778555870056152,0.0245214104652405,0.0161781460046768,-0.0183459855616093,0.999700784683228,-0.0421229340136051,-0.0173400491476059,0.998962044715881,-0.101507790386677,0.0610922202467918,0.992957174777985,-0.0623329989612103,-0.0771370902657509,0.995070099830627,-0.145308300852776,-0.00382220139726996,0.989379048347473,-0.15064163506031,0.0660148337483406,0.986381947994232,0.0158523079007864,-0.0157441012561321,0.999750375747681,-0.000500482216011733,-0.0972069203853607,0.995264172554016,0.0542650818824768,-0.0169980134814978,0.998381972312927,-0.00424464093521237,-0.0944787263870239,0.99551784992218,0.0117338513955474,-0.0157449953258038,0.999807178974152,0.0100142750889063,0.0394950956106186,0.999169588088989,0.0718913450837135,-0.010617726482451,0.997356057167053,-0.0199491530656815,-0.0729431360960007,0.99713659286499,0.0625831708312035,-0.0225023292005062,0.997786045074463,0.048013623803854,-0.0128624914214015,0.998763859272003,-0.00670688692480326,-0.0926834717392921,0.995673060417175,0.0571986027061939,-0.000644291401840746,0.998362600803375,-0.0761959627270699,0.0380271337926388,0.996367573738098,-0.0465337298810482,0.0694276094436646,0.996501088142395,-0.108174331486225,-0.0179081466048956,0.993970632553101,-0.062799483537674,-0.00153035367839038,0.998025000095367,
- 0.0195930041372776,-0.0131757948547602,0.999721229076386,-0.0230507254600525,0.0536169819533825,0.998295485973358,-0.036977794021368,0.0387312658131123,0.998565256595612,-0.0599761158227921,-0.00369114638306201,0.998193085193634,-0.0199871584773064,0.0515520870685577,0.998470306396484,-0.0682671591639519,0.00265596527606249,0.997663557529449,-0.0471221357584,0.038554958999157,0.998144805431366,-0.0465652272105217,0.0213910806924105,0.998686194419861,-0.123327426612377,0.0449452847242355,0.99134773015976,-0.129781499505043,0.0172872990369797,0.991392016410828,-0.130495846271515,0.0328468382358551,0.990904688835144,-0.211760729551315,-0.051762480288744,0.975949823856354,-0.158595487475395,0.0721617788076401,0.984703063964844,-0.216154634952545,0.0282112583518028,0.975951492786407,-0.237181335687637,-0.0478917919099331,0.970284283161163,-0.153981745243073,0.0685955137014389,0.985689759254456,-0.196759656071663,-0.0509426333010197,0.979127407073975,-0.156043767929077,0.0701891630887985,0.985253155231476,-0.239136263728142,-0.0465074889361858,0.969871699810028,-0.073352687060833,-0.0907739549875259,0.993166387081146,-0.381152033805847,-0.921382188796997,-0.0760134309530258,-0.114326409995556,-0.132424592971802,0.984577775001526,-0.6374152302742,-0.0703608766198158,0.767301201820374,0.0536851137876511,-0.240626469254494,0.969132006168365,-0.102613605558872,-0.994713187217712,0.00401633279398084,-0.439188063144684,-0.543495237827301,0.715350925922394,-0.116519525647163,0.887410879135132,-0.446010202169418,0.0340865105390549,0.886835038661957,-0.460827261209488,-0.0679640993475914,0.889256834983826,-0.452330857515335,0.0347670428454876,0.890312492847443,-0.454020798206329,-0.115813799202442,0.890931248664856,-0.439122885465622,-0.0110154775902629,0.892581224441528,-0.450752288103104,-0.114705443382263,0.896284341812134,-0.428388893604279,-0.119138136506081,0.894421994686127,-0.431063383817673,-0.00991062261164188,0.897923767566681,-0.440039396286011,-0.119006708264351,0.895635902881622,-0.428571760654449,-0.116738967597485,0.886298060417175,-0.448160469532013,
- -0.963318943977356,0.143965303897858,0.226474270224571,-0.990080177783966,0.0618132241070271,0.126175776124001,-0.993543565273285,0.0569046139717102,0.0981482565402985,-0.123409032821655,0.847836673259735,-0.515697002410889,-0.976724863052368,0.105661243200302,0.186666026711464,-0.113839291036129,0.900323867797852,-0.42006853222847,-0.773859620094299,0.521875083446503,-0.358869999647141,-0.994383037090302,0.0411092676222324,0.0975324809551239,-0.992475092411041,0.00586456572636962,0.122306346893311,-0.994460642337799,0.0522136949002743,0.0912239328026772,-0.991998970508575,-0.111788347363472,-0.0586634092032909,-0.992871105670929,-0.0872561559081078,-0.081199586391449,-0.939873814582825,0.0967350751161575,-0.327535510063171,-0.998328566551209,-0.0333377122879028,0.0472085997462273,-0.997820258140564,-0.041339285671711,0.051437109708786,-0.999547183513641,-0.00833916664123535,0.0289149656891823,-0.948992311954498,0.0185406915843487,-0.314753621816635,-0.974233984947205,0.149374887347221,0.1689832508564,-0.997818768024445,-0.0221406165510416,0.0621893182396889,-0.964139938354492,-0.0394095480442047,0.262452036142349,-0.979360103607178,0.0546011030673981,0.19460853934288,-0.980767965316772,0.068787582218647,0.182654067873955,-0.964139938354492,-0.0394095480442047,0.262452036142349,-0.980767965316772,0.068787582218647,0.182654067873955,-0.976167917251587,0.0394804663956165,0.213395074009895,-0.972911596298218,0.0717072263360024,0.21977511048317,-0.95815521478653,-0.0213645249605179,0.28545081615448,-0.958276391029358,-0.028130242601037,0.284456044435501,-0.943161606788635,0.0158125255256891,0.331958115100861,-0.929179072380066,-0.0378649979829788,0.367685377597809,-0.941094040870667,0.00945003237575293,0.338012933731079,-0.996203303337097,0.0371065810322762,-0.0787533074617386,-0.973380029201508,0.159256100654602,0.164830267429352,-0.948167622089386,0.0284936483949423,-0.316490650177002,-0.926119267940521,-0.0319191254675388,0.375878036022186,-0.940747797489166,0.0210791099816561,0.33845117688179,-0.904946327209473,-0.0889529958367348,0.41612434387207,
- -0.960082709789276,-0.0945777222514153,0.263241827487946,-0.902655601501465,-0.0838946178555489,0.422107547521591,-0.938312292098999,0.0262407530099154,0.344791918992996,-0.91497004032135,-0.0117263551801443,0.403351336717606,-0.895507335662842,-0.0688591077923775,0.439687460660934,-0.890538215637207,-0.0846515074372292,0.446962863206863,-0.839205682277679,-0.475260198116302,-0.264313846826553,-0.11694461107254,-0.989356577396393,0.0865885019302368,-0.0733263269066811,-0.996835827827454,0.0306847225874662,0.358494341373444,-0.182143673300743,0.915590345859528,0.118629790842533,0.530033349990845,0.839637935161591,0.095743902027607,0.590211570262909,0.80155074596405,0.409341484308243,0.380220502614975,0.829380452632904,0.373673766851425,0.625318706035614,0.685087203979492,0.203935220837593,0.889622807502747,-0.408634215593338,-0.910111904144287,-0.100863046944141,0.401899218559265,-0.966041266918182,-0.0608047880232334,0.251131594181061,-0.892793715000153,0.0127821722999215,0.450284391641617,-0.0321485474705696,-0.615220606327057,0.787699222564697,0.409341484308243,0.380220502614975,0.829380452632904,0.203935220837593,0.889622807502747,-0.408634215593338,-0.892806470394135,0.0128835001960397,0.450256168842316,-0.966044127941132,-0.0607863664627075,0.251124918460846,-0.931297302246094,-0.00943348091095686,0.364137798547745,-0.798202812671661,0.12216267734766,0.589871823787689,-0.885927557945251,-0.0334241837263107,0.462617725133896,-0.913369059562683,-0.0711197406053543,0.400872766971588,-0.944186449050903,-0.0513453111052513,0.32538565993309,-0.928627073764801,-0.0198566820472479,0.370482802391052,-0.963429570198059,-0.0765188485383987,0.256804049015045,-0.768834710121155,0.635617256164551,-0.0698846876621246,-0.98619681596756,-0.0245560593903065,-0.163746222853661,-0.378631472587585,0.679989516735077,-0.627895295619965,-0.976470947265625,0.0469624996185303,0.210473403334618,-0.981189429759979,0.0271391998976469,0.191130325198174,-0.965951800346375,0.067349910736084,0.249802112579346,-0.976139962673187,0.0388573445379734,0.21363776922226,
- -0.996360063552856,-0.0838139951229095,0.0155569165945053,-0.982467532157898,0.0412497594952583,0.181813627481461,-0.926323890686035,0.00617394410073757,0.376677453517914,-0.844346284866333,0.514593303203583,0.149242520332336,-0.708358287811279,0.185928255319595,0.680925250053406,-0.988027036190033,-0.029639258980751,0.15140700340271,-0.982467532157898,0.0412497594952583,0.181813627481461,-0.996360063552856,-0.0838139951229095,0.0155569165945053,-0.773858428001404,-0.517589271068573,0.365026742219925,-0.00183442293200642,-0.946357369422913,0.323116928339005,-0.986377656459808,-0.159701243042946,-0.0394318997859955,-0.98723304271698,-0.155731111764908,-0.0334479361772537,0.00527592934668064,-0.918854236602783,0.394561797380447,-0.90502667427063,-0.0298373401165009,0.424307286739349,-0.904904961585999,-0.0296509005129337,0.424579650163651,-0.893462359905243,-0.0625521689653397,0.444761157035828,-0.901751399040222,0.00961838662624359,0.432148277759552,-0.899936437606812,0.00985429622232914,0.435909748077393,-0.892243564128876,-0.0603669807314873,0.447501093149185,-0.898725092411041,-0.0288638211786747,0.43756178021431,-0.88948792219162,-0.0555017590522766,0.453575819730759,-0.900870621204376,-0.023045476526022,0.433475494384766,-0.914829730987549,0.0267552006989717,0.402952551841736,-0.849156379699707,0.113895937800407,0.515714228153229,-0.834224402904511,-0.0199463404715061,0.551064252853394,-0.825589954853058,0.0375984534621239,0.563016474246979,-0.800645291805267,0.12764498591423,0.585383713245392,-0.914533853530884,0.0272303037345409,0.403591841459274,-0.90057510137558,-0.0225693602114916,0.434114217758179,-0.917156219482422,0.0229810196906328,0.397864669561386,-0.796577274799347,0.118565134704113,0.592795848846436,-0.911653518676758,-0.0762302428483963,0.403827756643295,-0.938827097415924,-0.0162392538040876,0.344005793333054,-0.935417473316193,-0.00539548322558403,0.353504300117493,-0.934314727783203,-0.0347377024590969,0.354752451181412,-0.931334555149078,-0.0092838304117322,0.364046305418015,-0.960032641887665,0.0603668764233589,0.273300588130951,
- -0.942261517047882,-0.0233389679342508,0.334063738584518,-0.941867053508759,-0.00637834146618843,0.335925281047821,-0.942001163959503,-0.0227897725999355,0.334834903478622,-0.959754705429077,0.0610237345099449,0.274129569530487,-0.9627965092659,0.0536761842668056,0.264843255281448,-0.928627073764801,-0.0198566820472479,0.370482802391052,-0.944186449050903,-0.0513453111052513,0.32538565993309,-0.968320488929749,0.0393071286380291,0.246597707271576,-0.965951800346375,0.067349910736084,0.249802112579346,-0.981189429759979,0.0271391998976469,0.191130325198174,-0.982016324996948,0.0359030589461327,0.185350924730301,-0.984939396381378,-0.0149953914806247,0.172248348593712,-0.984443128108978,-0.0162936262786388,0.174946546554565,-0.984091758728027,-0.014676621183753,0.177053838968277,-0.984554529190063,-0.0133602116256952,0.174567654728889,-0.985931515693665,-0.0467611253261566,0.16047628223896,-0.973605453968048,-0.012231171131134,0.227909684181213,-0.969757795333862,0.0353095047175884,0.241501703858376,-0.973638534545898,0.035419087857008,0.225329831242561,-0.990359604358673,-0.0484559163451195,0.129769369959831,-0.991600453853607,0.0303534511476755,0.12572668492794,-0.988034427165985,-0.0352372080087662,0.150154128670692,-0.94279956817627,-0.120558097958565,-0.310797303915024,-0.837072491645813,0.0137078817933798,-0.546920239925385,-0.107909813523293,0.58449113368988,-0.80419248342514,-0.998329341411591,0.0543758682906628,0.0195394027978182,-0.998760461807251,-0.00862862914800644,0.0490211471915245,-0.997942864894867,0.0490947254002094,0.0412286631762981,-0.633244097232819,0.312901467084885,0.707880437374115,-0.164632827043533,-0.645616829395294,0.745704352855682,-0.462561249732971,0.269934475421906,0.844495534896851,-0.998525381088257,-0.0070187053643167,0.0538332872092724,-0.998052835464478,0.0571768619120121,0.0249274596571922,-0.996317803859711,-0.0405891798436642,0.0755221098661423,-0.99778687953949,0.0175941493362188,0.0641248598694801,-0.996501564979553,-0.0424010083079338,0.0720206871628761,-0.998237431049347,0.0553505830466747,0.0214140191674232,
- -0.99612420797348,-0.0388276465237141,0.0789240226149559,-0.997839570045471,0.0197830274701118,0.0626487731933594,-0.999700427055359,-0.00666701979935169,0.0235500857234001,0.0238358937203884,-0.747853577136993,-0.663435757160187,-0.391622722148895,-0.44465908408165,-0.805549442768097,-0.76634293794632,-0.525317251682281,0.369811534881592,-0.753403306007385,0.628621697425842,-0.192920282483101,-0.858586847782135,0.452665388584137,-0.240671828389168,-0.596731245517731,0.391986906528473,0.700184345245361,-0.55499142408371,0.404176145792007,0.727066814899445,-0.573763728141785,0.388009667396545,0.721279323101044,-0.98596066236496,-0.115043669939041,0.121022842824459,-0.997812330722809,0.0186170004308224,0.0634351521730423,-0.999673902988434,-0.000291619071504101,0.0255340579897165,-0.999673187732697,-0.0078304335474968,0.0243362560868263,-0.999703705310822,0.00314291217364371,0.0241377167403698,-0.997857987880707,0.0206242632120848,0.0620813444256783,-0.997482419013977,0.0207929331809282,0.0677972361445427,-0.904363036155701,0.361323088407516,-0.227097228169441,-0.977402746677399,0.20331484079361,-0.0578548051416874,-0.0568360723555088,-0.144161447882652,-0.987920641899109,-0.999711155891418,0.00437744986265898,0.0236357245594263,-0.997488975524902,0.0219833757728338,0.0673235729336739,-0.998803794384003,0.0314773507416248,0.0374188870191574,-0.753283798694611,-0.331744432449341,-0.56789892911911,-0.059696089476347,-0.116717807948589,-0.991369426250458,-0.988195478916168,0.149029478430748,-0.0354983173310757,-0.996622323989868,-0.0268698204308748,0.0776026174426079,-0.99857223033905,0.033820066601038,0.0413510017096996,-0.997485995292664,0.0214023161679506,0.0675547868013382,-0.774767220020294,-0.318563252687454,-0.546125650405884,-0.764929950237274,-0.282724589109421,-0.578747808933258,-0.100069247186184,0.353048712015152,-0.930238127708435,-0.996680080890656,-0.0274396482855082,0.0766541659832001,-0.998106122016907,0.0526720136404037,0.0317806750535965,-0.998627960681915,0.033274557441473,0.0404353700578213,-0.0994539260864258,0.992660224437714,-0.0688081681728363,
- -0.795741140842438,0.307832032442093,0.521570444107056,-0.0784371793270111,0.99615204334259,-0.0391012765467167,-0.999023914337158,0.0423703007400036,0.012489628046751,-0.997572541236877,-0.0386911332607269,0.0578961372375488,-0.995761156082153,-0.0620152205228806,0.0679265782237053,0.238273143768311,0.890011370182037,-0.388723194599152,0.342895716428757,0.890751302242279,-0.298302829265594,0.318207442760468,0.892234206199646,-0.320409387350082,0.342228978872299,0.891262650489807,-0.297540187835693,0.237301245331764,0.89076840877533,-0.387581914663315,0.269271790981293,0.89241486787796,-0.36206129193306,0.334908366203308,0.896780014038086,-0.289174646139145,0.261980652809143,0.897919237613678,-0.353704899549484,0.339816868305206,0.895092308521271,-0.288676768541336,0.909524619579315,0.405289709568024,0.0922248885035515,0.446078896522522,0.259301066398621,0.856607615947723,0.177943959832191,0.980024993419647,-0.088809609413147,0.754590630531311,0.0269646067172289,0.655641615390778,0.403922647237778,0.83722198009491,-0.368654131889343,0.391662061214447,0.848862707614899,-0.355011492967606,0.746777355670929,0.073246031999588,0.661028563976288,0.783115684986115,-0.0105586461722851,0.621786415576935,0.780589997768402,0.000296448823064566,0.625043332576752,0.756132781505585,0.0254336465150118,0.653923749923706,0.750806570053101,-0.0359362475574017,0.659543991088867,0.740043878555298,-0.01157262083143,0.672459006309509,0.40552619099617,0.835622310638428,-0.370518416166306,0.761041045188904,0.0205190591514111,0.648379147052765,0.742859363555908,0.0245146378874779,0.66899847984314,0.741107165813446,-0.0126271294429898,0.671268045902252,0.753388702869415,0.0135304089635611,0.65743625164032,0.757204711437225,0.0243657026439905,0.652723073959351,0.352406710386276,0.883293807506561,-0.309195011854172,0.698067426681519,0.0683236718177795,0.712764859199524,0.817310571670532,0.561820149421692,0.12791234254837,0.800186932086945,-0.0393770337104797,0.598456680774689,0.789378106594086,-0.0636769682168961,0.610595941543579,0.783798217773438,-0.073095828294754,0.616698741912842,
- 0.826934039592743,-0.132235363125801,0.546528935432434,0.98207825422287,0.0612201914191246,0.1782536059618,0.8449427485466,-0.0988061055541039,0.525651335716248,0.983375608921051,0.0240962617099285,0.179977267980576,0.833876848220825,-0.142862319946289,0.533141434192657,0.76739639043808,0.144892767071724,0.624586999416351,0.766328454017639,0.138916537165642,0.62725043296814,0.882456302642822,0.0506774596869946,0.46765661239624,0.983239889144897,0.0308909546583891,0.1796805113554,0.692443907260895,0.0331960059702396,0.720707595348358,0.641441345214844,-0.0593210160732269,0.764875173568726,0.691942036151886,0.029144149273634,0.721364557743073,0.581944227218628,0.0235313270241022,0.812888205051422,0.717609405517578,-0.0457480177283287,0.694941699504852,0.68602991104126,0.0349992625415325,0.726731061935425,0.696992695331573,0.0240858234465122,0.716673612594604,0.646201014518738,-0.0642582774162292,0.760457217693329,0.591914832592011,0.0642673820257187,0.803434193134308,0.810916185379028,-0.119185701012611,0.572895884513855,0.726963400840759,-0.0176551379263401,0.68644917011261,0.702239692211151,0.00988124497234821,0.711872041225433,0.581997513771057,0.0237378403544426,0.812844157218933,0.68326199054718,-0.0294424295425415,0.729579448699951,0.717707574367523,-0.0454634986817837,0.694858908653259,0.702239692211151,0.00988124497234821,0.711872041225433,0.719139456748962,-0.0677860379219055,0.691551506519318,0.810916185379028,-0.119185701012611,0.572895884513855,0.824227452278137,-0.195763111114502,0.531343519687653,-0.167341589927673,-0.955089390277863,0.244542583823204,0.428125739097595,-0.546289622783661,0.719913899898529,-0.230883568525314,-0.919556856155396,0.317974805831909,0.812320530414581,-0.178703799843788,0.555158078670502,0.494892120361328,-0.071679025888443,0.865993022918701,0.708507537841797,-0.0568026751279831,0.703413486480713,0.716575503349304,-0.0393568836152554,0.696398377418518,0.720599114894867,-0.0907140225172043,0.687392115592957,0.709751725196838,-0.0580750443041325,0.702054023742676,0.701313555240631,0.00788484793156385,0.712809324264526,
- 0.717585682868958,-0.0405198261141777,0.695290565490723,0.735559821128845,-0.0918720886111259,0.671201348304749,0.731541872024536,-0.0568867027759552,0.679419159889221,0.741887629032135,-0.00280981091782451,0.670518338680267,0.66447114944458,0.0172226149588823,0.747115433216095,0.670865833759308,-0.0422592684626579,0.74037367105484,0.672806322574615,0.00263809505850077,0.739813983440399,0.607359707355499,0.0224891267716885,0.79410856962204,0.679226338863373,0.00182210095226765,0.733926594257355,0.678065121173859,-0.0396835617721081,0.733929753303528,0.680820107460022,-0.0342803373932838,0.731648027896881,0.580379903316498,0.0175088103860617,0.814157724380493,0.610134184360504,0.0278517752885818,0.791808366775513,0.608193814754486,-0.0338338650763035,0.793067157268524,0.603948771953583,-0.0380440168082714,0.796114683151245,0.649109303951263,0.0328011438250542,0.759987592697144,0.647368907928467,0.0345384925603867,0.761393845081329,0.579417586326599,-0.0290674101561308,0.814512312412262,0.606071472167969,-0.0320144705474377,0.794765651226044,0.570348262786865,-0.0359274484217167,0.820616900920868,0.593526244163513,-0.0213645547628403,0.804531037807465,0.571425318717957,-0.0230767205357552,0.820329546928406,0.475842982530594,0.00790149532258511,0.879494726657867,0.562003970146179,-0.0592305026948452,0.825011074542999,0.567740678787231,-0.0282328128814697,0.822723209857941,0.386650055646896,-0.00983348023146391,0.922174215316772,0.403694629669189,0.122404307126999,0.906668543815613,0.3877132833004,0.0945256575942039,0.91692054271698,0.493670642375946,0.0093740550801158,0.869598567485809,0.504536271095276,0.0739172548055649,0.860220551490784,0.500914633274078,-0.0179267320781946,0.865311026573181,0.482246100902557,0.0299589559435844,0.875523388385773,0.526862919330597,0.0325244106352329,0.849327743053436,0.572797954082489,-0.0406954921782017,0.81868577003479,0.571973502635956,-0.0421295054256916,0.819189488887787,0.478709608316422,0.01819190941751,0.877784788608551,0.481436431407928,0.0284635536372662,0.876018702983856,
- 0.520122706890106,0.0752487629652023,0.850770235061646,0.48652184009552,0.0153953898698092,0.873532891273499,0.506191790103912,0.0484125949442387,0.861061155796051,0.511348068714142,0.0444826483726501,0.858221650123596,0.481557279825211,0.0286866221576929,0.875945031642914,0.525211751461029,0.0714702531695366,0.847965002059937,0.505701303482056,0.0738342627882957,0.859543263912201,0.494143128395081,0.00897449534386396,0.86933422088623,0.527994215488434,0.0693949013948441,0.846408009529114,0.619663774967194,0.348670899868011,0.703168213367462,0.541532218456268,0.57358980178833,0.614603638648987,-0.250961631536484,0.472855150699615,0.844645619392395,0.855619370937347,0.035597775131464,0.516379952430725,0.581825613975525,0.027845025062561,0.812836766242981,0.573121726512909,0.779047250747681,-0.254198491573334,-0.267782002687454,0.47824102640152,0.836408019065857,0.541856646537781,0.369273483753204,0.755002439022064,-0.264162957668304,0.482841581106186,0.834914326667786,0.477082222700119,0.0123255951330066,0.878772258758545,0.569045662879944,-0.0237253196537495,0.821963608264923,0.508578360080719,0.0392754152417183,0.860119462013245,0.503724157810211,0.0435683093965054,0.862765192985535,0.470072090625763,-0.00661258585751057,0.882603287696838,0.484947025775909,0.0413086116313934,0.873567521572113,0.600871860980988,-0.0187552981078625,0.79912531375885,0.589783310890198,-0.0364617630839348,0.806738138198853,0.563959419727325,-0.041047852486372,0.824781715869904,0.472517520189285,-0.00877717602998018,0.881277561187744,0.506158232688904,0.041418731212616,0.861445605754852,0.499110579490662,0.0316824540495873,0.865959048271179,0.599426209926605,-0.0173560902476311,0.800241827964783,0.585132122039795,-0.0390782803297043,0.809995889663696,0.588347315788269,-0.0350510217249393,0.807848274707794,0.482243478298187,-0.017437094822526,0.875863671302795,0.509273707866669,0.0236684679985046,0.860279083251953,0.470443278551102,-0.0429071858525276,0.881386458873749,0.484426617622375,-0.0535927340388298,0.87318879365921,0.522242903709412,0.0133162317797542,0.852692842483521,
- 0.548510432243347,0.0374928377568722,0.835302829742432,0.504116296768188,0.0649080947041512,0.861193299293518,0.527108192443848,0.0199658796191216,0.849563598632813,0.518353044986725,0.0164362564682961,0.855008780956268,0.579370737075806,-0.0341139622032642,0.814349949359894,0.593851566314697,-0.0119881713762879,0.804485321044922,0.591687083244324,-0.0120827229693532,0.806077182292938,0.6286581158638,-0.0462548099458218,0.776305019855499,0.679108500480652,0.0449845194816589,0.732658207416534,0.632446110248566,-0.0474547706544399,0.773149371147156,0.569062352180481,-0.0253193359822035,0.821904480457306,0.581169664859772,-0.00326694641262293,0.813775897026062,0.565659642219543,-0.0860948264598846,0.820132195949554,0.577954947948456,-0.11006261408329,0.808612704277039,0.566512048244476,-0.0855556055903435,0.819600105285645,0.581796109676361,-0.00378870451822877,0.813325881958008,0.644433557987213,0.0705657377839088,0.761397302150726,0.632446110248566,-0.0474547706544399,0.773149371147156,0.679108500480652,0.0449845194816589,0.732658207416534,0.648346900939941,-0.0618293061852455,0.758830308914185,0.65919017791748,0.0807417780160904,0.74762898683548,0.68565422296524,0.015085132792592,0.727771103382111,-0.694772124290466,-0.0447270423173904,-0.717837870121002,-0.372320145368576,0.0516782067716122,-0.926664471626282,0.343521118164063,0.670048415660858,-0.658048927783966,-0.824202835559845,0.0949839875102043,-0.558272063732147,-0.846534371376038,-0.0268246326595545,-0.531657814979553,-0.83824360370636,0.104039169847965,-0.535279095172882,-0.847909271717072,-0.0266759786754847,-0.529469788074493,-0.825382173061371,0.0965388789772987,-0.556259632110596,-0.835730791091919,0.07308479398489,-0.544254243373871,-0.780182421207428,0.00671262200921774,-0.625516057014465,-0.797692954540253,-0.0993559956550598,-0.594822943210602,-0.799056768417358,-0.0315304808318615,-0.600428462028503,-0.785487294197083,-0.100410595536232,-0.6106778383255,-0.767277598381042,-0.00707340706139803,-0.641276299953461,-0.810360610485077,-0.12988193333149,-0.571354806423187,
- -0.856940925121307,0.0533500947058201,-0.512646079063416,-0.833312213420868,0.06989436596632,-0.548366248607636,-0.822964012622833,0.0933587327599525,-0.560369908809662,-0.583382248878479,0.593952715396881,-0.55397230386734,-0.673909366130829,0.369253396987915,-0.639920353889465,-0.836997330188751,0.497572630643845,0.227721750736237,-0.836987495422363,0.0747560933232307,-0.54209178686142,-0.854525744915009,0.0597752742469311,-0.51595801115036,-0.81781542301178,0.0140424324199557,-0.575309276580811,-0.858038544654846,0.0547817945480347,-0.510655283927917,-0.818273425102234,0.0128739746287465,-0.574684977531433,-0.854991495609283,0.0585467405617237,-0.515326917171478,-0.827456414699554,-0.0114930504933,-0.561412334442139,-0.810360610485077,-0.12988193333149,-0.571354806423187,-0.767277598381042,-0.00707340706139803,-0.641276299953461,0.829448521137238,0.472049325704575,0.298637956380844,0.92586749792099,-0.336884677410126,0.17110837996006,0.945235371589661,-0.245879560709,0.214647114276886,-0.807089626789093,-0.133174270391464,-0.575213849544525,-0.829029202461243,-0.0158639214932919,-0.558980286121368,-0.767542660236359,-0.0809340178966522,-0.635867834091187,-0.816253960132599,0.0179956294596195,-0.577413082122803,-0.856409013271332,0.06231839209795,-0.512523412704468,-0.807033479213715,0.0315717794001102,-0.589661121368408,-0.821434020996094,-0.0432001575827599,-0.568665027618408,-0.767542660236359,-0.0809340178966522,-0.635867834091187,-0.829029202461243,-0.0158639214932919,-0.558980286121368,-0.806387364864349,0.0344074815511703,-0.590385973453522,-0.855786502361298,0.0651323199272156,-0.513212859630585,-0.862466931343079,0.0198331158608198,-0.505724668502808,-0.733233392238617,-0.541703939437866,-0.411005616188049,-0.0508824437856674,-0.515475332736969,-0.855392396450043,-0.818065822124481,-0.284466654062271,-0.499846994876862,-0.761208772659302,-0.063846230506897,-0.645356357097626,-0.817828595638275,-0.0217844489961863,-0.57504940032959,-0.758124113082886,-0.0540478490293026,-0.649866819381714,-0.1976348310709,-0.475931823253632,-0.856988549232483,
- -0.764913380146027,-0.0970825552940369,-0.636775135993958,-0.207418948411942,-0.416455805301666,-0.885179042816162,-0.758093535900116,-0.053874384611845,-0.649916708469391,-0.817794620990753,-0.0215936135500669,-0.575104951858521,-0.764450013637543,-0.00571041088551283,-0.644657671451569,-0.824214577674866,-0.0350967720150948,-0.565189003944397,-0.794531404972076,0.0312204472720623,-0.606419920921326,-0.813920378684998,-0.000946185435168445,-0.580975830554962,-0.443378001451492,-0.321414142847061,-0.836725115776062,-0.438965886831284,-0.362602025270462,-0.822088181972504,-0.00962272565811872,-0.966853559017181,-0.255150198936462,-0.838894307613373,0.0405175164341927,-0.542784214019775,-0.853648602962494,0.00626016780734062,-0.52081173658371,-0.850587368011475,0.0105091361328959,-0.525728702545166,-0.810403048992157,0.00607510190457106,-0.585841476917267,-0.796996414661407,0.0344124436378479,-0.603002846240997,-0.826675355434418,-0.0318364650011063,-0.561777770519257,-0.782795548439026,0.0163886826485395,-0.622063159942627,-0.79537034034729,-0.0107366144657135,-0.60602867603302,-0.789522230625153,0.00353447417728603,-0.613711774349213,-0.831737756729126,0.0828405991196632,-0.548953354358673,-0.830675423145294,0.0524774827063084,-0.554278314113617,-0.00137202674522996,0.880975306034088,-0.473160207271576,-0.164266362786293,-0.617585599422455,-0.769158363342285,-0.562292456626892,0.353784561157227,-0.747438073158264,-0.364502787590027,0.262306034564972,-0.893494963645935,-0.997350513935089,0.0259213671088219,0.0679710060358047,-0.998289048671722,-0.000409406813560054,0.0584721677005291,-0.99770176410675,-0.0641594231128693,0.0217897240072489,-0.996590673923492,0.0501771681010723,0.0654924362897873,-0.99789834022522,-0.00221991399303079,0.0647607520222664,-0.996914923191071,0.021934449672699,0.0753624439239502,-0.769962549209595,0.537240564823151,0.344282567501068,-0.912842988967896,0.0621915049850941,0.403546661138535,-0.997921466827393,0.0325850881636143,0.0555983074009418,-0.997707843780518,-0.0641025900840759,0.0216783750802279,
- -0.993709266185761,0.106454126536846,-0.0347773618996143,-0.997362613677979,0.0260423123836517,0.0677466541528702,-0.739386141300201,0.0665841698646545,0.669981062412262,-0.641755759716034,0.630715906620026,0.436287760734558,0.0558314174413681,0.707407474517822,0.704597413539886,-0.994609117507935,0.0929960906505585,-0.0458737052977085,-0.997467756271362,-0.0662453547120094,0.0258779004216194,-0.996134042739868,-0.0128212934359908,0.086905837059021,-0.416435748338699,-0.432561606168747,0.799669742584229,0.00720924092456698,-0.683758020401001,0.729673266410828,-0.92501026391983,-0.348169982433319,-0.152097567915916,-0.996309459209442,0.00161863036919385,0.0858187079429626,-0.994472861289978,0.0953666567802429,-0.0439218617975712,-0.995967984199524,-0.0094730956479907,0.0892078578472137,-0.877390623092651,0.350841820240021,0.327254891395569,-0.06290652602911,-0.160358279943466,0.985052287578583,-0.969537973403931,0.186126664280891,0.159226223826408,-0.996182441711426,0.00490869116038084,0.0871576219797134,-0.998821556568146,0.0229059923440218,0.0427878126502037,-0.994382739067078,0.0968485102057457,-0.0427011474967003,-0.892448723316193,-0.289746195077896,-0.345806866884232,-0.978322386741638,-0.202008187770844,-0.0455854646861553,-0.679395973682404,0.375820577144623,-0.630222201347351,-0.997087240219116,0.0327323377132416,0.0688886344432831,-0.998764097690582,0.0243284851312637,0.0433403961360455,-0.996118605136871,0.00644985865801573,0.0877844393253326,-0.997204959392548,0.0341795682907104,0.0664385333657265,-0.999210894107819,-0.0203433446586132,0.0341142192482948,-0.998822867870331,0.022873168811202,0.0427750609815121,-0.065224900841713,-0.138633117079735,0.988193571567535,-0.674972593784332,-0.336125165224075,0.656834721565247,-0.981463432312012,0.132662728428841,0.138311550021172,-0.999195098876953,-0.0205458737909794,0.034453846514225,-0.997191488742828,0.0340077504515648,0.0667294859886169,-0.994646549224854,0.0651769936084747,0.0801887735724449,-0.106571942567825,0.340525239706039,0.934176206588745,-0.69631415605545,-0.26293158531189,0.667842507362366,
- -0.712830901145935,-0.315465658903122,0.626381278038025,-0.998092591762543,-0.0316190421581268,0.0530227012932301,-0.993494629859924,0.0552833192050457,0.0995600447058678,-0.99712872505188,-0.0630489662289619,0.0419441983103752,-0.0823565274477005,0.985934913158417,-0.145429506897926,-0.0770673081278801,0.978754699230194,-0.189999714493752,-0.764950752258301,0.352990686893463,-0.53874659538269,0.0175631530582905,-0.015743650496006,0.999721825122833,0.0389372184872627,0.0596414729952812,0.997460186481476,0.0176263749599457,0.110414363443851,0.99372935295105,-0.665501296520233,-0.744529604911804,0.0527617633342743,-0.268104702234268,0.0610352270305157,0.961454510688782,-0.567095041275024,-0.0129692954942584,0.823550224304199,0.0300974473357201,0.064299464225769,0.997476696968079,0.00863254070281982,-0.0157454926520586,0.999838769435883,-0.0350201986730099,-0.0614714734256268,0.997494280338287,-0.0308892782777548,-0.0635920614004135,0.997497916221619,-0.011710150167346,0.0245739240199327,0.999629437923431,0.0342999845743179,0.0620860084891319,0.997481346130371,-0.0100035779178143,0.0270607694983482,0.999583721160889,-0.0399033352732658,-0.0589625500142574,0.997462451457977,0.0353247411549091,-0.00400521140545607,0.999367952346802,0.813357472419739,-0.447119832038879,0.372200816869736,0.656417369842529,-0.754299283027649,-0.0122012952342629,-0.322737872600555,-0.514783918857574,0.79425311088562,0.233329698443413,0.645944654941559,0.726851284503937,-0.657808125019073,0.397911936044693,0.639495551586151,0.295129477977753,0.465171039104462,0.834574460983276,-0.692417681217194,0.412332355976105,0.592064142227173,-0.072193868458271,-0.12062331289053,0.99006974697113,-0.687328219413757,0.393063485622406,0.610803604125977,0.0279544126242399,0.00624688854441047,0.999589681625366,-0.0108760735020041,0.0257894024252892,0.999608218669891,0.0344510078430176,-0.00528076151385903,0.999392449855804,-0.00917974952608347,0.0282611325383186,0.999558448791504,0.0296168550848961,0.0103388372808695,0.99950784444809,-0.0144783202558756,0.0280448608100414,0.999501824378967,
- 0.101573295891285,0.188653230667114,0.976776778697968,0.274025291204453,0.349852234125137,0.895831227302551,0.984093964099884,-0.170375287532806,0.0503123626112938,-0.0139699755236506,0.0293469112366438,0.999471664428711,0.0301816686987877,0.0117293568328023,0.999475598335266,0.00712091336026788,0.023268373683095,0.999704003334045,0.986913561820984,-0.152719751000404,0.0517524443566799,0.604755222797394,-0.340822845697403,0.719799220561981,0.0799786075949669,0.134887903928757,0.987627804279327,0.00388407171703875,0.0251978039741516,0.999675035476685,-0.02033038623631,-0.0153903616592288,0.99967485666275,-0.0143427234143019,0.0283921845257282,0.999493956565857,0.581601083278656,-0.326317399740219,0.745155811309814,0.93656450510025,0.340336412191391,0.0837740302085876,0.650056183338165,-0.256042122840881,0.715450465679169,0.0159083195030689,0.0534432157874107,0.998444139957428,-0.0196661856025457,-0.0157866403460503,0.999681949615479,0.00454353168606758,0.0248047392815351,0.999682009220123,-0.561327815055847,0.305515766143799,0.769136667251587,-0.260954529047012,0.963934302330017,0.0522837601602077,-0.310379296541214,0.949034690856934,0.0547528937458992,-0.00019084129598923,-0.0273988004773855,0.999624669551849,0.0378533229231834,0.043323315680027,0.998343765735626,0.00597630394622684,-0.0210011173039675,0.999761581420898,0.168464988470078,-0.982200860977173,0.0830736085772514,0.462721794843674,-0.298905462026596,0.834592282772064,0.461648911237717,-0.258343815803528,0.848610043525696,-0.00725518865510821,-0.014032986946404,0.99987530708313,0.023499071598053,0.0499467812478542,0.99847549200058,0.0113582545891404,-0.02112534083426,0.999712407588959,-0.0351197421550751,0.061654020100832,0.997479498386383,-0.013733291067183,-0.0157445948570967,0.999781727790833,-0.0137792741879821,0.110421039164066,0.993789374828339,0.566787838935852,-0.0129726249724627,0.823761641979218,0.26508629322052,0.059944573789835,0.962359547615051,0.665206134319305,-0.74479204416275,0.0527803599834442,-0.00862082559615374,-0.0157454945147038,0.999838888645172,
- -0.0300882589071989,0.064304307103157,0.997476637363434,0.0355601534247398,-0.061737883836031,0.997458815574646,0.0117189809679985,0.0245610605925322,0.999629735946655,0.031411424279213,-0.0638866424560547,0.997462689876556,-0.0342796444892883,0.0620967149734497,0.997481286525726,0.0404023118317127,-0.059227742254734,0.997426569461823,0.0100036868825555,0.0270606111735106,0.999583721160889,-0.0353246293962002,-0.00400536973029375,0.999367892742157,0.32158961892128,-0.513192415237427,0.795747220516205,-0.665199041366577,-0.746441900730133,-0.0182961374521255,-0.811812579631805,-0.450277000665665,0.371767401695251,-0.233248516917229,0.645749390125275,0.72705078125,-0.294878393411636,0.464816808700562,0.834860503673553,0.658036231994629,0.398008406162262,0.639200747013092,0.692059636116028,0.412185549736023,0.592584669589996,0.686979353427887,0.392840713262558,0.611339151859283,0.0723331123590469,-0.12098404020071,0.99001556634903,0.0108759589493275,0.0257895700633526,0.999608218669891,-0.0279544647783041,0.00624701380729675,0.999589681625366,-0.0344511233270168,-0.0052805938757956,0.999392449855804,0.0144755924120545,0.0280518494546413,0.999501645565033,-0.0296197831630707,0.0103460345417261,0.999507784843445,0.00917314272373915,0.0282707586884499,0.999558210372925,-0.986831068992615,-0.148476988077164,0.0641792565584183,-0.277465909719467,0.355042368173599,0.892724812030792,-0.104854129254818,0.196841388940811,0.97481232881546,0.013967789709568,0.0293525084853172,0.999471545219421,-0.0151914600282907,0.0367761068046093,0.999208033084869,-0.0301840081810951,0.0117351170629263,0.999475479125977,-0.608074843883514,-0.329481393098831,0.722279012203217,-0.990187644958496,-0.1226891502738,0.0669016242027283,-0.0833652392029762,0.143305018544197,0.986161291599274,0.0202957484871149,-0.0154110305011272,0.999675333499908,-0.0119760921224952,0.0386922135949135,0.999179422855377,0.0143467271700501,0.0283819306641817,0.999494194984436,-0.93157571554184,0.34743720293045,0.107023827731609,-0.581282496452332,-0.312166631221771,0.751440405845642,
- -0.617467403411865,-0.272568583488464,0.737862050533295,0.01962317712605,-0.0158123001456261,0.999682426452637,-0.022032905369997,0.05967728048563,0.997974634170532,-0.0126427989453077,0.0382949598133564,0.999186515808105,0.00119181768968701,0.998484253883362,0.055025152862072,-0.0323215760290623,0.994729995727539,0.0973013862967491,0.492517024278641,0.317335605621338,0.810385763645172,-0.0392843782901764,0.0505874566733837,0.997946739196777,0.00266012642532587,-0.0259272716939449,0.999660313129425,0.0121789090335369,-0.0470923595130444,0.998816311359406,-0.02739486284554,-0.000341985025443137,-0.999624729156494,-0.0525484010577202,0.0529208034276962,-0.997215151786804,-0.030581584200263,0.102821946144104,-0.994229555130005,0.749205589294434,-0.641737759113312,-0.163901135325432,0.644886612892151,0.280676484107971,-0.710874080657959,0.807525396347046,0.257986694574356,-0.530420243740082,-0.0448964014649391,0.0568959005177021,-0.99737012386322,-0.019545666873455,0.00212455517612398,-0.999806702136993,0.0163887944072485,-0.0622377507388592,-0.997926890850067,0.0136480396613479,-0.0636411607265472,-0.99787962436676,-0.00506887771189213,0.0212776828557253,-0.999760746955872,-0.0476614609360695,0.0554601959884167,-0.997322797775269,-0.00480574881657958,0.0208940822631121,-0.999770164489746,0.0228212159126997,-0.0589413680136204,-0.99800056219101,-0.0503242276608944,-0.0105325812473893,-0.998677492141724,-0.72962099313736,-0.683813691139221,0.00721869291737676,0.174927264451981,-0.329976081848145,-0.92764014005661,-0.777566432952881,-0.431486755609512,-0.457394421100616,-0.308809012174606,0.461894243955612,-0.831438958644867,-0.245266556739807,0.644897758960724,-0.723844766616821,0.655786514282227,0.391475439071655,-0.645516097545624,0.630949318408966,0.331198751926422,-0.701577007770538,0.609775722026825,0.372014045715332,-0.699842214584351,-0.0374286137521267,0.117585502564907,-0.992357194423676,-0.00408686231821775,0.0198460463434458,-0.999794721603394,-0.0496082976460457,-0.0115687195211649,-0.998701751232147,-0.0425792895257473,0.000601889274548739,-0.999092936515808,
- -0.0442857928574085,0.00480595836415887,-0.999007344245911,-0.000289892486762255,0.0224772728979588,-0.999747335910797,-0.00584475602954626,0.0224087703973055,-0.9997318983078,-0.116829916834831,0.18557645380497,-0.975659847259521,-0.28937029838562,0.343525052070618,-0.893451392650604,-0.986395418643951,-0.151480585336685,-0.0638586208224297,-0.0035333854611963,0.0307925865054131,-0.999519646167755,-0.0211160387843847,0.0334372669458389,-0.999217748641968,0.0272839963436127,-0.0478524304926395,-0.998481690883636,-0.028392119333148,0.0291629489511251,-0.999171376228333,-0.000810047495178878,0.0238109063357115,-0.99971616268158,-0.0448638647794724,0.00623056292533875,-0.998973667621613,-0.989722549915314,-0.126602232456207,-0.066492035984993,-0.613728940486908,-0.327399015426636,-0.718433499336243,-0.0960356295108795,0.13333748281002,-0.986406743526459,-0.024148928001523,0.0316560119390488,-0.999207139015198,0.00865052174776793,-0.0308961570262909,-0.999485194683075,0.024141900241375,-0.0497254803776741,-0.998471200466156,-0.0133303459733725,-0.0414857007563114,-0.999050259590149,-0.0444726124405861,0.0197049044072628,-0.998816251754761,-0.0688147321343422,0.0715671479701996,-0.995059132575989,-0.636733651161194,-0.237650662660599,-0.733547866344452,-0.588343918323517,-0.31121489405632,-0.746322214603424,-0.931252241134644,0.348286330699921,-0.107079029083252,0.169019356369972,0.982349038124084,-0.0801428034901619,0.219662040472031,0.972565829753876,-0.0765799954533577,0.515250027179718,0.338938355445862,-0.787171006202698,0.0200063232332468,0.0518643110990524,-0.998453736305237,-0.0040060798637569,0.00125810503959656,-0.999991178512573,-0.00152007292490453,0.10260583460331,-0.994720935821533,-0.644271075725555,0.267274051904678,-0.716574847698212,-0.752119541168213,-0.638477981090546,-0.163285344839096,-0.807235956192017,0.253512382507324,-0.533011794090271,-0.00814333651214838,0.00255740829743445,-0.999963581562042,0.0159684345126152,0.0539889186620712,-0.998413860797882,-0.0455647706985474,-0.0648300722241402,-0.996855497360229,
- -0.0236027967184782,0.0214343965053558,-0.999491631984711,-0.0426874570548534,-0.0663095861673355,-0.996885538101196,0.0188880786299706,0.0524528250098228,-0.998444736003876,-0.0528110861778259,-0.061099935323,-0.996733546257019,-0.0239400640130043,0.020947365090251,-0.999494016170502,0.0215131491422653,-0.0102814817801118,-0.999715805053711,-0.20908959209919,-0.343078017234802,-0.915739715099335,0.725632905960083,-0.688036262989044,0.0079373586922884,0.771583437919617,-0.436946958303452,-0.462316244840622,0.223864957690239,0.638306677341461,-0.736511409282684,0.282213628292084,0.454575836658478,-0.844817340373993,-0.661936461925507,0.388752937316895,-0.640867590904236,-0.0820456147193909,-0.124480187892914,-0.988824248313904,-0.694698035717011,0.40318700671196,-0.595680177211761,-0.690140724182129,0.383397281169891,-0.613768935203552,0.0207947008311749,-0.0113293807953596,-0.999719679355621,-0.0246530920267105,0.0199176352471113,-0.999497652053833,0.0167121980339289,-0.000576694787014276,-0.999860286712646,0.0184029825031757,0.0035813192371279,-0.999824225902557,-0.022940956056118,0.0223900768905878,-0.999486088752747,-0.0255758445709944,0.0213007349520922,-0.999445915222168,0.272836446762085,0.360725253820419,-0.891873061656952,0.0973546430468559,0.198696255683899,-0.975213766098022,0.986312806606293,-0.152042075991631,-0.0637985914945602,0.0189806409180164,0.00500209955498576,-0.999807357788086,-0.025058189406991,0.0226272530853748,-0.999430000782013,-0.00101813010405749,0.0281191803514957,-0.999604046344757,0.605149328708649,-0.341070234775543,-0.719350636005402,0.989646136760712,-0.127232372760773,-0.0664259642362595,0.0752237662672997,0.143810838460922,-0.98674201965332,-0.00421989243477583,0.0300267301499844,-0.999540209770203,-0.0254479553550482,0.0216284710913897,-0.999442160129547,-0.0364973470568657,-0.0240632332861423,-0.999044001102448,0.581323564052582,-0.326143860816956,-0.745448291301727,0.618098676204681,-0.279689133167267,-0.734661936759949,0.932413637638092,0.345227092504501,-0.106879845261574,-0.0358778834342957,-0.0244332551956177,-0.999057471752167,
- 0.00934184342622757,0.0574728138744831,-0.998303472995758,-0.00361264054663479,0.029664970934391,-0.999553382396698,0.0334618352353573,0.994683861732483,-0.0973874926567078,-0.503441691398621,0.315479427576065,-0.804375171661377,-0.00335415871813893,0.996908724308014,-0.0784967616200447,0.0297630429267883,0.0467252656817436,-0.998464286327362,-0.015954228118062,-0.0363214612007141,-0.999212801456451,-0.0253659915179014,-0.0579231902956963,-0.997998833656311,0.650901556015015,-2.33224363910267e-006,-0.759162127971649,0.651447117328644,-2.02863770937256e-006,-0.758694112300873,0.753067910671234,-2.05129708774621e-006,-0.657942831516266,0.724484324455261,-2.06851245820872e-006,-0.68929123878479,0.578949213027954,2.96870257443516e-006,-0.815363645553589,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.651447117328644,-2.02863770937256e-006,-0.758694112300873,0.650901556015015,-2.33224363910267e-006,-0.759162127971649,0.107521340250969,-2.45843921220512e-006,-0.994202792644501,0.109125129878521,-2.69743782155274e-006,-0.994028031826019,0.243246480822563,-2.49507365879253e-006,-0.969964504241943,0.207464963197708,-3.05430648950278e-006,-0.978242456912994,0.0420385412871838,-1.95018242266087e-006,-0.999116003513336,0.0415077470242977,-2.1962891878502e-006,-0.999138236045837,0.109125129878521,-2.69743782155274e-006,-0.994028031826019,0.107521340250969,-2.45843921220512e-006,-0.994202792644501,-0.0457649640738964,-2.04390513403041e-008,0.998952269554138,-0.0452428720891476,-5.12701170407581e-008,0.998976051807404,0.00207084626890719,-0.0033826781436801,0.999992191791534,0,9.23915877137915e-008,1,-0.110600784420967,1.55515408550855e-007,0.993865013122559,-0.111971452832222,-3.66686379038583e-007,0.993711471557617,-0.0452428720891476,-5.12701170407581e-008,0.998976051807404,-0.0457649640738964,-2.04390513403041e-008,0.998952269554138,-0.578858375549316,0.000110285443952307,0.815428137779236,-0.577670753002167,-3.28242058458272e-005,0.816269934177399,-0.456855654716492,-8.09436969575472e-005,0.889540910720825,-0.493514388799667,7.56610916141653e-006,0.86973774433136,
- -0.650964975357056,-1.81304713464669e-008,0.759107768535614,-0.651446282863617,0,0.758694767951965,-0.577670753002167,-3.28242058458272e-005,0.816269934177399,-0.578858375549316,0.000110285443952307,0.815428137779236,0.821597397327423,-2.51115488936193e-006,-0.570068359375,0.821589946746826,-2.57769011113851e-006,-0.57007896900177,0.753067910671234,-2.05129708774621e-006,-0.657942831516266,0.761106252670288,-1.80610038569284e-006,-0.64862722158432,0.651447117328644,-2.02863770937256e-006,-0.758694112300873,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.577181041240692,-2.44672310145688e-006,-0.816616177558899,0.651558578014374,-1.85508872618811e-006,-0.758598327636719,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.457064718008041,-4.91772743771435e-006,-0.889433562755585,0.444650411605835,-2.80175527223037e-006,-0.895704209804535,0.577181041240692,-2.44672310145688e-006,-0.816616177558899,0.354086190462112,-2.44455304709845e-006,-0.935212910175323,0.354012072086334,-2.32536967814667e-006,-0.935240864753723,0.243246480822563,-2.49507365879253e-006,-0.969964504241943,0.256091296672821,-1.92401580534352e-006,-0.966652631759644,0.109125129878521,-2.69743782155274e-006,-0.994028031826019,0.0415077470242977,-2.1962891878502e-006,-0.999138236045837,0.0414425767958164,-2.58825753007841e-006,-0.999140977859497,0.109310172498226,-2.69085580839601e-006,-0.994007706642151,-0.00497581670060754,0.0135891539976001,-0.999895334243774,-0.00267194118350744,-2.05631067728973e-006,-0.999996423721313,-0.00207081018015742,0.00679332716390491,-0.99997478723526,-0.00497443834319711,0.0271775182336569,-0.999618351459503,0.996867299079895,-0.0687904506921768,-0.0390308648347855,0.999996483325958,-0.00264382129535079,5.28362834302243e-005,0.999053537845612,0.0181303191930056,0.0395384766161442,0.998802900314331,0.000544816488400102,0.0489131584763527,0.99877792596817,-0.00602906988933682,-0.0490537285804749,0.0635892227292061,-4.70774321001954e-005,-0.997976124286652,0.063525065779686,5.67321103517315e-006,-0.997980237007141,
- 0.0641659647226334,-1.27733335375524e-006,-0.997939348220825,0.0641659647226334,-1.28336068883073e-006,-0.997939348220825,0.0908191874623299,-0.00533772353082895,-0.995853066444397,0.0922040790319443,-0.0063616638071835,-0.995719850063324,0.063525065779686,5.67321103517315e-006,-0.997980237007141,0.0635892227292061,-4.70774321001954e-005,-0.997976124286652,-0.368586748838425,-0.000121369928820059,0.9295933842659,-0.335850924253464,0.000140342308441177,0.941915094852448,-0.302341461181641,0.0633167400956154,0.951094448566437,-0.302325546741486,0.0633167326450348,0.951099514961243,0.575451552867889,0.00400960026308894,-0.817825973033905,0.574896097183228,0.00428058952093124,-0.818215131759644,0.555064499378204,-7.18111477908678e-005,-0.831807374954224,0.556771755218506,-0.00161975808441639,-0.830663919448853,0.664818942546844,-0.0303760822862387,-0.746386706829071,0.636790752410889,-0.0012747059809044,-0.771035671234131,0.574896097183228,0.00428058952093124,-0.818215131759644,0.575451552867889,0.00400960026308894,-0.817825973033905,-0.822008371353149,1.25106389532448e-005,0.569475471973419,-0.789865911006927,-0.0250284280627966,0.612768650054932,-0.789867699146271,-0.0250284262001514,0.612766325473785,-0.822005927562714,-1.00673978522536e-005,0.569478988647461,0.444650411605835,-2.80175527223037e-006,-0.895704209804535,0.457064718008041,-4.91772743771435e-006,-0.889433562755585,0.354012072086334,-2.32536967814667e-006,-0.935240864753723,0.354086190462112,-2.44455304709845e-006,-0.935212910175323,-0.399979799985886,-0.05881617218256,0.914634823799133,-0.399985373020172,-0.0588161759078503,0.914632380008698,-0.335850924253464,0.000140342308441177,0.941915094852448,-0.368586748838425,-0.000121369928820059,0.9295933842659,-0.967031955718994,-1.02565172710456e-005,-0.254655450582504,-0.967031955718994,-1.05414173958707e-005,-0.254655450582504,-0.967031955718994,-1.08263329821057e-005,-0.254655450582504,-0.967031955718994,-1.08263475340209e-005,-0.254655450582504,-0.967031896114349,-1.06363931990927e-005,-0.254655420780182,
- -0.864383697509766,-0.502618432044983,0.0146890245378017,-0.864383578300476,-0.502618432044983,0.0146889854222536,-0.864383578300476,-0.502618432044983,0.0146889481693506,-0.864383578300476,-0.502618432044983,0.0146889854222536,-0.655196070671082,3.98864085582318e-006,-0.755459010601044,-0.655196070671082,3.7037370930193e-006,-0.755459010601044,-0.655196070671082,3.41883605869953e-006,-0.755459010601044,-0.655196011066437,3.4188381050626e-006,-0.755458950996399,-0.655196070671082,3.60877038474428e-006,-0.755458950996399,-0.724460661411285,-0,0.689316153526306,-0.753006219863892,6.97071342870004e-008,0.658013522624969,-0.651446282863617,0,0.758694767951965,-0.650964975357056,-1.81304713464669e-008,0.759107768535614,0.761106252670288,-1.80610038569284e-006,-0.64862722158432,0.753067910671234,-2.05129708774621e-006,-0.657942831516266,0.651447117328644,-2.02863770937256e-006,-0.758694112300873,0.651558578014374,-1.85508872618811e-006,-0.758598327636719,0.724482178688049,-1.12091674964176e-005,-0.689293563365936,0.724474608898163,-2.97790302283829e-006,-0.689301550388336,0.636790752410889,-0.0012747059809044,-0.771035671234131,0.664818942546844,-0.0303760822862387,-0.746386706829071,-0.207422360777855,-3.46618321600545e-007,0.978251457214355,-0.243409484624863,-1.41975291967356e-007,0.969923734664917,-0.111971452832222,-3.66686379038583e-007,0.993711471557617,-0.110600784420967,1.55515408550855e-007,0.993865013122559,0.256091296672821,-1.92401580534352e-006,-0.966652631759644,0.243246480822563,-2.49507365879253e-006,-0.969964504241943,0.109125129878521,-2.69743782155274e-006,-0.994028031826019,0.109310172498226,-2.69085580839601e-006,-0.994007706642151,0.12408472597599,0.00183666474185884,-0.992269933223724,0.126401767134666,7.5640891736839e-005,-0.991979122161865,0.0922040790319443,-0.0063616638071835,-0.995719850063324,0.0908191874623299,-0.00533772353082895,-0.995853066444397,0.890818357467651,-0.0305216480046511,0.45333331823349,0.89081871509552,-0.0305127874016762,0.453333228826523,0.890817105770111,-0.0305522307753563,0.453333705663681,
- 0.89081484079361,-0.0306134074926376,0.453334271907806,0.890816450119019,-0.0305719599127769,0.453333914279938,0.493551254272461,-2.64095729107794e-006,-0.869716703891754,0.457064718008041,-4.91772743771435e-006,-0.889433562755585,0.577678978443146,-1.09105087631178e-006,-0.816263973712921,0.578949213027954,2.96870257443516e-006,-0.815363645553589,1,-4.75148863188224e-006,-0,1,-5.6980888984981e-006,-0,1,-6.64466915623052e-006,-0,1,-8.53780511533841e-006,-0,1,-5.69806070416234e-006,-0,1,-2.85826490653562e-006,-0,0,-1.78485890955926e-006,-1,-0.00207081018015742,0.00679332716390491,-0.99997478723526,0.0415077470242977,-2.1962891878502e-006,-0.999138236045837,0.0420385412871838,-1.95018242266087e-006,-0.999116003513336,-0.00207081018015742,0.00679332716390491,-0.99997478723526,-0.00267194118350744,-2.05631067728973e-006,-0.999996423721313,0.0414425767958164,-2.58825753007841e-006,-0.999140977859497,0.0415077470242977,-2.1962891878502e-006,-0.999138236045837,0.967111527919769,8.2618737451412e-007,-0.254352509975433,0.968206107616425,-4.65118500869721e-005,-0.250154078006744,0.993330836296082,-5.56877421331592e-006,-0.115299254655838,0.987378656864166,-1.86206807484268e-006,-0.158377468585968,0.938456535339355,8.13617516541854e-005,-0.345397353172302,0.938423335552216,2.77542021649424e-005,-0.345487833023071,0.968206107616425,-4.65118500869721e-005,-0.250154078006744,0.967111527919769,8.2618737451412e-007,-0.254352509975433,-0.938486814498901,-0.000101660552900285,0.345315366983414,-0.938392460346222,-5.13759696332272e-005,0.345571398735046,-0.881433606147766,1.70041994351777e-006,0.472307980060577,-0.900482058525085,-2.64937739302695e-007,0.434893190860748,-0.966939330101013,-1.54708209265664e-006,0.255006641149521,-0.968264698982239,3.63229082722683e-005,0.249927073717117,-0.938392460346222,-5.13759696332272e-005,0.345571398735046,-0.938486814498901,-0.000101660552900285,0.345315366983414,0.998635411262512,-1.30205544337514e-005,-0.0522236004471779,0.998635411262512,-2.54462611337658e-006,-0.0522235929965973,0.998635411262512,-8.96345500223106e-006,-0.052223589271307,
- 0.993330836296082,-5.56877421331592e-006,-0.115299254655838,0.994938492774963,-5.49233573110541e-006,-0.100485637784004,0.968206107616425,-4.65118500869721e-005,-0.250154078006744,0.938423335552216,2.77542021649424e-005,-0.345487833023071,0.93908566236496,-2.30662726607989e-006,-0.343683123588562,0.967731475830078,-2.2665194592264e-006,-0.251983642578125,0.821597397327423,-2.51115488936193e-006,-0.570068359375,0.875279784202576,-2.46166518991231e-006,-0.483616948127747,0.881397783756256,-3.87710770155536e-006,-0.472374826669693,0.821589946746826,-2.57769011113851e-006,-0.57007896900177,0.936368763446808,0.013987266458571,-0.350739151239395,0.943186938762665,-0.000999441952444613,-0.332261115312576,0.920770168304443,-5.23379640071653e-005,-0.390105426311493,0.92132431268692,-0.00112409528810531,-0.388793349266052,0.971306800842285,-0.0077992188744247,-0.237702235579491,0.971398591995239,-0.00718980934470892,-0.237345978617668,0.943186938762665,-0.000999441952444613,-0.332261115312576,0.936368763446808,0.013987266458571,-0.350739151239395,0.0124940806999803,0.516509771347046,-0.856190264225006,-0.0334730111062527,0.518795669078827,-0.85424268245697,-0.0793690755963326,0.519980609416962,-0.850482642650604,-0.0334730073809624,0.518795669078827,-0.85424268245697,-0.105652466416359,4.85111195303034e-006,-0.994403123855591,-0.105652466416359,2.54186920756183e-006,-0.994403123855591,-0.10565247386694,4.95260110255913e-007,-0.994403123855591,-0.10565247386694,1.68458097959956e-006,-0.994403123855591,-0.105652466416359,2.27924692808301e-006,-0.994403123855591,-0.10565247386694,3.13653140437964e-006,-0.994403123855591,-0.851220309734344,0.0256964564323425,0.524179100990295,-0.851226449012756,0.0256964564323425,0.524169087409973,-0.822008371353149,1.25106389532448e-005,0.569475471973419,-0.822005927562714,-1.00673978522536e-005,0.569478988647461,-0.987378358840942,-1.17939907795517e-006,0.158379316329956,-0.993279576301575,0.00324519514106214,0.115694686770439,-0.968264698982239,3.63229082722683e-005,0.249927073717117,-0.966939330101013,-1.54708209265664e-006,0.255006641149521,
- 0.994938492774963,-5.49233573110541e-006,-0.100485637784004,0.993330836296082,-5.56877421331592e-006,-0.115299254655838,0.968206107616425,-4.65118500869721e-005,-0.250154078006744,0.967731475830078,-2.2665194592264e-006,-0.251983642578125,0.986760497093201,-2.63182027993025e-006,-0.162184193730354,0.986760377883911,-1.88416561286431e-006,-0.162185177206993,0.971398591995239,-0.00718980934470892,-0.237345978617668,0.971306800842285,-0.0077992188744247,-0.237702235579491,0.478306442499161,1.13962573777826e-006,0.878193020820618,0.478306442499161,1.1396285799492e-006,0.878193020820618,0.478306412696838,1.32956199649925e-006,0.878193020820618,0.478306442499161,1.70943508237542e-006,0.878193020820618,0.478306442499161,1.42452893214795e-006,0.878193020820618,0.900487184524536,-2.22042694986158e-006,-0.434882581233978,0.881397783756256,-3.87710770155536e-006,-0.472374826669693,0.938423335552216,2.77542021649424e-005,-0.345487833023071,0.938456535339355,8.13617516541854e-005,-0.345397353172302,0.881397783756256,-3.87710770155536e-006,-0.472374826669693,0.875279784202576,-2.46166518991231e-006,-0.483616948127747,0.93908566236496,-2.30662726607989e-006,-0.343683123588562,0.938423335552216,2.77542021649424e-005,-0.345487833023071,-0.667284250259399,-0.00152272812556475,0.744801580905914,-0.724460899829865,-6.20248314930905e-008,0.689315974712372,-0.72446084022522,-3.75781494810212e-009,0.689316034317017,-0.685942709445953,-0.019337885081768,0.727398633956909,-0.555603921413422,0.0232295319437981,0.83112245798111,-0.667284250259399,-0.00152272812556475,0.744801580905914,-0.685942709445953,-0.019337885081768,0.727398633956909,-0.554792642593384,0.0210259426385164,0.831722974777222,-0.437819689512253,0.000161100251716562,0.899062812328339,-0.555603921413422,0.0232295319437981,0.83112245798111,-0.554792642593384,0.0210259426385164,0.831722974777222,-0.43920910358429,-0.00100316421594471,0.89838433265686,-0.13658732175827,-0.00218442268669605,0.990625619888306,-0.280047923326492,-6.07418041909114e-005,0.959986090660095,-0.278173059225082,0.00141052843537182,0.960530042648315,
- -0.183954536914825,-0.034875649958849,0.982315897941589,-0.00911478605121374,0.0123960440978408,0.999881625175476,-0.13658732175827,-0.00218442268669605,0.990625619888306,-0.183954536914825,-0.034875649958849,0.982315897941589,-0.00827436335384846,0.0108927367255092,0.999906361103058,0.0641685128211975,1.01950138287066e-006,0.997939109802246,-0.00911478605121374,0.0123960440978408,0.999881625175476,-0.00827436335384846,0.0108927367255092,0.999906361103058,0.0641674697399139,2.37812045611463e-007,0.997939169406891,-0.970408618450165,-0.00810222048312426,0.24133263528347,-0.986760258674622,8.96518486115383e-007,0.162186279892921,-0.986760199069977,7.47374656384636e-007,0.162186071276665,-0.970518708229065,-0.00760912848636508,0.240905418992043,-0.930918991565704,-0.00140570849180222,0.365223228931427,-0.970408618450165,-0.00810222048312426,0.24133263528347,-0.970518708229065,-0.00760912848636508,0.240905418992043,-0.915678977966309,0.025755887851119,0.401084423065186,-0.881435751914978,3.65775595128071e-005,0.472303956747055,-0.930918991565704,-0.00140570849180222,0.365223228931427,-0.915678977966309,0.025755887851119,0.401084423065186,-0.881991982460022,-0.000850785931106657,0.471263885498047,0.00267193955369294,0.00115618819836527,0.999995827674866,0.00497616268694401,-0.006765466183424,0.999964833259583,0.00497555732727051,-0.0169987753033638,0.999843239784241,0.00207084626890719,-0.0033826781436801,0.999992191791534,-0.0451786741614342,-2.05247431495081e-007,0.998978972434998,0.00267193955369294,0.00115618819836527,0.999995827674866,0.00207084626890719,-0.0033826781436801,0.999992191791534,-0.0452428720891476,-5.12701170407581e-008,0.998976051807404,-0.256087154150009,4.7932280722307e-007,0.966653764247894,-0.112155735492706,-4.59083821624517e-007,0.993690669536591,-0.111971452832222,-3.66686379038583e-007,0.993711471557617,-0.243409484624863,-1.41975291967356e-007,0.969923734664917,-0.354081779718399,1.3719358094022e-008,0.935214459896088,-0.256087154150009,4.7932280722307e-007,0.966653764247894,-0.243409484624863,-1.41975291967356e-007,0.969923734664917,
- -0.3540198802948,4.77479188703001e-005,0.935237884521484,-0.761094868183136,1.11491694099186e-007,0.64864057302475,-0.651557803153992,0,0.758598983287811,-0.651446282863617,0,0.758694767951965,-0.753006219863892,6.97071342870004e-008,0.658013522624969,-0.821602582931519,-2.79786105394919e-009,0.570060670375824,-0.761094868183136,1.11491694099186e-007,0.64864057302475,-0.753006219863892,6.97071342870004e-008,0.658013522624969,-0.821596562862396,1.11906487632041e-007,0.570069372653961,-0.988317430019379,-2.07146484854093e-007,0.152409747242928,-0.967731773853302,1.3071735338599e-007,0.251982986927032,-0.968264698982239,3.63229082722683e-005,0.249927073717117,-0.993279576301575,0.00324519514106214,0.115694686770439,-0.998627662658691,0.00432703644037247,0.0521926283836365,-0.988317430019379,-2.07146484854093e-007,0.152409747242928,-0.993279576301575,0.00324519514106214,0.115694686770439,-0.999997198581696,0.000122286248370074,-0.00236708275042474,-0.999986231327057,-0.00421192590147257,-0.00311653153039515,-0.998627662658691,0.00432703644037247,0.0521926283836365,-0.993279576301575,0.00324519514106214,0.115694686770439,-0.875282943248749,-6.67127721953875e-008,0.483611196279526,-0.821602582931519,-2.79786105394919e-009,0.570060670375824,-0.821596562862396,1.11906487632041e-007,0.570069372653961,-0.881433606147766,1.70041994351777e-006,0.472307980060577,-0.939086616039276,9.16436988518399e-008,0.343680709600449,-0.875282943248749,-6.67127721953875e-008,0.483611196279526,-0.881433606147766,1.70041994351777e-006,0.472307980060577,-0.938392460346222,-5.13759696332272e-005,0.345571398735046,-0.112155735492706,-4.59083821624517e-007,0.993690669536591,-0.0451786741614342,-2.05247431495081e-007,0.998978972434998,-0.0452428720891476,-5.12701170407581e-008,0.998976051807404,-0.111971452832222,-3.66686379038583e-007,0.993711471557617,-0.444625675678253,-7.13926874595927e-006,0.895716607570648,-0.354081779718399,1.3719358094022e-008,0.935214459896088,-0.3540198802948,4.77479188703001e-005,0.935237884521484,-0.456855654716492,-8.09436969575472e-005,0.889540910720825,
- -0.577167868614197,0,0.816625535488129,-0.444625675678253,-7.13926874595927e-006,0.895716607570648,-0.456855654716492,-8.09436969575472e-005,0.889540910720825,-0.577670753002167,-3.28242058458272e-005,0.816269934177399,-0.651557803153992,0,0.758598983287811,-0.577167868614197,0,0.816625535488129,-0.577670753002167,-3.28242058458272e-005,0.816269934177399,-0.651446282863617,0,0.758694767951965,-0.967731773853302,1.3071735338599e-007,0.251982986927032,-0.939086616039276,9.16436988518399e-008,0.343680709600449,-0.938392460346222,-5.13759696332272e-005,0.345571398735046,-0.968264698982239,3.63229082722683e-005,0.249927073717117,0.00248814560472965,0,0.999996900558472,0.00497627630829811,0,0.999987721443176,0.00497627630829811,0,0.999987721443176,0.00248814560472965,0,0.999996900558472,-0.0312825888395309,-4.4579735458683e-008,0.999510645866394,0.00248814560472965,0,0.999996900558472,0.00248814560472965,0,0.999996900558472,-0.0318959765136242,-4.34277254157678e-008,0.999491155147552,-0.135959535837173,-1.29192745390583e-009,0.990714371204376,-0.0312825888395309,-4.4579735458683e-008,0.999510645866394,-0.0318959765136242,-4.34277254157678e-008,0.999491155147552,-0.1365567445755,1.36193478716962e-009,0.990632295608521,-0.271405041217804,6.33977776942629e-008,0.962465167045593,-0.135959535837173,-1.29192745390583e-009,0.990714371204376,-0.1365567445755,1.36193478716962e-009,0.990632295608521,-0.239539057016373,6.40250448213919e-008,0.970886766910553,-0.368517845869064,5.80585286513724e-008,0.929620683193207,-0.271405041217804,6.33977776942629e-008,0.962465167045593,-0.239539057016373,6.40250448213919e-008,0.970886766910553,-0.335903376340866,5.86874193686526e-008,0.941896498203278,-0.447049617767334,7.11898948679845e-008,0.894509136676788,-0.368517845869064,5.80585286513724e-008,0.929620683193207,-0.335903376340866,5.86874193686526e-008,0.941896498203278,-0.447025388479233,7.10652088287134e-008,0.894521296024323,-0.447049617767334,7.11898948679845e-008,0.894509136676788,-0.447025388479233,7.10652088287134e-008,0.894521296024323,
- -0.555592894554138,9.34234289928781e-009,0.831454455852509,-0.555600166320801,8.93055229767015e-009,0.831449568271637,-0.689927339553833,3.15195194389162e-008,0.723878681659698,-0.555600166320801,8.93055229767015e-009,0.831449568271637,-0.555592894554138,9.34234289928781e-009,0.831454455852509,-0.653645038604736,3.4559452188887e-008,0.756801247596741,-0.769103407859802,2.04950083571021e-008,0.639124393463135,-0.689927339553833,3.15195194389162e-008,0.723878681659698,-0.653645038604736,3.4559452188887e-008,0.756801247596741,-0.747194230556488,2.16733937463687e-008,0.664605677127838,-0.82200300693512,-1.72104162032838e-008,0.569483280181885,-0.769103407859802,2.04950083571021e-008,0.639124393463135,-0.747194230556488,2.16733937463687e-008,0.664605677127838,-0.822005391120911,-1.71951892724564e-008,0.569479823112488,-0.82200300693512,-1.72104162032838e-008,0.569483280181885,-0.822005391120911,-1.71951892724564e-008,0.569479823112488,-0.876770317554474,1.5619820104007e-008,0.480909496545792,-0.876768589019775,1.55574433335914e-008,0.480912536382675,-0.996360778808594,1.25156540686788e-009,0.0852362290024757,-0.998772263526917,1.58427626573143e-009,0.0495381839573383,-0.998772144317627,1.5843287792805e-009,0.0495398342609406,-0.997726619243622,1.05553943363645e-009,0.0673918724060059,-0.990583300590515,2.10686934565274e-009,0.136911481618881,-0.996360778808594,1.25156540686788e-009,0.0852362290024757,-0.997726619243622,1.05553943363645e-009,0.0673918724060059,-0.992775022983551,1.96393590279342e-009,0.119990758597851,-0.967945337295532,1.3696705991606e-008,0.251160979270935,-0.990583300590515,2.10686934565274e-009,0.136911481618881,-0.992775022983551,1.96393590279342e-009,0.119990758597851,-0.979248881340027,1.11453397622086e-008,0.202661335468292,-0.92020571231842,2.59614552078347e-008,0.391435116529465,-0.967945337295532,1.3696705991606e-008,0.251160979270935,-0.979248881340027,1.11453397622086e-008,0.202661335468292,-0.938403844833374,2.28980070460238e-008,0.345540374517441,-0.876770317554474,1.5619820104007e-008,0.480909496545792,
- -0.92020571231842,2.59614552078347e-008,0.391435116529465,-0.938403844833374,2.28980070460238e-008,0.345540374517441,-0.876768589019775,1.55574433335914e-008,0.480912536382675,-0.100279368460178,-0.516758918762207,-0.850237786769867,-0.0558592230081558,-0.518827199935913,-0.853052139282227,-0.0113281803205609,-0.5198655128479,-0.854173004627228,-0.0558592230081558,-0.518827199935913,-0.853052139282227,-0.864420413970947,0.502555131912231,-0.0146871246397495,-0.864420413970947,0.502555131912231,-0.014687136746943,-0.864420473575592,0.502555251121521,-0.0146871516481042,-0.864420473575592,0.502555251121521,-0.0146871395409107,0.683626532554626,-0.0714433640241623,-0.726326763629913,0.999997913837433,-0.00154094793833792,0.0013370254309848,0.999996483325958,-0.00264382129535079,5.28362834302243e-005,0.996867299079895,-0.0687904506921768,-0.0390308648347855,0.999997913837433,-0.00154094793833792,0.0013370254309848,0.696928441524506,0.193861484527588,0.690440833568573,0.999053537845612,0.0181303191930056,0.0395384766161442,0.999996483325958,-0.00264382129535079,5.28362834302243e-005,-0.657688081264496,0.0585484504699707,-0.751011550426483,-0.825936138629913,-0.112454265356064,-0.552434206008911,-0.998617112636566,-0.0181181505322456,-0.0493509732186794,-0.990539252758026,-0.131790429353714,-0.0382523350417614,0.887777149677277,-0.221299424767494,0.403581887483597,0.881240010261536,0.116090007126331,-0.458191096782684,0.99877792596817,-0.00602906988933682,-0.0490537285804749,0.998802900314331,0.000544816488400102,0.0489131584763527,0.881240010261536,0.116090007126331,-0.458191096782684,0.683626532554626,-0.0714433640241623,-0.726326763629913,0.996867299079895,-0.0687904506921768,-0.0390308648347855,0.99877792596817,-0.00602906988933682,-0.0490537285804749,0.578407764434814,-2.33224773182883e-006,0.815747857093811,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.455404371023178,-2.05133960662351e-006,0.890284717082977,0.492762267589569,-2.06862728191481e-006,0.870164096355438,0.650392651557922,2.95226755042677e-006,0.759598195552826,
- 0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.578407764434814,-2.33224773182883e-006,0.815747857093811,0.938771367073059,-2.492080511729e-006,0.344540923833847,0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.88187575340271,-2.49513118433242e-006,0.471481889486313,0.898601949214935,-3.05439107251004e-006,0.438765019178391,0.966581284999847,-2.05350852411357e-006,0.25636026263237,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.938771367073059,-2.492080511729e-006,0.344540923833847,-0.966629147529602,-3.96518146317248e-007,-0.256180256605148,-0.96692031621933,-3.8823048953418e-007,-0.255078762769699,-0.993380546569824,-0.00315710273571312,-0.114827230572701,-0.987674593925476,-2.98288625799614e-007,-0.156521335244179,-0.938690066337585,3.43500374810901e-008,-0.344762206077576,-0.938199162483215,-6.27290489774168e-007,-0.346096009016037,-0.96692031621933,-3.8823048953418e-007,-0.255078762769699,-0.966629147529602,-3.96518146317248e-007,-0.256180256605148,-0.650469839572906,0.000110137945739552,-0.75953209400177,-0.651576995849609,-3.31097689922899e-005,-0.758582532405853,-0.751988887786865,-8.11547652119771e-005,-0.659175753593445,-0.723877370357513,7.44291992305079e-006,-0.689928710460663,-0.57832533121109,-3.68599216926668e-007,-0.815806210041046,-0.577807903289795,-3.24300600595961e-007,-0.816172778606415,-0.651576995849609,-3.31097689922899e-005,-0.758582532405853,-0.650469839572906,0.000110137945739552,-0.75953209400177,0.353520900011063,-2.51111532634241e-006,0.935426652431488,0.35353296995163,-2.57765509559249e-006,0.93542218208313,0.455404371023178,-2.05133960662351e-006,0.890284717082977,0.444413900375366,-1.80612698841287e-006,0.895821571350098,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.65203583240509,-2.44675288740837e-006,0.758188188076019,0.577701151371002,-1.85509315997479e-006,0.81624835729599,
- 0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.751837074756622,-4.9110103645944e-006,0.659348905086517,0.760933518409729,-2.80181939160684e-006,0.648829877376556,0.65203583240509,-2.44675288740837e-006,0.758188188076019,0.821242928504944,-2.44453644882014e-006,0.570578694343567,0.821288049221039,-2.32537081501505e-006,0.570513725280762,0.88187575340271,-2.49513118433242e-006,0.471481889486313,0.87554132938385,-1.92400534615444e-006,0.483143389225006,0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.966959357261658,-2.74526155408239e-006,0.25493061542511,0.93813294172287,-2.7183582460566e-006,0.346275329589844,0.998338937759399,0.01511902641505,0.0555948093533516,0.994723260402679,-2.28241060540313e-006,0.10259485244751,0.993366479873657,0.0075713861733675,0.114741906523705,0.997996628284454,0.0302365105599165,0.0555757507681847,0.963701128959656,0.00696282740682364,0.266892403364182,0.963985204696655,0.00757314031943679,0.265848070383072,0.974847495555878,-6.89192966092378e-005,0.222872912883759,0.97440630197525,-0.00154974311590195,0.224788710474968,0.942227005958557,-0.0109306555241346,0.334796696901321,0.946686804294586,-0.000759417482186109,0.322154641151428,0.963985204696655,0.00757314031943679,0.265848070383072,0.963701128959656,0.00696282740682364,0.266892403364182,-0.812271237373352,-0.000122133060358465,-0.583279967308044,-0.832176148891449,0.000139824624056928,-0.554511308670044,-0.8492271900177,0.0633148103952408,-0.524217963218689,-0.849226236343384,0.0633148103952408,-0.524219512939453,0.653636038303375,0.00401165569201112,0.756798326969147,0.654151082038879,0.00428538909181952,0.7563516497612,0.672158062458038,-7.20288444426842e-005,0.740407705307007,0.670627474784851,-0.00162695487961173,0.741792500019073,0.562627792358398,-0.0303759407252073,0.826152145862579,0.5933438539505,-0.00127832568250597,0.804948091506958,0.654151082038879,0.00428538909181952,0.7563516497612,0.653636038303375,0.00401165569201112,0.756798326969147,
- -0.352831363677979,1.24864009194425e-005,-0.935687005519867,-0.402628004550934,-0.0250282790511847,-0.915021479129791,-0.402637749910355,-0.0250282809138298,-0.915017187595367,-0.352843046188354,-1.03753209259594e-005,-0.935682475566864,0.760933518409729,-2.80181939160684e-006,0.648829877376556,0.751837074756622,-4.9110103645944e-006,0.659348905086517,0.821288049221039,-2.32537081501505e-006,0.570513725280762,0.821242928504944,-2.44453644882014e-006,0.570578694343567,-0.790141999721527,-0.0588179975748062,-0.610095143318176,-0.790137648582459,-0.0588179975748062,-0.610100746154785,-0.832176148891449,0.000139824624056928,-0.554511308670044,-0.812271237373352,-0.000122133060358465,-0.583279967308044,0.481839150190353,-1.02565827546641e-005,-0.876259803771973,0.481839150190353,-1.11112885861075e-005,-0.876259803771973,0.481839120388031,-1.1966012607445e-005,-0.876259684562683,0.481839150190353,-1.19660335258232e-005,-0.876259803771973,0.481839060783386,-1.13962014438584e-005,-0.876259744167328,-0.0132650882005692,-0.501325130462646,-0.865157306194305,0.0328635089099407,-0.503136992454529,-0.863581657409668,0.0789219886064529,-0.503875255584717,-0.860163509845734,0.0328635089099407,-0.503136992454529,-0.863581657409668,0.891945719718933,3.41886402566161e-006,-0.452142715454102,0.891945719718933,3.41886402566161e-006,-0.452142715454102,0.891945660114288,3.41886266141955e-006,-0.452142655849457,0.891945600509644,3.41886175192485e-006,-0.452142685651779,0.891945719718933,3.41886334354058e-006,-0.452142685651779,-0.492780774831772,-5.27785971371486e-007,-0.870153486728668,-0.455472886562347,-2.24777210178218e-007,-0.890249669551849,-0.577807903289795,-3.24300600595961e-007,-0.816172778606415,-0.57832533121109,-3.68599216926668e-007,-0.815806210041046,0.444413900375366,-1.80612698841287e-006,0.895821571350098,0.455404371023178,-2.05133960662351e-006,0.890284717082977,0.57782119512558,-2.02867568077636e-006,0.81616348028183,0.577701151371002,-1.85509315997479e-006,0.81624835729599,0.492760956287384,-5.36772085979464e-006,0.870164752006531,
- 0.492764174938202,-2.57965939454152e-006,0.870162904262543,0.5933438539505,-0.00127832568250597,0.804948091506958,0.562627792358398,-0.0303759407252073,0.826152145862579,-0.898601710796356,-4.71977642746424e-007,-0.438765287399292,-0.881790041923523,-3.90755616308525e-007,-0.471642404794693,-0.938199162483215,-6.27290489774168e-007,-0.346096009016037,-0.938690066337585,3.43500374810901e-008,-0.344762206077576,0.87554132938385,-1.92400534615444e-006,0.483143389225006,0.88187575340271,-2.49513118433242e-006,0.471481889486313,0.938199162483215,-2.7153064365848e-006,0.34609591960907,0.93813294172287,-2.7183582460566e-006,0.346275329589844,0.932452797889709,0.00184310099575669,0.361287415027618,0.931605160236359,7.60007387725636e-005,0.363472104072571,0.946686804294586,-0.000759417482186109,0.322154641151428,0.942227005958557,-0.0109306555241346,0.334796696901321,-0.656066179275513,-0.0305219367146492,0.754085958003998,-0.656066238880157,-0.0305130761116743,0.754086256027222,-0.656066179275513,-0.0305523630231619,0.754084706306458,-0.656066179275513,-0.0306132156401873,0.754082262516022,-0.656066179275513,-0.0305720046162605,0.754083871841431,0.723854601383209,-2.64063737631659e-006,0.689952552318573,0.751837074756622,-4.9110103645944e-006,0.659348905086517,0.651573836803436,-1.09496045297419e-006,0.758585274219513,0.650392651557922,2.95226755042677e-006,0.759598195552826,-0.109687894582748,-5.51119683223078e-006,0.993966042995453,-0.109687894582748,-6.26787959845387e-006,0.993966102600098,-0.109687887132168,-7.02459465173888e-006,0.993966042995453,-0.109687887132168,-8.53799792821519e-006,0.993966102600098,-0.109687887132168,-6.26790233582142e-006,0.993966042995453,-0.109687894582748,-3.99780401494354e-006,0.993966102600098,0.987675666809082,-1.97548502001155e-006,0.156514585018158,0.993366479873657,0.0075713861733675,0.114741906523705,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.966581284999847,-2.05350852411357e-006,0.25636026263237,0.993366479873657,0.0075713861733675,0.114741906523705,0.994723260402679,-2.28241060540313e-006,0.10259485244751,
- 0.966959357261658,-2.74526155408239e-006,0.25493061542511,0.966921091079712,-2.33535570259846e-006,0.255075693130493,0.0409187190234661,3.59866419330501e-007,0.999162435531616,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,0.0054625584743917,-2.00291128749086e-006,0.999985098838806,0,-2.43462136495509e-006,1,0.107955805957317,6.30287395324558e-005,0.994155704975128,0.108394809067249,2.15613272303017e-005,0.994107961654663,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,0.0409187190234661,3.59866419330501e-007,0.999162435531616,-0.110365994274616,-6.51295122224838e-005,-0.993891000747681,-0.111245319247246,-3.37461679009721e-005,-0.993792951107025,-0.244169056415558,1.35775849230413e-006,-0.969732701778412,-0.203242242336273,-7.63391767577559e-007,-0.97912859916687,-0.0445397198200226,3.60653211828321e-006,-0.999007642269135,-0.0428061597049236,1.61992156790802e-005,-0.999083399772644,-0.111245319247246,-3.37461679009721e-005,-0.993792951107025,-0.110365994274616,-6.51295122224838e-005,-0.993891000747681,0.0140948966145515,-3.61110687663313e-006,0.999900758266449,0.0140948966145515,-3.2788516364235e-006,0.999900758266449,0.0140948966145515,-2.66832603301737e-006,0.999900698661804,0.0054625584743917,-2.00291128749086e-006,0.999985098838806,0.007343546487391,-2.1799792193633e-006,0.999973058700562,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,0.108394809067249,2.15613272303017e-005,0.994107961654663,0.106748074293137,-2.28245153266471e-006,0.994286119937897,0.0401749685406685,-2.1510204533115e-006,0.999192655086517,0.353520900011063,-2.51111532634241e-006,0.935426652431488,0.256614744663239,-2.46169361162174e-006,0.966513812541962,0.244219109416008,-3.87495401810156e-006,0.969720065593719,0.35353296995163,-2.57765509559249e-006,0.93542218208313,0.103508986532688,0.00635974714532495,0.994608163833618,0.10448332875967,0.00695411674678326,0.994502305984497,0.154830947518349,-5.2218820201233e-005,0.987941086292267,0.153427273035049,-0.00112120038829744,0.98815929889679,0.0264506787061691,-0.00820012111216784,0.999616503715515,
- 0.0393207892775536,0.00223915744572878,0.999224066734314,0.10448332875967,0.00695411674678326,0.994502305984497,0.103508986532688,0.00635974714532495,0.994608163833618,0.855200707912445,0.518159449100494,0.0119467955082655,0.855189263820648,0.518198132514954,0.0110516417771578,0.855177164077759,0.518236339092255,0.0101564787328243,0.855189323425293,0.518198072910309,0.0110516408458352,1,4.85124246552004e-006,-0,1,1.66493725828332e-006,-0,1,-9.96047333501338e-007,-0,1,4.2773126551765e-007,-0,1,1.13962471459672e-006,-0,1,2.37682797887828e-006,-0,-0.30182158946991,0.025696374475956,-0.953018069267273,-0.301807701587677,0.0256963782012463,-0.953022480010986,-0.352831363677979,1.24864009194425e-005,-0.935687005519867,-0.352843046188354,-1.03753209259594e-005,-0.935682475566864,0,-3.29722183778358e-007,-1,-0.00547705357894301,0.00270083383657038,-0.999981343746185,-0.0428061597049236,1.61992156790802e-005,-0.999083399772644,-0.0445397198200226,3.60653211828321e-006,-0.999007642269135,0.007343546487391,-2.1799792193633e-006,0.999973058700562,0.0054625584743917,-2.00291128749086e-006,0.999985098838806,0.0391216389834881,-1.9937446268159e-005,0.99923449754715,0.0401749685406685,-2.1510204533115e-006,0.999192655086517,-3.09588040181552e-006,-2.32405864153407e-006,1,-2.16711487155408e-006,-1.62684000315494e-006,1,0.0393207892775536,0.00223915744572878,0.999224066734314,0.0264506787061691,-0.00820012111216784,0.999616503715515,-0.968046307563782,1.13965586479026e-006,0.250771552324295,-0.968046307563782,1.13965882064804e-006,0.250771552324295,-0.968046307563782,1.32959735310578e-006,0.250771552324295,-0.968046307563782,1.70948044342367e-006,0.250771522521973,-0.968046307563782,1.42456667617807e-006,0.250771522521973,0.203197583556175,-2.22041444430943e-006,0.979137778282166,0.244219109416008,-3.87495401810156e-006,0.969720065593719,0.108394809067249,2.15613272303017e-005,0.994107961654663,0.107955805957317,6.30287395324558e-005,0.994155704975128,0.244219109416008,-3.87495401810156e-006,0.969720065593719,0.256614744663239,-2.46169361162174e-006,0.966513812541962,
- 0.106748074293137,-2.28245153266471e-006,0.994286119937897,0.108394809067249,2.15613272303017e-005,0.994107961654663,0.999571740627289,0.00960685964673758,0.0276414938271046,0.999393343925476,-0.00608628429472446,0.0342919267714024,0.999386608600616,0.00720594683662057,-0.0342718362808228,0.999536633491516,-0.0127855520695448,-0.0276218894869089,0.999999821186066,-0.000600150262471288,8.26710220280802e-006,-0.560484707355499,-0.00152394105680287,-0.82816344499588,-0.492775738239288,-6.00476255385729e-007,-0.870156347751617,-0.492778688669205,1.96205428437679e-006,-0.870154678821564,-0.539071440696716,-0.0193387288600206,-0.842038094997406,-0.671356022357941,0.0232363771647215,-0.740770697593689,-0.560484707355499,-0.00152394105680287,-0.82816344499588,-0.539071440696716,-0.0193387288600206,-0.842038094997406,-0.672126889228821,0.0210292097181082,-0.740137279033661,-0.765861392021179,0.000161886317073368,-0.643005847930908,-0.671356022357941,0.0232363771647215,-0.740770697593689,-0.672126889228821,0.0210292097181082,-0.740137279033661,-0.764855563640594,-0.00101443869061768,-0.644201159477234,-0.929049134254456,-0.00246841297484934,-0.36994805932045,-0.863252580165863,-6.09255585004576e-005,-0.504772186279297,-0.864231884479523,0.00140493782237172,-0.503091752529144,-0.909201383590698,-0.0356810130178928,-0.414824813604355,-0.977058887481689,0.0198013912886381,-0.212047040462494,-0.929049134254456,-0.00246841297484934,-0.36994805932045,-0.909201383590698,-0.0356810130178928,-0.414824813604355,-0.977241814136505,0.0172042306512594,-0.211429700255394,-0.995433807373047,5.17074877279811e-005,-0.0954549834132195,-0.977058887481689,0.0198013912886381,-0.212047040462494,-0.977241814136505,0.0172042306512594,-0.211429700255394,-0.995275735855103,-0.00117960479110479,-0.0970826745033264,-0.0376865677535534,-0.00425305357202888,-0.999280631542206,-6.19203490259679e-007,4.64810767653034e-007,-1,-1.23840698051936e-006,9.29621535306069e-007,-1,-0.0373920910060406,-0.00367097882553935,-0.999293923377991,-0.129790797829628,-0.00152279331814498,-0.991540193557739,
- -0.0376865677535534,-0.00425305357202888,-0.999280631542206,-0.0373920910060406,-0.00367097882553935,-0.999293923377991,-0.167862385511398,0.0254021100699902,-0.985483109951019,-0.244123011827469,3.60149824700784e-005,-0.969744265079498,-0.129790797829628,-0.00152279331814498,-0.991540193557739,-0.167862385511398,0.0254021100699902,-0.985483109951019,-0.242986753582954,-0.00084530096501112,-0.970029234886169,-0.994723200798035,-3.21542017900356e-007,-0.102595627307892,-0.999986231327057,-0.00421192590147257,-0.00311653153039515,-0.999997198581696,0.000122286248370074,-0.00236708275042474,-0.993380546569824,-0.00315710273571312,-0.114827230572701,-0.96695864200592,-5.30766328665777e-007,-0.254933565855026,-0.994723200798035,-3.21542017900356e-007,-0.102595627307892,-0.993380546569824,-0.00315710273571312,-0.114827230572701,-0.96692031621933,-3.8823048953418e-007,-0.255078762769699,-0.875541806221008,2.34147904620841e-007,-0.483142465353012,-0.93813294172287,-7.46436171539244e-007,-0.346275329589844,-0.938199162483215,-6.27290489774168e-007,-0.346096009016037,-0.881790041923523,-3.90755616308525e-007,-0.471642404794693,-0.821252167224884,-2.24321183850407e-007,-0.570565402507782,-0.875541806221008,2.34147904620841e-007,-0.483142465353012,-0.881790041923523,-3.90755616308525e-007,-0.471642404794693,-0.821289956569672,4.75121087220032e-005,-0.570510983467102,-0.444413125514984,-1.32144592157601e-007,-0.895821988582611,-0.577688038349152,-2.98048860258859e-007,-0.816257655620575,-0.577807903289795,-3.24300600595961e-007,-0.816172778606415,-0.455472886562347,-2.24777210178218e-007,-0.890249669551849,-0.3534976541996,-2.28850765893185e-007,-0.93543541431427,-0.444413125514984,-1.32144592157601e-007,-0.895821988582611,-0.455472886562347,-2.24777210178218e-007,-0.890249669551849,-0.353507667779922,-1.14144185658915e-007,-0.935431659221649,0,-4.07793322665384e-007,-1,-0.043875940144062,-1.71341753230081e-007,-0.999036967754364,-0.0428061597049236,1.61992156790802e-005,-0.999083399772644,-0.00547705357894301,0.00270083383657038,-0.999981343746185,
- -0.0141022736206651,0.00486448034644127,-0.999888777732849,0,-4.07793322665384e-007,-1,-0.00547705357894301,0.00270083383657038,-0.999981343746185,-0.0144648347049952,0.00729584321379662,-0.999868869781494,-0.0144655704498291,0.00378602952696383,-0.999888300895691,-0.0141022736206651,0.00486448034644127,-0.999888777732849,-0.00547705357894301,0.00270083383657038,-0.999981343746185,-0.256629794836044,-4.00786973386857e-007,-0.966509878635406,-0.3534976541996,-2.28850765893185e-007,-0.93543541431427,-0.353507667779922,-1.14144185658915e-007,-0.935431659221649,-0.244169056415558,1.35775849230413e-006,-0.969732701778412,-0.109679982066154,-2.01560609980334e-007,-0.993966996669769,-0.256629794836044,-4.00786973386857e-007,-0.966509878635406,-0.244169056415558,1.35775849230413e-006,-0.969732701778412,-0.111245319247246,-3.37461679009721e-005,-0.993792951107025,-0.93813294172287,-7.46436171539244e-007,-0.346275329589844,-0.96695864200592,-5.30766328665777e-007,-0.254933565855026,-0.96692031621933,-3.8823048953418e-007,-0.255078762769699,-0.938199162483215,-6.27290489774168e-007,-0.346096009016037,-0.760948717594147,-7.36242509447038e-006,-0.648811995983124,-0.821252167224884,-2.24321183850407e-007,-0.570565402507782,-0.821289956569672,4.75121087220032e-005,-0.570510983467102,-0.751988887786865,-8.11547652119771e-005,-0.659175753593445,-0.652045607566834,-3.28679192307391e-007,-0.758179843425751,-0.760948717594147,-7.36242509447038e-006,-0.648811995983124,-0.751988887786865,-8.11547652119771e-005,-0.659175753593445,-0.651576995849609,-3.31097689922899e-005,-0.758582532405853,-0.577688038349152,-2.98048860258859e-007,-0.816257655620575,-0.652045607566834,-3.28679192307391e-007,-0.758179843425751,-0.651576995849609,-3.31097689922899e-005,-0.758582532405853,-0.577807903289795,-3.24300600595961e-007,-0.816172778606415,-0.043875940144062,-1.71341753230081e-007,-0.999036967754364,-0.109679982066154,-2.01560609980334e-007,-0.993966996669769,-0.111245319247246,-3.37461679009721e-005,-0.993792951107025,-0.0428061597049236,1.61992156790802e-005,-0.999083399772644,
- -0.992404162883759,0,-0.123019963502884,-0.998453140258789,0,-0.0556002333760262,-0.998453259468079,0,-0.0555992014706135,-0.996000945568085,0,-0.0893428847193718,-0.967462241649628,1.6947222292174e-008,-0.253015428781509,-0.992404162883759,0,-0.123019963502884,-0.996000945568085,0,-0.0893428847193718,-0.978770792484283,1.34314399602431e-008,-0.204957738518715,-0.919282972812653,1.76972179133372e-008,-0.393597215414047,-0.967462241649628,1.6947222292174e-008,-0.253015428781509,-0.978770792484283,1.34314399602431e-008,-0.204957738518715,-0.937738299369812,1.47809497974549e-008,-0.347342669963837,-0.867764055728912,-3.27534444011235e-008,-0.496976464986801,-0.919282972812653,1.76972179133372e-008,-0.393597215414047,-0.937738299369812,1.47809497974549e-008,-0.347342669963837,-0.883671045303345,-3.0851506238605e-008,-0.46810856461525,-0.81231027841568,-1.81690662515166e-008,-0.58322548866272,-0.867764055728912,-3.27534444011235e-008,-0.496976464986801,-0.883671045303345,-3.0851506238605e-008,-0.46810856461525,-0.832141399383545,-1.73200120912043e-008,-0.554563581943512,-0.759191513061523,2.06683132830676e-008,-0.650867283344269,-0.81231027841568,-1.81690662515166e-008,-0.58322548866272,-0.832141399383545,-1.73200120912043e-008,-0.554563581943512,-0.759208559989929,2.0738998074421e-008,-0.650847315788269,-0.759191513061523,2.06683132830676e-008,-0.650867283344269,-0.759208559989929,2.0738998074421e-008,-0.650847315788269,-0.671674430370331,1.66478457686026e-008,-0.740846335887909,-0.671667039394379,1.59152158119014e-008,-0.740853190422058,-0.534700155258179,0,-0.845041871070862,-0.671667039394379,1.59152158119014e-008,-0.740853190422058,-0.671674430370331,1.66478457686026e-008,-0.740846335887909,-0.575441777706146,0,-0.817842721939087,-0.433245331048965,5.84199391084894e-008,-0.901275992393494,-0.534700155258179,0,-0.845041871070862,-0.575441777706146,0,-0.817842721939087,-0.463284879922867,5.71578588903776e-008,-0.886209309101105,-0.352855533361435,1.41765958971973e-008,-0.935677826404572,-0.433245331048965,5.84199391084894e-008,-0.901275992393494,
- -0.463284879922867,5.71578588903776e-008,-0.886209309101105,-0.352843970060349,1.40876315057881e-008,-0.935682237148285,-0.352855533361435,1.41765958971973e-008,-0.935677826404572,-0.352843970060349,1.40876315057881e-008,-0.935682237148285,-0.253648996353149,-4.69436969297021e-008,-0.967296302318573,-0.253639727830887,-4.71110510602557e-008,-0.967298805713654,-0.00742752756923437,0,-0.999972462654114,-0.0148546444252133,0,-0.999889671802521,-0.0148546444252133,0,-0.999889671802521,-0.00742752756923437,0,-0.999972462654114,-0,0,-1,-0.00742752756923437,0,-0.999972462654114,-0.00742752756923437,0,-0.999972462654114,-0,0,-1,-0.0417337156832218,4.30388524819136e-008,-0.999128758907318,-0,0,-1,-0,0,-1,-0.0204538591206074,4.42076562023885e-008,-0.999790847301483,-0.158113285899162,4.31117861410257e-008,-0.987421035766602,-0.0417337156832218,4.30388524819136e-008,-0.999128758907318,-0.0204538591206074,4.42076562023885e-008,-0.999790847301483,-0.110200591385365,4.42720455851031e-008,-0.993909358978271,-0.253648996353149,-4.69436969297021e-008,-0.967296302318573,-0.158113285899162,4.31117861410257e-008,-0.987421035766602,-0.110200591385365,4.42720455851031e-008,-0.993909358978271,-0.253639727830887,-4.71110510602557e-008,-0.967298805713654,0.855102002620697,-0.518355369567871,-0.0104171754792333,0.855105578899384,-0.518336117267609,-0.0110517786815763,0.855109035968781,-0.518316686153412,-0.0116863762959838,0.855105578899384,-0.518336117267609,-0.0110517786815763,0.10793362557888,0.501274049282074,-0.858530521392822,0.0618907101452351,0.503146111965179,-0.861982405185699,0.0157156381756067,0.503943800926209,-0.863593459129334,0.0618907101452351,0.503146111965179,-0.861982345581055,0.717914879322052,0.0434797890484333,0.694771766662598,0.892530500888824,-0.0366206914186478,0.449497759342194,0.999393343925476,-0.00608628429472446,0.0342919267714024,0.999571740627289,0.00960685964673758,0.0276414938271046,0.892530500888824,-0.0366206914186478,0.449497759342194,0.90027117729187,0.0916361138224602,-0.425575852394104,0.999386608600616,0.00720594683662057,-0.0342718362808228,
- 0.999393343925476,-0.00608628429472446,0.0342919267714024,0.90027117729187,0.0916361138224602,-0.425575852394104,0.718241035938263,-0.0456172041594982,-0.694297254085541,0.999536633491516,-0.0127855520695448,-0.0276218894869089,0.999386608600616,0.00720594683662057,-0.0342718362808228,0.718241035938263,-0.0456172041594982,-0.694297254085541,0.999998271465302,-0.00145810004323721,0.0011491107288748,0.999999821186066,-0.000600150262471288,8.26710220280802e-006,0.999536633491516,-0.0127855520695448,-0.0276218894869089,0.999998271465302,-0.00145810004323721,0.0011491107288748,0.717914879322052,0.0434797890484333,0.694771766662598,0.999571740627289,0.00960685964673758,0.0276414938271046,0.999999821186066,-0.000600150262471288,8.26710220280802e-006
- }
- TangentsW: *7160 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *21480 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.650878667831421,-0.00838542357087135,-0.75913542509079,0.626843214035034,-0.272230803966522,-0.730039656162262,0.702790260314941,-0.359263390302658,-0.614016115665436,0.684936761856079,-0.325875133275986,-0.651664793491364,0.57887727022171,0.015479002147913,-0.815267741680145,0.552837789058685,0.289982497692108,-0.781204581260681,0.626843214035034,-0.272230803966522,-0.730039656162262,0.650878667831421,-0.00838542357087135,-0.75913542509079,0.107495881617069,-0.0217560417950153,-0.993967413902283,0.104978583753109,-0.273042887449265,-0.956256866455078,0.214452251791954,-0.471950113773346,-0.855145215988159,0.195240825414658,-0.338188081979752,-0.920602917671204,0.0420262962579727,0.0241338405758142,-0.998825013637543,0.0410601049661636,0.146467238664627,-0.988363027572632,0.104978583753109,-0.273042887449265,-0.956256866455078,0.107495881617069,-0.0217560417950153,-0.993967413902283,0.0457590371370316,0.0160913392901421,-0.998822808265686,0.0444682836532593,0.184250205755234,-0.981872916221619,-0.00177904241718352,0.511833608150482,-0.859082758426666,
- 0,0.314961522817612,-0.949104368686676,0.11056025326252,-0.0270674861967564,-0.993500828742981,0.110603980720043,-0.155807718634605,-0.981575667858124,0.0444682836532593,0.184250205755234,-0.981872916221619,0.0457590371370316,0.0160913392901421,-0.998822808265686,0.578807950019836,0.0128450486809015,-0.815362751483917,0.561301350593567,0.236232772469521,-0.793180227279663,0.377363562583923,0.563378512859344,-0.73498398065567,0.420656621456146,0.521757245063782,-0.742170810699463,0.646475374698639,-0.117243029177189,-0.753872334957123,0.638826012611389,-0.195883139967918,-0.743996739387512,0.561301350593567,0.236232772469521,-0.793180227279663,0.578807950019836,0.0128450486809015,-0.815362751483917,0.801451086997986,-0.220091640949249,-0.556089758872986,0.741993844509125,-0.429389387369156,-0.514849364757538,0.702790260314941,-0.359263390302658,-0.614016115665436,0.761106252670288,0,-0.64862722158432,0.626843214035034,-0.272230803966522,-0.730039656162262,0.552837789058685,0.289982497692108,-0.781204581260681,0.54582941532135,0.325094819068909,-0.772258758544922,0.641551375389099,-0.174590021371841,-0.746947169303894,0.552837789058685,0.289982497692108,-0.781204581260681,0.387788474559784,0.52904999256134,-0.754802048206329,0.4445461332798,0.0216517802327871,-0.895494222640991,0.54582941532135,0.325094819068909,-0.772258758544922,0.354086190462112,0,-0.935212910175323,0.350767761468887,-0.135073348879814,-0.926669895648956,0.214452251791954,-0.471950113773346,-0.855145215988159,0.250737130641937,-0.203413903713226,-0.946442663669586,0.104978583753109,-0.273042887449265,-0.956256866455078,0.0410601049661636,0.146467238664627,-0.988363027572632,0.0414425767958164,0,-0.999140977859497,0.107738681137562,-0.168956130743027,-0.979717493057251,-0.00487515283748508,0.200572028756142,-0.979666829109192,-0.00262699648737907,0.182645067572594,-0.983175456523895,-0.00191500061191618,0.380604952573776,-0.92473578453064,-0.00457589328289032,0.392992407083511,-0.91953033208847,0.456708341836929,-0.889551818370819,-0.0107258474454284,
- 0.338040351867676,-0.940944135189056,0.0187810007482767,0.269944965839386,-0.962693214416504,0.0187531001865864,0.982834756374359,0.176826670765877,0.0526128485798836,-0.183272987604141,-0.982931613922119,-0.0160141289234161,0.0208384804427624,0.0321369543671608,-0.999266266822815,0.0421704947948456,0.0160989202558994,-0.998980641365051,-8.09234506959911e-007,0.0482116565108299,-0.998837232589722,-9.8632986222924e-009,0.0482110530138016,-0.998837172985077,0.131620287895203,-0.036289531737566,-0.990635812282562,0.131119340658188,-0.0358846038579941,-0.990716934204102,0.0421704947948456,0.0160989202558994,-0.998980641365051,0.0208384804427624,0.0321369543671608,-0.999266266822815,0.368586748838425,0.000121370023407508,-0.929593324661255,0.335850805044174,-0.00014034278865438,-0.941915154457092,0.302341461181641,-0.0633167400956154,-0.951094448566437,0.302325546741486,-0.0633167326450348,-0.951099514961243,0.559326946735382,0.0186901483684778,-0.828736364841461,0.559521853923798,0.0182761996984482,-0.828613996505737,0.49416321516037,0.0531178154051304,-0.867744863033295,0.493047177791595,0.0540582723915577,-0.868321478366852,0.672860205173492,-0.0386818572878838,-0.738757729530334,0.652912616729736,-0.0172124337404966,-0.757237732410431,0.559521853923798,0.0182761996984482,-0.828613996505737,0.559326946735382,0.0186901483684778,-0.828736364841461,0.790091812610626,6.12691947026178e-005,-0.612988710403442,0.789865374565125,0.0250284280627966,-0.612769365310669,0.789867401123047,0.0250284262001514,-0.612766742706299,0.790091931819916,8.38017367641442e-005,-0.612988531589508,0.4445461332798,0.0216517802327871,-0.895494222640991,0.387788474559784,0.52904999256134,-0.754802048206329,0.350767761468887,-0.135073348879814,-0.926669895648956,0.354086190462112,0,-0.935212910175323,0.399980276823044,0.05881617218256,-0.914634585380554,0.399985492229462,0.0588161833584309,-0.914632439613342,0.335850805044174,-0.00014034278865438,-0.941915154457092,0.368586748838425,0.000121370023407508,-0.929593324661255,1.46888183394367e-007,-1,-5.57795146960416e-007,
- 1.46888183394367e-007,-1,-5.57795146960416e-007,-3.31409012233053e-007,-1,-6.83748453411681e-007,8.09706193649617e-007,1,8.09701759862946e-007,-1.71976580531918e-007,-1,-6.41764017927926e-007,-0.00494098430499434,-0.0277292020618916,-0.999603271484375,-0.00495515810325742,-0.0277374424040318,-0.999602973461151,-0.00496933190152049,-0.0277456808835268,-0.999602675437927,-0.00495515810325742,-0.0277374424040318,-0.999602973461151,-1.35990910621331e-006,-1,1.17942488486733e-006,-1.35990910621331e-006,-1,1.17942488486733e-006,0.0327215157449245,-0.998752117156982,0.0377314202487469,0.0653626769781113,-0.995011270046234,0.0753676071763039,0.0218108613044024,-0.999445736408234,0.0251511819660664,0.724460661411285,0,-0.689316153526306,0.733689308166504,-0.225051060318947,-0.641133427619934,0.638826012611389,-0.195883139967918,-0.743996739387512,0.646475374698639,-0.117243029177189,-0.753872334957123,0.761106252670288,0,-0.64862722158432,0.702790260314941,-0.359263390302658,-0.614016115665436,0.626843214035034,-0.272230803966522,-0.730039656162262,0.641551375389099,-0.174590021371841,-0.746947169303894,0.724476099014282,-4.57901705885888e-006,-0.689299941062927,0.724468231201172,3.95996266888687e-006,-0.689308166503906,0.652912616729736,-0.0172124337404966,-0.757237732410431,0.672860205173492,-0.0386818572878838,-0.738757729530334,0.198369711637497,-0.292202532291412,-0.935557126998901,0.225776702165604,-0.373676091432571,-0.899661660194397,0.110603980720043,-0.155807718634605,-0.981575667858124,0.11056025326252,-0.0270674861967564,-0.993500828742981,0.250737130641937,-0.203413903713226,-0.946442663669586,0.214452251791954,-0.471950113773346,-0.855145215988159,0.104978583753109,-0.273042887449265,-0.956256866455078,0.107738681137562,-0.168956130743027,-0.979717493057251,0.208538547158241,-0.0628926083445549,-0.975989878177643,0.20711749792099,-0.0617940351366997,-0.976362526416779,0.131119340658188,-0.0358846038579941,-0.990716934204102,0.131620287895203,-0.036289531737566,-0.990635812282562,0.0119503494352102,0.999651193618774,-0.0235557407140732,
- -0.0119494013488293,-0.999651074409485,0.0235562194138765,0.0119474260136485,0.99965113401413,-0.0235572271049023,0.0119415773078799,0.999651193618774,-0.0235601980239153,0.0119464341551065,0.999651193618774,-0.0235577262938023,0.409249126911163,0.558013081550598,-0.721897900104523,0.387788474559784,0.52904999256134,-0.754802048206329,0.552837789058685,0.289982497692108,-0.781204581260681,0.57887727022171,0.015479002147913,-0.815267741680145,0.252719700336456,0.967539608478546,0,0.707106828689575,0.707106828689575,-0,0.252719432115555,0.967539668083191,0,0,1,0,-5.02518196299206e-006,1,0,7.91172851677402e-007,1,-0,0,0.314961284399033,-0.949104487895966,-0.00191500061191618,0.380604952573776,-0.92473578453064,0.0410601049661636,0.146467238664627,-0.988363027572632,0.0420262962579727,0.0241338405758142,-0.998825013637543,-0.00191500061191618,0.380604952573776,-0.92473578453064,-0.00262699648737907,0.182645067572594,-0.983175456523895,0.0414425767958164,0,-0.999140977859497,0.0410601049661636,0.146467238664627,-0.988363027572632,0.967110395431519,0.000953938288148493,-0.25435483455658,0.950970232486725,-0.18808288872242,-0.245520934462547,0.834944367408752,-0.541664183139801,-0.0973030850291252,0.94512814283371,-0.289074867963791,-0.15221206843853,0.938238322734833,0.0204229801893234,-0.345386236906052,0.926718175411224,0.157017111778259,-0.341378271579742,0.950970232486725,-0.18808288872242,-0.245520934462547,0.967110395431519,0.000953938288148493,-0.25435483455658,0.93832916021347,0.0169704630970955,-0.345326662063599,0.928234577178955,0.146216496825218,-0.342054456472397,0.772834002971649,0.48096239566803,-0.414008170366287,0.862160742282867,0.289001256227493,-0.416121482849121,0.966938376426697,0.000790087913628668,-0.255009025335312,0.960290551185608,-0.128356158733368,-0.247723191976547,0.928234577178955,0.146216496825218,-0.342054456472397,0.93832916021347,0.0169704630970955,-0.345326662063599,0.998635411262512,-9.99598705675453e-006,-0.0522236004471779,0.998635411262512,1.11165536509361e-006,-0.0522235929965973,
- 0.98107123374939,-0.186706051230431,-0.0513824187219143,0.834944367408752,-0.541664183139801,-0.0973030850291252,0.955473005771637,-0.278832107782364,-0.0965608060359955,0.950970232486725,-0.18808288872242,-0.245520934462547,0.926718175411224,0.157017111778259,-0.341378271579742,0.93908566236496,0,-0.343683123588562,0.967731475830078,0,-0.251983642578125,0.800504684448242,0.225135952234268,-0.555433094501495,0.858042657375336,0.197481080889702,-0.474092900753021,0.801949024200439,0.414994299411774,-0.429718017578125,0.738303303718567,0.438712507486343,-0.512288570404053,0.923622727394104,0.038882564753294,-0.381325632333755,0.937138915061951,0.0122098671272397,-0.348742932081223,0.90052193403244,0.035840705037117,-0.433331042528152,0.900139927864075,0.0364660732448101,-0.434071838855743,0.970885157585144,-0.00644255382940173,-0.239458605647087,0.970997631549835,-0.00589971151202917,-0.239016219973564,0.937138915061951,0.0122098671272397,-0.348742932081223,0.923622727394104,0.038882564753294,-0.381325632333755,0.997377336025238,-0.0378509648144245,-0.0616924241185188,0.997672915458679,-0.0433522574603558,-0.0526266656816006,0.997856080532074,-0.0488486588001251,-0.0435549728572369,0.997672915458679,-0.0433522611856461,-0.0526266656816006,-1.64509383893119e-008,-1,1.74786474183009e-009,-1.13927782763312e-007,-1,-9.15707119020226e-007,-1.64509348365982e-008,-1,1.74786451978548e-009,6.97179842745754e-008,-1,8.12772157132713e-007,-5.34486332526285e-007,1,-5.18718525199802e-006,6.97174016295321e-008,-1,8.12772157132713e-007,0.851219475269318,-0.0256964564323425,-0.52418041229248,0.851225674152374,-0.0256964564323425,-0.524170339107513,0.851529836654663,-8.62504311953671e-005,-0.524306178092957,0.851525366306305,-6.36930053588003e-005,-0.524313390254974,0.956136167049408,-0.249172195792198,-0.15400318801403,0.939041554927826,-0.325846642255783,-0.109657719731331,0.960290551185608,-0.128356158733368,-0.247723191976547,0.966938376426697,0.000790087913628668,-0.255009025335312,0.955473005771637,-0.278832107782364,-0.0965608060359955,
- 0.834944367408752,-0.541664183139801,-0.0973030850291252,0.950970232486725,-0.18808288872242,-0.245520934462547,0.967731475830078,0,-0.251983642578125,0.986760437488556,-2.26031784222869e-006,-0.162184685468674,0.986760199069977,-1.23190568501741e-006,-0.162186026573181,0.970997631549835,-0.00589971151202917,-0.239016219973564,0.970885157585144,-0.00644255382940173,-0.239458605647087,0.105815529823303,0.975222527980804,0.194278091192245,0.206385239958763,0.902118504047394,0.378929167985916,0.0703434646129608,0.989126920700073,0.129149734973907,1.80892641310493e-006,1,-9.85228894023749e-007,1.99746796170075e-006,1,-6.39057930129638e-007,0.849064469337463,0.333402872085571,-0.409795045852661,0.801949024200439,0.414994299411774,-0.429718017578125,0.926718175411224,0.157017111778259,-0.341378271579742,0.938238322734833,0.0204229801893234,-0.345386236906052,0.801949024200439,0.414994299411774,-0.429718017578125,0.858042657375336,0.197481080889702,-0.474092900753021,0.93908566236496,0,-0.343683123588562,0.926718175411224,0.157017111778259,-0.341378271579742,0.652728378772736,-0.0130050266161561,-0.757480442523956,0.724457025527954,-4.10008760809433e-006,-0.689319968223572,0.724457681179047,-3.38307222591538e-006,-0.689319252967834,0.67927759885788,0.0123991835862398,-0.733776569366455,0.571166813373566,-0.0092293368652463,-0.820782124996185,0.652728378772736,-0.0130050266161561,-0.757480442523956,0.67927759885788,0.0123991835862398,-0.733776569366455,0.569769620895386,-0.00755319138988853,-0.821769773960114,0.494358897209167,0.0483859479427338,-0.867910265922546,0.571166813373566,-0.0092293368652463,-0.820782124996185,0.569769620895386,-0.00755319138988853,-0.821769773960114,0.493461579084396,0.0475957840681076,-0.868464350700378,0.110647939145565,-0.0173891112208366,-0.993707597255707,0.207039579749107,-0.0562918409705162,-0.976711869239807,0.208227410912514,-0.0553899630904198,-0.976510763168335,0.134431183338165,-0.00276659661903977,-0.990919053554535,0.0412411019206047,0.0117566799744964,-0.999080121517181,0.110647939145565,-0.0173891112208366,-0.993707597255707,
- 0.134431183338165,-0.00276659661903977,-0.990919053554535,0.0403984896838665,0.0132561139762402,-0.999095797538757,-1.57091778874019e-006,0.048209834843874,-0.998837232589722,0.0412411019206047,0.0117566799744964,-0.999080121517181,0.0403984896838665,0.0132561139762402,-0.999095797538757,-1.5743653420941e-006,0.0482098385691643,-0.998837232589722,0.970810651779175,0.0093918377533555,-0.239662870764732,0.986760139465332,-1.38250027248432e-006,-0.162186920642853,0.986760079860687,-1.71933834280935e-006,-0.162187367677689,0.970903694629669,0.00884376280009747,-0.239306822419167,0.937013387680054,0.0144117642194033,-0.348996162414551,0.970810651779175,0.0093918377533555,-0.239662870764732,0.970903694629669,0.00884376280009747,-0.239306822419167,0.927654266357422,-0.00315117323771119,-0.373426854610443,0.900648415088654,0.0326416082680225,-0.433320790529251,0.937013387680054,0.0144117642194033,-0.348996162414551,0.927654266357422,-0.00315117323771119,-0.373426854610443,0.900361895561218,0.0321192778646946,-0.433954894542694,0.00256782420910895,0.276432871818542,0.961029827594757,0.00497526489198208,-0.0201623160392046,0.999784350395203,-0.00472301989793777,0.314952880144119,-0.949095547199249,0.00207043648697436,-0.0201623868197203,0.999794542789459,0.0451786741614342,1.67712784104879e-007,-0.998978972434998,-0.00259471102617681,0.238689988851547,-0.971092343330383,-0.00177904241718352,0.511833608150482,-0.859082758426666,0.0444682836532593,0.184250205755234,-0.981872916221619,0.252981692552567,-0.15526083111763,-0.954931557178497,0.110546186566353,-0.168806776404381,-0.979430258274078,0.110603980720043,-0.155807718634605,-0.981575667858124,0.225776702165604,-0.373676091432571,-0.899661660194397,0.354081779718399,1.37684679657468e-007,-0.935214459896088,0.252981692552567,-0.15526083111763,-0.954931557178497,0.225776702165604,-0.373676091432571,-0.899661660194397,0.352156490087509,-0.102448239922524,-0.930317223072052,0.761094868183136,-3.94200412756618e-007,-0.64864057302475,0.641394257545471,-0.175938382744789,-0.746765732765198,
- 0.638826012611389,-0.195883139967918,-0.743996739387512,0.733689308166504,-0.225051060318947,-0.641133427619934,0.807160615921021,-0.186672672629356,-0.560040235519409,0.761094868183136,0,-0.64864057302475,0.733689308166504,-0.225051060318947,-0.641133427619934,0.764336884021759,-0.366782575845718,-0.530339419841766,0.979720413684845,-0.131611064076424,-0.15108397603035,0.967731714248657,-0.000178923612111248,-0.25198295712471,0.960290551185608,-0.128356158733368,-0.247723191976547,0.939041554927826,-0.325846642255783,-0.109657719731331,0.989279687404633,-0.136548697948456,-0.0517702028155327,0.979720413684845,-0.131611064076424,-0.15108397603035,0.939041554927826,-0.325846642255783,-0.109657719731331,0.978053152561188,-0.208343252539635,0.00226177927106619,0.999995172023773,-1.33202747747418e-005,0.00311548309400678,0.989279687404633,-0.136548697948456,-0.0517702028155327,0.939041554927826,-0.325846642255783,-0.109657719731331,-0.875282943248749,-2.04890147870174e-006,0.483611166477203,-0.810249269008636,-0.165668591856956,0.562183320522308,0.776497840881348,0.326756805181503,-0.538777410984039,-0.869263648986816,-0.165704503655434,0.465749740600586,0.939086616039276,-6.27275511533298e-008,-0.343680709600449,0.85339343547821,0.222242563962936,-0.471516758203506,0.772834002971649,0.48096239566803,-0.414008170366287,0.928234577178955,0.146216496825218,-0.342054456472397,0.110546186566353,-0.168806776404381,-0.979430258274078,0.0451786741614342,1.67712784104879e-007,-0.998978972434998,0.0444682836532593,0.184250205755234,-0.981872916221619,0.110603980720043,-0.155807718634605,-0.981575667858124,0.437553972005844,0.177655979990959,-0.881467461585999,0.354081779718399,1.37684679657468e-007,-0.935214459896088,0.352156490087509,-0.102448239922524,-0.930317223072052,0.377363562583923,0.563378512859344,-0.73498398065567,0.577167868614197,-7.89021754599162e-008,-0.816625535488129,0.437553972005844,0.177655979990959,-0.881467461585999,0.377363562583923,0.563378512859344,-0.73498398065567,0.561301350593567,0.236232772469521,-0.793180227279663,
- 0.641394257545471,-0.175938382744789,-0.746765732765198,0.577167868614197,-7.89021754599162e-008,-0.816625535488129,0.561301350593567,0.236232772469521,-0.793180227279663,0.638826012611389,-0.195883139967918,-0.743996739387512,0.967731714248657,-0.000178923612111248,-0.25198295712471,0.939086616039276,-6.27275511533298e-008,-0.343680709600449,0.928234577178955,0.146216496825218,-0.342054456472397,0.960290551185608,-0.128356158733368,-0.247723191976547,-0.327841550111771,0,0.944732666015625,-0.577949285507202,0,0.816072702407837,-0.327841550111771,0,0.944732666015625,-0.0517991967499256,0,0.998657524585724,0.0312825888395309,4.4579735458683e-008,-0.999510645866394,-4.1331961853075e-008,0,-1,-8.26639237061499e-008,0,-1,0.0318960212171078,4.34277325211951e-008,-0.999491214752197,0.135959625244141,1.29192745390583e-009,-0.990714311599731,0.0312825888395309,4.4579735458683e-008,-0.999510645866394,0.0318960212171078,4.34277325211951e-008,-0.999491214752197,0.136556908488274,-1.36193478716962e-009,-0.990632236003876,0.27140474319458,-6.33977847996903e-008,-0.962465286254883,0.135959625244141,1.29192745390583e-009,-0.990714311599731,0.136556908488274,-1.36193478716962e-009,-0.990632236003876,0.239538744091988,-6.40250448213919e-008,-0.970886826515198,0.368517935276031,-5.8058521545945e-008,-0.929620623588562,0.27140474319458,-6.33977847996903e-008,-0.962465286254883,0.239538744091988,-6.40250448213919e-008,-0.970886826515198,0.335903197526932,-5.86874300267937e-008,-0.941896557807922,0.447049617767334,-7.11898948679845e-008,-0.894509136676788,0.368517935276031,-5.8058521545945e-008,-0.929620623588562,0.335903197526932,-5.86874300267937e-008,-0.941896557807922,0.447025448083878,-7.1065201723286e-008,-0.894521117210388,0.447049617767334,-7.11898948679845e-008,-0.894509136676788,0.447025448083878,-7.1065201723286e-008,-0.894521117210388,0.555592894554138,-9.34234289928781e-009,-0.831454455852509,0.555600166320801,-8.93055229767015e-009,-0.831449568271637,0.689927399158478,-3.15195229916299e-008,-0.723878622055054,0.555600166320801,-8.93055229767015e-009,-0.831449568271637,
- 0.555592894554138,-9.34234289928781e-009,-0.831454455852509,0.653645038604736,-3.4559452188887e-008,-0.756801247596741,0.769103527069092,-2.04950065807452e-008,-0.639124274253845,0.689927399158478,-3.15195229916299e-008,-0.723878622055054,0.653645038604736,-3.4559452188887e-008,-0.756801247596741,0.72447258234024,-2.24788152536348e-008,-0.689303636550903,0.790114998817444,1.85242949868325e-008,-0.612958788871765,0.769103527069092,-2.04950065807452e-008,-0.639124274253845,-0.79011195898056,1.99892706831406e-008,0.61296272277832,0.79011344909668,1.85080768488888e-008,-0.612960755825043,-0.85150146484375,-1.58465063293534e-008,0.524352252483368,-0.851507186889648,-1.58323025800655e-008,0.524343013763428,-0.851512849330902,1.70302296709224e-008,0.524333715438843,-0.851507186889648,1.69624136958646e-008,0.524343013763428,0.996330678462982,-1.25671628659063e-009,-0.0855870097875595,0.998772263526917,-1.58427626573143e-009,-0.0495381839573383,0.998772144317627,-1.5843287792805e-009,-0.0495398342609406,0.997726619243622,-1.05553943363645e-009,-0.0673918724060059,0.990537703037262,-2.11193684762634e-009,-0.137240782380104,0.996330678462982,-1.25671628659063e-009,-0.0855870097875595,0.997726619243622,-1.05553943363645e-009,-0.0673918724060059,0.992732763290405,-1.96965665999471e-009,-0.120340280234814,0.967950165271759,-1.36956792573528e-008,-0.251142144203186,0.990537703037262,-2.11193684762634e-009,-0.137240782380104,0.992732763290405,-1.96965665999471e-009,-0.120340280234814,0.979252874851227,-1.11442908234949e-008,-0.202642261981964,0.92020571231842,-2.59614552078347e-008,-0.391435116529465,0.967950165271759,-1.36956792573528e-008,-0.251142144203186,0.979252874851227,-1.11442908234949e-008,-0.202642261981964,0.938403844833374,-2.2898005269667e-008,-0.345540374517441,0.89981484413147,-1.41700065015016e-008,-0.436272025108337,0.92020571231842,-2.59614552078347e-008,-0.391435116529465,0.938403844833374,-2.2898005269667e-008,-0.345540374517441,0.899816632270813,-1.4113210156097e-008,-0.436268270015717,0.996984004974365,-0.0460135526955128,-0.0624950043857098,
- 0.997813284397125,-0.0400053486227989,-0.0526139661669731,0.998508512973785,-0.0339917726814747,-0.04272585734725,0.997813284397125,-0.0400053523480892,-0.0526139661669731,-0.00497070094570518,-0.0277275629341602,-0.999603152275085,-0.0049558337777853,-0.027736209332943,-0.999603033065796,-0.00494096707552671,-0.0277448557317257,-0.999602854251862,-0.00495583331212401,-0.027736209332943,-0.999603033065796,-0.655418276786804,-0.0672197118401527,0.75226879119873,-0.546787142753601,-0.631787121295929,0.549425899982452,0.338040351867676,-0.940944135189056,0.0187810007482767,0.456708341836929,-0.889551818370819,-0.0107258474454284,-0.546787142753601,-0.631787121295929,0.549425899982452,0.275168478488922,-0.743012607097626,0.610093832015991,0.269944965839386,-0.962693214416504,0.0187531001865864,0.338040351867676,-0.940944135189056,0.0187810007482767,0.275168478488922,-0.743012607097626,0.610093832015991,0.747404158115387,0.283411413431168,0.600887000560761,0.982834756374359,0.176826670765877,0.0526128485798836,0.269944965839386,-0.962693214416504,0.0187531001865864,0.747404158115387,0.283411413431168,0.600887000560761,-0.458121776580811,0.633195579051971,0.623849153518677,-0.183272987604141,-0.982931613922119,-0.0160141289234161,0.982834756374359,0.176826670765877,0.0526128485798836,-0.458121776580811,0.633195579051971,0.623849153518677,-0.655418276786804,-0.0672197118401527,0.75226879119873,0.456708341836929,-0.889551818370819,-0.0107258474454284,-0.183272987604141,-0.982931613922119,-0.0160141289234161,0.578387439250946,-0.0083851795643568,0.815719068050385,0.555996358394623,-0.272240966558456,0.785336196422577,0.424998134374619,-0.359273135662079,0.830842554569244,0.465861618518829,-0.325887858867645,0.822660446166992,0.650317132472992,0.0154796410351992,0.759505152702332,0.623594284057617,0.289986401796341,0.725973904132843,0.555996358394623,-0.272240966558456,0.785336196422577,0.578387439250946,-0.0083851795643568,0.815719068050385,0.938549041748047,-0.0217593442648649,0.344459295272827,0.902541697025299,-0.27307116985321,0.33294215798378,
- 0.777482569217682,-0.47195303440094,0.415669590234756,0.84565269947052,-0.338195085525513,0.412911206483841,0.966233611106873,0.0268219392746687,0.256268054246902,0.954701721668243,0.158477485179901,0.25185215473175,0.902541697025299,-0.27307116985321,0.33294215798378,0.938549041748047,-0.0217593442648649,0.344459295272827,0.966522753238678,0.0148323550820351,0.25615206360817,0.952426135540009,0.172497197985649,0.251255095005035,0.871308922767639,0.480288445949554,0.100716687738895,0.9438796043396,0.294477105140686,0.149580955505371,0.938345789909363,-0.0270794313400984,0.344635754823685,0.926733255386353,-0.155861914157867,0.341866344213486,0.952426135540009,0.172497197985649,0.251255095005035,0.966522753238678,0.0148323550820351,0.25615206360817,0.650418698787689,0.0128443790599704,0.759467363357544,0.633154153823853,0.236226573586464,0.737097561359406,0.621367990970612,0.563364028930664,0.544539153575897,0.617826461791992,0.521742582321167,0.588281571865082,0.574336767196655,-0.117242500185966,0.810179829597473,0.566614270210266,-0.195882096886635,0.800361454486847,0.633154153823853,0.236226573586464,0.737097561359406,0.650418698787689,0.0128443790599704,0.759467363357544,0.344852387905121,-0.220090553164482,0.912489473819733,0.319282829761505,-0.429387331008911,0.844798803329468,0.424998134374619,-0.359273135662079,0.830842554569244,0.444413900375366,0,0.895821571350098,0.555996358394623,-0.272240966558456,0.785336196422577,0.623594284057617,0.289986401796341,0.725973904132843,0.616617262363434,0.325098633766174,0.717003405094147,0.56882780790329,-0.174596086144447,0.803710877895355,0.623594284057617,0.289986401796341,0.725973904132843,0.638051807880402,0.529057621955872,0.559453308582306,0.760755062103271,0.0216521881520748,0.64867776632309,0.616617262363434,0.325098633766174,0.717003405094147,0.821242928504944,0,0.570578694343567,0.813761830329895,-0.135069608688354,0.565285563468933,0.777482569217682,-0.47195303440094,0.415669590234756,0.857237040996552,-0.203409433364868,0.473042696714401,0.902541697025299,-0.27307116985321,0.33294215798378,
- 0.954701721668243,0.158477485179901,0.25185215473175,0.966959357261658,0,0.25493061542511,0.924643397331238,-0.168972060084343,0.341296195983887,0.973963737487793,0.220120534300804,0.0542374178767204,0.975132346153259,0.197488963603973,0.100574254989624,0.905016899108887,0.412330567836761,0.104536801576614,0.901696979999542,0.429443180561066,0.0502130836248398,0.971688628196716,0.0324269384145737,0.234029188752174,0.971590220928192,0.0318479239940643,0.234517082571983,0.986409664154053,0.0507862120866776,0.156258657574654,0.986550629138947,0.0516823641955853,0.155070438981056,0.921227872371674,-0.0522221252322197,0.385502338409424,0.937758326530457,-0.0204385090619326,0.346686482429504,0.971590220928192,0.0318479239940643,0.234517082571983,0.971688628196716,0.0324269384145737,0.234029188752174,0.812271237373352,0.000122133162221871,0.583280026912689,0.832176208496094,-0.000139825089718215,0.554511189460754,0.8492271900177,-0.0633148103952408,0.524217963218689,0.849226236343384,-0.0633148103952408,0.524219512939453,0.668135643005371,0.0186926778405905,0.743804574012756,0.667972385883331,0.0182816255837679,0.743961453437805,0.721807301044464,0.0531182922422886,0.690052628517151,0.72263091802597,0.0540511123836041,0.689117550849915,0.553274691104889,-0.038681473582983,0.832100212574005,0.576044321060181,-0.01721584610641,0.817237138748169,0.667972385883331,0.0182816255837679,0.743961453437805,0.668135643005371,0.0186926778405905,0.743804574012756,0.402774125337601,6.12589719821699e-005,0.915299415588379,0.402628898620605,0.025028282776475,0.915021181106567,0.402638256549835,0.0250282809138298,0.915016949176788,0.402786433696747,8.40852007968351e-005,0.915293991565704,0.760755062103271,0.0216521881520748,0.64867776632309,0.638051807880402,0.529057621955872,0.559453308582306,0.813761830329895,-0.135069608688354,0.565285563468933,0.821242928504944,0,0.570578694343567,0.790141642093658,0.0588179975748062,0.610095620155334,0.790137648582459,0.0588179975748062,0.610100746154785,0.832176208496094,-0.000139825089718215,0.554511189460754,
- 0.812271237373352,0.000122133162221871,0.583280026912689,-3.68970881936548e-006,-1,-2.0289030544518e-006,-3.68970881936548e-006,-1,-2.0289030544518e-006,-7.29714111002977e-006,-1,4.53147640655516e-006,1.09045740828151e-005,1,-1.10918554128148e-005,-6.09466405876447e-006,-1,2.3446830255125e-006,0.998118042945862,-0.0270492006093264,0.0550356134772301,0.998097360134125,-0.0267463158816099,0.0555553808808327,0.998076319694519,-0.0264434274286032,0.0560751222074032,0.998097360134125,-0.0267463158816099,0.0555553808808327,9.66522293310845e-007,-1,1.90666662547301e-006,9.66522293310845e-007,-1,1.90666662547301e-006,0.183466657996178,-0.978616833686829,-0.0930001065135002,0.359086096286774,-0.915381968021393,-0.182024911046028,0.122012361884117,-0.990599751472473,-0.061847772449255,0.492780774831772,-0,0.870153486728668,0.44378861784935,-0.225050568580627,0.867412209510803,0.566614270210266,-0.195882096886635,0.800361454486847,0.574336767196655,-0.117242500185966,0.810179829597473,0.444413900375366,0,0.895821571350098,0.424998134374619,-0.359273135662079,0.830842554569244,0.555996358394623,-0.272240966558456,0.785336196422577,0.56882780790329,-0.174596086144447,0.803710877895355,0.492768615484238,1.26274971989915e-006,0.870160400867462,0.492772221565247,4.35840001955512e-006,0.870158314704895,0.576044321060181,-0.01721584610641,0.817237138748169,0.553274691104889,-0.038681473582983,0.832100212574005,0.85938173532486,-0.29220899939537,0.419615119695663,0.817911624908447,-0.373678594827652,0.437475800514221,0.926733255386353,-0.155861914157867,0.341866344213486,0.938345789909363,-0.0270794313400984,0.344635754823685,0.857237040996552,-0.203409433364868,0.473042696714401,0.777482569217682,-0.47195303440094,0.415669590234756,0.902541697025299,-0.27307116985321,0.33294215798378,0.924643397331238,-0.168972060084343,0.341296195983887,0.8961541056633,-0.0628873705863953,0.439264178276062,0.896857440471649,-0.0617938041687012,0.437982022762299,0.937758326530457,-0.0204385090619326,0.346686482429504,0.921227872371674,-0.0522221252322197,0.385502338409424,
- 0.0199364386498928,0.999651193618774,0.0173268113285303,-0.0199263729155064,-0.999651074409485,-0.0173383988440037,0.0199438855051994,0.99965113401413,0.0173182338476181,0.0199587810784578,0.999651193618774,0.0173010881990194,0.019952641800046,0.999651193618774,0.0173081550747156,0.600923120975494,0.55802184343338,0.572278916835785,0.638051807880402,0.529057621955872,0.559453308582306,0.623594284057617,0.289986401796341,0.725973904132843,0.650317132472992,0.0154796410351992,0.759505152702332,0.0276216976344585,0.967773914337158,-0.250301331281662,0.0773260146379471,0.709243357181549,-0.700710117816925,0.0276217218488455,0.967773854732513,-0.250301629304886,0,1,0,-6.49674376518306e-008,1,5.88719672123261e-007,-8.67844178742416e-008,1,7.8642017342645e-007,0.928837299346924,0.339994251728058,0.147190600633621,0.905016899108887,0.412330567836761,0.104536801576614,0.954701721668243,0.158477485179901,0.25185215473175,0.966233611106873,0.0268219392746687,0.256268054246902,0.905016899108887,0.412330567836761,0.104536801576614,0.975132346153259,0.197488963603973,0.100574254989624,0.966959357261658,0,0.25493061542511,0.954701721668243,0.158477485179901,0.25185215473175,0.0409211628139019,0.000938098295591772,0.999161899089813,0.0383673757314682,-0.17318257689476,0.984142124652863,0.00468920776620507,-0.505264699459076,0.862951636314392,0,-0.267075568437576,0.963675618171692,0.107984431087971,0.0203826501965523,0.993943691253662,0.107197687029839,0.156998947262764,0.98176372051239,0.0383673757314682,-0.17318257689476,0.984142124652863,0.0409211628139019,0.000938098295591772,0.999161899089813,0.110394723713398,0.0169428028166294,0.993743479251862,0.110193893313408,0.146161824464798,0.983104228973389,0.213979795575142,0.480961263179779,0.850228786468506,0.194333255290985,0.289000689983368,0.937397003173828,0.0445420779287815,0.000793170824181288,0.999007225036621,0.0422531068325043,-0.137330338358879,0.989623725414276,0.110193893313408,0.146161824464798,0.983104228973389,0.110394723713398,0.0169428028166294,0.993743479251862,0.0140948975458741,-8.44050475734548e-007,0.999900758266449,
- 0.0140948966145515,9.61775583618874e-008,0.999900758266449,0.0138546237722039,-0.175235509872437,0.984429121017456,0.00468920776620507,-0.505264699459076,0.862951636314392,0.00707570323720574,-0.259089559316635,0.965827465057373,0.0383673757314682,-0.17318257689476,0.984142124652863,0.107197687029839,0.156998947262764,0.98176372051239,0.106748074293137,0,0.994286119937897,0.0401749685406685,0,0.999192655086517,0.344445526599884,0.225130259990692,0.911412954330444,0.251560866832733,0.197485655546188,0.947479009628296,0.222130060195923,0.414998441934586,0.882289350032806,0.317696213722229,0.438702017068863,0.840600788593292,0.128976196050644,0.0256608054041862,0.991315603256226,0.128753140568733,0.0253485981374979,0.991352677345276,0.201678544282913,0.0358411222696304,0.978795826435089,0.202495127916336,0.036470502614975,0.978604018688202,0.0276958160102367,-0.00726401386782527,0.999590039253235,0.0417074263095856,0.00403479672968388,0.99912166595459,0.128753140568733,0.0253485981374979,0.991352677345276,0.128976196050644,0.0256608054041862,0.991315603256226,0.0237864702939987,-0.0364268831908703,0.999053299427032,0.0141126308590174,-0.0422926358878613,0.999005615711212,0.00443698512390256,-0.0481529757380486,0.998830139636993,0.0141126280650496,-0.042292632162571,0.999005615711212,0,-1,0,-5.49823653273052e-006,-1,0,0,-1,0,4.86040653413511e-006,-1,0,-3.10759278363548e-005,1,0,4.86040653413511e-006,-1,0,0.301823079586029,-0.025696374475956,0.953017592430115,0.301809132099152,-0.0256963819265366,0.953022122383118,0.301864355802536,-8.61918379087001e-005,0.953350901603699,0.30187514424324,-6.33615054539405e-005,0.953347563743591,-0,-0.267075747251511,0.963675498962402,0.00511017674580216,-0.351583689451218,0.936142563819885,0.0422531068325043,-0.137330338358879,0.989623725414276,0.0445420779287815,0.000793170824181288,0.999007225036621,0.00707570323720574,-0.259089559316635,0.965827465057373,0.00468920776620507,-0.505264699459076,0.862951636314392,0.0383673757314682,-0.17318257689476,0.984142124652863,0.0401749685406685,0,0.999192655086517,
- -2.64884124590026e-006,-1.98846896637406e-006,1,-1.32442062295013e-006,-9.94234483187029e-007,1,0.0417074263095856,0.00403479672968388,0.99912166595459,0.0276958160102367,-0.00726401386782527,0.999590039253235,-3.81579695840628e-007,1,9.88478845442842e-008,0,1,0,-2.54386463893752e-007,1,6.58985896961894e-008,0,1,0,-3.81579695840628e-007,1,9.88478845442842e-008,0.191347911953926,0.333410322666168,0.923159539699554,0.222130060195923,0.414998441934586,0.882289350032806,0.107197687029839,0.156998947262764,0.98176372051239,0.107984431087971,0.0203826501965523,0.993943691253662,0.222130060195923,0.414998441934586,0.882289350032806,0.251560866832733,0.197485655546188,0.947479009628296,0.106748074293137,0,0.994286119937897,0.107197687029839,0.156998947262764,0.98176372051239,0.522378861904144,0.852659821510315,0.00956994108855724,0.89163726568222,0.451094329357147,0.0386905372142792,0.190846189856529,0.981560170650482,0.0108379796147347,0.0872579589486122,-0.996180236339569,0.00331183709204197,0.444662779569626,0.895612418651581,-0.0123816216364503,0.576318800449371,-0.0130042061209679,0.817121505737305,0.492781162261963,-4.11405471822945e-006,0.870153307914734,0.492783218622208,-5.87666318097035e-006,0.870152115821838,0.546877443790436,0.012399542145431,0.837120771408081,0.65754634141922,-0.00923606660217047,0.753357529640198,0.576318800449371,-0.0130042061209679,0.817121505737305,0.546877443790436,0.012399542145431,0.837120771408081,0.658835053443909,-0.00755645614117384,0.752249598503113,0.721912980079651,0.0483849458396435,0.690290212631226,0.65754634141922,-0.00923606660217047,0.753357529640198,0.658835053443909,-0.00755645614117384,0.752249598503113,0.722657024860382,0.0476066991686821,0.689565420150757,0.938258588314056,-0.0171193312853575,0.345510810613632,0.897205710411072,-0.0562917068600655,0.438010632991791,0.896719872951508,-0.0553854070603848,0.439119547605515,0.929490685462952,-0.00199138140305877,0.368840306997299,0.969890892505646,0.00440527824684978,0.243500158190727,0.938258588314056,-0.0171193312853575,0.345510810613632,
- 0.929490685462952,-0.00199138140305877,0.368840306997299,0.970360815525055,0.00600278610363603,0.2415861338377,0.986610531806946,0.0462585762143135,0.156396865844727,0.969890892505646,0.00440527824684978,0.243500158190727,0.970360815525055,0.00600278610363603,0.2415861338377,0.986798942089081,0.045515064150095,0.155422925949097,0.0359704792499542,0.00554355839267373,0.999337434768677,1.32448224121617e-006,-9.94234710560704e-007,1,2.64896448243235e-006,-1.98846942112141e-006,1,0.0357404015958309,0.00491301435977221,0.999348998069763,0.112557053565979,0.0145328445360065,0.993539035320282,0.0359704792499542,0.00554355839267373,0.999337434768677,0.0357404015958309,0.00491301435977221,0.999348998069763,0.138114839792252,-0.00279885111376643,0.990412294864655,0.201643079519272,0.032641276717186,0.978915095329285,0.112557053565979,0.0145328445360065,0.993539035320282,0.138114839792252,-0.00279885111376643,0.990412294864655,0.202335491776466,0.0321130305528641,0.978789627552032,-0.961372852325439,0.256768971681595,-0.099155880510807,-0.999816834926605,-0.0188821405172348,-0.00311971455812454,0.9560666680336,0.293140083551407,0.00233824690803885,-0.993208408355713,-0.0188761092722416,-0.114807330071926,0.96695864200592,1.54553745801422e-007,0.254933565855026,0.969843149185181,0.222257241606712,0.100029513239861,0.871308922767639,0.480288445949554,0.100716687738895,0.952426135540009,0.172497197985649,0.251255095005035,0.864925026893616,-0.155256763100624,0.477283924818039,0.924660503864288,-0.168865576386452,0.341302514076233,0.926733255386353,-0.155861914157867,0.341866344213486,0.817911624908447,-0.373678594827652,0.437475800514221,0.821252167224884,1.42005958991831e-007,0.570565402507782,0.864925026893616,-0.155256763100624,0.477283924818039,0.817911624908447,-0.373678594827652,0.437475800514221,0.816969215869904,-0.102444835007191,0.567509055137634,0.444413125514984,-3.94198480080377e-007,0.895821988582611,0.568676829338074,-0.175937503576279,0.80352509021759,0.566614270210266,-0.195882096886635,0.800361454486847,0.44378861784935,-0.225050568580627,0.867412209510803,
- 0.347283899784088,-0.186672925949097,0.918992400169373,0.444413095712662,0,0.895821988582611,0.44378861784935,-0.225050568580627,0.867412209510803,0.328870475292206,-0.366783052682877,0.870238125324249,-0,-0.141779437661171,0.989898264408112,0.0438759438693523,-0.000194132153410465,0.999037027359009,0.0422531068325043,-0.137330338358879,0.989623725414276,0.00511017674580216,-0.351583689451218,0.936142563819885,0.0139255179092288,-0.149525284767151,0.988659858703613,-0,-0.141779437661171,0.989898264408112,0.00511017674580216,-0.351583689451218,0.936142563819885,0.0140556432306767,-0.227941781282425,0.973573267459869,0.0144661674275994,5.06267099353863e-008,0.999895453453064,0.0139255179092288,-0.149525284767151,0.988659858703613,0.00511017674580216,-0.351583689451218,0.936142563819885,-0.256629794836044,-2.04894126909494e-006,-0.966509878635406,-0.348612636327744,-0.165671408176422,-0.922508597373962,0.334102421998978,0.3267622590065,0.884082555770874,-0.240761235356331,-0.165707290172577,-0.956334233283997,0.109679982066154,-6.65442385638926e-008,0.993966996669769,0.250211864709854,0.222241878509521,0.942338883876801,0.213979795575142,0.480961263179779,0.850228786468506,0.110193893313408,0.146161824464798,0.983104228973389,0.924660503864288,-0.168865576386452,0.341302514076233,0.96695864200592,1.54553745801422e-007,0.254933565855026,0.952426135540009,0.172497197985649,0.251255095005035,0.926733255386353,-0.155861914157867,0.341866344213486,0.748844265937805,0.177651941776276,0.638492047786713,0.821252167224884,1.42005958991831e-007,0.570565402507782,0.816969215869904,-0.102444835007191,0.567509055137634,0.621367990970612,0.563364028930664,0.544539153575897,0.652045607566834,-7.71324266679585e-008,0.758179843425751,0.748844265937805,0.177651941776276,0.638492047786713,0.621367990970612,0.563364028930664,0.544539153575897,0.633154153823853,0.236226573586464,0.737097561359406,0.568676829338074,-0.175937503576279,0.80352509021759,0.652045607566834,-7.71324266679585e-008,0.758179843425751,0.633154153823853,0.236226573586464,0.737097561359406,
- 0.566614270210266,-0.195882096886635,0.800361454486847,0.0438759438693523,-0.000194132153410465,0.999037027359009,0.109679982066154,-6.65442385638926e-008,0.993966996669769,0.110193893313408,0.146161824464798,0.983104228973389,0.0422531068325043,-0.137330338358879,0.989623725414276,-0.530219852924347,0,-0.847860217094421,-0.852776944637299,0,-0.522275269031525,-0.996209442615509,0,-0.086987130343914,-0.852776944637299,0,-0.522275269031525,0.967462182044983,-1.69472276212446e-008,0.253015518188477,0.987675189971924,0,0.156517997384071,0.987674593925476,0,0.156521186232567,0.978770792484283,-1.34314435129568e-008,0.20495779812336,0.919282972812653,-1.76972179133372e-008,0.393597215414047,0.967462182044983,-1.69472276212446e-008,0.253015518188477,0.978770792484283,-1.34314435129568e-008,0.20495779812336,0.937738239765167,-1.47809551265254e-008,0.347342759370804,0.867764234542847,3.27534230848414e-008,0.496976166963577,0.919282972812653,-1.76972179133372e-008,0.393597215414047,0.937738239765167,-1.47809551265254e-008,0.347342759370804,0.883671224117279,3.08514920277503e-008,0.468108296394348,0.812310218811035,1.81690698042303e-008,0.583225548267365,0.867764234542847,3.27534230848414e-008,0.496976166963577,0.883671224117279,3.08514920277503e-008,0.468108296394348,0.832141518592834,1.73200085384906e-008,0.554563343524933,0.759191513061523,-2.06683132830676e-008,0.650867283344269,0.812310218811035,1.81690698042303e-008,0.583225548267365,0.832141518592834,1.73200085384906e-008,0.554563343524933,0.759208500385284,-2.07390016271347e-008,0.650847494602203,0.759191513061523,-2.06683132830676e-008,0.650867283344269,0.759208500385284,-2.07390016271347e-008,0.650847494602203,0.671674430370331,-1.66478457686026e-008,0.740846395492554,0.671667039394379,-1.59152158119014e-008,0.740853190422058,0.534700155258179,0,0.845041871070862,0.671667039394379,-1.59152158119014e-008,0.740853190422058,0.671674430370331,-1.66478457686026e-008,0.740846395492554,0.575441777706146,0,0.817842721939087,0.433245211839676,-5.84199497666305e-008,0.901276111602783,
- 0.534700155258179,0,0.845041871070862,0.575441777706146,0,0.817842721939087,0.492771446704865,-5.61226514150803e-008,0.870158791542053,0.402764409780502,-1.38679050465385e-008,0.915303707122803,0.433245211839676,-5.84199497666305e-008,0.901276111602783,-0.402744054794312,5.90349387152855e-008,-0.915312647819519,0.402754247188568,-1.37808804367978e-008,0.915308177471161,-0.301921308040619,1.44440912563937e-008,-0.953332841396332,-0.301908284425735,1.43534446550575e-008,-0.953337073326111,-0.301895201206207,-4.62664395683987e-008,-0.953341126441956,-0.301908284425735,-4.64310687675606e-008,-0.953337073326111,0.00771514279767871,0,0.999970316886902,0.0148546444252133,0,0.999889671802521,0.0148546444252133,0,0.999889671802521,0.00742752756923437,0,0.999972462654114,0.000362268561730161,0,0.99999988079071,0.00771514279767871,0,0.999970316886902,0.00742752756923437,0,0.999972462654114,0.000383497041184455,0,0.99999988079071,0.0417124815285206,-4.30388915617641e-008,0.99912965297699,0.000362268561730161,0,0.99999988079071,0.000383497041184455,0,0.99999988079071,0.0204326305538416,-4.42076739659569e-008,0.999791204929352,0.158113270998001,-4.31117861410257e-008,0.987421035766602,0.0417124815285206,-4.30388915617641e-008,0.99912965297699,0.0204326305538416,-4.42076739659569e-008,0.999791204929352,0.110200561583042,-4.42720455851031e-008,0.993909358978271,0.204763442277908,4.75025387913774e-008,0.978811502456665,0.158113270998001,-4.31117861410257e-008,0.987421035766602,0.110200561583042,-4.42720455851031e-008,0.993909358978271,0.204731047153473,4.76720920516982e-008,0.978818297386169,0.0237843282520771,-0.0481560528278351,0.998556613922119,0.0140946879982948,-0.0422934666275978,0.999005854129791,0.00440323865041137,-0.0364254452288151,0.999326646327972,0.0140946879982948,-0.0422934629023075,0.999005854129791,0.997975051403046,-0.0297310389578342,0.0562308803200722,0.998020887374878,-0.0293658301234245,0.0556052178144455,0.998066246509552,-0.0290006101131439,0.0549795180559158,0.998020887374878,-0.0293658338487148,0.0556052178144455,
- 0.301145374774933,-0.753990828990936,0.583788752555847,0.764338493347168,0.316434860229492,0.561832427978516,0.89163726568222,0.451094329357147,0.0386905372142792,0.522378861904144,0.852659821510315,0.00956994108855724,0.764338493347168,0.316434860229492,0.561832427978516,-0.482366979122162,0.652233302593231,0.584733963012695,0.190846189856529,0.981560170650482,0.0108379796147347,0.89163726568222,0.451094329357147,0.0386905372142792,-0.482366979122162,0.652233302593231,0.584733963012695,-0.689621865749359,-0.0925126522779465,0.718236029148102,0.944326937198639,-0.328111588954926,-0.0242783240973949,0.190846189856529,0.981560170650482,0.0108379796147347,-0.689621865749359,-0.0925126522779465,0.718236029148102,-0.540362000465393,-0.661546945571899,0.519965827465057,0.444662779569626,0.895612418651581,-0.0123816216364503,0.944326937198639,-0.328111588954926,-0.0242783240973949,-0.540362000465393,-0.661546945571899,0.519965827465057,0.301145374774933,-0.753990828990936,0.583788752555847,0.522378861904144,0.852659821510315,0.00956994108855724,0.444662779569626,0.895612418651581,-0.0123816216364503
- }
- TangentsW: *7160 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *9632 {
- a: 0.55419921875,0.9169921875,0.4228515625,0.985527038574219,0.4228515625,0.9169921875,0.55419921875,0.985527038574219,0.237548828125,0.976699829101563,0.237548828125,0.91796875,0.25634765625,0.985008239746094,0.380859375,0.91796875,0.380859375,0.985008239746094,0.38720703125,0.0185546875,0.39501953125,0.01806640625,0.368408203125,0.0185546875,0.385009765625,0.07275390625,0.242919921875,0.07373046875,0.2437744140625,0.0185546875,0.2392578125,0.01806640625,0.2391357421875,0.07666015625,0.242431640625,0.07666015625,0.2392578125,0.18603515625,0.50341796875,0.072265625,0.5234375,0.01806640625,0.389892578125,0.0771484375,0.2437744140625,0.1845703125,0.397705078125,0.18359375,0.52197265625,0.0751953125,0.2437744140625,0.18798828125,0.52734375,0.078125,0.390869140625,0.1884765625,0.2437744140625,0.24169921875,0.2392578125,0.2431640625,0.5283203125,0.1845703125,0.52392578125,0.1884765625,0.38916015625,0.24169921875,0.2437744140625,0.24462890625,0.2392578125,0.35302734375,0.388916015625,0.24560546875,0.2437744140625,0.353515625,0.2437744140625,0.357421875,0.36865234375,0.357421875,0.38720703125,0.3505859375,0.5322265625,0.24462890625,0.53271484375,0.240234375,0.72216796875,0.18994140625,0.52490234375,0.3525390625,0.39501953125,0.35693359375,0.52392578125,0.35693359375,0.52978515625,0.357421875,0.68212890625,0.357421875,0.689453125,0.35205078125,0.6962890625,0.35693359375,0.71044921875,0.24267578125,0.6982421875,0.3525390625,0.822265625,0.357421875,0.7099609375,0.2451171875,0.82177734375,0.3525390625,0.82373046875,0.35693359375,0.97607421875,0.3515625,0.97607421875,0.357421875,0.98095703125,0.3515625,0.97705078125,0.244140625,0.98095703125,0.2431640625,0.97705078125,0.2412109375,0.98095703125,0.1865234375,0.9736328125,0.18798828125,0.97607421875,0.18359375,0.98095703125,0.08837890625,0.822265625,0.18359375,0.9755859375,0.0732421875,0.98095703125,0.0654296875,0.71240234375,0.18310546875,0.9755859375,0.0693359375,0.98095703125,0.01806640625,0.9755859375,0.01806640625,0.8330078125,0.0703125,0.8232421875,0.01806640625,
- 0.82373046875,0.0751953125,0.8232421875,0.0576171875,0.82177734375,0.01806640625,0.8173828125,0.07080078125,0.7109375,0.07568359375,0.6923828125,0.06982421875,0.6962890625,0.01806640625,0.68212890625,0.0185546875,0.5283203125,0.07373046875,0.53125,0.06884765625,0.52978515625,0.0185546875,0.974609375,0.0693359375,0.82373046875,0.01806640625,0.9775390625,0.07275390625,0.82568359375,0.06787109375,0.82275390625,0.07470703125,0.6943359375,0.07080078125,0.6953125,0.01806640625,0.71533203125,0.07568359375,0.5380859375,0.07177734375,0.53173828125,0.07373046875,0.8232421875,0.18359375,0.69580078125,0.18212890625,0.52734375,0.07958984375,0.52685546875,0.18408203125,0.8369140625,0.18994140625,0.82275390625,0.2421875,0.69189453125,0.18798828125,0.8310546875,0.2451171875,0.6865234375,0.2421875,0.53466796875,0.1875,0.5244140625,0.24169921875,0.6904296875,0.24462890625,0.52978515625,0.24462890625,0.69970703125,0.3525390625,0.81640625,0.3525390625,0.69580078125,0.35693359375,0.52880859375,0.3525390625,0.52685546875,0.35595703125,0.52490234375,0.24462890625,0.52294921875,0.3525390625,0.5244140625,0.357421875,0.400390625,0.357421875,0.3984375,0.35302734375,0.38720703125,0.3515625,0.397216796875,0.24462890625,0.397216796875,0.24267578125,0.38720703125,0.2451171875,0.366455078125,0.35302734375,0.38427734375,0.18798828125,0.38427734375,0.1806640625,0.404052734375,0.1845703125,0.395263671875,0.07568359375,0.52392578125,0.076171875,0.52001953125,0.0693359375,0.52783203125,0.01611328125,0.52392578125,0.0185546875,0.400146484375,0.0185546875,0.39501953125,0.0732421875,0.3876953125,0.01904296875,0.52294921875,0.01806640625,0.521484375,0.0751953125,0.389404296875,0.24169921875,0.71826171875,0.18896484375,0.5234375,0.35693359375,0.68212890625,0.24169921875,0.69287109375,0.24560546875,0.82861328125,0.24560546875,0.81689453125,0.3525390625,0.83349609375,0.1904296875,0.97705078125,0.07275390625,0.71142578125,0.1826171875,0.822265625,0.07470703125,0.71240234375,0.07568359375,0.6923828125,0.0693359375,0.5302734375,0.06787109375,0.389404296875,0.01806640625,
- 0.499267578125,0.07373046875,0.52734375,0.05322265625,0.390625,0.07568359375,0.69580078125,0.07080078125,0.384521484375,0.1806640625,0.385498046875,0.18798828125,0.5341796875,0.1875,0.39306640625,0.24169921875,0.385986328125,0.24462890625,0.38916015625,0.35791015625,0.386962890625,0.34765625,0.52392578125,0.24169921875,0.6962890625,0.3525390625,0.689453125,0.2421875,0.69091796875,0.24462890625,0.83154296875,0.2451171875,0.9775390625,0.07373046875,0.6953125,0.18212890625,0.82568359375,0.068359375,0.9736328125,0.06787109375,0.355224609375,0.02294921875,0.355224609375,0.1572265625,0.3271484375,0.14013671875,0.32470703125,0.021484375,0.35498046875,0.0224609375,0.35400390625,0.1591796875,0.326171875,0.01953125,0.324462890625,0.021484375,0.35498046875,0.1572265625,0.35498046875,0.02294921875,0.325927734375,0.01953125,0.353271484375,0.0234375,0.353271484375,0.1572265625,0.353515625,0.0224609375,0.3544921875,0.1572265625,0.353759765625,0.15869140625,0.326171875,0.01904296875,0.354736328125,0.0224609375,0.353759765625,0.15966796875,0.35498046875,0.15673828125,0.3251953125,0.021484375,0.354736328125,0.1572265625,0.32470703125,0.02197265625,0.32568359375,0.13916015625,0.354736328125,0.02294921875,0.35302734375,0.15966796875,0.3544921875,0.15576171875,0.325927734375,0.02001953125,0.354248046875,0.15869140625,0.354736328125,0.15771484375,0.326171875,0.02001953125,0.35546875,0.021484375,0.82470703125,0.5830078125,0.73583984375,0.582763671875,0.82763671875,0.580810546875,0.73291015625,0.581298828125,0.8271484375,0.533203125,0.7333984375,0.532958984375,0.73583984375,0.531494140625,0.82470703125,0.53125,0.8271484375,0.5810546875,0.73291015625,0.58154296875,0.82763671875,0.533203125,0.7333984375,0.533203125,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.408447265625,0.716552734375,0.50439453125,0.607421875,0.471435546875,0.607421875,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.440673828125,0.84765625,0.568359375,0.36572265625,0.6640625,0.36328125,
- 0.56591796875,0.3642578125,0.65966796875,0.35986328125,0.564453125,0.22509765625,0.669921875,0.224609375,0.666015625,0.36865234375,0.673828125,0.3603515625,0.56494140625,0.22021484375,0.56591796875,0.18603515625,0.7890625,0.22265625,0.79052734375,0.365234375,0.6669921875,0.36376953125,0.78759765625,0.36669921875,0.787109375,0.220703125,0.78955078125,0.1904296875,0.787109375,0.0634765625,0.7900390625,0.06103515625,0.568359375,0.19189453125,0.78759765625,0.18505859375,0.66943359375,0.0654296875,0.6669921875,0.19189453125,0.6669921875,0.185546875,0.56591796875,0.0634765625,0.986328125,0.640625,0.98681640625,0.65185546875,0.9833984375,0.63916015625,0.9306640625,0.6533203125,0.96875,0.6181640625,0.9287109375,0.623046875,0.9287109375,0.651611328125,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9287109375,0.47509765625,0.9287109375,0.4404296875,0.98681640625,0.44091796875,0.9833984375,0.583251953125,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.986328125,0.580810546875,0.228515625,0.654052734375,0.367919921875,0.654052734375,0.2266845703125,0.6552734375,0.37158203125,0.655517578125,0.2266845703125,0.709228515625,0.371337890625,0.709228515625,0.367919921875,0.710693359375,0.228515625,0.71044921875,0.5654296875,0.3642578125,0.56494140625,0.224609375,0.6640625,0.22509765625,0.66650390625,0.369140625,0.7880859375,0.36669921875,0.66796875,0.36376953125,0.568359375,0.216796875,0.56640625,0.18505859375,0.7900390625,0.1904296875,0.568359375,0.193359375,0.77783203125,0.18896484375,0.66796875,0.0654296875,0.92822265625,0.4404296875,0.82763671875,0.5810546875,0.7333984375,0.58154296875,0.5048828125,0.60546875,0.440673828125,0.8472900390625,0.73291015625,0.53271484375,0.7333984375,0.581298828125,0.44091796875,0.8494873046875,0.94140625,0.45751953125,0.9287109375,0.45556640625,0.98486328125,0.439453125,0.953125,0.47509765625,0.986328125,0.44091796875,0.94140625,0.51806640625,0.986328125,0.623046875,0.9833984375,0.62255859375,0.984375,0.653076171875,0.986328125,0.651611328125,0.9287109375,0.539306640625,0.483642578125,
- 0.8863525390625,0.4404296875,0.8475341796875,0.456298828125,0.848388671875,0.50341796875,0.895263671875,0.4404296875,0.847900390625,0.423095703125,0.709228515625,0.40625,0.745361328125,0.408447265625,0.734130859375,0.426513671875,0.685546875,0.8271484375,0.532958984375,0.73291015625,0.532958984375,0.2266845703125,0.655517578125,0.371826171875,0.655517578125,0.66845703125,0.36376953125,0.6669921875,0.224609375,0.66796875,0.369140625,0.66455078125,0.36328125,0.5654296875,0.36474609375,0.57080078125,0.2177734375,0.56982421875,0.19384765625,0.77783203125,0.1884765625,0.7333984375,0.53271484375,0.40576171875,0.745361328125,0.78125,0.220703125,0.7900390625,0.18994140625,0.568359375,0.21875,0.371826171875,0.6552734375,0.367919921875,0.7080078125,0.226806640625,0.709228515625,0.369873046875,0.710693359375,0.1051025390625,1.12457275390625,0.09136962890625,1.12127685546875,0.12213134765625,1.07763671875,0.06976318359375,1.0726318359375,0.10662841796875,1.03213500976563,0.1207275390625,1.0313720703125,0.7197265625,0.37255859375,0.70361328125,0.359375,0.7490234375,0.302734375,0.7724609375,0.3056640625,0.73486328125,0.228515625,0.7158203125,0.2373046875,0.72314453125,0.3076171875,0.7392578125,0.2314453125,0.759765625,0.24267578125,0.70263671875,0.3076171875,0.7392578125,0.3837890625,0.75927734375,0.37255859375,0.7724609375,0.30615234375,0.72021484375,0.3720703125,0.703125,0.3603515625,0.75927734375,0.3720703125,0.72265625,0.3076171875,0.75927734375,0.24267578125,0.36962890625,0.710693359375,0.759765625,0.37255859375,0.734375,0.228515625,0.37158203125,0.708984375,0.367919921875,0.65673828125,0.369873046875,0.654052734375,0.984375,0.6533203125,0.9287109375,0.44091796875,0.98681640625,0.4404296875,0.2269287109375,0.655517578125,0.2265625,0.70947265625,0.370361328125,0.710693359375,0.9306640625,0.653076171875,0.931640625,0.44091796875,0.226318359375,0.70947265625,0.37060546875,0.7080078125,0.22705078125,0.65576171875,0.98486328125,0.6533203125,0.9833984375,0.44091796875,0.226318359375,0.6552734375,0.37060546875,0.656494140625,0.22705078125,
- 0.708984375,0.2269287109375,0.709228515625,0.3701171875,0.65380859375,0.2265625,0.655517578125,0.93017578125,0.653076171875,0.98486328125,0.653076171875,0.93017578125,0.439453125,0.98486328125,0.43896484375,0.2265625,0.709228515625,0.2208251953125,1.137451171875,0.27099609375,1.115234375,0.2802734375,1.1336669921875,0.2252197265625,1.1693115234375,0.271484375,1.1697998046875,0.1962890625,1.1644287109375,0.9306640625,0.439453125,0.5625,0.36572265625,0.560546875,0.3623046875,0.66650390625,0.361328125,0.78955078125,0.3681640625,0.53271484375,0.2236328125,0.7734375,0.22705078125,0.7724609375,0.22314453125,0.791015625,0.3671875,0.55517578125,0.21875,0.4755859375,0.36376953125,0.560546875,0.3671875,0.47705078125,0.36474609375,0.3818359375,0.365234375,0.472412109375,0.369140625,0.3818359375,0.361328125,0.384033203125,0.23486328125,0.385009765625,0.21435546875,0.378662109375,0.248046875,0.37841796875,0.36376953125,0.37646484375,0.3623046875,0.35009765625,0.34716796875,0.349365234375,0.21875,0.369384765625,0.2197265625,0.5224609375,0.19287109375,0.379150390625,0.19189453125,0.66748046875,0.19189453125,0.791015625,0.1904296875,0.382080078125,0.1865234375,0.376220703125,0.06201171875,0.38037109375,0.0634765625,0.47412109375,0.18505859375,0.47216796875,0.06201171875,0.55908203125,0.0615234375,0.66845703125,0.1875,0.66455078125,0.06494140625,0.6708984375,0.10888671875,0.56298828125,0.365234375,0.66357421875,0.36328125,0.6650390625,0.35986328125,0.666015625,0.36376953125,0.7919921875,0.365234375,0.6201171875,0.2275390625,0.4765625,0.36376953125,0.477783203125,0.36474609375,0.3984375,0.22705078125,0.64208984375,0.2197265625,0.47314453125,0.369140625,0.349609375,0.2197265625,0.369873046875,0.22216796875,0.3984375,0.21484375,0.53369140625,0.19140625,0.3779296875,0.19189453125,0.66650390625,0.19189453125,0.52783203125,0.18505859375,0.5615234375,0.0615234375,0.66748046875,0.18603515625,0.67138671875,0.3662109375,0.7890625,0.22314453125,0.66748046875,0.22119140625,0.66748046875,0.365234375,0.671875,0.224609375,0.67138671875,0.2197265625,
- 0.6708984375,0.19189453125,0.66943359375,0.1865234375,0.67333984375,0.0654296875,0.66650390625,0.060546875,0.82470703125,0.580322265625,0.82666015625,0.583251953125,0.78759765625,0.3623046875,0.78857421875,0.22265625,0.791015625,0.369140625,0.6669921875,0.3603515625,0.60986328125,0.2236328125,0.56005859375,0.36279296875,0.47509765625,0.36376953125,0.78369140625,0.2216796875,0.78955078125,0.18994140625,0.389892578125,0.22607421875,0.3818359375,0.36083984375,0.55712890625,0.21875,0.349365234375,0.21923828125,0.370361328125,0.220703125,0.3857421875,0.21533203125,0.50634765625,0.19189453125,0.37890625,0.19189453125,0.66796875,0.19189453125,0.556640625,0.0615234375,0.66162109375,0.1865234375,0.66552734375,0.06494140625,0.787109375,0.06396484375,0.78955078125,0.22314453125,0.791015625,0.36865234375,0.66552734375,0.3603515625,0.66748046875,0.224609375,0.5615234375,0.3623046875,0.76611328125,0.21875,0.7900390625,0.18798828125,0.4521484375,0.224609375,0.47607421875,0.36328125,0.5625,0.2197265625,0.7626953125,0.1923828125,0.66650390625,0.185546875,0.56201171875,0.0615234375,0.55322265625,0.18505859375,0.564453125,0.19189453125,0.483154296875,0.19189453125,0.37841796875,0.19189453125,0.429931640625,0.22021484375,0.377197265625,0.21630859375,0.382568359375,0.24951171875,0.36962890625,0.22216796875,0.79052734375,0.36865234375,0.6669921875,0.36083984375,0.568359375,0.361328125,0.56494140625,0.36669921875,0.78466796875,0.22021484375,0.7900390625,0.1875,0.66845703125,0.0654296875,0.78759765625,0.1923828125,0.66552734375,0.18603515625,0.56640625,0.0634765625,0.66552734375,0.36083984375,0.56396484375,0.22509765625,0.5654296875,0.36669921875,0.669921875,0.0654296875,0.66552734375,0.2197265625,0.66796875,0.18603515625,0.56591796875,0.06298828125,0.82666015625,0.5830078125,0.66650390625,0.36083984375,0.61328125,0.224609375,0.5595703125,0.3623046875,0.475830078125,0.36376953125,0.77099609375,0.22119140625,0.389404296875,0.2265625,0.388916015625,0.21728515625,0.349609375,0.21923828125,0.37060546875,0.2216796875,0.50146484375,0.19091796875,
- 0.378662109375,0.19189453125,0.497314453125,0.1845703125,0.66455078125,0.3603515625,0.62939453125,0.228515625,0.56201171875,0.36279296875,0.476318359375,0.36328125,0.79052734375,0.1904296875,0.435791015625,0.22509765625,0.5869140625,0.21923828125,0.48291015625,0.19189453125,0.55419921875,0.18505859375,0.78857421875,0.36474609375,0.666015625,0.3603515625,0.59619140625,0.22509765625,0.560546875,0.36279296875,0.7783203125,0.2216796875,0.79052734375,0.1875,0.43359375,0.2236328125,0.474365234375,0.3642578125,0.55419921875,0.21923828125,0.38232421875,0.23974609375,0.37451171875,0.21728515625,0.349365234375,0.2177734375,0.370361328125,0.22216796875,0.38525390625,0.193359375,0.3857421875,0.185546875,0.5595703125,0.0615234375,0.564453125,0.185546875,0.66552734375,0.19189453125,0.477294921875,0.36474609375,0.5595703125,0.3671875,0.475341796875,0.36328125,0.54052734375,0.224609375,0.5615234375,0.36572265625,0.66748046875,0.36376953125,0.7890625,0.3681640625,0.77490234375,0.228515625,0.7724609375,0.2236328125,0.5537109375,0.21923828125,0.37158203125,0.21533203125,0.6103515625,0.19189453125,0.38427734375,0.234375,0.382568359375,0.19384765625,0.47265625,0.36865234375,0.349365234375,0.21826171875,0.368896484375,0.22021484375,0.383544921875,0.185546875,0.55908203125,0.06103515625,0.6640625,0.18701171875,0.78759765625,0.36279296875,0.671875,0.3623046875,0.78955078125,0.18798828125,0.349853515625,0.21826171875,0.364990234375,0.220703125,0.3818359375,0.23583984375,0.376708984375,0.2080078125,0.476318359375,0.36279296875,0.472900390625,0.36865234375,0.55908203125,0.3671875,0.43408203125,0.2255859375,0.55712890625,0.22509765625,0.4228515625,0.2197265625,0.66650390625,0.3603515625,0.560546875,0.36572265625,0.66552734375,0.36328125,0.791015625,0.36474609375,0.65185546875,0.2197265625,0.60400390625,0.1904296875,0.477783203125,0.19189453125,0.66796875,0.185546875,0.5576171875,0.06103515625,0.52490234375,0.1845703125,0.369384765625,0.2216796875,0.476318359375,0.3642578125,0.398681640625,0.22705078125,0.39501953125,0.21435546875,0.62548828125,
- 0.22705078125,0.63232421875,0.22021484375,0.541015625,0.19140625,0.56005859375,0.3671875,0.56201171875,0.36572265625,0.66552734375,0.35986328125,0.66650390625,0.36376953125,0.767578125,0.19189453125,0.5302734375,0.18505859375,0.6640625,0.06494140625,0.66650390625,0.18603515625,0.5615234375,0.06103515625,0.349609375,0.21875,0.3681640625,0.2216796875,0.3779296875,0.21435546875,0.474609375,0.36376953125,0.420166015625,0.224609375,0.467041015625,0.22021484375,0.55712890625,0.224609375,0.77685546875,0.22607421875,0.7890625,0.36474609375,0.7900390625,0.220703125,0.7783203125,0.220703125,0.480224609375,0.19189453125,0.5478515625,0.18505859375,0.67041015625,0.0654296875,0.6669921875,0.060546875,0.67138671875,0.36279296875,0.6669921875,0.36474609375,0.791015625,0.365234375,0.370361328125,0.22412109375,0.473388671875,0.36865234375,0.476806640625,0.36279296875,0.37646484375,0.21826171875,0.42626953125,0.22607421875,0.423095703125,0.22021484375,0.6435546875,0.2197265625,0.48095703125,0.19189453125,0.5234375,0.1845703125,0.60546875,0.19091796875,0.66943359375,0.22509765625,0.6650390625,0.36328125,0.56005859375,0.36572265625,0.55859375,0.3671875,0.78564453125,0.2255859375,0.666015625,0.2197265625,0.564453125,0.224609375,0.6689453125,0.18701171875,0.66748046875,0.0654296875,0.6708984375,0.36572265625,0.791015625,0.36767578125,0.79052734375,0.06298828125,0.671875,0.3662109375,0.79052734375,0.36962890625,0.79052734375,0.3662109375,0.79052734375,0.0634765625,0.7900390625,0.3642578125,0.78955078125,0.22265625,0.791015625,0.36669921875,0.67138671875,0.36572265625,0.67138671875,0.3623046875,0.791015625,0.3662109375,0.4228515625,0.985527038574219,0.55419921875,0.9169921875,0.55419921875,0.985527038574219,0.55419921875,0.9169921875,0.4228515625,0.985527038574219,0.4228515625,0.9169921875,0.4228515625,0.985527038574219,0.55419921875,0.9169921875,0.55419921875,0.985527038574219,0.55419921875,0.9169921875,0.4228515625,0.985527038574219,0.4228515625,0.9169921875,0.4228515625,0.985527038574219,0.55419921875,0.9169921875,0.55419921875,0.985527038574219,
- 0.55419921875,0.9169921875,0.4228515625,0.985527038574219,0.4228515625,0.9169921875,0.237548828125,0.976699829101563,0.237548828125,0.91796875,0.25634765625,0.985008239746094,0.380859375,0.91796875,0.25634765625,0.985008239746094,0.237548828125,0.91796875,0.25634765625,0.985008239746094,0.380859375,0.91796875,0.380859375,0.985008239746094,0.25634765625,0.985008239746094,0.380859375,0.91796875,0.380859375,0.985008239746094,0.380859375,0.91796875,0.25634765625,0.985008239746094,0.237548828125,0.91796875,0.237548828125,0.91796875,0.25634765625,0.985008239746094,0.237548828125,0.976699829101563,0.25634765625,0.985008239746094,0.380859375,0.91796875,0.380859375,0.985008239746094,0.380859375,0.91796875,0.25634765625,0.985008239746094,0.237548828125,0.91796875,0.237548828125,0.91796875,0.25634765625,0.985008239746094,0.237548828125,0.976699829101563,0.98095703125,0.01806640625,0.98095703125,0.0654296875,0.9755859375,0.01806640625,0.9755859375,0.01806640625,0.98095703125,0.0654296875,0.9755859375,0.01806640625,0.8330078125,0.0703125,0.9755859375,0.01806640625,0.8330078125,0.0703125,0.98095703125,0.0654296875,0.8330078125,0.0703125,0.98095703125,0.0654296875,0.98095703125,0.08837890625,0.98095703125,0.1865234375,0.98095703125,0.08837890625,0.8330078125,0.0703125,0.8232421875,0.0576171875,0.8232421875,0.0576171875,0.82177734375,0.01806640625,0.8330078125,0.0703125,0.8232421875,0.0576171875,0.8330078125,0.0703125,0.82177734375,0.01806640625,0.8232421875,0.0576171875,0.8173828125,0.07080078125,0.8173828125,0.07080078125,0.8232421875,0.0576171875,0.82177734375,0.01806640625,0.8173828125,0.07080078125,0.82177734375,0.01806640625,0.8173828125,0.07080078125,0.8173828125,0.07080078125,0.52978515625,0.0185546875,0.97607421875,0.18359375,0.98095703125,0.1865234375,0.97607421875,0.18359375,0.9736328125,0.18798828125,0.97607421875,0.18359375,0.98095703125,0.1865234375,0.9736328125,0.18798828125,0.97607421875,0.18359375,0.98095703125,0.1865234375,0.97705078125,0.2412109375,0.9736328125,0.18798828125,0.97705078125,0.2412109375,0.98095703125,
- 0.1865234375,0.98095703125,0.2431640625,0.9736328125,0.18798828125,0.97705078125,0.244140625,0.97705078125,0.2412109375,0.98095703125,0.2431640625,0.9736328125,0.18798828125,0.9736328125,0.18798828125,0.97705078125,0.2412109375,0.97705078125,0.2412109375,0.97705078125,0.2412109375,0.97705078125,0.244140625,0.97607421875,0.3515625,0.97705078125,0.244140625,0.98095703125,0.2431640625,0.97607421875,0.3515625,0.97705078125,0.244140625,0.97607421875,0.3515625,0.98095703125,0.2431640625,0.98095703125,0.3515625,0.98095703125,0.3515625,0.97607421875,0.357421875,0.97607421875,0.3515625,0.82373046875,0.35693359375,0.97607421875,0.3515625,0.97607421875,0.357421875,0.97607421875,0.3515625,0.97607421875,0.3515625,0.82373046875,0.35693359375,0.82373046875,0.35693359375,0.822265625,0.357421875,0.822265625,0.357421875,0.822265625,0.357421875,0.52978515625,0.357421875,0.52978515625,0.357421875,0.36865234375,0.357421875,0.2437744140625,0.24169921875,0.36865234375,0.357421875,0.2437744140625,0.353515625,0.2437744140625,0.353515625,0.36865234375,0.357421875,0.2437744140625,0.357421875,0.2437744140625,0.353515625,0.2437744140625,0.357421875,0.2392578125,0.35302734375,0.2437744140625,0.24462890625,0.2437744140625,0.24462890625,0.2437744140625,0.353515625,0.2392578125,0.35302734375,0.2437744140625,0.24462890625,0.2437744140625,0.353515625,0.2437744140625,0.24169921875,0.2437744140625,0.24462890625,0.2437744140625,0.24462890625,0.2392578125,0.35302734375,0.2392578125,0.2431640625,0.2392578125,0.2431640625,0.2437744140625,0.24169921875,0.2437744140625,0.24462890625,0.2392578125,0.18603515625,0.2437744140625,0.24169921875,0.2392578125,0.2431640625,0.2437744140625,0.24169921875,0.2437744140625,0.24169921875,0.2392578125,0.18603515625,0.2437744140625,0.18798828125,0.2437744140625,0.18798828125,0.2437744140625,0.24169921875,0.2437744140625,0.1845703125,0.2437744140625,0.18798828125,0.2392578125,0.18603515625,0.2437744140625,0.1845703125,0.2437744140625,0.18798828125,0.2392578125,0.18603515625,0.242431640625,0.07666015625,0.2437744140625,0.1845703125,
- 0.242431640625,0.07666015625,0.2392578125,0.18603515625,0.2391357421875,0.07666015625,0.2437744140625,0.1845703125,0.2437744140625,0.1845703125,0.242431640625,0.07666015625,0.242431640625,0.07666015625,0.52978515625,0.0185546875,0.52978515625,0.0185546875,0.242431640625,0.07666015625,0.368408203125,0.0185546875,0.242919921875,0.07373046875,0.242431640625,0.07666015625,0.242919921875,0.07373046875,0.368408203125,0.0185546875,0.2391357421875,0.07666015625,0.242919921875,0.07373046875,0.242431640625,0.07666015625,0.2437744140625,0.0185546875,0.368408203125,0.0185546875,0.242919921875,0.07373046875,0.2392578125,0.01806640625,0.242919921875,0.07373046875,0.2391357421875,0.07666015625,0.2437744140625,0.0185546875,0.242919921875,0.07373046875,0.2392578125,0.01806640625,0.38720703125,0.0185546875,0.39501953125,0.01806640625,0.368408203125,0.0185546875,0.39501953125,0.01806640625,0.385009765625,0.07275390625,0.368408203125,0.0185546875,0.242919921875,0.07373046875,0.368408203125,0.0185546875,0.385009765625,0.07275390625,0.242919921875,0.07373046875,0.2437744140625,0.0185546875,0.368408203125,0.0185546875,0.242919921875,0.07373046875,0.2392578125,0.01806640625,0.2437744140625,0.0185546875,0.2392578125,0.01806640625,0.242919921875,0.07373046875,0.2391357421875,0.07666015625,0.2391357421875,0.07666015625,0.242919921875,0.07373046875,0.242431640625,0.07666015625,0.242919921875,0.07373046875,0.385009765625,0.07275390625,0.242431640625,0.07666015625,0.242431640625,0.07666015625,0.2392578125,0.18603515625,0.2391357421875,0.07666015625,0.39501953125,0.01806640625,0.50341796875,0.072265625,0.385009765625,0.07275390625,0.50341796875,0.072265625,0.39501953125,0.01806640625,0.389892578125,0.0771484375,0.242431640625,0.07666015625,0.385009765625,0.07275390625,0.50341796875,0.072265625,0.389892578125,0.0771484375,0.385009765625,0.07275390625,0.2392578125,0.18603515625,0.242431640625,0.07666015625,0.2437744140625,0.1845703125,0.397705078125,0.18359375,0.242431640625,0.07666015625,0.389892578125,0.0771484375,0.242431640625,0.07666015625,0.397705078125,
- 0.18359375,0.2437744140625,0.1845703125,0.389892578125,0.0771484375,0.50341796875,0.072265625,0.397705078125,0.18359375,0.389892578125,0.0771484375,0.2437744140625,0.1845703125,0.2437744140625,0.18798828125,0.2392578125,0.18603515625,0.50341796875,0.072265625,0.52734375,0.078125,0.2437744140625,0.1845703125,0.390869140625,0.1884765625,0.2437744140625,0.18798828125,0.390869140625,0.1884765625,0.2437744140625,0.1845703125,0.397705078125,0.18359375,0.2437744140625,0.24169921875,0.2392578125,0.18603515625,0.2437744140625,0.18798828125,0.2437744140625,0.24169921875,0.2437744140625,0.18798828125,0.390869140625,0.1884765625,0.2392578125,0.18603515625,0.2437744140625,0.24169921875,0.2392578125,0.2431640625,0.5283203125,0.1845703125,0.397705078125,0.18359375,0.5283203125,0.1845703125,0.52734375,0.078125,0.397705078125,0.18359375,0.52392578125,0.1884765625,0.390869140625,0.1884765625,0.52392578125,0.1884765625,0.397705078125,0.18359375,0.5283203125,0.1845703125,0.2437744140625,0.24169921875,0.390869140625,0.1884765625,0.390869140625,0.1884765625,0.52392578125,0.1884765625,0.2392578125,0.2431640625,0.2437744140625,0.24169921875,0.2437744140625,0.24462890625,0.2437744140625,0.24462890625,0.2392578125,0.35302734375,0.2392578125,0.2431640625,0.388916015625,0.24560546875,0.2437744140625,0.24169921875,0.2437744140625,0.24169921875,0.388916015625,0.24560546875,0.2437744140625,0.24462890625,0.2392578125,0.35302734375,0.2437744140625,0.24462890625,0.2437744140625,0.353515625,0.2437744140625,0.353515625,0.2437744140625,0.357421875,0.2392578125,0.35302734375,0.2437744140625,0.353515625,0.36865234375,0.357421875,0.2437744140625,0.357421875,0.36865234375,0.357421875,0.2437744140625,0.353515625,0.38720703125,0.3505859375,0.2437744140625,0.24462890625,0.38720703125,0.3505859375,0.2437744140625,0.353515625,0.38720703125,0.3505859375,0.2437744140625,0.24462890625,0.388916015625,0.24560546875,0.5322265625,0.24462890625,0.388916015625,0.24560546875,0.5322265625,0.24462890625,0.38720703125,0.3505859375,0.388916015625,0.24560546875,0.52392578125,
- 0.1884765625,0.53271484375,0.240234375,0.5322265625,0.24462890625,0.53271484375,0.240234375,0.52392578125,0.1884765625,0.53271484375,0.240234375,0.38720703125,0.3505859375,0.5322265625,0.24462890625,0.52490234375,0.3525390625,0.52490234375,0.3525390625,0.39501953125,0.35693359375,0.38720703125,0.3505859375,0.39501953125,0.35693359375,0.52490234375,0.3525390625,0.52490234375,0.3525390625,0.52978515625,0.357421875,0.52490234375,0.3525390625,0.68212890625,0.357421875,0.52978515625,0.357421875,0.68212890625,0.357421875,0.52490234375,0.3525390625,0.689453125,0.35205078125,0.5322265625,0.24462890625,0.689453125,0.35205078125,0.52490234375,0.3525390625,0.6962890625,0.35693359375,0.68212890625,0.357421875,0.689453125,0.35205078125,0.5322265625,0.24462890625,0.53271484375,0.240234375,0.53271484375,0.240234375,0.689453125,0.35205078125,0.5322265625,0.24462890625,0.5322265625,0.24462890625,0.6982421875,0.3525390625,0.6962890625,0.35693359375,0.689453125,0.35205078125,0.6982421875,0.3525390625,0.689453125,0.35205078125,0.6982421875,0.3525390625,0.822265625,0.357421875,0.6962890625,0.35693359375,0.6982421875,0.3525390625,0.822265625,0.357421875,0.6982421875,0.3525390625,0.6982421875,0.3525390625,0.82373046875,0.35693359375,0.822265625,0.357421875,0.97607421875,0.3515625,0.82373046875,0.35693359375,0.97607421875,0.3515625,0.97607421875,0.357421875,0.82373046875,0.35693359375,0.97607421875,0.3515625,0.98095703125,0.3515625,0.97607421875,0.357421875,0.97607421875,0.3515625,0.97607421875,0.3515625,0.97705078125,0.244140625,0.98095703125,0.3515625,0.97607421875,0.3515625,0.97705078125,0.244140625,0.98095703125,0.3515625,0.97705078125,0.244140625,0.98095703125,0.2431640625,0.97705078125,0.244140625,0.97705078125,0.2412109375,0.98095703125,0.2431640625,0.97705078125,0.244140625,0.97705078125,0.2412109375,0.97705078125,0.2412109375,0.98095703125,0.1865234375,0.98095703125,0.2431640625,0.82275390625,0.2421875,0.82275390625,0.2421875,0.97705078125,0.2412109375,0.82275390625,0.2421875,0.98095703125,0.1865234375,0.97705078125,0.2412109375,
- 0.9736328125,0.18798828125,0.82275390625,0.2421875,0.9736328125,0.18798828125,0.97705078125,0.2412109375,0.82275390625,0.2421875,0.9736328125,0.18798828125,0.82275390625,0.2421875,0.9736328125,0.18798828125,0.97607421875,0.18359375,0.98095703125,0.1865234375,0.97607421875,0.18359375,0.98095703125,0.08837890625,0.98095703125,0.1865234375,0.822265625,0.18359375,0.9736328125,0.18798828125,0.9736328125,0.18798828125,0.822265625,0.18359375,0.97607421875,0.18359375,0.822265625,0.18359375,0.98095703125,0.08837890625,0.97607421875,0.18359375,0.822265625,0.18359375,0.97607421875,0.18359375,0.98095703125,0.0654296875,0.98095703125,0.08837890625,0.822265625,0.18359375,0.52392578125,0.1884765625,0.52392578125,0.1884765625,0.5283203125,0.1845703125,0.9755859375,0.0693359375,0.98095703125,0.0654296875,0.9755859375,0.0693359375,0.98095703125,0.01806640625,0.98095703125,0.0654296875,0.98095703125,0.01806640625,0.9755859375,0.0693359375,0.9755859375,0.01806640625,0.9755859375,0.01806640625,0.9755859375,0.0693359375,0.8330078125,0.0703125,0.8330078125,0.0703125,0.9755859375,0.0693359375,0.9755859375,0.01806640625,0.8330078125,0.0703125,0.82373046875,0.01806640625,0.8330078125,0.0703125,0.822265625,0.18359375,0.8330078125,0.0703125,0.82568359375,0.06787109375,0.82373046875,0.01806640625,0.82568359375,0.06787109375,0.8330078125,0.0703125,0.82373046875,0.01806640625,0.82568359375,0.06787109375,0.8232421875,0.0576171875,0.8232421875,0.0576171875,0.82568359375,0.06787109375,0.8232421875,0.0576171875,0.82177734375,0.01806640625,0.82373046875,0.01806640625,0.8173828125,0.07080078125,0.8232421875,0.0576171875,0.82177734375,0.01806640625,0.8232421875,0.0576171875,0.8173828125,0.07080078125,0.822265625,0.18359375,0.8173828125,0.07080078125,0.822265625,0.18359375,0.82177734375,0.01806640625,0.8173828125,0.07080078125,0.8173828125,0.07080078125,0.82177734375,0.01806640625,0.6962890625,0.01806640625,0.68212890625,0.0185546875,0.6962890625,0.01806640625,0.5283203125,0.07373046875,0.5283203125,0.07373046875,0.5283203125,0.07373046875,0.5283203125,
- 0.1845703125,0.5283203125,0.07373046875,0.5283203125,0.1845703125,0.52734375,0.078125,0.68212890625,0.0185546875,0.5283203125,0.07373046875,0.5283203125,0.07373046875,0.52734375,0.078125,0.52978515625,0.0185546875,0.68212890625,0.0185546875,0.50341796875,0.072265625,0.52734375,0.078125,0.52978515625,0.0185546875,0.50341796875,0.072265625,0.242919921875,0.07373046875,0.2392578125,0.01806640625,0.2437744140625,0.0185546875,0.2392578125,0.01806640625,0.242919921875,0.07373046875,0.2391357421875,0.07666015625,0.2437744140625,0.0185546875,0.242919921875,0.07373046875,0.2391357421875,0.07666015625,0.242919921875,0.07373046875,0.242431640625,0.07666015625,0.242919921875,0.07373046875,0.242919921875,0.07373046875,0.242431640625,0.07666015625,0.400146484375,0.0185546875,0.242431640625,0.07666015625,0.2392578125,0.18603515625,0.2391357421875,0.07666015625,0.400146484375,0.0185546875,0.52392578125,0.0185546875,0.2392578125,0.18603515625,0.242431640625,0.07666015625,0.2437744140625,0.1845703125,0.52392578125,0.0185546875,0.52783203125,0.01611328125,0.52392578125,0.0185546875,0.52978515625,0.0185546875,0.52783203125,0.01611328125,0.242431640625,0.07666015625,0.52978515625,0.0185546875,0.5380859375,0.07177734375,0.5380859375,0.07177734375,0.52978515625,0.0185546875,0.6953125,0.01806640625,0.52392578125,0.076171875,0.52392578125,0.076171875,0.52734375,0.07958984375,0.5380859375,0.07177734375,0.52392578125,0.076171875,0.52734375,0.07958984375,0.5380859375,0.07177734375,0.6953125,0.01806640625,0.6953125,0.01806640625,0.82177734375,0.01806640625,0.52734375,0.07958984375,0.5380859375,0.07177734375,0.53173828125,0.07373046875,0.5380859375,0.07177734375,0.53173828125,0.07373046875,0.52685546875,0.18408203125,0.52392578125,0.076171875,0.52734375,0.07958984375,0.53173828125,0.07373046875,0.52685546875,0.18408203125,0.52734375,0.07958984375,0.52392578125,0.076171875,0.404052734375,0.1845703125,0.404052734375,0.1845703125,0.52392578125,0.076171875,0.52685546875,0.18408203125,0.242431640625,0.07666015625,0.404052734375,0.1845703125,0.2437744140625,
- 0.1845703125,0.242431640625,0.07666015625,0.404052734375,0.1845703125,0.2437744140625,0.1845703125,0.404052734375,0.1845703125,0.52685546875,0.18408203125,0.404052734375,0.1845703125,0.2437744140625,0.1845703125,0.2437744140625,0.18798828125,0.2437744140625,0.1845703125,0.2437744140625,0.18798828125,0.2392578125,0.18603515625,0.2437744140625,0.24169921875,0.2392578125,0.18603515625,0.2437744140625,0.18798828125,0.2437744140625,0.18798828125,0.2437744140625,0.24169921875,0.2392578125,0.18603515625,0.2437744140625,0.24169921875,0.2392578125,0.2431640625,0.2437744140625,0.24169921875,0.2392578125,0.2431640625,0.2437744140625,0.24169921875,0.2437744140625,0.24462890625,0.2437744140625,0.24462890625,0.2392578125,0.35302734375,0.2392578125,0.2431640625,0.2437744140625,0.24169921875,0.2437744140625,0.24462890625,0.2437744140625,0.24169921875,0.2392578125,0.35302734375,0.2437744140625,0.24462890625,0.2437744140625,0.353515625,0.2437744140625,0.353515625,0.2437744140625,0.357421875,0.2392578125,0.35302734375,0.2437744140625,0.353515625,0.2437744140625,0.357421875,0.2437744140625,0.24462890625,0.366455078125,0.35302734375,0.2437744140625,0.353515625,0.2437744140625,0.353515625,0.366455078125,0.35302734375,0.366455078125,0.35302734375,0.2437744140625,0.24462890625,0.366455078125,0.35302734375,0.366455078125,0.35302734375,0.400390625,0.357421875,0.397216796875,0.24462890625,0.397216796875,0.24462890625,0.400390625,0.357421875,0.3984375,0.35302734375,0.397216796875,0.24462890625,0.3984375,0.35302734375,0.3984375,0.35302734375,0.52294921875,0.3525390625,0.400390625,0.357421875,0.400390625,0.357421875,0.52294921875,0.3525390625,0.5244140625,0.357421875,0.52685546875,0.35595703125,0.5244140625,0.357421875,0.52294921875,0.3525390625,0.3984375,0.35302734375,0.397216796875,0.24462890625,0.52490234375,0.24462890625,0.3984375,0.35302734375,0.52490234375,0.24462890625,0.52294921875,0.3525390625,0.52490234375,0.24462890625,0.397216796875,0.24462890625,0.52490234375,0.24462890625,0.52685546875,0.35595703125,0.52294921875,0.3525390625,0.52490234375,
- 0.24462890625,0.52685546875,0.35595703125,0.52490234375,0.24462890625,0.52978515625,0.24462890625,0.52978515625,0.24462890625,0.52490234375,0.24462890625,0.52978515625,0.24462890625,0.52880859375,0.3525390625,0.52685546875,0.35595703125,0.52978515625,0.357421875,0.52685546875,0.35595703125,0.52880859375,0.3525390625,0.52880859375,0.3525390625,0.69580078125,0.35693359375,0.52978515625,0.357421875,0.69580078125,0.35693359375,0.52880859375,0.3525390625,0.52978515625,0.24462890625,0.52880859375,0.3525390625,0.822265625,0.357421875,0.69580078125,0.35693359375,0.52978515625,0.24462890625,0.822265625,0.357421875,0.81640625,0.3525390625,0.81640625,0.3525390625,0.82373046875,0.35693359375,0.822265625,0.357421875,0.52978515625,0.24462890625,0.52978515625,0.24462890625,0.81640625,0.3525390625,0.97607421875,0.3515625,0.82373046875,0.35693359375,0.81640625,0.3525390625,0.97607421875,0.3515625,0.81640625,0.3525390625,0.82373046875,0.35693359375,0.97607421875,0.3515625,0.97607421875,0.357421875,0.98095703125,0.3515625,0.97607421875,0.357421875,0.97607421875,0.3515625,0.97607421875,0.3515625,0.97705078125,0.244140625,0.98095703125,0.3515625,0.97607421875,0.3515625,0.97705078125,0.244140625,0.98095703125,0.2431640625,0.98095703125,0.3515625,0.97705078125,0.244140625,0.97705078125,0.244140625,0.97705078125,0.2412109375,0.98095703125,0.2431640625,0.97705078125,0.2412109375,0.97705078125,0.244140625,0.97705078125,0.2412109375,0.98095703125,0.1865234375,0.98095703125,0.2431640625,0.97705078125,0.2412109375,0.82275390625,0.2421875,0.82275390625,0.2421875,0.98095703125,0.1865234375,0.97705078125,0.2412109375,0.9736328125,0.18798828125,0.82275390625,0.2421875,0.9736328125,0.18798828125,0.97705078125,0.2412109375,0.9736328125,0.18798828125,0.97607421875,0.18359375,0.98095703125,0.1865234375,0.97607421875,0.18359375,0.98095703125,0.08837890625,0.98095703125,0.1865234375,0.9736328125,0.18798828125,0.82275390625,0.2421875,0.8369140625,0.18994140625,0.98095703125,0.08837890625,0.97607421875,0.18359375,0.98095703125,0.0654296875,0.98095703125,
- 0.08837890625,0.9736328125,0.18798828125,0.8232421875,0.18359375,0.97607421875,0.18359375,0.8232421875,0.18359375,0.9736328125,0.18798828125,0.8369140625,0.18994140625,0.8232421875,0.18359375,0.97607421875,0.18359375,0.69189453125,0.18798828125,0.8369140625,0.18994140625,0.82275390625,0.2421875,0.69189453125,0.18798828125,0.82275390625,0.2421875,0.8369140625,0.18994140625,0.69189453125,0.18798828125,0.8232421875,0.18359375,0.69189453125,0.18798828125,0.69189453125,0.18798828125,0.69189453125,0.18798828125,0.8232421875,0.18359375,0.69189453125,0.18798828125,0.52685546875,0.18408203125,0.53173828125,0.07373046875,0.52685546875,0.18408203125,0.53173828125,0.07373046875,0.71533203125,0.07568359375,0.71533203125,0.07568359375,0.8232421875,0.18359375,0.71533203125,0.07568359375,0.53173828125,0.07373046875,0.8232421875,0.18359375,0.71533203125,0.07568359375,0.82275390625,0.07470703125,0.82275390625,0.07470703125,0.8232421875,0.18359375,0.8173828125,0.07080078125,0.71533203125,0.07568359375,0.82275390625,0.07470703125,0.71533203125,0.07568359375,0.8173828125,0.07080078125,0.82177734375,0.01806640625,0.8173828125,0.07080078125,0.82177734375,0.01806640625,0.8232421875,0.0576171875,0.8173828125,0.07080078125,0.8173828125,0.07080078125,0.8232421875,0.0576171875,0.82275390625,0.07470703125,0.8232421875,0.0576171875,0.82177734375,0.01806640625,0.82373046875,0.01806640625,0.82275390625,0.07470703125,0.8232421875,0.0576171875,0.82373046875,0.01806640625,0.8232421875,0.0576171875,0.8330078125,0.0703125,0.82275390625,0.07470703125,0.8330078125,0.0703125,0.82373046875,0.01806640625,0.8330078125,0.0703125,0.82275390625,0.07470703125,0.82373046875,0.01806640625,0.9755859375,0.01806640625,0.8330078125,0.0703125,0.8330078125,0.0703125,0.8330078125,0.0703125,0.9755859375,0.01806640625,0.98095703125,0.0654296875,0.98095703125,0.01806640625,0.9755859375,0.01806640625,0.98095703125,0.01806640625,0.98095703125,0.0654296875,0.3271484375,0.14013671875,0.35498046875,0.0224609375,0.35498046875,0.0224609375,0.3271484375,0.14013671875,0.3271484375,
- 0.14013671875,0.35400390625,0.1591796875,0.3271484375,0.14013671875,0.324462890625,0.021484375,0.3271484375,0.14013671875,0.3271484375,0.14013671875,0.3271484375,0.14013671875,0.3271484375,0.14013671875,0.326171875,0.01953125,0.3271484375,0.14013671875,0.325927734375,0.01953125,0.35498046875,0.0224609375,0.35498046875,0.0224609375,0.3271484375,0.14013671875,0.35498046875,0.0224609375,0.3271484375,0.14013671875,0.3271484375,0.14013671875,0.35498046875,0.0224609375,0.324462890625,0.021484375,0.3271484375,0.14013671875,0.3271484375,0.14013671875,0.354736328125,0.0224609375,0.3271484375,0.14013671875,0.3271484375,0.14013671875,0.354736328125,0.0224609375,0.3271484375,0.14013671875,0.326171875,0.01953125,0.35498046875,0.0224609375,0.35498046875,0.0224609375,0.3271484375,0.14013671875,0.355224609375,0.02294921875,0.3271484375,0.14013671875,0.353759765625,0.15869140625,0.3271484375,0.14013671875,0.355224609375,0.02294921875,0.3251953125,0.021484375,0.354736328125,0.02294921875,0.354736328125,0.02294921875,0.3251953125,0.021484375,0.3271484375,0.14013671875,0.32470703125,0.02197265625,0.355224609375,0.02294921875,0.355224609375,0.02294921875,0.355224609375,0.1572265625,0.3271484375,0.14013671875,0.35498046875,0.02294921875,0.3271484375,0.14013671875,0.35400390625,0.1591796875,0.3271484375,0.14013671875,0.35498046875,0.02294921875,0.326171875,0.01953125,0.3271484375,0.14013671875,0.325927734375,0.01953125,0.35498046875,0.02294921875,0.35498046875,0.02294921875,0.354736328125,0.1572265625,0.3271484375,0.14013671875,0.35498046875,0.02294921875,0.3271484375,0.14013671875,0.35400390625,0.1591796875,0.3271484375,0.14013671875,0.35498046875,0.02294921875,0.325927734375,0.01953125,0.353271484375,0.0234375,0.3271484375,0.14013671875,0.325927734375,0.01953125,0.3271484375,0.14013671875,0.353271484375,0.0234375,0.353271484375,0.1572265625,0.35498046875,0.0224609375,0.3271484375,0.14013671875,0.353271484375,0.1572265625,0.3271484375,0.14013671875,0.35498046875,0.0224609375,0.324462890625,0.021484375,0.35498046875,0.0224609375,0.3271484375,
- 0.14013671875,0.3271484375,0.14013671875,0.35498046875,0.0224609375,0.3544921875,0.1572265625,0.35498046875,0.0224609375,0.3271484375,0.14013671875,0.353759765625,0.15869140625,0.3271484375,0.14013671875,0.35498046875,0.0224609375,0.324462890625,0.021484375,0.354736328125,0.0224609375,0.32568359375,0.13916015625,0.3251953125,0.021484375,0.32568359375,0.13916015625,0.354736328125,0.0224609375,0.354736328125,0.02294921875,0.32568359375,0.13916015625,0.32568359375,0.13916015625,0.354736328125,0.02294921875,0.3251953125,0.021484375,0.3271484375,0.14013671875,0.35498046875,0.0224609375,0.35498046875,0.0224609375,0.354736328125,0.1572265625,0.3271484375,0.14013671875,0.3271484375,0.14013671875,0.353759765625,0.15869140625,0.3271484375,0.14013671875,0.32470703125,0.02197265625,0.3271484375,0.14013671875,0.326171875,0.01904296875,0.354736328125,0.0224609375,0.354736328125,0.0224609375,0.3544921875,0.1572265625,0.3271484375,0.14013671875,0.354736328125,0.0224609375,0.3271484375,0.14013671875,0.353759765625,0.15869140625,0.3271484375,0.14013671875,0.354736328125,0.0224609375,0.3251953125,0.021484375,0.82470703125,0.5830078125,0.73583984375,0.582763671875,0.73583984375,0.582763671875,0.73583984375,0.531494140625,0.73583984375,0.531494140625,0.82470703125,0.53125,0.82470703125,0.5830078125,0.73583984375,0.582763671875,0.82763671875,0.580810546875,0.73291015625,0.581298828125,0.82763671875,0.580810546875,0.73583984375,0.582763671875,0.73291015625,0.581298828125,0.8271484375,0.533203125,0.82763671875,0.580810546875,0.8271484375,0.533203125,0.73291015625,0.581298828125,0.7333984375,0.532958984375,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.7333984375,0.532958984375,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.568359375,0.36572265625,0.6640625,0.36328125,0.65966796875,0.35986328125,0.6640625,0.36328125,0.65966796875,0.35986328125,0.65966796875,0.35986328125,0.65966796875,0.35986328125,0.673828125,0.3603515625,0.673828125,0.3603515625,0.673828125,0.3603515625,0.79052734375,0.365234375,0.79052734375,
- 0.365234375,0.7890625,0.22265625,0.673828125,0.3603515625,0.673828125,0.3603515625,0.7890625,0.22265625,0.787109375,0.220703125,0.7890625,0.22265625,0.787109375,0.220703125,0.7890625,0.22265625,0.787109375,0.220703125,0.787109375,0.220703125,0.787109375,0.220703125,0.56591796875,0.0634765625,0.56591796875,0.0634765625,0.787109375,0.0634765625,0.787109375,0.0634765625,0.787109375,0.0634765625,0.7900390625,0.06103515625,0.986328125,0.640625,0.98681640625,0.65185546875,0.9833984375,0.63916015625,0.9306640625,0.6533203125,0.9833984375,0.63916015625,0.98681640625,0.65185546875,0.9306640625,0.6533203125,0.96875,0.6181640625,0.9833984375,0.63916015625,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.96875,0.6181640625,0.9306640625,0.6533203125,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.931640625,0.62255859375,0.96875,0.6181640625,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9287109375,0.623046875,0.931640625,0.47509765625,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9287109375,0.623046875,0.9287109375,0.47509765625,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.96875,0.6181640625,0.931640625,0.47509765625,0.9833984375,0.583251953125,0.98681640625,0.44091796875,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.583251953125,0.931640625,0.47509765625,0.931640625,0.47509765625,0.98681640625,0.44091796875,0.9833984375,0.47509765625,0.9833984375,0.583251953125,0.9833984375,0.47509765625,0.986328125,0.580810546875,0.9833984375,0.47509765625,0.98681640625,0.44091796875,0.986328125,0.47509765625,0.986328125,0.47509765625,0.986328125,0.580810546875,0.9833984375,0.47509765625,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.7333984375,0.532958984375,0.7333984375,0.532958984375,0.8271484375,0.533203125,0.7333984375,0.532958984375,0.73583984375,0.582763671875,0.82470703125,0.5830078125,0.73583984375,0.582763671875,0.50439453125,0.744873046875,
- 0.471435546875,0.607421875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.8271484375,0.533203125,0.82763671875,0.5810546875,0.82763671875,0.5810546875,0.82763671875,0.5810546875,0.73583984375,0.582763671875,0.82470703125,0.5830078125,0.73583984375,0.582763671875,0.82763671875,0.5810546875,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.5048828125,0.60546875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.92822265625,0.4404296875,0.92822265625,0.4404296875,0.986328125,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.931640625,0.62255859375,0.931640625,0.62255859375,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.931640625,0.62255859375,0.9287109375,0.623046875,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.50439453125,0.607421875,0.408447265625,0.716552734375,0.471435546875,0.607421875,0.50439453125,0.607421875,0.50439453125,0.744873046875,
- 0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.442138671875,0.984565734863281,0.442138671875,0.984565734863281,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.53662109375,0.95635986328125,0.4765625,0.84912109375,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.442138671875,0.984565734863281,0.50439453125,0.744873046875,0.50439453125,0.744873046875,0.50439453125,0.744873046875,0.5048828125,0.60546875,0.5048828125,0.60546875,0.471435546875,0.607421875,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.82763671875,0.5810546875,0.82763671875,0.5810546875,0.7333984375,0.58154296875,0.82763671875,0.5810546875,0.73583984375,0.582763671875,0.7333984375,0.58154296875,0.73583984375,0.582763671875,0.82763671875,0.5810546875,0.82470703125,0.5830078125,0.367919921875,0.654052734375,0.228515625,0.654052734375,0.367919921875,0.654052734375,0.2266845703125,0.709228515625,0.2266845703125,0.709228515625,0.371337890625,0.709228515625,0.367919921875,0.710693359375,0.2266845703125,0.709228515625,0.371337890625,0.709228515625,0.2266845703125,0.709228515625,0.367919921875,0.710693359375,0.228515625,0.71044921875,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.50439453125,0.607421875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.408447265625,0.716552734375,0.53662109375,0.984565734863281,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.53662109375,0.95635986328125,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.44091796875,0.8494873046875,0.79052734375,0.365234375,0.7880859375,0.36669921875,0.79052734375,0.365234375,0.673828125,0.3603515625,0.673828125,
- 0.3603515625,0.79052734375,0.365234375,0.7890625,0.22265625,0.673828125,0.3603515625,0.7890625,0.22265625,0.673828125,0.3603515625,0.65966796875,0.35986328125,0.65966796875,0.35986328125,0.568359375,0.36572265625,0.568359375,0.36572265625,0.65966796875,0.35986328125,0.65966796875,0.35986328125,0.56494140625,0.224609375,0.56494140625,0.224609375,0.65966796875,0.35986328125,0.7890625,0.22265625,0.787109375,0.220703125,0.56494140625,0.224609375,0.787109375,0.220703125,0.56640625,0.18505859375,0.56494140625,0.224609375,0.78955078125,0.1904296875,0.787109375,0.220703125,0.7890625,0.22265625,0.787109375,0.220703125,0.56640625,0.18505859375,0.787109375,0.220703125,0.78955078125,0.1904296875,0.56640625,0.18505859375,0.78955078125,0.1904296875,0.56591796875,0.0634765625,0.56640625,0.18505859375,0.56591796875,0.0634765625,0.66796875,0.0654296875,0.66796875,0.0654296875,0.787109375,0.0634765625,0.78955078125,0.1904296875,0.787109375,0.0634765625,0.787109375,0.0634765625,0.78955078125,0.1904296875,0.7900390625,0.06103515625,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.82470703125,0.53125,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.7333984375,0.532958984375,0.8271484375,0.533203125,0.7333984375,0.532958984375,0.82763671875,0.5810546875,0.7333984375,0.532958984375,0.7333984375,0.58154296875,0.82763671875,0.5810546875,0.82763671875,0.5810546875,0.7333984375,0.58154296875,0.73583984375,0.582763671875,0.73583984375,0.582763671875,0.82470703125,0.5830078125,0.82763671875,0.5810546875,0.408447265625,0.744873046875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.408447265625,0.716552734375,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.5048828125,0.60546875,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.440673828125,0.8472900390625,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.984565734863281,0.53662109375,0.95635986328125,0.8271484375,
- 0.532958984375,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.8271484375,0.532958984375,0.73291015625,0.53271484375,0.73291015625,0.53271484375,0.8271484375,0.532958984375,0.82763671875,0.5810546875,0.73291015625,0.53271484375,0.82763671875,0.5810546875,0.7333984375,0.581298828125,0.7333984375,0.581298828125,0.82763671875,0.5810546875,0.73583984375,0.582763671875,0.82470703125,0.5830078125,0.73583984375,0.582763671875,0.82763671875,0.5810546875,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.5048828125,0.60546875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.53662109375,0.95635986328125,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.44091796875,0.8494873046875,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.73291015625,0.53271484375,0.82763671875,0.5810546875,0.73291015625,0.53271484375,0.8271484375,0.533203125,0.73291015625,0.53271484375,0.82763671875,0.5810546875,0.7333984375,0.581298828125,0.7333984375,0.581298828125,0.82763671875,0.5810546875,0.73583984375,0.582763671875,0.82470703125,0.5830078125,0.73583984375,0.582763671875,0.82763671875,0.5810546875,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.5048828125,0.60546875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.53662109375,0.95635986328125,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.44091796875,0.8494873046875,0.92822265625,0.4404296875,
- 0.94140625,0.45751953125,0.9287109375,0.45556640625,0.94140625,0.45751953125,0.92822265625,0.4404296875,0.98486328125,0.439453125,0.98486328125,0.439453125,0.953125,0.47509765625,0.94140625,0.45751953125,0.98486328125,0.439453125,0.986328125,0.44091796875,0.986328125,0.47509765625,0.953125,0.47509765625,0.98486328125,0.439453125,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.98486328125,0.439453125,0.986328125,0.47509765625,0.953125,0.47509765625,0.9833984375,0.47509765625,0.94140625,0.51806640625,0.986328125,0.47509765625,0.986328125,0.623046875,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.94140625,0.51806640625,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.986328125,0.623046875,0.984375,0.653076171875,0.986328125,0.623046875,0.986328125,0.651611328125,0.986328125,0.623046875,0.984375,0.653076171875,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.94140625,0.51806640625,0.9833984375,0.62255859375,0.984375,0.653076171875,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.94140625,0.51806640625,0.931640625,0.62255859375,0.9287109375,0.539306640625,0.931640625,0.62255859375,0.984375,0.653076171875,0.9306640625,0.6533203125,0.9287109375,0.539306640625,0.931640625,0.62255859375,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.931640625,0.62255859375,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.50439453125,0.607421875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.483642578125,0.8863525390625,0.4404296875,0.8475341796875,0.456298828125,0.848388671875,0.442138671875,0.984565734863281,0.4404296875,0.8475341796875,0.483642578125,0.8863525390625,0.50341796875,0.895263671875,0.442138671875,0.984565734863281,0.483642578125,0.8863525390625,0.442138671875,0.984565734863281,0.50341796875,0.895263671875,0.53662109375,
- 0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.73583984375,0.582763671875,0.82763671875,0.580810546875,0.82470703125,0.5830078125,0.82763671875,0.580810546875,0.73583984375,0.582763671875,0.73291015625,0.581298828125,0.73291015625,0.581298828125,0.8271484375,0.533203125,0.82763671875,0.580810546875,0.8271484375,0.533203125,0.73291015625,0.581298828125,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.50439453125,0.607421875,0.408447265625,0.716552734375,0.471435546875,0.607421875,0.50439453125,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.442138671875,0.984565734863281,0.4404296875,0.847900390625,0.53662109375,0.95635986328125,0.53662109375,0.95635986328125,0.4404296875,0.847900390625,0.4765625,0.84912109375,0.5048828125,0.60546875,0.426513671875,0.685546875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.426513671875,0.685546875,0.5048828125,0.60546875,0.426513671875,0.685546875,0.50439453125,0.744873046875,0.423095703125,0.709228515625,0.50439453125,0.744873046875,0.408447265625,0.734130859375,0.423095703125,0.709228515625,0.408447265625,0.734130859375,0.50439453125,0.744873046875,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.442138671875,0.984565734863281,0.4404296875,0.847900390625,0.53662109375,0.95635986328125,0.53662109375,0.95635986328125,0.4404296875,0.847900390625,0.4765625,0.84912109375,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.73291015625,0.532958984375,0.73291015625,0.532958984375,0.8271484375,0.533203125,0.82763671875,0.5810546875,0.82763671875,0.5810546875,0.7333984375,0.58154296875,0.73291015625,
- 0.532958984375,0.7333984375,0.58154296875,0.82763671875,0.5810546875,0.73583984375,0.582763671875,0.73583984375,0.582763671875,0.82763671875,0.5810546875,0.82470703125,0.5830078125,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.50439453125,0.607421875,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.744873046875,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.44091796875,0.8494873046875,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,0.79052734375,0.365234375,0.6669921875,0.36376953125,0.78759765625,0.36669921875,0.6669921875,0.36376953125,0.79052734375,0.365234375,0.673828125,0.3603515625,0.7890625,0.22265625,0.673828125,0.3603515625,0.79052734375,0.365234375,0.673828125,0.3603515625,0.7890625,0.22265625,0.6669921875,0.224609375,0.673828125,0.3603515625,0.6669921875,0.224609375,0.666015625,0.36865234375,0.6669921875,0.224609375,0.65966796875,0.35986328125,0.666015625,0.36865234375,0.7890625,0.22265625,0.6669921875,0.224609375,0.7890625,0.22265625,0.564453125,0.22509765625,0.65966796875,0.35986328125,0.6669921875,0.224609375,0.65966796875,0.35986328125,0.564453125,0.22509765625,0.56591796875,0.3642578125,0.65966796875,0.35986328125,0.56591796875,0.3642578125,0.6640625,0.36328125,0.6640625,0.36328125,0.56591796875,0.3642578125,0.568359375,0.36572265625,0.6669921875,0.224609375,0.564453125,0.22509765625,0.6669921875,0.224609375,0.56591796875,0.18603515625,0.564453125,0.22509765625,0.6669921875,0.19189453125,0.6669921875,0.19189453125,0.568359375,0.19189453125,0.56591796875,0.18603515625,0.6669921875,0.19189453125,0.568359375,0.19189453125,0.6669921875,0.19189453125,0.56591796875,0.18603515625,0.568359375,0.19189453125,0.56591796875,0.18603515625,0.6669921875,0.19189453125,0.6669921875,0.185546875,0.6669921875,0.185546875,0.6669921875,0.19189453125,0.6669921875,
- 0.185546875,0.56591796875,0.0634765625,0.56591796875,0.18603515625,0.56591796875,0.0634765625,0.6669921875,0.185546875,0.66943359375,0.0654296875,0.78759765625,0.18505859375,0.66943359375,0.0654296875,0.6669921875,0.185546875,0.6669921875,0.185546875,0.78759765625,0.18505859375,0.66943359375,0.0654296875,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.7900390625,0.06103515625,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.82470703125,0.53125,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.73291015625,0.532958984375,0.73291015625,0.532958984375,0.82763671875,0.5810546875,0.8271484375,0.533203125,0.7333984375,0.58154296875,0.82763671875,0.5810546875,0.73291015625,0.532958984375,0.73583984375,0.582763671875,0.82763671875,0.5810546875,0.7333984375,0.58154296875,0.82763671875,0.5810546875,0.73583984375,0.582763671875,0.82470703125,0.5830078125,0.471435546875,0.607421875,0.50439453125,0.744873046875,0.5048828125,0.60546875,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.408447265625,0.716552734375,0.50439453125,0.744873046875,0.408447265625,0.716552734375,0.408447265625,0.744873046875,0.442138671875,0.984565734863281,0.4765625,0.84912109375,0.44091796875,0.8494873046875,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.53662109375,0.95635986328125,0.53662109375,0.95635986328125,0.442138671875,0.984565734863281,0.53662109375,0.984565734863281,0.228515625,0.654052734375,0.367919921875,0.654052734375,0.2266845703125,0.655517578125,0.2266845703125,0.655517578125,0.367919921875,0.654052734375,0.2266845703125,0.655517578125,0.2266845703125,0.655517578125,0.228515625,0.71044921875,0.7158203125,0.2373046875,0.73486328125,0.228515625,0.7490234375,0.302734375,0.73486328125,0.228515625,0.7490234375,0.302734375,0.7490234375,0.302734375,0.7490234375,0.302734375,0.7392578125,0.3837890625,0.7392578125,0.3837890625,0.70263671875,0.3076171875,0.7392578125,0.2314453125,0.70263671875,0.3076171875,0.7392578125,0.2314453125,
- 0.228515625,0.654052734375,0.367919921875,0.654052734375,0.2266845703125,0.655517578125,0.371826171875,0.6552734375,0.2266845703125,0.655517578125,0.367919921875,0.654052734375,0.367919921875,0.7080078125,0.2266845703125,0.655517578125,0.371826171875,0.6552734375,0.367919921875,0.7080078125,0.226806640625,0.709228515625,0.2266845703125,0.655517578125,0.367919921875,0.7080078125,0.371826171875,0.6552734375,0.369873046875,0.710693359375,0.369873046875,0.710693359375,0.226806640625,0.709228515625,0.367919921875,0.7080078125,0.226806640625,0.709228515625,0.369873046875,0.710693359375,0.228515625,0.71044921875,0.228515625,0.654052734375,0.367919921875,0.654052734375,0.2266845703125,0.655517578125,0.371826171875,0.655517578125,0.2266845703125,0.655517578125,0.367919921875,0.654052734375,0.367919921875,0.7080078125,0.2266845703125,0.655517578125,0.371826171875,0.655517578125,0.367919921875,0.7080078125,0.226806640625,0.709228515625,0.2266845703125,0.655517578125,0.367919921875,0.7080078125,0.371826171875,0.655517578125,0.226806640625,0.709228515625,0.367919921875,0.7080078125,0.226806640625,0.709228515625,0.228515625,0.71044921875,0.1051025390625,1.12457275390625,0.09136962890625,1.12127685546875,0.12213134765625,1.07763671875,0.12213134765625,1.07763671875,0.09136962890625,1.12127685546875,0.06976318359375,1.0726318359375,0.12213134765625,1.07763671875,0.06976318359375,1.0726318359375,0.10662841796875,1.03213500976563,0.1207275390625,1.0313720703125,0.12213134765625,1.07763671875,0.10662841796875,1.03213500976563,0.7158203125,0.2373046875,0.73486328125,0.228515625,0.7490234375,0.302734375,0.7490234375,0.302734375,0.73486328125,0.228515625,0.7724609375,0.3056640625,0.7197265625,0.37255859375,0.7490234375,0.302734375,0.7724609375,0.3056640625,0.7197265625,0.37255859375,0.70361328125,0.359375,0.7490234375,0.302734375,0.7392578125,0.3837890625,0.72314453125,0.3076171875,0.72314453125,0.3076171875,0.7392578125,0.3837890625,0.70263671875,0.3076171875,0.7392578125,0.2314453125,0.72314453125,0.3076171875,0.70263671875,0.3076171875,
- 0.72314453125,0.3076171875,0.7392578125,0.2314453125,0.759765625,0.24267578125,0.72021484375,0.3720703125,0.703125,0.3603515625,0.7490234375,0.302734375,0.72021484375,0.3720703125,0.7490234375,0.302734375,0.7724609375,0.3056640625,0.7724609375,0.3056640625,0.7490234375,0.302734375,0.7158203125,0.2373046875,0.7490234375,0.302734375,0.72265625,0.3076171875,0.7392578125,0.2314453125,0.75927734375,0.24267578125,0.7392578125,0.2314453125,0.72265625,0.3076171875,0.70263671875,0.3076171875,0.7392578125,0.3837890625,0.70263671875,0.3076171875,0.72265625,0.3076171875,0.75927734375,0.37255859375,0.7392578125,0.3837890625,0.72265625,0.3076171875,0.367919921875,0.710693359375,0.2266845703125,0.709228515625,0.228515625,0.71044921875,0.2266845703125,0.709228515625,0.367919921875,0.710693359375,0.2266845703125,0.709228515625,0.2266845703125,0.709228515625,0.2266845703125,0.6552734375,0.2266845703125,0.6552734375,0.228515625,0.654052734375,0.2266845703125,0.6552734375,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.623046875,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.931640625,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.986328125,0.623046875,0.986328125,0.651611328125,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.986328125,0.623046875,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.986328125,0.623046875,0.228515625,0.654052734375,0.369873046875,0.654052734375,0.369873046875,
- 0.654052734375,0.367919921875,0.65673828125,0.367919921875,0.65673828125,0.367919921875,0.65673828125,0.369873046875,0.654052734375,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.228515625,0.71044921875,0.228515625,0.71044921875,0.367919921875,0.7080078125,0.9287109375,0.623046875,0.9287109375,0.651611328125,0.931640625,0.62255859375,0.9287109375,0.623046875,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.623046875,0.931640625,0.62255859375,0.984375,0.6533203125,0.9287109375,0.47509765625,0.9287109375,0.44091796875,0.931640625,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.984375,0.6533203125,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.98681640625,0.4404296875,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.98681640625,0.4404296875,0.986328125,0.47509765625,0.986328125,0.623046875,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.986328125,0.623046875,0.986328125,0.623046875,0.984375,0.6533203125,0.9833984375,0.62255859375,0.984375,0.6533203125,0.986328125,0.623046875,0.986328125,0.651611328125,0.367919921875,0.710693359375,0.228515625,0.71044921875,0.367919921875,0.710693359375,0.367919921875,0.7080078125,0.367919921875,0.710693359375,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.369873046875,0.654052734375,0.369873046875,0.654052734375,0.367919921875,0.65673828125,0.228515625,0.654052734375,0.369873046875,0.654052734375,0.986328125,0.623046875,0.986328125,0.651611328125,0.986328125,0.623046875,
- 0.9833984375,0.62255859375,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.986328125,0.623046875,0.9833984375,0.62255859375,0.9306640625,0.6533203125,0.986328125,0.44091796875,0.986328125,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9306640625,0.6533203125,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.931640625,0.47509765625,0.92822265625,0.4404296875,0.9287109375,0.47509765625,0.92822265625,0.4404296875,0.931640625,0.47509765625,0.931640625,0.47509765625,0.9287109375,0.623046875,0.9287109375,0.47509765625,0.9287109375,0.623046875,0.931640625,0.47509765625,0.931640625,0.62255859375,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.9287109375,0.623046875,0.228515625,0.654052734375,0.367919921875,0.654052734375,0.367919921875,0.654052734375,0.367919921875,0.65673828125,0.367919921875,0.65673828125,0.367919921875,0.654052734375,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.36962890625,0.710693359375,0.36962890625,0.710693359375,0.367919921875,0.7080078125,0.36962890625,0.710693359375,0.228515625,0.71044921875,0.369873046875,0.710693359375,0.228515625,0.71044921875,0.369873046875,0.710693359375,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.369873046875,0.710693359375,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.367919921875,0.65673828125,0.228515625,0.654052734375,0.228515625,0.654052734375,0.367919921875,0.65673828125,0.9287109375,0.651611328125,0.9287109375,0.623046875,0.931640625,
- 0.62255859375,0.9287109375,0.623046875,0.931640625,0.62255859375,0.9287109375,0.623046875,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.986328125,0.623046875,0.986328125,0.651611328125,0.986328125,0.623046875,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.986328125,0.623046875,0.931640625,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.9287109375,0.44091796875,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.986328125,0.44091796875,0.9287109375,0.623046875,0.9287109375,0.651611328125,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.9287109375,0.623046875,0.931640625,0.62255859375,0.984375,0.6533203125,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9287109375,0.47509765625,0.9287109375,0.44091796875,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.986328125,0.623046875,0.984375,0.6533203125,0.986328125,0.651611328125,0.9833984375,0.47509765625,0.9287109375,0.44091796875,0.931640625,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.9287109375,0.44091796875,0.9833984375,0.47509765625,0.98681640625,0.4404296875,0.986328125,0.47509765625,0.98681640625,0.4404296875,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.984375,0.6533203125,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.984375,0.6533203125,0.986328125,0.623046875,0.9833984375,
- 0.62255859375,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.986328125,0.623046875,0.2269287109375,0.655517578125,0.369873046875,0.654052734375,0.228515625,0.654052734375,0.369873046875,0.654052734375,0.2269287109375,0.655517578125,0.367919921875,0.65673828125,0.370361328125,0.710693359375,0.369873046875,0.654052734375,0.367919921875,0.65673828125,0.367919921875,0.65673828125,0.2269287109375,0.655517578125,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.370361328125,0.710693359375,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.228515625,0.71044921875,0.370361328125,0.710693359375,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.228515625,0.71044921875,0.9287109375,0.623046875,0.93017578125,0.653076171875,0.9287109375,0.651611328125,0.93017578125,0.653076171875,0.9287109375,0.623046875,0.931640625,0.62255859375,0.931640625,0.62255859375,0.98486328125,0.653076171875,0.93017578125,0.653076171875,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.623046875,0.98486328125,0.653076171875,0.986328125,0.623046875,0.986328125,0.651611328125,0.931640625,0.44091796875,0.9287109375,0.47509765625,0.9287109375,0.44091796875,0.986328125,0.623046875,0.98486328125,0.653076171875,0.9833984375,0.62255859375,0.98486328125,0.653076171875,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.986328125,0.623046875,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.931640625,0.44091796875,0.931640625,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.931640625,0.44091796875,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.98681640625,0.4404296875,0.986328125,0.47509765625,
- 0.931640625,0.44091796875,0.98681640625,0.4404296875,0.9833984375,0.47509765625,0.226318359375,0.70947265625,0.367919921875,0.710693359375,0.228515625,0.71044921875,0.367919921875,0.710693359375,0.226318359375,0.70947265625,0.367919921875,0.7080078125,0.367919921875,0.710693359375,0.367919921875,0.7080078125,0.37060546875,0.7080078125,0.367919921875,0.7080078125,0.226318359375,0.70947265625,0.22705078125,0.65576171875,0.367919921875,0.65673828125,0.37060546875,0.7080078125,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.22705078125,0.65576171875,0.367919921875,0.65673828125,0.37060546875,0.7080078125,0.367919921875,0.65673828125,0.369873046875,0.654052734375,0.367919921875,0.65673828125,0.22705078125,0.65576171875,0.369873046875,0.654052734375,0.228515625,0.654052734375,0.369873046875,0.654052734375,0.22705078125,0.65576171875,0.9287109375,0.623046875,0.9306640625,0.653076171875,0.9287109375,0.651611328125,0.9306640625,0.653076171875,0.9287109375,0.623046875,0.931640625,0.62255859375,0.931640625,0.62255859375,0.984375,0.6533203125,0.9306640625,0.653076171875,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.623046875,0.984375,0.6533203125,0.986328125,0.623046875,0.986328125,0.651611328125,0.986328125,0.623046875,0.984375,0.6533203125,0.9833984375,0.62255859375,0.984375,0.6533203125,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.986328125,0.623046875,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.98681640625,0.4404296875,0.986328125,0.47509765625,0.931640625,0.44091796875,0.98681640625,0.4404296875,0.9833984375,0.47509765625,0.931640625,0.44091796875,0.9287109375,0.47509765625,0.9287109375,0.44091796875,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.931640625,0.44091796875,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.9287109375,
- 0.47509765625,0.931640625,0.47509765625,0.9287109375,0.47509765625,0.931640625,0.44091796875,0.931640625,0.47509765625,0.226318359375,0.70947265625,0.367919921875,0.710693359375,0.228515625,0.71044921875,0.367919921875,0.710693359375,0.226318359375,0.70947265625,0.367919921875,0.7080078125,0.367919921875,0.710693359375,0.367919921875,0.7080078125,0.37060546875,0.7080078125,0.367919921875,0.7080078125,0.226318359375,0.70947265625,0.22705078125,0.65576171875,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.37060546875,0.7080078125,0.367919921875,0.7080078125,0.22705078125,0.65576171875,0.367919921875,0.65673828125,0.37060546875,0.7080078125,0.367919921875,0.65673828125,0.369873046875,0.654052734375,0.367919921875,0.65673828125,0.22705078125,0.65576171875,0.369873046875,0.654052734375,0.228515625,0.654052734375,0.369873046875,0.654052734375,0.22705078125,0.65576171875,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.623046875,0.931640625,0.62255859375,0.984375,0.653076171875,0.9306640625,0.6533203125,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.9287109375,0.47509765625,0.92822265625,0.4404296875,0.931640625,0.47509765625,0.98486328125,0.439453125,0.931640625,0.47509765625,0.92822265625,0.4404296875,0.984375,0.653076171875,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.47509765625,0.98486328125,0.439453125,0.9833984375,0.47509765625,0.986328125,0.623046875,0.984375,0.653076171875,0.9833984375,0.62255859375,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.986328125,0.623046875,0.984375,0.653076171875,0.986328125,0.623046875,0.986328125,0.651611328125,0.986328125,0.47509765625,0.986328125,0.623046875,0.9833984375,0.47509765625,
- 0.9833984375,0.47509765625,0.98486328125,0.439453125,0.986328125,0.47509765625,0.986328125,0.47509765625,0.98486328125,0.439453125,0.986328125,0.44091796875,0.2269287109375,0.709228515625,0.36962890625,0.710693359375,0.228515625,0.71044921875,0.36962890625,0.710693359375,0.2269287109375,0.709228515625,0.367919921875,0.7080078125,0.367919921875,0.7080078125,0.3701171875,0.65380859375,0.36962890625,0.710693359375,0.367919921875,0.7080078125,0.2269287109375,0.709228515625,0.2265625,0.655517578125,0.3701171875,0.65380859375,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.2265625,0.655517578125,0.367919921875,0.65673828125,0.367919921875,0.7080078125,0.367919921875,0.65673828125,0.228515625,0.654052734375,0.3701171875,0.65380859375,0.228515625,0.654052734375,0.367919921875,0.65673828125,0.2265625,0.655517578125,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.931640625,0.62255859375,0.931640625,0.62255859375,0.984375,0.6533203125,0.9306640625,0.6533203125,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.9287109375,0.623046875,0.984375,0.6533203125,0.986328125,0.623046875,0.986328125,0.651611328125,0.9287109375,0.47509765625,0.9287109375,0.44091796875,0.986328125,0.623046875,0.984375,0.6533203125,0.9833984375,0.62255859375,0.984375,0.6533203125,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.986328125,0.623046875,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.62255859375,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.986328125,0.47509765625,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.47509765625,0.98486328125,0.43896484375,0.98486328125,0.43896484375,0.986328125,0.47509765625,0.9833984375,0.47509765625,
- 0.986328125,0.47509765625,0.98486328125,0.43896484375,0.986328125,0.44091796875,0.9306640625,0.6533203125,0.9287109375,0.623046875,0.9287109375,0.651611328125,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.931640625,0.62255859375,0.931640625,0.62255859375,0.9287109375,0.47509765625,0.9287109375,0.623046875,0.984375,0.6533203125,0.931640625,0.62255859375,0.9306640625,0.6533203125,0.9287109375,0.47509765625,0.9306640625,0.439453125,0.9287109375,0.44091796875,0.986328125,0.623046875,0.984375,0.6533203125,0.986328125,0.651611328125,0.9306640625,0.439453125,0.9287109375,0.47509765625,0.931640625,0.47509765625,0.9287109375,0.47509765625,0.931640625,0.62255859375,0.931640625,0.47509765625,0.984375,0.6533203125,0.986328125,0.623046875,0.9833984375,0.62255859375,0.931640625,0.62255859375,0.984375,0.6533203125,0.9833984375,0.62255859375,0.9833984375,0.47509765625,0.9833984375,0.62255859375,0.986328125,0.623046875,0.9833984375,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.62255859375,0.931640625,0.47509765625,0.931640625,0.62255859375,0.9833984375,0.47509765625,0.931640625,0.47509765625,0.9833984375,0.47509765625,0.9306640625,0.439453125,0.986328125,0.623046875,0.986328125,0.47509765625,0.9833984375,0.47509765625,0.9306640625,0.439453125,0.9833984375,0.47509765625,0.98681640625,0.4404296875,0.98681640625,0.4404296875,0.9833984375,0.47509765625,0.986328125,0.47509765625,0.2208251953125,1.137451171875,0.27099609375,1.115234375,0.2802734375,1.1336669921875,0.2802734375,1.1336669921875,0.2252197265625,1.1693115234375,0.2208251953125,1.137451171875,0.271484375,1.1697998046875,0.2252197265625,1.1693115234375,0.2802734375,1.1336669921875,0.2252197265625,1.1693115234375,0.1962890625,1.1644287109375,0.2208251953125,1.137451171875,0.66455078125,0.36328125,0.66455078125,0.36328125,0.66845703125,0.36376953125,0.787109375,0.0634765625,0.7900390625,0.06103515625,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.78759765625,
- 0.18505859375,0.560546875,0.3623046875,0.560546875,0.3623046875,0.7880859375,0.36669921875,0.7880859375,0.36669921875,0.7890625,0.22265625,0.560546875,0.3623046875,0.7890625,0.22265625,0.560546875,0.3623046875,0.560546875,0.3623046875,0.560546875,0.3671875,0.560546875,0.3671875,0.7890625,0.22265625,0.7890625,0.22265625,0.787109375,0.220703125,0.787109375,0.220703125,0.7890625,0.22265625,0.7900390625,0.1904296875,0.7900390625,0.1904296875,0.787109375,0.220703125,0.3818359375,0.361328125,0.3818359375,0.361328125,0.3818359375,0.361328125,0.3818359375,0.365234375,0.37841796875,0.36376953125,0.3818359375,0.361328125,0.37646484375,0.3623046875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.378662109375,0.248046875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.37646484375,0.3623046875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.7900390625,0.1904296875,0.382080078125,0.1865234375,0.382080078125,0.1865234375,0.376220703125,0.06201171875,0.376220703125,0.06201171875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.38037109375,0.0634765625,0.47216796875,0.06201171875,0.47216796875,0.06201171875,0.7900390625,0.1904296875,0.66455078125,0.06494140625,0.787109375,0.0634765625,0.7900390625,0.1904296875,0.7900390625,0.06103515625,0.66455078125,0.06494140625,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.787109375,0.0634765625,0.66455078125,0.06494140625,0.7900390625,0.1904296875,0.78759765625,0.18505859375,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.7900390625,0.1904296875,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.6708984375,0.10888671875,0.78759765625,0.18505859375,0.78759765625,0.36669921875,0.79052734375,0.365234375,0.79052734375,0.365234375,0.787109375,0.220703125,0.787109375,0.220703125,0.7900390625,0.1904296875,0.787109375,0.220703125,0.787109375,0.220703125,0.7900390625,
- 0.1904296875,0.7900390625,0.1904296875,0.7900390625,0.1904296875,0.787109375,0.0634765625,0.7900390625,0.1904296875,0.7900390625,0.06103515625,0.7900390625,0.1904296875,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.7900390625,0.1904296875,0.78759765625,0.18505859375,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.7333984375,0.532958984375,0.8271484375,0.533203125,0.7333984375,0.581298828125,0.7333984375,0.532958984375,0.7333984375,0.581298828125,0.8271484375,0.533203125,0.73583984375,0.582763671875,0.7333984375,0.581298828125,0.8271484375,0.533203125,0.73583984375,0.582763671875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.376220703125,0.06201171875,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.47412109375,0.18505859375,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.47412109375,0.18505859375,0.47216796875,0.06201171875,0.47412109375,0.18505859375,0.38037109375,0.0634765625,0.47412109375,0.18505859375,0.47216796875,0.06201171875,0.47412109375,0.18505859375,0.47412109375,0.18505859375,0.7900390625,0.06103515625,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.78759765625,0.18505859375,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.78759765625,0.18505859375,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.78759765625,0.3623046875,0.78759765625,0.3623046875,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.6708984375,0.10888671875,0.787109375,0.06396484375,0.787109375,0.06396484375,0.6708984375,0.10888671875,0.66455078125,0.06494140625,0.6708984375,0.10888671875,0.66455078125,0.06494140625,0.6708984375,
- 0.10888671875,0.66455078125,0.06494140625,0.47216796875,0.06201171875,0.38037109375,0.0634765625,0.47216796875,0.06201171875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.376220703125,0.06201171875,0.3818359375,0.36083984375,0.378662109375,0.248046875,0.3818359375,0.36083984375,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.378662109375,0.248046875,0.3818359375,0.36083984375,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.35009765625,0.34716796875,0.349365234375,0.21875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.349365234375,0.21875,0.78759765625,0.3623046875,0.7890625,0.22265625,0.7890625,0.22265625,0.78759765625,0.3623046875,0.7890625,0.22265625,0.6669921875,0.224609375,0.564453125,0.22509765625,0.6669921875,0.224609375,0.564453125,0.22509765625,0.564453125,0.22509765625,0.7890625,0.22265625,0.6669921875,0.224609375,0.568359375,0.21875,0.6669921875,0.224609375,0.564453125,0.22509765625,0.6669921875,0.224609375,0.568359375,0.21875,0.56591796875,0.18603515625,0.568359375,0.21875,0.564453125,0.22509765625,0.7890625,0.22265625,0.568359375,0.21875,0.56591796875,0.18603515625,0.568359375,0.19189453125,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.787109375,0.06396484375,0.568359375,0.19189453125,0.66650390625,0.19189453125,0.568359375,0.21875,0.56591796875,0.18603515625,0.66650390625,0.19189453125,0.568359375,0.19189453125,0.568359375,0.21875,0.66650390625,0.19189453125,0.66650390625,0.19189453125,0.66650390625,0.19189453125,0.66650390625,0.19189453125,0.56591796875,0.18603515625,0.56591796875,0.18603515625,0.78759765625,0.3623046875,0.7890625,0.22314453125,0.79052734375,0.36865234375,0.7890625,0.22314453125,0.78759765625,0.3623046875,0.7890625,0.22314453125,0.6669921875,0.224609375,0.6669921875,0.224609375,0.568359375,0.361328125,0.568359375,0.361328125,0.7890625,0.22314453125,0.6669921875,0.224609375,0.787109375,
- 0.220703125,0.568359375,0.21875,0.6669921875,0.224609375,0.7900390625,0.1875,0.7890625,0.22314453125,0.787109375,0.220703125,0.56591796875,0.18603515625,0.568359375,0.21875,0.7900390625,0.1875,0.787109375,0.06396484375,0.7900390625,0.1875,0.787109375,0.06396484375,0.6669921875,0.224609375,0.568359375,0.21875,0.787109375,0.220703125,0.6669921875,0.224609375,0.568359375,0.19189453125,0.568359375,0.21875,0.568359375,0.21875,0.56591796875,0.18603515625,0.568359375,0.19189453125,0.568359375,0.19189453125,0.66650390625,0.19189453125,0.56591796875,0.18603515625,0.66650390625,0.19189453125,0.568359375,0.19189453125,0.66650390625,0.19189453125,0.787109375,0.220703125,0.66650390625,0.19189453125,0.56591796875,0.18603515625,0.56591796875,0.18603515625,0.7900390625,0.1875,0.787109375,0.220703125,0.66650390625,0.19189453125,0.78759765625,0.1923828125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.7900390625,0.1875,0.78759765625,0.1923828125,0.66650390625,0.19189453125,0.78759765625,0.1923828125,0.7900390625,0.1875,0.8271484375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.73583984375,0.531494140625,0.8271484375,0.533203125,0.7333984375,0.532958984375,0.8271484375,0.533203125,0.7333984375,0.581298828125,0.7333984375,0.532958984375,0.7333984375,0.581298828125,0.8271484375,0.533203125,0.82470703125,0.580322265625,0.82470703125,0.580322265625,0.73583984375,0.582763671875,0.7333984375,0.581298828125,0.82470703125,0.580322265625,0.8271484375,0.533203125,0.73583984375,0.582763671875,0.82470703125,0.580322265625,0.78759765625,0.3623046875,0.78857421875,0.22265625,0.791015625,0.369140625,0.78857421875,0.22265625,0.78759765625,0.3623046875,0.78857421875,0.22265625,0.78857421875,0.22265625,0.7900390625,0.18994140625,0.78857421875,0.22265625,0.3818359375,0.36083984375,0.3818359375,0.36083984375,0.378662109375,0.248046875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.3818359375,0.36083984375,0.37646484375,0.3623046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.378662109375,
- 0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.66748046875,0.19189453125,0.7900390625,0.18994140625,0.66748046875,0.19189453125,0.382080078125,0.1865234375,0.376220703125,0.06201171875,0.382080078125,0.1865234375,0.382080078125,0.1865234375,0.376220703125,0.06201171875,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.66748046875,0.19189453125,0.38037109375,0.0634765625,0.47216796875,0.06201171875,0.556640625,0.0615234375,0.47216796875,0.06201171875,0.66748046875,0.19189453125,0.6669921875,0.185546875,0.556640625,0.0615234375,0.6669921875,0.185546875,0.6669921875,0.185546875,0.7900390625,0.18994140625,0.66748046875,0.19189453125,0.6669921875,0.185546875,0.556640625,0.0615234375,0.66552734375,0.06494140625,0.7900390625,0.18994140625,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.6669921875,0.185546875,0.66552734375,0.06494140625,0.6708984375,0.10888671875,0.787109375,0.06396484375,0.6708984375,0.10888671875,0.66552734375,0.06494140625,0.7900390625,0.18994140625,0.6669921875,0.185546875,0.78759765625,0.18505859375,0.787109375,0.06396484375,0.7900390625,0.18994140625,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.78759765625,0.18505859375,0.6669921875,0.185546875,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.787109375,0.06396484375,0.78759765625,0.3623046875,0.78955078125,0.22314453125,0.791015625,0.36865234375,0.78955078125,0.22314453125,0.78759765625,0.3623046875,0.78955078125,0.22314453125,0.78955078125,0.22314453125,0.787109375,0.220703125,0.787109375,0.220703125,0.78955078125,0.22314453125,0.787109375,0.220703125,0.787109375,0.220703125,0.66650390625,0.19189453125,0.66650390625,0.19189453125,0.787109375,0.220703125,0.382568359375,0.24951171875,0.3818359375,0.36083984375,0.382568359375,0.24951171875,0.382568359375,0.24951171875,0.377197265625,0.21630859375,0.382568359375,0.24951171875,0.3818359375,0.36083984375,0.378662109375,0.248046875,0.382568359375,0.24951171875,0.378662109375,0.248046875,0.377197265625,
- 0.21630859375,0.37646484375,0.3623046875,0.378662109375,0.248046875,0.3818359375,0.36083984375,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.35009765625,0.34716796875,0.349365234375,0.21875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.349365234375,0.21875,0.369873046875,0.22216796875,0.377197265625,0.21630859375,0.429931640625,0.22021484375,0.429931640625,0.22021484375,0.37841796875,0.19189453125,0.429931640625,0.22021484375,0.377197265625,0.21630859375,0.429931640625,0.22021484375,0.429931640625,0.22021484375,0.37841796875,0.19189453125,0.564453125,0.19189453125,0.564453125,0.19189453125,0.66650390625,0.19189453125,0.382080078125,0.1865234375,0.37841796875,0.19189453125,0.564453125,0.19189453125,0.382080078125,0.1865234375,0.66650390625,0.19189453125,0.564453125,0.19189453125,0.37841796875,0.19189453125,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.37841796875,0.19189453125,0.376220703125,0.06201171875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.38037109375,0.0634765625,0.47216796875,0.06201171875,0.56201171875,0.0615234375,0.47216796875,0.06201171875,0.66650390625,0.19189453125,0.66650390625,0.185546875,0.56201171875,0.0615234375,0.66650390625,0.185546875,0.66650390625,0.185546875,0.66650390625,0.19189453125,0.66650390625,0.185546875,0.56201171875,0.0615234375,0.66455078125,0.06494140625,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.66650390625,0.185546875,0.66455078125,0.06494140625,0.6708984375,0.10888671875,0.787109375,0.06396484375,0.6708984375,0.10888671875,0.66455078125,0.06494140625,0.66650390625,0.185546875,0.78759765625,0.18505859375,0.787109375,0.06396484375,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.78759765625,0.18505859375,0.66650390625,0.185546875,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.787109375,0.06396484375,0.7890625,0.22265625,0.791015625,0.3671875,0.7890625,0.22265625,0.7890625,0.22265625,0.7890625,0.22265625,0.7890625,0.22265625,0.3818359375,0.36083984375,
- 0.3818359375,0.36083984375,0.378662109375,0.248046875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.3818359375,0.36083984375,0.37646484375,0.3623046875,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.38037109375,0.0634765625,0.376220703125,0.06201171875,0.38037109375,0.0634765625,0.38037109375,0.0634765625,0.564453125,0.19189453125,0.564453125,0.19189453125,0.564453125,0.19189453125,0.564453125,0.19189453125,0.564453125,0.19189453125,0.66650390625,0.185546875,0.66650390625,0.185546875,0.66650390625,0.185546875,0.66455078125,0.06494140625,0.78759765625,0.1923828125,0.66650390625,0.185546875,0.78759765625,0.1923828125,0.78759765625,0.1923828125,0.78759765625,0.1923828125,0.66650390625,0.185546875,0.66650390625,0.185546875,0.66455078125,0.06494140625,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.66650390625,0.185546875,0.66455078125,0.06494140625,0.787109375,0.06396484375,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.787109375,0.06396484375,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.560546875,0.3623046875,0.560546875,0.3623046875,0.560546875,0.3623046875,0.66552734375,0.36083984375,0.560546875,0.3623046875,0.66552734375,0.36083984375,0.560546875,0.3623046875,0.66552734375,0.36083984375,0.66455078125,0.36328125,0.66552734375,0.36083984375,0.66552734375,0.36083984375,0.66552734375,0.36083984375,0.791015625,0.3671875,0.791015625,0.1904296875,0.378662109375,0.248046875,0.376220703125,0.06201171875,0.38037109375,0.0634765625,0.3818359375,0.361328125,0.378662109375,0.248046875,0.3818359375,0.361328125,0.3818359375,0.361328125,0.3818359375,0.365234375,0.3818359375,0.361328125,0.378662109375,0.248046875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.37646484375,0.3623046875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.37841796875,0.36376953125,0.3818359375,0.361328125,
- 0.37646484375,0.3623046875,0.38037109375,0.0634765625,0.38037109375,0.0634765625,0.791015625,0.1904296875,0.66455078125,0.06494140625,0.787109375,0.0634765625,0.791015625,0.1904296875,0.7900390625,0.06103515625,0.66455078125,0.06494140625,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.787109375,0.0634765625,0.66455078125,0.06494140625,0.791015625,0.1904296875,0.78759765625,0.18505859375,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.791015625,0.1904296875,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.6708984375,0.10888671875,0.78759765625,0.18505859375,0.78759765625,0.3623046875,0.7890625,0.22265625,0.79052734375,0.36865234375,0.666015625,0.3603515625,0.7890625,0.22265625,0.78759765625,0.3623046875,0.7890625,0.22265625,0.666015625,0.3603515625,0.669921875,0.224609375,0.666015625,0.3603515625,0.564453125,0.22509765625,0.669921875,0.224609375,0.564453125,0.22509765625,0.666015625,0.3603515625,0.568359375,0.361328125,0.564453125,0.22509765625,0.568359375,0.361328125,0.56494140625,0.36669921875,0.78466796875,0.22021484375,0.7890625,0.22265625,0.669921875,0.224609375,0.568359375,0.21875,0.669921875,0.224609375,0.564453125,0.22509765625,0.669921875,0.224609375,0.568359375,0.21875,0.78466796875,0.22021484375,0.56591796875,0.18603515625,0.568359375,0.21875,0.564453125,0.22509765625,0.78466796875,0.22021484375,0.7900390625,0.1875,0.7890625,0.22265625,0.568359375,0.21875,0.56591796875,0.18603515625,0.568359375,0.19189453125,0.7900390625,0.1875,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.7900390625,0.1875,0.66845703125,0.0654296875,0.787109375,0.06396484375,0.568359375,0.19189453125,0.66650390625,0.19189453125,0.568359375,0.21875,0.56591796875,0.18603515625,0.66650390625,0.19189453125,0.568359375,0.19189453125,0.66650390625,0.19189453125,0.78466796875,0.22021484375,0.568359375,0.21875,0.78466796875,0.22021484375,0.78759765625,0.1923828125,0.7900390625,0.1875,0.66650390625,0.19189453125,0.78759765625,0.1923828125,0.78466796875,0.22021484375,0.66845703125,0.0654296875,
- 0.7900390625,0.1875,0.66552734375,0.18603515625,0.78759765625,0.1923828125,0.66552734375,0.18603515625,0.7900390625,0.1875,0.66552734375,0.18603515625,0.78759765625,0.1923828125,0.66650390625,0.19189453125,0.66650390625,0.19189453125,0.56591796875,0.18603515625,0.66552734375,0.18603515625,0.66552734375,0.18603515625,0.56640625,0.0634765625,0.66845703125,0.0654296875,0.56640625,0.0634765625,0.66552734375,0.18603515625,0.56591796875,0.18603515625,0.7890625,0.22314453125,0.79052734375,0.36865234375,0.7890625,0.22314453125,0.66748046875,0.22119140625,0.7890625,0.22314453125,0.671875,0.224609375,0.671875,0.224609375,0.66748046875,0.22119140625,0.7890625,0.22314453125,0.671875,0.224609375,0.787109375,0.220703125,0.787109375,0.220703125,0.7890625,0.22314453125,0.671875,0.224609375,0.66748046875,0.22119140625,0.67138671875,0.2197265625,0.67138671875,0.2197265625,0.787109375,0.220703125,0.671875,0.224609375,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.66748046875,0.22119140625,0.66748046875,0.22119140625,0.66943359375,0.1865234375,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.78759765625,0.1923828125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.67138671875,0.2197265625,0.6708984375,0.19189453125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.66943359375,0.1865234375,0.78759765625,0.1923828125,0.6708984375,0.19189453125,0.78759765625,0.1923828125,0.66943359375,0.1865234375,0.66943359375,0.1865234375,0.66943359375,0.1865234375,0.787109375,0.06396484375,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.378662109375,0.248046875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.37646484375,0.3623046875,0.37841796875,0.36376953125,0.3818359375,0.361328125,0.37646484375,0.3623046875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.378662109375,0.248046875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.37841796875,0.19189453125,0.3818359375,0.361328125,0.3818359375,0.365234375,0.3818359375,0.361328125,
- 0.3818359375,0.365234375,0.477294921875,0.36474609375,0.56005859375,0.36279296875,0.56005859375,0.36279296875,0.37841796875,0.19189453125,0.56005859375,0.36279296875,0.56005859375,0.36279296875,0.66845703125,0.36376953125,0.7880859375,0.36669921875,0.7880859375,0.36669921875,0.7890625,0.22314453125,0.66748046875,0.224609375,0.7890625,0.22314453125,0.66748046875,0.224609375,0.66748046875,0.224609375,0.787109375,0.220703125,0.66748046875,0.224609375,0.7890625,0.22314453125,0.787109375,0.220703125,0.66748046875,0.224609375,0.7900390625,0.1875,0.787109375,0.220703125,0.7890625,0.22314453125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.787109375,0.220703125,0.7900390625,0.1875,0.787109375,0.220703125,0.78759765625,0.1923828125,0.787109375,0.0634765625,0.7900390625,0.1875,0.7900390625,0.06103515625,0.37841796875,0.19189453125,0.787109375,0.0634765625,0.6708984375,0.10888671875,0.7900390625,0.1875,0.6708984375,0.10888671875,0.787109375,0.0634765625,0.7900390625,0.1875,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.78759765625,0.1923828125,0.7900390625,0.1875,0.78759765625,0.1923828125,0.47216796875,0.06201171875,0.38037109375,0.0634765625,0.47216796875,0.06201171875,0.382080078125,0.1865234375,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.37841796875,0.19189453125,0.376220703125,0.06201171875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.376220703125,0.06201171875,0.37841796875,0.19189453125,0.349609375,0.2197265625,0.378662109375,0.248046875,0.378662109375,0.248046875,0.349609375,0.2197265625,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.37646484375,0.3623046875,0.37841796875,0.36376953125,0.3818359375,0.361328125,0.37646484375,0.3623046875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.47314453125,0.369140625,0.3818359375,0.361328125,0.3818359375,0.365234375,0.3818359375,0.361328125,0.47314453125,0.369140625,0.378662109375,0.248046875,0.3818359375,0.361328125,
- 0.3818359375,0.361328125,0.378662109375,0.248046875,0.3779296875,0.19189453125,0.560546875,0.3623046875,0.477783203125,0.36474609375,0.560546875,0.3623046875,0.560546875,0.3623046875,0.477783203125,0.36474609375,0.6640625,0.36328125,0.560546875,0.3623046875,0.560546875,0.3623046875,0.6640625,0.36328125,0.560546875,0.3623046875,0.7880859375,0.36669921875,0.7919921875,0.365234375,0.7880859375,0.36669921875,0.78955078125,0.22314453125,0.7919921875,0.365234375,0.78955078125,0.22314453125,0.78955078125,0.22314453125,0.78955078125,0.22314453125,0.787109375,0.220703125,0.79052734375,0.1875,0.787109375,0.220703125,0.78955078125,0.22314453125,0.787109375,0.220703125,0.787109375,0.220703125,0.79052734375,0.1875,0.787109375,0.0634765625,0.79052734375,0.1875,0.7900390625,0.06103515625,0.3779296875,0.19189453125,0.787109375,0.0634765625,0.6708984375,0.10888671875,0.79052734375,0.1875,0.6708984375,0.10888671875,0.787109375,0.0634765625,0.79052734375,0.1875,0.79052734375,0.1875,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.47216796875,0.06201171875,0.38037109375,0.0634765625,0.47216796875,0.06201171875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.3779296875,0.19189453125,0.376220703125,0.06201171875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.376220703125,0.06201171875,0.3779296875,0.19189453125,0.378662109375,0.248046875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.3818359375,0.36083984375,0.382568359375,0.24951171875,0.3818359375,0.36083984375,0.378662109375,0.248046875,0.382568359375,0.24951171875,0.378662109375,0.248046875,0.382568359375,0.24951171875,0.3818359375,0.36083984375,0.382568359375,0.24951171875,0.382568359375,0.24951171875,0.5615234375,0.3623046875,0.66650390625,0.36083984375,0.5615234375,0.3623046875,0.37890625,0.19189453125,0.66650390625,0.36083984375,0.66650390625,0.36083984375,0.79052734375,0.1904296875,0.66552734375,0.19189453125,0.79052734375,0.1904296875,0.66552734375,0.19189453125,
- 0.564453125,0.19189453125,0.66552734375,0.19189453125,0.79052734375,0.1904296875,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.564453125,0.19189453125,0.37890625,0.19189453125,0.787109375,0.06396484375,0.79052734375,0.1904296875,0.78759765625,0.18505859375,0.382080078125,0.1865234375,0.37890625,0.19189453125,0.37890625,0.19189453125,0.382080078125,0.1865234375,0.382080078125,0.1865234375,0.78759765625,0.18505859375,0.6708984375,0.10888671875,0.787109375,0.06396484375,0.787109375,0.06396484375,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.78759765625,0.18505859375,0.66650390625,0.185546875,0.66650390625,0.185546875,0.6708984375,0.10888671875,0.79052734375,0.1904296875,0.66650390625,0.185546875,0.78759765625,0.18505859375,0.66650390625,0.185546875,0.79052734375,0.1904296875,0.66552734375,0.19189453125,0.66650390625,0.185546875,0.5595703125,0.0615234375,0.66552734375,0.19189453125,0.66650390625,0.185546875,0.5595703125,0.0615234375,0.66650390625,0.185546875,0.66552734375,0.19189453125,0.564453125,0.19189453125,0.564453125,0.19189453125,0.382080078125,0.1865234375,0.382080078125,0.1865234375,0.5595703125,0.0615234375,0.78955078125,0.18798828125,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.78955078125,0.18798828125,0.787109375,0.06396484375,0.66943359375,0.1865234375,0.78955078125,0.18798828125,0.66943359375,0.1865234375,0.78759765625,0.1923828125,0.66943359375,0.1865234375,0.78955078125,0.18798828125,0.66943359375,0.1865234375,0.78759765625,0.1923828125,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.66943359375,0.1865234375,0.6708984375,0.19189453125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.78955078125,0.18798828125,0.78955078125,0.18798828125,0.7890625,0.22314453125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.67138671875,0.2197265625,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.78759765625,0.1923828125,0.787109375,0.220703125,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.66748046875,0.22119140625,0.67138671875,0.2197265625,0.787109375,0.220703125,
- 0.671875,0.224609375,0.671875,0.224609375,0.66748046875,0.22119140625,0.67138671875,0.2197265625,0.7890625,0.22314453125,0.671875,0.224609375,0.787109375,0.220703125,0.671875,0.224609375,0.66748046875,0.22119140625,0.7890625,0.22314453125,0.671875,0.224609375,0.66748046875,0.22119140625,0.7890625,0.22314453125,0.349609375,0.21875,0.378662109375,0.248046875,0.378662109375,0.248046875,0.349609375,0.21875,0.35009765625,0.34716796875,0.378662109375,0.248046875,0.35009765625,0.34716796875,0.37646484375,0.3623046875,0.37841796875,0.36376953125,0.3818359375,0.361328125,0.37646484375,0.3623046875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.37646484375,0.3623046875,0.3818359375,0.365234375,0.3818359375,0.361328125,0.3818359375,0.361328125,0.378662109375,0.248046875,0.3818359375,0.361328125,0.382568359375,0.24951171875,0.382568359375,0.24951171875,0.3818359375,0.361328125,0.378662109375,0.248046875,0.382568359375,0.24951171875,0.382568359375,0.24951171875,0.382568359375,0.24951171875,0.37890625,0.19189453125,0.55712890625,0.224609375,0.55712890625,0.224609375,0.37890625,0.19189453125,0.382080078125,0.1865234375,0.37890625,0.19189453125,0.382080078125,0.1865234375,0.376220703125,0.06201171875,0.37890625,0.19189453125,0.376220703125,0.06201171875,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.382080078125,0.1865234375,0.38037109375,0.0634765625,0.47216796875,0.06201171875,0.5576171875,0.06103515625,0.47216796875,0.06201171875,0.66796875,0.185546875,0.5576171875,0.06103515625,0.66796875,0.185546875,0.5576171875,0.06103515625,0.66796875,0.185546875,0.66552734375,0.06494140625,0.787109375,0.220703125,0.66552734375,0.06494140625,0.66796875,0.185546875,0.6708984375,0.10888671875,0.6708984375,0.10888671875,0.787109375,0.0634765625,0.66552734375,0.06494140625,0.78759765625,0.1923828125,0.66796875,0.185546875,0.787109375,0.220703125,0.78759765625,0.1923828125,0.7900390625,0.1875,0.6708984375,0.10888671875,0.66796875,0.185546875,0.66796875,0.185546875,0.78759765625,
- 0.1923828125,0.7900390625,0.1875,0.787109375,0.0634765625,0.6708984375,0.10888671875,0.7900390625,0.1875,0.78759765625,0.1923828125,0.787109375,0.220703125,0.7900390625,0.1875,0.787109375,0.0634765625,0.7900390625,0.1875,0.7900390625,0.06103515625,0.7900390625,0.1875,0.787109375,0.220703125,0.7890625,0.22314453125,0.787109375,0.220703125,0.7890625,0.22314453125,0.787109375,0.220703125,0.55712890625,0.224609375,0.7890625,0.22314453125,0.66650390625,0.3603515625,0.55712890625,0.224609375,0.66650390625,0.3603515625,0.7890625,0.22314453125,0.66650390625,0.3603515625,0.791015625,0.36474609375,0.791015625,0.36474609375,0.66650390625,0.3603515625,0.7880859375,0.36669921875,0.66796875,0.36376953125,0.7880859375,0.36669921875,0.66650390625,0.3603515625,0.66650390625,0.3603515625,0.55712890625,0.224609375,0.56005859375,0.36279296875,0.55712890625,0.224609375,0.56005859375,0.36279296875,0.66650390625,0.3603515625,0.56005859375,0.36279296875,0.56005859375,0.36279296875,0.477783203125,0.36474609375,0.56005859375,0.36279296875,0.56005859375,0.36279296875,0.477783203125,0.36474609375,0.7900390625,0.1875,0.787109375,0.06396484375,0.7900390625,0.06103515625,0.7900390625,0.1875,0.669921875,0.0654296875,0.787109375,0.06396484375,0.669921875,0.0654296875,0.7900390625,0.1875,0.66796875,0.18603515625,0.66796875,0.18603515625,0.56591796875,0.06298828125,0.669921875,0.0654296875,0.56591796875,0.06298828125,0.66796875,0.18603515625,0.56591796875,0.18603515625,0.78759765625,0.1923828125,0.66796875,0.18603515625,0.7900390625,0.1875,0.787109375,0.220703125,0.78759765625,0.1923828125,0.7900390625,0.1875,0.66796875,0.18603515625,0.78759765625,0.1923828125,0.66650390625,0.19189453125,0.787109375,0.220703125,0.66650390625,0.19189453125,0.78759765625,0.1923828125,0.66650390625,0.19189453125,0.56591796875,0.18603515625,0.66796875,0.18603515625,0.787109375,0.220703125,0.7900390625,0.1875,0.56591796875,0.18603515625,0.66650390625,0.19189453125,0.568359375,0.19189453125,0.66650390625,0.19189453125,0.787109375,0.220703125,0.568359375,0.19189453125,0.66650390625,
- 0.19189453125,0.787109375,0.220703125,0.568359375,0.21875,0.56591796875,0.18603515625,0.568359375,0.19189453125,0.568359375,0.19189453125,0.568359375,0.21875,0.56591796875,0.18603515625,0.568359375,0.21875,0.568359375,0.21875,0.78759765625,0.3623046875,0.79052734375,0.36865234375,0.66552734375,0.36083984375,0.78759765625,0.3623046875,0.66552734375,0.36083984375,0.66552734375,0.36083984375,0.568359375,0.361328125,0.568359375,0.361328125,0.5654296875,0.36669921875,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.7900390625,0.1904296875,0.787109375,0.0634765625,0.78759765625,0.18505859375,0.7900390625,0.1904296875,0.78759765625,0.18505859375,0.787109375,0.0634765625,0.7900390625,0.1904296875,0.7900390625,0.06103515625,0.7900390625,0.1904296875,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.7900390625,0.1904296875,0.6708984375,0.19189453125,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.67138671875,0.2197265625,0.67138671875,0.2197265625,0.787109375,0.220703125,0.7900390625,0.1904296875,0.7900390625,0.1904296875,0.787109375,0.220703125,0.7890625,0.22314453125,0.671875,0.224609375,0.787109375,0.220703125,0.67138671875,0.2197265625,0.671875,0.224609375,0.7890625,0.22314453125,0.787109375,0.220703125,0.66748046875,0.22119140625,0.671875,0.224609375,0.67138671875,0.2197265625,0.7890625,0.22314453125,0.671875,0.224609375,0.66748046875,0.22119140625,0.671875,0.224609375,0.7890625,0.22314453125,0.66748046875,0.22119140625,0.67333984375,0.0654296875,0.78955078125,0.18798828125,0.66650390625,0.060546875,0.66943359375,0.1865234375,0.67333984375,0.0654296875,0.78955078125,0.18798828125,0.67333984375,0.0654296875,0.66943359375,0.1865234375,0.66943359375,0.1865234375,0.78759765625,0.1923828125,0.78955078125,0.18798828125,0.78759765625,0.1923828125,0.66943359375,0.1865234375,0.6708984375,0.19189453125,0.66943359375,0.1865234375,0.66748046875,0.22119140625,0.6708984375,0.19189453125,0.787109375,0.220703125,0.78955078125,0.18798828125,
- 0.78759765625,0.1923828125,0.78955078125,0.18798828125,0.787109375,0.220703125,0.7890625,0.22314453125,0.67138671875,0.2197265625,0.78759765625,0.1923828125,0.6708984375,0.19189453125,0.78759765625,0.1923828125,0.67138671875,0.2197265625,0.787109375,0.220703125,0.67138671875,0.2197265625,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.787109375,0.220703125,0.67138671875,0.2197265625,0.671875,0.224609375,0.66748046875,0.22119140625,0.671875,0.224609375,0.67138671875,0.2197265625,0.671875,0.224609375,0.7890625,0.22314453125,0.787109375,0.220703125,0.671875,0.224609375,0.66748046875,0.22119140625,0.7890625,0.22314453125,0.671875,0.224609375,0.66748046875,0.22119140625,0.66748046875,0.365234375,0.7890625,0.22314453125,0.78759765625,0.36279296875,0.7890625,0.22314453125,0.78759765625,0.36279296875,0.78759765625,0.36279296875,0.78955078125,0.18798828125,0.67333984375,0.0654296875,0.67333984375,0.0654296875,0.66943359375,0.1865234375,0.66650390625,0.060546875,0.67333984375,0.0654296875,0.78955078125,0.18798828125,0.66943359375,0.1865234375,0.78759765625,0.1923828125,0.66943359375,0.1865234375,0.78955078125,0.18798828125,0.66943359375,0.1865234375,0.78759765625,0.1923828125,0.6708984375,0.19189453125,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.66943359375,0.1865234375,0.787109375,0.220703125,0.78759765625,0.1923828125,0.78955078125,0.18798828125,0.78955078125,0.18798828125,0.7890625,0.22314453125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.67138671875,0.2197265625,0.6708984375,0.19189453125,0.787109375,0.220703125,0.67138671875,0.2197265625,0.78759765625,0.1923828125,0.66748046875,0.22119140625,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.787109375,0.220703125,0.671875,0.224609375,0.67138671875,0.2197265625,0.671875,0.224609375,0.66748046875,0.22119140625,0.67138671875,0.2197265625,0.7890625,0.22314453125,0.671875,0.224609375,0.787109375,0.220703125,0.66748046875,0.22119140625,0.671875,0.224609375,0.671875,0.3623046875,0.7890625,0.22314453125,0.671875,0.3623046875,0.671875,0.224609375,
- 0.66748046875,0.365234375,0.66748046875,0.22119140625,0.671875,0.3623046875,0.671875,0.3623046875,0.7890625,0.22314453125,0.66943359375,0.0654296875,0.78955078125,0.18798828125,0.79052734375,0.06298828125,0.6669921875,0.060546875,0.6689453125,0.18701171875,0.66943359375,0.0654296875,0.78955078125,0.18798828125,0.66943359375,0.0654296875,0.6689453125,0.18701171875,0.6689453125,0.18701171875,0.78759765625,0.1923828125,0.78955078125,0.18798828125,0.78759765625,0.1923828125,0.6689453125,0.18701171875,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.6708984375,0.19189453125,0.6689453125,0.18701171875,0.78759765625,0.1923828125,0.787109375,0.220703125,0.78955078125,0.18798828125,0.78955078125,0.18798828125,0.787109375,0.220703125,0.78759765625,0.1923828125,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.67138671875,0.2197265625,0.787109375,0.220703125,0.78759765625,0.1923828125,0.67138671875,0.2197265625,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.787109375,0.220703125,0.671875,0.224609375,0.671875,0.224609375,0.787109375,0.220703125,0.67138671875,0.2197265625,0.66748046875,0.22119140625,0.671875,0.224609375,0.67138671875,0.2197265625,0.671875,0.224609375,0.671875,0.224609375,0.671875,0.224609375,0.66748046875,0.22119140625,0.66748046875,0.22119140625,0.6669921875,0.36474609375,0.78955078125,0.18798828125,0.66943359375,0.0654296875,0.79052734375,0.0634765625,0.6689453125,0.18701171875,0.6669921875,0.060546875,0.66943359375,0.0654296875,0.66943359375,0.0654296875,0.78955078125,0.18798828125,0.6689453125,0.18701171875,0.78759765625,0.1923828125,0.6689453125,0.18701171875,0.78955078125,0.18798828125,0.6689453125,0.18701171875,0.78759765625,0.1923828125,0.6708984375,0.19189453125,0.6708984375,0.19189453125,0.66748046875,0.22119140625,0.6689453125,0.18701171875,0.787109375,0.220703125,0.78759765625,0.1923828125,0.78955078125,0.18798828125,0.787109375,0.220703125,0.78955078125,0.18798828125,0.7890625,0.22314453125,0.6708984375,0.19189453125,0.78759765625,0.1923828125,0.67138671875,0.2197265625,0.67138671875,
- 0.2197265625,0.78759765625,0.1923828125,0.787109375,0.220703125,0.6708984375,0.19189453125,0.67138671875,0.2197265625,0.66748046875,0.22119140625,0.67138671875,0.2197265625,0.787109375,0.220703125,0.671875,0.224609375,0.671875,0.224609375,0.66748046875,0.22119140625,0.67138671875,0.2197265625,0.671875,0.224609375,0.787109375,0.220703125,0.7890625,0.22314453125,0.671875,0.224609375,0.66748046875,0.22119140625,0.7890625,0.22314453125,0.671875,0.224609375,0.66748046875,0.22119140625,0.6669921875,0.36474609375,0.7890625,0.22314453125,1.11051857471466,0.551352620124817,1.11051893234253,0.331559985876083,1.21203172206879,0.331560134887695,1.21203148365021,0.551352858543396,0.88900625705719,0.55648148059845,0.889006733894348,0.331559538841248,0.445961773395538,0.551351130008698,0.445962250232697,0.331558495759964,0.552824020385742,0.33155882358551,0.552823543548584,0.544939756393433,0.2244593501091,0.551350593566895,0.224459826946259,0.331558078527451,2.7090277671814,0.551353871822357,2.7090277671814,0.331561267375946,2.83896160125732,0.331561267375946,2.83896112442017,1.54622459411621,2.43250370025635,0.551353871822357,2.43250370025635,0.331561207771301,1.87940645217896,0.556483209133148,1.87940645217896,0.331561207771301,2.01200771331787,0.331586927175522,2.00361347198486,1.55132818222046,1.60286998748779,0.551353871822357,1.60286998748779,0.331561207771301,1.332315325737,0.000191645696759224,1.33231461048126,0.334624201059341,1.2120326757431,0.000191375613212585,0.889007449150085,0.000190766528248787,1.11051976680756,0.000191265717148781,0.782789349555969,0.331559300422668,0.782790064811707,0.000190528109669685,0.663551568984985,0.000190259888768196,0.663550853729248,0.324411541223526,0.552824735641479,0.000190010294318199,0.224460542201996,0.000189151614904404,0.445962965488434,0.000189770013093948,2.95042991638184e-005,0.000188706442713737,0.120380580425262,0.000188916921615601,0.120379865169525,0.331557840108871,2.85506248474121e-005,0.338360905647278,3.24069690704346,0.330814629793167,3.11978387832642,0.38800972700119,
- 2.99890422821045,0.330451726913452,2.99811887741089,0.00927308201789856,3.24147272109985,0.00890752673149109,0.224459111690521,0.629874706268311,0.120379269123077,0.62474524974823,0.120379388332367,0.546221137046814,0.445961534976959,0.629875242710114,-0.434166073799133,-0.160541594028473,-0.434165954589844,-0.369750618934631,-0.323439061641693,-0.369750618934631,-0.323439121246338,-0.160541594028473,0.8890061378479,0.635005295276642,0.789513945579529,0.629876017570496,0.789514064788818,0.55135190486908,1.11051833629608,0.629876673221588,-0.443721771240234,-0.107554316520691,-0.323439061641693,-0.107554316520691,-0.323439061641693,0.10165473818779,-0.443721771240234,0.101654678583145,-0.553404331207275,-0.160541534423828,-0.553404331207275,-0.369750678539276,2.03792142868042,1.3315589427948,2.29909706115723,0.331561088562012,2.29909610748291,0.544942259788513,2.16850709915161,1.62346506118774,2.03791904449463,1.54493999481201,-0.42804354429245,-0.420993030071259,-0.42804354429245,-0.541344165802002,-0.323439002037048,-0.543089151382446,-0.323439002037048,-0.422738015651703,1.21496319770813,1.33156204223633,1.47614097595215,0.331561207771301,1.47614145278931,0.551353871822357,1.3455536365509,1.629878282547,1.21496415138245,1.55135464668274,1.21203124523163,0.629876911640167,0.552823305130005,0.623463928699493,2.2646689414978,1.55770075321198,2.13114356994629,1.63298892974854,2.27306079864502,1.33801102638245,3.10013723373413,1.54622578620911,2.96954870223999,1.62474942207336,2.96954917907715,1.39243137836456,3.10013914108276,1.33156251907349,1.77505600452423,0.551354169845581,1.77505624294281,0.331561386585236,1.88191783428192,0.337377905845642,1.88191735744476,0.551354467868805,1.5535432100296,0.550838768482208,1.55354368686676,0.3315609395504,1.04979658126831,0.550838947296143,1.04979658126831,0.331561207771301,1.17973017692566,0.331561237573624,1.17973041534424,1.54699206352234,0.773260354995728,0.551353871822357,0.773260354995728,0.331561207771301,1.88783395290375,0.000192837789654732,1.99994707107544,0.000193215906620026,
- 1.99994611740112,0.334963411092758,1.88191878795624,0.000192824751138687,1.55354464054108,0.000192144885659218,1.77505719661713,0.000192584469914436,1.44946491718292,0.000191910192370415,1.44946396350861,0.331560701131821,1.5535432100296,0.629362940788269,1.44946348667145,0.625515580177307,1.44946372509003,0.546991586685181,1.77505576610565,0.629878282546997,-0.789704561233521,-0.674832582473755,-0.685099899768829,-0.673482120037079,-0.685099899768829,-0.555454015731812,-0.789704561233521,-0.556804537773132,0.378677368164063,1.33737790584564,0.509264945983887,1.4034149646759,0.639854431152344,0.337377309799194,0.639854431152344,0.551353991031647,0.509266376495361,1.62987804412842,0.378677845001221,1.55135440826416,-0.560871362686157,0.101654678583145,-0.560871362686157,-0.107554495334625,1.88191735744476,0.629878401756287,1.4409077167511,1.54699182510376,1.31031966209412,1.6255156993866,1.44090723991394,1.33156085014343,1.60286998748779,0.629878103733063,1.47614121437073,0.629878103733063,1.87940645217896,0.635007262229919,2.00361251831055,0.629878103733063,2.43250370025635,0.629878103733063,2.29909706115723,0.623466193675995,2.7090277671814,0.629878103733063,2.83896160125732,0.624748587608337,0.773260354995728,0.629878103733063,0.639854431152344,0.629878103733063,1.04979658126831,0.629363000392914,1.17973017692566,0.625516176223755,2.83896160125732,0.000192493200302124,3.00000023841858,-0.000232726335525513,3.00000023841858,0.337088942527771,2.7090277671814,0.000192493200302124,2.29909706115723,0.000192403793334961,2.43250370025635,0.000192403793334961,2.16086578369141,0.000192403793334961,2.16086578369141,0.324413895606995,1.47614121437073,0.000192403793334961,1.60286998748779,0.000192403793334961,1.3259801864624,0.000192433595657349,1.3259801864624,0.334624916315079,0.639854431152344,0.000192433595657349,0.773260354995728,0.000192373991012573,0.632469654083252,0.000192433595657349,0.492508172988892,0.336663663387299,0.492508172988892,0.000192493200302124,1.17973017692566,0.000192373991012573,1.04979658126831,0.000192433595657349,
- 2.01210594177246,0.000192403793334961,1.87940645217896,0.000192403793334961,1.6039742231369,0.708725214004517,1.724325299263,0.708725214004517,1.724325299263,0.91793429851532,1.60397446155548,0.91793429851532,1.49989426136017,0.708725214004517,1.49989438056946,0.91793429851532,1.27839195728302,0.708725214004517,1.27839195728302,0.917934238910675,1.17153024673462,0.708725214004517,1.17153024673462,0.917934238910675,1.06080341339111,0.708725214004517,1.06080341339111,0.917934358119965,0.941564917564392,0.708725214004517,0.941642999649048,0.91793429851532,0.835347414016724,0.91793429851532,0.835347414016724,0.708725214004517,0.613835096359253,0.708725214004517,0.613835096359253,0.91793429851532,0.512322425842285,0.708725214004517,0.512322425842285,0.91793429851532,0.392039746046066,0.708725214004517,0.392039746046066,0.91793429851532,0.274890005588531,0.91793429851532,0.274890005588531,0.708725214004517,-0.163478851318359,0.91793429851532,-0.275591790676117,0.91793429851532,-0.275591790676117,0.708725214004517,-0.163478851318359,0.708725214004517,-0.157563745975494,0.91793429851532,-0.157563745975494,0.708725214004517,-0.0507021546363831,0.91793429851532,-0.0507021546363831,0.708725214004517,0.1708103120327,0.91793429851532,0.1708103120327,0.708725214004517,-0.580495357513428,-0.674832582473755,-0.580495357513428,-0.556804537773132,-0.532648086547852,-0.543089151382446,-0.532648086547852,-0.422738015651703,3.25038433074951,0.337513953447342,3.11979722976685,0.398999929428101,3.25038385391235,-0.000658243894577026,1.11051857471466,0.551352620124817,1.11051893234253,0.331559985876083,1.21203172206879,0.331560134887695,1.21203148365021,0.551352858543396,0.88900625705719,0.55648148059845,0.889006733894348,0.331559538841248,0.445961773395538,0.551351130008698,0.445962250232697,0.331558495759964,0.552824020385742,0.33155882358551,0.552823543548584,0.544939756393433,0.2244593501091,0.551350593566895,0.224459826946259,0.331558078527451,0.212327718734741,0.551353752613068,0.212327733635902,0.331561177968979,0.342262029647827,
- 0.331561207771301,0.342261075973511,1.54622447490692,-0.0641964673995972,0.551353693008423,-0.0641964673995972,0.331561028957367,-0.61729371547699,0.556482911109924,-0.6172935962677,0.331560909748077,-0.484692692756653,0.33158665895462,-0.493086576461792,1.55132782459259,-0.893830299377441,0.551353514194489,-0.893830060958862,0.33156082034111,1.332315325737,0.000191645696759224,1.33231461048126,0.334624201059341,1.2120326757431,0.000191375613212585,0.889007449150085,0.000190766528248787,1.11051976680756,0.000191265717148781,0.782789349555969,0.331559300422668,0.782790064811707,0.000190528109669685,0.663551568984985,0.000190259888768196,0.663550853729248,0.324411541223526,0.552824735641479,0.000190010294318199,0.224460542201996,0.000189151614904404,0.445962965488434,0.000189770013093948,2.95042991638184e-005,0.000188706442713737,0.120380580425262,0.000188916921615601,0.120379865169525,0.331557840108871,2.85506248474121e-005,0.338360905647278,0.224459111690521,0.629874706268311,0.120379269123077,0.62474524974823,0.120379388332367,0.546221137046814,0.445961534976959,0.629875242710114,-0.434166073799133,-0.160541594028473,-0.434165954589844,-0.369750618934631,-0.323439061641693,-0.369750618934631,-0.323439121246338,-0.160541594028473,0.8890061378479,0.635005295276642,0.789513945579529,0.629876017570496,0.789514064788818,0.55135190486908,1.11051833629608,0.629876673221588,-0.443721771240234,-0.107554316520691,-0.323439061641693,-0.107554316520691,-0.323439061641693,0.10165473818779,-0.443721771240234,0.101654678583145,-0.553404331207275,-0.160541534423828,-0.553404331207275,-0.369750678539276,-0.458778142929077,1.33155870437622,-0.197602033615112,0.331560879945755,-0.197603225708008,0.544942080974579,-0.328193306922913,1.62346482276917,-0.458780527114868,1.54493963718414,-0.42804354429245,-0.420993030071259,-0.42804354429245,-0.541344165802002,-0.323439002037048,-0.543089151382446,-0.323439002037048,-0.422738015651703,-1.28173661231995,1.33156156539917,-1.02055871486664,0.331560790538788,-1.02055823802948,0.551353454589844,
- -1.15114617347717,1.62987792491913,-1.28173589706421,1.55135416984558,1.21203124523163,0.629876911640167,0.552823305130005,0.623463928699493,-0.232031106948853,1.5577005147934,-0.365556240081787,1.63298869132996,-0.223639488220215,1.33801078796387,0.603437423706055,1.54622578620911,0.472848653793335,1.62474942207336,0.472849607467651,1.39243125915527,0.603439092636108,1.33156251907349,1.77505600452423,0.551354169845581,1.77505624294281,0.331561386585236,1.88191783428192,0.337377905845642,1.88191735744476,0.551354467868805,1.5535432100296,0.550838768482208,1.55354368686676,0.3315609395504,-1.44690310955048,0.55083841085434,-1.44690310955048,0.331560671329498,-1.316969871521,0.331560760736465,-1.316969871521,1.54699158668518,-1.72343957424164,0.551353275775909,-1.72343933582306,0.331560611724854,1.88783395290375,0.000192837789654732,1.99994707107544,0.000193215906620026,1.99994611740112,0.334963411092758,1.88191878795624,0.000192824751138687,1.55354464054108,0.000192144885659218,1.77505719661713,0.000192584469914436,1.44946491718292,0.000191910192370415,1.44946396350861,0.331560701131821,1.5535432100296,0.629362940788269,1.44946348667145,0.625515580177307,1.44946372509003,0.546991586685181,1.77505576610565,0.629878282546997,-0.789704561233521,-0.674832582473755,-0.685099899768829,-0.673482120037079,-0.685099899768829,-0.555454015731812,-0.789704561233521,-0.556804537773132,-2.11802220344543,1.3373771905899,-1.98743510246277,1.40341424942017,-1.8568457365036,0.337376683950424,-1.85684597492218,0.551353394985199,-1.98743414878845,1.62987732887268,-2.11802196502686,1.55135369300842,-0.560871362686157,0.101654678583145,-0.560871362686157,-0.107554495334625,1.88191735744476,0.629878401756287,-1.05579257011414,1.5469913482666,-1.18638014793396,1.62551522254944,-1.05579280853271,1.33156037330627,-2.25832438468933,0.331035405397415,-2.25884342193604,0.00815555453300476,-2.01071715354919,0.00775048136711121,-2.0112316608429,0.331443428993225,-2.13478636741638,0.392861813306808,-0.893830299377441,0.629877746105194,-1.02055871486664,
- 0.629877686500549,-0.61729371547699,0.635006964206696,-0.493087530136108,0.629877805709839,-0.0641964673995972,0.629877924919128,-0.19760262966156,0.623466014862061,0.21232795715332,0.629877984523773,0.342261552810669,0.624748528003693,-1.72343957424164,0.629877507686615,-1.85684597492218,0.629877507686615,-1.44690310955048,0.629362463951111,-1.31697010993958,0.625515699386597,0.342261552810669,0.000192433595657349,0.21232795715332,0.000192403793334961,-0.197602391242981,0.000192195177078247,-0.0641962289810181,0.000192224979400635,-0.33583390712738,0.000192165374755859,-0.335834145545959,0.324413657188416,-1.02055871486664,0.000191986560821533,-0.893830060958862,0.000192016363143921,-1.17071974277496,0.000191986560821533,-1.17071974277496,0.334624469280243,-1.8568457365036,0.000191807746887207,-1.72343933582306,0.000191777944564819,-1.86423015594482,0.000191807746887207,-2.00026798248291,0.336237788200378,-2.00026798248291,0.000617057085037231,-1.316969871521,0.00019189715385437,-1.44690310955048,0.000191926956176758,-0.484593987464905,0.000192135572433472,-0.617293477058411,0.000192105770111084,1.6039742231369,0.708725214004517,1.724325299263,0.708725214004517,1.724325299263,0.91793429851532,1.60397446155548,0.91793429851532,1.49989426136017,0.708725214004517,1.49989438056946,0.91793429851532,1.27839195728302,0.708725214004517,1.27839195728302,0.917934238910675,1.17153024673462,0.708725214004517,1.17153024673462,0.917934238910675,1.06080341339111,0.708725214004517,1.06080341339111,0.917934358119965,0.941564917564392,0.708725214004517,0.941642999649048,0.91793429851532,0.835347414016724,0.91793429851532,0.835347414016724,0.708725214004517,0.613835096359253,0.708725214004517,0.613835096359253,0.91793429851532,0.512322425842285,0.708725214004517,0.512322425842285,0.91793429851532,0.392039746046066,0.708725214004517,0.392039746046066,0.91793429851532,0.274890005588531,0.91793429851532,0.274890005588531,0.708725214004517,-0.163478851318359,0.91793429851532,-0.275591790676117,0.91793429851532,-0.275591790676117,0.708725214004517,
- -0.163478851318359,0.708725214004517,-0.157563745975494,0.91793429851532,-0.157563745975494,0.708725214004517,-0.0507021546363831,0.91793429851532,-0.0507021546363831,0.708725214004517,0.1708103120327,0.91793429851532,0.1708103120327,0.708725214004517,-0.580495357513428,-0.674832582473755,-0.580495357513428,-0.556804537773132,-0.532648086547852,-0.543089151382446,-0.532648086547852,-0.422738015651703,-2.26536893844604,0.335812211036682,-2.26536893844604,0.00104200839996338,-2.13477897644043,0.401847064495087,-1.316969871521,0.546991527080536,-1.85684597492218,1.55135345458984,-1.8568457365036,1.33737671375275,-1.316969871521,1.33156073093414,0.342261075973511,0.546224474906921,-0.493086576461792,0.55132782459259,-0.197603225708008,1.54494214057922,-0.197602033615112,1.33156085014343,-1.02055823802948,1.55135345458984,-1.02055871486664,1.33156085014343,0.342262029647827,1.3315612077713,-0.484692692756653,1.33158659934998,1.17973041534424,0.546992003917694,0.639854431152344,1.551353931427,0.639854431152344,1.33737730979919,1.17973017692566,1.3315612077713,2.83896112442017,0.546224534511566,2.00361347198486,0.551328122615814,2.29909610748291,1.54494225978851,2.29909706115723,1.33156108856201,1.47614145278931,1.551353931427,1.47614097595215,1.3315612077713,2.83896160125732,1.33156132698059,2.01200771331787,1.33158695697784
- }
- UVIndex: *7160 {
- a: 0,1,2,1,0,3,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,4,5,6,7,6,5,6,7,8,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,9,10,11,10,12,11,12,13,11,11,13,14,14,13,15,15,13,16,16,13,17,13,12,17,17,18,16,10,19,12,19,10,20,21,17,12,19,21,12,18,17,22,21,23,17,17,23,22,24,21,19,24,23,21,22,25,18,24,19,26,22,27,25,27,22,23,28,18,25,27,28,25,18,28,29,23,24,30,30,24,26,23,31,27,31,23,30,32,28,27,31,32,27,29,28,33,33,34,29,35,28,32,28,35,33,34,33,36,36,37,34,36,38,37,38,36,39,33,39,36,39,33,35,32,40,35,40,39,35,41,32,31,40,32,41,42,41,31,39,40,43,43,44,39,44,43,45,43,46,45,43,47,46,47,43,48,40,48,43,49,47,48,50,40,41,50,41,42,49,48,51,51,52,49,48,40,53,48,53,51,40,50,53,52,51,54,51,53,54,54,55,52,56,55,54,53,56,54,57,55,56,58,57,56,59,58,56,56,53,59,58,59,60,59,53,61,59,61,60,50,61,53,61,62,60,50,63,61,62,61,63,63,50,42,63,64,62,64,65,62,66,63,42,63,66,64,65,64,67,66,67,64,68,65,67,66,42,69,42,31,69,30,69,31,67,70,68,70,71,68,71,70,72,72,70,73,67,73,70,72,73,74,73,67,75,73,75,74,75,67,66,75,66,69,74,75,76,76,77,74,78,76,75,77,76,78,75,69,79,79,78,75,77,78,80,80,78,79,77,80,81,80,82,81,83,79,69,79,83,80,83,69,30,83,30,26,84,82,80,84,80,83,84,83,26,84,85,82,19,84,26,85,84,20,19,20,84,718,719,720,86,721,722,723,86,724,725,726,87,88,86,727,728,86,88,88,729,730,731,88,732,733,89,87,87,89,734,735,736,87,89,737,90,738,89,90,739,88,90,740,741,742,743,744,90,91,745,746,747,91,92,90,93,748,91,749,93,91,94,92,94,750,92,95,91,93,94,91,95,96,93,90,90,88,96,95,93,97,93,96,97,98,94,95,96,88,751,88,752,753,95,99,98,95,97,99,754,755,756,757,96,758,759,760,761,762,763,764,96,765,100,766,767,768,769,101,100,101,770,771,100,102,96,101,102,100,97,96,102,101,772,103,103,773,774,102,101,104,103,104,101,105,97,102,99,97,105,104,106,102,105,102,106,104,103,107,107,108,104,106,104,108,109,107,103,109,108,107,775,103,776,777,778,779,780,781,782,783,784,785,786,787,788,103,789,110,110,790,791,109,103,110,110,792,793,794,109,110,109,795,111,
- 111,112,109,108,109,112,112,111,796,113,112,797,108,112,113,113,114,108,106,108,114,114,113,115,115,113,116,116,117,115,118,115,117,114,115,118,117,119,118,118,120,114,120,118,119,114,121,106,121,114,120,106,121,105,119,122,120,121,120,122,122,119,123,123,119,798,122,799,121,800,801,123,802,803,804,805,806,807,123,808,122,809,123,810,811,812,813,814,122,815,816,817,818,819,820,821,822,823,824,121,825,124,124,105,121,826,827,828,829,124,830,831,832,833,834,124,835,836,837,838,839,840,841,124,842,125,125,843,844,126,105,124,125,126,124,105,126,99,127,126,125,845,127,125,126,128,99,126,127,128,99,128,98,128,129,98,128,127,129,98,129,94,846,94,129,129,130,847,130,129,131,129,132,131,133,129,127,132,129,133,848,133,127,133,134,132,133,849,134,850,133,851,133,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,135,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,136,913,914,136,915,916,917,918,919,136,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,136,937,938,939,136,940,941,942,943,944,945,946,947,948,137,949,950,137,951,952,953,954,955,956,957,958,137,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,137,980,981,982,983,984,985,986,137,987,137,988,989,138,990,991,992,993,994,995,996,997,998,139,999,1000,139,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,140,1013,1014,140,1015,138,1016,1017,141,141,1018,140,1019,1020,1021,141,1022,1023,1024,1025,1026,140,142,141,142,1027,141,1028,1029,143,1030,142,143,143,1031,1032,143,1033,1034,142,1035,143,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,142,1046,1047,1048,1049,1050,1051,1052,1053,142,1054,1055,1056,1057,142,140,1058,1059,1060,142,138,1061,140,1062,1063,1064,1065,1066,1067,1068,138,144,1069,1070,144,1071,1072,1073,1074,1075,1076,1077,1078,144,1079,1080,1081,138,1082,144,1083,1084,145,1085,145,1086,145,1087,1088,1089,138,146,1090,146,138,146,1091,1092,145,1093,
- 1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,145,1104,1105,1106,1107,1108,1109,145,147,147,145,1110,1111,1112,1113,1114,1115,147,1116,1117,1118,1119,1120,147,1121,1122,1123,1124,1125,147,1126,1127,1128,1129,148,147,148,1130,147,148,1131,146,149,1132,1133,1134,148,149,1135,149,1136,149,1137,1138,1139,148,146,148,1140,149,1141,146,1142,1143,1144,1145,149,150,1146,149,1147,150,150,1148,1149,1150,1151,150,1152,150,1153,150,135,1154,1155,135,150,1156,1157,1158,1159,1160,1161,1162,151,1163,1164,1165,1166,1167,151,152,1168,152,1169,152,151,1170,1171,1172,1173,152,1174,1175,1176,1177,1178,152,1179,153,1180,153,1181,1182,153,1183,152,154,1184,1185,1186,153,1187,1188,1189,152,153,1190,152,1191,154,1192,153,1193,1194,153,1195,1196,1197,155,1198,1199,155,1200,1201,1202,1203,155,1204,1205,1206,1207,1208,1209,1210,154,1211,1212,1213,1214,1215,1216,154,156,156,154,1217,1218,1219,156,156,1220,157,157,1221,156,158,1222,1223,1224,158,157,1225,157,1226,1227,1228,1229,1230,1231,1232,1233,157,1234,1235,1236,1237,1238,157,159,157,158,159,1239,1240,1241,1242,1243,1244,1245,160,1246,160,1247,159,1248,1249,1250,1251,1252,1253,1254,161,1255,1256,1257,1258,161,1259,1260,1261,1262,160,161,1263,162,160,162,1264,162,1265,161,162,160,1266,160,159,1267,1268,162,1269,1270,1271,162,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,159,1287,1288,1289,1290,1291,1292,159,163,159,158,163,1293,1294,1295,163,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,164,1309,164,1310,164,1311,1312,163,165,1313,1314,164,1315,1316,1317,1318,164,1319,166,1320,165,166,167,164,166,164,167,1321,165,167,166,1322,1323,1324,167,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,167,1337,1338,1339,1340,1341,1342,1343,167,1344,1345,1346,1347,1348,1349,167,1350,167,165,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,168,168,1369,1370,1371,1372,1373,1374,1375,1376,1377,168,1378,1379,1380,1381,165,1382,1383,1384,1385,1386,163,1387,165,158,1388,163,1389,158,169,169,1390,1391,1392,169,
- 158,1393,169,1394,1395,1396,169,1397,1398,169,1399,1400,155,1401,1402,1403,1404,168,1405,155,1406,1407,1408,1409,1410,155,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,170,1422,1423,1424,170,1425,170,1426,1427,1428,170,1429,1430,168,1431,1432,1433,1434,1435,171,168,1436,1437,171,168,171,1438,1439,171,1440,171,1441,1442,172,173,174,172,174,175,176,174,177,174,176,178,1443,179,1444,1445,180,1446,181,1447,1448,1449,181,1450,1451,182,183,183,184,1452,185,1453,184,1454,185,1455,1456,1457,1458,1459,186,1460,1461,1462,187,1463,1464,1465,1466,188,189,189,190,1467,1468,1469,191,1470,1471,192,1472,1473,1474,1475,193,1476,1477,1478,1479,1480,1481,194,195,1482,196,196,197,195,1483,195,198,195,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,199,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,200,1538,1539,201,1540,1541,1542,1543,202,1544,1545,1546,1547,203,1548,1549,1550,203,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,204,205,206,207,206,205,207,208,206,208,207,209,210,208,209,208,210,211,1564,1565,212,213,212,1566,213,214,212,214,213,215,1567,214,215,214,1568,1569,216,217,218,216,218,219,218,220,219,221,222,223,223,224,221,224,223,225,226,227,228,229,228,227,229,230,228,230,229,231,231,229,232,233,231,232,231,234,230,234,235,230,233,236,231,236,233,237,238,237,233,237,238,239,231,236,240,240,234,231,241,240,236,241,234,240,242,241,243,235,234,244,241,242,245,246,245,242,247,244,234,234,241,247,247,235,244,248,241,245,241,248,247,245,246,248,235,247,248,249,248,246,248,249,235,250,251,252,251,253,252,253,254,252,255,253,256,254,253,257,257,253,255,254,257,258,255,258,257,258,255,259,259,260,258,261,258,260,258,262,254,258,261,263,262,258,263,263,261,264,264,262,263,262,264,265,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,266,267,268,269,268,267,269,270,268,270,269,271,272,270,271,270,
- 272,273,1588,1589,274,1590,274,1591,1592,275,274,275,1593,276,277,276,1594,276,277,1595,278,1596,279,1597,278,1598,1599,1600,1601,1602,1603,276,280,275,276,280,281,275,1604,276,1605,276,1606,280,1607,282,1608,1609,283,280,280,283,281,283,1610,282,281,283,284,282,284,283,284,1611,281,1612,284,285,285,284,1613,282,1614,284,1615,282,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,286,1645,1646,1647,1648,1649,1650,286,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,287,1674,287,288,288,287,1675,1676,1677,287,1678,1679,289,1680,1681,1682,1683,1684,1685,1686,1687,290,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,291,291,1699,1700,291,1701,292,292,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,293,1718,1719,1720,1721,1722,1723,1724,294,295,294,1725,296,296,297,294,298,1726,296,297,296,1727,1728,296,1729,297,1730,299,300,1731,1732,301,299,1733,301,1734,300,302,300,303,300,302,301,1735,299,301,302,1736,301,299,1737,304,1738,302,1739,304,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,305,306,307,1757,306,305,308,1758,305,1759,308,1760,1761,1762,1763,1764,309,1765,309,1766,1767,1768,1769,1770,310,311,312,310,1771,311,313,1772,310,1773,313,1774,1775,313,1776,314,1777,1778,1779,314,315,1780,315,314,1781,1782,315,1783,1784,1785,1786,1787,1788,1789,316,1790,316,1791,317,317,1792,316,1793,317,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,318,1820,318,1821,1822,1823,1824,1825,319,1826,1827,1828,319,320,319,1829,320,1830,1831,321,1832,1833,322,1834,1835,322,1836,1837,319,319,1838,1839,1840,319,323,319,1841,323,323,1842,1843,1844,1845,1846,1847,324,323,1848,323,324,324,1849,1850,1851,324,325,1852,325,324,325,1853,1854,1855,325,1856,1857,325,1858,1859,1860,325,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,
- 1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,326,2064,2065,326,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,327,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,328,2165,2166,329,328,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,330,2180,330,2181,328,330,2182,2183,330,328,2184,328,329,2185,330,2186,2187,2188,2189,330,2190,2191,2192,2193,2194,2195,329,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,329,2208,2209,2210,2211,329,2212,2213,2214,329,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,331,2257,331,332,332,333,2258,332,331,334,334,
- 333,332,333,334,2259,335,336,337,337,336,338,339,337,338,340,337,339,341,342,343,341,343,344,345,344,343,346,345,343,347,348,349,348,347,350,351,350,347,352,351,347,2260,2261,2262,2263,353,2264,354,2265,353,354,355,2266,356,2267,357,2268,2269,357,2270,357,2271,357,2272,358,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,359,359,2308,2309,2310,359,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,360,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,361,2353,2354,2355,361,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,362,363,2374,362,362,364,363,2375,363,2376,2377,363,364,364,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,365,2390,2391,2392,2393,2394,366,2395,365,2396,2397,366,2398,2399,2400,2401,2402,367,2403,366,2404,367,2405,365,2406,2407,2408,2409,2410,2411,365,2412,2413,2414,2415,2416,2417,2418,2419,2420,368,368,2421,2422,2423,369,368,370,2424,2425,369,2426,2427,2428,370,2429,2430,2431,369,2432,2433,370,2434,371,2435,2436,371,2437,2438,2439,2440,2441,2442,371,372,2443,2444,2445,2446,2447,2448,372,2449,2450,2451,2452,372,2453,2454,2455,2456,2457,2458,2459,2460,372,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,373,2478,2479,2480,373,2481,2482,2483,374,2484,373,375,2485,374,2486,375,2487,2488,374,2489,2490,375,2491,2492,2493,2494,375,376,2495,2496,2497,376,2498,2499,2500,2501,2502,376,2503,377,2504,2505,2506,2507,2508,2509,377,2510,2511,2512,2513,2514,377,2515,2516,2517,2518,2519,2520,2521,377,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,378,378,2541,2542,379,2543,2544,2545,380,378,379,2546,2547,380,2548,2549,2550,379,2551,2552,380,2553,380,2554,2555,381,2556,2557,2558,381,2559,2560,382,2561,383,2562,381,382,2563,2564,2565,383,2566,2567,
- 2568,382,2569,2570,383,2571,2572,384,2573,384,2574,2575,385,384,2576,2577,2578,385,2579,2580,2581,385,2582,385,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,386,2594,2595,2596,386,2597,2598,2599,2600,386,2601,2602,2603,2604,2605,2606,386,387,387,2607,2608,2609,387,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,388,2668,2669,2670,2671,2672,2673,388,2674,2675,2676,2677,2678,388,2679,389,390,391,391,392,389,393,392,391,394,389,392,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,395,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,395,2944,2945,2946,2947,395,2948,2949,2950,
- 2951,2952,2953,395,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,396,3024,397,397,3025,398,3026,399,398,398,400,397,398,399,401,400,398,401,402,399,403,401,399,402,401,404,400,404,401,402,400,405,397,405,406,397,407,406,405,405,408,409,408,405,410,411,405,400,405,411,410,411,400,412,400,404,412,413,410,411,411,412,413,414,410,415,410,413,415,413,416,415,413,417,416,417,413,418,404,419,412,402,419,404,420,412,419,419,402,421,421,402,422,419,423,420,424,420,425,425,420,423,423,426,425,423,419,426,425,426,427,426,428,427,421,429,419,426,419,429,428,426,429,422,429,421,428,429,430,3027,422,3028,430,429,431,431,3029,430,429,422,3030,3031,431,429,422,3032,3033,3034,431,3035,432,433,3036,434,3037,433,435,3038,434,436,434,3039,3040,434,436,434,437,3041,434,3042,437,437,438,3043,3044,438,3045,439,3046,438,437,440,438,3047,441,437,440,437,441,441,3048,3049,3050,3051,3052,3053,441,3054,438,440,3055,3056,442,438,442,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,440,3067,3068,3069,3070,443,3071,443,3072,444,440,445,3073,440,441,445,445,441,446,447,445,446,441,448,446,441,3074,448,447,446,449,448,449,446,449,3075,447,3076,3077,447,3078,3079,3080,3081,449,3082,3083,449,3084,449,450,3085,449,448,451,451,450,449,3086,451,448,450,451,3087,3088,3089,3090,3091,451,3092,3093,3094,3095,451,3096,3097,3098,3099,451,3100,3101,3102,3103,3104,3105,452,3106,3107,453,452,3108,452,454,455,453,456,452,456,454,452,456,453,3109,3110,453,3111,456,3112,457,454,456,457,457,3113,3114,458,454,457,457,3115,458,459,454,458,3116,459,458,3117,3118,3119,3120,3121,3122,459,3123,3124,460,3125,3126,3127,460,459,461,459,460,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,462,462,3139,3140,462,3141,463,3142,462,463,464,465,466,467,465,464,465,467,468,468,
- 467,469,470,468,469,471,465,468,471,472,465,468,470,473,474,473,470,475,471,468,475,468,473,473,474,3143,3144,474,3145,3146,3147,3148,476,3149,3150,3151,476,477,473,3152,478,478,475,473,479,475,478,479,471,475,479,478,480,471,479,481,481,472,471,3153,479,480,3154,480,3155,480,3156,3157,3158,3159,3160,479,3161,3162,3163,3164,3165,482,3166,3167,483,481,479,479,3168,483,3169,482,483,483,472,481,483,482,484,472,485,3170,483,484,3171,485,3172,484,472,483,3173,485,472,3174,3175,3176,483,3177,3178,485,3179,486,487,488,486,3180,486,488,489,490,489,488,491,486,489,492,486,491,489,490,493,490,494,493,489,495,491,495,489,493,491,496,492,495,496,491,492,3181,3182,492,3183,3184,3185,3186,3187,3188,492,497,497,3189,3190,496,497,492,497,498,3191,498,497,499,496,499,497,498,499,3192,499,3193,3194,499,496,500,496,495,500,499,3195,3196,499,500,501,501,3197,499,495,501,500,502,3198,3199,3200,501,502,3201,502,3202,501,495,503,501,503,502,495,493,503,502,503,504,493,504,503,493,505,504,493,494,505,494,3203,505,505,3204,504,505,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,506,3218,3219,507,508,3220,3221,3222,508,3223,508,3224,3225,3226,508,509,3227,509,510,511,3228,3229,3230,3231,3232,3233,3234,511,3235,3236,3237,512,3238,511,3239,3240,3241,512,3242,3243,512,513,3244,3245,3246,3247,3248,3249,3250,511,3251,3252,511,514,512,514,511,3253,513,512,515,514,515,512,515,514,3254,3255,3256,515,515,516,513,516,515,3257,3258,3259,3260,517,3261,3262,3263,517,3264,517,518,3265,518,517,3266,518,3267,519,3268,3269,3270,3271,3272,518,3273,3274,3275,3276,3277,518,3278,3279,243,3280,520,3281,3282,3283,521,3284,3285,521,3286,521,3287,3288,3289,3290,521,3291,3292,3293,3294,3295,3296,3297,521,3298,3299,522,523,522,3300,522,523,520,520,3301,522,3302,3303,3304,3305,3306,3307,522,3308,3309,3310,522,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,524,3329,3330,524,3331,3332,3333,525,3334,3335,3336,525,526,526,525,527,528,526,527,529,3337,526,526,528,530,3338,3339,529,530,528,3340,531,526,530,526,531,
- 529,530,3341,3342,530,3343,531,3344,3345,3346,3347,3348,3349,532,3350,3351,3352,532,533,529,531,534,531,535,534,534,3353,529,3354,529,3355,3356,534,535,535,3357,3358,3359,3360,3361,534,3362,536,536,3363,3364,536,3365,534,3366,3367,536,3368,536,3369,3370,536,3371,3372,3373,536,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,537,3404,3405,3406,537,538,538,537,539,540,538,539,3407,538,3408,3409,541,3410,538,540,542,543,3411,538,538,542,543,3412,3413,541,3414,3415,543,542,540,3416,540,3417,3418,542,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,542,3439,3440,3441,543,542,3442,3443,3444,544,543,3445,544,3446,3447,543,544,3448,543,3449,3450,3451,544,3452,545,3453,544,544,3454,545,545,3455,3456,3457,3458,3459,3460,3461,3462,545,3463,3464,545,3465,3466,3467,545,3468,3469,545,3470,3471,3472,545,3473,541,3474,3475,3476,3477,541,3478,3479,3480,3481,3482,3483,3484,3485,541,3486,3487,3488,541,3489,3490,3491,3492,3493,3494,3495,546,3496,3497,547,3498,546,3499,547,548,548,547,549,550,3500,548,550,551,3501,549,552,548,552,549,553,548,554,550,548,552,554,553,555,552,555,553,3502,552,555,556,556,554,552,555,3503,3504,556,555,3505,3506,3507,3508,3509,3510,3511,557,3512,3513,3514,557,558,559,554,556,3515,559,3516,559,3517,560,561,560,3518,554,559,3519,560,3520,559,560,561,562,3521,560,562,3522,563,554,562,563,3523,554,563,550,561,3524,562,563,562,3525,3526,561,3527,563,3528,550,3529,3530,563,550,3531,551,3532,3533,551,3534,3535,3536,3537,551,3538,3539,3540,3541,551,3542,3543,551,3544,3545,3546,564,565,564,3547,566,567,566,3548,3549,567,3550,568,3551,3552,3553,568,3554,569,570,3555,570,571,3556,567,3557,571,3558,572,570,571,570,572,571,573,567,573,571,572,567,573,574,572,575,573,574,576,567,576,566,567,575,572,3559,573,577,574,577,573,575,576,574,3560,3561,577,3562,566,576,3563,3564,3565,576,3566,578,566,3567,578,3568,579,3569,580,3570,579,3571,3572,3573,3574,3575,3576,3577,3578,3579,
- 3580,581,3581,577,575,581,577,581,582,3582,581,575,583,582,581,583,3583,583,575,582,583,3584,3585,3586,3587,3588,583,3589,3590,3591,3592,583,3593,3594,3595,3596,583,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,584,3678,3679,585,3680,584,3681,585,455,3682,585,3683,3684,585,3685,3686,3687,3688,3689,586,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,586,3711,3712,3713,3714,3715,586,3716,461,460,460,586,3717,586,460,3718,586,3719,3720,587,3721,588,3722,587,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,589,589,590,3735,590,589,3736,591,589,3737,3738,591,3739,591,3740,592,3741,593,591,3742,591,593,589,591,594,595,591,3743,594,591,595,589,594,596,595,596,594,589,596,3744,597,595,3745,598,597,3746,597,598,599,3747,3748,597,600,597,3749,3750,597,600,595,597,3751,597,3752,3753,3754,601,595,596,595,601,3755,3756,3757,3758,601,3759,3760,3761,3762,596,601,602,3763,602,601,3764,3765,3766,602,3767,3768,3769,3770,3771,602,603,596,3772,596,603,3773,3774,3775,3776,3777,484,3778,3779,604,484,604,3780,604,3781,3782,3783,604,602,605,604,484,606,602,604,604,605,606,602,606,603,606,605,3784,3785,606,3786,3787,603,606,3788,606,3789,603,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,607,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,608,3815,3816,3817,3818,609,608,609,3819,609,610,3820,611,609,608,612,610,609,609,611,612,612,613,610,3821,610,613,3822,611,608,3823,3824,608,3825,3826,614,3827,3828,615,616,3829,3830,616,611,3831,3832,616,617,3833,616,3834,3835,616,3836,616,3837,611,3838,612,611,612,3839,3840,3841,3842,3843,3844,618,612,618,3845,3846,618,613,612,3847,3848,3849,618,619,613,
- 3850,613,619,3851,3852,3853,3854,3855,620,621,618,3856,3857,3858,621,620,621,3859,619,618,621,620,619,621,619,620,622,619,622,3860,3861,619,3862,3863,619,3864,619,3865,3866,3867,3868,3869,3870,3871,3872,3873,623,624,623,3874,416,3875,415,416,415,3876,3877,3878,3879,3880,3881,3882,625,3883,626,3884,627,3885,625,627,626,3886,625,628,627,629,626,627,629,627,628,626,629,3887,629,3888,3889,3890,628,625,3891,629,630,628,630,629,3892,630,631,631,632,403,632,631,630,632,630,633,630,628,633,3893,632,633,633,628,3894,3895,633,3896,3897,3898,628,3899,3900,3901,628,634,3902,628,3903,634,3904,3905,3906,3907,634,3908,3909,424,3910,3911,424,425,3912,3913,3914,3915,3916,430,3917,3918,3919,3920,430,3921,3922,3923,3924,3925,3926,3927,3928,3929,430,3930,635,3931,3932,3933,635,635,3934,3935,635,3936,634,634,3937,635,635,3938,425,3939,635,427,425,427,635,3940,3941,3942,3943,636,3944,3945,637,636,636,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,638,3982,3983,638,3984,3985,638,639,638,3986,640,3987,3988,641,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,642,4002,4003,642,643,4004,4005,4006,643,4007,4008,4009,4010,644,4011,643,645,645,644,4012,644,645,646,646,4013,644,643,4014,645,647,646,645,645,4015,647,4016,646,648,647,648,646,648,4017,4018,4019,4020,4021,4022,4023,4024,4025,649,4026,4027,648,649,4028,649,4029,649,4030,4031,650,649,648,648,647,650,4032,4033,649,649,650,4034,4035,4036,4037,4038,650,647,4039,4040,4041,4042,4043,4044,4045,4046,650,650,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,647,651,651,4068,4069,4070,651,647,4071,651,4072,4073,4074,651,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,643,4088,4089,4090,652,653,652,4091,4092,4093,643,4094,4095,654,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,
- 4126,4127,655,4128,4129,4130,4131,4132,656,656,4133,4134,656,4135,655,4136,4137,4138,4139,656,4140,4141,4142,657,4143,656,657,655,657,656,4144,655,4145,4146,655,4147,4148,657,655,657,4149,4150,657,4151,4152,637,658,659,4153,659,658,4154,659,4155,4156,4157,4158,658,4159,4160,4161,4162,4163,4164,658,4165,658,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,660,4191,660,4192,4193,660,661,4194,639,660,4195,4196,662,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,663,663,4238,4239,663,4240,4241,4242,663,4243,664,4244,4245,4246,663,665,4247,4248,666,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,667,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,668,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,668,4333,4334,4335,4336,4337,4338,4339,669,668,669,4340,670,670,4341,4342,4343,4344,670,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,671,4388,4389,671,4390,4391,671,4392,671,4393,672,4394,4395,4396,4397,4398,4399,4395,4394,4400,4401,4402,4403,4404,4405,4401,4400,4406,4407,4408,4808,4410,4411,4407,4406,4412,4413,4414,4809,4416,4417,4413,4412,4418,4419,4396,4420,4395,4399,4421,4422,4399,4423,4424,4421,4425,4426,4402,4427,4401,4405,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4404,4439,4440,4441,4400,4442,4439,4404,4443,4444,4445,4446,4398,4447,4448,4449,4394,4450,4447,4398,4451,4452,4453,4454,4424,4423,4426,4425,4455,4456,4444,4443,4457,4811,4810,4460,
- 4461,4462,4463,4464,4465,4466,4813,4812,4469,4470,4468,4467,4417,4416,4420,4396,4395,4422,4397,4471,4450,4394,4459,4458,4411,4410,4427,4402,4401,4429,4403,4472,4442,4400,4473,4474,4415,4815,4475,4449,4423,4399,4398,4476,4477,4409,4814,4478,4479,4441,4432,4405,4404,4432,4431,4428,4405,4480,4481,4482,4483,4484,4485,4481,4480,4486,4487,4488,4804,4490,4491,4487,4486,4492,4493,4494,4482,4495,4481,4485,4496,4497,4418,4498,4499,4419,4484,4500,4501,4502,4480,4503,4500,4484,4504,4505,4506,4507,4508,4509,4806,4805,4512,4513,4514,4515,4451,4454,4511,4510,4491,4490,4495,4482,4481,4497,4483,4516,4503,4480,4517,4518,4489,4807,4519,4502,4499,4485,4484,4499,4498,4496,4485,4520,4521,4468,4416,4522,4520,4416,4412,4523,4522,4412,4809,4524,4525,4459,4410,4526,4524,4410,4406,4527,4526,4406,4808,4528,4529,4511,4490,4530,4528,4490,4486,4531,4530,4486,4804,4532,4533,4534,4408,4535,4532,4408,4407,4536,4537,4411,4458,4538,4536,4458,4539,4540,4541,4417,4467,4542,4540,4467,4543,4544,4545,4491,4510,4546,4544,4510,4547,4548,4546,4510,4549,4542,4543,4488,4550,4549,4488,4487,4537,4535,4407,4411,4551,4538,4539,4414,4552,4551,4414,4413,4541,4552,4413,4417,4545,4550,4487,4491,4553,4554,4555,4556,4557,4553,4556,4558,4559,4557,4558,4560,4561,4559,4560,4562,4563,4561,4562,4564,4565,4563,4564,4566,4565,4566,4567,4568,4569,4568,4567,4570,4571,4569,4570,4572,4573,4571,4572,4574,4573,4574,4575,4576,4577,4578,4579,4580,4581,4577,4580,4582,4583,4581,4582,4584,4585,4583,4584,4586,4575,4585,4586,4576,4506,4505,4587,4588,4589,4463,4462,4590,4591,4592,4435,4434,4592,4534,4436,4435,4534,4533,4437,4436,4533,4593,4438,4437,4593,4591,4434,4438,4594,4595,4596,4597,4598,4599,4595,4594,4600,4601,4602,4603,4604,4605,4601,4600,4606,4607,4608,4796,4610,4611,4607,4606,4612,4613,4614,4797,4616,4617,4613,4612,4618,4619,4596,4620,4595,4599,4621,4622,4599,4623,4624,4621,4625,4626,4602,4627,4601,4605,4628,4629,4630,4631,4632,4633,4604,4634,4635,4636,4600,4637,4634,4604,4638,4639,4640,4641,4598,4642,4643,4644,4594,4645,4642,4598,4646,4647,4648,4649,4624,4623,4626,4625,4650,4651,
- 4639,4638,4652,4799,4798,4655,4656,4657,4658,4659,4660,4661,4801,4800,4664,4665,4663,4662,4617,4616,4620,4596,4595,4622,4597,4666,4645,4594,4654,4653,4611,4610,4627,4602,4601,4629,4603,4667,4637,4600,4668,4669,4615,4803,4670,4644,4623,4599,4598,4671,4672,4609,4802,4673,4674,4636,4632,4605,4604,4632,4631,4628,4605,4675,4676,4677,4678,4679,4680,4676,4675,4681,4682,4683,4792,4685,4686,4682,4681,4687,4688,4689,4677,4690,4676,4680,4691,4692,4618,4693,4694,4619,4679,4695,4696,4697,4675,4698,4695,4679,4699,4700,4701,4702,4703,4704,4794,4793,4707,4708,4709,4710,4646,4649,4706,4705,4686,4685,4690,4677,4676,4692,4678,4711,4698,4675,4712,4713,4684,4795,4714,4697,4694,4680,4679,4694,4693,4691,4680,4715,4716,4717,4718,4719,4720,4721,4663,4616,4722,4720,4616,4612,4723,4722,4612,4797,4724,4725,4654,4610,4726,4724,4610,4606,4727,4726,4606,4796,4728,4729,4706,4685,4730,4728,4685,4681,4731,4730,4681,4792,4732,4548,4547,4608,4733,4732,4608,4607,4734,4735,4611,4653,4736,4734,4653,4737,4738,4739,4617,4662,4740,4738,4662,4741,4742,4743,4686,4705,4744,4742,4705,4745,4746,4744,4705,4747,4740,4741,4683,4748,4747,4683,4682,4735,4733,4607,4611,4749,4736,4737,4614,4750,4749,4614,4613,4739,4750,4613,4617,4743,4748,4682,4686,4751,4752,4753,4754,4755,4751,4754,4756,4757,4755,4756,4758,4759,4757,4758,4760,4761,4759,4760,4762,4763,4761,4762,4764,4763,4764,4765,4766,4767,4766,4765,4768,4769,4767,4768,4770,4771,4769,4770,4772,4771,4772,4773,4774,4775,4776,4777,4778,4779,4775,4778,4780,4781,4779,4780,4782,4783,4781,4782,4784,4773,4783,4784,4774,4701,4700,4785,4786,4787,4658,4657,4788,4789,4790,4716,4715,4790,4746,4717,4716,4746,4745,4718,4717,4745,4791,4719,4718,4791,4789,4715,4719
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *666 {
- a: 0.397449731826782,0.687386214733124,0.397449731826782,0.612833142280579,0.464532971382141,0.631471514701843,0.46335107088089,0.687386274337769,0.322896659374237,0.687386214733124,0.322896659374237,0.612833142280579,0.173789530992508,0.687386214733124,0.173789530992508,0.612833142280579,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0992372930049896,0.687386214733124,0.0992372930049896,0.612833142280579,0.590349912643433,0.0164063796401024,0.590349912643433,0.0909595489501953,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.664902210235596,0.0164063796401024,0.664902210235596,0.0909595489501953,0.814009308815002,0.0164063796401024,0.814009308815002,0.0909595489501953,0.747469663619995,0.0536829642951488,0.748799324035645,0.0164063796401024,0.888562321662903,0.0164063796401024,0.888562321662903,0.0909595489501953,0.472002953290939,0.53827977180481,0.472002953290939,0.650109648704529,0.46335107088089,0.53827977180481,0.322896659374237,0.53827977180481,0.397449731826782,0.53827977180481,0.256357073783875,0.650109648704529,0.256800293922424,0.53827977180481,0.248343527317047,0.53827977180481,0.248343527317047,0.650109648704529,0.239366367459297,0.53827977180481,0.0992372930049896,0.53827977180481,0.173789530992508,0.53827977180481,0.0246833004057407,0.53827977180481,0.0322238691151142,0.53827977180481,0.0322238691151142,0.631471395492554,0.0246833004057407,0.650109648704529,0.0658344030380249,0.784571528434753,0.0455010756850243,0.747540593147278,0.0658344030380249,0.711149871349335,0.177664279937744,0.714673936367035,0.177664339542389,0.784571588039398,0.602406024932861,0.911570608615875,0.602406024932861,0.948281049728394,0.536278963088989,0.948281109333038,0.536279022693634,0.911570608615875,0.676958203315735,0.91157054901123,0.676958203315735,0.948281168937683,0.751512169837952,0.91157066822052,0.751512110233307,0.984991669654846,0.744898676872253,0.984991669654846,0.744898736476898,0.91157066822052,0.826065182685852,0.91157066822052,0.826065242290497,
- 0.948281168937683,0.760855317115784,0.948281168937683,0.760855376720428,0.911570608615875,0.900618374347687,0.911570727825165,0.900618374347687,0.948281288146973,0.975171506404877,0.984991550445557,0.968883454799652,0.984991610050201,0.968883454799652,0.91157054901123,0.975171566009521,0.91157054901123,0.759082496166229,0.91157066822052,0.759082436561584,0.984991669654846,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,0.527755498886108,0.948281168937683,0.534956812858582,0.948281109333038,0.5345059633255,0.984991610050201,0.52785187959671,0.984991610050201,0.96651965379715,0.984991610050201,0.96651965379715,0.948281049728394,0.96651965379715,0.91157054901123,0.954463660717011,0.0164063796401024,0.956236481666565,0.0723212584853172,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.760855317115784,0.984991669654846,0.257686764001846,0.687386214733124,0.536278903484344,0.984991610050201,0.53450608253479,0.91157054901123,0.0331103429198265,0.687386214733124,0.173789530992508,0.687386214733124,0.173789530992508,0.612833142280579,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0992372930049896,0.687386214733124,0.0992372930049896,0.612833142280579,0.590349912643433,0.0164063796401024,0.590349912643433,0.0909595489501953,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.664902210235596,0.0164063796401024,0.664902210235596,0.0909595489501953,0.241730079054832,0.53827977180481,0.248343527317047,0.53827977180481,0.248343527317047,0.650109648704529,0.239366367459297,0.53827977180481,0.0992372930049896,0.53827977180481,0.173789530992508,0.53827977180481,0.0246833004057407,0.53827977180481,0.0322238691151142,0.53827977180481,0.0322238691151142,0.631471395492554,0.0246833004057407,0.650109648704529,0.602406024932861,0.911570608615875,0.602406024932861,0.948281049728394,0.536278963088989,0.948281109333038,0.536279022693634,0.911570608615875,0.676958203315735,0.91157054901123,0.676958203315735,0.948281168937683,
- 0.751512169837952,0.91157066822052,0.751436412334442,0.948281109333038,0.7442467212677,0.948281168937683,0.744898736476898,0.91157066822052,0.744898676872253,0.984991669654846,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,0.53450608253479,0.91157054901123,0.5345059633255,0.984991610050201,0.52785187959671,0.984991610050201,0.527851998806,0.911570608615875,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.536278903484344,0.984991610050201,0.0331103429198265,0.687386214733124,0.900618374347687,0.984991788864136,0.826065301895142,0.984991669654846,0.676958203315735,0.984991788864136,0.602406024932861,0.984991550445557,0.676958203315735,0.984991788864136,0.602406024932861,0.984991550445557,0.499765485525131,0.183403864502907,0.499567270278931,0.195224672555923,0.515795946121216,0.0536829642951488,0.566778898239136,0.183403879404068,0.708089828491211,0.183403864502907,0.641331195831299,0.183403879404068,0.715885162353516,0.183403879404068,0.739456176757813,0.0536829642951488,0.932074546813965,0.183403864502907,0.864991307258606,0.183403879404068,0.963115572929382,0.165512904524803,0.956827461719513,0.165512904524803,0.963115572929382,0.0536829642951488,0.706923544406891,0.18339204788208,0.641331255435944,0.183403834700584,0.709271728992462,0.183403834700584,0.739456176757813,0.0536829642951488,0.715885281562805,0.183403834700584,0.500652015209198,0.183403864502907,0.513694107532501,0.18340377509594,0.515795946121216,0.0536829642951488,0.566778898239136,0.183403879404068,0.724425435066223,0.183403879404068,0.790438294410706,0.183403864502907,0.177664339542389,0.784571588039398,0.751512110233307,0.984991669654846,0.527851998806,0.911570608615875,0.0658344030380249,0.784571528434753,0.0455010756850243,0.747540593147278,0.0658344030380249,0.711149871349335,0.177664279937744,0.714673936367035,0.397449731826782,0.687386214733124,0.397449731826782,0.612833142280579,0.464532971382141,0.631471514701843,0.46335107088089,0.687386274337769,0.322896659374237,
- 0.687386214733124,0.322896659374237,0.612833142280579,0.173789530992508,0.687386214733124,0.173789530992508,0.612833142280579,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0992372930049896,0.687386214733124,0.0992372930049896,0.612833142280579,0.590349912643433,0.0164063796401024,0.590349912643433,0.0909595489501953,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.664902210235596,0.0164063796401024,0.664902210235596,0.0909595489501953,0.814009308815002,0.0164063796401024,0.814009308815002,0.0909595489501953,0.747469663619995,0.0536829642951488,0.748799324035645,0.0164063796401024,0.888562321662903,0.0164063796401024,0.888562321662903,0.0909595489501953,0.472002953290939,0.53827977180481,0.472002953290939,0.650109648704529,0.46335107088089,0.53827977180481,0.322896659374237,0.53827977180481,0.397449731826782,0.53827977180481,0.256357073783875,0.650109648704529,0.256800293922424,0.53827977180481,0.248343527317047,0.53827977180481,0.248343527317047,0.650109648704529,0.239366367459297,0.53827977180481,0.0992372930049896,0.53827977180481,0.173789530992508,0.53827977180481,0.0246833004057407,0.53827977180481,0.0322238691151142,0.53827977180481,0.0322238691151142,0.631471395492554,0.0246833004057407,0.650109648704529,0.602406024932861,0.911570608615875,0.602406024932861,0.948281049728394,0.536278963088989,0.948281109333038,0.536279022693634,0.911570608615875,0.676958203315735,0.91157054901123,0.676958203315735,0.948281168937683,0.751512169837952,0.91157066822052,0.751512110233307,0.984991669654846,0.744898676872253,0.984991669654846,0.744898736476898,0.91157066822052,0.826065182685852,0.91157066822052,0.826065242290497,0.948281168937683,0.760855317115784,0.948281168937683,0.760855376720428,0.911570608615875,0.900618374347687,0.911570727825165,0.900618374347687,0.948281288146973,0.975171506404877,0.984991550445557,0.968883454799652,0.984991610050201,0.968883454799652,0.91157054901123,0.975171566009521,0.91157054901123,0.759082496166229,0.91157066822052,0.759082436561584,
- 0.984991669654846,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,0.527755498886108,0.948281168937683,0.534956812858582,0.948281109333038,0.5345059633255,0.984991610050201,0.52785187959671,0.984991610050201,0.96651965379715,0.984991610050201,0.96651965379715,0.948281049728394,0.96651965379715,0.91157054901123,0.954463660717011,0.0164063796401024,0.956236481666565,0.0723212584853172,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.760855317115784,0.984991669654846,0.257686764001846,0.687386214733124,0.536278903484344,0.984991610050201,0.53450608253479,0.91157054901123,0.0331103429198265,0.687386214733124,0.173789530992508,0.687386214733124,0.173789530992508,0.612833142280579,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0992372930049896,0.687386214733124,0.0992372930049896,0.612833142280579,0.590349912643433,0.0164063796401024,0.590349912643433,0.0909595489501953,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.664902210235596,0.0164063796401024,0.664902210235596,0.0909595489501953,0.241730079054832,0.53827977180481,0.248343527317047,0.53827977180481,0.248343527317047,0.650109648704529,0.239366367459297,0.53827977180481,0.0992372930049896,0.53827977180481,0.173789530992508,0.53827977180481,0.0246833004057407,0.53827977180481,0.0322238691151142,0.53827977180481,0.0322238691151142,0.631471395492554,0.0246833004057407,0.650109648704529,0.602406024932861,0.911570608615875,0.602406024932861,0.948281049728394,0.536278963088989,0.948281109333038,0.536279022693634,0.911570608615875,0.676958203315735,0.91157054901123,0.676958203315735,0.948281168937683,0.751512169837952,0.91157066822052,0.751436412334442,0.948281109333038,0.7442467212677,0.948281168937683,0.744898736476898,0.91157066822052,0.744898676872253,0.984991669654846,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,0.53450608253479,0.91157054901123,0.5345059633255,0.984991610050201,
- 0.52785187959671,0.984991610050201,0.527851998806,0.911570608615875,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.536278903484344,0.984991610050201,0.0331103429198265,0.687386214733124,0.248343527317047,0.650109648704529,0,0,0.703966081142426,0.157569140195847,0.739456176757813,0.0536829642951488,0.521895349025726,0.405771225690842,0.900618374347687,0.984991788864136,0.826065301895142,0.984991669654846,0.676958203315735,0.984991788864136,0.602406024932861,0.984991550445557,0.676958203315735,0.984991788864136,0.602406024932861,0.984991550445557,0.499765485525131,0.183403864502907,0.499567270278931,0.195224672555923,0.515795946121216,0.0536829642951488,0.566778898239136,0.183403879404068,0.708089828491211,0.183403864502907,0.641331195831299,0.183403879404068,0.715885162353516,0.183403879404068,0.739456176757813,0.0536829642951488,0.932074546813965,0.183403864502907,0.864991307258606,0.183403879404068,0.963115572929382,0.165512904524803,0.956827461719513,0.165512904524803,0.963115572929382,0.0536829642951488,0.706923544406891,0.18339204788208,0.641331255435944,0.183403834700584,0.709271728992462,0.183403834700584,0.739456176757813,0.0536829642951488,0.715885281562805,0.183403834700584,0.500652015209198,0.183403864502907,0.513694107532501,0.18340377509594,0.515795946121216,0.0536829642951488,0.566778898239136,0.183403879404068,0.724425435066223,0.183403879404068,0.790438294410706,0.183403864502907,0.177664339542389,0.784571588039398,0.751512110233307,0.984991669654846,0.527851998806,0.911570608615875,0,0,0.703966081142426,0.157569140195847,0.521895349025726,0.405771225690842
- }
- UVIndex: *7160 {
- 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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,2,3,4,5,1,0,6,7,8,9,10,11,7,6,12,13,14,15,16,17,13,12,18,19,20,21,22,23,19,18,24,25,2,26,1,5,27,28,5,29,30,27,31,32,8,33,7,11,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,46,45,51,52,53,54,55,56,57,58,59,60,56,55,61,62,63,64,30,29,32,31,65,66,52,51,54,53,67,68,69,70,71,72,73,63,62,74,75,76,77,78,23,22,26,2,1,28,76,75,60,59,79,80,17,16,33,8,7,35,69,68,50,49,58,57,81,66,65,82,29,5,4,48,47,83,72,71,84,85,38,11,10,38,37,34,11,86,87,88,89,90,91,87,86,92,93,94,95,96,97,93,92,98,99,100,88,101,87,91,102,103,104,105,106,107,108,109,110,111,112,113,109,108,114,115,116,117,117,116,118,119,120,121,122,123,124,125,126,127,97,96,101,88,87,103,121,120,113,112,111,110,128,123,122,129,106,91,90,106,105,102,91,60,75,74,130,56,60,130,131,57,56,131,81,50,68,67,132,46,50,132,133,47,46,133,83,113,120,119,134,109,113,134,135,110,109,135,128,136,137,138,14,139,136,14,13,140,141,17,80,142,140,80,143,144,145,23,78,146,147,78,148,149,150,97,127,151,149,127,152,153,151,127,154,155,156,94,157,154,94,93,141,139,13,17,158,142,143,20,159,158,20,19,145,159,19,23,150,157,93,97,37,160,137,136,34,37,136,139,35,34,139,141,33,35,141,140,31,33,140,142,30,31,142,158,30,158,159,27,28,27,159,145,26,28,145,144,24,26,144,155,24,155,154,105,151,153,99,98,149,151,98,101,150,149,101,103,157,150,103,102,154,157,102,105,116,115,161,118,84,71,70,162,163,164,41,40,164,165,42,41,165,166,43,42,166,160,44,43,160,163,40,44,167,168,169,170,171,172,168,167,173,174,175,176,177,178,174,173,179,180,181,182,183,184,180,179,185,186,187,188,
- 189,190,186,185,191,192,169,193,168,172,194,195,172,196,197,194,198,199,175,200,174,178,201,202,203,204,205,206,207,208,209,210,211,212,208,207,213,214,215,216,217,218,219,220,221,222,218,217,223,224,225,226,197,196,199,198,227,228,214,213,216,215,229,230,231,232,233,234,235,225,224,236,237,238,239,240,190,189,193,169,168,195,238,237,222,221,241,242,184,183,200,175,174,202,231,230,212,211,220,219,243,228,227,244,196,172,171,210,209,245,234,233,246,247,205,178,177,205,204,201,178,248,249,250,251,252,253,249,248,254,255,256,257,258,259,255,254,260,261,262,250,263,249,253,264,265,266,267,268,269,270,271,272,273,274,275,271,270,276,277,278,279,279,278,280,281,282,283,284,285,286,287,288,289,259,258,263,250,249,265,283,282,275,274,273,272,290,285,284,291,268,253,252,268,267,264,253,292,293,294,295,296,222,237,236,297,218,222,297,298,219,218,298,243,212,230,229,299,208,212,299,300,209,208,300,245,275,282,281,301,271,275,301,302,272,271,302,290,303,304,305,181,306,303,181,180,307,308,184,242,309,307,242,310,311,312,190,240,313,314,240,315,316,317,259,289,318,316,289,319,320,318,289,321,322,323,256,324,321,256,255,308,306,180,184,325,309,310,187,326,325,187,186,312,326,186,190,317,324,255,259,204,327,304,303,201,204,303,306,202,201,306,308,200,202,308,307,198,200,307,309,197,198,309,325,197,325,326,194,195,194,326,312,193,195,312,311,191,193,311,322,191,322,321,267,318,320,261,260,316,318,260,263,317,316,263,265,324,317,265,264,321,324,264,267,278,277,328,280,246,233,232,329,262,330,293,292,330,331,294,293,331,319,295,294,319,332,296,295,332,262,292,296
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *3580 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *2312 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- Layer: 1 {
- Version: 100
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 1
- }
- }
- }
- Geometry: 2267733802144, "Geometry::", "Mesh" {
- Vertices: *1155 {
- a: -390.9833984375,-110.365234375,-417.849365234375,-330.537109375,-73.3590087890625,-365.8125,-317.71875,-110.142944335938,-360.453491210938,-392.412109375,-71.8665771484375,-418.4892578125,-494.7490234375,-73.34228515625,2.652099609375,-405.49609375,-112.994873046875,1.458984375,-407.8759765625,-74.64990234375,0.574951171875,-499.0205078125,-113.260131835938,3.428466796875,2.2880859375,-71.08984375,-514.482421875,1.88671875,-108.399658203125,-607.25537109375,2.0751953125,-70.6148681640625,-606.742431640625,1.8359375,-108.191772460938,-514.181762695313,-393.9267578125,-73.318603515625,-413.626953125,-320.2041015625,-112.425415039063,-358.423583984375,-320.1474609375,-73.7061767578125,-360.597412109375,-396.5595703125,-112.214965820313,-415.250854492188,320.10546875,-73.03271484375,-356.69189453125,393.06640625,-110.365234375,-414.036499023438,392.8203125,-72.583984375,-413.691650390625,319.59375,-110.142456054688,-356.9013671875,-1.5146484375,-112.820922851563,-515.317749023438,-3.560546875,-73.065185546875,-605.636352539063,-3.126953125,-112.495483398438,-609.915161132813,-1.2080078125,-73.0169677734375,-513.712280273438,404.94140625,-70.5640869140625,1.41650390625,497.375,-108.342041015625,1.556396484375,497.30859375,-70.7291259765625,1.86376953125,404.80859375,-107.976806640625,1.4345703125,318.390625,-112.515014648438,-360.12109375,393.71875,-71.2506103515625,-420.59619140625,392.17578125,-112.223022460938,-419.689697265625,317.4296875,-72.5760498046875,-359.202758789063,-465.6787109375,-110.471801757813,-297.87646484375,-493.90625,-71.388671875,-205.98583984375,-503.35546875,-112.231811523438,-144.40576171875,-392.58203125,-110.949829101563,-228.61083984375,497.9140625,-111.253051757813,-161.016845703125,493.84375,-70.6683349609375,-187.273681640625,465.703125,-110.423217773438,-301.541015625,393.921875,-70.2452392578125,-219.899169921875,395.578125,-111.57275390625,-221.380859375,-130.0009765625,-110.349365234375,-596.247924804688,-255.759765625,-70.9024658203125,-548.2529296875,-297.708984375,-111.29052734375,-517.692626953125,
- -164.7919921875,-70.0830078125,-484.087036132813,-185.501953125,-111.05322265625,-479.49267578125,292.921875,-110.46875,-517.4443359375,192.66015625,-70.9063720703125,-578.830322265625,143.2265625,-112.5126953125,-594.3505859375,185.609375,-71.0831298828125,-478.138671875,162.6171875,-111.998657226563,-488.455078125,-36.2880859375,-104.5341796875,-534.063720703125,-34.69140625,-194.930297851563,-543.658935546875,-37.8876953125,-105.301025390625,-600.423828125,-146.408203125,-107.41650390625,-513.201171875,-143.822265625,-198.950927734375,-521.072021484375,-163.998046875,-108.042236328125,-576.97705078125,-348.7451171875,-107.705688476563,-361.536743164063,-404.0751953125,-108.493408203125,-396.552001953125,-357.0576171875,-200.080688476563,-361.4443359375,-384.2177734375,-104.753784179688,-295.78515625,-387.4033203125,-197.245361328125,-306.083984375,-441.3916015625,-104.418701171875,-323.89111328125,-437.3251953125,-198.793823242188,-34.066162109375,-430.673828125,-106.87109375,-38.31103515625,-496.9033203125,-106.120483398438,-39.41064453125,-328.2255859375,150.168212890625,-495.779907226563,-289.05078125,187.107421875,-452.5361328125,-296.3759765625,161.917236328125,-458.3935546875,-250.3173828125,139.525268554688,-410.9521484375,-389.662109375,142.380615234375,-40.370361328125,-454.0400390625,188.276611328125,-44.16552734375,-449.27734375,168.37451171875,-42.3603515625,-261.7373046875,63.468017578125,-411.278198242188,-295.1162109375,98.44677734375,-449.103149414063,-292.9189453125,69.397216796875,-447.9931640625,-326.4501953125,62.931884765625,-485.921630859375,-41.1123046875,55.7625732421875,-489.688598632813,-48.9853515625,96.5194091796875,-556.416259765625,-51.4970703125,69.44970703125,-560.437622070313,-53.8017578125,68.5826416015625,-606.18701171875,4.11328125,53.0811767578125,-618.906494140625,2.1669921875,95.9476318359375,-558.841552734375,-2.615234375,71.482177734375,-484.618774414063,-482.7060546875,62.8759765625,-236.83837890625,-438.103515625,71.6904296875,-223.21533203125,-434.828125,99.0447998046875,-223.94775390625,
- -392.09375,49.9288330078125,0.122314453125,-449.4482421875,95.9630126953125,0.03955078125,-454.1865234375,69.2857666015625,0.916015625,-505.8505859375,67.811279296875,3.1826171875,-389.138671875,52.797119140625,-53.872314453125,-499.59375,69.1978759765625,-50.87353515625,-449.357421875,94.8880615234375,-50.75,-435.3017578125,-198.57373046875,-150.464111328125,-425.6728515625,-108.163818359375,-152.15771484375,-492.013671875,-108.9228515625,-154.71875,-282.53515625,-188.581420898438,-469.862548828125,-263.56640625,-156.992065429688,-499.501708984375,-239.3544921875,-188.111450195313,-466.565185546875,436.3828125,-194.45068359375,-82.094970703125,426.484375,-104.299560546875,-78.283935546875,493.0625,-103.64892578125,-76.95068359375,426.17578125,-107.416381835938,-153.627685546875,433.18359375,-198.949829101563,-149.20703125,492.3203125,-108.041748046875,-155.2041015625,352.9921875,-107.881469726563,-356.898681640625,361.49609375,-200.2744140625,-357.211059570313,406.09765625,-107.327758789063,-395.500244140625,273.03125,-104.6875,-437.02685546875,283.94140625,-197.298583984375,-437.9404296875,314.00390625,-104.58740234375,-485.547119140625,32.755859375,-198.631591796875,-545.982055664063,36.5146484375,-106.91064453125,-538.659057617188,43.6787109375,-106.014404296875,-604.656372070313,458.90625,142.626342773438,-336.58544921875,401.9609375,187.108154296875,-306.7294921875,405.28515625,165.72216796875,-313.74951171875,349.70703125,141.708129882813,-277.219970703125,489.78125,135.5986328125,-244.614013671875,437.0234375,170.36669921875,-227.5595703125,438.0546875,187.95947265625,-227.38525390625,399.2890625,79.3826904296875,-313.263671875,343.01953125,37.3095703125,-288.40869140625,401.40625,100.84228515625,-313.76708984375,454.234375,36.062255859375,-343.31884765625,453.0625,70.944091796875,-48.482666015625,396.53125,45.8934326171875,-49.0810546875,448.11328125,96.5611572265625,-48.395263671875,498.6015625,68.5648193359375,-47.82177734375,385.48046875,58.905029296875,5.16650390625,499.7109375,71.6917724609375,7.7744140625,
- 449.26953125,95.7923583984375,1.78271484375,239.609375,63.093505859375,-546.806518554688,215.7421875,71.6368408203125,-506.990966796875,215.6015625,99.0582275390625,-503.647583007813,0.236328125,55.16455078125,-491.868530273438,-0.404296875,95.7791748046875,-559.221313476563,-2.6669921875,68.633544921875,-563.288330078125,0.1689453125,67.836669921875,-609.036865234375,59.705078125,52.166748046875,-615.215087890625,50.4423828125,94.88671875,-556.069702148438,40.2802734375,70.05419921875,-494.769287109375,144.234375,-198.199584960938,-522.136596679688,143.76953125,-108.160888671875,-512.168701171875,162.3515625,-108.91064453125,-575.97900390625,416.59765625,-191.188720703125,-299.80078125,441.34375,-157.021850585938,-270.58447265625,403.5078125,-188.088256835938,-255.112060546875,-269.1376953125,-184.443725585938,-441.484741210938,-314.0830078125,-105.24658203125,-488.077026367188,-276.7412109375,-103.651123046875,-515.622314453125,386.13671875,-184.738647460938,-290.151123046875,443.0703125,-105.15234375,-322.68603515625,460.16015625,-103.661376953125,-279.484619140625,-403.5966796875,187.6083984375,-315.82763671875,-458.560546875,132.4404296875,-332.556640625,-402.5283203125,169.9990234375,-308.142578125,-83.615234375,-104.120849609375,-594.434326171875,-74.6240234375,-104.446655273438,-530.817016601563,-75.033203125,-184.751586914063,-530.36474609375,-78.8251953125,-184.25927734375,-559.819091796875,-207.0947265625,-107.212036132813,-559.729736328125,-182.81640625,-107.431640625,-499.905395507813,-182.458984375,-187.768188476563,-500.263427734375,-193.296875,-187.300415039063,-527.628540039063,-269.794921875,-104.474853515625,-440.056640625,-239.4951171875,-104.355346679688,-465.098754882813,-375.4482421875,-107.787353515625,-433.116577148438,-325.43359375,-107.772827148438,-392.711547851563,-326.2001953125,-187.645751953125,-392.6357421875,-349.4013671875,-187.79345703125,-410.498779296875,-399.3125,-105.6376953125,-259.7646484375,-456.046875,-105.8125,-281.287841796875,-398.6494140625,-186.1904296875,-263.09033203125,
- -433.576171875,-184.861694335938,-274.879150390625,-428.8447265625,-106.373657226563,-78.802490234375,-492.958984375,-107.34765625,-81.62060546875,-429.197265625,-186.791381835938,-78.769775390625,-458.6103515625,-186.150634765625,-79.635009765625,-500.5458984375,151.968017578125,-42.44580078125,-491.1884765625,137.1240234375,-44.154296875,-221.3828125,166.081787109375,-502.318481445313,-201.8916015625,137.605590820313,-469.48681640625,-196.9931640625,151.2236328125,-460.024780273438,-221.796875,185.925048828125,-502.595458984375,-247.88671875,150.2744140625,-543.82666015625,-241.224609375,136.5078125,-538.574829101563,-184.5615234375,48.0615234375,-454.181396484375,-216.8310546875,80.60595703125,-504.44091796875,-216.689453125,100.003784179688,-505.592407226563,-243.0625,47.643310546875,-558.920043945313,-391.8701171875,44.9752197265625,-214.697021484375,-386.30859375,63.4156494140625,-211.526123046875,-454.2890625,47.0284423828125,-342.22802734375,-403.015625,96.317626953125,-313.0380859375,-401.94140625,77.8876953125,-312.39111328125,-347.880859375,48.7811279296875,-289.2958984375,-485.3330078125,-107.856567382813,-200.501953125,-421.84375,-108.181518554688,-190.593994140625,-421.419921875,-188.491943359375,-190.784912109375,-450.822265625,-187.999389648438,-194.98681640625,425.375,-104.63232421875,-37.748046875,489.15234375,-105.48193359375,-34.75390625,425.13671875,-184.833251953125,-38.4482421875,454.9296875,-184.221313476563,-37.97265625,486.0546875,-107.213500976563,-201.199462890625,422.12109375,-107.431274414063,-192.1748046875,422.3828125,-187.767944335938,-191.740478515625,451.5234375,-187.329345703125,-195.617431640625,385.265625,-104.541870117188,-291.06201171875,402.1171875,-104.35546875,-255.609619140625,327.86328125,-107.5537109375,-386.597900390625,375.1484375,-108.376953125,-429.9052734375,328.73046875,-187.606811523438,-386.604614257813,350.99609375,-187.400512695313,-405.92041015625,241.74609375,-105.628784179688,-460.51806640625,276.17578125,-105.73828125,-510.142333984375,244.8046875,-186.199340820313,-459.060546875,
- 264.76953125,-184.63525390625,-490.257690429688,74.6103515625,-106.42041015625,-531.8330078125,88.78125,-107.174682617188,-594.482543945313,74.6337890625,-186.74365234375,-532.149047851563,80.6201171875,-186.192626953125,-560.961303710938,42.97265625,168.10498046875,-558.119873046875,38.7587890625,136.380126953125,-516.053466796875,38.6357421875,149.982177734375,-509.989501953125,41.7978515625,185.51220703125,-557.0478515625,47.3154296875,150.339599609375,-605.529052734375,47.078125,138.441528320313,-599.977783203125,387.15234375,151.482666015625,-215.739013671875,393.2734375,135.124145507813,-215.175537109375,376.1015625,53.5738525390625,-204.008544921875,434.78125,80.60400390625,-224.06787109375,434.515625,97.015625,-222.8896484375,496.08984375,52.9947509765625,-237.6015625,196.3046875,45.0557861328125,-464.513549804688,192.48828125,62.5899658203125,-460.213623046875,257.40625,48.9932861328125,-402.3759765625,293.46484375,77.8583984375,-450.286254882813,294.34375,96.5855712890625,-451.085571289063,335.08984375,46.8660888671875,-493.961547851563,180.125,-108.176635742188,-499.181640625,205.11328125,-107.859375,-558.302490234375,180.19140625,-188.498413085938,-498.699829101563,191.38671875,-187.94189453125,-526.205932617188,289.4453125,169.89892578125,-451.961181640625,262.80078125,136.858032226563,-419.11865234375,265.78515625,155.381103515625,-418.53515625,316.0078125,189.214599609375,-430.382690429688,448.1953125,165.957763671875,-38.376220703125,396.34375,149.287109375,-38.048095703125,448.57421875,185.783203125,-40.151611328125,-365.216796875,136.74267578125,-290.38623046875,-360.966796875,154.58447265625,-288.542724609375,-394.849609375,134.36865234375,-219.239501953125,-437.4814453125,167.648681640625,-228.96484375,-385.7255859375,148.3349609375,-216.599365234375,-433.4462890625,183.608154296875,-229.954833984375,-474.142578125,137.024536132813,-241.3515625,-485.900390625,150.705322265625,-244.476806640625,-45.1748046875,170.886962890625,-560.615478515625,-36.01171875,150.50634765625,-506.345458984375,-78.7080078125,190.507080078125,-554.56884765625,
- 221.39453125,167.013427734375,-505.411987304688,197.0703125,143.296630859375,-448.942504882813,167.91015625,191.019287109375,-527.345947265625,253.140625,139.02880859375,-559.726318359375,489.95703125,136.105590820313,-38.982177734375,499.640625,154.918701171875,-42.27734375,-46.171875,139.59130859375,-600.820556640625,-51.36328125,154.464111328125,-613.987060546875,344.1953125,127.338012695313,-489.86328125,-406.7255859375,53.7265625,0,-490.4501953125,53.7265625,0,-406.7255859375,-80.247314453125,0,-438.3291015625,52.365234375,-330.4033203125,-363.548828125,52.365234375,-292.75390625,-363.548828125,-80.247314453125,-292.75390625,-474.53125,52.365234375,-234.79248046875,-393.56640625,52.365234375,-213.471435546875,-406.9697265625,52.365234375,-49.060302734375,-490.6943359375,52.365234375,-49.060302734375,-406.9697265625,-80.247314453125,-49.060302734375,-321.6513671875,52.365234375,-480.31298828125,-266.794921875,52.365234375,-417.06201171875,-321.6513671875,140.325439453125,-480.31298828125,-266.794921875,140.325439453125,-417.06201171875,-266.794921875,-80.247314453125,-417.06201171875,-474.53125,137.759521484375,-234.79248046875,-393.56640625,137.759521484375,-213.471435546875,-393.56640625,-80.247314453125,-213.471435546875,-436.974609375,140.325439453125,-333.074462890625,-362.4248046875,140.325439453125,-294.968994140625,-406.9697265625,138.272705078125,-49.060302734375,-490.6943359375,138.272705078125,-49.060302734375,-52.2451171875,54.69287109375,-597.451049804688,-43.3994140625,54.69287109375,-514.195068359375,-41.2275390625,-80.247314453125,-514.420043945313,-194.8916015625,52.365234375,-466.952392578125,-234.9375,52.365234375,-540.478515625,-194.8916015625,-80.247314453125,-466.952392578125,-52.2451171875,140.325439453125,-597.451049804688,-43.3994140625,140.325439453125,-514.195068359375,-43.3994140625,-80.247314453125,-514.195068359375,-194.8916015625,138.579833984375,-466.952392578125,-234.9375,138.579833984375,-540.478515625,-294.22265625,171.75048828125,-448.6875,-399.7001953125,171.75048828125,-314.021728515625,
- -434.048828125,169.1845703125,-224.1318359375,-448.8310546875,169.69775390625,-49.060302734375,-47.8232421875,171.75048828125,-555.823120117188,-214.9140625,170.0048828125,-503.715454101563,-490.6943359375,-80.247314453125,-49.060302734375,-474.53125,-80.247314453125,-234.79248046875,-321.6513671875,-80.247314453125,-480.31298828125,-52.2451171875,-80.247314453125,-597.451049804688,-49.6259765625,-80.247314453125,-597.722412109375,-490.4501953125,-80.247314453125,0,-234.9375,-80.247314453125,-540.478515625,-438.3466796875,-80.247314453125,-330.3720703125,-47.8232421875,81.120849609375,-555.823120117188,-448.5888671875,78.086181640625,0,-448.8310546875,76.724853515625,-49.060302734375,-408.5341796875,51.35791015625,2.975341796875,-448.5888671875,74.664794921875,2.975341796875,-488.640625,51.35791015625,2.975341796875,-488.640625,-76.825927734375,2.975341796875,-408.5341796875,-76.825927734375,2.975341796875,319.73046875,52.365234375,-481.198852539063,265.05078125,52.365234375,-417.796508789063,265.05078125,-80.247314453125,-417.796508789063,235.7734375,52.365234375,-539.531982421875,195.4296875,52.365234375,-466.16748046875,44.1337890625,52.365234375,-514.018676757813,53.3173828125,52.365234375,-597.23828125,44.1337890625,-80.247314453125,-514.018676757813,436.82421875,52.365234375,-331.61181640625,362.1484375,52.365234375,-293.75634765625,436.82421875,140.325439453125,-331.61181640625,362.1484375,140.325439453125,-293.75634765625,362.1484375,-80.247314453125,-293.75634765625,235.7734375,137.759521484375,-539.531982421875,195.4296875,137.759521484375,-466.16748046875,195.4296875,-80.247314453125,-466.16748046875,321.99609375,140.325439453125,-479.235717773438,266.92578125,140.325439453125,-416.168701171875,44.1337890625,138.272705078125,-514.018676757813,53.3173828125,138.272705078125,-597.23828125,490.46484375,53.7265625,0,406.7421875,53.7265625,0,406.7421875,-80.247314453125,0,489.80078125,54.69287109375,-47.24755859375,406.07421875,54.69287109375,-47.24755859375,406.07421875,-80.247314453125,-44.83056640625,393.0859375,52.365234375,-211.8896484375,
- 474.1328125,52.365234375,-232.884765625,393.0859375,-80.247314453125,-211.8896484375,489.80078125,140.325439453125,-47.24755859375,406.07421875,140.325439453125,-47.24755859375,406.07421875,-80.247314453125,-47.24755859375,393.0859375,138.579833984375,-211.8896484375,474.1328125,138.579833984375,-232.884765625,399.484375,171.75048828125,-312.68408203125,294.4609375,171.75048828125,-447.7021484375,215.6015625,169.1845703125,-502.849731445313,48.7255859375,169.69775390625,-555.628540039063,447.9375,171.75048828125,-47.24755859375,433.609375,170.0048828125,-222.38720703125,53.3173828125,-80.247314453125,-597.23828125,235.7734375,-80.247314453125,-539.531982421875,436.82421875,-80.247314453125,-331.61181640625,489.80078125,-80.247314453125,-47.24755859375,489.80078125,-80.247314453125,-44.83056640625,474.1328125,-80.247314453125,-232.884765625,490.46484375,-80.247314453125,0,319.70703125,-80.247314453125,-481.221557617188,448.60546875,78.086181640625,0,447.9375,81.120849609375,-47.24755859375,48.7255859375,76.724853515625,-555.628540039063,408.12890625,51.90869140625,2.06396484375,408.12890625,-77.621337890625,2.06396484375,489.078125,-77.621337890625,2.06396484375,489.078125,51.90869140625,2.06396484375,448.60546875,75.460205078125,2.06396484375
- }
- PolygonVertexIndex: *1676 {
- a: 0,1,-3,1,0,-4,4,5,-7,5,4,-8,8,9,-11,9,8,-12,12,13,-15,13,12,-16,16,17,-19,17,16,-20,20,21,-23,21,20,-24,24,25,-27,25,24,-28,28,29,-31,29,28,-32,32,3,-1,33,3,-33,33,32,-35,7,33,-35,4,33,-8,3,33,-2,33,4,-2,1,4,-7,6,35,-2,6,5,-36,7,35,-6,35,7,-35,35,2,-2,35,34,-33,32,2,-36,2,32,-1,25,36,-27,26,36,-38,37,36,-39,26,37,-25,38,30,-30,37,38,-30,39,37,-30,24,37,-40,39,29,-32,24,39,-41,31,40,-40,40,31,-29,30,40,-29,40,30,-39,27,24,-41,40,38,-37,36,27,-41,27,36,-26,9,41,-11,42,10,-42,42,41,-44,15,42,-44,15,12,-43,42,12,-15,10,42,-45,42,14,-45,44,8,-11,8,44,-12,14,45,-45,45,11,-45,45,14,-14,15,45,-14,45,15,-44,45,43,-42,41,11,-46,11,41,-10,18,17,-47,18,46,-48,46,48,-48,22,47,-49,22,21,-48,49,18,-48,47,21,-50,18,49,-17,49,21,-24,19,16,-50,23,50,-50,19,49,-51,50,23,-21,22,50,-21,50,22,-49,50,48,-47,46,19,-51,19,46,-18,51,52,-54,54,55,-57,57,58,-60,60,61,-63,63,64,-66,66,67,-69,69,68,-68,70,71,-73,73,74,-76,76,75,-75,77,78,-80,80,79,-79,81,82,-84,84,85,-87,87,88,-90,90,89,-89,91,92,-94,94,95,-97,97,98,-100,100,101,-103,103,104,-106,106,107,-109,109,110,-112,112,113,-115,115,116,-118,118,117,-117,119,120,-122,122,123,-125,125,122,-125,126,127,-129,129,126,-129,130,131,-133,133,134,-136,136,137,-139,139,138,-138,140,141,-143,143,144,-146,146,147,-149,149,97,-100,150,98,-98,151,98,-151,152,146,-149,153,147,-147,154,147,-154,155,156,-158,66,155,-68,156,155,-67,68,156,-67,157,156,-69,51,53,-159,51,158,-160,51,160,-53,160,51,-160,159,161,-161,161,159,-159,54,56,-163,54,162,-164,55,54,-164,163,164,-56,163,165,-165,165,163,-163,151,166,-168,166,151,-151,99,167,-167,166,149,-100,149,166,-151,149,150,-98,167,99,-99,167,98,-152,168,57,-170,57,168,-59,59,169,-58,169,59,-171,170,168,-170,168,170,-172,62,172,-61,172,62,-174,61,172,-175,172,61,-61,172,175,-175,175,172,-174,65,64,-177,65,176,-178,63,176,-65,176,63,-179,179,176,-179,176,179,-178,180,72,-72,72,180,-182,182,183,-185,184,185,-183,186,182,-186,182,186,-188,188,189,-191,191,190,-190,85,192,-194,193,86,-86,194,195,-197,197,196,-196,96,95,-199,95,199,-199,95,200,-200,
- 200,95,-95,201,199,-201,199,201,-199,202,203,-103,202,102,-102,204,202,-102,204,101,-101,202,205,-204,205,202,-205,206,103,-106,103,206,-208,104,103,-208,104,207,-209,207,209,-209,209,207,-207,154,210,-212,210,154,-154,148,211,-211,148,210,-153,210,146,-153,146,210,-154,211,148,-148,211,147,-155,212,108,-214,108,212,-107,107,106,-213,107,212,-215,214,212,-214,214,213,-216,216,111,-218,111,216,-110,110,109,-217,216,218,-111,216,219,-219,216,217,-220,114,113,-221,220,221,-115,220,112,-223,112,220,-114,220,223,-222,223,220,-223,224,225,-227,226,227,-225,228,224,-228,224,228,-230,230,120,-232,120,230,-122,232,233,-235,233,235,-235,134,236,-238,237,135,-135,238,239,-241,241,240,-240,242,243,-145,144,243,-146,144,244,-243,244,144,-144,242,245,-244,245,242,-245,55,164,-166,56,55,-166,165,162,-57,61,174,-176,175,62,-62,62,175,-174,178,63,-180,65,179,-64,179,65,-178,75,189,-189,188,73,-76,188,190,-74,190,74,-74,189,75,-192,75,76,-192,76,190,-192,190,76,-75,79,83,-78,77,83,-83,77,82,-79,83,79,-82,81,79,-81,80,82,-82,82,80,-79,196,85,-195,84,194,-86,195,194,-85,195,84,-87,104,208,-210,105,104,-210,105,209,-207,107,214,-216,108,107,-216,108,215,-214,110,218,-220,219,111,-111,111,219,-218,222,112,-224,114,223,-113,223,114,-222,246,117,-248,117,118,-248,248,247,-119,249,118,-117,118,249,-249,246,248,-250,247,248,-247,120,250,-232,231,250,-252,230,231,-252,251,121,-231,251,252,-122,251,250,-253,131,126,-130,129,132,-132,132,129,-129,239,134,-242,133,241,-135,240,241,-134,240,133,-136,142,138,-141,140,138,-140,139,141,-141,141,139,-138,161,158,-54,52,161,-54,160,161,-53,171,58,-169,58,171,-60,59,171,-171,68,253,-158,68,69,-254,253,69,-255,155,69,-68,69,155,-255,254,155,-158,253,254,-158,255,72,-257,72,255,-71,70,255,-258,71,70,-259,70,257,-259,257,256,-259,257,255,-257,259,258,-257,258,259,-261,71,258,-261,180,71,-261,260,181,-181,181,260,-260,256,181,-260,181,256,-73,261,183,-183,261,262,-184,184,183,-263,262,185,-185,185,262,-264,262,261,-264,196,192,-86,192,196,-198,192,197,-194,195,193,-198,193,195,-87,90,92,-90,90,93,-93,93,
- 90,-89,201,96,-199,96,201,-95,94,201,-201,205,102,-204,102,205,-101,205,204,-101,264,225,-225,225,264,-266,225,265,-227,226,265,-267,226,266,-228,265,264,-267,229,264,-225,264,229,-268,228,267,-230,228,266,-268,266,228,-228,267,266,-265,120,268,-251,268,120,-120,269,268,-120,119,121,-270,269,121,-253,269,252,-251,268,269,-251,233,123,-123,123,233,-233,232,124,-124,124,232,-235,125,233,-123,233,125,-236,125,124,-236,235,124,-235,131,127,-127,127,131,-131,130,128,-128,128,130,-133,239,236,-135,236,239,-239,237,236,-239,238,240,-238,237,240,-136,142,136,-139,136,142,-142,136,141,-138,245,145,-244,143,145,-246,143,245,-245,187,261,-183,261,187,-271,271,270,-188,187,186,-272,185,271,-187,271,185,-264,271,263,-262,270,271,-262,92,87,-90,87,92,-92,93,87,-92,87,93,-89,246,272,-118,115,117,-273,115,272,-250,115,249,-117,272,246,-250,277,285,287,-294,281,280,290,-295,285,288,301,-300,275,283,281,-274,324,325,326,327,-329,284,285,299,-301,278,277,280,-292,277,276,279,-281,280,279,289,309,-291,322,323,282,-275,285,284,286,307,-288,286,284,276,-293,288,285,277,-279,293,287,307,-309,289,279,282,-296,291,280,281,-284,294,290,309,-311,293,308,292,276,-278,294,310,295,282,323,-282,299,297,303,-306,297,321,296,302,311,-304,302,296,300,-307,304,297,299,-302,305,303,311,-313,305,312,306,300,-300,307,286,292,-309,309,289,295,-311,311,302,306,-313,313,318,274,-283,315,284,300,-320,317,316,-297,282,279,314,-314,279,276,320,-315,276,284,315,-321,300,296,316,-320,283,275,318,-314,291,283,313,-315,278,291,314,-321,288,278,320,-316,301,288,315,-320,298,317,369,-337,316,317,298,-305,319,316,304,-302,281,323,322,-274,273,322,325,-325,322,274,326,-326,274,318,327,-327,318,275,328,-328,275,273,324,-329,330,338,340,-347,334,333,343,-348,338,341,357,-356,298,336,334,297,-305,337,338,355,-357,331,330,333,-345,330,329,332,-334,333,332,342,365,-344,321,379,335,-297,338,337,339,363,-341,339,337,329,-346,341,338,330,-332,346,340,363,-365,342,332,335,-349,344,333,334,-337,347,343,365,-367,346,364,345,329,-331,347,366,348,335,379,-335,355,353,359,-362,354,
- 351,350,353,-361,350,377,378,-354,353,378,352,358,367,-360,358,352,356,-363,360,353,355,-358,361,359,367,-369,361,368,362,356,-356,380,381,382,383,-385,363,339,345,-365,365,342,348,-367,367,358,362,-369,296,335,369,-318,371,337,356,-375,373,372,-353,349,375,373,-353,335,332,370,-370,332,329,376,-371,329,337,371,-377,356,352,372,-375,344,336,369,-371,331,344,370,-377,341,331,376,-372,357,341,371,-375,373,375,351,-355,372,373,354,-361,374,372,360,-358,378,377,349,-353,297,334,379,-322,350,351,381,-381,351,375,382,-382,375,349,383,-383,349,377,384,-384,377,350,380,-385
- }
- Edges: *838 {
- a: 0,1,2,4,5,6,7,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,26,28,29,30,31,32,34,35,36,37,38,40,41,42,43,44,46,47,48,50,51,53,55,56,57,59,60,64,67,71,72,73,76,78,83,84,89,90,96,97,100,101,103,104,106,108,110,113,114,116,119,122,124,125,126,131,132,137,140,143,144,150,151,153,155,157,158,159,161,163,167,169,170,172,174,178,180,181,183,188,189,194,197,198,205,206,208,209,210,211,213,215,217,219,221,223,226,230,233,234,235,239,242,243,248,251,252,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,278,279,280,281,282,283,284,285,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,335,336,337,338,339,340,341,342,344,345,346,347,348,350,351,352,353,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,370,371,372,374,375,377,378,380,381,383,384,386,387,389,390,391,392,393,394,398,399,404,406,407,409,410,411,412,416,417,418,422,424,425,427,428,431,432,433,435,436,440,441,442,443,446,447,449,450,455,461,465,466,467,469,471,475,476,477,481,482,483,484,487,488,489,490,491,495,496,500,502,503,505,506,507,511,512,513,515,517,519,521,523,524,525,526,527,528,529,531,533,535,536,537,538,539,540,542,543,544,545,546,549,550,551,552,554,556,557,558,559,561,562,566,567,569,571,573,574,575,578,579,581,584,585,586,590,591,593,595,596,599,601,602,603,604,608,609,610,611,614,615,617,619,621,629,633,634,635,637,641,643,644,647,649,650,651,652,653,655,659,660,661,663,664,667,670,671,672,673,675,676,677,681,682,686,687,688,689,690,691,693,695,697,698,699,700,701,703,705,706,707,708,709,711,712,713,714,717,718,719,720,722,723,724,725,727,729,730,734,735,736,740,743,746,752,753,760,762,768,770,771,775,777,781,784,786,792,793,797,799,802,806,807,813,814,816,821,824,827,830,836,839,845,846,853,855,861,862,863,865,867,869,870,872,874,876,878,882,883,886,887,890,891,894,895,898,900,902,903,908,909,910,912,917,920,921,922,926,927,932,935,936,942,946,951,952,955,958,959,960,964,
- 968,972,973,974,976,979,980,982,983,985,987,988,993,995,997,998,1001,1004,1005,1010,1011,1017,1019,1020,1021,1025,1026,1030,1031,1033,1035,1040,1042,1044,1050,1051,1053,1058,1059,1063,1068,1072,1077,1079,1081,1082,1084,1087,1088,1090,1093,1095,1099,1100,1101,1104,1105,1113,1114,1118,1119,1121,1123,1127,1130,1134,1136,1139,1140,1145,1146,1150,1153,1158,1163,1164,1170,1175,1178,1180,1185,1190,1194,1199,1203,1207,1208,1209,1211,1213,1215,1220,1223,1227,1232,1233,1239,1240,1244,1246,1247,1268,1294,1436,1260,1284,1256,1376,1314,1302,1269,1308,1320,1403,1303,1257,1279,1283,1280,1282,1285,1261,1315,1266,1267,1293,1263,1275,1297,1255,1254,1262,1298,1288,1259,1258,1281,1289,1304,1326,1316,1331,1265,1278,1338,1347,1353,1428,1341,1339,1348,1264,1277,1342,1337,1336,1350,1343,1349,1359,1299,1312,1311,1290,1324,1323,1344,1357,1356,1375,1388,1396,1400,1383,1382,1392,1378,1379,1381,1385,1387,1384,1391,1405,1409,1413,1417,1421,1422,1429,1340,1295,1334,1292,1441,1439,1270,1443,1271,1447,1272,1451,1273,1274,1472,1494,1464,1484,1460,1514,1502,1508,1520,1503,1461,1479,1483,1480,1482,1485,1465,1515,1425,1471,1493,1467,1475,1497,1459,1458,1466,1498,1488,1463,1462,1481,1489,1504,1526,1516,1531,1469,1478,1538,1541,1556,1540,1562,1649,1603,1542,1544,1550,1539,1557,1468,1477,1551,1537,1536,1543,1552,1558,1568,1499,1512,1511,1490,1524,1523,1553,1566,1565,1637,1600,1423,1606,1614,1618,1597,1601,1596,1610,1590,1593,1595,1599,1605,1598,1609,1424,1623,1627,1631,1635,1639,1643,1545,1547,1546,1534,1492,1659,1657,1572,1661,1573,1665,1574,1669,1575,1576
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *5028 {
- a: 0.613440811634064,0.0996326804161072,-0.783430755138397,0.613440752029419,0.0996326804161072,-0.783430695533752,0.613440811634064,0.0996326878666878,-0.783430695533752,0.648358762264252,0.0114086326211691,-0.761249482631683,0.648358821868896,0.0114086326211691,-0.761249482631683,0.648358821868896,0.0114086316898465,-0.761249423027039,0.0242653992027044,0.0245470441877842,0.99940413236618,0.0242653992027044,0.0245470441877842,0.99940413236618,0.0242653992027044,0.0245470460504293,0.99940413236618,0.0210019536316395,0.0171945989131927,0.999631524085999,0.0210019536316395,0.0171945989131927,0.999631524085999,0.0210019536316395,0.0171945970505476,0.999631524085999,0.999984979629517,-0.00495641632005572,-0.00233298889361322,0.999985098838806,-0.00495641632005572,-0.00233298889361322,0.999985039234161,-0.00495641632005572,-0.00233298889361322,0.999925673007965,-0.0121811097487807,0.000572769902646542,0.999925553798676,-0.0121811106801033,0.000572769902646542,0.99992561340332,-0.0121811106801033,0.000572769902646542,-0.582851767539978,0.046398963779211,0.811252772808075,-0.582851707935333,0.046398963779211,0.81125271320343,-0.582851827144623,0.046398963779211,0.811252772808075,-0.597015261650085,0.00691911019384861,0.802200078964233,-0.597015261650085,0.00691910972818732,0.802200078964233,-0.597015261650085,0.00691910972818732,0.802200019359589,0.616937696933746,-0.0031644650734961,0.787005662918091,0.616937696933746,-0.00316446484066546,0.787005722522736,0.616937756538391,-0.00316446484066546,0.787005662918091,0.61379611492157,-0.0129187637940049,0.789358854293823,0.61379611492157,-0.0129187628626823,0.789358854293823,0.61379611492157,-0.0129187628626823,0.789358854293823,-0.999773144721985,-0.0128382751718163,0.0169958099722862,-0.999773144721985,-0.0128382751718163,0.0169958081096411,-0.999773144721985,-0.0128382742404938,0.0169958099722862,-0.999650597572327,0.00666933320462704,0.0255797673016787,-0.999650537967682,0.00666933273896575,0.0255797654390335,-0.999650597572327,0.00666933320462704,0.0255797654390335,
- -0.00485665211454034,-0.008180215023458,0.999954700469971,-0.00485665258020163,-0.00818021595478058,0.999954760074615,-0.00485665211454034,-0.008180215023458,0.999954700469971,-0.00131416996009648,0.000487559562316164,0.999999046325684,-0.00131416984368116,0.000487559504108503,0.999998927116394,-0.00131417019292712,0.000487559620523825,0.999999046325684,-0.628166258335114,0.00644109817221761,-0.778052449226379,-0.628166317939758,0.00644109817221761,-0.778052449226379,-0.628166317939758,0.00644109817221761,-0.778052508831024,-0.626974940299988,0.00282828137278557,-0.779034316539764,-0.626974999904633,0.00282828137278557,-0.77903425693512,-0.626974940299988,0.00282828113995492,-0.779034197330475,-0.848207950592041,-0.0402556322515011,-0.528131365776062,-0.848207890987396,-0.0402556322515011,-0.528131365776062,-0.848207890987396,-0.0402556322515011,-0.528131365776062,-0.847808361053467,0.341519117355347,-0.405691415071487,-0.847808480262756,0.341519206762314,-0.405691474676132,-0.847808420658112,0.341519147157669,-0.405691474676132,-0.961799561977386,-0.135834664106369,-0.23767763376236,-0.961799502372742,-0.135834664106369,-0.23767763376236,-0.961799502372742,-0.135834664106369,-0.237677603960037,-0.962904930114746,0.268156796693802,0.0301006529480219,-0.962904989719391,0.268156766891479,0.0301006566733122,-0.962904989719391,0.268156826496124,0.0301006585359573,-0.994325220584869,0.106340065598488,-0.0030207447707653,-0.994325280189514,0.106340065598488,-0.00302074500359595,-0.994325220584869,0.106340050697327,-0.0030207447707653,0.0185052510350943,0.999807119369507,0.00658986624330282,0.0185052491724491,0.999807000160217,0.00658986624330282,0.0185052491724491,0.999807059764862,0.00658986577764153,0.0212996620684862,0.999728560447693,0.00944713689386845,0.0212996602058411,0.999728441238403,0.0094471350312233,0.0212996602058411,0.999728381633759,0.0094471350312233,0.0152109619230032,0.999861598014832,0.0067336461506784,0.015210960060358,0.999861657619476,0.00673364568501711,0.0152109609916806,0.999861598014832,0.0067336461506784,
- 0.737584352493286,-0.657605707645416,0.153376013040543,0.737584233283997,-0.657605588436127,0.153375998139381,0.737584292888641,-0.657605707645416,0.153376013040543,0.996404230594635,0.0631457343697548,0.0564904808998108,0.99640429019928,0.0631457343697548,0.0564904808998108,0.99640429019928,0.0631457343697548,0.0564904771745205,0.00265209120698273,-0.999958217144012,-0.00873955991119146,0.00265209120698273,-0.999958217144012,-0.00873955991119146,0.00265209097415209,-0.999958217144012,-0.00873955897986889,0.00614811899140477,-0.999955534934998,-0.00713580334559083,0.00614811899140477,-0.999955654144287,-0.0071358042769134,0.00614811992272735,-0.999955594539642,-0.00713580381125212,0.813331365585327,0.351024210453033,0.463976383209229,0.813331305980682,0.351024180650711,0.463976383209229,0.813331425189972,0.351024210453033,0.463976413011551,0.00351043348200619,-0.99993759393692,-0.0106055773794651,0.00351043255068362,-0.99993759393692,-0.0106055764481425,0.00351043348200619,-0.999937653541565,-0.0106055773794651,-0.000481348746689036,-0.999979436397552,-0.00639327196404338,-0.000481348688481376,-0.999979376792908,-0.00639327149838209,-0.000481348775792867,-0.999979496002197,-0.00639327289536595,0.00250709382817149,-0.999996602535248,0.000672772119287401,0.00250709406100214,-0.999996662139893,0.000672772119287401,0.00250709406100214,-0.999996662139893,0.000672772177495062,0.999993145465851,0.00173855794128031,0.00328465760685503,0.999993085861206,0.00173855805769563,0.00328465783968568,0.999993085861206,0.00173855817411095,0.00328465760685503,0.995945036411285,0.0880999192595482,-0.0182165838778019,0.99594509601593,0.0880999118089676,-0.0182165838778019,0.99594509601593,0.0880999118089676,-0.0182165838778019,0.973587334156036,-0.0469166971743107,-0.223442614078522,0.973587274551392,-0.0469166934490204,-0.223442614078522,0.973587274551392,-0.0469166897237301,-0.223442599177361,0.00178537028841674,0.999998390674591,0.000288688024738804,0.0017853700555861,0.999998331069946,0.000288687995634973,0.00178537040483207,0.999998450279236,0.000288688024738804,
- 0.848505616188049,-0.0436220057308674,-0.527385354042053,0.848505556583405,-0.0436220020055771,-0.527385354042053,0.848505616188049,-0.0436220057308674,-0.527385413646698,0.826042771339417,0.437292218208313,-0.355568587779999,0.826042771339417,0.437292248010635,-0.355568557977676,0.826042711734772,0.437292218208313,-0.355568557977676,0.00587164703756571,0.999970197677612,-0.00501520233228803,0.00587164703756571,0.999970197677612,-0.00501520233228803,0.00587164610624313,0.999970197677612,-0.00501520186662674,0.00382603681646287,0.999991834163666,0.00125018251128495,0.00382603681646287,0.999991893768311,0.00125018262770027,0.00382603704929352,0.999991893768311,0.00125018274411559,-0.0213826447725296,0.999758899211884,-0.00498655578121543,-0.0213826466351748,0.999758899211884,-0.00498655578121543,-0.0213826503604651,0.999759018421173,-0.00498655717819929,-0.997894048690796,-0.0417702905833721,0.0496259778738022,-0.997894048690796,-0.0417702943086624,0.0496259815990925,-0.997893929481506,-0.0417702831327915,0.0496259704232216,-0.874976813793182,-0.0523230396211147,0.481329053640366,-0.874976873397827,-0.0523230396211147,0.481329083442688,-0.874976933002472,-0.0523230470716953,0.48132911324501,-0.873318314552307,-0.0321887023746967,0.48608535528183,-0.873318374156952,-0.032188706099987,0.486085385084152,-0.873318254947662,-0.0321886986494064,0.48608535528183,0.0065142042003572,-0.999973833560944,0.00316719664260745,0.00651420373469591,-0.999973773956299,0.00316719640977681,0.00651420280337334,-0.999973714351654,0.00316719617694616,0.0197496432811022,-0.999800622463226,0.00293954066000879,0.0197496395558119,-0.999800562858582,0.00293954066000879,0.019749641418457,-0.999800622463226,0.00293954066000879,-0.999139130115509,0.00356570188887417,0.0413333028554916,-0.999139010906219,0.00356570119038224,0.041333295404911,-0.999139010906219,0.00356570142321289,0.041333295404911,0.00763993617147207,-0.999941527843475,-0.00765623338520527,0.00763993710279465,-0.999941468238831,-0.00765623385086656,0.00763993710279465,-0.999941527843475,-0.00765623338520527,
- -0.00655471300706267,-0.999843835830688,0.0164077579975128,-0.00655471486970782,-0.999844014644623,0.0164077617228031,-0.00655471393838525,-0.999843835830688,0.016407759860158,-0.00396852754056454,-0.999832093715668,0.0178897194564343,-0.00396852800622582,-0.999832093715668,0.0178897213190794,-0.00396852800622582,-0.999832153320313,0.0178897213190794,-0.0833689346909523,0.0139425667002797,-0.996421158313751,-0.0833689346909523,0.0139425657689571,-0.996421217918396,-0.0833689272403717,0.0139425648376346,-0.996421217918396,-0.199938774108887,0.432367265224457,-0.879251420497894,-0.199938774108887,0.432367235422134,-0.879251420497894,-0.199938789010048,0.432367265224457,-0.87925136089325,-0.410775452852249,-0.239084884524345,-0.879830598831177,-0.410775512456894,-0.239084884524345,-0.879830658435822,-0.410775512456894,-0.239084854722023,-0.879830598831177,-0.703213453292847,0.218441262841225,-0.676590144634247,-0.703213512897491,0.218441292643547,-0.676590144634247,-0.703213453292847,0.218441292643547,-0.676590144634247,-0.696490824222565,0.0769300758838654,-0.713429987430573,-0.696490824222565,0.0769300758838654,-0.713429927825928,-0.696490824222565,0.0769300758838654,-0.713429927825928,-0.00439998228102922,0.999900162220001,0.0134295299649239,-0.00439998181536794,0.999900162220001,0.0134295290336013,-0.00439998228102922,0.999900162220001,0.0134295290336013,-0.00303596467711031,0.999959588050842,-0.00846634618937969,-0.00303596490994096,0.999959588050842,-0.00846634618937969,-0.00303596467711031,0.999959468841553,-0.00846634618937969,-0.0157353132963181,0.999830663204193,0.00953910034149885,-0.0157353151589632,0.999830603599548,0.00953909941017628,-0.0157353170216084,0.999830782413483,0.009539102204144,0.0069594569504261,0.999962568283081,0.00513197109103203,0.0069594569504261,0.999962627887726,0.00513197109103203,0.00695945788174868,0.999962627887726,0.00513197155669332,0.179014414548874,0.00579104945063591,0.983829438686371,0.179014399647713,0.0057910499162972,0.983829379081726,0.179014414548874,0.0057910499162972,0.983829438686371,
- 0.609770059585571,-0.222940921783447,0.760577321052551,0.609770119190216,-0.222940921783447,0.760577321052551,0.609770119190216,-0.222940936684608,0.760577321052551,0.181771621108055,0.0183682572096586,0.983169257640839,0.181771621108055,0.0183682590723038,0.983169198036194,0.181771636009216,0.0183682572096586,0.983169198036194,0.667682766914368,0.0407567173242569,0.743329405784607,0.667682766914368,0.0407567173242569,0.743329405784607,0.667682766914368,0.0407567173242569,0.743329465389252,0.00310651352629066,-0.999964118003845,-0.00787715148180723,0.0031065137591213,-0.999964118003845,-0.00787715148180723,0.00310651352629066,-0.999964118003845,-0.00787715148180723,0.00390433077700436,-0.999978542327881,-0.00525655830278993,0.00390433147549629,-0.999978601932526,-0.00525655830278993,0.00390433124266565,-0.999978601932526,-0.00525655830278993,0.0035867199767381,-0.999984204769135,-0.00432330975309014,0.00358671951107681,-0.999984204769135,-0.00432330928742886,0.00358671951107681,-0.99998414516449,-0.00432330928742886,0.0155225992202759,-0.999878644943237,0.00135109457187355,0.0155225992202759,-0.999878644943237,0.00135109457187355,0.015522601082921,-0.999878704547882,0.00135109468828887,0.0149684688076377,-0.999885439872742,0.00224149529822171,0.0149684669449925,-0.999885439872742,0.00224149506539106,0.01496846601367,-0.999885439872742,0.00224149483256042,0.718301355838776,0.0110285645350814,-0.695644617080688,0.718301475048065,0.0110285663977265,-0.695644617080688,0.71830141544342,0.011028565466404,-0.695644617080688,0.587851047515869,0.390363961458206,-0.708552837371826,0.587851047515869,0.390363991260529,-0.708552896976471,0.58785092830658,0.390363961458206,-0.708552837371826,0.449086517095566,-0.209575697779655,-0.868561685085297,0.449086576700211,-0.209575742483139,-0.868561685085297,0.449086546897888,-0.209575727581978,-0.868561685085297,0.102736860513687,0.238193109631538,-0.965768694877625,0.102736860513687,0.238193154335022,-0.965768754482269,0.102736845612526,0.238193139433861,-0.965768694877625,0.133387058973312,0.108368031680584,-0.985121428966522,
- 0.133387058973312,0.108368031680584,-0.985121488571167,0.133387058973312,0.108368024230003,-0.985121428966522,0.00655423663556576,0.999975979328156,0.00221427483484149,0.00655423616990447,0.9999760389328,0.00221427483484149,0.00655423710122705,0.999976098537445,0.00221427483484149,-0.0111345630139112,0.999937534332275,0.000975590897724032,-0.0111345620825887,0.99993759393692,0.000975590897724032,-0.0111345630139112,0.99993759393692,0.000975590839516371,0.00343236140906811,0.999919056892395,0.0122505342587829,0.00343236140906811,0.99991899728775,0.0122505351901054,0.00343236164189875,0.99991911649704,0.0122505351901054,-0.0103012723848224,0.99994695186615,-0.00026090836036019,-0.0103012705221772,0.99994683265686,-0.00026090833125636,-0.0103012723848224,0.999946892261505,-0.00026090833125636,-0.67013543844223,0.00505101587623358,0.742221653461456,-0.67013543844223,0.00505101541057229,0.742221593856812,-0.67013543844223,0.00505101587623358,0.742221713066101,-0.18374414741993,-0.14199310541153,0.972664415836334,-0.183744177222252,-0.141993120312691,0.972664415836334,-0.18374414741993,-0.14199310541153,0.972664356231689,-0.634528875350952,0.166252791881561,0.754806637763977,-0.634528875350952,0.166252806782722,0.754806756973267,-0.634528875350952,0.166252791881561,0.754806637763977,-0.161208406090736,-0.0385345555841923,0.986167669296265,-0.161208435893059,-0.0385345630347729,0.986167788505554,-0.16120845079422,-0.0385345630347729,0.986167788505554,0.00558830425143242,-0.999978125095367,-0.0035353577695787,0.00558830425143242,-0.999978184700012,-0.00353535800240934,0.00558830378577113,-0.999978125095367,-0.0035353577695787,-0.000646428088657558,-0.999987423419952,0.00497243739664555,-0.000646428146865219,-0.999987423419952,0.00497243739664555,-0.000646428088657558,-0.999987363815308,0.00497243739664555,0.0123181138187647,-0.999920785427094,0.00259814877063036,0.0123181147500873,-0.999920785427094,0.002598149003461,0.0123181147500873,-0.999920785427094,0.002598149003461,0.0117577407509089,-0.999930858612061,7.89561454439536e-005,
- 0.0117577416822314,-0.999930858612061,7.8956138167996e-005,0.011757742613554,-0.999930799007416,7.8956138167996e-005,-0.00128553493414074,-0.999996721744537,0.00224596471525729,-0.00128553505055606,-0.999996721744537,0.00224596471525729,-0.00128553481772542,-0.999996542930603,0.002245964249596,0.999499261379242,0.0202365461736918,-0.0243267733603716,0.999499261379242,0.0202365443110466,-0.0243267714977264,0.999499201774597,0.0202365443110466,-0.0243267733603716,0.962670981884003,0.0500697195529938,-0.266002953052521,0.962670981884003,0.0500697121024132,-0.266002953052521,0.962670981884003,0.0500697121024132,-0.266002923250198,-0.534613013267517,0.0489518754184246,0.843678057193756,-0.534613013267517,0.048951867967844,0.843677997589111,-0.534612953662872,0.0489518642425537,0.843677937984467,0.439988493919373,0.0843952596187592,-0.894028782844543,0.439988493919373,0.0843952596187592,-0.894028842449188,0.439988493919373,0.0843952596187592,-0.894028842449188,-0.0160464737564325,0.0472822114825249,0.99875271320343,-0.0160464718937874,0.0472822040319443,0.998752653598785,-0.0160464700311422,0.047282200306654,0.998752593994141,0.770786702632904,-0.0770891085267067,-0.632412254810333,0.770786643028259,-0.0770890936255455,-0.632412135601044,0.770786643028259,-0.0770890936255455,-0.632412254810333,0.707023918628693,-0.0414401330053806,-0.705974400043488,0.707023918628693,-0.0414401330053806,-0.705974400043488,0.707023978233337,-0.0414401330053806,-0.705974459648132,0.00685767782852054,0.0919574350118637,0.995739340782166,0.0068576792255044,0.0919574648141861,0.99573940038681,0.00685767875984311,0.0919574499130249,0.995739340782166,-0.764426469802856,-0.0332177430391312,0.643854558467865,-0.764426469802856,-0.0332177430391312,0.64385449886322,-0.764426529407501,-0.0332177430391312,0.643854558467865,-0.746208786964417,-0.0310325641185045,0.664988338947296,-0.746208727359772,-0.0310325622558594,0.664988279342651,-0.746208786964417,-0.0310325641185045,0.664988338947296,-0.98513650894165,0.0679731816053391,0.157751724123955,-0.985136568546295,0.0679731741547585,0.157751724123955,
- -0.98513662815094,0.0679731741547585,0.157751724123955,-0.995187520980835,0.0851325392723084,0.0485204719007015,-0.99518758058548,0.0851325392723084,0.0485204756259918,-0.99518758058548,0.0851325541734695,0.0485204756259918,0.998059511184692,-0.0306391045451164,0.0542063564062119,0.998059570789337,-0.0306391026824713,0.0542063526809216,0.998059630393982,-0.0306391045451164,0.0542063601315022,-0.302688241004944,0.0617097169160843,0.9510897397995,-0.302688211202621,0.061709713190794,0.951089799404144,-0.302688241004944,0.061709713190794,0.9510897397995,0.0218022800981998,0.0289603713899851,0.999342739582062,0.021802281960845,0.0289603769779205,0.999342799186707,0.0218022763729095,0.0289603695273399,0.999342679977417,0.0430992245674133,0.0251582413911819,0.99875396490097,0.0430992282927036,0.0251582432538271,0.998754024505615,0.0430992245674133,0.0251582432538271,0.99875396490097,-0.0204619895666838,0.044815469533205,-0.998785734176636,-0.0204619877040386,0.0448154658079147,-0.998785614967346,-0.0204619895666838,0.0448154732584953,-0.998785734176636,-0.0388263799250126,0.0228485818952322,0.998984813690186,-0.0388263799250126,0.0228485800325871,0.998984754085541,-0.0388263761997223,0.0228485800325871,0.998984694480896,0.0617913827300072,-0.702411472797394,-0.709083795547485,0.0617913827300072,-0.702411532402039,-0.709083795547485,0.0617913752794266,-0.702411532402039,-0.709083795547485,0.0195682272315025,0.0443726666271687,-0.998823404312134,0.0195682253688574,0.0443726629018784,-0.998823344707489,0.0195682253688574,0.0443726591765881,-0.998823344707489,0.0242693424224854,0.0500787347555161,0.998450338840485,0.0242693442851305,0.0500787384808064,0.998450398445129,0.0242693442851305,0.0500787384808064,0.998450338840485,0.586843013763428,0.0512811169028282,0.808075189590454,0.586842954158783,0.0512811131775379,0.808075129985809,0.586843073368073,0.0512811206281185,0.808075189590454,0.761287271976471,0.0833412632346153,0.643036484718323,0.761287271976471,0.0833412706851959,0.643036544322968,0.761287331581116,0.0833412706851959,0.643036484718323,
- -0.993025183677673,0.0492477864027023,-0.10712493956089,-0.993025064468384,0.0492477789521217,-0.107124917209148,-0.993025183677673,0.049247782677412,-0.107124924659729,0.28166127204895,-0.25944983959198,0.923770904541016,0.28166127204895,-0.259449809789658,0.92377096414566,0.28166127204895,-0.25944983959198,0.923770904541016,0.590950191020966,-0.167197525501251,0.78919130563736,0.590950131416321,-0.167197525501251,0.789191365242004,0.590950191020966,-0.16719751060009,0.78919130563736,-0.291583567857742,0.0265674740076065,-0.956176280975342,-0.291583567857742,0.0265674758702517,-0.956176340579987,-0.29158353805542,0.0265674758702517,-0.956176340579987,-0.416289269924164,0.0197453945875168,-0.90901780128479,-0.416289240121841,0.0197453927248716,-0.90901780128479,-0.416289269924164,0.0197453927248716,-0.90901780128479,-0.464469581842422,0.0250566378235817,-0.885234534740448,-0.464469611644745,0.0250566434115171,-0.885234594345093,-0.4644695520401,0.0250566378235817,-0.885234534740448,0.00835738144814968,0.00502633629366755,-0.999952435493469,0.00835738051682711,0.00502633675932884,-0.999952435493469,0.00835738051682711,0.00502633582800627,-0.999952375888824,0.0148386629298329,0.00627821730449796,-0.999870121479034,0.0148386638611555,0.00627821730449796,-0.999870181083679,0.0148386638611555,0.00627821730449796,-0.999870121479034,-0.0404777340590954,0.16046604514122,0.986211061477661,-0.0404777340590954,0.16046604514122,0.986211061477661,-0.0404777340590954,0.16046604514122,0.986211061477661,-0.85052365064621,0.0593533553183079,-0.522576749324799,-0.850523710250854,0.0593533664941788,-0.522576868534088,-0.850523710250854,0.0593533664941788,-0.522576808929443,-0.995702087879181,0.0748174041509628,0.0545864962041378,-0.995702087879181,0.0748174041509628,0.0545864962041378,-0.995702147483826,0.0748174116015434,0.0545864999294281,-0.993722915649414,0.0923006534576416,-0.0632082894444466,-0.993722915649414,0.0923006609082222,-0.0632082894444466,-0.993722915649414,0.0923006609082222,-0.063208281993866,0.987023830413818,-0.0080255065113306,0.160373538732529,
- 0.987023830413818,-0.0080255065113306,0.160373538732529,0.987023711204529,-0.00802550558000803,0.160373508930206,-0.959711253643036,0.0260190181434155,-0.279780745506287,-0.959711313247681,0.0260190200060606,-0.279780775308609,-0.959711253643036,0.0260190162807703,-0.279780745506287,0.673156201839447,-0.697535932064056,0.245569601655006,0.673156142234802,-0.697535991668701,0.245569571852684,0.673156142234802,-0.697535932064056,0.245569571852684,-0.000257085484918207,-0.98951929807663,0.144400641322136,-0.000257085455814376,-0.98951929807663,0.144400641322136,-0.000257085484918207,-0.98951929807663,0.144400626420975,-0.54986172914505,-0.371653884649277,-0.748014390468597,-0.549861669540405,-0.371653854846954,-0.748014330863953,-0.54986172914505,-0.371653884649277,-0.748014390468597,-0.543044984340668,-0.362968266010284,-0.757202804088593,-0.543044984340668,-0.362968295812607,-0.757202804088593,-0.543045043945313,-0.362968325614929,-0.757202863693237,-0.20474249124527,-0.978783786296844,0.00793538801372051,-0.20474249124527,-0.978783667087555,0.00793538801372051,-0.204742446541786,-0.97878360748291,0.00793538708239794,0.875933766365051,-0.356093615293503,-0.325480610132217,0.875933706760406,-0.35609358549118,-0.325480550527573,0.875933647155762,-0.35609358549118,-0.325480550527573,0.870862662792206,-0.362463980913162,-0.331991165876389,0.870862603187561,-0.362463980913162,-0.331991136074066,0.870862662792206,-0.362463980913162,-0.331991165876389,-0.54562646150589,0.307173997163773,0.779702365398407,-0.545626580715179,0.307173997163773,0.779702425003052,-0.54562646150589,0.307174026966095,0.779702425003052,-0.411065280437469,0.842768967151642,-0.347513675689697,-0.411065340042114,0.842768967151642,-0.34751370549202,-0.411065250635147,0.842768967151642,-0.347513645887375,-0.588837444782257,0.705987155437469,-0.393513172864914,-0.588837444782257,0.705987155437469,-0.393513143062592,-0.588837444782257,0.705987155437469,-0.393513172864914,0.247137352824211,-0.964547514915466,0.0925811603665352,0.247137352824211,-0.964547455310822,0.092581145465374,
- 0.247137367725372,-0.964547514915466,0.0925811529159546,0.416945904493332,-0.842979371547699,0.33991476893425,0.41694587469101,-0.842979371547699,0.339914739131927,0.41694587469101,-0.842979252338409,0.339914739131927,0.0242099035531282,0.999633252620697,-0.0121349468827248,0.0242099035531282,0.999633193016052,-0.0121349459514022,0.0242099072784185,0.999633312225342,-0.0121349468827248,0.00268465606495738,0.999985158443451,0.00474163889884949,0.00268465606495738,0.999985218048096,0.00474163889884949,0.00268465629778802,0.999985218048096,0.00474163936451077,0.289610892534256,-0.0959698855876923,0.952321112155914,0.289610892534256,-0.0959698855876923,0.952320992946625,0.289610862731934,-0.0959698781371117,0.952320992946625,0.0843992829322815,0.00518169347196817,0.996418595314026,0.0843992829322815,0.0051816925406456,0.996418476104736,0.0843992829322815,0.00518169347196817,0.996418535709381,-0.991785764694214,0.00577309634536505,0.127780169248581,-0.991785764694214,0.00577309634536505,0.127780169248581,-0.991785705089569,0.00577309587970376,0.127780169248581,-0.990158021450043,0.0012658778578043,0.139948219060898,-0.990158021450043,0.0012658778578043,0.139948233962059,-0.990158081054688,0.0012658778578043,0.139948233962059,0.0138099389150739,0.999811828136444,-0.0136185334995389,0.013809940777719,0.999811887741089,-0.013618535362184,0.0138099389150739,0.999811887741089,-0.0136185344308615,0.000805411895271391,0.999994099140167,0.0033440962433815,0.000805411895271391,0.999994099140167,0.0033440962433815,0.000805411953479052,0.999994099140167,0.0033440962433815,0.342191398143768,-0.0708991438150406,0.936951637268066,0.342191368341446,-0.0708991214632988,0.936951577663422,0.342191398143768,-0.07089913636446,0.936951637268066,0.473765850067139,-0.00181700976099819,0.880648970603943,0.473765850067139,-0.00181700987741351,0.880649030208588,0.473765850067139,-0.00181700976099819,0.880649030208588,-0.929756641387939,-0.00577709684148431,0.368129223585129,-0.929756641387939,-0.0057770973071456,0.368129223585129,-0.929756641387939,-0.00577709684148431,0.368129193782806,
- -0.926577627658844,-0.00892514269798994,0.375997692346573,-0.926577627658844,-0.00892514269798994,0.375997692346573,-0.926577568054199,-0.00892514176666737,0.37599766254425,0.00470722001045942,0.999934077262878,0.0104672601446509,0.00470722047612071,0.999934136867523,0.0104672620072961,0.00470722047612071,0.999934077262878,0.0104672610759735,-0.0324619822204113,0.999376595020294,0.0138779999688268,-0.0324619822204113,0.999376595020294,0.0138779999688268,-0.0324619822204113,0.999376595020294,0.0138779999688268,0.637039661407471,-0.0124246729537845,0.77073085308075,0.637039661407471,-0.0124246748164296,0.770730912685394,0.637039721012115,-0.0124246748164296,0.77073085308075,0.643507957458496,-0.00837986078113317,0.765393614768982,0.643507897853851,-0.0083798598498106,0.765393555164337,0.643507957458496,-0.0083798598498106,0.765393614768982,-0.734830558300018,-0.0181469433009624,0.678007960319519,-0.734830558300018,-0.0181469414383173,0.678007960319519,-0.734830498695374,-0.0181469395756722,0.678007960319519,-0.866339564323425,-0.23120354115963,0.442719489336014,-0.86633962392807,-0.23120354115963,0.442719519138336,-0.86633962392807,-0.231203556060791,0.442719548940659,0.810869812965393,0.0116057507693768,-0.585111558437347,0.810869812965393,0.0116057517006993,-0.585111498832703,0.810869812965393,0.0116057507693768,-0.585111498832703,0.804893553256989,0.0195580013096333,-0.593096792697906,0.804893553256989,0.0195580031722784,-0.593096792697906,0.804893553256989,0.0195580013096333,-0.593096852302551,0.000903553212992847,0.999998509883881,-0.00147825258318335,0.00090355338761583,0.999998509883881,-0.00147825281601399,0.00090355338761583,0.999998569488525,-0.00147825269959867,-0.0176883693784475,0.999828696250916,0.0054578734561801,-0.0176883656531572,0.999828577041626,0.00545787205919623,-0.0176883693784475,0.999828696250916,0.00545787299051881,0.798746764659882,-0.0712790638208389,0.597430229187012,0.798746705055237,-0.0712790563702583,0.597430169582367,0.798746764659882,-0.0712790563702583,0.597430288791656,0.712117373943329,-0.00616820715367794,0.702033281326294,
- 0.712117373943329,-0.00616820715367794,0.702033281326294,0.712117373943329,-0.00616820808500052,0.702033281326294,0.628405213356018,-0.00676963664591312,-0.777856767177582,0.628405153751373,-0.00676963664591312,-0.777856707572937,0.628405213356018,-0.00676963618025184,-0.777856767177582,0.609959006309509,-0.0253281891345978,-0.792028069496155,0.609958946704865,-0.0253281872719526,-0.792028069496155,0.609958946704865,-0.0253281891345978,-0.7920281291008,-0.00514152972027659,0.999736368656158,0.0223780795931816,-0.00514152972027659,0.999736309051514,0.0223780795931816,-0.00514152925461531,0.999736309051514,0.0223780758678913,-0.013697387650609,0.99951446056366,0.0279881246387959,-0.013697387650609,0.99951446056366,0.0279881209135056,-0.013697387650609,0.99951446056366,0.0279881227761507,0.967288970947266,-0.00250979769043624,0.253664553165436,0.96728903055191,-0.00250979792326689,0.253664553165436,0.967288911342621,-0.0025097974576056,0.253664553165436,0.9203822016716,-0.0744432136416435,0.383868306875229,0.920382142066956,-0.0744432136416435,0.383868336677551,0.9203822016716,-0.0744432136416435,0.383868306875229,-0.320950448513031,-0.041705671697855,0.946177303791046,-0.320950448513031,-0.0417056679725647,0.946177244186401,-0.320950478315353,-0.041705671697855,0.946177303791046,-0.354522347450256,-0.0249982085078955,0.934713304042816,-0.354522347450256,-0.0249982066452503,0.934713304042816,-0.354522377252579,-0.0249982085078955,0.934713304042816,0.0111195622012019,0.999856412410736,0.0127853034064174,0.0111195612698793,0.999856412410736,0.0127853034064174,0.0111195612698793,0.999856412410736,0.0127853024750948,-0.0138490963727236,0.999443411827087,-0.0303507596254349,-0.013849095441401,0.999443352222443,-0.0303507596254349,-0.013849095441401,0.999443352222443,-0.0303507596254349,0.996564209461212,-0.070070706307888,0.0441565215587616,0.996564269065857,-0.070070706307888,0.0441565252840519,0.996564269065857,-0.070070706307888,0.0441565215587616,0.984060883522034,-0.00424129841849208,0.177781298756599,0.984060943126678,-0.00424129888415337,0.177781328558922,
- 0.984060883522034,-0.00424129841849208,0.177781328558922,0.0293921325355768,-0.000535486324224621,-0.999567866325378,0.0293921288102865,-0.000535486324224621,-0.999567806720734,0.0293921269476414,-0.00053548626601696,-0.999567806720734,0.0440022237598896,-0.00599240837618709,-0.999013423919678,0.0440022312104702,-0.00599240884184837,-0.999013543128967,0.0440022312104702,-0.00599240884184837,-0.999013483524323,-0.0283982027322054,0.0835530385375023,0.996098637580872,-0.0283981990069151,0.0835530385375023,0.996098637580872,-0.0283981971442699,0.0835530310869217,0.996098577976227,0.0291145779192448,-0.0961611270904541,0.994939863681793,0.0291145797818899,-0.0961611270904541,0.994939923286438,0.0291145779192448,-0.0961611345410347,0.994939863681793,-0.87024849653244,-0.0286642126739025,0.491778373718262,-0.870248436927795,-0.0286642126739025,0.491778433322906,-0.87024849653244,-0.0286642126739025,0.491778403520584,-0.867919683456421,-0.0111802089959383,0.496578574180603,-0.867919743061066,-0.011180211789906,0.496578574180603,-0.867919743061066,-0.0111802108585835,0.496578603982925,-0.84106183052063,-0.0100005967542529,0.540846586227417,-0.841061770915985,-0.0100005939602852,0.540846526622772,-0.84106183052063,-0.0100005948916078,0.540846526622772,-0.800591349601746,-0.168007209897041,0.575175702571869,-0.800591289997101,-0.16800719499588,0.575175642967224,-0.800591349601746,-0.16800719499588,0.575175642967224,0.829119622707367,-0.0391571298241615,-0.557698130607605,0.829119741916656,-0.0391571410000324,-0.55769819021225,0.829119741916656,-0.0391571372747421,-0.557698130607605,0.90785539150238,-0.0314484499394894,-0.418102353811264,0.90785539150238,-0.0314484536647797,-0.418102353811264,0.907855451107025,-0.03144845739007,-0.418102443218231,-0.233685433864594,-0.0958993956446648,0.967571496963501,-0.233685418963432,-0.0958993956446648,0.967571437358856,-0.23368538916111,-0.0958993956446648,0.967571377754211,-0.212014675140381,0.0515168681740761,0.975907623767853,-0.21201466023922,0.0515168607234955,0.975907742977142,-0.212014675140381,0.0515168607234955,0.975907742977142,
- 0.495889782905579,-0.00158063624985516,-0.868384122848511,0.495889753103256,-0.00158063624985516,-0.868384063243866,0.495889782905579,-0.00158063624985516,-0.868384122848511,0.388417571783066,-0.00970638170838356,-0.921432256698608,0.388417631387711,-0.00970638450235128,-0.921432316303253,0.388417631387711,-0.00970638450235128,-0.921432316303253,-0.0122676119208336,0.999693751335144,0.021492836996913,-0.0122676137834787,0.999693751335144,0.0214928407222033,-0.0122676128521562,0.999693691730499,0.021492836996913,0.00511055998504162,0.999986946582794,4.84683769172989e-005,0.00511055951938033,0.999986886978149,4.84683732793201e-005,0.00511055998504162,0.999986886978149,4.84683732793201e-005,0.995062053203583,0.00501542445272207,0.099127858877182,0.995061993598938,0.00501542445272207,0.0991278439760208,0.995061993598938,0.00501542445272207,0.099127858877182,0.948320388793945,-0.095329150557518,0.302656322717667,0.948320388793945,-0.095329150557518,0.302656292915344,0.948320329189301,-0.095329150557518,0.302656292915344,0.141524001955986,0.00310027017258108,-0.989929974079132,0.141523987054825,0.00310026993975043,-0.989929854869843,0.141524001955986,0.00310027040541172,-0.989930033683777,0.154182583093643,-0.00159984279889613,-0.9880411028862,0.154182568192482,-0.00159984268248081,-0.988041043281555,0.154182568192482,-0.00159984279889613,-0.988041043281555,0.0112214721739292,0.998949348926544,0.0444337464869022,0.0112214703112841,0.998949289321899,0.0444337390363216,0.0112214712426066,0.998949289321899,0.0444337390363216,-0.00993063393980265,0.999919235706329,0.00793666206300259,-0.00993063393980265,0.999919176101685,0.00793666206300259,-0.00993063300848007,0.999919235706329,0.00793666206300259,-0.999621391296387,0.00320788845419884,-0.0273310281336308,-0.999621331691742,0.00320788868702948,-0.0273310262709856,-0.999621331691742,0.00320788868702948,-0.0273310244083405,-0.968773782253265,-0.0967175513505936,-0.228304386138916,-0.96877384185791,-0.0967175737023354,-0.228304401040077,-0.968773901462555,-0.0967175662517548,-0.228304415941238,
- -0.0471556484699249,-0.0203292910009623,0.998680591583252,-0.0471556521952152,-0.0203292928636074,0.998680651187897,-0.0471556521952152,-0.0203292910009623,0.998680710792542,-0.0157821699976921,-0.00868221279233694,0.999837756156921,-0.015782168135047,-0.00868221279233694,0.999837756156921,-0.0157821699976921,-0.00868221279233694,0.999837756156921,0.00984987616539001,0.999812662601471,0.0166619997471571,0.00984987616539001,0.999812662601471,0.0166620016098022,0.00984987616539001,0.999812662601471,0.0166620016098022,-0.00341012282297015,0.999994158744812,-2.75273523584474e-005,-0.0034101230558008,0.999994218349457,-2.75273559964262e-005,-0.00341012328863144,0.999994218349457,-2.75273541774368e-005,-0.99200713634491,-0.0709075033664703,0.10437448322773,-0.99200713634491,-0.0709075108170509,0.10437449067831,-0.99200713634491,-0.0709075108170509,0.10437448322773,-0.969351172447205,-0.00182882288936526,0.245672285556793,-0.969351172447205,-0.00182882288936526,0.245672255754471,-0.96935111284256,-0.00182882288936526,0.245672255754471,-0.131793260574341,-0.00578835001215339,-0.991260409355164,-0.131793215870857,-0.00578834908083081,-0.991260290145874,-0.131793215870857,-0.00578834861516953,-0.991260230541229,-0.139736548066139,-0.00875955354422331,-0.990149915218353,-0.139736548066139,-0.00875955354422331,-0.990149974822998,-0.139736533164978,-0.00875955261290073,-0.990149915218353,-0.0118107497692108,0.999930143356323,0.000356843753252178,-0.0118107497692108,0.999930202960968,0.000356843782356009,-0.0118107497692108,0.999930202960968,0.000356843782356009,-0.00683613028377295,0.999471187591553,-0.0317895822227001,-0.00683612981811166,0.999471247196198,-0.0317895822227001,-0.00683613028377295,0.999471187591553,-0.0317895784974098,-0.903066873550415,-0.012446821667254,0.429319530725479,-0.90306681394577,-0.0124468207359314,0.429319530725479,-0.903066873550415,-0.012446821667254,0.429319560527802,-0.89610892534256,-0.00469264155253768,0.443809390068054,-0.89610892534256,-0.00469264155253768,0.443809419870377,-0.896108984947205,-0.00469264155253768,0.443809390068054,
- -0.304682284593582,-0.014126411639154,-0.952349305152893,-0.304682284593582,-0.014126411639154,-0.952349364757538,-0.304682284593582,-0.014126411639154,-0.952349305152893,-0.478905707597733,-0.08505479991436,-0.873736143112183,-0.478905767202377,-0.0850548073649406,-0.873736202716827,-0.478905767202377,-0.08505479991436,-0.873736202716827,0.370259910821915,0.011668655090034,0.928854882717133,0.370259881019592,0.011668655090034,0.928854882717133,0.370259910821915,0.0116686560213566,0.928854942321777,0.380124688148499,0.0201933737844229,0.924714863300323,0.380124628543854,0.0201933700591326,0.924714744091034,0.380124688148499,0.0201933737844229,0.924714863300323,-0.00576589861884713,0.999663233757019,-0.0252986457198858,-0.00576589861884713,0.999663293361664,-0.025298647582531,-0.00576589861884713,0.999663293361664,-0.025298647582531,-0.00148888351395726,0.999923288822174,0.0122950002551079,-0.00148888351395726,0.999923288822174,0.0122950002551079,-0.00148888374678791,0.999923467636108,0.012295002117753,-0.761797368526459,-0.0722926184535027,0.643769025802612,-0.761797428131104,-0.0722926184535027,0.643769025802612,-0.761797428131104,-0.0722926184535027,0.643769085407257,-0.669311761856079,-0.00731309223920107,0.742945790290833,-0.669311761856079,-0.00731309130787849,0.742945671081543,-0.669311702251434,-0.00731309130787849,0.742945671081543,-0.675458788871765,-0.00725519843399525,-0.737361967563629,-0.67545884847641,-0.00725519889965653,-0.737362027168274,-0.675458788871765,-0.00725519889965653,-0.737362086772919,-0.654867231845856,-0.0290605556219816,-0.755185008049011,-0.654867231845856,-0.0290605574846268,-0.755185067653656,-0.6548672914505,-0.0290605556219816,-0.755185008049011,-0.0199708454310894,0.999671578407288,-0.0160617679357529,-0.0199708435684443,0.999671578407288,-0.0160617679357529,-0.0199708435684443,0.999671578407288,-0.0160617679357529,-0.0193548258394003,0.99971067905426,-0.0142817497253418,-0.0193548258394003,0.999710619449615,-0.0142817506566644,-0.0193548239767551,0.99971067905426,-0.0142817487940192,
- -0.597100436687469,-0.0782176852226257,0.798343896865845,-0.597100496292114,-0.0782176926732063,0.79834395647049,-0.597100496292114,-0.0782176852226257,0.798344016075134,-0.475377589464188,-0.00213101552799344,0.879779398441315,-0.475377589464188,-0.00213101552799344,0.87977933883667,-0.475377529859543,-0.0021310152951628,0.87977933883667,-0.840605437755585,-0.0416801534593105,-0.540041863918304,-0.840605437755585,-0.0416801534593105,-0.540041863918304,-0.84060537815094,-0.0416801571846008,-0.540041863918304,-0.821386218070984,-0.0248666722327471,-0.569830000400543,-0.821386277675629,-0.0248666722327471,-0.569830060005188,-0.821386277675629,-0.0248666722327471,-0.569830060005188,-0.0150070786476135,0.999816000461578,0.011948436498642,-0.0150070786476135,0.999816000461578,0.0119484355673194,-0.0150070758536458,0.999815940856934,0.0119484346359968,0.0270500145852566,0.999616622924805,-0.00591630907729268,0.0270500127226114,0.99961656332016,-0.00591630861163139,0.0270500108599663,0.999616503715515,-0.00591630768030882,-0.312665969133377,-0.00382854300551116,0.949855387210846,-0.312665969133377,-0.00382854347117245,0.949855446815491,-0.312665998935699,-0.00382854347117245,0.949855446815491,-0.175036013126373,-0.0712282806634903,0.981982111930847,-0.175036042928696,-0.0712282955646515,0.981982171535492,-0.175036028027534,-0.0712282955646515,0.981982171535492,0.975316822528839,-0.00710861384868622,0.220695585012436,0.975316822528839,-0.00710861384868622,0.220695599913597,0.975316822528839,-0.00710861338302493,0.220695585012436,0.979092121124268,-0.000514743907842785,0.20341669023037,0.979092061519623,-0.000514743849635124,0.203416660428047,0.979092121124268,-0.000514743849635124,0.203416675329208,-0.996457993984222,0.026556858792901,-0.079788938164711,-0.996457993984222,0.026556858792901,-0.0797889456152916,-0.996457993984222,0.026556858792901,-0.0797889456152916,-0.991893827915192,-0.0600457452237606,-0.111986614763737,-0.991893887519836,-0.0600457452237606,-0.111986622214317,-0.991893887519836,-0.0600457452237606,-0.111986614763737,
- -0.995719909667969,-0.0630381628870964,-0.0675878971815109,-0.995719909667969,-0.0630381628870964,-0.0675878897309303,-0.995719850063324,-0.0630381628870964,-0.0675878897309303,-0.996276676654816,-0.0193298384547234,-0.0840180814266205,-0.99627673625946,-0.0193298384547234,-0.0840180888772011,-0.99627673625946,-0.0193298384547234,-0.0840180888772011,-0.191443756222725,-0.105248004198074,-0.975844264030457,-0.191443756222725,-0.105248011648655,-0.975844383239746,-0.191443786025047,-0.105248026549816,-0.975844383239746,-0.239031657576561,0.0236297212541103,-0.97072422504425,-0.239031672477722,0.0236297231167555,-0.970724284648895,-0.239031657576561,0.0236297231167555,-0.97072434425354,0.348111152648926,-0.0615223757922649,0.935432314872742,0.348111122846603,-0.0615223757922649,0.935432314872742,0.348111122846603,-0.0615223757922649,0.935432314872742,0.186046451330185,-0.067361131310463,0.980229198932648,0.186046436429024,-0.067361131310463,0.980229198932648,0.186046421527863,-0.067361131310463,0.980229139328003,-0.886180698871613,-0.0810063034296036,-0.456203609704971,-0.886180639266968,-0.0810063034296036,-0.456203639507294,-0.886180758476257,-0.081006295979023,-0.456203609704971,-0.898116171360016,0.0486821942031384,-0.43705540895462,-0.898116171360016,0.0486821942031384,-0.437055349349976,-0.898116230964661,0.0486821979284287,-0.43705540895462,0.802448809146881,-0.0121972160413861,0.596596360206604,0.802448749542236,-0.0121972151100636,0.596596300601959,0.802448809146881,-0.0121972151100636,0.596596360206604,0.72233122587204,-0.00438465503975749,0.691533207893372,0.722331285476685,-0.00438465410843492,0.691533207893372,0.722331285476685,-0.0043846545740962,0.691533148288727,-0.00128916511312127,0.999987602233887,0.00482138711959124,-0.00128916511312127,0.999987542629242,0.00482138665392995,-0.00128916511312127,0.999987542629242,0.00482138665392995,-0.0176025219261646,0.999702632427216,-0.016872376203537,-0.0176025219261646,0.99970269203186,-0.0168723780661821,-0.0176025219261646,0.99970269203186,-0.0168723780661821,
- -0.336397767066956,0.00537079013884068,0.941704630851746,-0.336397796869278,0.00537079060450196,0.941704750061035,-0.336397767066956,0.00537079060450196,0.941704750061035,-0.525140881538391,-0.0963191017508507,0.845546960830688,-0.525140821933746,-0.0963191092014313,0.845547020435333,-0.525140821933746,-0.0963191092014313,0.845546960830688,0.921105444431305,-0.00185030442662537,0.389308899641037,0.92110550403595,-0.00185030442662537,0.389308840036392,0.92110538482666,-0.00185030442662537,0.389308869838715,0.926194846630096,0.00302741187624633,0.377032965421677,0.926194846630096,0.00302741164341569,0.377032965421677,0.926194906234741,0.00302741210907698,0.377032965421677,-0.238279923796654,-0.968073546886444,0.0778227671980858,-0.238279953598976,-0.968073606491089,0.077822782099247,-0.238279923796654,-0.968073427677155,0.0778227746486664,-0.0110322777181864,-0.525577425956726,-0.850674331188202,-0.0110322767868638,-0.525577425956726,-0.850674271583557,-0.0110322758555412,-0.525577425956726,-0.850674211978912,-0.347188889980316,-0.399828046560287,-0.848290860652924,-0.347188889980316,-0.399828106164932,-0.848290920257568,-0.347188860177994,-0.399828046560287,-0.848290801048279,-0.111163042485714,-0.969120144844055,0.220111504197121,-0.111163049936295,-0.96912008523941,0.220111519098282,-0.111163035035133,-0.969119966030121,0.220111504197121,-0.577970325946808,-0.464818775653839,-0.670741260051727,-0.577970325946808,-0.464818805456162,-0.670741260051727,-0.577970325946808,-0.464818775653839,-0.670741200447083,-0.904084205627441,-0.282961815595627,-0.320256769657135,-0.904084205627441,-0.282961815595627,-0.320256769657135,-0.904084205627441,-0.282961845397949,-0.320256799459457,-0.013330489397049,-0.965099930763245,-0.261542171239853,-0.013330489397049,-0.965099990367889,-0.261542171239853,-0.0133304903283715,-0.965099930763245,-0.261542201042175,-0.822571694850922,-0.514897882938385,0.241362482309341,-0.822571754455566,-0.51489794254303,0.241362497210503,-0.822571814060211,-0.51489794254303,0.241362512111664,-0.913524389266968,-0.400045603513718,-0.0737343654036522,
- -0.913524329662323,-0.400045543909073,-0.0737343579530716,-0.913524448871613,-0.400045603513718,-0.0737343654036522,-0.197599917650223,-0.875852823257446,-0.440268278121948,-0.197599917650223,-0.875852763652802,-0.440268248319626,-0.197599932551384,-0.875852823257446,-0.440268337726593,-0.192894041538239,-0.981204926967621,0.00536544201895595,-0.192894071340561,-0.981204986572266,0.00536544295027852,-0.192894071340561,-0.981204986572266,0.00536544248461723,0.426955431699753,0.755668640136719,0.496662735939026,0.426955461502075,0.755668640136719,0.496662706136703,0.426955461502075,0.755668699741364,0.496662735939026,0.32389572262764,0.819784998893738,0.472275495529175,0.32389572262764,0.819784998893738,0.472275495529175,0.323895752429962,0.819784998893738,0.472275465726852,0.378369390964508,-0.861353278160095,0.338979512453079,0.37836942076683,-0.86135321855545,0.338979512453079,0.37836942076683,-0.861353278160095,0.338979542255402,-0.01890161447227,-0.982702672481537,0.184222832322121,-0.01890161447227,-0.982702732086182,0.184222862124443,-0.01890161447227,-0.982702732086182,0.184222847223282,-0.353408485651016,0.748917698860168,-0.560557425022125,-0.353408455848694,0.748917818069458,-0.560557425022125,-0.353408455848694,0.748917758464813,-0.560557425022125,-0.356844961643219,0.805431246757507,-0.473225206136703,-0.356844931840897,0.805431246757507,-0.473225146532059,-0.356844931840897,0.805431246757507,-0.473225146532059,0.393704026937485,-0.890006124973297,-0.22996997833252,0.393703997135162,-0.890006124973297,-0.229969963431358,0.39370396733284,-0.890006065368652,-0.229969948530197,-0.394220799207687,0.880072951316834,0.26469150185585,-0.39422082901001,0.880072951316834,0.26469150185585,-0.394220799207687,0.880072891712189,0.264691472053528,0.0341142192482948,0.854691088199615,0.518014848232269,0.0341142266988754,0.854691088199615,0.518014907836914,0.0341142229735851,0.854691028594971,0.518014848232269,-0.155413016676903,-0.97972160577774,0.126461043953896,-0.155413016676903,-0.979721546173096,0.126461029052734,
- -0.155413031578064,-0.97972160577774,0.126461043953896,-0.252068072557449,-0.967211842536926,0.0310294292867184,-0.252068102359772,-0.967211902141571,0.0310294330120087,-0.252068102359772,-0.967211902141571,0.0310294348746538,0.0907138288021088,0.812002599239349,-0.576561152935028,0.0907138288021088,0.812002599239349,-0.576561212539673,0.0907138362526894,0.812002599239349,-0.576561212539673,-0.013406272046268,0.87249368429184,-0.488441318273544,-0.013406272046268,0.87249368429184,-0.4884412586689,-0.0134062739089131,0.872493743896484,-0.488441288471222,0.451652944087982,-0.883850514888763,0.121728777885437,0.451652973890305,-0.883850514888763,0.121728785336018,0.451652973890305,-0.883850514888763,0.121728777885437,0.136446699500084,-0.973563015460968,0.183186635375023,0.136446699500084,-0.973563015460968,0.183186605572701,0.136446714401245,-0.973563075065613,0.183186620473862,-0.581838965415955,0.766424655914307,-0.272133558988571,-0.581839025020599,0.766424715518951,-0.272133558988571,-0.58183890581131,0.766424655914307,-0.272133529186249,-0.549343645572662,0.805888295173645,-0.220829606056213,-0.549343645572662,0.80588835477829,-0.220829635858536,-0.549343585968018,0.805888235569,-0.220829591155052,-0.0186595898121595,-0.968123555183411,-0.249777227640152,-0.0186595916748047,-0.968123495578766,-0.249777242541313,-0.0186595916748047,-0.968123495578766,-0.249777227640152,0.827911972999573,-0.525665462017059,0.195544123649597,0.827911972999573,-0.525665521621704,0.195544138550758,0.827911972999573,-0.525665462017059,0.195544123649597,0.907099366188049,-0.400086760520935,-0.130772307515144,0.907099306583405,-0.400086730718613,-0.130772307515144,0.907099306583405,-0.400086760520935,-0.130772307515144,-0.177974060177803,-0.960169017314911,-0.215408489108086,-0.177974045276642,-0.960168957710266,-0.215408444404602,-0.177974030375481,-0.960168957710266,-0.215408444404602,0.801963925361633,-0.511768102645874,-0.308135151863098,0.801963984966278,-0.511768162250519,-0.308135181665421,0.801963925361633,-0.511768162250519,-0.308135211467743,
- 0.688953638076782,-0.395015835762024,-0.607704997062683,0.688953638076782,-0.395015805959702,-0.607705056667328,0.688953638076782,-0.395015835762024,-0.607704997062683,-0.184692397713661,-0.968546211719513,-0.166754245758057,-0.184692397713661,-0.968546152114868,-0.166754215955734,-0.184692412614822,-0.968546211719513,-0.166754230856895,0.790427684783936,-0.462528944015503,-0.401610285043716,0.790427803993225,-0.46252903342247,-0.401610344648361,0.79042774438858,-0.462529003620148,-0.401610314846039,0.52947074174881,-0.278503000736237,-0.801309466362,0.52947074174881,-0.278503000736237,-0.801309406757355,0.529470682144165,-0.278502970933914,-0.801309406757355,0.261892110109329,-0.964426636695862,0.0359689854085445,0.261892080307007,-0.964426636695862,0.0359689816832542,0.261892080307007,-0.964426696300507,0.0359689891338348,-0.129209518432617,-0.519756197929382,-0.844487071037292,-0.129209518432617,-0.519756138324738,-0.844487130641937,-0.129209533333778,-0.519756138324738,-0.844487071037292,0.19186794757843,-0.400006920099258,-0.896203815937042,0.191867932677269,-0.400006890296936,-0.896203756332397,0.191867932677269,-0.400006890296936,-0.896203696727753,0.463850110769272,-0.784039437770844,-0.41246235370636,0.463850080966949,-0.784039497375488,-0.412462323904037,0.463850110769272,-0.784039437770844,-0.412462323904037,0.304599970579147,-0.939878046512604,-0.154428005218506,0.304599970579147,-0.939878106117249,-0.154428020119667,0.304599970579147,-0.939878106117249,-0.154428005218506,-0.848392009735107,0.120450630784035,0.515482842922211,-0.848392009735107,0.120450630784035,0.515482902526855,-0.848392069339752,0.120450653135777,0.515482902526855,-0.490934371948242,0.795671701431274,0.354810029268265,-0.490934282541275,0.795671582221985,0.354809999465942,-0.490934312343597,0.79567152261734,0.354809999465942,-0.463679611682892,0.812231838703156,0.353949815034866,-0.463679671287537,0.812231957912445,0.353949815034866,-0.463679671287537,0.812231957912445,0.353949815034866,-0.565025985240936,0.824000239372253,-0.0420611016452312,
- -0.565026044845581,0.824000298976898,-0.0420611016452312,-0.565026044845581,0.824000358581543,-0.0420611053705215,-0.836623907089233,0.151379257440567,-0.526445388793945,-0.836623966693878,0.151379257440567,-0.526445329189301,-0.836623966693878,0.151379242539406,-0.526445329189301,0.616943001747131,-0.785102605819702,-0.0547294057905674,0.616943001747131,-0.785102605819702,-0.0547294020652771,0.616942942142487,-0.785102546215057,-0.0547294020652771,0.305718302726746,-0.949499309062958,0.0706220865249634,0.305718272924423,-0.949499309062958,0.0706220865249634,0.305718272924423,-0.949499249458313,0.0706220716238022,-0.936166107654572,-0.348778873682022,0.0441155135631561,-0.936166226863861,-0.348778903484344,0.0441155135631561,-0.936166107654572,-0.348778903484344,0.0441155135631561,-0.575977087020874,0.8164923787117,0.0398821383714676,-0.575977027416229,0.816492438316345,0.0398821383714676,-0.575977027416229,0.816492319107056,0.039882130920887,-0.571151614189148,0.819788873195648,0.0416182391345501,-0.571151614189148,0.819788753986359,0.0416182391345501,-0.571151673793793,0.819788813591003,0.0416182428598404,-0.0225055329501629,0.0895984768867493,0.995723724365234,-0.0225055310875177,0.0895984619855881,0.99572366476059,-0.022505534812808,0.0895984768867493,0.995723724365234,-0.0529172606766224,-0.996963441371918,0.05712915584445,-0.0529172606766224,-0.996963381767273,0.0571291483938694,-0.0529172644019127,-0.996963441371918,0.05712915584445,0.436073184013367,0.897961378097534,-0.0592063888907433,0.436073184013367,0.897961497306824,-0.0592063888907433,0.436073154211044,0.897961378097534,-0.0592063888907433,0.484924346208572,0.874553203582764,0.00222537340596318,0.484924405813217,0.874553322792053,0.00222537363879383,0.484924376010895,0.874553263187408,0.00222537340596318,-0.228045880794525,-0.883352100849152,0.409492522478104,-0.228045865893364,-0.883352100849152,0.409492522478104,-0.228045880794525,-0.883352100849152,0.409492522478104,-0.21114718914032,-0.973973393440247,0.0824175029993057,-0.211147159337997,-0.973973393440247,0.0824174955487251,
- -0.211147144436836,-0.973973333835602,0.0824174955487251,0.406706809997559,0.764540731906891,-0.500067055225372,0.406706839799881,0.764540672302246,-0.500067114830017,0.406706809997559,0.764540672302246,-0.500067055225372,0.345591217279434,0.80645614862442,-0.479786515235901,0.345591217279434,0.806456208229065,-0.479786545038223,0.345591247081757,0.806456208229065,-0.479786545038223,-0.158894345164299,-0.979986488819122,0.119912572205067,-0.158894345164299,-0.979986548423767,0.119912564754486,-0.15889436006546,-0.979986488819122,0.119912579655647,-0.254427343606949,-0.96709132194519,0.00107349187601358,-0.254427313804626,-0.967091262340546,0.00107349175959826,-0.254427343606949,-0.96709132194519,0.00107349187601358,0.155419319868088,0.812197029590607,-0.56229966878891,0.155419319868088,0.812196969985962,-0.562299609184265,0.155419304966927,0.812196969985962,-0.562299609184265,0.0455629713833332,0.871481835842133,-0.488306850194931,0.0455629676580429,0.871481776237488,-0.488306790590286,0.0455629713833332,0.871481835842133,-0.488306850194931,-0.129180416464806,-0.39970737695694,-0.907494604587555,-0.129180431365967,-0.39970737695694,-0.907494604587555,-0.129180416464806,-0.399707347154617,-0.907494604587555,0.179216608405113,-0.521817982196808,-0.83401882648468,0.179216608405113,-0.521817922592163,-0.83401882648468,0.179216608405113,-0.521817922592163,-0.83401882648468,-0.240066289901733,-0.970645427703857,0.0146823497489095,-0.240066260099411,-0.970645368099213,0.0146823478862643,-0.240066319704056,-0.970645427703857,0.0146823497489095,-0.719427943229675,-0.395609527826309,-0.570891082286835,-0.719427943229675,-0.395609498023987,-0.57089102268219,-0.719427943229675,-0.395609527826309,-0.57089102268219,-0.816167771816254,-0.517508864402771,-0.257010996341705,-0.816167831420898,-0.517508983612061,-0.257010996341705,-0.816167771816254,-0.517508924007416,-0.257010966539383,0.171034798026085,-0.961700677871704,-0.214193686842918,0.171034783124924,-0.961700677871704,-0.214193671941757,0.171034783124924,-0.961700677871704,-0.21419370174408,
- -0.533133625984192,-0.776937365531921,-0.334868550300598,-0.533133625984192,-0.776937365531921,-0.334868520498276,-0.533133625984192,-0.776937305927277,-0.334868520498276,-0.221010118722916,-0.947156965732574,-0.232482567429543,-0.221010118722916,-0.947157025337219,-0.232482567429543,-0.221010088920593,-0.947156965732574,-0.232482552528381,0.705994665622711,-0.237124592065811,0.667340576648712,0.705994665622711,-0.237124606966972,0.667340576648712,0.705994665622711,-0.237124606966972,0.667340517044067,0.495779365301132,0.764172494411469,0.412605196237564,0.495779395103455,0.764172494411469,0.412605226039886,0.495779454708099,0.764172554016113,0.412605285644531,0.452729821205139,0.837417840957642,0.306213915348053,0.452729791402817,0.837417840957642,0.306213885545731,0.452729851007462,0.837417900562286,0.306213945150375,-0.280672788619995,0.369554102420807,0.885806083679199,-0.280672788619995,0.369554132223129,0.885806143283844,-0.280672818422318,0.369554132223129,0.885806202888489,-0.424248456954956,0.00749579910188913,0.905514717102051,-0.424248516559601,0.007495800498873,0.905514776706696,-0.424248486757278,0.007495800498873,0.905514717102051,-0.609915912151337,-0.791671693325043,-0.0354754626750946,-0.609915912151337,-0.791671693325043,-0.0354754664003849,-0.609915912151337,-0.791671752929688,-0.0354754626750946,-0.400607407093048,-0.91473913192749,0.0525915957987309,-0.400607407093048,-0.914739191532135,0.0525915995240211,-0.400607407093048,-0.914739072322845,0.0525915920734406,0.837164103984833,-0.546951711177826,0.000220105561311357,0.837164163589478,-0.546951711177826,0.000220105575863272,0.837164044380188,-0.546951711177826,0.000220105561311357,0.57824045419693,0.814699411392212,0.0436233095824718,0.57824045419693,0.814699351787567,0.0436233095824718,0.57824045419693,0.814699351787567,0.0436233095824718,0.586576879024506,0.808883607387543,0.040432907640934,0.586576879024506,0.808883607387543,0.040432907640934,0.58657693862915,0.808883666992188,0.0404329113662243,0.192289337515831,-0.10911363363266,-0.975253224372864,
- 0.192289337515831,-0.109113641083241,-0.975253283977509,0.192289367318153,-0.109113655984402,-0.975253343582153,0.2413649559021,0.0257013794034719,-0.97009402513504,0.241364941000938,0.0257013794034719,-0.970094084739685,0.241364941000938,0.0257013794034719,-0.970093965530396,0.436829626560211,-0.165297150611877,-0.884226679801941,0.436829596757889,-0.165297150611877,-0.884226679801941,0.436829596757889,-0.165297150611877,-0.884226679801941,0.263340801000595,0.00595279969274998,-0.96468448638916,0.263340801000595,0.00595280015841126,-0.964684545993805,0.263340801000595,0.00595279969274998,-0.964684545993805,-0.514067649841309,0.85415506362915,-0.0784446373581886,-0.514067709445953,0.85415506362915,-0.0784446448087692,-0.514067649841309,0.85415506362915,-0.0784446373581886,-0.615772187709808,0.786364555358887,-0.049552958458662,-0.615772187709808,0.786364555358887,-0.049552958458662,-0.615772187709808,0.786364555358887,-0.0495529621839523,-0.847518920898438,-0.527571201324463,-0.0581404268741608,-0.847518980503082,-0.527571201324463,-0.0581404343247414,-0.847518980503082,-0.527571201324463,-0.0581404343247414,-0.749493300914764,-0.658866703510284,-0.0644544810056686,-0.749493360519409,-0.658866763114929,-0.0644544884562492,-0.749493300914764,-0.658866703510284,-0.0644544810056686,0.629160583019257,-0.775342881679535,0.0547764040529728,0.629160523414612,-0.775342881679535,0.0547764040529728,0.629160583019257,-0.775342881679535,0.0547764115035534,0.596137881278992,-0.801844596862793,0.040802787989378,0.596137940883636,-0.801844656467438,0.0408027917146683,0.596137940883636,-0.801844596862793,0.040802787989378,-0.171999350190163,-0.79243677854538,-0.585200846195221,-0.171999335289001,-0.79243677854538,-0.585200846195221,-0.171999365091324,-0.792436838150024,-0.585200846195221,-0.00512110348790884,-0.93643456697464,-0.35080498456955,-0.00512110302224755,-0.93643456697464,-0.350804954767227,-0.00512110348790884,-0.93643456697464,-0.350804954767227,0.216941222548485,-0.608437716960907,0.763374149799347,0.216941222548485,-0.608437776565552,0.763374209403992,
- 0.216941207647324,-0.608437657356262,0.763374149799347,0.165689826011658,0.809469640254974,0.563299000263214,0.165689840912819,0.809469640254974,0.563299059867859,0.165689840912819,0.809469640254974,0.563299000263214,0.168457075953484,0.826803207397461,0.536673784255981,0.168457075953484,0.826803147792816,0.536673843860626,0.168457075953484,0.826803147792816,0.536673784255981,0.521903932094574,0.823809862136841,0.221254855394363,0.521903932094574,0.823809742927551,0.221254840493202,0.521903872489929,0.823809862136841,0.221254840493202,-0.451435059309006,-0.858653485774994,-0.242735624313354,-0.451435059309006,-0.858653485774994,-0.242735624313354,-0.451435029506683,-0.858653545379639,-0.242735609412193,-0.36807245016098,-0.891958594322205,-0.262550175189972,-0.368072390556335,-0.891958594322205,-0.26255014538765,-0.368072420358658,-0.891958594322205,-0.262550175189972,0.820972800254822,-0.327967882156372,0.467376559972763,0.820972740650177,-0.32796785235405,0.467376530170441,0.820972740650177,-0.32796785235405,0.467376559972763,0.606692671775818,0.780076205730438,0.152987137436867,0.606692731380463,0.780076265335083,0.152987167239189,0.606692731380463,0.780076205730438,0.152987137436867,0.553846716880798,0.814482271671295,0.172836154699326,0.553846716880798,0.81448233127594,0.172836154699326,0.553846716880798,0.81448233127594,0.172836139798164,0.0275370571762323,-0.999368667602539,-0.0224475152790546,0.0275370590388775,-0.999368727207184,-0.0224475190043449,0.0275370553135872,-0.999368667602539,-0.0224475171416998,-0.455044627189636,0.889968514442444,-0.0298412870615721,-0.455044597387314,0.889968454837799,-0.0298412870615721,-0.455044627189636,0.889968514442444,-0.0298412851989269,-0.447379052639008,0.894126951694489,-0.0197240710258484,-0.447378993034363,0.894126951694489,-0.0197240710258484,-0.447379052639008,0.894126951694489,-0.0197240710258484,-0.90565413236618,-0.399723887443542,-0.14146201312542,-0.905654072761536,-0.399723887443542,-0.14146201312542,-0.905654013156891,-0.399723947048187,-0.141462028026581,
- -0.836693286895752,-0.521314918994904,0.167854338884354,-0.836693227291107,-0.521314918994904,0.167854323983192,-0.836693286895752,-0.521314859390259,0.167854338884354,0.0175735037773848,-0.971390724182129,-0.236835718154907,0.0175735037773848,-0.971390724182129,-0.236835718154907,0.0175735037773848,-0.971390783786774,-0.236835733056068,0.914031088352203,-0.400018662214279,0.067321740090847,0.914031088352203,-0.400018662214279,0.0673217326402664,0.914031088352203,-0.400018662214279,0.067321740090847,0.830985546112061,-0.505563795566559,-0.232095405459404,0.830985546112061,-0.505563795566559,-0.232095405459404,0.830985486507416,-0.505563795566559,-0.232095390558243,0.0165377724915743,-0.975535929203033,0.219217449426651,0.0165377724915743,-0.975535869598389,0.219217449426651,0.0165377724915743,-0.975535929203033,0.219217449426651,0.16732956469059,-0.795131385326386,-0.582895278930664,0.16732956469059,-0.795131325721741,-0.582895219326019,0.167329579591751,-0.79513144493103,-0.582895219326019,0.174822047352791,-0.932411134243011,-0.316301673650742,0.17482203245163,-0.932411074638367,-0.316301643848419,0.17482203245163,-0.932411134243011,-0.316301643848419,-0.345972776412964,-0.384645044803619,0.855775117874146,-0.345972776412964,-0.384644985198975,0.855775117874146,-0.345972746610641,-0.384645015001297,0.855775058269501,-0.181533619761467,0.808579206466675,0.55968314409256,-0.181533634662628,0.808579206466675,0.55968314409256,-0.181533634662628,0.808579206466675,0.559683084487915,-0.172607764601707,0.791637003421783,0.586103618144989,-0.172607764601707,0.791636943817139,0.586103618144989,-0.172607764601707,0.791636943817139,0.586103618144989,0.204068571329117,0.86810165643692,0.452499181032181,0.204068586230278,0.868101716041565,0.452499210834503,0.204068586230278,0.86810165643692,0.452499240636826,-0.169992864131927,-0.81180864572525,0.558631539344788,-0.169992864131927,-0.811808586120605,0.558631479740143,-0.169992864131927,-0.81180864572525,0.558631539344788,-0.0793701931834221,-0.904269576072693,0.41951984167099,
- -0.0793701857328415,-0.904269576072693,0.419519811868668,-0.0793701931834221,-0.904269576072693,0.41951984167099,0.175210729241371,-0.419139891862869,-0.890855133533478,0.175210744142532,-0.419139921665192,-0.890855133533478,0.175210744142532,-0.419139921665192,-0.890855133533478,0.187797114253044,0.72236293554306,-0.665525317192078,0.187797114253044,0.722362995147705,-0.665525376796722,0.187797129154205,0.722362995147705,-0.665525317192078,0.100431561470032,0.810727775096893,-0.576744318008423,0.100431554019451,0.810727775096893,-0.576744318008423,0.100431546568871,0.810727715492249,-0.576744318008423,0.462574511766434,0.868689715862274,-0.177209064364433,0.462574481964111,0.868689656257629,-0.177209064364433,0.462574511766434,0.868689715862274,-0.177209049463272,-0.581309795379639,-0.813537240028381,0.0153686171397567,-0.581309795379639,-0.813537180423737,0.0153686162084341,-0.581309735774994,-0.813537180423737,0.0153686162084341,-0.549696266651154,-0.835360765457153,0.00252937944605947,-0.549696266651154,-0.835360825061798,0.00252937967889011,-0.549696207046509,-0.835360646247864,0.00252937921322882,0.889153897762299,-0.457608133554459,0.000368112814612687,0.889153897762299,-0.457608133554459,0.000368112814612687,0.889153897762299,-0.457608133554459,0.000368112785508856,0.690704822540283,0.715904831886292,-0.102014400064945,0.690704941749573,0.715904831886292,-0.102014407515526,0.690704882144928,0.715904831886292,-0.102014407515526,0.516586184501648,0.856022655963898,-0.0190739817917347,0.516586244106293,0.856022775173187,-0.0190739817917347,0.516586244106293,0.856022715568542,-0.0190739836543798,0.0938793048262596,0.0870201885700226,0.991773247718811,0.0938793197274208,0.0870201960206032,0.991773307323456,0.093879297375679,0.087020181119442,0.991773188114166,0.10085815936327,0.121050707995892,0.98750913143158,0.10085816681385,0.121050715446472,0.987509191036224,0.10085816681385,0.121050722897053,0.987509191036224,0.528885722160339,-0.824995398521423,-0.199154362082481,0.528885722160339,-0.824995398521423,-0.199154376983643,
- 0.528885722160339,-0.824995398521423,-0.199154376983643,0.421103268861771,-0.906960725784302,0.00971700809895992,0.421103268861771,-0.906960666179657,0.00971700623631477,0.421103268861771,-0.906960725784302,0.00971700716763735,-0.700639605522156,0.699686825275421,0.1397944688797,-0.700639605522156,0.699686825275421,0.1397944688797,-0.700639605522156,0.699686765670776,0.139794453978539,-0.53240567445755,0.81512326002121,0.228294536471367,-0.532405614852905,0.815123200416565,0.228294521570206,-0.53240567445755,0.815123200416565,0.228294551372528,-0.526536822319031,-0.820990324020386,0.220757439732552,-0.526536881923676,-0.820990264415741,0.220757439732552,-0.526536822319031,-0.820990324020386,0.220757439732552,-0.34236016869545,-0.89711582660675,0.279235929250717,-0.342360138893127,-0.89711582660675,0.279235929250717,-0.34236016869545,-0.89711582660675,0.27923595905304,0.635320663452148,0.682735443115234,-0.360887736082077,0.635320663452148,0.682735443115234,-0.360887736082077,0.635320663452148,0.682735443115234,-0.360887736082077,0.547261655330658,0.820570230484009,-0.164831236004829,0.547261655330658,0.820570170879364,-0.164831221103668,0.547261595726013,0.820570170879364,-0.164831206202507,0.387902915477753,-0.867963373661041,-0.310114026069641,0.38790288567543,-0.867963492870331,-0.310114055871964,0.387902915477753,-0.867963433265686,-0.310114055871964,0.101988732814789,-0.962436735630035,0.251622319221497,0.101988740265369,-0.962436735630035,0.251622319221497,0.10198874771595,-0.96243679523468,0.251622349023819,-0.666554868221283,0.682636916637421,-0.299518436193466,-0.666554927825928,0.682636857032776,-0.299518465995789,-0.666554927825928,0.682636976242065,-0.299518465995789,-0.499458372592926,0.865983545780182,0.0247771274298429,-0.499458312988281,0.865983486175537,0.0247771274298429,-0.499458402395248,0.865983545780182,0.0247771274298429,0.345352023839951,-0.858465254306793,-0.379169374704361,0.345352053642273,-0.858465254306793,-0.379169374704361,0.345352023839951,-0.858465254306793,-0.379169374704361,0.343676626682281,-0.8960080742836,-0.281168699264526,
- 0.343676656484604,-0.896008133888245,-0.281168729066849,0.343676656484604,-0.8960080742836,-0.281168669462204,-0.667694985866547,-0.311171472072601,0.676280856132507,-0.667695045471191,-0.311171501874924,0.676280915737152,-0.667694926261902,-0.311171472072601,0.676280856132507,-0.310422092676163,0.78684538602829,0.533397138118744,-0.310422122478485,0.78684538602829,0.533397197723389,-0.310422122478485,0.786845266819,0.533397138118744,-0.313400059938431,0.802785098552704,0.507263660430908,-0.313400059938431,0.802785098552704,0.507263660430908,-0.313400030136108,0.802785098552704,0.507263600826263,0.330328553915024,-0.924980044364929,-0.18786932528019,0.330328583717346,-0.924980163574219,-0.18786932528019,0.330328583717346,-0.924980103969574,-0.18786932528019,-0.31117394566536,0.897660195827484,0.312052994966507,-0.311173915863037,0.897660136222839,0.312052994966507,-0.311173915863037,0.897660076618195,0.312052994966507,-0.0169824920594692,0.85615748167038,0.516435861587524,-0.0169824920594692,0.85615748167038,0.516435861587524,-0.0169824920594692,0.85615748167038,0.516435861587524,0.358569115400314,-0.399592220783234,-0.843655407428741,0.358569115400314,-0.399592220783234,-0.843655347824097,0.35856905579567,-0.399592190980911,-0.843655347824097,0.0400055982172489,-0.521918714046478,-0.852056503295898,0.0400055982172489,-0.521918773651123,-0.852056562900543,0.0400055982172489,-0.521918714046478,-0.852056503295898,0.217742532491684,-0.973569393157959,0.0689265057444572,0.217742517590523,-0.973569393157959,0.0689265057444572,0.217742502689362,-0.973569333553314,0.0689264982938766,0.203861087560654,-0.81031060218811,0.549397349357605,0.203861117362976,-0.81031060218811,0.54939740896225,0.203861102461815,-0.810310542583466,0.54939740896225,0.20318129658699,-0.775089740753174,0.59829193353653,0.203181281685829,-0.775089740753174,0.59829193353653,0.203181266784668,-0.775089740753174,0.598291873931885,-0.210682570934296,-0.688171565532684,-0.69428563117981,-0.210682570934296,-0.688171625137329,-0.69428563117981,-0.210682570934296,-0.688171625137329,-0.694285690784454,
- -0.289759248495102,-0.460341572761536,-0.839121699333191,-0.289759188890457,-0.460341572761536,-0.839121699333191,-0.28975921869278,-0.460341542959213,-0.839121699333191,-0.215906664729118,0.802046239376068,-0.556871712207794,-0.21590667963028,0.802046298980713,-0.556871712207794,-0.215906664729118,0.802046239376068,-0.556871712207794,-0.236002385616302,0.778879046440125,-0.581076800823212,-0.236002385616302,0.778879046440125,-0.581076860427856,-0.23600235581398,0.778879046440125,-0.581076800823212,0.437742322683334,0.843818426132202,-0.310406386852264,0.43774226307869,0.843818426132202,-0.310406386852264,0.437742292881012,0.843818485736847,-0.310406386852264,0.967498064041138,0.187359824776649,-0.169834807515144,0.967498004436493,0.187359824776649,-0.169834807515144,0.967498064041138,0.187359824776649,-0.169834807515144,-0.285114169120789,-0.924896657466888,0.251547604799271,-0.285114169120789,-0.924896657466888,0.251547604799271,-0.285114109516144,-0.924896538257599,0.251547545194626,-0.148211926221848,-0.98710036277771,-0.060547973960638,-0.148211941123009,-0.987100481987,-0.060547973960638,-0.148211926221848,-0.98710036277771,-0.0605479776859283,0.57389223575592,0.815513968467712,0.0747300311923027,0.57389223575592,0.815513968467712,0.0747300311923027,0.57389223575592,0.815514028072357,0.0747300311923027,0.625882208347321,0.779765903949738,-0.0153844729065895,0.625882208347321,0.779765844345093,-0.0153844710439444,0.625882208347321,0.779765903949738,-0.0153844729065895,-0.425465673208237,-0.842212378978729,0.331145495176315,-0.425465673208237,-0.842212378978729,0.331145465373993,-0.425465673208237,-0.842212378978729,0.331145465373993,-0.269984751939774,-0.917035579681396,0.29352006316185,-0.269984751939774,-0.917035520076752,0.29352006316185,-0.269984751939774,-0.917035520076752,0.29352006316185,0.537624597549438,0.698670387268066,-0.472037523984909,0.537624657154083,0.698670446872711,-0.472037613391876,0.537624597549438,0.698670446872711,-0.472037553787231,0.475345224142075,0.820923745632172,-0.316435158252716,
- 0.47534516453743,0.820923686027527,-0.316435158252716,0.47534516453743,0.820923686027527,-0.316435098648071,0.0600941441953182,0.70585161447525,-0.705806016921997,0.0600941404700279,0.70585161447525,-0.705806016921997,0.0600941479206085,0.70585161447525,-0.705806016921997,0.831773221492767,0.000809577235486358,0.55511486530304,0.740214288234711,0.000813500955700874,0.672370553016663,0.788203120231628,0.00271282414905727,0.615409195423126,0.788203060626984,0.00271282414905727,0.615409195423126,0.997696578502655,0,0.0678346753120422,0.989103615283966,0,0.147221744060516,0.996693432331085,0,0.0812536329030991,0.996693432331085,0,0.0812536403536797,0.740214288234711,0.000813500955700874,0.672370553016663,0.718441307544708,0,0.695587575435638,0.398180723190308,0,0.917306959629059,0.368812650442123,0,0.929503679275513,0.999987542629242,0,-0.00497627584263682,0.998110234737396,0,0.0614489130675793,0.997696578502655,0,0.0678346753120422,0.999987661838531,0,-0.00497627630829811,0.0396962463855743,0.00833303481340408,0.999176979064941,-6.62899779513282e-008,0.0199557580053806,0.999800860881805,-0.0396945923566818,0.0083331735804677,0.999177098274231,-0.0488835908472538,-0.025384534150362,0.998481810092926,0.0488859862089157,-0.0253825709223747,0.998481810092926,0,1,0,0,1,0,0,1,0,0,1,0,0.848882853984833,0,0.528581082820892,0.831773221492767,0.000809577235486358,0.55511486530304,0.989103615283966,0,0.147221744060516,0.984494507312775,0,0.175415515899658,0,1,-1.5678287113019e-008,0,0.999999940395355,-1.5678287113019e-008,0,0.999999940395355,-1.5678287113019e-008,0,1,-1.5678287113019e-008,0.254655420780182,5.19130423981551e-007,-0.967031896114349,0.254655420780182,5.19130423981551e-007,-0.967031896114349,0.254655420780182,5.1913048082497e-007,-0.967031896114349,0.254655420780182,5.19130423981551e-007,-0.967031896114349,0.25465539097786,5.19130423981551e-007,-0.967031896114349,-0.502829432487488,0.864118635654449,-0.0214853715151548,-0.502829432487488,0.864118576049805,-0.0214853696525097,-0.502829432487488,0.864118576049805,-0.0214853696525097,
- -0.502829432487488,0.864118576049805,-0.0214853696525097,0.755458950996399,-1.68760300311988e-006,-0.655196070671082,0.755458950996399,-1.68760300311988e-006,-0.655196070671082,0.755458950996399,-1.68760311680671e-006,-0.655196070671082,0.755458950996399,-1.68760311680671e-006,-0.655196011066437,0.755458950996399,-1.68760323049355e-006,-0.655196070671082,-0.78820812702179,-0.00327528291381896,-0.615400016307831,-0.74022388458252,-0.000991286709904671,-0.672359764575958,-0.831812560558319,-0.000979061936959624,-0.555055737495422,-0.788208186626434,-0.00327528337948024,-0.615400075912476,0.718441307544708,0,0.695587575435638,0.740214288234711,0.000813500955700874,0.672370553016663,0.831773221492767,0.000809577235486358,0.55511486530304,0.848882853984833,0,0.528581082820892,0.47822430729866,0.794353783130646,0.374571174383163,0.47822430729866,0.794353783130646,0.374571204185486,0.478224337100983,0.794353783130646,0.374571204185486,0.47822430729866,0.794353783130646,0.374571204185486,-0.996234774589539,0,-0.0866959691047668,-0.987976491451263,5.14903103976394e-006,-0.154604449868202,-0.99726939201355,0,-0.0738482102751732,-0.996234834194183,0,-0.0866959691047668,0.984494507312775,0,0.175415515899658,0.989103615283966,0,0.147221744060516,0.997696578502655,0,0.0678346753120422,0.998110234737396,0,0.0614489130675793,0.602139532566071,0.796971678733826,0.0475831218063831,0.602139472961426,0.796971619129181,0.0475831180810928,0.602139472961426,0.796971678733826,0.0475831180810928,0.602139532566071,0.796971678733826,0.0475831218063831,-0.452667385339737,0.0264136679470539,0.891288101673126,-0.452667415142059,0.0264136698096991,0.891288161277771,-0.452667474746704,0.0264136735349894,0.891288101673126,-0.452667415142059,0.0264136716723442,0.891288161277771,-0.452667444944382,0.0264136698096991,0.891288161277771,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.368812650442123,0,0.929503679275513,0.225135430693626,-0.000214965810300782,0.974327445030212,0.297708809375763,0,0.954656720161438,0.297708809375763,0,0.954656720161438,0.994403183460236,0,-0.10565247386694,
- 0.994403123855591,0,-0.105652458965778,0.994403064250946,0,-0.105652466416359,0.994403123855591,0,-0.10565247386694,0.994403123855591,0,-0.105652466416359,0.994403183460236,0,-0.10565247386694,-0.297709226608276,0,-0.954656600952148,-0.226064026355743,0.000258124782703817,-0.974112451076508,-0.368829965591431,0,-0.929496943950653,-0.297709226608276,0,-0.954656541347504,0.193199470639229,-0.000308007904095575,0.981159448623657,0.225135430693626,-0.000214965810300782,0.974327445030212,0.368812650442123,0,0.929503679275513,0.398180723190308,0,0.917306959629059,0.173010289669037,0.794065892696381,0.582689225673676,0.173010274767876,0.794065952301025,0.582689225673676,0.173010274767876,0.794065952301025,0.58268928527832,0.173010259866714,0.794065952301025,0.582689225673676,-0.878193020820618,2.17426304516266e-006,0.478306442499161,-0.878193020820618,2.17426304516266e-006,0.478306472301483,-0.878193080425262,2.17426304516266e-006,0.478306472301483,-0.878192961215973,2.17426281778899e-006,0.478306412696838,-0.878192961215973,2.17426281778899e-006,0.478306412696838,-0.478225857019424,0.79435396194458,-0.374569058418274,-0.478225767612457,0.794353902339935,-0.374569028615952,-0.47822579741478,0.794353902339935,-0.374569028615952,-0.47822579741478,0.794353842735291,-0.374569028615952,-0.601423144340515,0.79711389541626,-0.053850207477808,-0.60142308473587,0.797113835811615,-0.053850207477808,-0.601423144340515,0.797113835811615,-0.0538502149283886,-0.60142308473587,0.797113835811615,-0.053850207477808,-0.188165545463562,0.794069111347198,-0.577968776226044,-0.188165560364723,0.794069170951843,-0.577968895435333,-0.188165560364723,0.794069051742554,-0.577968835830688,-0.188165545463562,0.794069051742554,-0.577968835830688,-0.997714698314667,0,-0.0675673186779022,-0.999987542629242,0,0.00497627584263682,-0.999987661838531,0,0.00497627630829811,-0.99726939201355,0,-0.0738482102751732,-0.718454003334045,-1.30652497318806e-005,-0.695574581623077,-0.74022388458252,-0.000991286709904671,-0.672359764575958,-0.368829965591431,0,-0.929496943950653,
- -0.39817887544632,0,-0.917307794094086,0.00204828544519842,0.00103428342845291,-0.99999737739563,-0.296407610177994,0,-0.955061554908752,-0.226064026355743,0.000258124782703817,-0.974112451076508,-0.99726939201355,0,-0.0738482102751732,-0.987976491451263,5.14903103976394e-006,-0.154604449868202,-0.98311972618103,7.30849797037081e-006,-0.182963520288467,-0.997714698314667,0,-0.0675673186779022,-0.987976491451263,5.14903103976394e-006,-0.154604449868202,-0.831812560558319,-0.000979061936959624,-0.555055737495422,-0.848895847797394,-5.97539656155277e-006,-0.528560161590576,-0.98311972618103,7.30849797037081e-006,-0.182963520288467,-0.831812560558319,-0.000979061936959624,-0.555055737495422,-0.74022388458252,-0.000991286709904671,-0.672359764575958,-0.718454003334045,-1.30652497318806e-005,-0.695574581623077,-0.848895847797394,-5.97539656155277e-006,-0.528560161590576,-0.368829965591431,0,-0.929496943950653,-0.226064026355743,0.000258124782703817,-0.974112451076508,-0.296407610177994,0,-0.955061554908752,-0.39817887544632,0,-0.917307794094086,0,-1,-2.64056865262319e-008,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,-2.58242227602068e-008,0,-1,-9.0934870744519e-010,0,-1,-2.64056865262319e-008,0,-0.999999940395355,-2.58242227602068e-008,0,-1,1.01693831133787e-009,0,-1,-1.16626430735067e-009,0,-1,-9.0934870744519e-010,0,-1,1.01693831133787e-009,0,-1,1.43552836284755e-009,0,-1,-2.22851976872107e-008,0,-1,-1.16626430735067e-009,0,-1,1.43552836284755e-009,0,-1,-2.14009663324077e-008,0,-1,2.21899654206936e-008,0,-1,-2.22851976872107e-008,0,-1,-2.14009663324077e-008,0,-1,2.12989341719094e-008,0,-1,-1.28771361573854e-007,0,-1,-1.29341742649558e-007,0,-0.999999940395355,-4.58113049717213e-008,0,-1,-4.24711501523234e-008,0,-1,2.86690688966473e-008,0,-1,-1.29341742649558e-007,0,-1,-1.28771361573854e-007,0,-1,2.98201925374997e-008,0,-1,2.12989341719094e-008,0,-1,2.86690688966473e-008,0,-1,2.98201925374997e-008,0,-1,2.21899654206936e-008,0.502769351005554,0.864015340805054,-0.0264666583389044,0.502769351005554,0.864015340805054,-0.0264666583389044,
- 0.502769351005554,0.864015281200409,-0.0264666583389044,0.502769351005554,0.864015281200409,-0.0264666564762592,0.714815557003021,0.266383558511734,0.646589994430542,2.29487750402768e-006,0.656208693981171,0.754579424858093,-6.62899779513282e-008,0.0199557580053806,0.999800860881805,0.0396962463855743,0.00833303481340408,0.999176979064941,2.29487750402768e-006,0.656208693981171,0.754579424858093,-0.714750826358795,0.266304105520248,0.646694183349609,-0.0396945923566818,0.0083331735804677,0.999177098274231,-6.62899779513282e-008,0.0199557580053806,0.999800860881805,-0.714750826358795,0.266304105520248,0.646694183349609,-0.46026748418808,-0.43135005235672,0.775945246219635,-0.0488835908472538,-0.025384534150362,0.998481810092926,-0.0396945923566818,0.0083331735804677,0.999177098274231,-0.46026748418808,-0.43135005235672,0.775945246219635,0.460256308317184,-0.431446522474289,0.775898218154907,0.0488859862089157,-0.0253825709223747,0.998481810092926,-0.0488835908472538,-0.025384534150362,0.998481810092926,0.460256308317184,-0.431446522474289,0.775898218154907,0.714815557003021,0.266383558511734,0.646589994430542,0.0396962463855743,0.00833303481340408,0.999176979064941,0.0488859862089157,-0.0253825709223747,0.998481810092926,-0.740457773208618,0.000808736018370837,0.672102451324463,-0.831975102424622,0.000812654267065227,0.554812431335449,-0.788363873958588,0.00270999525673687,0.615203261375427,-0.788363873958588,0.00270999479107559,0.615203261375427,-0.226908847689629,-0.000221266425796784,0.973915934562683,-0.370571315288544,0,0.92880392074585,-0.301552712917328,0,0.953449487686157,-0.30155274271965,0,0.953449606895447,-0.831975102424622,0.000812654267065227,0.554812431335449,-0.849213242530823,0,0.528050124645233,-0.984590470790863,0,0.174875915050507,-0.989251613616943,0,0.146223038434982,-0.00201485469006002,-0.000857220322359353,0.999997556209564,-0.196547657251358,-0.000309759197989479,0.980494260787964,-0.226908847689629,-0.000221266425796784,0.973915934562683,0.225135430693626,-0.000214965810300782,0.974327445030212,
- 0.193199470639229,-0.000308007904095575,0.981159448623657,0,0.999999940395355,-1.51928620795161e-008,0,1,-1.51928620795161e-008,0,1,-1.51928620795161e-008,0,1,-1.51928620795161e-008,-0.718874454498291,0,0.69513988494873,-0.740457773208618,0.000808736018370837,0.672102451324463,-0.370571315288544,0,0.92880392074585,-0.399323970079422,0,0.916809916496277,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0.876249849796295,-5.76808396601791e-008,0.481857031583786,0.876249849796295,-5.76808396601791e-008,0.481857031583786,0.876249849796295,-5.76808325547518e-008,0.481857001781464,0.876249849796295,-5.76808325547518e-008,0.481856971979141,0.876249849796295,-5.76808325547518e-008,0.481857001781464,0.0294362213462591,0.853302896022797,-0.520584106445313,0.029436219483614,0.853302836418152,-0.520584046840668,0.0294362176209688,0.853302776813507,-0.520584046840668,0.0294362176209688,0.853302836418152,-0.520584046840668,0.452152073383331,4.27538634539815e-006,0.891940832138062,0.452152073383331,4.27538634539815e-006,0.891940832138062,0.452152073383331,4.2753868001455e-006,0.891940891742706,0.452152103185654,4.2753868001455e-006,0.891940951347351,0.452151983976364,4.27538634539815e-006,0.891940832138062,0.788372874259949,-0.00328823365271091,-0.615188956260681,0.83197557926178,-0.000993666704744101,-0.554811298847198,0.740420281887054,-0.000981524121016264,-0.672143578529358,0.788372874259949,-0.0032882341183722,-0.615188956260681,-0.849213242530823,0,0.528050124645233,-0.831975102424622,0.000812654267065227,0.554812431335449,-0.740457773208618,0.000808736018370837,0.672102451324463,-0.718874454498291,0,0.69513988494873,-0.479480117559433,0.794349789619446,0.372970759868622,-0.479480177164078,0.794349789619446,0.372970789670944,-0.479480147361755,0.794349849224091,0.372970789670944,-0.479480087757111,0.794349789619446,0.372970789670944,0.301552355289459,0,-0.953449606895447,0.370559275150299,4.91295531901415e-006,-0.928808808326721,0.228101193904877,0.000267141178483143,-0.973637402057648,0.301552355289459,0,-0.953449547290802,-0.399323970079422,0,0.916809916496277,
- -0.370571315288544,0,0.92880392074585,-0.226908847689629,-0.000221266425796784,0.973915934562683,-0.196547657251358,-0.000309759197989479,0.980494260787964,-0.180952325463295,0.794093132019043,0.580234706401825,-0.180952340364456,0.794093132019043,0.58023464679718,-0.180952370166779,0.794093132019043,0.58023476600647,-0.180952355265617,0.794093191623688,0.58023476600647,-0.754696607589722,0.026424327865243,-0.655541718006134,-0.754696547985077,0.026424327865243,-0.655541718006134,-0.754696488380432,0.0264243260025978,-0.655541718006134,-0.754696547985077,0.0264243260025978,-0.655541718006134,-0.754696547985077,0.0264243297278881,-0.655541658401489,-0.993966102600098,1.63013424980818e-008,-0.109687902033329,-0.993966162204742,1.6301340721725e-008,-0.109687902033329,-0.993966102600098,1.6301340721725e-008,-0.109687894582748,-0.993966042995453,1.6301340721725e-008,-0.109687879681587,-0.993966162204742,1.63013424980818e-008,-0.109687902033329,-0.993966042995453,1.6301340721725e-008,-0.109687887132168,-0.989251613616943,0,0.146223038434982,-0.997606933116913,1.87517689482775e-005,0.0691404044628143,-0.996902763843536,0,0.0786436498165131,-0.996902823448181,0,0.0786436572670937,-0.999900102615356,0.000127010061987676,0.014136222191155,-0.999900102615356,0.000127010032883845,0.0141362212598324,-0.999899983406067,0.000127010032883845,0.0141362203285098,-0.997606933116913,1.87517689482775e-005,0.0691404044628143,-0.997933268547058,2.8376854970702e-005,0.0642597153782845,-0.518141329288483,0.854188501834869,0.0434921309351921,-0.518141329288483,0.854188501834869,0.0434921272099018,-0.518141329288483,0.854188501834869,0.0434921272099018,-0.518141329288483,0.854188501834869,0.0434921272099018,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0.996457159519196,0,-0.0841020047664642,0.99717253446579,-1.67026391864056e-005,-0.075146846473217,0.988105475902557,0,-0.15377776324749,0.996457159519196,0,-0.0841019973158836,-0.997933268547058,2.8376854970702e-005,0.0642597153782845,-0.997606933116913,1.87517689482775e-005,0.0691404044628143,
- -0.989251613616943,0,0.146223038434982,-0.984590470790863,0,0.174875915050507,-0.60278594493866,0.796885848045349,0.0402724072337151,-0.60278594493866,0.796885967254639,0.0402724072337151,-0.60278594493866,0.796885907649994,0.0402724072337151,-0.602786004543304,0.796886026859283,0.0402724146842957,-0.250771552324295,0,-0.968046307563782,-0.250771552324295,0,-0.968046247959137,-0.250771552324295,0,-0.968046307563782,-0.250771552324295,0,-0.968046367168427,-0.250771552324295,0,-0.968046367168427,-0.0276991315186024,0.00574810896068811,0.999599754810333,-0.0343985669314861,-0.017716521397233,0.999251186847687,0.0343985669314861,-0.017716521397233,0.999251186847687,0.0276985503733158,0.00574734481051564,0.999599814414978,6.3397699534562e-008,0.0138229392468929,0.999904453754425,0.479473203420639,0.794360995292664,-0.372955709695816,0.479473203420639,0.794360995292664,-0.372955769300461,0.479473203420639,0.794360995292664,-0.372955709695816,0.479473203420639,0.794361054897308,-0.372955739498138,0.185402020812035,0.794093310832977,-0.578828155994415,0.185401991009712,0.794093251228333,-0.578828096389771,0.185402005910873,0.794093310832977,-0.578828096389771,0.185402005910873,0.794093251228333,-0.578828096389771,0.600862145423889,0.797269463539124,-0.0576726906001568,0.600862205028534,0.797269403934479,-0.0576726906001568,0.600862145423889,0.797269463539124,-0.0576726906001568,0.600862145423889,0.797269403934479,-0.0576726943254471,-0.226064026355743,0.000258124782703817,-0.974112451076508,0.228101193904877,0.000267141178483143,-0.973637402057648,0.197873994708061,0.000375259231077507,-0.98022735118866,0.00204828544519842,0.00103428342845291,-0.99999737739563,0.849209189414978,-1.09158827399369e-005,-0.528056442737579,0.83197557926178,-0.000993666704744101,-0.554811298847198,0.988105475902557,0,-0.15377776324749,0.983188092708588,0,-0.182595536112785,0.999901115894318,-0.000126420491142198,-0.0140617080032825,0.996502935886383,0,-0.0835571736097336,0.99717253446579,-1.67026391864056e-005,-0.075146846473217,0.999895989894867,-0.000129675419884734,-0.0144237531349063,
- 0.999895930290222,-0.000129675434436649,-0.0144237531349063,0.999901115894318,-0.000126420491142198,-0.0140617080032825,0.99717253446579,-1.67026391864056e-005,-0.075146846473217,0.228101193904877,0.000267141178483143,-0.973637402057648,0.370559275150299,4.91295531901415e-006,-0.928808808326721,0.399308890104294,6.99472229825915e-006,-0.916816473007202,0.197873994708061,0.000375259231077507,-0.98022735118866,0.370559275150299,4.91295531901415e-006,-0.928808808326721,0.740420281887054,-0.000981524121016264,-0.672143578529358,0.718867778778076,-4.00651651943917e-006,-0.695146858692169,0.399308890104294,6.99472229825915e-006,-0.916816473007202,0.740420281887054,-0.000981524121016264,-0.672143578529358,0.83197557926178,-0.000993666704744101,-0.554811298847198,0.849209189414978,-1.09158827399369e-005,-0.528056442737579,0.718867778778076,-4.00651651943917e-006,-0.695146858692169,0.988105475902557,0,-0.15377776324749,0.99717253446579,-1.67026391864056e-005,-0.075146846473217,0.996502935886383,0,-0.0835571736097336,0.983188092708588,0,-0.182595536112785,0,-1,0,0,-1,-4.24711501523234e-008,0,-0.999999940395355,-4.58113049717213e-008,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0.518433332443237,0.854630291461945,0.0288774892687798,0.518433332443237,0.854630351066589,0.0288774892687798,0.518433272838593,0.854630291461945,0.0288774874061346,0.518433332443237,0.854630351066589,0.0288774911314249,0.0301152225583792,0.853232622146606,0.52066045999527,0.0301152225583792,0.853232562541962,0.520660400390625,0.0301152244210243,0.853232622146606,0.520660400390625,0.0301152225583792,0.853232562541962,0.52066045999527,-0.679835557937622,0.25991353392601,0.685761332511902,-0.423461109399796,-0.410938292741776,0.80734783411026,-0.0343985669314861,-0.017716521397233,0.999251186847687,-0.0276991315186024,0.00574810896068811,0.999599754810333,
- -0.423461109399796,-0.410938292741776,0.80734783411026,0.423461109399796,-0.410938292741776,0.80734783411026,0.0343985669314861,-0.017716521397233,0.999251186847687,-0.0343985669314861,-0.017716521397233,0.999251186847687,0.423461109399796,-0.410938292741776,0.80734783411026,0.679849743843079,0.259898245334625,0.685752987861633,0.0276985503733158,0.00574734481051564,0.999599814414978,0.0343985669314861,-0.017716521397233,0.999251186847687,0.679849743843079,0.259898245334625,0.685752987861633,-4.62343086837791e-006,0.618036448955536,0.786149501800537,6.3397699534562e-008,0.0138229392468929,0.999904453754425,0.0276985503733158,0.00574734481051564,0.999599814414978,-4.62343086837791e-006,0.618036448955536,0.786149501800537,-0.679835557937622,0.25991353392601,0.685761332511902,-0.0276991315186024,0.00574810896068811,0.999599754810333,6.3397699534562e-008,0.0138229392468929,0.999904453754425
- }
- NormalsW: *1676 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *5028 {
- a: -0.0694561153650284,0.994972467422485,0.0721500441431999,-0.069456122815609,0.994972467422485,0.0721500515937805,-0.0694561153650284,0.994972467422485,0.0721500515937805,-0.00194612378254533,0.999909281730652,0.0133278397843242,-0.00194612331688404,0.999909281730652,0.0133278407156467,-0.00194612331688404,0.999909281730652,0.0133278407156467,-0.00134073349181563,0.999698400497437,-0.0245217178016901,-0.00134073349181563,0.999698400497437,-0.0245217178016901,-0.00134073349181563,0.999698400497437,-0.0245217196643353,0.0136495884507895,0.999754071235657,-0.0174834802746773,0.0136495884507895,0.999754071235657,-0.0174834802746773,0.0136495884507895,0.999754071235657,-0.0174834784120321,0.004970399197191,0.999969601631165,0.00602625263854861,0.00497039826586843,0.999969482421875,0.00602625170722604,0.00497039873152971,0.99996954202652,0.00602625217288733,0.0121862180531025,0.999876022338867,-0.00997332390397787,0.0121862208470702,0.999876022338867,-0.0099733229726553,0.0121862208470702,0.999876081943512,-0.00997332390397787,0.0270833410322666,0.998923063278198,-0.0376743525266647,0.0270833447575569,0.998923063278198,-0.037674356251955,0.0270833391696215,0.998923063278198,-0.0376743488013744,0.0153849050402641,0.999877691268921,0.00282567832618952,0.0153849050402641,0.999877691268921,0.00282567879185081,0.015384903177619,0.999877691268921,0.00282567786052823,-0.00276883295737207,0.999976992607117,0.00619130115956068,-0.00276883342303336,0.999976992607117,0.00619130115956068,-0.00276883342303336,0.999977052211761,0.00619130209088326,0.0159323811531067,0.999865174293518,0.00397510966286063,0.0159323811531067,0.999865174293518,0.00397510873153806,0.0159323811531067,0.999865174293518,0.00397510873153806,-0.0125975888222456,0.999819874763489,0.0141935758292675,-0.0125975888222456,0.999819874763489,0.0141935758292675,-0.012597587890923,0.999819874763489,0.0141935758292675,0.00664679147303104,0.999977469444275,-0.000966137973591685,0.00664679193869233,0.99997752904892,-0.000966138031799346,0.00664679147303104,0.999977469444275,-0.000966137973591685,
- -0.00612384034320712,0.999948143959045,0.00815041828900576,-0.00612383987754583,0.999948084354401,0.00815041828900576,-0.00612384034320712,0.999948143959045,0.00815041828900576,0.0101134395226836,0.999948740005493,-0.000474244239740074,0.010113438591361,0.999948740005493,-0.000474244239740074,0.0101134395226836,0.999948740005493,-0.000474244297947735,-0.0067855603992939,0.999882459640503,0.0137558858841658,-0.00678555853664875,0.999882459640503,0.0137558849528432,-0.00678555946797132,0.999882459640503,0.0137558849528432,0.00231147347949445,0.999995827674866,0.00177018367685378,0.00231147301383317,0.999995768070221,0.00177018332760781,0.00231147324666381,0.999995827674866,0.00177018356043845,-0.032597616314888,0.999184966087341,-0.0238070785999298,-0.0325976200401783,0.999185025691986,-0.0238070823252201,-0.0325976200401783,0.999185025691986,-0.0238070823252201,0.337126404047012,0.937632977962494,0.0847959145903587,0.337126433849335,0.937632858753204,0.0847959294915199,0.337126404047012,0.937632918357849,0.0847959071397781,-0.133960038423538,0.990693688392639,-0.024099150672555,-0.133960053324699,0.990693747997284,-0.0240991525352001,-0.133960053324699,0.990693747997284,-0.0240991525352001,0.26832377910614,0.963327527046204,0.00157678546383977,0.268323749303818,0.963327586650848,0.00157678732648492,0.268323808908463,0.963327586650848,0.00157678546383977,0.106126345694065,0.993497848510742,0.0412234663963318,0.106126330792904,0.993497788906097,0.0412234626710415,0.106126330792904,0.993497848510742,0.0412234663963318,0.926334619522095,-0.0196248814463615,0.376189976930618,0.926334738731384,-0.0196248833090067,0.376190036535263,0.92633467912674,-0.0196248814463615,0.376190006732941,0.998327493667603,-0.0217758771032095,0.0535534769296646,0.998327493667603,-0.0217758771032095,0.0535534769296646,0.998327553272247,-0.0217758789658546,0.0535534806549549,0.987627744674683,-0.0160753801465034,0.155990824103355,0.987627685070038,-0.0160753764212132,0.155990824103355,0.987627744674683,-0.0160753782838583,0.155990824103355,-0.624436914920807,-0.750694990158081,-0.21572133898735,
- -0.624436855316162,-0.750694990158081,-0.215721309185028,-0.624436914920807,-0.750694930553436,-0.215721324086189,0.0633853748440742,-0.997986078262329,-0.00245869602076709,0.0633853748440742,-0.997986137866974,-0.00245869625359774,0.0633853748440742,-0.997986137866974,-0.00245869648642838,-0.998620212078094,-0.00218997057527304,-0.0524686574935913,-0.998620212078094,-0.00218997057527304,-0.0524686574935913,-0.998620212078094,-0.00218997034244239,-0.0524686574935913,-0.999980866909027,-0.00615318445488811,0.000688003550749272,-0.999980866909027,-0.00615318352356553,0.000688003550749272,-0.999980926513672,-0.00615318538621068,0.000688003608956933,0.311581462621689,-0.936280608177185,0.162159487605095,0.311581462621689,-0.93628066778183,0.162159487605095,0.311581462621689,-0.936280608177185,0.162159487605095,-0.973928570747375,-0.00101307197473943,-0.226852580904961,-0.973928570747375,-0.0010130712762475,-0.226852580904961,-0.97392863035202,-0.00101307197473943,-0.226852595806122,-0.866820394992828,0.00360505003482103,-0.49860742688179,-0.866820454597473,0.00360505003482103,-0.498607456684113,-0.866820454597473,0.00360505050048232,-0.498607456684113,-0.8474001288414,-0.00248172762803733,-0.530949175357819,-0.847400069236755,-0.00248172762803733,-0.530949115753174,-0.847400069236755,-0.00248172786086798,-0.530949115753174,-0.00169860583264381,0.999925076961517,-0.0121271265670657,-0.00169860618188977,0.999925136566162,-0.0121271274983883,-0.00169860629830509,0.999925136566162,-0.0121271274983883,-0.0880136936903,0.99610424041748,0.00548414699733257,-0.0880136787891388,0.996104180812836,0.00548414653167129,-0.0880136787891388,0.996104180812836,0.00548414653167129,0.0459755696356297,0.998898208141327,-0.00941526517271996,0.04597557336092,0.998898267745972,-0.00941526517271996,0.0459755696356297,0.998898267745972,-0.00941526424139738,-0.999742269515991,0.00177837838418782,0.0226352289319038,-0.999742209911346,0.00177837815135717,0.0226352289319038,-0.999742209911346,0.0017783782677725,0.0226352289319038,0.0338605009019375,0.999029874801636,-0.028155617415905,
- 0.0338605046272278,0.999029934406281,-0.0281556211411953,0.0338605046272278,0.999029874801636,-0.0281556192785501,-0.406014710664749,0.899264335632324,0.162713393568993,-0.406014740467072,0.899264335632324,0.162713408470154,-0.406014770269394,0.899264395236969,0.162713408470154,-0.92210578918457,0.00735472002997994,0.386867970228195,-0.92210578918457,0.00735472002997994,0.386867970228195,-0.92210578918457,0.00735471909865737,0.386867970228195,-0.999107122421265,0.00377004174515605,0.0420814529061317,-0.999107182025909,0.00377004174515605,0.0420814529061317,-0.999107182025909,0.00377004197798669,0.0420814529061317,-0.873692452907562,-0.0162612777203321,0.486206978559494,-0.873692452907562,-0.0162612795829773,0.486206978559494,-0.873692452907562,-0.0162612795829773,0.486206978559494,0.0413261242210865,-0.999096214771271,-0.00994335766881704,0.0413261279463768,-0.999096214771271,-0.00994335766881704,0.0413261204957962,-0.999096214771271,-0.00994335673749447,0.0550763309001923,-0.998446762561798,-0.00841682590544224,0.0550763197243214,-0.998446762561798,-0.00841682404279709,0.0550763197243214,-0.998446702957153,-0.00841682497411966,0.0331219211220741,-0.999429047107697,-0.00667442660778761,0.0331219285726547,-0.999429106712341,-0.00667442847043276,0.0331219248473644,-0.999429106712341,-0.00667442753911018,0.876340508460999,0.00418321415781975,-0.481674075126648,0.876340448856354,0.00418321415781975,-0.481674045324326,0.876340448856354,0.00418321322649717,-0.481674015522003,0.853827834129334,0.0153363207355142,-0.520329654216766,0.853827893733978,0.0153363207355142,-0.520329654216766,0.853827834129334,0.0153363207355142,-0.520329654216766,-0.00295410514809191,-0.999885439872742,0.0148483486846089,-0.00295410514809191,-0.999885439872742,0.0148483486846089,-0.00295410538092256,-0.999885439872742,0.0148483486846089,0.976403772830963,0.00911211036145687,-0.215760827064514,0.976403832435608,0.00911211222410202,-0.215760841965675,0.976403772830963,0.00911211129277945,-0.215760827064514,0.999040246009827,-0.00725832022726536,-0.0431969128549099,
- 0.999040305614471,-0.00725832115858793,-0.0431969203054905,0.999040246009827,-0.00725832115858793,-0.0431969128549099,0.999970257282257,-0.00408638874068856,-0.00655644526705146,0.999970257282257,-0.00408638920634985,-0.00655644526705146,0.999970197677612,-0.00408638874068856,-0.00655644480139017,-0.0135180521756411,0.999794363975525,0.0151208005845547,-0.0135180512443185,0.99979430437088,0.0151207977905869,-0.0135180512443185,0.99979430437088,0.0151207959279418,0.101525329053402,0.901682436466217,0.420311063528061,0.101525321602821,0.901682436466217,0.420311033725739,0.101525343954563,0.901682496070862,0.420311123132706,-0.0990830883383751,0.970996260643005,-0.217598289251328,-0.0990830808877945,0.970996260643005,-0.217598289251328,-0.0990830659866333,0.970996201038361,-0.217598229646683,0.152795135974884,0.975828528404236,0.156244680285454,0.152795150876045,0.975828528404236,0.156244695186615,0.152795150876045,0.975828528404236,0.156244695186615,0.0484602153301239,0.99700939655304,0.0601992011070251,0.0484602190554142,0.99700939655304,0.0601992085576057,0.0484602190554142,0.99700939655304,0.0601992085576057,0.702091932296753,-0.00647404417395592,0.712056875228882,0.702091932296753,-0.00647404370829463,0.712056875228882,0.702091932296753,-0.00647404324263334,0.712056875228882,0.227847874164581,0.0089354058727622,0.973655760288239,0.227847874164581,0.00893540680408478,0.973655760288239,0.227847874164581,0.00893540680408478,0.973655760288239,0.614913761615753,0.0021537714637816,0.788591504096985,0.614913761615753,0.00215377332642674,0.78859144449234,0.614913702011108,0.0021537714637816,0.78859144449234,0.174239963293076,-0.00626621581614017,0.984683275222778,0.174239978194237,-0.00626621581614017,0.984683334827423,0.174239978194237,-0.00626621674746275,0.984683334827423,-0.00840905867516994,-0.999937176704407,0.00741594843566418,-0.00840905867516994,-0.999937236309052,0.00741594983264804,-0.00840905867516994,-0.999937176704407,0.00741594890132546,-0.130451202392578,-0.974767208099365,-0.181139051914215,-0.130451202392578,-0.97476726770401,-0.181139066815376,
- -0.130451217293739,-0.97476726770401,-0.181139081716537,0.0181085132062435,-0.999718546867371,0.0153294811025262,0.0181085113435984,-0.999718487262726,0.0153294829651713,0.0181085113435984,-0.999718487262726,0.0153294811025262,0.0342954620718956,-0.99912416934967,0.0239766295999289,0.0342954620718956,-0.99912416934967,0.0239766295999289,0.0342954583466053,-0.99912416934967,0.0239766277372837,-0.666810393333435,0.00379887456074357,-0.745217740535736,-0.666810393333435,0.00379887432791293,-0.745217740535736,-0.666810393333435,0.00379887456074357,-0.745217740535736,-0.710585653781891,0.000924225896596909,-0.703610122203827,-0.710585713386536,0.000924225430935621,-0.703610122203827,-0.710585713386536,0.000924225663766265,-0.703610122203827,-0.41730123758316,0.00243216822855175,-0.908764958381653,-0.41730123758316,0.0024321679957211,-0.908764958381653,-0.417301267385483,0.00243216822855175,-0.908765017986298,-0.182010531425476,-0.00415429566055536,-0.983287811279297,-0.182010531425476,-0.00415429566055536,-0.983287811279297,-0.182010546326637,-0.00415429612621665,-0.983287870883942,-0.101289518177509,-0.00374652957543731,-0.994849920272827,-0.101289518177509,-0.00374652910977602,-0.994849920272827,-0.101289518177509,-0.00374652864411473,-0.994849920272827,-0.00691351620480418,0.999938189983368,0.00871406868100166,-0.00691351667046547,0.999938130378723,0.00871406868100166,-0.00691351667046547,0.999938130378723,0.00871406774967909,-0.240715473890305,0.920604228973389,0.307480037212372,-0.240715473890305,0.920604169368744,0.307480037212372,-0.240715503692627,0.920604228973389,0.307480067014694,0.0852153524756432,0.977717041969299,-0.191853567957878,0.0852153748273849,0.977717101573944,-0.191853612661362,0.0852153673768044,0.977717101573944,-0.191853597760201,-0.0177143253386021,0.971190392971039,0.237645894289017,-0.0177143272012472,0.971190333366394,0.237645909190178,-0.0177143272012472,0.971190392971039,0.237645924091339,-0.0237654335796833,0.994067788124084,0.106134288012981,-0.0237654373049736,0.994067847728729,0.106134288012981,
- -0.0237654335796833,0.994067788124084,0.106134280562401,-0.633238554000854,0.00243670912459493,0.773952901363373,-0.63323849439621,0.002436708426103,0.773952841758728,-0.633238554000854,0.00243670889176428,0.773952901363373,-0.133173555135727,-0.00244988058693707,0.991089761257172,-0.133173540234566,-0.00244988012127578,0.991089701652527,-0.133173540234566,-0.00244988012127578,0.991089701652527,-0.681821048259735,-0.00662141107022762,0.731489062309265,-0.68182110786438,-0.0066214120015502,0.731489062309265,-0.68182110786438,-0.00662141107022762,0.731489062309265,-0.178983837366104,-0.00158715061843395,0.9838507771492,-0.178983822464943,-0.00158715050201863,0.9838507771492,-0.178983837366104,-0.0015871508512646,0.983850836753845,-0.0203089751303196,-0.999727249145508,-0.011533111333847,-0.0203089751303196,-0.999727308750153,-0.0115331131964922,-0.0203089751303196,-0.999727249145508,-0.011533111333847,0.0438594445586205,-0.989710628986359,-0.136196166276932,0.0438594482839108,-0.989710628986359,-0.136196181178093,0.0438594445586205,-0.989710569381714,-0.136196166276932,-0.102655827999115,-0.986067414283752,0.130892291665077,-0.102655842900276,-0.986067473888397,0.130892291665077,-0.102655827999115,-0.986067414283752,0.130892291665077,0.0151737555861473,-0.999216198921204,-0.036563977599144,0.0151737574487925,-0.999216198921204,-0.0365639813244343,0.0151737565174699,-0.999216198921204,-0.0365639813244343,0.16633252799511,0.00441568763926625,-0.986059844493866,0.16633252799511,0.00441568810492754,-0.986059904098511,0.16633252799511,0.00441568763926625,-0.986059844493866,0.117830999195576,-0.00501396739855409,-0.993021011352539,0.117830999195576,-0.00501396739855409,-0.993021011352539,0.117831006646156,-0.00501396786421537,-0.993021070957184,0.452995210886002,0.00326403696089983,-0.891507029533386,0.452995210886002,0.00326403742656112,-0.891507029533386,0.452995210886002,0.00326403742656112,-0.891507029533386,0.63877284526825,0.00745029514655471,-0.769359290599823,0.63877284526825,0.007450295612216,-0.769359290599823,0.63877284526825,0.00745029700919986,-0.769359350204468,
- 0.718349695205688,-0.00248593976721168,-0.695677816867828,0.718349695205688,-0.00248593976721168,-0.695677816867828,0.718349635601044,-0.00248593953438103,-0.695677757263184,-0.0217373073101044,0.997770547866821,-0.0630988627672195,-0.0217373054474592,0.997770547866821,-0.0630988627672195,-0.0217373073101044,0.997770607471466,-0.0630988627672195,-0.0650732293725014,0.996730804443359,-0.0478869825601578,-0.0650732219219208,0.996730804443359,-0.0478869825601578,-0.0650732219219208,0.996730804443359,-0.0478869862854481,-0.0362673476338387,0.996072292327881,-0.0807756036520004,-0.036267351359129,0.996072351932526,-0.0807756036520004,-0.036267351359129,0.996072292327881,-0.0807755962014198,-0.0924218595027924,0.994543015956879,0.0483990684151649,-0.0924218595027924,0.994542956352234,0.0483990609645844,-0.0924218595027924,0.994542956352234,0.0483990609645844,-0.0630981102585793,0.996842563152313,-0.0482055507600307,-0.0630981028079987,0.996842503547668,-0.0482055433094502,-0.0630981102585793,0.996842563152313,-0.0482055433094502,0.590493023395538,0.45910581946373,0.663731753826141,0.590492963790894,0.459105849266052,0.663731813430786,0.590493023395538,0.45910581946373,0.663731753826141,-0.609098017215729,0.471550464630127,-0.637683212757111,-0.609098017215729,0.471550464630127,-0.637683212757111,-0.609098017215729,0.471550434827805,-0.637683212757111,-0.887998640537262,0.458417385816574,-0.0362196005880833,-0.887998700141907,0.458417415618896,-0.0362196117639542,-0.887998640537262,0.458417385816574,-0.0362196080386639,-0.586878955364227,0.449257075786591,-0.673603177070618,-0.586878895759583,0.449257075786591,-0.673603177070618,-0.586878895759583,0.449257075786591,-0.673603177070618,0.586723744869232,0.441296964883804,0.678978860378265,0.586723744869232,0.441296994686127,0.678978860378265,0.586723744869232,0.441296964883804,0.678978860378265,-0.114351391792297,0.42578113079071,-0.897571384906769,-0.114351376891136,0.425781071186066,-0.897571325302124,-0.114351376891136,0.425781100988388,-0.897571384906769,0.0813378244638443,0.441566854715347,0.893533945083618,
- 0.0813378244638443,0.441566824913025,0.893533885478973,0.0813378319144249,0.441566824913025,0.893533885478973,-0.00235504866577685,-0.8885098695755,-0.458851516246796,-0.0023550521582365,-0.888509929180145,-0.458851516246796,-0.00235504820011556,-0.8885098695755,-0.458851486444473,0.86370176076889,0.439695537090302,0.246347829699516,0.86370176076889,0.439695507287979,0.246347770094872,0.86370176076889,0.439695537090302,0.246347829699516,-0.917665362358093,0.397263318300247,0.00850789435207844,-0.917665243148804,0.397263288497925,0.00850789342075586,-0.917665302753448,0.397263288497925,0.00850789155811071,0.863829731941223,0.501306235790253,-0.0499045625329018,0.863829672336578,0.501306235790253,-0.0499045588076115,0.863829731941223,0.501306235790253,-0.0499045625329018,-0.636342167854309,0.769938111305237,0.0475837476551533,-0.636342108249664,0.769938051700592,0.047583743929863,-0.636342167854309,0.769938111305237,0.0475837513804436,-0.0625901371240616,0.997719883918762,-0.0252522677183151,-0.062590129673481,0.997719824314117,-0.0252522677183151,-0.0625901371240616,0.997719883918762,-0.0252522695809603,-0.993932604789734,0.0214645434170961,-0.107876412570477,-0.993932604789734,0.0214645378291607,-0.107876405119896,-0.993932604789734,0.0214645452797413,-0.107876390218735,0.0609265491366386,0.997105121612549,0.045489963144064,0.0609265528619289,0.997105181217194,0.045489963144064,0.0609265528619289,0.997105181217194,0.0454899594187737,0.062243577092886,0.996731221675873,-0.0515054687857628,0.0622435696423054,0.996731162071228,-0.0515054650604725,0.0622435733675957,0.996731221675873,-0.0515054725110531,0.0258192457258701,0.996299862861633,-0.0819765403866768,0.025819243863225,0.996299803256989,-0.0819765403866768,0.0258192364126444,0.996299743652344,-0.0819765403866768,-0.0183045528829098,0.994072556495667,-0.107166916131973,-0.0183045584708452,0.994072556495667,-0.107166916131973,-0.0183045566082001,0.994072556495667,-0.107166923582554,0.0555723197758198,0.996833443641663,-0.0568763464689255,0.0555723235011101,0.996833443641663,-0.0568763464689255,
- 0.0555723197758198,0.996833443641663,-0.0568763464689255,-0.79860258102417,0.470289409160614,0.375582218170166,-0.798602521419525,0.470289379358292,0.375582158565521,-0.79860258102417,0.470289409160614,0.375582218170166,0.751045703887939,0.471120476722717,-0.462575316429138,0.751045763492584,0.471120476722717,-0.462575256824493,0.751045703887939,0.471120476722717,-0.462575316429138,-0.843469262123108,0.464324831962585,0.270115166902542,-0.843469202518463,0.464324772357941,0.27011513710022,-0.843469202518463,0.464324772357941,0.270115107297897,0.817658603191376,0.445390552282333,-0.364776253700256,0.817658603191376,0.445390582084656,-0.364776223897934,0.817658603191376,0.445390552282333,-0.364776253700256,-0.785002410411835,0.451050698757172,0.424646288156509,-0.785002470016479,0.451050698757172,0.424646317958832,-0.785002529621124,0.451050758361816,0.424646317958832,0.918645858764648,0.394963771104813,0.00966315437108278,0.918645858764648,0.394963771104813,0.00966315343976021,0.918645918369293,0.394963800907135,0.00966315437108278,-0.901397585868835,0.432861328125,-0.0106593212112784,-0.901397526264191,0.432861298322678,-0.0106593212112784,-0.901397585868835,0.432861328125,-0.010659322142601,0.591493964195251,0.79934024810791,-0.105783261358738,0.591493964195251,0.79934024810791,-0.105783261358738,0.591493964195251,0.79934024810791,-0.105783261358738,-0.443414509296417,0.453405857086182,0.773179650306702,-0.443414598703384,0.453405946493149,0.773179650306702,-0.44341453909874,0.453405916690826,0.773179650306702,-0.0176568143069744,0.425234973430634,-0.904910743236542,-0.0176568143069744,0.425234973430634,-0.904910743236542,-0.0176568180322647,0.425235003232956,-0.904910743236542,-0.0162666346877813,0.439795404672623,0.897950768470764,-0.016266630962491,0.439795404672623,0.897950768470764,-0.0162666235119104,0.439795404672623,0.897950768470764,0.0820827558636665,-0.833180546760559,-0.546875298023224,0.0820827558636665,-0.833180546760559,-0.546875298023224,0.0820827484130859,-0.833180606365204,-0.546875298023224,0.0426822490990162,0.997648298740387,-0.0536305829882622,
- 0.0426822453737259,0.997648239135742,-0.0536305792629719,0.0426822453737259,0.997648298740387,-0.0536305867135525,0.353611022233963,0.011971129104495,-0.93531596660614,0.353611022233963,0.0119711309671402,-0.93531596660614,0.353610992431641,0.011971116065979,-0.93531596660614,-0.629227519035339,-0.112071171402931,-0.76909875869751,-0.629227519035339,-0.112071171402931,-0.76909875869751,-0.629227519035339,-0.11207115650177,-0.76909875869751,-0.23458756506443,0.928221106529236,-0.288746118545532,-0.234587579965591,0.928221166133881,-0.288746118545532,-0.23458756506443,0.928221106529236,-0.288746118545532,-0.294924437999725,0.926745653152466,-0.232727646827698,-0.294924467802048,0.926745653152466,-0.23272767663002,-0.294924467802048,0.926745653152466,-0.232727661728859,0.885054528713226,-0.188586443662643,-0.425574451684952,0.885054647922516,-0.188586503267288,-0.425574511289597,0.885054588317871,-0.188586473464966,-0.425574451684952,0.317199766635895,0.933435142040253,-0.167580783367157,0.317199766635895,0.933435082435608,-0.167580753564835,0.317199796438217,0.933435142040253,-0.167580768465996,0.297803193330765,0.926434516906738,-0.230287671089172,0.297803223133087,0.926434516906738,-0.230287700891495,0.297803193330765,0.926434516906738,-0.230287671089172,0.695153892040253,0.685518741607666,0.216391339898109,0.695153892040253,0.685518801212311,0.216391354799271,0.695153832435608,0.685518741607666,0.216391295194626,0.641296863555908,0.538272023200989,0.546810328960419,0.641296863555908,0.538272082805634,0.546810328960419,0.641296863555908,0.538271963596344,0.546810328960419,0.544313967227936,0.706288397312164,0.452635645866394,0.544313967227936,0.706288397312164,0.452635645866394,0.544313967227936,0.706288397312164,0.452635645866394,-0.718133866786957,-0.246467188000679,-0.650797784328461,-0.718133866786957,-0.24646720290184,-0.650797784328461,-0.718133866786957,-0.24646720290184,-0.650797843933105,-0.666610240936279,-0.537825226783752,-0.516115069389343,-0.666610240936279,-0.537825167179108,-0.516115069389343,-0.666610300540924,-0.537825286388397,-0.516115128993988,
- -0.998555898666382,0.0247625540941954,0.0476747155189514,-0.998555958271027,0.0247625578194857,0.0476747192442417,-0.998555958271027,0.0247625578194857,0.0476747155189514,-0.992326617240906,0.00207789149135351,0.123627066612244,-0.992326557636261,0.00207789125852287,0.123627059161663,-0.992326557636261,0.00207789149135351,0.123627059161663,0.956943333148956,0.00863717216998339,-0.290146142244339,0.956943333148956,0.00863717868924141,-0.290146172046661,0.956943452358246,0.00863717589527369,-0.290146172046661,0.996419072151184,-0.00555224530398846,-0.0843704417347908,0.996419072151184,-0.00555224530398846,-0.0843704491853714,0.996419012546539,-0.00555224483832717,-0.0843704417347908,0.00546513358131051,0.999981343746185,-0.00276057445444167,0.00546513358131051,0.999981343746185,-0.00276057445444167,0.00546513311564922,0.999981284141541,-0.00276057445444167,-0.00758637906983495,0.998003482818604,-0.0627022236585617,-0.00758638000115752,0.998003482818604,-0.0627022236585617,-0.00758637906983495,0.998003423213959,-0.0627022236585617,-0.956344187259674,0.0171833224594593,0.291737377643585,-0.956344127655029,0.0171833224594593,0.291737347841263,-0.956344127655029,0.0171833205968142,0.291737347841263,-0.931692540645599,-0.000464341253973544,0.36324754357338,-0.931692540645599,-0.000464341253973544,0.36324754357338,-0.931692540645599,-0.000464341195765883,0.36324754357338,0.939278781414032,-0.00146258063614368,-0.343151986598969,0.939278841018677,-0.00146258261520416,-0.343151986598969,0.939278781414032,-0.00146258063614368,-0.343151986598969,0.880650460720062,0.00204431614838541,-0.473762422800064,0.880650401115417,0.00204431591555476,-0.473762363195419,0.880650401115417,0.00204431614838541,-0.473762363195419,-0.00643844297155738,0.999979197978973,-0.000568301940802485,-0.00643844343721867,0.999979197978973,-0.000568301707971841,-0.00643844250589609,0.999979138374329,-0.000568301940802485,-0.0317346155643463,0.998008549213409,-0.0545142106711864,-0.0317346155643463,0.998008549213409,-0.0545142106711864,-0.0317346155643463,0.998008549213409,-0.0545142069458961,
- -0.796333312988281,-0.00258280383422971,0.604852616786957,-0.796333253383636,-0.00258280476555228,0.604852616786957,-0.796333312988281,-0.00258280453272164,0.604852616786957,-0.746867656707764,-0.0334824621677399,0.664129197597504,-0.746867656707764,-0.0334824621677399,0.664129197597504,-0.746867656707764,-0.0334824621677399,0.664129197597504,0.770830035209656,0.00858401320874691,-0.636983215808868,0.770829975605011,0.00858401227742434,-0.636983156204224,0.770829916000366,0.00858401414006948,-0.636983215808868,0.765430986881256,0.0117520485073328,-0.643410682678223,0.765431046485901,0.0117520494386554,-0.643410682678223,0.765430986881256,0.0117520485073328,-0.643410682678223,-0.0628153160214424,0.997166514396667,-0.0413905009627342,-0.0628153160214424,0.997166514396667,-0.0413905009627342,-0.0628153085708618,0.997166514396667,-0.0413904972374439,-0.200121819972992,0.972828030586243,0.116434544324875,-0.20012179017067,0.972828030586243,0.116434529423714,-0.200121805071831,0.972828030586243,0.116434544324875,-0.0548298135399818,0.996912240982056,-0.0562113747000694,-0.0548298172652721,0.9969123005867,-0.0562113784253597,-0.0548298172652721,0.9969123005867,-0.05621138215065,-0.0401762537658215,0.998959541320801,-0.0215815603733063,-0.0401762537658215,0.998959541320801,-0.0215815585106611,-0.0401762500405312,0.998959541320801,-0.021581556648016,-0.619819521903992,0.00172009016387165,0.784742474555969,-0.619819521903992,0.00172009039670229,0.784742474555969,-0.619819521903992,0.00172009039670229,0.784742534160614,-0.552540957927704,-0.014324389398098,0.833362698554993,-0.552540898323059,-0.014324389398098,0.833362698554993,-0.552540957927704,-0.014324389398098,0.833362698554993,0.599082767963409,0.00228190794587135,-0.800683856010437,0.599082767963409,0.002281908178702,-0.800683915615082,0.599082827568054,0.00228190049529076,-0.800683856010437,0.702039897441864,-0.00140184024348855,-0.712136328220367,0.702039897441864,-0.00140184024348855,-0.712136328220367,0.702039897441864,-0.00140184001065791,-0.712136328220367,-0.0505253300070763,0.997495412826538,-0.0494989119470119,
- -0.050525326281786,0.997495412826538,-0.0494989082217216,-0.0505253300070763,0.997495412826538,-0.0494989119470119,0.0186420567333698,0.999671101570129,-0.0176117084920406,0.0186420548707247,0.999671101570129,-0.0176117084920406,0.0186420567333698,0.999671101570129,-0.0176117103546858,-0.428508073091507,-0.0224223155528307,0.903259694576263,-0.428508132696152,-0.0224223174154758,0.903259754180908,-0.428508132696152,-0.0224223136901855,0.903259754180908,-0.357543647289276,-0.0310360565781593,0.933380603790283,-0.357543647289276,-0.031036052852869,0.933380603790283,-0.357543647289276,-0.0310360547155142,0.933380603790283,0.253601312637329,0.0339886620640755,-0.966711521148682,0.253601312637329,0.0339886657893658,-0.966711580753326,0.253601342439651,0.0339886620640755,-0.966711580753326,0.386840909719467,0.0302064511924982,-0.921651601791382,0.386840999126434,0.0302064530551434,-0.921651661396027,0.386840909719467,0.0302064511924982,-0.921651601791382,-0.113514237105846,0.9935222864151,0.00528766587376595,-0.113514244556427,0.99352240562439,0.00528766261413693,-0.113514237105846,0.993522346019745,0.00528766214847565,-0.00256861513480544,0.999664902687073,0.025761054828763,-0.00256861420348287,0.999664902687073,0.0257610529661179,-0.00256861583329737,0.999664902687073,0.0257610566914082,-0.0418793298304081,-0.0123092066496611,0.999046921730042,-0.0418793298304081,-0.0123092066496611,0.999046921730042,-0.0418793298304081,-0.0123092057183385,0.999046921730042,-0.0386113002896309,0.0297964941710234,0.998809993267059,-0.0386113002896309,0.0297964978963137,0.998810052871704,-0.0386113002896309,0.0297964978963137,0.998810052871704,0.0448903627693653,0.00893216487020254,-0.998952090740204,0.0448903627693653,0.00893216487020254,-0.998952031135559,0.044890359044075,0.00893216580152512,-0.998952031135559,0.177794545888901,0.00297795189544559,-0.984063148498535,0.177794575691223,0.00297795189544559,-0.98406320810318,0.177794575691223,0.00297795189544559,-0.984063148498535,0.00264787604101002,0.999996423721313,-0.000457855552667752,
- 0.00264787580817938,0.999996364116669,-0.000457855552667752,0.00264787580817938,0.999996364116669,-0.000457855494460091,-0.0633387193083763,0.997953534126282,-0.00877584796398878,-0.0633387193083763,0.997953534126282,-0.00877584796398878,-0.0633387193083763,0.997953474521637,-0.00877584796398878,0.888027727603912,0.45959946513176,-0.0132341682910919,0.888027727603912,0.459599435329437,-0.0132341720163822,0.888027727603912,0.459599405527115,-0.0132341701537371,0.900330126285553,0.434924721717834,0.0156895127147436,0.900330185890198,0.434924751520157,0.0156895108520985,0.900330126285553,0.434924721717834,0.0156895127147436,-0.451492547988892,0.445709139108658,-0.772979915142059,-0.451492607593536,0.445709109306335,-0.772979855537415,-0.451492577791214,0.44570916891098,-0.772979915142059,-0.445956438779831,0.457769483327866,-0.76913595199585,-0.445956408977509,0.457769453525543,-0.769135892391205,-0.445956408977509,0.457769423723221,-0.769135892391205,0.477903127670288,0.454671442508698,0.751586616039276,0.47790315747261,0.454671502113342,0.751586675643921,0.477903097867966,0.454671442508698,0.751586616039276,0.456444799900055,0.450902879238129,0.767036378383636,0.456444829702377,0.450902879238129,0.767036437988281,0.45644474029541,0.450902879238129,0.767036378383636,0.558949530124664,0.0788645297288895,0.825442850589752,0.558949530124664,0.0788645371794701,0.825442850589752,0.55894947052002,0.0788645297288895,0.825442850589752,0.419229388237,0.0840926468372345,0.903977394104004,0.419229388237,0.0840926468372345,0.903977394104004,0.419229477643967,0.0840926542878151,0.903977453708649,-0.878987431526184,0.446247071027756,-0.16806173324585,-0.878987491130829,0.446247100830078,-0.168061718344688,-0.878987431526184,0.446247100830078,-0.168061718344688,-0.869473159313202,0.445969015359879,-0.212434038519859,-0.869473099708557,0.445969015359879,-0.212433993816376,-0.869473099708557,0.445969015359879,-0.212434008717537,0.865273416042328,0.085485003888607,0.493957817554474,0.865273356437683,0.0854849964380264,0.493957787752151,
- 0.865273416042328,0.085485003888607,0.493957817554474,0.91846889257431,0.0848962888121605,0.386274099349976,0.918468832969666,0.0848962813615799,0.386274099349976,0.918468832969666,0.0848962813615799,0.386274099349976,0.0622393377125263,0.0222161840647459,-0.997813940048218,0.0622393377125263,0.0222161896526814,-0.997813940048218,0.0622393414378166,0.0222161859273911,-0.997813999652863,0.137832269072533,-0.000656402960885316,-0.990455389022827,0.137832283973694,-0.000656402902677655,-0.990455448627472,0.137832283973694,-0.000656403019092977,-0.990455448627472,-0.099114291369915,-0.00288859801366925,0.995071947574615,-0.0991142764687538,-0.00288859778083861,0.995071887969971,-0.099114291369915,-0.00288859778083861,0.995071887969971,-0.303025215864182,0.0109328217804432,0.952919840812683,-0.303025186061859,0.0109328180551529,0.952919840812683,-0.303025215864182,0.0109328189864755,0.952919900417328,-0.00245067849755287,0.999993205070496,0.00278142839670181,-0.00245067826472223,0.999993205070496,0.00278142839670181,-0.00245067803189158,0.999993205070496,0.00278142862953246,-0.0621548146009445,0.998002350330353,-0.0113151529803872,-0.0621548183262348,0.998002409934998,-0.0113151529803872,-0.0621548183262348,0.998002409934998,-0.0113151539117098,0.0387514308094978,0.0439687184989452,-0.998281061649323,0.0387514345347881,0.0439687147736549,-0.998281121253967,0.0387514345347881,0.0439687147736549,-0.998281121253967,0.039395198225975,0.00832211785018444,-0.999189078807831,0.0393952019512653,0.00832211878150702,-0.999189138412476,0.039395198225975,0.00832211785018444,-0.999189078807831,-0.0273700412362814,-0.0128239681944251,0.999543130397797,-0.0273700393736362,-0.0128239672631025,0.999543070793152,-0.0273700375109911,-0.0128239672631025,0.999543070793152,-0.226773202419281,-0.0266870968043804,0.973581969738007,-0.22677318751812,-0.0266870930790901,0.973581910133362,-0.226773202419281,-0.0266870949417353,0.973581969738007,0.0626796931028366,0.997762382030487,0.0232702065259218,0.0626796931028366,0.997762441635132,0.023270208388567,
- 0.0626796931028366,0.997762382030487,0.0232702046632767,-0.00413659913465381,0.999954283237457,0.00861792918294668,-0.00413659913465381,0.999954283237457,0.00861792918294668,-0.00413659913465381,0.999954283237457,0.00861792918294668,-0.0507685430347919,0.0171413365751505,-0.998563349246979,-0.0507685430347919,0.0171413384377956,-0.998563349246979,-0.0507685430347919,0.0171413384377956,-0.998563349246979,-0.126126378774643,-0.000457416608696803,-0.992014169692993,-0.126126363873482,-0.000457416579592973,-0.992014110088348,-0.126126363873482,-0.000457416608696803,-0.992014110088348,0.104740731418133,-0.00145660806447268,0.994498550891876,0.104740738868713,-0.00145660806447268,0.994498550891876,0.104740731418133,-0.00145660853013396,0.994498550891876,0.245668560266495,0.0020558824762702,0.969351768493652,0.245668530464172,0.0020558824762702,0.969351768493652,0.245668530464172,0.0020558824762702,0.969351708889008,0.00309769832529128,0.999975681304932,-0.00625109625980258,0.00309769902378321,0.999975740909576,-0.00625109719112515,0.00309769902378321,0.999975681304932,-0.00625109672546387,0.0606605187058449,0.998006999492645,-0.0173898786306381,0.0606605149805546,0.998006939888,-0.017389876767993,0.0606605187058449,0.998006999492645,-0.0173898786306381,-0.393578499555588,-0.00432071927934885,-0.91928094625473,-0.393578469753265,-0.00432071881368756,-0.919280886650085,-0.393578469753265,-0.00432071881368756,-0.919280886650085,-0.463768929243088,-0.0313335172832012,-0.885402023792267,-0.463768899440765,-0.0313335135579109,-0.885401964187622,-0.463768929243088,-0.0313335135579109,-0.885402023792267,0.429239988327026,0.00862111710011959,0.903149425983429,0.429239988327026,0.00862111710011959,0.903149366378784,0.429240018129349,0.00862111803144217,0.903149425983429,0.443722188472748,0.0129929836839437,0.896070182323456,0.44372221827507,0.0129929836839437,0.896070182323456,0.443722188472748,0.0129929836839437,0.896070241928101,-0.0057562836445868,0.99989914894104,-0.0129901394248009,-0.00575628317892551,0.99989902973175,-0.0129901356995106,
- -0.0057562836445868,0.99989914894104,-0.0129901394248009,0.0159018114209175,0.994291543960571,-0.105506375432014,0.0159018076956272,0.994291543960571,-0.105506382882595,0.0159018114209175,0.994291543960571,-0.105506382882595,0.0680235028266907,0.996896028518677,-0.0396389290690422,0.0680235028266907,0.996896028518677,-0.0396389290690422,0.0680235028266907,0.996895968914032,-0.0396389253437519,0.0304552316665649,0.998946249485016,-0.034333698451519,0.0304552372545004,0.998946309089661,-0.034333698451519,0.0304552316665649,0.998946249485016,-0.034333698451519,-0.670848071575165,-0.0226282700896263,-0.74124950170517,-0.670848071575165,-0.0226282700896263,-0.74124950170517,-0.670848071575165,-0.0226282700896263,-0.74124950170517,-0.611795663833618,0.00881472043693066,-0.790966749191284,-0.611795663833618,0.00881472043693066,-0.790966749191284,-0.611795723438263,0.00881472136825323,-0.790966749191284,0.64557158946991,-0.00207910290919244,0.763696908950806,0.64557158946991,-0.00207911035977304,0.76369696855545,0.645571649074554,-0.00207910663448274,0.76369696855545,0.74295449256897,0.00197514123283327,0.669339060783386,0.742954432964325,0.00197514053434134,0.669339120388031,0.74295449256897,0.00197514100000262,0.669339120388031,0.0497189201414585,0.997228026390076,-0.0553570315241814,0.0497189164161682,0.997228026390076,-0.0553570277988911,0.0497189238667488,0.997228026390076,-0.0553570277988911,-0.0176303163170815,0.999575912952423,-0.0231767222285271,-0.0176303200423718,0.999575972557068,-0.0231767240911722,-0.0176303181797266,0.999575972557068,-0.0231767222285271,-0.819467782974243,-0.0255701020359993,-0.572554647922516,-0.819467782974243,-0.0255701020359993,-0.572554647922516,-0.819467782974243,-0.0255701020359993,-0.572554647922516,-0.770991206169128,-0.0240181498229504,-0.636392652988434,-0.770991206169128,-0.0240181498229504,-0.636392652988434,-0.770991206169128,-0.0240181479603052,-0.636392652988434,0.799089431762695,0.0290903262794018,0.600508093833923,0.799089372158051,0.0290903244167566,0.600508093833923,0.799089431762695,0.0290903355926275,0.600508093833923,
- 0.879239439964294,0.0339590571820736,0.475168079137802,0.879239499568939,0.0339590571820736,0.475168138742447,0.879239499568939,0.0339590571820736,0.475168079137802,0.0186597146093845,0.994214653968811,-0.105777874588966,0.0186597146093845,0.994214653968811,-0.105777874588966,0.0186597146093845,0.994214653968811,-0.105777867138386,-0.0166689474135637,0.999669075012207,-0.0195967238396406,-0.0166689418256283,0.999669015407562,-0.0195967219769955,-0.0166689418256283,0.999669015407562,-0.0195967219769955,-0.990446448326111,-0.0132260667160153,-0.137262776494026,-0.990446448326111,-0.0132260667160153,-0.137262776494026,-0.990446388721466,-0.0132260639220476,-0.137262776494026,-0.976999759674072,0.0251847449690104,-0.211748048663139,-0.976999819278717,0.0251847468316555,-0.211748063564301,-0.976999759674072,0.0251847468316555,-0.211748048663139,0.949854373931885,0.003028922714293,0.312677830457687,0.94985443353653,0.00302892294712365,0.312677830457687,0.94985443353653,0.00302892294712365,0.31267786026001,0.984342992305756,0.0083790635690093,0.176064610481262,0.984342932701111,0.00837906263768673,0.176064625382423,0.984342932701111,0.0083790635690093,0.176064610481262,0.0208788067102432,0.99797248840332,-0.0601246766746044,0.0208788067102432,0.99797248840332,-0.0601246766746044,0.0208788067102432,0.99797248840332,-0.0601246766746044,-0.000384236569516361,0.999990344047546,0.00437988573685288,-0.0003842365113087,0.999990344047546,0.00437988620251417,-0.000384236627724022,0.999990403652191,0.00437988620251417,0.0832475945353508,0.445684880018234,-0.891310751438141,0.0832476019859314,0.445684880018234,-0.891310751438141,0.0832476019859314,0.445684880018234,-0.891310751438141,0.072590708732605,0.455579936504364,-0.887230277061462,0.0725907161831856,0.455579966306686,-0.887230336666107,0.072590708732605,0.455579966306686,-0.887230336666107,-0.0886800661683083,0.445649564266205,0.89080423116684,-0.0886800661683083,0.445649564266205,0.89080423116684,-0.0886800810694695,0.445649594068527,0.890804290771484,-0.0839902311563492,0.437482863664627,0.895295798778534,
- -0.0839902311563492,0.437482833862305,0.895295739173889,-0.0839902311563492,0.437482833862305,0.895295739173889,0.866716027259827,0.44844663143158,-0.21840113401413,0.866716027259827,0.44844663143158,-0.218401119112968,0.866716027259827,0.44844663143158,-0.21840113401413,0.862435936927795,0.464520692825317,-0.20105916261673,0.86243599653244,0.46452072262764,-0.201059177517891,0.862435936927795,0.464520692825317,-0.201059132814407,-0.93246853351593,0.0800410956144333,0.352272421121597,-0.93246853351593,0.0800410956144333,0.352272391319275,-0.93246853351593,0.0800410956144333,0.352272391319275,-0.977340281009674,0.0898242518305779,0.191670835018158,-0.977340281009674,0.0898242518305779,0.191670820116997,-0.977340221405029,0.0898242443799973,0.191670805215836,0.378253638744354,0.442162573337555,-0.813275158405304,0.378253668546677,0.442162573337555,-0.813275098800659,0.378253579139709,0.442162573337555,-0.813275098800659,0.411103814840317,0.445831060409546,-0.795127928256989,0.411103755235672,0.445831060409546,-0.795127928256989,0.411103755235672,0.445831060409546,-0.795127868652344,-0.593963325023651,0.0796818137168884,0.800536334514618,-0.593963325023651,0.079681821167469,0.800536394119263,-0.593963325023651,0.0796818137168884,0.800536334514618,-0.689046025276184,0.0804082378745079,0.720243096351624,-0.689045965671539,0.0804082304239273,0.720243096351624,-0.689045965671539,0.0804082229733467,0.720243155956268,0.927418231964111,-0.000607735011726618,0.374025702476501,0.927418172359467,-0.000607734895311296,0.374025702476501,0.927418172359467,-0.000607734895311296,0.374025702476501,0.952998459339142,0.0218802485615015,0.302184194326401,0.952998399734497,0.0218802466988564,0.302184194326401,0.952998399734497,0.0218802466988564,0.302184194326401,-0.941716194152832,-0.00477421237155795,-0.336374670267105,-0.941716194152832,-0.00477421283721924,-0.336374670267105,-0.941716194152832,-0.00477421283721924,-0.336374640464783,-0.850007653236389,0.0110272588208318,-0.52665513753891,-0.850007593631744,0.0110272504389286,-0.52665501832962,
- -0.850007653236389,0.0110272550955415,-0.526655077934265,0.0263885874301195,0.997985661029816,-0.0576922222971916,0.0263885837048292,0.997985661029816,-0.0576922260224819,0.0263885855674744,0.997985601425171,-0.0576922185719013,-0.00109336979221553,0.999985218048096,-0.00534354755654931,-0.00109336955938488,0.999985218048096,-0.00534354755654931,-0.00109336979221553,0.999985158443451,-0.00534354755654931,-0.47156298160553,0.0452732741832733,-0.880669474601746,-0.47156298160553,0.045273270457983,-0.880669414997101,-0.471563011407852,0.045273270457983,-0.88066953420639,-0.0749855563044548,0.848765552043915,-0.52342563867569,-0.0749855488538742,0.84876549243927,-0.52342563867569,-0.0749855488538742,0.848765432834625,-0.52342563867569,-0.08562421053648,0.914295673370361,-0.395894050598145,-0.0856242179870605,0.914295613765717,-0.395894020795822,-0.08562421053648,0.914295613765717,-0.395894050598145,-0.972483098506927,0.0604466870427132,-0.224995419383049,-0.972483038902283,0.0604466907680035,-0.224995404481888,-0.972483038902283,0.0604466944932938,-0.224995389580727,-0.496496260166168,0.852594375610352,-0.163016304373741,-0.496496289968491,0.852594375610352,-0.163016334176064,-0.496496289968491,0.852594375610352,-0.163016304373741,-0.240693241357803,0.956381797790527,-0.165531486272812,-0.240693241357803,0.956381797790527,-0.165531486272812,-0.240693241357803,0.956381797790527,-0.165531501173973,-0.980199158191681,0.0642935708165169,-0.187286004424095,-0.980199098587036,0.0642935633659363,-0.187286004424095,-0.980199158191681,0.0642935782670975,-0.187285989522934,-0.509974360466003,0.855726838111877,0.0875091850757599,-0.509974360466003,0.855726778507233,0.0875091850757599,-0.509974360466003,0.855726838111877,0.0875091850757599,-0.403540074825287,0.914073288440704,0.0403161123394966,-0.403540074825287,0.914073348045349,0.0403161160647869,-0.403540074825287,0.914073348045349,0.0403161160647869,0.421196639537811,-0.481410562992096,0.768659472465515,0.421196639537811,-0.481410562992096,0.768659472465515,0.421196639537811,-0.481410622596741,0.768659472465515,
- 0.405680119991302,-0.0747709423303604,0.910951673984528,0.405680149793625,-0.0747709572315216,0.910951733589172,0.405680149793625,-0.0747709572315216,0.910951733589172,-0.357836663722992,0.645595550537109,-0.674655020236969,-0.357836663722992,0.645595550537109,-0.674655020236969,-0.357836693525314,0.645595490932465,-0.674655020236969,-0.495159298181534,0.572244346141815,-0.653723001480103,-0.495159298181534,0.572244346141815,-0.653723001480103,-0.495159268379211,0.572244346141815,-0.653723001480103,-0.565805792808533,-0.5050408244133,-0.651764988899231,-0.565805733203888,-0.505040884017944,-0.651765048503876,-0.565805792808533,-0.505040884017944,-0.651764988899231,-0.718830943107605,-0.114710532128811,-0.685655534267426,-0.71883100271225,-0.114710532128811,-0.685655534267426,-0.71883100271225,-0.114710547029972,-0.68565559387207,0.494412183761597,0.658230781555176,0.567704916000366,0.494412213563919,0.658230721950531,0.567704975605011,0.494412213563919,0.658230781555176,0.567704975605011,0.459600776433945,0.592396438121796,0.66168999671936,0.459600776433945,0.592396378517151,0.66168999671936,0.459600776433945,0.592396378517151,0.66168999671936,-0.334181219339371,-0.37163382768631,0.866147339344025,-0.334181189537048,-0.371633797883987,0.866147458553314,-0.334181159734726,-0.371633797883987,0.866147398948669,-0.228879153728485,0.184921592473984,-0.955729246139526,-0.228879153728485,0.184921562671661,-0.955729246139526,-0.228879183530808,0.184921562671661,-0.955729305744171,-0.0597177594900131,0.519133687019348,-0.852604269981384,-0.0597177594900131,0.519133746623993,-0.852604269981384,-0.0597177632153034,0.519133746623993,-0.852604329586029,0.482557713985443,-0.186996608972549,-0.855669498443604,0.482557743787766,-0.186996608972549,-0.855669558048248,0.482557713985443,-0.186996623873711,-0.855669498443604,-0.308864921331406,0.0500237382948399,-0.949789524078369,-0.308864891529083,0.0500237420201302,-0.949789524078369,-0.308864891529083,0.0500237420201302,-0.949789524078369,0.185289353132248,0.55507755279541,0.810898721218109,
- 0.185289368033409,0.555077612400055,0.810898721218109,0.185289368033409,0.555077612400055,0.810898721218109,0.0315370745956898,0.488611191511154,0.871931493282318,0.0315370783209801,0.488611191511154,0.871931552886963,0.0315370745956898,0.488611161708832,0.871931552886963,-0.862111330032349,-0.467473715543747,-0.195531114935875,-0.862111330032349,-0.467473745346069,-0.195531114935875,-0.862111330032349,-0.467473745346069,-0.195531114935875,-0.974396109580994,-0.165250808000565,-0.152461662888527,-0.974396049976349,-0.165250793099403,-0.152461662888527,-0.974396109580994,-0.165250808000565,-0.152461677789688,0.740920960903168,0.637494564056396,0.211274400353432,0.740920960903168,0.637494564056396,0.211274415254593,0.740921020507813,0.637494504451752,0.211274445056915,0.761188983917236,0.591651678085327,0.2655930519104,0.761188924312592,0.591651678085327,0.2655930519104,0.761189043521881,0.591651678085327,0.265593081712723,0.968818068504334,0.0442262887954712,-0.243794292211533,0.968818008899689,0.0442262887954712,-0.243794277310371,0.968818008899689,0.0442262850701809,-0.243794277310371,0.526221036911011,0.848666965961456,0.0534414649009705,0.526221036911011,0.848666846752167,0.0534414611756802,0.526221036911011,0.848666965961456,0.0534414649009705,0.405089467763901,0.914184331893921,0.0130254365503788,0.405089437961578,0.914184272289276,0.0130254328250885,0.405089467763901,0.914184272289276,0.0130254328250885,0.657037973403931,0.0470079556107521,-0.752390503883362,0.657037854194641,0.0470079556107521,-0.752390503883362,0.657037854194641,0.0470079630613327,-0.752390503883362,0.456501722335815,0.857727348804474,-0.236453354358673,0.456501722335815,0.857727289199829,-0.236453354358673,0.456501722335815,0.857727289199829,-0.236453339457512,0.332784324884415,0.917235493659973,-0.21893772482872,0.332784295082092,0.917235493659973,-0.21893772482872,0.332784324884415,0.917235493659973,-0.21893772482872,0.450398057699203,0.0673927739262581,-0.890280842781067,0.450398027896881,0.0673927441239357,-0.890280842781067,0.450398057699203,0.0673927590250969,-0.890280842781067,
- 0.275805056095123,0.854141652584076,-0.440878391265869,0.275805056095123,0.854141652584076,-0.440878391265869,0.275805026292801,0.854141592979431,-0.440878361463547,0.213646426796913,0.957905471324921,-0.191761136054993,0.213646441698074,0.957905530929565,-0.191761180758476,0.213646426796913,0.957905530929565,-0.191761165857315,0.325392812490463,0.0531508289277554,-0.94408392906189,0.325392812490463,0.0531508252024651,-0.94408392906189,0.325392842292786,0.0531508177518845,-0.944083988666534,-0.0196643304079771,0.852801561355591,-0.521864771842957,-0.0196643266826868,0.852801620960236,-0.521864712238312,-0.0196643266826868,0.852801561355591,-0.521864712238312,0.0219915248453617,0.914692878723145,-0.403551071882248,0.0219915211200714,0.9146928191185,-0.403551042079926,0.0219915304332972,0.914692878723145,-0.40355110168457,-0.603459119796753,-0.620489120483398,0.500829577445984,-0.603459239006042,-0.620489120483398,0.500829637050629,-0.603459179401398,-0.620489120483398,0.500829637050629,-0.79583728313446,-0.340218603610992,0.500893652439117,-0.795837223529816,-0.34021857380867,0.500893652439117,-0.795837223529816,-0.34021857380867,0.500893652439117,0.0885248407721519,0.992338895797729,-0.0861795395612717,0.0885248407721519,0.992338895797729,-0.0861795395612717,0.0885248482227325,0.992338895797729,-0.0861795544624329,0.659910380840302,0.605522930622101,-0.444814890623093,0.659910380840302,0.605522930622101,-0.444814920425415,0.659910321235657,0.605522990226746,-0.444814890623093,0.678151845932007,0.582444250583649,-0.448183953762054,0.678151845932007,0.582444250583649,-0.448183923959732,0.678151845932007,0.582444250583649,-0.448183923959732,0.587001621723175,0.36564302444458,-0.722311794757843,0.587001621723175,0.36564302444458,-0.722311794757843,0.587001621723175,0.365642994642258,-0.722311794757843,0.547422349452972,0.196441069245338,-0.813473880290985,0.547422289848328,0.196441069245338,-0.81347393989563,0.547422289848328,0.1964410841465,-0.81347393989563,-0.782479465007782,-0.619357407093048,0.064205601811409,-0.782479465007782,-0.619357407093048,0.064205601811409,
- -0.782479524612427,-0.619357407093048,0.064205601811409,-0.951017320156097,-0.300950318574905,0.0706759095191956,-0.951017320156097,-0.300950288772583,0.0706759095191956,-0.951017260551453,-0.300950288772583,0.0706759095191956,-0.350134402513504,0.936286449432373,-0.0278142392635345,-0.350134402513504,0.936286449432373,-0.0278142392635345,-0.350134432315826,0.936286449432373,-0.0278142392635345,0.812428832054138,0.577154040336609,-0.0827809125185013,0.812428891658783,0.577153980731964,-0.0827809199690819,0.812428891658783,0.577154040336609,-0.0827809125185013,0.819153368473053,0.572494804859161,-0.0351782888174057,0.819153368473053,0.572494864463806,-0.0351782888174057,0.819153308868408,0.572494864463806,-0.0351782888174057,0.907662510871887,0.419347643852234,-0.0172191169112921,0.907662451267242,0.419347614049912,-0.0172191113233566,0.907662510871887,0.419347643852234,-0.0172191150486469,0.900649666786194,-0.0723582953214645,-0.428479373455048,0.900649607181549,-0.0723582953214645,-0.428479343652725,0.900649666786194,-0.0723582953214645,-0.428479373455048,-0.857245326042175,0.394480764865875,-0.330931156873703,-0.857245326042175,0.39448070526123,-0.330931127071381,-0.85724538564682,0.394480764865875,-0.330931186676025,-0.874545753002167,0.484929442405701,-0.00361959775909781,-0.874545753002167,0.484929442405701,-0.00361959799192846,-0.874545812606812,0.484929472208023,-0.00361959775909781,0.396249711513519,-0.468370914459229,-0.789692878723145,0.396249711513519,-0.468370914459229,-0.789692878723145,0.396249711513519,-0.468370914459229,-0.789692878723145,0.381223678588867,-0.159698873758316,-0.91058486700058,0.381223767995834,-0.159698858857155,-0.910584926605225,0.381223738193512,-0.159698858857155,-0.91058486700058,-0.381745606660843,0.639529943466187,0.66728687286377,-0.381745576858521,0.639530062675476,0.667286813259125,-0.381745576858521,0.639529943466187,0.667286813259125,-0.442477613687515,0.590927064418793,0.674550831317902,-0.442477643489838,0.590927064418793,0.674550890922546,-0.442477583885193,0.590927064418793,0.674550831317902,
- 0.456531584262848,-0.180620610713959,-0.871180295944214,0.45653161406517,-0.180620610713959,-0.871180355548859,0.456531584262848,-0.18062062561512,-0.871180295944214,-0.198771998286247,0.0512075759470463,-0.978707075119019,-0.198772013187408,0.0512075759470463,-0.978707134723663,-0.198771998286247,0.0512075759470463,-0.978707075119019,0.0945866629481316,0.554365754127502,0.826880812644959,0.0945866629481316,0.554365754127502,0.826880872249603,0.0945866629481316,0.554365754127502,0.826880872249603,-0.060652133077383,0.490326017141342,0.869426071643829,-0.060652133077383,0.490326017141342,0.869426131248474,-0.060652133077383,0.490326017141342,0.869426071643829,0.0224996600300074,0.913745641708374,-0.405663460493088,0.0224996637552977,0.913745641708374,-0.405663460493088,0.0224996637552977,0.913745641708374,-0.405663430690765,0.0537468120455742,0.85167121887207,-0.521313190460205,0.0537468045949936,0.85167121887207,-0.52131313085556,0.0537468045949936,0.85167121887207,-0.52131313085556,-0.230549618601799,0.042316060513258,-0.97214013338089,-0.230549603700638,0.0423160567879677,-0.972140073776245,-0.230549588799477,0.0423160642385483,-0.972140073776245,-0.349809050559998,0.916460037231445,-0.194254070520401,-0.34980908036232,0.91646009683609,-0.194254070520401,-0.34980908036232,0.916459977626801,-0.19425405561924,-0.47462597489357,0.854124307632446,-0.212607607245445,-0.474626034498215,0.854124248027802,-0.212607637047768,-0.474626034498215,0.854124307632446,-0.212607637047768,-0.698015630245209,0.035156924277544,-0.715219020843506,-0.698015630245209,0.0351569168269634,-0.715219020843506,-0.698015630245209,0.0351569466292858,-0.715219020843506,0.622781991958618,-0.628305017948151,0.466235518455505,0.622781991958618,-0.628304958343506,0.466235518455505,0.622781932353973,-0.628304958343506,0.466235488653183,0.682874977588654,-0.32047912478447,0.656486809253693,0.682874977588654,-0.320479094982147,0.656486809253693,0.682874917984009,-0.320479094982147,0.656486809253693,0.153016567230225,0.971098244190216,0.183178424835205,
- 0.153016582131386,0.971098244190216,0.183178439736366,0.153016582131386,0.971098184585571,0.183178439736366,-0.572980523109436,0.644851922988892,-0.505825340747833,-0.572980523109436,0.644851922988892,-0.505825340747833,-0.572980523109436,0.644851982593536,-0.505825400352478,-0.649633467197418,0.545020818710327,-0.530027210712433,-0.649633467197418,0.545020759105682,-0.530027210712433,-0.649633467197418,0.545020759105682,-0.530027151107788,-0.941068708896637,0.0754993706941605,-0.329681038856506,-0.941068649291992,0.0754993781447411,-0.329681038856506,-0.941068649291992,0.0754993781447411,-0.329681009054184,-0.813686490058899,0.435681939125061,-0.384831964969635,-0.813686430454254,0.435681879520416,-0.384831964969635,-0.813686490058899,0.435681939125061,-0.384831994771957,0.789076268672943,-0.610834300518036,0.0651179254055023,0.789076268672943,-0.610834300518036,0.0651179328560829,0.789076209068298,-0.610834240913391,0.0651179179549217,0.915792047977448,-0.401561409235001,-0.00857261475175619,0.915792107582092,-0.401561409235001,-0.00857261475175619,0.915792107582092,-0.401561439037323,-0.00857261382043362,0.546184539794922,0.835968494415283,-0.0532852187752724,0.546184480190277,0.835968434810638,-0.0532852113246918,0.546184539794922,0.835968434810638,-0.0532852187752724,-0.809656500816345,0.579602777957916,-0.092287003993988,-0.80965656042099,0.579602837562561,-0.092287003993988,-0.80965656042099,0.579602837562561,-0.092287003993988,-0.806542336940765,0.587958216667175,-0.0616011582314968,-0.806542336940765,0.587958216667175,-0.0616011582314968,-0.806542277336121,0.587958216667175,-0.0616011545062065,-0.9131800532341,0.34400999546051,-0.218539118766785,-0.913180112838745,0.344010025262833,-0.218539118766785,-0.9131800532341,0.34400999546051,-0.218539118766785,-0.864602327346802,0.459649860858917,-0.202940195798874,-0.864602386951447,0.459649920463562,-0.202940180897713,-0.864602386951447,0.459649920463562,-0.202940210700035,0.817483425140381,0.483128309249878,0.313540935516357,0.817483425140381,0.483128279447556,0.313540935516357,
- 0.817483425140381,0.483128279447556,0.313540935516357,0.862668931484222,0.446140557527542,0.238245472311974,0.862668991088867,0.446140587329865,0.238245472311974,0.862668991088867,0.446140587329865,0.238245472311974,0.849716246128082,0.519606232643127,0.0893960818648338,0.849716246128082,0.519606292247772,0.0893960818648338,0.849716246128082,0.519606232643127,0.0893960818648338,0.785070776939392,0.617675125598907,0.0462752729654312,0.785070776939392,0.617675125598907,0.0462752729654312,0.785070776939392,0.617675125598907,0.0462752804160118,-0.52512514591217,0.849393725395203,-0.0526679940521717,-0.52512514591217,0.849393784999847,-0.0526679940521717,-0.52512514591217,0.849393784999847,-0.0526679940521717,-0.657530069351196,0.752192616462708,-0.0431352145969868,-0.657530069351196,0.752192556858063,-0.0431352145969868,-0.657530069351196,0.752192616462708,-0.0431352145969868,-0.773495197296143,-0.631485939025879,-0.0541363544762135,-0.773495197296143,-0.631485879421234,-0.0541363582015038,-0.773495197296143,-0.631485939025879,-0.0541363582015038,-0.801500558853149,-0.59732311964035,-0.0283191949129105,-0.801500618457794,-0.597323179244995,-0.0283191986382008,-0.801500558853149,-0.597323179244995,-0.0283191949129105,0.260023295879364,-0.609506845474243,0.748925447463989,0.260023295879364,-0.609506845474243,0.748925447463989,0.260023325681686,-0.609506845474243,0.748925507068634,0.277954488992691,-0.338318288326263,0.89904510974884,0.277954488992691,-0.338318258523941,0.89904510974884,0.277954488992691,-0.338318258523941,0.89904510974884,0.126733183860779,0.792933940887451,0.595982015132904,0.126733183860779,0.792933881282806,0.595982015132904,0.126733168959618,0.792933940887451,0.595981955528259,-0.265877962112427,0.586709856987,-0.764905512332916,-0.265877962112427,0.586709916591644,-0.764905512332916,-0.265877932310104,0.586709856987,-0.764905512332916,-0.262835592031479,0.562419474124908,-0.783965408802032,-0.262835592031479,0.562419593334198,-0.783965408802032,-0.262835621833801,0.562419533729553,-0.783965468406677,
- -0.122155547142029,0.328891456127167,-0.936433911323547,-0.122155502438545,0.328891426324844,-0.936433911323547,-0.122155539691448,0.328891396522522,-0.936433911323547,0.801281154155731,-0.509794890880585,0.313142091035843,0.801281154155731,-0.509794890880585,0.313142091035843,0.801281094551086,-0.509794771671295,0.313142120838165,0.810748636722565,-0.446126699447632,0.379022061824799,0.810748636722565,-0.446126639842987,0.379022061824799,0.810748636722565,-0.446126669645309,0.379022061824799,0.306667655706406,0.943760275840759,0.123577557504177,0.306667655706406,0.943760275840759,0.123577572405338,0.306667655706406,0.943760335445404,0.123577564954758,-0.703805327415466,0.616572558879852,-0.352840483188629,-0.703805327415466,0.616572558879852,-0.352840483188629,-0.703805267810822,0.616572558879852,-0.352840483188629,-0.766079604625702,0.579799711704254,-0.277406871318817,-0.766079545021057,0.579799652099609,-0.277406871318817,-0.766079545021057,0.579799652099609,-0.277406871318817,-0.918998420238495,-0.0341449975967407,0.39277982711792,-0.91899847984314,-0.034145001322031,0.392779856920242,-0.918998420238495,-0.0341449975967407,0.39277982711792,0.804901719093323,0.425421357154846,0.413702726364136,0.804901719093323,0.425421327352524,0.413702726364136,0.804901719093323,0.425421357154846,0.413702726364136,0.894104659557343,0.447661012411118,0.0132883302867413,0.894104659557343,0.447660952806473,0.0132883321493864,0.894104659557343,0.447661012411118,0.0132883302867413,-0.405586123466492,0.913948237895966,0.0140943117439747,-0.405586123466492,0.913948178291321,0.0140943080186844,-0.405586183071136,0.913948178291321,0.0140942931175232,-0.521913886070251,0.85185706615448,0.0441094599664211,-0.521913886070251,0.851857006549835,0.0441094674170017,-0.521913826465607,0.85185706615448,0.0441094525158405,-0.968892157077789,0.0419382005929947,-0.243904113769531,-0.968892157077789,0.0419382005929947,-0.243904113769531,-0.968892216682434,0.0419382005929947,-0.243904128670692,0.402339309453964,0.915153801441193,-0.0248362552374601,
- 0.402339309453964,0.915153801441193,-0.024836253374815,0.402339309453964,0.915153801441193,-0.0248362552374601,0.505500316619873,0.860423386096954,-0.0643505901098251,0.505500316619873,0.860423386096954,-0.0643505901098251,0.505500376224518,0.860423445701599,-0.0643506050109863,0.983998894691467,0.0547803714871407,0.16954430937767,0.983998954296112,0.0547803789377213,0.16954430937767,0.983998894691467,0.0547803714871407,0.16954430937767,-0.228683277964592,-0.606408774852753,0.761559128761292,-0.228683277964592,-0.606408774852753,0.761559188365936,-0.228683292865753,-0.606408715248108,0.761559188365936,-0.306880682706833,-0.356846958398819,0.882317721843719,-0.306880682706833,-0.356846958398819,0.882317781448364,-0.306880682706833,-0.356846928596497,0.882317721843719,-0.1144163236022,0.922591507434845,0.368420749902725,-0.1144163236022,0.922591626644135,0.368420720100403,-0.11441633105278,0.92259156703949,0.368420749902725,0.306247889995575,0.587321400642395,-0.749176740646362,0.306247889995575,0.587321400642395,-0.749176740646362,0.306247919797897,0.587321400642395,-0.749176800251007,0.17834797501564,0.610317707061768,-0.771818876266479,0.17834797501564,0.610317766666412,-0.771818935871124,0.17834797501564,0.610317766666412,-0.771818935871124,0.37136697769165,0.359028905630112,-0.856262147426605,0.37136697769165,0.359028905630112,-0.85626208782196,0.37136697769165,0.359028965234756,-0.856262147426605,0.206342086195946,-0.583638787269592,-0.785359025001526,0.206342086195946,-0.583638787269592,-0.785359084606171,0.206342086195946,-0.583638787269592,-0.785359025001526,0.181340962648392,-0.426923096179962,-0.885918796062469,0.181340977549553,-0.426923125982285,-0.885918915271759,0.181340962648392,-0.426923096179962,-0.885918796062469,0.0826342552900314,0.907920300960541,-0.410916656255722,0.082634262740612,0.907920181751251,-0.4109166264534,0.082634262740612,0.907920181751251,-0.4109166264534,-0.186150923371315,0.69147664308548,0.698002755641937,-0.186150938272476,0.691476702690125,0.698002815246582,-0.186150938272476,0.69147664308548,0.698002815246582,
- -0.194792568683624,0.584479033946991,0.787680208683014,-0.194792568683624,0.584479033946991,0.787680208683014,-0.194792598485947,0.584479093551636,0.787680268287659,-0.43166908621788,0.395266026258469,0.810818552970886,-0.431669116020203,0.395266056060791,0.810818552970886,-0.431669116020203,0.395265996456146,0.810818552970886,0.812523126602173,-0.581385910511017,-0.0423851124942303,0.812523186206818,-0.581385970115662,-0.0423851199448109,0.812523186206818,-0.581385910511017,-0.0423851162195206,0.835294544696808,-0.549686849117279,-0.0112955737859011,0.835294485092163,-0.549686789512634,-0.0112955747172236,0.835294485092163,-0.549686849117279,-0.0112955747172236,0.45754662156105,0.889020621776581,-0.0171306859701872,0.45754662156105,0.889020621776581,-0.0171306859701872,0.45754662156105,0.889020621776581,-0.0171306859701872,-0.716390430927277,0.696642935276031,0.0383838564157486,-0.716390430927277,0.696643054485321,0.0383838452398777,-0.716390430927277,0.696642994880676,0.0383838526904583,-0.854642271995544,0.516855418682098,0.049469631165266,-0.854642152786255,0.516855359077454,0.0494696237146854,-0.8546422123909,0.516855418682098,0.0494696274399757,-0.863003253936768,0.503805756568909,0.0374852567911148,-0.863003313541412,0.503805816173553,0.0374852605164051,-0.863003313541412,0.503805816173553,0.0374852567911148,-0.796121537685394,0.605094730854034,0.00713735166937113,-0.796121597290039,0.605094790458679,0.00713735911995173,-0.796121597290039,0.605094790458679,0.00713735166937113,-0.765815079212189,-0.565053701400757,0.30698823928833,-0.765815079212189,-0.565053701400757,0.30698823928833,-0.765815079212189,-0.565053701400757,0.30698823928833,-0.852723717689514,-0.392224729061127,0.344995766878128,-0.852723717689514,-0.392224729061127,0.344995737075806,-0.852723717689514,-0.392224729061127,0.344995766878128,0.589472115039825,0.678009152412415,-0.439119815826416,0.589472115039825,0.678009152412415,-0.439119815826416,0.589472115039825,0.678009212017059,-0.439119875431061,0.778906762599945,0.577342689037323,-0.244907677173615,
- 0.7789067029953,0.577342629432678,-0.244907677173615,0.7789067029953,0.577342689037323,-0.244907662272453,0.767556071281433,-0.570723116397858,-0.291775643825531,0.767555952072144,-0.570723116397858,-0.291775584220886,0.767556071281433,-0.570723116397858,-0.291775643825531,0.858213663101196,-0.419555753469467,-0.295706689357758,0.858213603496552,-0.419555693864822,-0.295706629753113,0.858213603496552,-0.419555723667145,-0.295706629753113,-0.689248740673065,0.712074637413025,0.133738696575165,-0.689248740673065,0.712074637413025,0.133738696575165,-0.689248740673065,0.712074637413025,0.133738696575165,-0.76468151807785,0.57026880979538,0.300092995166779,-0.764681458473206,0.57026880979538,0.300093024969101,-0.764681458473206,0.570268750190735,0.300093024969101,-0.702304482460022,-0.49623304605484,0.510412752628326,-0.702304542064667,-0.496232986450195,0.510412812232971,-0.702304482460022,-0.49623304605484,0.510412812232971,-0.951420307159424,-0.168238699436188,-0.257866472005844,-0.951420307159424,-0.168238699436188,-0.257866472005844,-0.951420366764069,-0.16823872923851,-0.257866472005844,0.730482041835785,0.678251564502716,-0.0798175111413002,0.730482041835785,0.678251624107361,-0.0798175260424614,0.730482041835785,0.678251564502716,-0.0798175111413002,0.86565363407135,0.499996215105057,-0.0254484787583351,0.865653693675995,0.499996215105057,-0.0254484806209803,0.86565363407135,0.499996244907379,-0.0254484750330448,-0.499581515789032,-0.51019299030304,0.700086712837219,-0.499581575393677,-0.51019299030304,0.700086712837219,-0.499581515789032,-0.51019299030304,0.700086712837219,-0.58342057466507,-0.438334107398987,0.683727860450745,-0.58342057466507,-0.438334107398987,0.683727860450745,-0.583420515060425,-0.43833401799202,0.683727860450745,-0.198007002472878,0.949958443641663,0.241603270173073,-0.198007017374039,0.949958443641663,0.241603299975395,-0.198007017374039,0.949958443641663,0.241603285074234,0.519915223121643,0.610286891460419,-0.597694039344788,0.519915163516998,0.610286951065063,-0.597693979740143,0.519915223121643,0.610286951065063,-0.597693979740143,
- 0.449745625257492,0.595944762229919,-0.66526597738266,0.449745625257492,0.595944762229919,-0.66526597738266,0.449745684862137,0.595944702625275,-0.66526597738266,-0.221402198076248,-0.269423574209213,0.937225699424744,-0.221402198076248,-0.269423544406891,0.937225699424744,-0.221402227878571,-0.269423574209213,0.937225759029388,-0.345953077077866,0.198831290006638,-0.916942059993744,-0.345953047275543,0.198831290006638,-0.916942000389099,-0.345953047275543,0.198831334710121,-0.916942059993744,0.0326179265975952,0.516709804534912,-0.85553902387619,0.0326179265975952,0.516709804534912,-0.85553902387619,0.0326179265975952,0.516709804534912,-0.85553902387619,0.0857922062277794,0.91403329372406,-0.396462976932526,0.08579221367836,0.914033234119415,-0.396462976932526,0.08579221367836,0.91403329372406,-0.396462976932526,0.0861078947782516,0.851367712020874,-0.517453849315643,0.0861078947782516,0.851367652416229,-0.517453849315643,0.0861078947782516,0.851367712020874,-0.517453849315643,0.465201646089554,0.0414423644542694,-0.884234130382538,0.465201705694199,0.0414423607289791,-0.884234189987183,0.465201675891876,0.0414423607289791,-0.884234130382538,-0.261153340339661,-0.585858225822449,-0.76718270778656,-0.261153310537338,-0.585858225822449,-0.767182588577271,-0.261153310537338,-0.585858285427094,-0.767182648181915,-0.229254901409149,-0.631711184978485,-0.74052906036377,-0.229254901409149,-0.631711184978485,-0.74052906036377,-0.229254901409149,-0.63171112537384,-0.74052906036377,-0.223138317465782,0.725331604480743,-0.651232302188873,-0.223138302564621,0.725331544876099,-0.651232302188873,-0.223138317465782,0.725331604480743,-0.651232302188873,-0.174168169498444,0.887456595897675,-0.426715612411499,-0.174168154597282,0.887456595897675,-0.426715642213821,-0.174168154597282,0.887456595897675,-0.426715582609177,0.255655497312546,0.59686267375946,0.760522961616516,0.255655497312546,0.59686267375946,0.760523021221161,0.255655497312546,0.59686267375946,0.760522961616516,0.253260791301727,0.626602172851563,0.737040519714355,0.253260791301727,0.626602172851563,0.737040519714355,
- 0.253260791301727,0.626602113246918,0.737040519714355,0.000144556164741516,0.345174998044968,0.938538312911987,0.000144556164741516,0.345174968242645,0.938538312911987,0.000144541263580322,0.345174968242645,0.938538372516632,-0.0193731114268303,0.724548816680908,0.688951194286346,-0.0193731114268303,0.724548816680908,0.688951134681702,-0.0193731114268303,0.724548816680908,0.688951194286346,0.745863795280457,-0.37891760468483,-0.547821879386902,0.745863795280457,-0.37891760468483,-0.547821879386902,0.745863735675812,-0.378917574882507,-0.547821879386902,0.985742390155792,-0.152384594082832,0.0713501647114754,0.985742390155792,-0.152384594082832,0.0713501647114754,0.985742390155792,-0.152384594082832,0.0713501647114754,-0.817899703979492,0.575356185436249,0.00234601274132729,-0.817899703979492,0.575356185436249,0.00234601274132729,-0.817899644374847,0.575356125831604,0.00234600878320634,-0.779693961143494,0.626053333282471,0.011601272970438,-0.779694020748138,0.626053392887115,0.0116012720391154,-0.779693961143494,0.626053333282471,0.011601272970438,0.654751837253571,-0.539077401161194,-0.529807209968567,0.654751777648926,-0.539077401161194,-0.529807209968567,0.654751777648926,-0.539077401161194,-0.529807209968567,0.768963932991028,-0.388816326856613,-0.507460594177246,0.768963992595673,-0.388816386461258,-0.507460594177246,0.768963992595673,-0.388816386461258,-0.507460594177246,-0.581781983375549,0.712591588497162,0.392100870609283,-0.581781923770905,0.712591588497162,0.392100751399994,-0.581781983375549,0.712591528892517,0.392100840806961,-0.678052186965942,0.571012079715729,0.462807208299637,-0.678052186965942,0.571012079715729,0.462807238101959,-0.678052186965942,0.571012020111084,0.462807267904282,-0.479273289442062,0.640651226043701,0.599886059761047,-0.479273289442062,0.640651226043701,0.599886059761047,-0.479273289442062,0.640651226043701,0.599886059761047,-0.000707517494447529,0.999999701976776,-0.000398265081457794,-0.000608359230682254,0.999999761581421,-0.000540155393537134,-0.0021341813262552,0.999996364116669,-0.00167473254259676,
- -0.00213683489710093,0.999996304512024,-0.00167133391369134,-0.000369598419638351,0.999985158443451,0.00543596735224128,3.58654602905517e-007,1,-2.40960707742488e-006,1.90454613857582e-007,1,-2.33620153267111e-006,1.87039319143878e-007,1,-2.29430770559702e-006,-0.000608359230682254,0.999999761581421,-0.000540155393537134,1.69184750120621e-006,1,-1.74743365732866e-006,2.20728588828933e-006,1,-9.58129248829209e-007,2.29823581321398e-006,1,-9.11904407985276e-007,6.76233830745332e-005,0.999907732009888,0.0135889863595366,1.38470568344928e-007,1,-2.24916743718495e-006,-0.000369598419638351,0.999985158443451,0.00543596735224128,0.00013524282258004,0.999630630016327,0.0271771792322397,0.0684085935354233,0.997596323490143,-0.0110376533120871,0.00264434958808124,0.999797463417053,-0.0199556890875101,-0.0177859198302031,0.999800980091095,-0.00904496293514967,-0.00178562733344734,0.999677658081055,0.0253275185823441,0.00726502714678645,0.999659717082977,0.0250568185001612,0.570060014724731,-0,0.821603059768677,0.570064067840576,-0,0.821600258350372,0.570068061351776,-0,0.821597456932068,0.570064067840576,-0,0.821600258350372,1.19603851089778e-006,1,-1.92079619409924e-006,-0.000707517494447529,0.999999701976776,-0.000398265081457794,3.58654602905517e-007,1,-2.40960707742488e-006,4.3515458969523e-007,1,-2.44224293055595e-006,0.935212910175323,5.55145973635263e-009,0.354085862636566,0.935208976268768,5.55162493753869e-009,0.354096353054047,0.935205042362213,5.55178925054634e-009,0.354106843471527,0.935208916664124,5.55162449344948e-009,0.354096353054047,-1.0050577657239e-005,1,-2.1098619527038e-006,-1.03260854302789e-005,1,-2.18241325455892e-006,-1.0601607755234e-005,1,-2.25496842176653e-006,-1.06016223071492e-005,1,-2.25497228711902e-006,-1.04179307527374e-005,1,-2.2065992197895e-006,0.00189411523751915,0.0259576737880707,0.999661326408386,0.00189408217556775,0.0259576588869095,0.999661326408386,0.00189404957927763,0.025957640260458,0.999661326408386,0.00189408217556775,0.0259576588869095,0.999661326408386,3.88825583286234e-006,1,1.907543037305e-006,
- 3.70158795703901e-006,1,1.69230997926206e-006,3.51492190020508e-006,1,1.47707908126904e-006,3.51492394656816e-006,1,1.47708112763212e-006,3.63936669600662e-006,1,1.62056664976262e-006,-0.0025446058716625,0.99999463558197,-0.00206302595324814,-0.000721989315934479,0.999999523162842,-0.000679476244840771,-0.000857832666952163,0.999999582767487,-0.000478340371046215,-0.00258131721056998,0.999994695186615,-0.00201600650325418,1.69184750120621e-006,1,-1.74743365732866e-006,-0.000608359230682254,0.999999761581421,-0.000540155393537134,-0.000707517494447529,0.999999701976776,-0.000398265081457794,1.19603851089778e-006,1,-1.92079619409924e-006,-0.625359117984772,0.607455432415009,-0.48982036113739,-0.625359296798706,0.607455432415009,-0.489820063114166,-0.62535947561264,0.607455432415009,-0.48981985449791,-0.625359296798706,0.607455432415009,-0.489820063114166,-1.15601288541711e-008,1,1.32838962940696e-007,9.04351963981753e-006,1,-2.44867023866391e-005,-0.000200474794837646,0.999996304512024,0.00270727439783514,1.01570005739404e-008,1,-1.16715433762238e-007,4.3515458969523e-007,1,-2.44224293055595e-006,3.58654602905517e-007,1,-2.40960707742488e-006,-0.000369598419638351,0.999985158443451,0.00543596735224128,1.38470568344928e-007,1,-2.24916743718495e-006,-0.794597387313843,0.604016184806824,-0.0614780634641647,-0.794497847557068,0.604016721248627,-0.0627468824386597,-0.794396936893463,0.604016244411469,-0.0640155896544456,-0.794497787952423,0.604016721248627,-0.0627468824386597,0.0391777828335762,0.999185144901276,-0.00971362739801407,0.0391698814928532,0.999185383319855,-0.00971764791756868,0.0392050482332706,0.999184131622314,-0.00969975162297487,0.0392595864832401,0.999182283878326,-0.00967199821025133,0.0392226353287697,0.999183535575867,-0.00969079881906509,4.75148863188224e-006,1,-0,5.6980888984981e-006,1,-0,6.64466915623052e-006,1,-0,8.53780511533841e-006,1,-0,5.69806070416234e-006,1,-0,2.85826490653562e-006,1,-0,2.29823581321398e-006,1,-9.11904407985276e-007,4.12934605265036e-005,1,0.000211088365176693,2.41969883063575e-006,1,-7.54580810280459e-007,
- 2.37063977692742e-006,1,-7.39281801998004e-007,5.12531926233351e-007,1,4.82396080769831e-006,2.68554742888227e-007,1,2.52764266406302e-006,5.23254115591953e-008,1,4.92487799874652e-007,1.77980112425757e-007,1,1.67515224802628e-006,2.40808049056795e-007,1,2.26649035539594e-006,3.31382267404479e-007,1,3.11897633764602e-006,2.16693706533988e-007,1,-6.75758329293785e-008,5.14993007527664e-005,1,0.000253033067565411,-1.03965319908639e-007,1,4.12540650529536e-008,-5.6338052445426e-008,1,1.75689969239556e-008,7.44558274163865e-005,1,0.000299261329928413,4.12934605265036e-005,1,0.000211088365176693,2.29823581321398e-006,1,-9.11904407985276e-007,2.20728588828933e-006,1,-9.58129248829209e-007,-0.225509494543076,0.607831597328186,-0.761371374130249,-0.225992977619171,0.607831656932831,-0.761227905750275,-0.226476415991783,0.607831597328186,-0.761084139347076,-0.225992992520332,0.607831656932831,-0.761227905750275,1.36433232000854e-006,1,-2.04077537091507e-006,1.36433084207965e-006,1,-2.04077764465183e-006,1.27348448586417e-006,1,-2.20757647184655e-006,1.09178881757543e-006,1,-2.54117776421481e-006,1.22806113722618e-006,1,-2.29097531700972e-006,0.625361680984497,0.607455253601074,0.489817202091217,0.625391602516174,0.607455253601074,0.489778965711594,0.625421643257141,0.607455253601074,0.489740669727325,0.625391662120819,0.607455313205719,0.489778965711594,0.79394006729126,0.603829145431519,0.0710608661174774,0.79385769367218,0.603828847408295,0.0719773024320602,0.793940007686615,0.603829145431519,0.0710608586668968,0.794021785259247,0.603828847408295,0.0701443701982498,0.246235191822052,0.607827425003052,0.75492662191391,0.245837733149529,0.607827484607697,0.755055963993073,0.245440289378166,0.607827484607697,0.75518536567688,0.245837762951851,0.607827544212341,0.755056083202362,7.83136565587483e-005,0.999999344348907,-0.00115639762952924,3.36668272211682e-005,0.999977111816406,0.00676538189873099,8.45905960886739e-005,0.999855518341064,0.0169985629618168,-0.000200474794837646,0.999996304512024,0.00270727439783514,-9.02142892300617e-006,1,-9.46522413869388e-006,
- -0.000721989315934479,0.999999523162842,-0.000679476244840771,-1.03965319908639e-007,1,4.12540650529536e-008,3.83332441344919e-008,1,-1.66394400480385e-008,3.35643671860453e-005,0.999999523162842,0.00103435444179922,-6.90245087753283e-008,1,2.14220641225893e-008,5.14993007527664e-005,1,0.000253033067565411,-0.000200474794837646,0.999996304512024,0.00270727439783514,9.04351963981753e-006,1,-2.44867023866391e-005,1.332407737209e-005,1,-3.16492842102889e-005,7.83136565587483e-005,0.999999344348907,-0.00115639762952924,9.04351963981753e-006,1,-2.44867023866391e-005,-0.000857832666952163,0.999999582767487,-0.000478340371046215,-1.46575366670731e-005,1,1.22357396321604e-005,1.332407737209e-005,1,-3.16492842102889e-005,-0.000857832666952163,0.999999582767487,-0.000478340371046215,-0.000721989315934479,0.999999523162842,-0.000679476244840771,-9.02142892300617e-006,1,-9.46522413869388e-006,-1.46575366670731e-005,1,1.22357396321604e-005,-1.03965319908639e-007,1,4.12540650529536e-008,5.14993007527664e-005,1,0.000253033067565411,-6.90245087753283e-008,1,2.14220641225893e-008,3.83332441344919e-008,1,-1.66394400480385e-008,-0.999717056751251,6.28104623867642e-010,-0.0237867180258036,-0.999987602233887,0,0.00497627584263682,-0.999987661838531,0,0.00497627584263682,-0.998520791530609,1.40412592664063e-009,-0.0543724335730076,-0.975238919258118,2.01106506447779e-010,-0.221154436469078,-0.999717056751251,6.28104623867642e-010,-0.0237867180258036,-0.998520791530609,1.40412592664063e-009,-0.0543724335730076,-0.974937677383423,-2.26246493761906e-010,-0.222478091716766,-0.84624707698822,6.21374784959272e-010,-0.532790720462799,-0.975238919258118,2.01106506447779e-010,-0.221154436469078,-0.974937677383423,-2.26246493761906e-010,-0.222478091716766,-0.89543092250824,-6.39097885724027e-010,-0.445200443267822,-0.649691462516785,1.69411631389949e-008,-0.760197997093201,-0.84624707698822,6.21374784959272e-010,-0.532790720462799,-0.89543092250824,-6.39097885724027e-010,-0.445200443267822,-0.723473727703094,1.47741996414652e-008,-0.690351963043213,
- -0.392523467540741,-2.04090433442161e-008,-0.919741988182068,-0.649691462516785,1.69411631389949e-008,-0.760197997093201,-0.723473727703094,1.47741996414652e-008,-0.690351963043213,-0.484248548746109,-1.86350863629059e-008,-0.874930441379547,0.00470192730426788,1.28769940488382e-007,-0.999988973140717,0.00470238132402301,1.29340321564086e-007,-0.999989032745361,0.00470283394679427,4.58108040390925e-008,-0.999988973140717,0.00470238132402301,4.24706847468315e-008,-0.999989032745361,-0.233852937817574,-2.78741332238042e-008,-0.972271978855133,-0.103045150637627,1.28653212527752e-007,-0.99467670917511,-0.103034570813179,1.28086014683504e-007,-0.994677782058716,-0.168674826622009,-2.93929218742051e-008,-0.985671758651733,-0.484248548746109,-1.86350863629059e-008,-0.874930441379547,-0.233852937817574,-2.78741332238042e-008,-0.972271978855133,-0.168674826622009,-2.93929218742051e-008,-0.985671758651733,-0.392523467540741,-2.04090433442161e-008,-0.919741988182068,0.000611054769251496,0.0302625596523285,0.999541878700256,0.0006110435933806,0.0302625652402639,0.999541878700256,0.000611034163739532,0.0302625671029091,0.999541759490967,0.000611044408287853,0.0302625596523285,0.999541759490967,-0.147286936640739,0.961215734481812,-0.233175694942474,0.00204013544134796,0.754577875137329,-0.656207323074341,0.00264434958808124,0.999797463417053,-0.0199556890875101,0.0684085935354233,0.997596323490143,-0.0110376533120871,0.00204013544134796,0.754577875137329,-0.656207323074341,0.0584981292486191,0.94419276714325,-0.324157536029816,-0.0177859198302031,0.999800980091095,-0.00904496293514967,0.00264434958808124,0.999797463417053,-0.0199556890875101,0.237860426306725,0.962109327316284,-0.133297488093376,-0.325550884008408,0.895148754119873,0.304508566856384,-0.0193433966487646,0.999513566493988,0.0244637541472912,-0.131363213062286,0.991242587566376,-0.0134857026860118,-0.00236882269382477,0.874622046947479,0.48479962348938,0.107610940933228,0.894638001918793,0.433639138936996,0.00726502714678645,0.999659717082977,0.0250568185001612,
- -0.00178562733344734,0.999677658081055,0.0253275185823441,0.107610940933228,0.894638001918793,0.433639138936996,-0.147286936640739,0.961215734481812,-0.233175694942474,0.0684085935354233,0.997596323490143,-0.0110376533120871,0.00726502714678645,0.999659717082977,0.0250568185001612,0.000557558611035347,0.999999761581421,-0.000589028000831604,0.00067100313026458,0.999999642372131,-0.000458526279544458,0.0021405469160527,0.999996364116669,-0.00166198017541319,0.00213789870031178,0.999996364116669,-0.00166537263430655,-6.45295367576182e-005,1,0.000212158018257469,2.33349692280171e-006,1,9.31011413740634e-007,2.32319962378824e-006,1,7.34771106181142e-007,2.28153885473148e-006,1,7.21594801689207e-007,0.00067100313026458,0.999999642372131,-0.000458526279544458,1.28434828639001e-006,1,2.06549634640396e-006,4.12165462648773e-007,1,2.32058346227859e-006,3.52709975004473e-007,1,2.38621032622177e-006,1.651171623962e-005,0.999999642372131,0.000857255363371223,-1.98487960005878e-005,1,0.000311942625558004,-1.8696211554925e-005,1,0.00022283659200184,4.12934605265036e-005,1,0.000211088365176693,7.44558274163865e-005,1,0.000299261329928413,-0.935435712337494,5.3706319391722e-009,0.35349702835083,-0.935434877872467,5.37066258132768e-009,0.353499054908752,-0.935434103012085,5.37069366757237e-009,0.353501111268997,-0.935434877872467,5.37066258132768e-009,0.353499054908752,1.57290844526869e-006,1,1.62661319791368e-006,0.000557558611035347,0.999999761581421,-0.000589028000831604,2.33349692280171e-006,1,9.31011413740634e-007,2.31038666242966e-006,1,1.00630757060571e-006,-0.570578515529633,0,0.821243107318878,-0.570585012435913,0,0.82123851776123,-0.570591568946838,0,0.821233987808228,-0.570585012435913,0,0.82123851776123,4.99269390275003e-006,1,-8.95943412615452e-006,5.40453447683831e-006,1,-9.70836026681354e-006,5.8163850553683e-006,1,-1.04573045973666e-005,5.81639369556797e-006,1,-1.04573218777659e-005,5.54182088308153e-006,1,-9.95801383396611e-006,-0.0435069277882576,-0.519222497940063,-0.853531062602997,-0.0322382338345051,-0.519728362560272,-0.853723108768463,
- -0.0209654346108437,-0.520168125629425,-0.853806495666504,-0.0322382301092148,-0.519728362560272,-0.853723108768463,-4.98261306347558e-006,1,-2.26751285481441e-006,-4.98261306347558e-006,1,-2.26751285481441e-006,-4.98261260872823e-006,1,-2.26751376430911e-006,-4.98261169923353e-006,1,-2.26751399168279e-006,-4.98261260872823e-006,1,-2.26751376430911e-006,0.00262923515401781,0.99999463558197,-0.00197565020062029,0.000836313993204385,0.999999582767487,-0.000536891631782055,0.000673825561534613,0.999999582767487,-0.0007180156535469,0.00259249494411051,0.99999463558197,-0.00202273414470255,1.28434828639001e-006,1,2.06549634640396e-006,0.00067100313026458,0.999999642372131,-0.000458526279544458,0.000557558611035347,0.999999761581421,-0.000589028000831604,1.57290844526869e-006,1,1.62661319791368e-006,0.626991868019104,0.607460618019104,-0.48772206902504,0.626997292041779,0.607460677623749,-0.487715005874634,0.627002835273743,0.607460677623749,-0.487708032131195,0.626997351646423,0.607460618019104,-0.487715035676956,-3.91265615462544e-007,1,-1.23747568636645e-007,2.17838878597831e-005,1,1.39804633363383e-005,-4.90386664750986e-005,1,0.000262885761912912,-1.28870127014125e-007,1,-4.07584153094831e-008,2.31038666242966e-006,1,1.00630757060571e-006,2.33349692280171e-006,1,9.31011413740634e-007,-6.45295367576182e-005,1,0.000212158018257469,-9.13781186682172e-005,1,0.000297604041406885,0.236413270235062,0.607796132564545,-0.758084952831268,0.236266240477562,0.6077960729599,-0.758130848407745,0.236413270235062,0.607796132564545,-0.758084833621979,0.236560299992561,0.607796132564545,-0.758039057254791,-8.22041110950522e-005,0.999184846878052,0.0403709262609482,-7.63833522796631e-005,0.999185085296631,0.0403642356395721,-0.000102169826277532,0.999183893203735,0.0403938703238964,-0.00014210119843483,0.999181985855103,0.0404397696256638,-0.00011505743896123,0.999183237552643,0.0404086895287037,-5.88308637361479e-007,1,5.47973104403354e-006,-6.71307532229548e-007,1,6.23184723735903e-006,-7.54310008233006e-007,1,6.98399708198849e-006,
- -9.20311890695302e-007,1,8.48826766741695e-006,-6.71310090183397e-007,1,6.23187088422128e-006,-4.22307692815593e-007,1,3.9754695535521e-006,3.52709975004473e-007,1,2.38621032622177e-006,1.88519807124976e-005,1,7.96897893451387e-007,1.91528172877042e-007,1,2.42784994952672e-006,1.87644971560985e-007,1,2.37862559515634e-006,0.000127048493595794,1,1.820668558139e-006,0.000127043691463768,1,1.48246851949807e-006,0.000127035134937614,1,8.7619366695435e-007,1.88519807124976e-005,1,7.96897893451387e-007,2.84778434433974e-005,1,6.55687415473949e-007,-0.0123308738693595,0.0433847270905972,-0.99898236989975,-0.0130971111357212,0.0429204553365707,-0.998992621898651,-0.0138633456081152,0.0424561537802219,-0.99900221824646,-0.0130971111357212,0.0429204553365707,-0.998992621898651,-4.8510160013393e-006,1,0,-1.6648531300234e-006,1,0,9.96047333501338e-007,1,-0,-4.27713587214384e-007,1,0,-1.13959811187669e-006,1,0,-2.37673475567135e-006,1,0,-2.03686290056737e-009,1,-2.41331541417367e-008,0.000179368231329136,0.999997735023499,0.00215788767673075,-6.36906847262253e-008,1,-4.09247178367878e-007,-2.93821980079656e-008,1,-3.48126121707537e-007,2.84778434433974e-005,1,6.55687415473949e-007,1.88519807124976e-005,1,7.96897893451387e-007,3.52709975004473e-007,1,2.38621032622177e-006,4.12165462648773e-007,1,2.32058346227859e-006,0.795117080211639,0.604129791259766,-0.053066860884428,0.795220911502838,0.604128956794739,-0.0514974296092987,0.795117139816284,0.604129791259766,-0.0530668646097183,0.795011281967163,0.604129135608673,-0.0546361654996872,1.10323969693127e-006,1,-2.85793277043922e-007,1.10324253910221e-006,1,-2.85794044430077e-007,1.28711178604135e-006,1,-3.33425191456627e-007,1.65485607794835e-006,1,-4.28689020282036e-007,1.37904646635434e-006,1,-3.57240764969902e-007,-0.00946493726223707,0.999937236309052,-0.00601232564076781,0.00548499869182706,0.999824464321136,0.0179155040532351,-0.00660225655883551,0.99981701374054,0.0179538317024708,0.0126506313681602,0.999901473522186,-0.00609962362796068,0.000601233041379601,0.999904274940491,-0.0138229364529252,
- -0.627009809017181,0.607445955276489,0.48771733045578,-0.626982629299164,0.607445955276489,0.487752139568329,-0.626955628395081,0.607445955276489,0.487787038087845,-0.626982688903809,0.607445955276489,0.487752169370651,-0.242236122488976,0.60779595375061,0.756244540214539,-0.242114052176476,0.60779595375061,0.756283700466156,-0.242236122488976,0.607795894145966,0.756244540214539,-0.242358192801476,0.607795894145966,0.756205439567566,-0.793689608573914,0.603623449802399,0.075469546020031,-0.793623864650726,0.603623688220978,0.0761552751064301,-0.793557941913605,0.603623449802399,0.0768409743905067,-0.793623864650726,0.603623628616333,0.0761552751064301,5.14993007527664e-005,1,0.000253033067565411,-4.90386664750986e-005,1,0.000262885761912912,-7.68639292800799e-005,1,0.000367312633898109,3.35643671860453e-005,0.999999523162842,0.00103435444179922,9.35243679123232e-006,1,-5.63141975362669e-006,0.000836313993204385,0.999999582767487,-0.000536891631782055,-6.36906847262253e-008,1,-4.09247178367878e-007,-3.97003638852311e-008,1,-2.13767123113939e-007,0.000194809370441362,0.99998813867569,0.00486222002655268,-2.40344419921712e-008,1,-2.86634758595028e-007,0.000179368231329136,0.999997735023499,0.00215788767673075,0.000234891951549798,0.999973356723785,0.00729321641847491,0.000184269825695083,0.999992907047272,0.00378376804292202,0.000194809370441362,0.99998813867569,0.00486222002655268,0.000179368231329136,0.999997735023499,0.00215788767673075,-4.90386664750986e-005,1,0.000262885761912912,2.17838878597831e-005,1,1.39804633363383e-005,2.77989165624604e-005,1,1.97368590306723e-005,-7.68639292800799e-005,1,0.000367312633898109,2.17838878597831e-005,1,1.39804633363383e-005,0.000673825561534613,0.999999582767487,-0.0007180156535469,-9.93264711723896e-006,1,-1.60351391969016e-005,2.77989165624604e-005,1,1.97368590306723e-005,0.000673825561534613,0.999999582767487,-0.0007180156535469,0.000836313993204385,0.999999582767487,-0.000536891631782055,9.35243679123232e-006,1,-5.63141975362669e-006,-9.93264711723896e-006,1,-1.60351391969016e-005,
- -6.36906847262253e-008,1,-4.09247178367878e-007,0.000179368231329136,0.999997735023499,0.00215788767673075,-2.40344419921712e-008,1,-2.86634758595028e-007,-3.97003638852311e-008,1,-2.13767123113939e-007,0.485767215490341,0,-0.874088227748871,0.301552474498749,4.04941005172077e-008,-0.953449606895447,0.301552206277847,4.36787779278802e-008,-0.953449726104736,0.395182400941849,0,-0.918602764606476,0.722323536872864,0,-0.691555321216583,0.485767215490341,0,-0.874088227748871,0.395182400941849,0,-0.918602764606476,0.649303138256073,0,-0.760529756546021,0.895201146602631,0,-0.445662438869476,0.722323536872864,0,-0.691555321216583,0.649303138256073,0,-0.760529756546021,0.845358729362488,0,-0.534199059009552,0.98481810092926,0,-0.173590004444122,0.895201146602631,0,-0.445662438869476,0.845358729362488,0,-0.534199059009552,0.963982760906219,0,-0.265964716672897,0.999972462654114,0,-0.00742752756923437,0.999890327453613,0,-0.014811092056334,0.999889731407166,0,-0.0148546453565359,0.999972283840179,0,-0.00744930515065789,0.998525381088257,0,-0.0542887151241302,0.999972462654114,0,-0.00742752756923437,0.999972283840179,0,-0.00744930515065789,0.999655961990356,0,-0.0262326132506132,0.963982760906219,0,-0.265964716672897,0.998525381088257,0,-0.0542887151241302,0.999655961990356,0,-0.0262326132506132,0.98481810092926,0,-0.173590004444122,0.00606612488627434,0.030093714594841,-0.999528765678406,0.00552314333617687,0.0304228607565165,-0.999521911144257,0.00498016132041812,0.0307519976049662,-0.999514639377594,0.00552314426749945,0.0304228626191616,-0.999521911144257,0.00893919263035059,0.520645916461945,-0.853725850582123,0.00957159884274006,0.520626604557037,-0.853730857372284,0.00893919169902802,0.520645916461945,-0.853725969791412,0.0083067836239934,0.520665109157562,-0.853720724582672,0.15081661939621,0.964652061462402,-0.216103792190552,-0.155277714133263,0.910932540893555,0.382218152284622,0.00548499869182706,0.999824464321136,0.0179155040532351,-0.00946493726223707,0.999937236309052,-0.00601232564076781,-0.155277714133263,0.910932540893555,0.382218152284622,
- 0.100948184728622,0.90705132484436,0.408738940954208,-0.00660225655883551,0.99981701374054,0.0179538317024708,0.00548499869182706,0.999824464321136,0.0179155040532351,0.100948184728622,0.90705132484436,0.408738940954208,-0.149217709898949,0.964557409286499,-0.217631056904793,0.0126506313681602,0.999901473522186,-0.00609962362796068,-0.00660225655883551,0.99981701374054,0.0179538317024708,-0.149217709898949,0.964557409286499,-0.217631056904793,0.00185348384547979,0.786148190498352,-0.61803537607193,0.000601233041379601,0.999904274940491,-0.0138229364529252,0.0126506313681602,0.999901473522186,-0.00609962362796068,0.00185348384547979,0.786148190498352,-0.61803537607193,0.15081661939621,0.964652061462402,-0.216103792190552,-0.00946493726223707,0.999937236309052,-0.00601232564076781,0.000601233041379601,0.999904274940491,-0.0138229364529252
- }
- BinormalsW: *1676 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *5028 {
- 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,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,
- 0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,
- -0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,
- 0,-0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,-0,0,0,-0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,0,-0,0,-0.0150906257331371,0.999662399291992,0.0211535934358835,-0.0695029571652412,0.994734823703766,0.0753124430775642,-0.00213532382622361,0.999996364116669,-0.00167326943483204,-0.0850305631756783,0.99087929725647,0.104537397623062,-0.00537168048322201,0.996859788894653,0.0790054202079773,0.0113244708627462,0.997037172317505,-0.0760830193758011,0.000126390499644913,0.999998807907104,-0.00155036244541407,0.000252780708251521,0.999995231628418,-0.00310072116553783,-0.000477277033496648,0.999999642372131,-0.000684463884681463,-6.87157807988115e-007,1,7.09734592874156e-007,-0,1,-0,-9.2495901071743e-007,1,3.67009420187969e-007,0.000998101895675063,0.979678988456726,0.200569555163383,-0,1,0,-0.00537168048322201,0.996859788894653,0.0790054202079773,0.00195563887245953,0.919541776180267,0.392987549304962,0.888730406761169,0.456758320331573,-0.0391176380217075,0.94113165140152,0.337973058223724,-0.00674579013139009,0.962057173252106,0.270467191934586,0.0359642133116722,-0.177893772721291,0.983914613723755,0.0163048822432756,0.981845855712891,-0.182211875915527,-0.0527035221457481,-0.570060551166534,0,-0.821602642536163,-0.570064425468445,0,-0.821599960327148,-0.570068299770355,0,-0.821597337722778,-0.570064425468445,0,-0.821599960327148,-0.0246669668704271,0.998910546302795,0.0396142937242985,-0.0150906257331371,0.999662399291992,0.0211535934358835,0.0113244708627462,0.997037172317505,-0.0760830193758011,0.0179247669875622,0.994765520095825,-0.100600190460682,-0.935212790966034,-5.55146417724472e-009,-0.354086130857468,-0.935208976268768,-5.5516253816279e-009,-0.354096382856369,-0.935205101966858,-5.55178614192187e-009,-0.35410663485527,-0.935208916664124,-5.55162493753869e-009,-0.354096382856369,-0.967031896114349,0,-0.254655420780182,
- -0.967031896114349,0,-0.254655420780182,-0.967031896114349,4.94603341394395e-007,-0.254655420780182,-0.967031896114349,9.8920668278879e-007,-0.254655420780182,-0.967031896114349,3.29735485138372e-007,-0.25465539097786,-0.864371538162231,-0.50252377986908,0.0182126555591822,-0.864371418952942,-0.502523362636566,0.0182290468364954,-0.864371359348297,-0.502522885799408,0.0182454362511635,-0.864371418952942,-0.502523362636566,0.0182290468364954,-0.655196070671082,-5.6843418860808e-014,-0.755458950996399,-0.655196070671082,-5.6843418860808e-014,-0.755458950996399,-0.654378473758698,-0.0499435514211655,-0.754516065120697,0.651927530765533,0.0997625142335892,0.751690030097961,-0.65483295917511,-0.033291082829237,-0.755040168762207,0.00257851323112845,-0.99999463558197,0.00201959721744061,0.0555851683020592,-0.996666073799133,-0.0597261898219585,0.0158384870737791,-0.999633193016052,-0.0219724755734205,0.0719043090939522,-0.993626832962036,-0.0868071988224983,-0,1,0,-0.0695029571652412,0.994734823703766,0.0753124430775642,-0.0150906257331371,0.999662399291992,0.0211535934358835,-0.0246669668704271,0.998910546302795,0.0396142937242985,-0.625361919403076,0.607455372810364,-0.489816725254059,-0.625362038612366,0.607455372810364,-0.489816546440125,-0.6253622174263,0.607455432415009,-0.489816337823868,-0.625362038612366,0.607455372810364,-0.489816546440125,-0.000119320480735041,-0.999999046325684,0.00137112732045352,-0.00843304954469204,-0.998513042926788,0.0538568794727325,-6.77642965456471e-005,-0.999999642372131,0.000915110285859555,-0.000238640728639439,-0.999996185302734,0.00274225231260061,0.0179247669875622,0.994765520095825,-0.100600190460682,0.0113244708627462,0.997037172317505,-0.0760830193758011,-0.00537168048322201,0.996859788894653,0.0790054202079773,-0,1,0,-0.794184863567352,0.604012191295624,-0.0666303336620331,-0.794094860553741,0.60400927066803,-0.0677217021584511,-0.794003784656525,0.604005575180054,-0.0688129812479019,-0.794094800949097,0.60400927066803,-0.0677217021584511,-0.891599416732788,-1.17123126983643e-005,-0.452825158834457,
- -0.891599357128143,-1.27721577882767e-005,-0.452825099229813,-0.891599357128143,-1.49905681610107e-005,-0.452825129032135,-0.891599476337433,-2.15470772673143e-005,-0.452824890613556,-0.891599416732788,-1.60988402058138e-005,-0.452825039625168,-0.967539608478546,0.252719700336456,0,0.707106828689575,-0.707106828689575,-0,-0.967539668083191,0.252719432115555,0,-1,0,0,-1,-5.02518196299206e-006,0,-1,7.91172851677402e-007,0,-0.00911449454724789,0.999951958656311,0.00361649040132761,-0.00252033956348896,0.999996483325958,0.000802997848950326,-0.0105008408427238,0.999939501285553,0.00327467732131481,-0.0122511629015207,0.99991774559021,0.00382051384076476,-0.10565247386694,0,-0.994403183460236,-0.105652458965778,9.22618710319512e-007,-0.994403123855591,-0.10565248131752,0,-0.994403183460236,-0.10565247386694,-8.15589089597779e-007,-0.994403123855591,-0.105652466416359,-5.2146228881611e-006,-0.994403123855591,-0.10565247386694,-8.15589089597779e-007,-0.994403183460236,0.00870766956359148,-0.999958455562592,-0.00271548284217715,0.00943770818412304,-0.999952495098114,-0.00245519774034619,0.00753516936674714,-0.999967157840729,-0.00299000041559339,0.0101591777056456,-0.999943375587463,-0.00316813518293202,-0.00475276028737426,0.9999880194664,0.00124978157691658,-0.00252033956348896,0.999996483325958,0.000802997848950326,-0.00911449454724789,0.999951958656311,0.00361649040132761,0,1,-0,-0.242794916033745,0.607738196849823,-0.756111800670624,-0.242498278617859,0.607741475105286,-0.75620436668396,-0.242201536893845,0.607744693756104,-0.756296694278717,-0.242498219013214,0.607741475105286,-0.75620424747467,-0.466454833745956,0.221225902438164,-0.856433928012848,0.431488305330276,-0.431488305330276,0.792234718799591,-0.473105490207672,0.147064089775085,-0.868644535541534,-0.478306472301483,0,-0.878193080425262,-0.478306472301483,3.94185519780876e-007,-0.878193080425262,-0.62536233663559,-0.607455313205719,-0.489816457033157,-0.625364184379578,-0.607455253601074,-0.489814013242722,-0.625366032123566,-0.607455253601074,-0.489811658859253,
- -0.625364184379578,-0.607455313205719,-0.489814043045044,-0.794350147247314,-0.603822350502014,-0.0663804039359093,-0.794257998466492,-0.603825092315674,-0.0674512758851051,-0.794350206851959,-0.603822410106659,-0.0663804188370705,-0.7944415807724,-0.603818953037262,-0.0653094723820686,-0.230627447366714,-0.607750177383423,-0.759901762008667,-0.23087352514267,-0.607752680778503,-0.759824991226196,-0.231119677424431,-0.607755184173584,-0.759748339653015,-0.230873554944992,-0.607752740383148,-0.759825110435486,-0.0187233258038759,-0.9608393907547,0.276472985744476,-0.00010033325816039,-0.999796748161316,-0.0201620664447546,-0.00156729260925204,-0.949107348918915,-0.314949005842209,0.00149277911987156,-0.999795734882355,-0.0201589576900005,0.166088998317719,-0.971077024936676,-0.171533897519112,0.0819650739431381,-0.992673575878143,-0.0887746214866638,-0,-1,-0,0.110355846583843,-0.992737174034119,-0.0479025319218636,0.00536127807572484,-0.999985158443451,-0.0010232892818749,0.00561412516981363,-0.999982714653015,-0.00174236879684031,0.00943770818412304,-0.999952495098114,-0.00245519774034619,-6.77642965456471e-005,-0.999999642372131,0.000915110285859555,-0.00843304954469204,-0.998513042926788,0.0538568794727325,-0.0132450498640537,-0.997379124164581,0.0711299180984497,0,-1,-0,-0.00843304954469204,-0.998513042926788,0.0538568794727325,0.0158384870737791,-0.999633193016052,-0.0219724755734205,0.0177034698426723,-0.999439358711243,-0.0284214187413454,-0.0132450498640537,-0.997379124164581,0.0711299180984497,0.0158384870737791,-0.999633193016052,-0.0219724755734205,0.0555851683020592,-0.996666073799133,-0.0597261898219585,1.03053662314778e-005,-1,8.13905353425071e-006,0.0177034698426723,-0.999439358711243,-0.0284214187413454,0.00753516936674714,-0.999967157840729,-0.00299000041559339,0.00943770818412304,-0.999952495098114,-0.00245519774034619,0.00561412516981363,-0.999982714653015,-0.00174236879684031,-6.80104640196078e-005,-1,2.95215286314487e-005,0.944732785224915,-8.65688232210005e-009,0.327841579914093,0.816072702407837,0,0.577949285507202,
- 0.94473272562027,0,0.327841550111771,0.998657584190369,-1.33767408261321e-009,0.0517992004752159,0.975238919258118,-2.01106478692203e-010,0.221154406666756,0.996693551540375,-2.14555817557027e-009,0.0812536403536797,0.996467888355255,-2.16859197266217e-009,0.0839751064777374,0.974937796592712,2.2624646600633e-010,0.222478061914444,0.84624707698822,-6.21374784959272e-010,0.532790720462799,0.975238919258118,-2.01106478692203e-010,0.221154406666756,0.974937796592712,2.2624646600633e-010,0.222478061914444,0.895431041717529,6.39097774701725e-010,0.445200383663177,0.789137363433838,-1.36879414469604e-008,0.61421674489975,0.84624707698822,-6.21374784959272e-010,0.532790720462799,0.895431041717529,6.39097774701725e-010,0.445200383663177,0.789149641990662,-1.31444934936553e-008,0.614200949668884,0.570068299770355,1.82312156482567e-008,0.821597337722778,0.570064425468445,-1.83095192340943e-008,0.821599960327148,0.570060551166534,-1.75830905391194e-008,0.821602642536163,0.570064425468445,1.74992038637356e-008,0.821599960327148,-0.00470192730426788,-1.28769940488382e-007,0.999988973140717,-0.00470234686508775,-1.29340321564086e-007,0.999989032745361,-0.00470276596024632,-4.58108040390925e-008,0.999988973140717,-0.00470234686508775,-4.24706847468315e-008,0.999989032745361,0.23418901860714,2.78718133017719e-008,0.972191095352173,0.103570334613323,-1.28646163943813e-007,0.994622111320496,0.103034570813179,-1.28086014683504e-007,0.994677782058716,0.169022560119629,2.93911472937225e-008,0.985612273216248,0.297695577144623,2.03332586323768e-008,0.954660832881927,0.23418901860714,2.78718133017719e-008,0.972191095352173,0.169022560119629,2.93911472937225e-008,0.985612273216248,0.297702133655548,2.11838457886415e-008,0.954658806324005,-0.864406406879425,0.502701461315155,-0.00964580755680799,-0.86440646648407,0.502700984477997,-0.00966300070285797,-0.86440646648407,0.502700448036194,-0.0096801919862628,-0.864406406879425,0.502700984477997,-0.00966300070285797,0.243855625391006,-0.961520314216614,0.126542955636978,0.837271749973297,-0.412595629692078,0.358805060386658,
- 0.94113165140152,0.337973058223724,-0.00674579013139009,0.888730406761169,0.456758320331573,-0.0391176380217075,0.837271749973297,-0.412595629692078,0.358805060386658,0.642972469329834,0.614014983177185,0.457790434360504,0.962057173252106,0.270467191934586,0.0359642133116722,0.94113165140152,0.337973058223724,-0.00674579013139009,0.642972469329834,0.614014983177185,0.457790434360504,-0.479104340076447,0.856513381004334,0.191947728395462,-0.177893772721291,0.983914613723755,0.0163048822432756,0.962057173252106,0.270467191934586,0.0359642133116722,-0.479104340076447,0.856513381004334,0.191947728395462,-0.76045286655426,-0.642586350440979,0.09377720952034,0.981845855712891,-0.182211875915527,-0.0527035221457481,-0.177893772721291,0.983914613723755,0.0163048822432756,-0.76045286655426,-0.642586350440979,0.09377720952034,0.243855625391006,-0.961520314216614,0.126542955636978,0.888730406761169,0.456758320331573,-0.0391176380217075,0.981845855712891,-0.182211875915527,-0.0527035221457481,-0.0168576873838902,0.999662399291992,-0.0197750646620989,-0.0561841502785683,0.994734823703766,-0.0857085883617401,0.00213940488174558,0.999996364116669,-0.00166344363242388,-0.0807671248912811,0.99087929725647,-0.107865430414677,0.000986115424893796,0.999999463558197,0.00045694358414039,0.0716433152556419,0.997020721435547,0.0285840295255184,0.00154173362534493,0.99999874830246,0.000487612589495257,0.00308346282690763,0.99999475479126,0.000975223782006651,0.000779064721427858,0.999999701976776,-0.000296481390250847,-5.21647905316058e-007,1,-8.38917173950904e-007,0,1,-0,-1.450385411772e-007,1,-9.81238031272369e-007,0.0088890353217721,0.999960124492645,0.000875098397955298,-1.48405865729728e-006,1,0.000315623998176306,0.0132850082591176,0.999906301498413,0.00332239316776395,-0.00252033956348896,0.999996483325958,0.000802997848950326,-0.00475276028737426,0.9999880194664,0.00124978157691658,0.935435473918915,-5.37064170913482e-009,-0.3534976541996,0.935434699058533,-5.37066924266583e-009,-0.353499501943588,0.935433983802795,-5.37069722028605e-009,-0.353501349687576,
- 0.935434699058533,-5.37066924266583e-009,-0.353499501943588,-0.0324395708739758,0.99891060590744,-0.0335471741855145,-0.0168576873838902,0.999662399291992,-0.0197750646620989,0.0716433152556419,0.997020721435547,0.0285840295255184,0.0938654616475105,0.994745194911957,0.0408838577568531,0.570578753948212,0,-0.821242928504944,0.570585072040558,0,-0.82123851776123,0.570591390132904,0,-0.821234107017517,0.570585072040558,0,-0.82123851776123,0.481857031583786,0,-0.876249849796295,0.481857031583786,0,-0.876249849796295,0.481857001781464,0,-0.876249849796295,0.481857031583786,-0,-0.876249969005585,0.481857001781464,0,-0.876249849796295,-0.0219624098390341,-0.520131945610046,-0.853803515434265,-0.0158603508025408,-0.520345449447632,-0.853808522224426,-0.00975770223885775,-0.52053964138031,-0.853781819343567,-0.0158603508025408,-0.520345449447632,-0.853808522224426,0.891940951347351,1.13686851274143e-013,-0.452152132987976,0.891940951347351,1.13686851274143e-013,-0.452152132987976,0.87286913394928,0.205685257911682,-0.442485004663467,-0.816470384597778,-0.402574688196182,0.413895726203918,0.883556663990021,0.136788234114647,-0.44790244102478,-0.00259549636393785,-0.99999463558197,0.00201888685114682,0.0444393865764141,-0.996666133403778,0.0684247761964798,0.0174659080803394,-0.999633193016052,0.0206998586654663,0.0667384937405586,-0.993627071380615,0.090837299823761,0,1,-0,-0.0561841502785683,0.994734823703766,-0.0857085883617401,-0.0168576873838902,0.999662399291992,-0.0197750646620989,-0.0324395708739758,0.99891060590744,-0.0335471741855145,0.6269890666008,0.607460618019104,-0.487725704908371,0.626994550228119,0.607460677623749,-0.487718611955643,0.627000093460083,0.607460618019104,-0.487711548805237,0.626994550228119,0.607460618019104,-0.48771858215332,-0.00127843557856977,-0.999999165534973,-0.000404337333748117,-0.0508563928306103,-0.998499751091003,-0.0202950425446033,-0.000792077276855707,-0.999999582767487,-0.000459940056316555,-0.0025568688288331,-0.999996483325958,-0.000808673969004303,0.0938654616475105,0.994745194911957,0.0408838577568531,
- 0.0716433152556419,0.997020721435547,0.0285840295255184,0.000986115424893796,0.999999463558197,0.00045694358414039,-9.39611200010404e-005,1,0.000297086255159229,0.241249278187752,0.607788324356079,-0.756566107273102,0.241336718201637,0.60778796672821,-0.756538391113281,0.241249233484268,0.607788324356079,-0.756565988063812,0.241161793470383,0.607788622379303,-0.756593763828278,0.655770599842072,-2.74740136774199e-006,-0.754960179328918,0.655770778656006,2.54716724157333e-006,-0.754960119724274,0.655770421028137,-1.56220048666e-005,-0.754960417747498,0.655769884586334,-4.13674861192703e-005,-0.754960894584656,0.655770182609558,-2.47033312916756e-005,-0.754960596561432,0.106153085827827,-0.251820802688599,-0.961934447288513,0.0777953937649727,-0.704963803291321,-0.704963862895966,0.106153070926666,-0.2518210709095,-0.961934387683868,0.109687894582748,1.11022315697405e-016,-0.993966162204742,0.109687887132168,5.92293531553878e-007,-0.993966042995453,0.109687902033329,7.91194224802894e-007,-0.993966162204742,-0.00137696717865765,0.999955713748932,-0.0093156797811389,0.00839257799088955,0.992638409137726,0.120824865996838,-0.000831184617709368,0.99994421005249,-0.0105362627655268,-0.0009697315399535,0.999924004077911,-0.0122925117611885,0.00012700937804766,1,-9.4611078793605e-007,0.000126995975733735,1,-1.89222112112475e-006,0.00260219909250736,0.984526574611664,0.175216153264046,0.00839257799088955,0.992638409137726,0.120824865996838,0.00821005459874868,0.991860926151276,0.127061575651169,0.854963302612305,0.518686592578888,-0.00147896283306181,0.85517829656601,0.518240690231323,0.00984106305986643,0.855283498764038,0.5177281498909,0.0211598258465528,0.85517829656601,0.518240690231323,0.00984106305986643,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,-0,-0,1,0,-0,0.000788001401815563,-0.999956130981445,0.00933639612048864,-0.00620089890435338,-0.996607959270477,-0.082062266767025,0.00128008029423654,-0.99996542930603,0.0082252100110054,0.000919354788493365,-0.999940276145935,0.0108926985412836,0.00821005459874868,0.991860926151276,0.127061575651169,
- 0.00839257799088955,0.992638409137726,0.120824865996838,-0.00137696717865765,0.999955713748932,-0.0093156797811389,0,1,0,0.793871521949768,0.604043304920197,-0.0699984431266785,0.793948411941528,0.604052841663361,-0.0690369009971619,0.793871581554413,0.604043304920197,-0.0699984505772591,0.793793916702271,0.60403311252594,-0.0709599331021309,0.968046307563782,3.94175060591806e-007,-0.250771552324295,-0.968046367168427,-0,0.250771582126617,0.968046307563782,2.62783373727871e-007,-0.250771552324295,0.968046367168427,0,-0.250771552324295,0.968046367168427,3.94175089013515e-007,-0.250771552324295,-0.852204978466034,0.522530496120453,-0.026619553565979,-0.451186001300812,0.892429947853088,0.000290819443762302,-0.981063365936279,0.190092653036118,0.0371427647769451,-0.995800614356995,-0.0871313065290451,0.0280942488461733,-0.895695626735687,0.444625467061996,-0.00614656135439873,0.62700891494751,-0.607445955276489,-0.487718462944031,0.627009809017181,-0.607446014881134,-0.48771733045578,0.627010822296143,-0.607445955276489,-0.487716108560562,0.627009868621826,-0.607445955276489,-0.48771733045578,0.237835675477982,-0.60778945684433,-0.757645189762115,0.237908035516739,-0.607789695262909,-0.757622361183167,0.23783566057682,-0.607789397239685,-0.757645189762115,0.237763345241547,-0.607789278030396,-0.757668018341064,0.795148611068726,-0.60353422164917,-0.0590350106358528,0.795050024986267,-0.603546321392059,-0.0602269098162651,0.794950485229492,-0.603557407855988,-0.0614187382161617,0.795050024986267,-0.603546261787415,-0.0602269060909748,-0.0220540054142475,-0.999745070934296,0.00485319551080465,-0.0110164927318692,-0.999935269355774,-0.00285527156665921,2.14397755371465e-006,-1,-0.000382395985070616,-0.0110192140564322,-0.999938786029816,-0.00105679337866604,0.126074716448784,-0.971076369285584,0.2027707695961,0.0662138536572456,-0.992673456668854,0.10106985270977,-0,-1,-0,0.0218901224434376,-0.992788016796112,0.117867656052113,-0.00222756876610219,-0.988757967948914,-0.14950880408287,0.000511456048116088,-0.999981284141541,0.00609962595626712,
- -0.00620089890435338,-0.996607959270477,-0.082062266767025,-0.00341402646154165,-0.973674714565277,-0.227916374802589,-0.000129661231767386,-1,1.92063521353703e-006,-0.00222756876610219,-0.988757967948914,-0.14950880408287,-0.00620089890435338,-0.996607959270477,-0.082062266767025,-0.000792077276855707,-0.999999582767487,-0.000459940056316555,-0.0508563928306103,-0.998499751091003,-0.0202950425446033,-0.0665571242570877,-0.997361183166504,-0.0289958007633686,0.000113812813651748,-1,-0.000359853904228657,-0.0508563928306103,-0.998499751091003,-0.0202950425446033,0.0174659080803394,-0.999633193016052,0.0206998586654663,0.0232733860611916,-0.999439299106598,0.0240733176469803,-0.0665571242570877,-0.997361183166504,-0.0289958007633686,0.0174659080803394,-0.999633193016052,0.0206998586654663,0.0444393865764141,-0.996666133403778,0.0684247761964798,-8.69541781867156e-006,-1,6.68802476866404e-006,0.0232733860611916,-0.999439299106598,0.0240733176469803,0.00128008029423654,-0.99996542930603,0.0082252100110054,-0.00620089890435338,-0.996607959270477,-0.082062266767025,0.000511456048116088,-0.999981284141541,0.00609962595626712,-1.38952282213722e-005,-1,-7.48190432204865e-005,-0.485767215490341,0,0.87408834695816,-0.301552534103394,-4.04941005172077e-008,0.953449547290802,-0.301552325487137,-4.36787779278802e-008,0.953449666500092,-0.395182400941849,0,0.918602764606476,-0.722323536872864,0,0.691555321216583,-0.485767215490341,0,0.87408834695816,-0.395182400941849,0,0.918602764606476,-0.649303078651428,0,0.760529756546021,-0.787434935569763,0,0.616397798061371,-0.722323536872864,0,0.691555321216583,-0.649303078651428,0,0.760529756546021,-0.787429988384247,0,0.616404116153717,-0.935433983802795,-0,0.353501349687576,-0.935434699058533,-0,0.353499501943588,-0.93543541431427,-0,0.3534976541996,-0.935434758663177,-0,0.353499501943588,-0.999970316886902,0,0.00771514978259802,-0.999890327453613,0,0.014811092056334,-0.999889731407166,0,0.0148546453565359,-0.999972283840179,0,0.00744930515065789,-0.998504757881165,0,0.054666455835104,
- -0.999970316886902,0,0.00771514978259802,-0.999972283840179,0,0.00744930515065789,-0.9996457695961,0,0.0266161188483238,-0.996458470821381,0,0.0840872973203659,-0.998504757881165,0,0.054666455835104,-0.9996457695961,0,0.0266161188483238,-0.996684312820435,0,0.0813657641410828,0.854787468910217,-0.516998291015625,-0.0452927015721798,0.855002224445343,-0.517511606216431,-0.0339544340968132,0.855107009410858,-0.517958402633667,-0.0226117949932814,0.855002224445343,-0.517511606216431,-0.0339544340968132,0.0204788651317358,0.520260691642761,-0.853761911392212,0.015557749196887,0.520433485507965,-0.853760600090027,0.0204788632690907,0.520260632038116,-0.853761911392212,0.0253994818776846,0.520075261592865,-0.853742659091949,0.668854415416718,0.603238761425018,0.434438496828079,-0.486471831798553,0.85495126247406,0.18000952899456,-0.451186001300812,0.892429947853088,0.000290819443762302,-0.852204978466034,0.522530496120453,-0.026619553565979,-0.486471831798553,0.85495126247406,0.18000952899456,-0.766947507858276,-0.636943399906158,0.0780679881572723,-0.981063365936279,0.190092653036118,0.0371427647769451,-0.451186001300812,0.892429947853088,0.000290819443762302,-0.766947507858276,-0.636943399906158,0.0780679881572723,0.250125825405121,-0.961200773715973,0.116319455206394,0.327531069517136,0.944729030132294,-0.0145076252520084,-0.981063365936279,0.190092653036118,0.0371427647769451,0.250125825405121,-0.961200773715973,0.116319455206394,0.841424167156219,-0.424813270568848,0.333974629640579,-0.895695626735687,0.444625467061996,-0.00614656135439873,0.327531069517136,0.944729030132294,-0.0145076252520084,0.841424167156219,-0.424813270568848,0.333974629640579,0.668854415416718,0.603238761425018,0.434438496828079,-0.852204978466034,0.522530496120453,-0.026619553565979,-0.895695626735687,0.444625467061996,-0.00614656135439873
- }
- BinormalsW: *1676 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *5028 {
- a: -0.786680519580841,-0.0101542742922902,-0.617276787757874,-0.786680519580841,-0.0101542752236128,-0.617276787757874,-0.786680519580841,-0.0101542705669999,-0.617276847362518,-0.761332452297211,0.0071597364731133,-0.64832216501236,-0.761332452297211,0.00715973693877459,-0.64832216501236,-0.761332392692566,0.00715973740443587,-0.648322224617004,0.999704778194427,0.000744905322790146,-0.0242909956723452,0.999704778194427,0.000744905322790146,-0.0242909956723452,0.999704778194427,0.000744905322790146,-0.0242909956723452,0.999686241149902,-0.0140117453411222,-0.020762087777257,0.999686241149902,-0.0140117453411222,-0.020762087777257,0.999686241149902,-0.0140117453411222,-0.020762087777257,-0.00230304920114577,0.00603775726631284,-0.999979138374329,-0.00230304896831512,0.00603775726631284,-0.999979138374329,-0.00230304896831512,0.00603775726631284,-0.999979138374329,0.000451212719781324,-0.00997956190258265,-0.999950110912323,0.000451212748885155,-0.00997956190258265,-0.999950110912323,0.000451212719781324,-0.00997956190258265,-0.999950110912323,0.81212705373764,-1.28744577523321e-005,0.583480656147003,0.81212705373764,-1.28750898511498e-005,0.583480596542358,0.812127113342285,-1.28722131194081e-005,0.583480715751648,0.802082359790802,-0.014028743840754,0.59704864025116,0.802082359790802,-0.014028743840754,0.59704864025116,0.802082359790802,-0.0140287429094315,0.597048699855804,0.78700715303421,0.00599873485043645,-0.616914749145508,0.78700715303421,0.00599873485043645,-0.616914689540863,0.787007093429565,0.00599873485043645,-0.616914749145508,0.789303779602051,-0.010136459954083,-0.613919198513031,0.789303779602051,-0.010136459954083,-0.613919198513031,0.789303779602051,-0.010136459954083,-0.613919198513031,0.0171749722212553,-0.0139762507751584,0.999754905700684,0.0171749703586102,-0.0139762507751584,0.999754905700684,0.0171749722212553,-0.0139762507751584,0.999754905700684,0.0255856364965439,0.000795777013991028,0.999672412872314,0.0255856364965439,0.000795777013991028,0.999672412872314,0.0255856346338987,0.000795777013991028,0.999672412872314,
- 0.999969482421875,0.006083978805691,0.00490649417042732,0.999969482421875,0.006083978805691,0.00490649463608861,0.999969482421875,0.006083978805691,0.00490649417042732,0.999948084354401,-0.0101128062233329,0.00131903355941176,0.999948084354401,-0.0101128062233329,0.00131903367582709,0.999948084354401,-0.0101128062233329,0.00131903379224241,-0.778049647808075,-0.0139205055311322,0.628048717975616,-0.778049528598785,-0.0139205036684871,0.628048717975616,-0.778049647808075,-0.0139205055311322,0.628048717975616,-0.779035985469818,0.000690856191795319,0.626978814601898,-0.779035925865173,0.000690855958964676,0.626978874206543,-0.779035985469818,0.000690856017172337,0.626978874206543,-0.528659284114838,0.00297753000631928,0.848828911781311,-0.528659343719482,0.00297752884216607,0.848828852176666,-0.528659343719482,0.00297752884216607,0.848828852176666,-0.409349083900452,0.0648786127567291,0.910068213939667,-0.409349083900452,0.0648786127567291,0.910068213939667,-0.409349083900452,0.0648786202073097,0.910068154335022,-0.238739207386971,-0.00866075605154037,0.971045076847076,-0.238739222288132,-0.00866075791418552,0.971045076847076,-0.238739222288132,-0.0086607551202178,0.971045196056366,0.0285739600658417,-0.00959501508623362,0.999545633792877,0.0285739619284868,-0.00959501601755619,0.999545633792877,0.028573963791132,-0.00959501601755619,0.999545633792877,-0.00738480873405933,-0.0406689457595348,0.99914538860321,-0.00738480873405933,-0.0406689457595348,0.99914538860321,-0.00738480826839805,-0.0406689457595348,0.99914538860321,-0.376246750354767,0.000857068924233317,0.926519095897675,-0.376246750354767,0.000857068283949047,0.926519095897675,-0.376246750354767,0.000857068691402674,0.926519095897675,-0.053744662553072,-0.00829066522419453,0.998520314693451,-0.053744662553072,-0.00829066429287195,0.998520314693451,-0.053744662553072,-0.00829066522419453,0.998520314693451,-0.156077474355698,-0.00427756505087018,0.987735569477081,-0.156077474355698,-0.00427756505087018,0.987735569477081,-0.156077474355698,-0.00427756551653147,0.987735569477081,
- -0.256998151540756,-0.0633390247821808,0.964334011077881,-0.256998151540756,-0.0633390173316002,0.964334011077881,-0.256998151540756,-0.0633390173316002,0.964334011077881,-0.056221466511488,-0.00603052647784352,0.998400211334229,-0.0562214627861977,-0.00603052601218224,0.998400211334229,-0.0562214590609074,-0.00603052601218224,0.998400211334229,-0.0524473264813423,-0.00886665284633636,0.99858433008194,-0.0524473264813423,-0.00886665284633636,0.99858433008194,-0.0524473264813423,-0.00886665191501379,0.99858433008194,0.000731880951207131,-0.00713143730536103,0.999974310398102,0.000731880951207131,-0.00713143730536103,0.999974310398102,0.000731880951207131,-0.00713143730536103,0.999974310398102,-0.491333991289139,-0.012677033431828,0.870878994464874,-0.491333991289139,-0.0126770436763763,0.870878994464874,-0.491333991289139,-0.0126770325005054,0.870878994464874,-0.226827681064606,-0.0111254258081317,0.973871350288391,-0.226827681064606,-0.0111254248768091,0.973871350288391,-0.226827681064606,-0.0111254248768091,0.973871350288391,-0.498620301485062,-0.00530181499198079,0.866804420948029,-0.498620301485062,-0.00530181499198079,0.866804420948029,-0.498620301485062,-0.00530181545764208,0.866804420948029,-0.530948996543884,-0.000761032220907509,0.847403407096863,-0.530948996543884,-0.00076103227911517,0.847403407096863,-0.530948996543884,-0.000761032220907509,0.847403407096863,0.00330549478530884,-0.0121214622631669,-0.999921083450317,0.00330549525097013,-0.0121214622631669,-0.999921083450317,0.00330549501813948,-0.0121214622631669,-0.999921083450317,-0.0186287686228752,0.00385859981179237,-0.999819040298462,-0.0186287667602301,0.00385860004462302,-0.999819040298462,-0.0186287667602301,0.00385860004462302,-0.999819040298462,-0.223638147115707,0.0011063190177083,-0.974671602249146,-0.223638162016869,0.00110631971620023,-0.974671602249146,-0.223638147115707,0.0011063190177083,-0.974671602249146,-0.0226346794515848,0.000329025875544176,-0.999743759632111,-0.0226346794515848,0.000329025846440345,-0.999743759632111,-0.0226346794515848,0.000329025846440345,-0.999743759632111,
- -0.528101980686188,-0.00603267038241029,-0.84915965795517,-0.528101980686188,-0.00603266805410385,-0.84915953874588,-0.528101980686188,-0.00603266712278128,-0.84915953874588,-0.390903443098068,-0.00995785370469093,-0.920377850532532,-0.390903413295746,-0.00995784159749746,-0.920377850532532,-0.390903413295746,-0.00995785184204578,-0.920377850532532,-0.386893332004547,-0.00235299486666918,-0.922121465206146,-0.386893332004547,-0.00235299486666918,-0.922121465206146,-0.386893332004547,-0.00235299463383853,-0.922121465206146,-0.042076401412487,0.00141007162164897,-0.999113500118256,-0.042076401412487,0.00141007162164897,-0.999113500118256,-0.042076401412487,0.00141007173806429,-0.999113500118256,-0.486008644104004,-0.0147531060501933,-0.873829483985901,-0.486008644104004,-0.0147531069815159,-0.873829483985901,-0.486008644104004,-0.014753108844161,-0.873829483985901,-0.0499964654445648,0.00787156820297241,-0.99871838092804,-0.0499964691698551,0.00787156820297241,-0.99871838092804,-0.0499964617192745,0.00787156820297241,-0.99871838092804,-0.481021851301193,-0.0191453080624342,-0.876499533653259,-0.481021881103516,-0.0191453099250793,-0.876499652862549,-0.481021881103516,-0.0191453099250793,-0.876499652862549,-0.486022680997849,-0.0102711822837591,-0.873885869979858,-0.486022651195526,-0.0102711822837591,-0.873885869979858,-0.486022740602493,-0.0102711841464043,-0.873885929584503,-0.481648147106171,-0.00591326504945755,-0.876344740390778,-0.481648147106171,-0.00591326504945755,-0.876344740390778,-0.481648147106171,-0.00591326504945755,-0.876344740390778,-0.520180821418762,-0.0127861863002181,-0.853960454463959,-0.520180821418762,-0.0127861853688955,-0.853960454463959,-0.520180821418762,-0.0127861853688955,-0.853960454463959,-0.0413815081119537,-0.0147134605795145,-0.999035060405731,-0.0413815043866634,-0.0147134605795145,-0.999035060405731,-0.0413815043866634,-0.0147134605795145,-0.999035060405731,-0.215817973017693,0.00582717545330524,-0.976416230201721,-0.215817973017693,0.00582717638462782,-0.976416230201721,-0.215817973017693,0.00582717545330524,-0.976416230201721,
- -0.0433092638850212,-0.0161088667809963,-0.99893182516098,-0.0433092638850212,-0.0161088686436415,-0.99893182516098,-0.0433092638850212,-0.0161088686436415,-0.99893182516098,-0.00662844767794013,-0.0178631655871868,-0.999818444252014,-0.00662844767794013,-0.017863167449832,-0.999818444252014,-0.00662844767794013,-0.017863167449832,-0.999818444252014,-0.996427059173584,-0.0147302774712443,0.0831633135676384,-0.996427059173584,-0.0147302774712443,0.0831633061170578,-0.996427178382874,-0.0147302793338895,0.0831633061170578,-0.974534392356873,0.00522980652749538,0.224177539348602,-0.974534392356873,0.00522980652749538,0.224177539348602,-0.974534392356873,0.00522979442030191,0.224177554249763,-0.906336605548859,0.00220770086161792,0.422550678253174,-0.906336605548859,0.00220770761370659,0.422550678253174,-0.906336605548859,0.00220771366730332,0.422550708055496,-0.694366216659546,-0.00649367924779654,0.7195925116539,-0.694366216659546,-0.00649368809536099,0.7195925116539,-0.694366216659546,-0.00649367924779654,0.7195925116539,-0.715927481651306,-0.00735521968454123,0.698135912418365,-0.715927481651306,-0.00735522247850895,0.698135912418365,-0.715927481651306,-0.00735522247850895,0.698135912418365,-0.712072730064392,-0.0125618018209934,0.701993346214294,-0.712072730064392,-0.0125618008896708,0.701993346214294,-0.712072730064392,-0.0125618018209934,0.701993346214294,-0.973691999912262,-0.00102694553788751,0.227865770459175,-0.973691999912262,-0.00102694577071816,0.227865770459175,-0.973691999912262,-0.00102694565430284,0.227865770459175,-0.788437485694885,-0.0182744599878788,0.614843547344208,-0.788437485694885,-0.0182744618505239,0.614843547344208,-0.788437485694885,-0.0182744618505239,0.614843547344208,-0.984678626060486,0.00595866655930877,0.174277067184448,-0.984678626060486,0.00595866609364748,0.174277067184448,-0.984678626060486,0.00595866702497005,0.174277067184448,-0.983810544013977,0.00960064027458429,0.17895445227623,-0.983810544013977,0.00960064027458429,0.17895445227623,-0.983810544013977,0.00960064027458429,0.17895445227623,
- -0.781769156455994,-0.0112349493429065,0.623466789722443,-0.781769096851349,-0.0112349595874548,0.623466789722443,-0.781769096851349,-0.0112349595874548,0.623466789722443,-0.983174026012421,-0.0150172663852572,0.182053059339523,-0.983174026012421,-0.0150172663852572,0.182053074240685,-0.983174026012421,-0.0150172663852572,0.182053089141846,-0.743655502796173,-0.00948404055088758,0.668495714664459,-0.743655502796173,-0.00948404055088758,0.668495714664459,-0.743655562400818,-0.00948404241353273,0.668495655059814,-0.745220959186554,-0.00756759522482753,0.66677463054657,-0.745220959186554,-0.00756759569048882,0.66677463054657,-0.745220959186554,-0.00756759522482753,0.66677463054657,-0.703599870204926,-0.00648236181586981,0.710566818714142,-0.703599870204926,-0.00648236181586981,0.710566818714142,-0.703599870204926,-0.00648236135020852,0.710566818714142,-0.908761262893677,-0.00506360828876495,0.417285978794098,-0.908761262893677,-0.00506360782310367,0.417285978794098,-0.908761262893677,-0.00506360828876495,0.417285978794098,-0.983174026012421,-0.0150172682479024,0.182052925229073,-0.983174026012421,-0.0150172682479024,0.182052925229073,-0.983174026012421,-0.015017269179225,0.182052925229073,-0.994744479656219,-0.0146643426269293,0.101334013044834,-0.994744479656219,-0.0146643407642841,0.101334013044834,-0.994744479656219,-0.0146643398329616,0.101334013044834,-0.695697724819183,0.00144997669849545,-0.718333184719086,-0.695697665214539,0.00144997762981802,-0.71833324432373,-0.695697665214539,0.00144997716415673,-0.71833324432373,-0.772325932979584,0.010192820802331,-0.635144829750061,-0.772325873374939,0.0101928049698472,-0.635144770145416,-0.772325873374939,0.010192783549428,-0.635144710540771,-0.889415442943573,-0.0121440645307302,-0.456938624382019,-0.889415323734283,-0.012144073843956,-0.456938624382019,-0.889415442943573,-0.0121440701186657,-0.456938654184341,-0.994550824165344,0.00730705168098211,-0.103996478021145,-0.994550824165344,0.00730704981833696,-0.103996470570564,-0.994550824165344,0.00730704795569181,-0.103996463119984,
- -0.990779042243958,-0.00925489887595177,-0.135171189904213,-0.990779042243958,-0.00925489980727434,-0.135171189904213,-0.990779042243958,-0.00925489887595177,-0.135171189904213,-0.773929059505463,0.00647483579814434,-0.633239388465881,-0.773929059505463,0.00647483533248305,-0.633239388465881,-0.773929059505463,0.00647483533248305,-0.633239388465881,-0.991030275821686,-0.010905428789556,-0.133192509412766,-0.991030275821686,-0.0109054269269109,-0.133192509412766,-0.991030275821686,-0.0109054278582335,-0.133192509412766,-0.731510937213898,0.0108634075149894,-0.681743144989014,-0.731510937213898,0.010863408446312,-0.681743144989014,-0.731510937213898,0.0108634075149894,-0.681743144989014,-0.983798086643219,-0.0101816123351455,-0.178990676999092,-0.983798086643219,-0.0101816114038229,-0.178990676999092,-0.983798086643219,-0.010181613266468,-0.178990676999092,-0.741960942745209,0.0228025075048208,-0.670055210590363,-0.741960942745209,0.0228025075048208,-0.670055270195007,-0.741960942745209,0.0228025075048208,-0.670055210590363,-0.981995105743408,-0.0176352709531784,-0.188081249594688,-0.981995105743408,-0.0176352672278881,-0.188081279397011,-0.981995105743408,-0.0176352690905333,-0.18808126449585,-0.766051590442657,-0.0055696303024888,-0.642755150794983,-0.766051530838013,-0.00556961726397276,-0.642755031585693,-0.766051590442657,-0.0055696303024888,-0.642755150794983,-0.986803710460663,-0.00906944647431374,-0.161666765809059,-0.986803710460663,-0.00906944647431374,-0.16166678071022,-0.986803710460663,-0.00906944554299116,-0.161666795611382,-0.986053884029388,-0.00492235738784075,-0.166353568434715,-0.986053884029388,-0.00492235692217946,-0.166353568434715,-0.986053884029388,-0.00492235692217946,-0.166353568434715,-0.993033468723297,5.60094122192822e-005,-0.117832757532597,-0.993033468723297,5.60094704269432e-005,-0.117832757532597,-0.993033468723297,5.6009415857261e-005,-0.117832757532597,-0.891427874565125,-0.012158633209765,-0.452999502420425,-0.891427874565125,-0.0121586341410875,-0.452999502420425,-0.891427874565125,-0.0121586341410875,-0.452999502420425,
- -0.769305527210236,-0.0090963626280427,-0.638816297054291,-0.769305527210236,-0.0090963626280427,-0.638816297054291,-0.769305527210236,-0.00909636449068785,-0.638816297054291,-0.695681035518646,-0.000719069910701364,-0.718350470066071,-0.695681035518646,-0.000719069794286042,-0.718350470066071,-0.695681035518646,-0.000719069736078382,-0.718350470066071,-0.0229956340044737,-0.0635960623621941,-0.997710764408112,-0.0229956321418285,-0.0635960623621941,-0.997710764408112,-0.0229956340044737,-0.0635960623621941,-0.997710764408112,-0.262735694646835,-0.0634090900421143,-0.962782144546509,-0.262735694646835,-0.0634090900421143,-0.962782144546509,-0.262735664844513,-0.0634090900421143,-0.962782144546509,0.844318449497223,0.0737816542387009,0.530737817287445,0.844318389892578,0.0737816542387009,0.53073787689209,0.844318449497223,0.0737816542387009,0.53073787689209,-0.893234729766846,-0.0613327734172344,-0.445387452840805,-0.893234729766846,-0.0613327734172344,-0.445387423038483,-0.893234729766846,-0.0613327734172344,-0.445387423038483,0.997878313064575,0.063792921602726,0.0130123877897859,0.997878313064575,0.063792921602726,0.0130123877897859,0.997878313064575,0.063792921602726,0.0130123868584633,-0.239177659153938,0.885030567646027,-0.399393230676651,-0.239177644252777,0.885030567646027,-0.399393230676651,-0.239177674055099,0.885030567646027,-0.399393200874329,0.359328210353851,0.880864858627319,0.308156311511993,0.359328210353851,0.880864858627319,0.308156311511993,0.359328210353851,0.880864858627319,0.308156311511993,0.459794938564301,0.88396692276001,-0.0848017632961273,0.459794938564301,0.88396692276001,-0.0848017856478691,0.459794938564301,0.88396692276001,-0.0848017781972885,0.266880631446838,0.892784774303436,0.362918794155121,0.266880631446838,0.892784774303436,0.362918794155121,0.266880631446838,0.892784774303436,0.362918794155121,-0.314527779817581,0.896824359893799,-0.311092108488083,-0.314527779817581,0.896824359893799,-0.311092108488083,-0.314527779817581,0.896824359893799,-0.311092108488083,0.128178477287292,0.902269423007965,0.411679685115814,
- 0.128178462386131,0.902269423007965,0.411679685115814,0.128178462386131,0.902269423007965,0.411679685115814,0.0546437837183475,0.893180370330811,-0.446366310119629,0.054643776267767,0.893180370330811,-0.446366310119629,0.0546437911689281,0.893180370330811,-0.446366310119629,-0.0622216835618019,-0.45783343911171,0.886857926845551,-0.0622216835618019,-0.457833498716354,0.88685804605484,-0.0622216872870922,-0.457833498716354,0.88685804605484,-0.402987837791443,0.896024405956268,-0.186389446258545,-0.402987837791443,0.896024465560913,-0.186389416456223,-0.402987837791443,0.896024405956268,-0.186389446258545,0.396755784749985,0.917247593402863,-0.0352371707558632,0.396755784749985,0.917247593402863,-0.0352371744811535,0.396755784749985,0.917247593402863,-0.0352371707558632,-0.501937031745911,0.864904165267944,-0.000126529368571937,-0.501937031745911,0.864904165267944,-0.000126529092085548,-0.501937031745911,0.864904165267944,-0.000126530969282612,-0.771135568618774,-0.636543035507202,-0.0127635067328811,-0.771135568618774,-0.636543035507202,-0.0127635076642036,-0.771135568618774,-0.636543035507202,-0.0127635095268488,-0.997283816337585,-0.0635070353746414,-0.0373077467083931,-0.997283816337585,-0.0635070353746414,-0.0373077504336834,-0.997283816337585,-0.0635070353746414,-0.0373077504336834,-0.0909937843680382,-0.711447358131409,0.696823358535767,-0.0909937918186188,-0.711447298526764,0.696823418140411,-0.0909937918186188,-0.711447298526764,0.696823418140411,-0.997950434684753,0.0617450214922428,-0.0168081056326628,-0.997950434684753,0.0617450214922428,-0.0168081056326628,-0.997950434684753,0.0617450214922428,-0.0168081056326628,0.997765898704529,-0.063397116959095,-0.0210729297250509,0.997765898704529,-0.063397116959095,-0.0210729297250509,0.997765898704529,-0.063397116959095,-0.0210729315876961,0.80928897857666,-0.0689712464809418,-0.583347499370575,0.80928897857666,-0.0689712464809418,-0.583347499370575,0.809289038181305,-0.0689712539315224,-0.583347618579865,0.648156344890594,-0.0698143094778061,-0.758300304412842,
- 0.648156404495239,-0.0698143169283867,-0.758300364017487,0.64815628528595,-0.0698143169283867,-0.758300304412842,-0.103984676301479,0.0624328181147575,0.992617428302765,-0.103984668850899,0.0624328181147575,0.992617428302765,-0.103984661400318,0.0624328181147575,0.992617428302765,0.531884372234344,0.843512713909149,0.0747349858283997,0.531884372234344,0.843512713909149,0.0747349560260773,0.531884372234344,0.843512713909149,0.0747349858283997,-0.294462710618973,0.866077661514282,0.403981685638428,-0.294462740421295,0.866077661514282,0.403981655836105,-0.294462710618973,0.866077661514282,0.403981685638428,0.45115265250206,0.885266423225403,-0.112980633974075,0.45115265250206,0.885266423225403,-0.112980626523495,0.45115265250206,0.885266423225403,-0.112980611622334,-0.397665292024612,0.895118653774261,0.20155631005764,-0.397665321826935,0.895118653774261,0.201556295156479,-0.397665292024612,0.895118653774261,0.20155631005764,0.409925848245621,0.892146527767181,-0.189829811453819,0.409925848245621,0.892146527767181,-0.189829796552658,0.409925848245621,0.892146527767181,-0.189829796552658,-0.394993603229523,0.918683052062988,0.00131656054873019,-0.394993603229523,0.918683052062988,0.00131656136363745,-0.394993603229523,0.918683052062988,0.00131656054873019,0.432738184928894,0.901438653469086,0.012082252651453,0.432738184928894,0.901438653469086,0.012082252651453,0.432738184928894,0.901438653469086,0.0120822535827756,0.805292844772339,-0.579056084156036,0.127270191907883,0.805292844772339,-0.579056084156036,0.127270191907883,0.805292844772339,-0.579056084156036,0.127270191907883,0.282830208539963,0.889325737953186,-0.359314322471619,0.282830238342285,0.889325737953186,-0.359314322471619,0.282830208539963,0.889325737953186,-0.359314322471619,0.0909151583909988,0.901985347270966,0.422086328268051,0.0909151583909988,0.901985347270966,0.422086328268051,0.0909151658415794,0.901985347270966,0.422086328268051,0.110680148005486,0.89334237575531,-0.435533314943314,0.110680155456066,0.89334237575531,-0.435533314943314,0.110680155456066,0.89334237575531,-0.435533314943314,
- -0.138009071350098,-0.552942872047424,0.821710348129272,-0.138009071350098,-0.552942872047424,0.821710348129272,-0.138009056448936,-0.552942872047424,0.821710348129272,0.277727365493774,-0.0634115412831306,-0.958564817905426,0.277727365493774,-0.0634115412831306,-0.958564817905426,0.277727365493774,-0.0634115412831306,-0.958564817905426,-0.649476766586304,-0.716449856758118,-0.254714846611023,-0.649476766586304,-0.716449737548828,-0.254714846611023,-0.649476766586304,-0.716449797153473,-0.254714816808701,-0.777221143245697,0.0910585820674896,0.622603952884674,-0.777221143245697,0.0910585820674896,0.622603952884674,-0.777221143245697,0.0910585671663284,0.622603952884674,-0.801636338233948,-0.0167044382542372,0.597578585147858,-0.801636338233948,-0.0167044419795275,0.597578585147858,-0.801636338233948,-0.0167044382542372,0.597578585147858,-0.786207139492035,-0.0969360321760178,0.610312819480896,-0.786207139492035,-0.0969360321760178,0.610312819480896,-0.786207139492035,-0.0969360247254372,0.610312819480896,-0.418041855096817,0.0801099166274071,-0.90488862991333,-0.418041855096817,0.0801099240779877,-0.90488862991333,-0.418041855096817,0.0801099091768265,-0.90488862991333,-0.363489389419556,-0.0435472689568996,-0.930579960346222,-0.363489389419556,-0.0435472838580608,-0.930580079555511,-0.363489389419556,-0.0435472726821899,-0.930579960346222,-0.391039043664932,-0.101680904626846,-0.914740085601807,-0.391039043664932,-0.101680904626846,-0.914740085601807,-0.391039043664932,-0.101680904626846,-0.914740085601807,-0.46803081035614,0.66008198261261,-0.587570369243622,-0.468030840158463,0.660082042217255,-0.587570428848267,-0.46803081035614,0.66008198261261,-0.587570369243622,0.647891700267792,0.0019153255270794,-0.761730074882507,0.647891700267792,0.00191533903125674,-0.761730074882507,0.647891700267792,0.00191532843746245,-0.761730074882507,0.597488701343536,0.0523340925574303,-0.800167739391327,0.597488701343536,0.0523341111838818,-0.800167739391327,0.597488701343536,0.0523340925574303,-0.800167739391327,0.650543570518494,0.0943507701158524,-0.753585457801819,
- 0.650543570518494,0.0943507850170136,-0.753585457801819,0.650543570518494,0.0943507850170136,-0.753585457801819,0.617889106273651,-0.0113986041396856,-0.786182761192322,0.617889106273651,-0.0113985994830728,-0.786182761192322,0.617889106273651,-0.0113986013457179,-0.786182761192322,-0.0479577220976353,-0.0109632229432464,-0.998789191246033,-0.0479577220976353,-0.0109632229432464,-0.998789191246033,-0.0479577220976353,-0.0109632220119238,-0.998789191246033,-0.123615376651287,0.0050371503457427,-0.99231743812561,-0.123615376651287,0.0050371503457427,-0.99231743812561,-0.123615376651287,0.00503715081140399,-0.99231743812561,-0.0196199286729097,-0.995346784591675,-0.0943391546607018,-0.0196199323982,-0.995346784591675,-0.0943391695618629,-0.0196199305355549,-0.995346784591675,-0.0943391621112823,-0.00509517826139927,-0.999971151351929,0.00563174299895763,-0.00509517826139927,-0.999971151351929,0.00563174253329635,-0.00509517826139927,-0.999971151351929,0.00563174346461892,0.127793699502945,0.00203956267796457,0.99179869890213,0.127793699502945,0.00203956267796457,0.99179869890213,0.127793714404106,0.00203956267796457,0.99179869890213,0.13974817097187,0.0631468072533607,0.988171517848969,0.139748185873032,0.0631468072533607,0.988171517848969,0.139748185873032,0.0631468072533607,0.988171517848969,-0.291916489601135,-0.00899512972682714,-0.956401526927948,-0.291916489601135,-0.00899513065814972,-0.956401526927948,-0.291916489601135,-0.00899512972682714,-0.956401526927948,-0.363246977329254,0.00340823386795819,-0.931686758995056,-0.363246977329254,0.00340823386795819,-0.931686758995056,-0.363246977329254,0.00340823386795819,-0.931686758995056,-0.0256995502859354,-0.997482419013977,-0.0660935789346695,-0.0256995428353548,-0.997482419013977,-0.0660935565829277,-0.0256995465606451,-0.997482419013977,-0.0660935714840889,0.000939493882469833,-0.999996244907379,-0.0025686773005873,0.000939493882469833,-0.999996244907379,-0.0025686773005873,0.000939493940677494,-0.999996244907379,-0.0025686773005873,0.36811825633049,0.00289856130257249,0.929774463176727,
- 0.36811825633049,0.00289856130257249,0.929774463176727,0.368118226528168,0.00289856106974185,0.929774463176727,0.374762356281281,0.0624437890946865,0.92501562833786,0.374762356281281,0.0624437890946865,0.92501562833786,0.374762356281281,0.0624437890946865,0.92501562833786,-0.60483980178833,0.0111826024949551,-0.7962686419487,-0.60483980178833,0.0111826034262776,-0.7962686419487,-0.60483980178833,0.0111826034262776,-0.7962686419487,-0.664179921150208,-0.0111939227208495,-0.747488975524902,-0.664179921150208,-0.0111939227208495,-0.747488975524902,-0.664179921150208,-0.0111939227208495,-0.747488975524902,-0.00129834411200136,-0.999885976314545,-0.0150456661358476,-0.00129834469407797,-0.999885976314545,-0.0150456670671701,-0.00129834527615458,-0.999885976314545,-0.0150456679984927,0.00360325095243752,-0.999895930290222,-0.0139767425134778,0.00360325118526816,-0.999895930290222,-0.0139767425134778,0.00360325165092945,-0.999895930290222,-0.0139767415821552,0.675335705280304,0.0730042830109596,0.733888328075409,0.675335705280304,0.0730042830109596,0.733888328075409,0.675335764884949,0.0730042830109596,0.733888268470764,0.457610011100769,-0.0122740305960178,0.889068305492401,0.457610011100769,-0.0122740305960178,0.889068305492401,0.457610040903091,-0.0122740250080824,0.889068305492401,-0.582652449607849,-0.0776616558432579,-0.809002339839935,-0.582652449607849,-0.0776616558432579,-0.809002339839935,-0.582652449607849,-0.0776616558432579,-0.809002339839935,-0.592057585716248,-0.0411992631852627,-0.804841876029968,-0.592057585716248,-0.0411992631852627,-0.804841876029968,-0.592057645320892,-0.0411992631852627,-0.804841816425323,-0.784743964672089,-0.000207193224923685,-0.619820177555084,-0.784743964672089,-0.000207193224923685,-0.619820177555084,-0.784743964672089,-0.000207193137612194,-0.619820177555084,-0.833298027515411,-0.011725127696991,-0.552699625492096,-0.833298027515411,-0.0117251267656684,-0.552699625492096,-0.833298027515411,-0.011725127696991,-0.552699625492096,-0.0557087175548077,-0.997453808784485,-0.044524721801281,
- -0.0557087175548077,-0.997453808784485,-0.044524721801281,-0.0557087101042271,-0.997453808784485,-0.0445247143507004,-0.0053767436183989,-0.999980092048645,-0.00333205284550786,-0.0053767436183989,-0.999980092048645,-0.00333205284550786,-0.00537674408406019,-0.999980092048645,-0.00333205354399979,-0.776243567466736,-0.0704068392515183,-0.626489222049713,-0.776243627071381,-0.0704068392515183,-0.626489222049713,-0.776243567466736,-0.0704068392515183,-0.626489222049713,-0.792213678359985,0.00402261130511761,-0.610230565071106,-0.792213797569275,0.00402261270210147,-0.610230565071106,-0.792213797569275,0.00402261363342404,-0.610230565071106,-0.903523325920105,0.00494505139067769,-0.428510397672653,-0.903523325920105,0.00494505185633898,-0.428510397672653,-0.903523325920105,0.00494505045935512,-0.428510397672653,-0.933795988559723,-0.00277790031395853,-0.357795119285584,-0.933795988559723,-0.00277790147811174,-0.357795119285584,-0.933795988559723,-0.00277790077961981,-0.357795119285584,0.00619546882808208,-0.999419093132019,-0.0335133485496044,0.0061954683624208,-0.999419093132019,-0.0335133485496044,0.00619546975940466,-0.999419093132019,-0.0335133485496044,-0.0570154115557671,-0.99676775932312,-0.0565991662442684,-0.0570154152810574,-0.99676775932312,-0.0565991699695587,-0.0570154115557671,-0.99676775932312,-0.0565991662442684,0.940268754959106,0.105707511305809,0.323605597019196,0.940268754959106,0.105707511305809,0.323605626821518,0.940268754959106,0.105707511305809,0.323605626821518,0.93504410982132,-0.0067319511435926,0.354467779397964,0.93504410982132,-0.0067319511435926,0.354467779397964,0.93504399061203,-0.00673195067793131,0.354467779397964,-0.999060809612274,0.011644403450191,-0.0417364425957203,-0.999060809612274,0.0116444025188684,-0.0417364425957203,-0.999060809612274,0.0116444025188684,-0.0417364425957203,-0.999158322811127,-0.0150044970214367,-0.0381771512329578,-0.999158322811127,-0.0150044970214367,-0.0381771512329578,-0.999158322811127,-0.0150044970214367,-0.0381771512329578,-0.0696028620004654,-0.997502028942108,-0.0120469750836492,
- -0.0696028545498848,-0.997502028942108,-0.0120469750836492,-0.0696028545498848,-0.997502028942108,-0.0120469750836492,-0.00364428129978478,-0.999986588954926,-0.00368456565774977,-0.00364428129978478,-0.999986588954926,-0.00368456565774977,-0.00364428106695414,-0.999986588954926,-0.00368456565774977,-0.999564468860626,0.00263327406719327,-0.0293934419751167,-0.999564468860626,0.00263327406719327,-0.0293934401124716,-0.999564468860626,0.00263327406719327,-0.0293934382498264,-0.997021675109863,-0.0636623948812485,-0.0435326285660267,-0.997021675109863,-0.0636623948812485,-0.0435326285660267,-0.997021675109863,-0.0636623948812485,-0.043532632291317,-0.45891210436821,0.884187340736389,-0.0872492119669914,-0.45891210436821,0.884187340736389,-0.0872492045164108,-0.45891210436821,0.884187340736389,-0.0872492045164108,-0.43423268198967,0.895317554473877,0.0992394089698792,-0.43423268198967,0.895317554473877,0.0992394089698792,-0.43423268198967,0.895317554473877,0.0992394164204597,0.197033241391182,0.894718825817108,0.400819361209869,0.197033271193504,0.894718825817108,0.400819331407547,0.197033256292343,0.894718825817108,0.400819361209869,0.21871942281723,0.889000654220581,0.402293026447296,0.218719407916069,0.889000654220581,0.402293056249619,0.21871942281723,0.889000654220581,0.402293026447296,-0.253423810005188,0.890603065490723,-0.377627491950989,-0.253423810005188,0.890603065490723,-0.377627491950989,-0.253423810005188,0.890603184700012,-0.377627551555634,-0.388216018676758,0.876618623733521,-0.284302920103073,-0.388215988874435,0.876618623733521,-0.284302920103073,-0.388215988874435,0.876618623733521,-0.284302949905396,-0.0116606308147311,0.996116101741791,-0.0872749984264374,-0.0116606252267957,0.996116101741791,-0.087275005877018,-0.0116606233641505,0.996116101741791,-0.087275005877018,-0.00673064356669784,0.995961546897888,-0.0895280763506889,-0.00673064030706882,0.995961546897888,-0.0895280763506889,-0.00673064403235912,0.995961546897888,-0.0895280763506889,0.415658861398697,0.889756619930267,0.188575774431229,0.415658861398697,0.889756619930267,0.188575774431229,
- 0.415658861398697,0.889756619930267,0.188575774431229,0.446168482303619,0.893564581871033,0.0497594438493252,0.446168482303619,0.893564581871033,0.0497594363987446,0.446168482303619,0.893564581871033,0.0497594438493252,-0.0734530389308929,0.996338188648224,-0.0437588132917881,-0.0734530389308929,0.996338188648224,-0.0437588170170784,-0.0734530389308929,0.996338188648224,-0.0437588132917881,-0.0744768604636192,0.996342539787292,-0.0418902225792408,-0.0744768530130386,0.996342539787292,-0.0418902263045311,-0.0744768530130386,0.996342539787292,-0.0418902263045311,-0.99798595905304,-0.010903094895184,-0.0624928213655949,-0.99798595905304,-0.0109030967578292,-0.0624928213655949,-0.99798595905304,-0.0109030967578292,-0.0624928213655949,-0.990442395210266,0.00506846187636256,-0.137833833694458,-0.990442395210266,0.00506846187636256,-0.137833833694458,-0.990442395210266,0.00506846234202385,-0.137833833694458,0.00527704833075404,-0.999983251094818,-0.00237723393365741,0.00527704879641533,-0.999983251094818,-0.00237723393365741,0.00527704879641533,-0.999983251094818,-0.00237723393365741,-0.0941499248147011,-0.995385766029358,-0.0185193195939064,-0.0941499248147011,-0.995385766029358,-0.0185193214565516,-0.0941499248147011,-0.995385766029358,-0.0185193214565516,0.989931881427765,0.00203236099332571,0.141530647873878,0.989931881427765,0.00203236099332571,0.141530647873878,0.98993182182312,0.00203236076049507,0.141530618071556,0.986085474491119,0.0631561130285263,0.15377514064312,0.986085474491119,0.0631561130285263,0.15377514064312,0.986085474491119,0.0631561130285263,0.15377514064312,0.999185979366302,-0.0129240555688739,0.0382173247635365,0.999185979366302,-0.0129240546375513,0.0382173247635365,0.999185979366302,-0.0129240555688739,0.0382173247635365,0.999174475669861,0.00960991438478231,0.0394746623933315,0.999174475669861,0.00960991531610489,0.0394746623933315,0.999174475669861,0.00960991345345974,0.0394746623933315,-0.00285593024455011,-0.999912619590759,-0.0129069117829204,-0.0028559307102114,-0.999912619590759,-0.0129069117829204,
- -0.0028559307102114,-0.999912619590759,-0.0129069117829204,0.100255250930786,-0.99495404958725,-0.00392081029713154,0.100255265831947,-0.99495404958725,-0.00392080657184124,0.100255250930786,-0.99495404958725,-0.00392080983147025,0.99691903591156,-0.0636943131685257,0.0457759015262127,0.99691903591156,-0.0636943131685257,0.0457759015262127,0.99691903591156,-0.0636943131685257,0.0457758978009224,0.999867022037506,0.00399991916492581,0.015817366540432,0.999867022037506,0.00399991916492581,0.0158173646777868,0.999867022037506,0.00399991916492581,0.015817366540432,0.998661875724792,-0.00898981932550669,-0.0509278737008572,0.998661875724792,-0.00898981932550669,-0.0509278737008572,0.998661875724792,-0.00898981932550669,-0.0509278737008572,0.992008328437805,0.00337941804900765,-0.126127183437347,0.992008328437805,0.00337941804900765,-0.126127183437347,0.992008328437805,0.0033794182818383,-0.126127183437347,0.0703653693199158,-0.997481822967529,-0.00887186918407679,0.0703653767704964,-0.997481822967529,-0.00887187011539936,0.0703653767704964,-0.997481822967529,-0.00887187011539936,0.00227784621529281,-0.999996304512024,0.00154358812142164,0.00227784621529281,-0.999996304512024,0.00154358812142164,0.00227784644812346,-0.999996304512024,0.00154358812142164,-0.991272389888763,0.00389447808265686,0.131772115826607,-0.991272389888763,0.00389447784982622,0.131772086024284,-0.991272389888763,0.00389447808265686,0.131772086024284,-0.988328993320465,0.0624930188059807,0.138926714658737,-0.988328993320465,0.0624930188059807,0.138926699757576,-0.988328993320465,0.0624930188059807,0.138926699757576,0.919215261936188,0.0109978439286351,-0.393602073192596,0.919215261936188,0.0109978429973125,-0.393602073192596,0.919215261936188,0.0109978429973125,-0.393602073192596,0.885929942131042,-0.00869029760360718,-0.463737905025482,0.885929942131042,-0.0086902966722846,-0.463737905025482,0.885929942131042,-0.00869029574096203,-0.463737905025482,0.0149425528943539,-0.999885380268097,0.00244277203455567,0.0149425528943539,-0.999885380268097,0.00244277203455567,
- 0.0149425528943539,-0.999885380268097,0.00244277203455567,0.00997134391218424,-0.999904572963715,0.0095608988776803,0.00997134391218424,-0.999904572963715,0.0095608988776803,0.00997134391218424,-0.999904572963715,0.0095608988776803,-0.952436625957489,-0.00152412743773311,0.304732829332352,-0.952436685562134,-0.00152412767056376,0.304732829332352,-0.952436625957489,-0.00152412743773311,0.304732829332352,-0.877722382545471,0.0644216015934944,0.474819421768188,-0.877722382545471,0.0644216015934944,0.474819451570511,-0.877722382545471,0.0644216015934944,0.474819451570511,0.926434338092804,-0.0778606757521629,-0.368316918611526,0.926434338092804,-0.0778606757521629,-0.368316888809204,0.926434338092804,-0.0778606757521629,-0.368316888809204,0.924433827400208,-0.0412134975194931,-0.379109174013138,0.924433827400208,-0.0412134975194931,-0.379109174013138,0.924433827400208,-0.0412134975194931,-0.379109174013138,0.741572380065918,-0.0126975793391466,-0.670752704143524,0.741572380065918,-0.0126975802704692,-0.670752704143524,0.741572380065918,-0.0126975802704692,-0.670752704143524,0.791014492511749,0.0086996853351593,-0.611735582351685,0.791014492511749,0.0086996853351593,-0.611735582351685,0.791014492511749,0.00869968440383673,-0.611735582351685,0.0538711957633495,-0.997381389141083,-0.0482539236545563,0.0538711920380592,-0.997381389141083,-0.0482539236545563,0.0538711883127689,-0.997381389141083,-0.048253919929266,0.00636236043646932,-0.999971330165863,-0.00411130907014012,0.00636235997080803,-0.999971330165863,-0.00411130860447884,0.00636236043646932,-0.999971330165863,-0.00411130907014012,-0.735719621181488,0.0740522295236588,0.673225700855255,-0.735719621181488,0.0740522295236588,0.673225700855255,-0.735719740390778,0.0740522369742393,0.673225700855255,-0.755538284778595,0.00186352478340268,0.655101835727692,-0.755538284778595,0.00186352361924946,0.655101835727692,-0.75553822517395,0.00186352606397122,0.655101895332336,0.572777271270752,-0.00172770046629012,-0.819709241390228,0.572777271270752,-0.00172770151402801,-0.819709241390228,
- 0.572777271270752,-0.00172770151402801,-0.819709241390228,0.63655161857605,0.00130616500973701,-0.771233141422272,0.63655161857605,0.00130616442766041,-0.771233141422272,0.63655161857605,0.00130616454407573,-0.771233141422272,0.0701944380998611,-0.996511816978455,-0.0451330728828907,0.0701944380998611,-0.996511816978455,-0.045133076608181,0.0701944380998611,-0.996511816978455,-0.0451330654323101,0.0308890659362078,-0.999420940876007,0.0142697002738714,0.0308890659362078,-0.999420940876007,0.014269701205194,0.0308890659362078,-0.999420940876007,0.0142696993425488,-0.541326403617859,0.0989944860339165,0.834964573383331,-0.541326403617859,0.0989944860339165,0.834964573383331,-0.541326463222504,0.0989944860339165,0.834964513778687,-0.570128738880157,0.00659801438450813,0.821528911590576,-0.570128738880157,0.00659801391884685,0.821528851985931,-0.570128738880157,0.00659801391884685,0.821528851985931,0.137079477310181,0.0138941984623671,-0.990462601184845,0.137079477310181,0.0138941975310445,-0.990462601184845,0.137079477310181,0.0138941975310445,-0.990462601184845,0.211517885327339,-0.0115080205723643,-0.977306485176086,0.211517885327339,-0.0115080205723643,-0.977306485176086,0.211517885327339,-0.0115080196410418,-0.977306485176086,0.00407413998618722,-0.999988198280334,-0.00268951756879687,0.00407413998618722,-0.999988198280334,-0.00268951803445816,0.00407413998618722,-0.999988198280334,-0.00268951780162752,0.0207688696682453,-0.997424840927124,-0.0686464235186577,0.0207688715308905,-0.997424840927124,-0.0686464309692383,0.0207688715308905,-0.997424840927124,-0.0686464309692383,0.219820722937584,-0.0632484704256058,-0.973487794399261,0.219820737838745,-0.0632484704256058,-0.973487794399261,0.219820722937584,-0.0632484704256058,-0.973487794399261,0.203416973352432,0.0043664718978107,-0.979082465171814,0.203416958451271,0.0043664718978107,-0.979082465171814,0.203416958451271,0.0043664718978107,-0.979082465171814,-0.0118903080001473,0.894795894622803,0.4463170170784,-0.0118903107941151,0.894795894622803,0.4463170170784,-0.0118903107941151,0.894795894622803,0.4463170170784,
- -0.104293264448643,0.888167440891266,0.447528183460236,-0.104293256998062,0.888167440891266,0.447528183460236,-0.104293256998062,0.888167440891266,0.447528183460236,-0.0260341484099627,0.892985343933105,-0.449332445859909,-0.026034152135253,0.892985343933105,-0.449332445859909,-0.0260341539978981,0.892985343933105,-0.449332445859909,0.0194505471736193,0.899019002914429,-0.437477469444275,0.0194505490362644,0.899019002914429,-0.437477469444275,0.0194505490362644,0.899019002914429,-0.437477469444275,-0.460600346326828,0.887591421604156,-0.00536782387644053,-0.46060037612915,0.887591421604156,-0.00536782993003726,-0.46060037612915,0.887591421604156,-0.00536782946437597,-0.446170508861542,0.885246932506561,0.131414264440537,-0.446170508861542,0.885246932506561,0.131414264440537,-0.446170508861542,0.885246932506561,0.131414264440537,0.0965456664562225,0.994891166687012,0.0295044798403978,0.0965456664562225,0.994891166687012,0.029504481703043,0.0965456664562225,0.994891166687012,0.029504481703043,0.10095950961113,0.993677079677582,0.0491232573986053,0.10095950961113,0.993677079677582,0.0491232573986053,0.10095950961113,0.993677079677582,0.0491232648491859,-0.267596572637558,0.893269419670105,0.361195027828217,-0.26759660243988,0.893269419670105,0.361195027828217,-0.267596572637558,0.893269419670105,0.361195057630539,-0.156144306063652,0.893792331218719,0.42042151093483,-0.156144291162491,0.893792331218719,0.420421540737152,-0.156144291162491,0.893792331218719,0.420421540737152,0.0573021918535233,0.996745705604553,-0.0566958785057068,0.0573021918535233,0.996745705604553,-0.0566958785057068,0.0573021918535233,0.996745705604553,-0.0566958785057068,0.0587629862129688,0.996752381324768,-0.055060151964426,0.0587629824876785,0.996752381324768,-0.0550601556897163,0.0587629787623882,0.996752381324768,-0.0550601556897163,0.374023973941803,0.00495362235233188,-0.927405834197998,0.374023973941803,0.00495362235233188,-0.927405834197998,0.374023973941803,0.00495362235233188,-0.927405834197998,0.302463531494141,-0.0107601461932063,-0.953100323677063,
- 0.302463531494141,-0.0107601471245289,-0.953100323677063,0.302463531494141,-0.0107601471245289,-0.953100323677063,0.00268930033780634,-0.999974191188812,0.0066637946292758,0.00268930057063699,-0.999974191188812,0.00666379416361451,0.00268930057063699,-0.999974191188812,0.00666379416361451,0.0414028763771057,-0.995289444923401,-0.0876628309488297,0.041402880102396,-0.995289444923401,-0.0876628309488297,0.041402880102396,-0.995289444923401,-0.0876628383994102,-0.388417899608612,0.0634139254689217,0.919298768043518,-0.388417840003967,0.0634139254689217,0.919298768043518,-0.388417899608612,0.0634139254689217,0.919298768043518,-0.377043545246124,0.00453692954033613,0.926184415817261,-0.377043545246124,0.00453692954033613,0.926184415817261,-0.377043515443802,0.00453693000599742,0.926184415817261,-0.84902948141098,0.246544167399406,0.467295318841934,-0.84902948141098,0.246544197201729,0.467295318841934,-0.84902948141098,0.24654421210289,0.467295318841934,-0.997123599052429,-0.0580136999487877,0.0487745255231857,-0.997123599052429,-0.0580136999487877,0.0487745255231857,-0.997123599052429,-0.0580136962234974,0.0487745255231857,-0.933878123760223,0.0648157671093941,0.351668238639832,-0.933878242969513,0.0648157671093941,0.351668238639832,-0.933878123760223,0.0648157671093941,0.351668238639832,-0.204742565751076,0.239065885543823,0.949172377586365,-0.204742535948753,0.239065885543823,0.949172258377075,-0.204742521047592,0.239065900444984,0.949172258377075,-0.647643268108368,-0.238801941275597,0.723555028438568,-0.647643268108368,-0.238801941275597,0.723555028438568,-0.647643268108368,-0.238801956176758,0.723555088043213,-0.35312682390213,0.0725707560777664,0.932756662368774,-0.35312682390213,0.0725707560777664,0.932756662368774,-0.353126883506775,0.0725707560777664,0.932756721973419,-0.197565212845802,-0.253866821527481,0.946847319602966,-0.197565212845802,-0.253866821527481,0.946847319602966,-0.19756518304348,-0.253866821527481,0.946847200393677,0.251598656177521,0.0511061027646065,0.966481387615204,0.251598656177521,0.0511061027646065,0.966481387615204,
- 0.251598656177521,0.0511061027646065,0.966481387615204,-0.0512703359127045,-0.0665845274925232,0.996462762355804,-0.0512703359127045,-0.0665845274925232,0.996462762355804,-0.0512703359127045,-0.0665845274925232,0.996462762355804,-0.885182321071625,-0.0335524678230286,0.464032918214798,-0.88518238067627,-0.033552460372448,0.464032977819443,-0.885182321071625,-0.0335524789988995,0.464032918214798,-0.893429100513458,0.177893802523613,0.41247820854187,-0.893429100513458,0.177893817424774,0.41247820854187,-0.893429100513458,0.177893817424774,0.41247820854187,-0.830458879470825,0.11032348126173,0.546046495437622,-0.830458879470825,0.110323511064053,0.546046495437622,-0.830458879470825,0.110323496162891,0.546046495437622,-0.806169331073761,-0.0221135374158621,0.591271698474884,-0.806169331073761,-0.0221135374158621,0.591271698474884,-0.806169331073761,-0.0221135020256042,0.591271698474884,-0.732598423957825,-0.0548113584518433,0.678450644016266,-0.732598423957825,-0.0548113808035851,0.678450644016266,-0.732598423957825,-0.0548113584518433,0.678450644016266,-0.694927871227264,0.145385086536407,0.704228937625885,-0.694927871227264,0.145385101437569,0.704228937625885,-0.694927871227264,0.145385086536407,0.704228937625885,-0.794140458106995,0.0765146762132645,0.602898359298706,-0.794140458106995,0.0765146836638451,0.602898359298706,-0.794140458106995,0.0765146911144257,0.602898359298706,-0.81328272819519,-0.0186260733753443,0.581570506095886,-0.81328272819519,-0.0186260808259249,0.581570506095886,-0.81328272819519,-0.0186260808259249,0.581570506095886,-0.856341183185577,-0.264154106378555,-0.443737119436264,-0.856341123580933,-0.264154046773911,-0.443737030029297,-0.856341123580933,-0.264154046773911,-0.443737030029297,-0.890058696269989,-0.437350749969482,0.128530442714691,-0.890058577060699,-0.43735072016716,0.128530412912369,-0.890058577060699,-0.43735072016716,0.12853042781353,-0.997632205486298,-0.00184875703416765,0.0687500759959221,-0.997632205486298,-0.00184875424019992,0.0687500759959221,-0.997632205486298,-0.00184875400736928,0.0687500759959221,
- -0.861965775489807,0.0719574317336082,-0.501833975315094,-0.861965775489807,0.0719574391841888,-0.501833975315094,-0.861965775489807,0.0719574466347694,-0.501833975315094,-0.917095601558685,0.248995557427406,0.311347216367722,-0.917095601558685,0.248995572328568,0.311347216367722,-0.917095601558685,0.248995572328568,0.311347216367722,-0.978488147258759,0.180390387773514,0.100102238357067,-0.978488147258759,0.180390387773514,0.100102238357067,-0.978488147258759,0.180390402674675,0.100102230906487,-0.999412655830383,0.00371465855278075,0.0340663529932499,-0.999412655830383,0.0037146566901356,0.0340663529932499,-0.999412655830383,0.00371465575881302,0.0340663529932499,-0.229725271463394,0.0166315548121929,0.973113417625427,-0.229725271463394,0.0166315548121929,0.973113417625427,-0.229725271463394,0.0166315492242575,0.973113417625427,-0.178702786564827,0.157693460583687,0.971183955669403,-0.178702771663666,0.157693415880203,0.971183896064758,-0.178702771663666,0.157693415880203,0.971183896064758,-0.335409581661224,0.0787017717957497,0.938779234886169,-0.335409551858902,0.0787017494440079,0.938779234886169,-0.335409551858902,0.0787017643451691,0.938779234886169,-0.344692528247833,0.0221912041306496,0.938453316688538,-0.344692528247833,0.0221912246197462,0.938453316688538,-0.344692528247833,0.022191209718585,0.938453316688538,-0.24706968665123,0.246537774801254,-0.937110304832459,-0.24706968665123,0.246537804603577,-0.937110304832459,-0.24706968665123,0.246537789702415,-0.937110304832459,0.194044157862663,-0.0586546137928963,-0.979237735271454,0.194044157862663,-0.0586546212434769,-0.979237735271454,0.194044157862663,-0.0586546137928963,-0.979237735271454,-0.114338681101799,0.0647898465394974,-0.991326868534088,-0.11433868855238,0.0647898465394974,-0.991326868534088,-0.114338681101799,0.0647898465394974,-0.991326868534088,-0.7325479388237,0.275437533855438,-0.622501254081726,-0.7325479388237,0.275437504053116,-0.622501194477081,-0.7325479388237,0.275437474250793,-0.622501194477081,-0.385305196046829,-0.0489628240466118,-0.921489298343658,
- -0.385305196046829,-0.0489628203213215,-0.921489298343658,-0.385305225849152,-0.0489627942442894,-0.921489298343658,-0.643892467021942,0.0513967499136925,-0.763387799263,-0.643892467021942,0.051396768540144,-0.763387739658356,-0.643892467021942,0.0513967499136925,-0.763387799263,-0.873516082763672,0.239533871412277,-0.423784345388412,-0.873516082763672,0.239533871412277,-0.423784345388412,-0.873516082763672,0.239533871412277,-0.423784345388412,-0.546951115131378,-0.237716346979141,-0.802705049514771,-0.546951115131378,-0.237716346979141,-0.802705049514771,-0.546951115131378,-0.237716346979141,-0.802705049514771,-0.820984721183777,0.0696649774909019,-0.566684067249298,-0.820984721183777,0.0696649700403214,-0.566684067249298,-0.820984780788422,0.0696649849414825,-0.566684067249298,-0.90858793258667,-0.25895220041275,-0.327737301588058,-0.90858793258667,-0.258952170610428,-0.327737301588058,-0.90858793258667,-0.258952140808105,-0.327737301588058,-0.991422414779663,0.0508236289024353,0.120410747826099,-0.991422414779663,0.0508236289024353,0.120410747826099,-0.991422414779663,0.0508236400783062,0.120410762727261,-0.981174349784851,-0.0577196180820465,-0.184296980500221,-0.981174349784851,-0.0577196180820465,-0.184296980500221,-0.981174349784851,-0.0577196218073368,-0.184296995401382,0.648598551750183,-0.0165943149477243,0.760949730873108,0.648598551750183,-0.016594311222434,0.760949730873108,0.648598551750183,-0.016594298183918,0.760949730873108,0.523318231105804,0.0296726245433092,0.851620554924011,0.523318231105804,0.029672609642148,0.851620554924011,0.523318231105804,0.0296726226806641,0.851620554924011,0.521914064884186,0.0274810027331114,0.852555274963379,0.521914124488831,0.0274809971451759,0.852555274963379,0.521914064884186,0.0274810008704662,0.852555274963379,0.568772196769714,-0.0157678723335266,0.822343945503235,0.568772196769714,-0.0157678946852684,0.822343945503235,0.568772196769714,-0.0157678816467524,0.822343945503235,0.570185363292694,-0.0322179608047009,0.820884108543396,0.570185303688049,-0.0322179310023785,0.820884108543396,
- 0.570185303688049,-0.0322179310023785,0.820884108543396,0.579805731773376,0.432814866304398,0.690287292003632,0.579805731773376,0.43281489610672,0.690287292003632,0.579805791378021,0.432814866304398,0.690287292003632,0.0197275690734386,0.968759655952454,0.247215688228607,0.0197275802493095,0.968759655952454,0.247215688228607,0.0197275690734386,0.968759655952454,0.247215688228607,-0.0843050479888916,0.00321343564428389,-0.996434807777405,-0.084305040538311,0.00321343285031617,-0.996434807777405,-0.0843050479888916,0.00321343680843711,-0.996434807777405,-0.0458529852330685,-0.0887697339057922,-0.994996190071106,-0.0458529852330685,-0.0887697339057922,-0.994996190071106,-0.0458529889583588,-0.0887697264552116,-0.994996190071106,-0.0316037386655808,-0.041485108435154,-0.998639166355133,-0.0316037349402905,-0.041485108435154,-0.998639166355133,-0.0316037386655808,-0.041485108435154,-0.998639166355133,-0.0906081199645996,-0.0152785107493401,-0.995769441127777,-0.0906081274151802,-0.0152785060927272,-0.995769441127777,-0.0906081199645996,-0.0152785135433078,-0.995769441127777,-0.0526649914681911,0.0139995831996202,-0.998514115810394,-0.0526649951934814,0.0139995850622654,-0.998514115810394,-0.0526649951934814,0.0139995841309428,-0.998514115810394,-0.419097155332565,0.903393447399139,-0.0907628089189529,-0.419097155332565,0.903393447399139,-0.0907628014683723,-0.419097155332565,0.903393447399139,-0.0907628089189529,-0.431311994791031,-0.0287793967872858,-0.901743710041046,-0.431311994791031,-0.0287793930619955,-0.901743710041046,-0.431311994791031,-0.0287793967872858,-0.901743710041046,0.273807615041733,-0.195064604282379,-0.941795706748962,0.273807615041733,-0.195064589381218,-0.941795706748962,0.273807615041733,-0.195064604282379,-0.941795706748962,0.00424468051642179,0.000190959792234935,-0.999990999698639,0.00424468051642179,0.000190959748579189,-0.999990999698639,0.00424468005076051,0.000190959675819613,-0.999990999698639,-0.889371275901794,0.0178249124437571,-0.456838071346283,-0.889371275901794,0.0178249012678862,-0.456838071346283,
- -0.889371275901794,0.0178249124437571,-0.456838071346283,-0.900047421455383,0.160847932100296,-0.405021727085114,-0.900047421455383,0.160847902297974,-0.405021727085114,-0.900047421455383,0.160847902297974,-0.405021727085114,-0.829975843429565,0.0804917141795158,-0.551961243152618,-0.829975843429565,0.0804917141795158,-0.551961243152618,-0.829975843429565,0.0804917216300964,-0.551961243152618,-0.82751452922821,0.0208240859210491,-0.561057984828949,-0.82751452922821,0.0208240728825331,-0.561057984828949,-0.82751452922821,0.0208240915089846,-0.561057984828949,-0.875403642654419,0.0836817473173141,-0.476094394922256,-0.875403642654419,0.0836817473173141,-0.476094394922256,-0.875403642654419,0.0836817547678947,-0.476094394922256,-0.946444094181061,0.249223202466965,0.205259278416634,-0.946444094181061,0.249223187565804,0.205259278416634,-0.946444094181061,0.249223202466965,0.205259278416634,-0.983309805393219,0.181699305772781,-0.00933614000678062,-0.983309805393219,0.181699320673943,-0.00933614559471607,-0.983309805393219,0.181699305772781,-0.00933613814413548,-0.997118532657623,0.00999678298830986,-0.0751979351043701,-0.997118532657623,0.00999678391963243,-0.0751979351043701,-0.997118532657623,0.00999678298830986,-0.0751979351043701,-0.991365790367126,0.0728220865130425,0.109044753015041,-0.991365790367126,0.072822093963623,0.109044767916203,-0.991365790367126,0.0728220865130425,0.109044753015041,-0.982340395450592,-0.0486021302640438,-0.180679678916931,-0.982340395450592,-0.0486021302640438,-0.180679678916931,-0.982340395450592,-0.0486021302640438,-0.180679678916931,-0.942982017993927,0.236763060092926,0.233940586447716,-0.942982017993927,0.236763045191765,0.233940586447716,-0.942982017993927,0.236763089895248,0.233940586447716,-0.600047588348389,-0.0599510595202446,0.797714710235596,-0.600047588348389,-0.0599510483443737,0.797714829444885,-0.600047588348389,-0.0599510483443737,0.797714829444885,-0.329545646905899,0.0515393912792206,0.942731857299805,-0.329545646905899,0.0515393987298012,0.942731857299805,-0.329545646905899,0.0515394061803818,0.942731857299805,
- -0.695356965065002,-0.27183786034584,0.665269017219543,-0.695356965065002,-0.27183786034584,0.665269017219543,-0.695356965065002,-0.27183786034584,0.665269017219543,0.572635352611542,-0.040015734732151,-0.81883305311203,0.572635293006897,-0.0400157570838928,-0.81883305311203,0.572635293006897,-0.0400157570838928,-0.81883305311203,0.696301877498627,0.0136662907898426,-0.717618942260742,0.696301877498627,0.0136662907898426,-0.717618942260742,0.696301937103271,0.0136663028970361,-0.717618942260742,0.691489279270172,0.0272088330239058,-0.721874117851257,0.691489279270172,0.0272088330239058,-0.721874117851257,0.691489279270172,0.0272088441997766,-0.721874117851257,0.652607142925262,-0.0143630616366863,-0.757560312747955,0.652607142925262,-0.0143630597740412,-0.757560312747955,0.652607202529907,-0.0143630541861057,-0.757560253143311,0.610747158527374,-0.0410323180258274,-0.790761828422546,0.610747158527374,-0.0410323217511177,-0.790761828422546,0.610747158527374,-0.0410323105752468,-0.790761828422546,0.188712790608406,0.926136910915375,-0.326585203409195,0.188712790608406,0.926136910915375,-0.326585203409195,0.188712820410728,0.926137030124664,-0.326585203409195,0.397401094436646,0.90006959438324,0.178738176822662,0.397401064634323,0.90006959438324,0.178738176822662,0.397401064634323,0.90006959438324,0.178738176822662,-0.0732216387987137,0.0117236133664846,0.99724680185318,-0.0732216462492943,0.0117236105725169,0.99724680185318,-0.0732216387987137,0.0117236124351621,0.99724680185318,0.0289604607969522,0.0447287112474442,0.998579323291779,0.0289604607969522,0.0447287149727345,0.998579323291779,0.0289604607969522,0.0447287112474442,0.998579323291779,0.0289604365825653,0.0447286851704121,0.998579323291779,0.0289604347199202,0.0447286851704121,0.998579323291779,0.0289604384452105,0.0447286851704121,0.998579323291779,-0.100470349192619,0.0180441793054342,0.994776427745819,-0.100470349192619,0.0180441793054342,0.994776427745819,-0.100470349192619,0.0180441793054342,0.994776427745819,-0.073601022362709,0.00352296186611056,0.997281551361084,
- -0.073601022362709,0.00352296186611056,0.997281551361084,-0.073601022362709,0.00352296209894121,0.997281551361084,0.359342485666275,0.932604610919952,-0.0334909446537495,0.359342485666275,0.932604610919952,-0.0334909483790398,0.359342485666275,0.932604610919952,-0.0334909483790398,0.4406878054142,0.887728333473206,0.133164867758751,0.440687835216522,0.887728333473206,0.13316485285759,0.4406878054142,0.887728333473206,0.133164867758751,-0.375367522239685,0.859804689884186,-0.346172422170639,-0.375367522239685,0.859804689884186,-0.346172422170639,-0.375367522239685,0.859804689884186,-0.346172422170639,-0.431803107261658,0.894943118095398,-0.112351723015308,-0.431803107261658,0.894943118095398,-0.112351715564728,-0.431803107261658,0.894943118095398,-0.112351715564728,-0.117118440568447,0.0207000486552715,0.992902219295502,-0.117118440568447,0.0207000486552715,0.992902219295502,-0.117118440568447,0.0207000486552715,0.992902219295502,-0.0669968575239182,0.0104075511917472,0.997698903083801,-0.0669968575239182,0.0104075511917472,0.997698903083801,-0.0669968649744987,0.0104075539857149,0.997698903083801,-0.077170230448246,0.0141061171889305,0.996918141841888,-0.077170230448246,0.0141061162576079,0.996918141841888,-0.077170230448246,0.0141061162576079,0.996918141841888,-0.0769025459885597,-0.0100512048229575,0.99698805809021,-0.0769025459885597,-0.0100512066856027,0.99698805809021,-0.0769025459885597,-0.0100512048229575,0.99698805809021,-0.0765647664666176,0.00830882508307695,0.997030079364777,-0.0765647739171982,0.00830882787704468,0.997030079364777,-0.0765647739171982,0.0083088306710124,0.997030079364777,-0.0470800437033176,0.0158213097602129,0.998765826225281,-0.0470800437033176,0.0158213097602129,0.998765826225281,-0.0470800437033176,0.0158213078975677,0.998765826225281,-0.950160145759583,-0.0233511626720428,0.310886859893799,-0.950160145759583,-0.0233511738479137,0.310886830091476,-0.950160145759583,-0.0233511496335268,0.310886859893799,-0.960580587387085,-0.0929037109017372,0.262018740177155,-0.960580587387085,-0.0929037034511566,0.262018740177155,
- -0.960580587387085,-0.0929037034511566,0.262018740177155,-0.967923164367676,-0.032548226416111,0.249129295349121,-0.967923164367676,-0.0325482152402401,0.24912928044796,-0.967923164367676,-0.0325482189655304,0.24912928044796,-0.949660897254944,-0.02303172275424,0.312431991100311,-0.949660897254944,-0.0230317264795303,0.312431991100311,-0.949660897254944,-0.0230317115783691,0.312431991100311,-0.950020968914032,-0.00899244751781225,0.312056869268417,-0.950020909309387,-0.00899246241897345,0.312056839466095,-0.950020968914032,-0.00899244751781225,0.312056869268417,-0.844212353229523,0.461701065301895,0.272282689809799,-0.844212234020233,0.461701065301895,0.272282660007477,-0.844212293624878,0.461700975894928,0.272282630205154,-0.392625898122787,-0.0531361438333988,0.918161988258362,-0.392625898122787,-0.0531361438333988,0.918161988258362,-0.392625898122787,-0.0531361363828182,0.918161988258362,-0.455202579498291,-0.0733546167612076,0.887361109256744,-0.455202579498291,-0.0733546242117882,0.887361109256744,-0.455202579498291,-0.0733546316623688,0.887361109256744,-0.481620877981186,0.0418754555284977,0.875378668308258,-0.481620967388153,0.041875459253788,0.875378727912903,-0.481620967388153,0.0418754667043686,0.875378727912903,-0.369570136070251,0.106392569839954,0.92309182882309,-0.369570136070251,0.106392562389374,0.92309182882309,-0.369570106267929,0.106392592191696,0.92309182882309,-0.326153337955475,0.0212346538901329,0.945078372955322,-0.326153337955475,0.0212346538901329,0.945078372955322,-0.326153337955475,0.0212346650660038,0.945078372955322,0.393298357725143,-0.00981323048472404,0.919358551502228,0.393298357725143,-0.00981323327869177,0.919358551502228,0.393298357725143,-0.00981323327869177,0.919358551502228,-0.380877494812012,-0.164233893156052,0.90992283821106,-0.380877494812012,-0.164233893156052,0.90992283821106,-0.380877494812012,-0.164233893156052,0.90992283821106,-0.0207111500203609,0.0116904620081186,0.999717175960541,-0.0207111518830061,0.0116904629394412,0.999717175960541,-0.0207111500203609,0.0116904620081186,0.999717175960541,
- 0.12365511059761,0.0701395943760872,-0.989843368530273,0.123655118048191,0.0701395943760872,-0.989843368530273,0.123655132949352,0.0701396018266678,-0.989843368530273,-0.165982812643051,-0.0506994128227234,-0.984824478626251,-0.165982812643051,-0.0506994090974331,-0.984824478626251,-0.165982812643051,-0.0506994128227234,-0.984824478626251,0.246858671307564,0.233754530549049,-0.940435886383057,0.246858671307564,0.233754530549049,-0.940435886383057,0.246858671307564,0.233754530549049,-0.940435886383057,0.0516747757792473,-0.0497872829437256,-0.997422158718109,0.0516747683286667,-0.0497872792184353,-0.997422158718109,0.0516747757792473,-0.0497872829437256,-0.997422158718109,-0.232233673334122,0.0638498961925507,-0.970562160015106,-0.232233673334122,0.0638498961925507,-0.970562160015106,-0.232233673334122,0.0638498961925507,-0.970562160015106,0.177405372262001,-0.212905824184418,-0.960832178592682,0.177405372262001,-0.212905839085579,-0.960832178592682,0.177405372262001,-0.212905824184418,-0.960832178592682,-0.959012389183044,0.00586704397574067,-0.283303380012512,-0.959012389183044,0.00586703093722463,-0.283303380012512,-0.959012389183044,0.00586701883003116,-0.283303380012512,-0.935554206371307,-0.0571817196905613,-0.348523706197739,-0.935554206371307,-0.0571817196905613,-0.348523706197739,-0.935554206371307,-0.057181715965271,-0.348523706197739,-0.931242048740387,0.0295489057898521,-0.363201200962067,-0.931242048740387,0.0295489057898521,-0.363201200962067,-0.931242048740387,0.029548903927207,-0.363201200962067,-0.934482634067535,0.0354010388255119,-0.354244291782379,-0.934482634067535,0.035401027649641,-0.354244291782379,-0.934482634067535,0.0354010127484798,-0.354244291782379,-0.968709766864777,-0.0286915265023708,-0.246532425284386,-0.968709766864777,-0.028691528365016,-0.246532425284386,-0.968709766864777,-0.028691528365016,-0.246532425284386,-0.905782878398895,0.342779457569122,-0.249117776751518,-0.905782878398895,0.342779457569122,-0.249117776751518,-0.905782878398895,0.342779457569122,-0.249117761850357,-0.963600218296051,0.0182362366467714,-0.266724705696106,
- -0.963600218296051,0.0182362496852875,-0.266724705696106,-0.963600218296051,0.0182362366467714,-0.266724705696106,-0.980212152004242,-0.00576058495789766,-0.197866082191467,-0.980212152004242,-0.00576058635488153,-0.197866082191467,-0.980212152004242,-0.00576058495789766,-0.197866082191467,-0.981056988239288,0.00161815423052758,-0.193712681531906,-0.981056988239288,0.00161814806051552,-0.193712696433067,-0.981056988239288,0.00161814806051552,-0.193712696433067,-0.964406609535217,0.00719474395737052,-0.264325857162476,-0.964406609535217,0.00719473231583834,-0.264325857162476,-0.964406609535217,0.00719475420191884,-0.264325886964798,-0.975689172744751,-0.0332375578582287,-0.216623887419701,-0.975689172744751,-0.0332375653088093,-0.216623887419701,-0.975689172744751,-0.0332375727593899,-0.216623887419701,-0.774394392967224,0.298568278551102,-0.557826459407806,-0.774394392967224,0.298568278551102,-0.557826459407806,-0.774394392967224,0.298568278551102,-0.557826459407806,-0.04341696575284,0.0121515244245529,-0.998983144760132,-0.04341696575284,0.0121515262871981,-0.998983144760132,-0.04341696575284,0.0121515244245529,-0.998983144760132,-0.0108262449502945,0.00409635761752725,-0.999933004379272,-0.0108262458816171,0.00409635761752725,-0.999933004379272,-0.0108262449502945,0.00409635808318853,-0.999933004379272,-0.00751188211143017,-0.0154002457857132,-0.999853193759918,-0.00751188211143017,-0.0154002457857132,-0.999853193759918,-0.00751188211143017,-0.0154002457857132,-0.999853193759918,-0.0985468104481697,-0.0465702302753925,-0.994042098522186,-0.0985468029975891,-0.0465702302753925,-0.994042098522186,-0.0985468104481697,-0.0465702340006828,-0.994042098522186,-0.0522056147456169,0.00925389677286148,-0.998593509197235,-0.0522056110203266,0.00925389770418406,-0.998593509197235,-0.0522056147456169,0.00925389677286148,-0.998593509197235,0.496399104595184,0.859422624111176,-0.122395642101765,0.496399104595184,0.859422624111176,-0.122395649552345,0.496399104595184,0.859422624111176,-0.122395634651184,0.596672594547272,0.786897122859955,-0.157399818301201,
- 0.596672594547272,0.786897122859955,-0.157399818301201,0.596672594547272,0.786897122859955,-0.157399818301201,-0.365796774625778,-0.0098462887108326,-0.930642664432526,-0.365796774625778,-0.0098462775349617,-0.930642664432526,-0.365796774625778,-0.0098462775349617,-0.930642664432526,-0.309086352586746,-0.153564766049385,-0.938554048538208,-0.309086322784424,-0.153564766049385,-0.938554048538208,-0.309086352586746,-0.153564751148224,-0.938554048538208,-0.402028292417526,-0.22525979578495,-0.887485921382904,-0.402028292417526,-0.22525979578495,-0.887485921382904,-0.402028262615204,-0.225259810686111,-0.887485921382904,-0.33143413066864,0.0474299192428589,-0.942285537719727,-0.33143413066864,0.0474299266934395,-0.942285537719727,-0.33143413066864,0.0474299341440201,-0.942285537719727,-0.365536332130432,-0.0158130787312984,-0.930662751197815,-0.365536332130432,-0.015813060104847,-0.930662751197815,-0.365536332130432,-0.0158130787312984,-0.930662751197815,-0.382438212633133,-0.138405904173851,-0.913556277751923,-0.382438153028488,-0.138405904173851,-0.913556158542633,-0.382438153028488,-0.138405919075012,-0.913556158542633,-0.348287165164948,-0.163774445652962,-0.922970294952393,-0.348287165164948,-0.163774445652962,-0.922970294952393,-0.348287165164948,-0.163774445652962,-0.922970294952393,-0.340245455503464,0.0381859950721264,-0.939561009407043,-0.340245455503464,0.0381860062479973,-0.939561009407043,-0.340245455503464,0.038186002522707,-0.939561009407043,-0.596908450126648,0.0198038686066866,-0.802064895629883,-0.596908509731293,0.0198039021342993,-0.802064895629883,-0.596908509731293,0.0198038872331381,-0.802064895629883,0.290512770414352,-0.213099122047424,-0.932840347290039,0.290512770414352,-0.213099122047424,-0.932840347290039,0.290512770414352,-0.213099136948586,-0.932840347290039,0.148662477731705,-0.271995604038239,-0.950745940208435,0.148662507534027,-0.271995633840561,-0.950745940208435,0.148662477731705,-0.271995604038239,-0.950745940208435,-0.0344264321029186,0.00873795431107283,-0.999369025230408,-0.0344264321029186,0.00873795710504055,-0.999369025230408,
- -0.0344264283776283,0.00873795337975025,-0.999369025230408,-0.794449687004089,-0.0523503571748734,-0.605069518089294,-0.794449687004089,-0.0523503795266151,-0.605069577693939,-0.794449687004089,-0.0523503571748734,-0.605069518089294,-0.735871553421021,-0.0709417015314102,-0.673394739627838,-0.735871553421021,-0.0709417015314102,-0.673394739627838,-0.735871553421021,-0.0709417462348938,-0.673394739627838,-0.717618763446808,0.0274089444428682,-0.695896625518799,-0.717618763446808,0.0274089444428682,-0.695896625518799,-0.717618763446808,0.0274089314043522,-0.695896565914154,-0.795818030834198,0.0917838737368584,-0.598539412021637,-0.795818030834198,0.091783881187439,-0.598539412021637,-0.795818090438843,0.0917838737368584,-0.598539471626282,-0.836366713047028,0.0196452271193266,-0.547818183898926,-0.836366713047028,0.0196452271193266,-0.547818183898926,-0.836366713047028,0.0196452215313911,-0.547818243503571,-0.917531549930573,-0.267997741699219,-0.293790936470032,-0.917531549930573,-0.267997741699219,-0.293790936470032,-0.917531549930573,-0.267997741699219,-0.293790936470032,-0.885148286819458,-0.393284171819687,0.248677164316177,-0.885148286819458,-0.393284171819687,0.248677164316177,-0.885148167610168,-0.393284142017365,0.248677134513855,-0.999323606491089,0.00231588305905461,-0.0367011018097401,-0.999323606491089,0.00231588305905461,-0.0367011018097401,-0.999323606491089,0.00231588305905461,-0.0367011018097401,0.929552555084229,0.0697803124785423,0.362025946378708,0.929552555084229,0.0697803273797035,0.36202597618103,0.929552555084229,0.0697803050279617,0.362025946378708,0.995482385158539,-0.052667748183012,0.0790008082985878,0.995482385158539,-0.052667748183012,0.0790008008480072,0.995482385158539,-0.052667748183012,0.0790008082985878,0.858006775379181,0.224600091576576,0.461929827928543,0.858006775379181,0.224600076675415,0.461929827928543,0.858006775379181,0.224600076675415,0.461929827928543,-0.943525075912476,-0.0129217505455017,0.331048965454102,-0.943525075912476,-0.0129217570647597,0.331048965454102,-0.943525075912476,-0.0129217458888888,0.331048965454102,
- -0.95192414522171,-0.0133003033697605,0.30604499578476,-0.95192414522171,-0.0133002921938896,0.30604499578476,-0.95192414522171,-0.0133002949878573,0.30604499578476,-0.951747000217438,-0.017718430608511,0.306372195482254,-0.951747000217438,-0.017718430608511,0.306372195482254,-0.951747000217438,-0.017718443647027,0.306372195482254,-0.941119134426117,-0.0225034914910793,0.337325632572174,-0.941119074821472,-0.0225035157054663,0.337325543165207,-0.941119134426117,-0.0225035045295954,0.337325602769852,-0.942350566387177,-0.0218346826732159,0.333914160728455,-0.942350566387177,-0.0218346919864416,0.333914160728455,-0.942350566387177,-0.0218346826732159,0.333914160728455,-0.938169419765472,-0.0267793498933315,0.345139145851135,-0.938169419765472,-0.0267793331295252,0.345139116048813,-0.938169419765472,-0.0267793275415897,0.345139116048813,-0.899100482463837,0.410882830619812,-0.150975719094276,-0.899100482463837,0.410882771015167,-0.150975704193115,-0.899100482463837,0.410882771015167,-0.150975704193115,-0.252135366201401,0.663268685340881,-0.704629302024841,-0.252135396003723,0.663268685340881,-0.704629302024841,-0.252135366201401,0.663268685340881,-0.704629302024841,0.601994395256042,0.0314284600317478,0.797881603240967,0.601994395256042,0.0314284600317478,0.797881603240967,0.601994395256042,0.0314284525811672,0.797881603240967,-0.0796563625335693,-0.0491097681224346,0.995612025260925,-0.0796563625335693,-0.049109760671854,0.995612025260925,-0.0796563625335693,-0.0491097718477249,0.995612025260925,-0.0410831794142723,-0.0624680332839489,0.997201144695282,-0.0410831794142723,-0.0624680332839489,0.997201144695282,-0.0410831794142723,-0.0624680332839489,0.997201144695282,0.0186777766793966,0.004734150134027,0.999814331531525,0.0186777748167515,0.00473414873704314,0.999814331531525,0.0186777766793966,0.004734150134027,0.999814331531525,0.624723196029663,-0.00859665777534246,0.780798971652985,0.624723196029663,-0.00859667733311653,0.780798971652985,0.624723196029663,-0.00859667733311653,0.780798971652985,0.579484879970551,0.0886997207999229,0.810141861438751,
- 0.579484879970551,0.0886997207999229,0.810141861438751,0.579484879970551,0.0886997207999229,0.810141861438751,0.610319197177887,0.063819907605648,0.789580583572388,0.610319197177887,0.0638199225068092,0.789580583572388,0.610319197177887,0.0638199150562286,0.789580583572388,0.560617685317993,-0.00543365487828851,0.828056931495667,0.560617685317993,-0.00543362786993384,0.828056931495667,0.560617685317993,-0.00543366838246584,0.828056931495667,0.875606000423431,0.302224308252335,0.376795202493668,0.875606000423431,0.302224308252335,0.376795202493668,0.875606000423431,0.302224308252335,0.376795202493668,0.555115044116974,6.14872842561454e-005,-0.831773579120636,0.672370731830597,9.21209175430704e-006,-0.74021452665329,0.615411460399628,-6.63470427753055e-006,-0.788206040859222,0.615411520004272,-2.32253751164535e-006,-0.788205981254578,0.0678336694836617,0.00544851738959551,-0.997681736946106,0.147221744060516,-2.43615295403288e-006,-0.989103615283966,0.0812536403536797,-2.34395201914595e-006,-0.996693551540375,0.0812536478042603,-2.30191926675616e-006,-0.996693551540375,0.672370731830597,9.21209175430704e-006,-0.74021452665329,0.695587575435638,-2.43225667873048e-006,-0.718441367149353,0.917307078838348,-2.40626764025365e-006,-0.398180782794952,0.929503738880157,-2.47254070018244e-006,-0.368812710046768,-0.00497581670060754,0.0135891539976001,-0.999895334243774,0.0614489130675793,-2.25342591875233e-006,-0.998110234737396,0.0678336694836617,0.00544851738959551,-0.997681736946106,-0.00497443834319711,0.0271775182336569,-0.999618351459503,0.996867299079895,-0.0687904506921768,-0.0390308648347855,0.999996483325958,-0.00264382129535079,5.28362834302243e-005,0.999053537845612,0.0181303191930056,0.0395384766161442,0.998802900314331,0.000544816488400102,0.0489131584763527,0.99877792596817,-0.00602906988933682,-0.0490537285804749,-0.821603059768677,-0,0.570060014724731,-0.821600258350372,-0,0.570064067840576,-0.821597456932068,-0,0.570068061351776,-0.821600258350372,-0,0.570064067840576,0.528581082820892,-2.26273414227762e-006,-0.848882853984833,
- 0.555115044116974,6.14872842561454e-005,-0.831773579120636,0.147221744060516,-2.43615295403288e-006,-0.989103615283966,0.175415500998497,-2.48070750785701e-006,-0.98449444770813,-0.354085862636566,1.46625369623621e-008,0.935212910175323,-0.354096382856369,1.46624756780511e-008,0.935209035873413,-0.354106843471527,1.46624108410265e-008,0.935204982757568,-0.354096382856369,1.46624756780511e-008,0.935209035873413,-0.967031955718994,-1.02565172710456e-005,-0.254655450582504,-0.967031955718994,-1.05414173958707e-005,-0.254655450582504,-0.967031955718994,-1.08263329821057e-005,-0.254655450582504,-0.967031955718994,-1.08263475340209e-005,-0.254655450582504,-0.967031896114349,-1.06363931990927e-005,-0.254655420780182,-0.864383697509766,-0.502618432044983,0.0146890245378017,-0.864383578300476,-0.502618432044983,0.0146889854222536,-0.864383578300476,-0.502618432044983,0.0146889481693506,-0.864383578300476,-0.502618432044983,0.0146889854222536,-0.655196070671082,3.98864085582318e-006,-0.755459010601044,-0.655196070671082,3.7037370930193e-006,-0.755459010601044,-0.655196070671082,3.41883605869953e-006,-0.755459010601044,-0.655196011066437,3.4188381050626e-006,-0.755458950996399,-0.655196070671082,3.60877038474428e-006,-0.755458950996399,-0.615403473377228,6.01432293478865e-005,0.788212239742279,-0.672360122203827,1.75279692484764e-005,0.740224242210388,-0.555055975914001,-7.82554416218773e-005,0.831812977790833,-0.615403354167938,4.90179502321553e-007,0.788212478160858,0.695587575435638,-2.43225667873048e-006,-0.718441367149353,0.672370731830597,9.21209175430704e-006,-0.74021452665329,0.555115044116974,6.14872842561454e-005,-0.831773579120636,0.528581082820892,-2.26273414227762e-006,-0.848882853984833,0.616625905036926,-2.50952075475652e-006,-0.787256300449371,0.616625785827637,-2.29796023631934e-006,-0.787256479263306,0.616625547409058,-2.11963447327435e-006,-0.787256598472595,0.616625785827637,-2.29796023631934e-006,-0.787256479263306,-0.0866959691047668,-1.33341018226929e-007,0.996234834194183,-0.154604464769363,2.55904560617637e-005,0.987976551055908,
- -0.0738479420542717,-0.0027146867942065,0.997265815734863,-0.0866959691047668,1.17156545798025e-007,0.996234834194183,0.175415500998497,-2.48070750785701e-006,-0.98449444770813,0.147221744060516,-2.43615295403288e-006,-0.989103615283966,0.0678336694836617,0.00544851738959551,-0.997681736946106,0.0614489130675793,-2.25342591875233e-006,-0.998110234737396,0.0777372494339943,0.000791050086263567,-0.99697357416153,0.0787484869360924,2.23118295252789e-005,-0.996894538402557,0.0797595903277397,-0.00074642727850005,-0.996813952922821,0.0787484869360924,2.2311072825687e-005,-0.996894538402557,0.890818357467651,-0.0305216480046511,0.45333331823349,0.89081871509552,-0.0305127874016762,0.453333228826523,0.890817105770111,-0.0305522307753563,0.453333705663681,0.89081484079361,-0.0306134074926376,0.453334271907806,0.890816450119019,-0.0305719599127769,0.453333914279938,1,-4.75148863188224e-006,-0,1,-5.6980888984981e-006,-0,1,-6.64466915623052e-006,-0,1,-8.53780511533841e-006,-0,1,-5.69806070416234e-006,-0,1,-2.85826490653562e-006,-0,0.929503738880157,-2.47254070018244e-006,-0.368812710046768,0.974327504634857,7.29011981093208e-006,-0.225135445594788,0.954656720161438,-2.53462712862529e-006,-0.297708809375763,0.954656720161438,-2.48323794949101e-006,-0.297708809375763,-0.105652466416359,4.85111195303034e-006,-0.994403123855591,-0.105652466416359,2.54186920756183e-006,-0.994403123855591,-0.10565247386694,4.95259712351981e-007,-0.994403123855591,-0.10565247386694,1.68458063853905e-006,-0.994403123855591,-0.105652466416359,2.27924692808301e-006,-0.994403123855591,-0.10565247386694,3.13653140437964e-006,-0.994403123855591,-0.954656600952148,2.26986031748311e-007,0.297709226608276,-0.974112451076508,-7.03555861036875e-006,0.226064011454582,-0.929496884346008,-1.11851171880062e-007,0.368829965591431,-0.954656600952148,-5.90139421774438e-008,0.297709256410599,0.981159448623657,-1.52359052663087e-005,-0.193199470639229,0.974327504634857,7.29011981093208e-006,-0.225135445594788,0.929503738880157,-2.47254070018244e-006,-0.368812710046768,
- 0.917307078838348,-2.40626764025365e-006,-0.398180782794952,0.958755910396576,-0.000323127693263814,-0.284230500459671,0.958642065525055,-1.65626279340358e-005,-0.284614443778992,0.958527982234955,0.000290004623821005,-0.284998327493668,0.958642065525055,-1.65512919920729e-005,-0.284614443778992,0.478306442499161,1.13962573777826e-006,0.878193020820618,0.478306442499161,1.13962869363604e-006,0.878193020820618,0.478306412696838,1.32956222387293e-006,0.878193020820618,0.478306442499161,1.70943508237542e-006,0.878193020820618,0.478306442499161,1.42452893214795e-006,0.878193020820618,-0.616622149944305,-2.11427095564432e-006,0.78725928068161,-0.61659175157547,2.74413141596597e-005,0.787283062934875,-0.616561353206635,5.69571493542753e-005,0.787306904792786,-0.61659175157547,2.7426720407675e-005,0.787283062934875,-0.0891599208116531,1.6190497262869e-005,0.996017396450043,-0.0898904055356979,-0.000539408763870597,0.995951533317566,-0.0891599208116531,1.61964053404517e-005,0.996017396450043,-0.0884293466806412,0.000571798183955252,0.996082305908203,-0.950769126415253,0.000265076610958204,0.309899926185608,-0.950872004032135,1.10364062493318e-005,0.309584349393845,-0.950974643230438,-0.000243036527535878,0.309268742799759,-0.950872004032135,1.10330011011683e-005,0.309584349393845,-0.0675672739744186,0.00115904642734677,0.997714042663574,0.00497616268694401,-0.006765466183424,0.999964833259583,0.00497555732727051,-0.0169987753033638,0.999843239784241,-0.0738479420542717,-0.0027146867942065,0.997265815734863,-0.695574522018433,5.25251607541577e-007,0.718453943729401,-0.672360122203827,1.75279692484764e-005,0.740224242210388,-0.929496884346008,-1.11851171880062e-007,0.368829965591431,-0.917307794094086,4.17888585957371e-008,0.398178905248642,-0.999997854232788,3.56829295924399e-005,-0.00204825005494058,-0.955061554908752,-7.22723143553594e-008,0.296407610177994,-0.974112451076508,-7.03555861036875e-006,0.226064011454582,-0.0738479420542717,-0.0027146867942065,0.997265815734863,-0.154604464769363,2.55904560617637e-005,0.987976551055908,
- -0.182963505387306,3.35528566210996e-005,0.983119666576386,-0.0675672739744186,0.00115904642734677,0.997714042663574,-0.154604464769363,2.55904560617637e-005,0.987976551055908,-0.555055975914001,-7.82554416218773e-005,0.831812977790833,-0.528560161590576,-1.81342584255617e-005,0.848895907402039,-0.182963505387306,3.35528566210996e-005,0.983119666576386,-0.555055975914001,-7.82554416218773e-005,0.831812977790833,-0.672360122203827,1.75279692484764e-005,0.740224242210388,-0.695574522018433,5.25251607541577e-007,0.718453943729401,-0.528560161590576,-1.81342584255617e-005,0.848895907402039,-0.929496884346008,-1.11851171880062e-007,0.368829965591431,-0.974112451076508,-7.03555861036875e-006,0.226064011454582,-0.955061554908752,-7.22723143553594e-008,0.296407610177994,-0.917307794094086,4.17888585957371e-008,0.398178905248642,-0.0237867180258036,-2.63982169457222e-008,0.999717056751251,0.00497627630829811,0,0.999987721443176,0.00497627630829811,0,0.999987721443176,-0.0543724298477173,-2.57860186536618e-008,0.998520731925964,-0.221154406666756,-8.86832163260465e-010,0.975238800048828,-0.0237867180258036,-2.63982169457222e-008,0.999717056751251,-0.0543724298477173,-2.57860186536618e-008,0.998520731925964,-0.222478091716766,9.9145147647306e-010,0.974937677383423,-0.532790720462799,-9.86947745751365e-010,0.84624707698822,-0.221154406666756,-8.86832163260465e-010,0.975238800048828,-0.222478091716766,9.9145147647306e-010,0.974937677383423,-0.445200443267822,1.28541655097791e-009,0.89543092250824,-0.760197997093201,-1.44785028410865e-008,0.649691462516785,-0.532790720462799,-9.86947745751365e-010,0.84624707698822,-0.445200443267822,1.28541655097791e-009,0.89543092250824,-0.690351903438568,-1.54830370746595e-008,0.72347366809845,-0.919741988182068,8.71008243308324e-009,0.392523467540741,-0.760197997093201,-1.44785028410865e-008,0.649691462516785,-0.690351903438568,-1.54830370746595e-008,0.72347366809845,-0.874930560588837,1.03139798923735e-008,0.484248608350754,0.999988973140717,-6.05473560177927e-010,0.00470192730426788,0.999989032745361,-6.08214145714214e-010,0.00470238132402301,
- 0.999989032745361,-2.1544296902043e-010,0.00470283441245556,0.999989032745361,-1.99715535775802e-010,0.00470238132402301,-0.972271978855133,6.70434552318966e-009,0.233852937817574,-0.99467670917511,-1.33280391168e-008,0.103045150637627,-0.994677782058716,-1.3267902332359e-008,0.103034570813179,-0.985671758651733,5.02991603923419e-009,0.168674826622009,-0.874930560588837,1.03139798923735e-008,0.484248608350754,-0.972271978855133,6.70434552318966e-009,0.233852937817574,-0.985671758651733,5.02991603923419e-009,0.168674826622009,-0.919741988182068,8.71008243308324e-009,0.392523467540741,-0.864420413970947,0.502555131912231,-0.0146871246397495,-0.864420413970947,0.502555131912231,-0.014687136746943,-0.864420473575592,0.502555251121521,-0.0146871516481042,-0.864420473575592,0.502555251121521,-0.0146871395409107,0.683626532554626,-0.0714433640241623,-0.726326763629913,0.999997913837433,-0.00154094793833792,0.0013370254309848,0.999996483325958,-0.00264382129535079,5.28362834302243e-005,0.996867299079895,-0.0687904506921768,-0.0390308648347855,0.999997913837433,-0.00154094793833792,0.0013370254309848,0.696928441524506,0.193861484527588,0.690440833568573,0.999053537845612,0.0181303191930056,0.0395384766161442,0.999996483325958,-0.00264382129535079,5.28362834302243e-005,-0.657688081264496,0.0585484504699707,-0.751011550426483,-0.825936138629913,-0.112454265356064,-0.552434206008911,-0.998617112636566,-0.0181181505322456,-0.0493509732186794,-0.990539252758026,-0.131790429353714,-0.0382523350417614,0.887777149677277,-0.221299424767494,0.403581887483597,0.881240010261536,0.116090007126331,-0.458191096782684,0.99877792596817,-0.00602906988933682,-0.0490537285804749,0.998802900314331,0.000544816488400102,0.0489131584763527,0.881240010261536,0.116090007126331,-0.458191096782684,0.683626532554626,-0.0714433640241623,-0.726326763629913,0.996867299079895,-0.0687904506921768,-0.0390308648347855,0.99877792596817,-0.00602906988933682,-0.0490537285804749,0.672102689743042,6.14138407399878e-005,0.740457952022552,0.554812610149384,9.2016089183744e-006,0.831975400447845,
- 0.615205526351929,-6.6262946347706e-006,0.788366794586182,0.615205526351929,-2.32270667765988e-006,0.788366794586182,0.973916113376617,1.47058108268538e-005,0.226908907294273,0.928803980350494,-2.51236747317307e-006,0.370571374893188,0.953449606895447,-2.43662611865147e-006,0.30155274271965,0.953449606895447,-2.3929312646942e-006,0.30155274271965,0.554812610149384,9.2016089183744e-006,0.831975400447845,0.528050124645233,-2.43224712903611e-006,0.849213242530823,0.174875915050507,-2.35690231420449e-006,0.984590470790863,0.146223053336143,-2.41213683693786e-006,0.989251732826233,-0.999998033046722,1.82389212568523e-005,-0.00201483676210046,-0.980494379997253,4.18499694205821e-005,-0.19654768705368,-0.973915994167328,3.23550484608859e-005,-0.226908832788467,0.974327504634857,7.29011981093208e-006,-0.225135445594788,0.981159448623657,-1.52359052663087e-005,-0.193199470639229,-0.35349702835083,-1.42119436219446e-008,-0.935435652732849,-0.353499054908752,-1.42119329638035e-008,-0.935434877872467,-0.353501111268997,-1.42119214174841e-008,-0.935434103012085,-0.353499054908752,-1.42119329638035e-008,-0.935434877872467,0.69513988494873,-2.26272186409915e-006,0.718874454498291,0.672102689743042,6.14138407399878e-005,0.740457952022552,0.928803980350494,-2.51236747317307e-006,0.370571374893188,0.916809916496277,-2.52002791967243e-006,0.3993239402771,-0.821243047714233,0,-0.570578515529633,-0.82123863697052,0,-0.570585072040558,-0.821233987808228,0,-0.570591568946838,-0.82123863697052,0,-0.570585072040558,0.481857031583786,-1.0256467248837e-005,-0.876249849796295,0.481857031583786,-1.1111162166344e-005,-0.876249849796295,0.481857001781464,-1.19658780022291e-005,-0.876249849796295,0.481857031583786,-1.19658989206073e-005,-0.876249969005585,0.481857001781464,-1.13960741146002e-005,-0.87624990940094,0.998619377613068,-0.0477737374603748,-0.0218406394124031,0.999046683311462,-0.0419130921363831,-0.0122101381421089,0.999346792697906,-0.0360471084713936,-0.00257808272726834,0.999046683311462,-0.0419130884110928,-0.0122101390734315,0.891940951347351,3.41893587574305e-006,-0.452152132987976,
- 0.891940951347351,3.41893587574305e-006,-0.452152132987976,0.891940891742706,3.41893473887467e-006,-0.452152073383331,0.891940891742706,3.41893382937997e-006,-0.452152073383331,0.891940951347351,3.41893519362202e-006,-0.452152013778687,-0.615192115306854,5.992751539452e-005,-0.788377225399017,-0.554811596870422,1.73156640812522e-005,-0.831976056098938,-0.672143936157227,-7.87257813499309e-005,-0.740420520305634,-0.615192294120789,2.05664036911912e-007,-0.788377106189728,0.528050124645233,-2.43224712903611e-006,0.849213242530823,0.554812610149384,9.2016089183744e-006,0.831975400447845,0.672102689743042,6.14138407399878e-005,0.740457952022552,0.69513988494873,-2.26272186409915e-006,0.718874454498291,0.613986968994141,3.38779022968083e-006,0.789316177368164,0.613981425762177,-1.99009014067997e-006,0.789320588111877,0.613975882530212,-7.39289134799037e-006,0.789324939250946,0.613981425762177,-2.03369518203544e-006,0.789320468902588,-0.953449726104736,-4.10368500070035e-007,-0.301552385091782,-0.928808808326721,2.54136575676966e-005,-0.370559275150299,-0.973637402057648,1.22186829685234e-005,-0.228101208806038,-0.953449606895447,-1.35161968728426e-007,-0.301552385091782,0.916809916496277,-2.52002791967243e-006,0.3993239402771,0.928803980350494,-2.51236747317307e-006,0.370571374893188,0.973916113376617,1.47058108268538e-005,0.226908907294273,0.980494379997253,3.11023504764307e-005,0.19654768705368,0.954654395580292,2.04191746888682e-006,0.29771625995636,0.95469081401825,9.56801886786707e-005,0.297599524259567,0.954654395580292,2.06171171157621e-006,0.297716289758682,0.954617977142334,-9.15624914341606e-005,0.297833025455475,-0.656074047088623,-0.0305216871201992,0.754079222679138,-0.656074047088623,-0.0305128190666437,0.754079461097717,-0.656074047088623,-0.030552089214325,0.754077851772308,-0.656074047088623,-0.0306129045784473,0.754075407981873,-0.656074047088623,-0.0305717289447784,0.754077196121216,-0.109687894582748,-5.51119683223078e-006,0.993966042995453,-0.109687894582748,-6.26787959845387e-006,0.993966102600098,
- -0.109687887132168,-7.02459465173888e-006,0.993966042995453,-0.109687887132168,-8.53799792821519e-006,0.993966102600098,-0.109687887132168,-6.26790233582142e-006,0.993966042995453,-0.109687894582748,-3.99780401494354e-006,0.993966102600098,0.146223053336143,-2.41213683693786e-006,0.989251732826233,0.0691404044628143,-2.09842460208165e-006,0.997606933116913,0.0786436572670937,-2.43539307120955e-006,0.996902883052826,0.0786436647176743,-2.38601569435559e-006,0.996902883052826,0.0141362212598324,-3.61647221325256e-006,0.999900102615356,0.0141362203285098,-3.2782377274998e-006,0.999900102615356,0.0141362193971872,-2.67190239355841e-006,0.999900043010712,0.0691404044628143,-2.09842460208165e-006,0.997606933116913,0.0642597153782845,-2.48431047111808e-006,0.997933208942413,0.85520613193512,0.518150329589844,0.0119465291500092,0.855194807052612,0.518189013004303,0.0110514583066106,0.855182647705078,0.518227219581604,0.0101563762873411,0.855194807052612,0.518189013004303,0.0110514583066106,1,4.8510160013393e-006,-0,1,1.66485301633656e-006,-0,1,-9.96047333501338e-007,-0,1,4.27713587214384e-007,-0,1,1.13959811187669e-006,-0,1,2.37673475567135e-006,-0,-0.0841020047664642,-2.42189575061502e-008,-0.996457159519196,-0.0751466229557991,0.00216526491567492,-0.997170090675354,-0.15377776324749,-4.14173570106868e-007,-0.988105475902557,-0.0841019973158836,-3.49363858731522e-007,-0.996457159519196,0.0642597153782845,-2.48431047111808e-006,0.997933208942413,0.0691404044628143,-2.09842460208165e-006,0.997606933116913,0.146223053336143,-2.41213683693786e-006,0.989251732826233,0.174875915050507,-2.35690231420449e-006,0.984590470790863,0.0666180029511452,-3.33188945660368e-005,0.997778654098511,0.065367303788662,-0.000983531470410526,0.997860789299011,0.0666180029511452,-3.33189236698672e-005,0.997778654098511,0.0678685307502747,0.000916891265660524,0.997693955898285,-0.968046307563782,1.13965586479026e-006,0.250771552324295,-0.968046307563782,1.13965882064804e-006,0.250771552324295,-0.968046307563782,1.32959735310578e-006,0.250771552324295,
- -0.968046307563782,1.70948044342367e-006,0.250771522521973,-0.968046307563782,1.42456667617807e-006,0.250771522521973,0.99957150220871,0.00962768495082855,0.0276430081576109,0.999393105506897,-0.00609715795144439,0.0342953130602837,0.999386429786682,0.00721489870920777,-0.0342752672731876,0.999536216259003,-0.0128145171329379,-0.0276230927556753,0.999999821186066,-0.000601176463533193,8.24742619442986e-006,-0.613974034786224,4.88431794565258e-007,-0.789326190948486,-0.614001750946045,2.72631496045506e-005,-0.789304673671722,-0.614029407501221,5.41126100870315e-005,-0.789283156394959,-0.614001750946045,2.72818342637038e-005,-0.789304673671722,-0.952338039875031,-3.81732024834491e-006,-0.305044651031494,-0.952369093894959,7.4089810368605e-005,-0.304947704076767,-0.952338039875031,-3.81415156880394e-006,-0.305044651031494,-0.952306985855103,-8.17293839645572e-005,-0.305141597986221,-0.0949821472167969,-0.000427420833148062,-0.995478868484497,-0.0955288633704185,-1.15989851110498e-005,-0.995426654815674,-0.0960755497217178,0.000404213787987828,-0.995373964309692,-0.0955288782715797,-1.16064793473925e-005,-0.995426654815674,-0.974112451076508,-7.03555861036875e-006,0.226064011454582,-0.973637402057648,1.22186829685234e-005,-0.228101208806038,-0.980227470397949,-2.6625082227838e-006,-0.197874039411545,-0.999997854232788,3.56829295924399e-005,-0.00204825005494058,-0.528056502342224,1.5636140915376e-007,-0.849209249019623,-0.554811596870422,1.73156640812522e-005,-0.831976056098938,-0.15377776324749,-4.14173570106868e-007,-0.988105475902557,-0.182595565915108,-2.17422439163784e-007,-0.983188211917877,-0.0140609266236424,0.00486447848379612,-0.999889314174652,-0.0835571736097336,-2.87640631313479e-007,-0.996502995491028,-0.0751466229557991,0.00216526491567492,-0.997170090675354,-0.0144224241375923,0.00729584647342563,-0.999869465827942,-0.0144231598824263,0.00378603185527027,-0.999888837337494,-0.0140609266236424,0.00486447848379612,-0.999889314174652,-0.0751466229557991,0.00216526491567492,-0.997170090675354,-0.973637402057648,1.22186829685234e-005,-0.228101208806038,
- -0.928808808326721,2.54136575676966e-005,-0.370559275150299,-0.916816473007202,3.33676071022637e-005,-0.399308890104294,-0.980227470397949,-2.6625082227838e-006,-0.197874039411545,-0.928808808326721,2.54136575676966e-005,-0.370559275150299,-0.672143936157227,-7.87257813499309e-005,-0.740420520305634,-0.695146918296814,-1.84317941602785e-005,-0.718867778778076,-0.916816473007202,3.33676071022637e-005,-0.399308890104294,-0.672143936157227,-7.87257813499309e-005,-0.740420520305634,-0.554811596870422,1.73156640812522e-005,-0.831976056098938,-0.528056502342224,1.5636140915376e-007,-0.849209249019623,-0.695146918296814,-1.84317941602785e-005,-0.718867778778076,-0.15377776324749,-4.14173570106868e-007,-0.988105475902557,-0.0751466229557991,0.00216526491567492,-0.997170090675354,-0.0835571736097336,-2.87640631313479e-007,-0.996502995491028,-0.182595565915108,-2.17422439163784e-007,-0.983188211917877,-0.874088227748871,0,-0.485767215490341,-0.953449606895447,1.2807281457583e-008,-0.301552474498749,-0.953449666500092,1.38144997663403e-008,-0.301552206277847,-0.918602645397186,0,-0.395182341337204,-0.691555321216583,0,-0.722323536872864,-0.874088227748871,0,-0.485767215490341,-0.918602645397186,0,-0.395182341337204,-0.760529696941376,0,-0.649303138256073,-0.445662438869476,0,-0.895201146602631,-0.691555321216583,0,-0.722323536872864,-0.760529696941376,0,-0.649303138256073,-0.534199059009552,0,-0.845358729362488,-0.173589989542961,0,-0.984817981719971,-0.445662438869476,0,-0.895201146602631,-0.534199059009552,0,-0.845358729362488,-0.265964716672897,0,-0.963982701301575,-0.00742752756923437,0,-0.999972462654114,-0.014811092056334,0,-0.999890327453613,-0.0148546444252133,0,-0.999889671802521,-0.00744930515065789,0,-0.999972283840179,-0.0542887076735497,0,-0.998525261878967,-0.00742752756923437,0,-0.999972462654114,-0.00744930515065789,0,-0.999972283840179,-0.0262326095253229,0,-0.999655842781067,-0.265964716672897,0,-0.963982701301575,-0.0542887076735497,0,-0.998525261878967,-0.0262326095253229,0,-0.999655842781067,-0.173589989542961,0,-0.984817981719971,
- 0.855096518993378,-0.518364191055298,-0.0104172909632325,0.855100214481354,-0.518344938755035,-0.0110519798472524,0.855103671550751,-0.518325567245483,-0.0116866650059819,0.855100214481354,-0.518344938755035,-0.0110519798472524,0.99950647354126,-0.0303644277155399,-0.0080521572381258,0.999500632286072,-0.0306938458234072,-0.00751198641955853,0.99950647354126,-0.0303644314408302,-0.00805215910077095,0.999511897563934,-0.0300349984318018,-0.0085923271253705,0.717689335346222,0.0434908308088779,0.695004045963287,0.892507374286652,-0.036491397768259,0.449554026126862,0.999393105506897,-0.00609715795144439,0.0342953130602837,0.99957150220871,0.00962768495082855,0.0276430081576109,0.892507374286652,-0.036491397768259,0.449554026126862,0.900272190570831,0.0915847197175026,-0.425584316253662,0.999386429786682,0.00721489870920777,-0.0342752672731876,0.999393105506897,-0.00609715795144439,0.0342953130602837,0.900272190570831,0.0915847197175026,-0.425584316253662,0.718010008335114,-0.0456299148499966,-0.694535434246063,0.999536216259003,-0.0128145171329379,-0.0276230927556753,0.999386429786682,0.00721489870920777,-0.0342752672731876,0.718010008335114,-0.0456299148499966,-0.694535434246063,0.999998211860657,-0.00145425833761692,0.00114915415178984,0.999999821186066,-0.000601176463533193,8.24742619442986e-006,0.999536216259003,-0.0128145171329379,-0.0276230927556753,0.999998211860657,-0.00145425833761692,0.00114915415178984,0.717689335346222,0.0434908308088779,0.695004045963287,0.99957150220871,0.00962768495082855,0.0276430081576109,0.999999821186066,-0.000601176463533193,8.24742619442986e-006
- }
- TangentsW: *1676 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,-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,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,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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *5028 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.554910242557526,0.0259720198810101,-0.831504642963409,0.668769121170044,0.102479085326195,-0.736373484134674,0.615411460399628,-4.77838239021366e-006,-0.788206040859222,0.609512567520142,0.134725287556648,-0.78124475479126,0.067621648311615,0.0791878178715706,-0.994563460350037,0.146785542368889,-0.0769211873412132,-0.98617297410965,0.0812535434961319,-0.0015555057907477,-0.996692299842834,0.0812532529234886,-0.00311100785620511,-0.996688723564148,-0.672370851039886,0.000185742974281311,0.740214407444,-0.695587575435638,-9.87881094260956e-007,0.718441307544708,-0.917306959629059,0,0.39818075299263,-0.929503738880157,-9.95110553958511e-007,0.368812710046768,
- -0.00487515283748508,0.200572028756142,-0.979666829109192,0.0614489130675793,0,-0.998110234737396,0.067621648311615,0.0791878178715706,-0.994563460350037,-0.00457589328289032,0.392992407083511,-0.91953033208847,0.456708341836929,-0.889551818370819,-0.0107258474454284,0.338040351867676,-0.940944135189056,0.0187810007482767,0.269944965839386,-0.962693214416504,0.0187531001865864,0.982834756374359,0.176826670765877,0.0526128485798836,-0.183272987604141,-0.982931613922119,-0.0160141289234161,-0.821602761745453,-0,0.570060610771179,-0.821600079536438,0,0.57006448507309,-0.821597337722778,0,0.570068299770355,-0.821600079536438,0,0.57006448507309,0.528005242347717,0.0466663837432861,-0.847957968711853,0.554910242557526,0.0259720198810101,-0.831504642963409,0.146785542368889,-0.0769211873412132,-0.98617297410965,0.174497291445732,-0.102184616029263,-0.979341149330139,0.35408616065979,-1.46625369623621e-008,-0.935212910175323,0.354096382856369,-1.46624739016943e-008,-0.935208916664124,0.35410663485527,-1.46624126173833e-008,-0.935205042362213,0.354096382856369,-1.46624739016943e-008,-0.935208916664124,1.32199375002529e-007,-1,-5.02015666370426e-007,1.32199375002529e-007,-1,-5.02015666370426e-007,-3.46097806414036e-007,-1,-6.2796902966511e-007,8.24394987830601e-007,1,7.53922222429537e-007,-1.86665374712902e-007,-1,-5.85984537337936e-007,-0.00494098430499434,-0.0277292020618916,-0.999603271484375,-0.00495515810325742,-0.0277374424040318,-0.999602973461151,-0.00496933190152049,-0.0277456808835268,-0.999602675437927,-0.00495515810325742,-0.0277374424040318,-0.999602973461151,-1.27491477996955e-006,-1,1.10571090772282e-006,-1.27491477996955e-006,-1,1.10571090772282e-006,0.032721608877182,-0.998752117156982,0.0377313531935215,0.065362773835659,-0.995011270046234,0.0753675475716591,0.0218109507113695,-0.999445736408234,0.0251511130481958,0.615403354167938,-5.04580020788126e-006,-0.788212358951569,0.670058906078339,0.0815839692950249,-0.737811028957367,0.554830551147461,0.0270682238042355,-0.831522881984711,0.611193656921387,0.112672045826912,-0.783420205116272,
- 0.695587575435638,0,-0.718441307544708,0.668769121170044,0.102479085326195,-0.736373484134674,0.554910242557526,0.0259720198810101,-0.831504642963409,0.528005242347717,0.0466663837432861,-0.847957968711853,0.616623044013977,2.80404947261559e-007,-0.787258565425873,0.616622924804688,4.41146994489827e-007,-0.787258625030518,0.616622805595398,5.68654172639071e-007,-0.787258863449097,0.616622924804688,4.41146994489827e-007,-0.787258625030518,0.0866958871483803,-0.00137630943208933,-0.996233880519867,0.154374286532402,-0.054513119161129,-0.986507475376129,0.0738481879234314,-0.000917615718208253,-0.997269034385681,0.0866956487298012,-0.00275261653587222,-0.996231138706207,0.174497291445732,-0.102184616029263,-0.979341149330139,0.146785542368889,-0.0769211873412132,-0.98617297410965,0.067621648311615,0.0791878178715706,-0.994563460350037,0.0614489130675793,0,-0.998110234737396,0.0818432793021202,-0.00233096093870699,-0.996642589569092,0.0827129259705544,-0.0029923995025456,-0.996568918228149,0.0835824683308601,-0.00365383527241647,-0.996494174003601,0.0827129259705544,-0.00299240043386817,-0.996568918228149,0.0119503354653716,0.999651193618774,-0.0235557146370411,-0.0119493892416358,-0.999651074409485,0.0235561933368444,0.011947413906455,0.99965113401413,-0.0235572010278702,0.0119415642693639,0.999651193618774,-0.0235601719468832,0.0119464229792356,0.999651193618774,-0.0235577020794153,0.252719700336456,0.967539608478546,0,0.707106828689575,0.707106828689575,-0,0.252719432115555,0.967539668083191,0,0,1,0,-5.02518196299206e-006,1,0,7.91172851677402e-007,1,-0,0.929459035396576,0.00980576407164335,-0.368794977664948,0.974324226379395,0.00263641937635839,-0.225134089589119,0.954598963260651,0.0109995985403657,-0.297690808773041,0.954578220844269,0.0128330560401082,-0.297684341669083,-0,-1,0,-9.74768497030709e-008,-1,-9.17454940463358e-007,-0,-1,0,8.61689031239621e-008,-1,8.11024278846162e-007,-5.50937272691954e-007,1,-5.18543765792856e-006,8.61683417952008e-008,-1,8.11024392533e-007,0.954616904258728,0.00912125874310732,-0.297696828842163,
- 0.974066734313965,0.00974841974675655,-0.226050838828087,0.929466307163239,0.00810671783983707,-0.368817836046219,0.954602539539337,0.0106417099013925,-0.29769241809845,0.981147944927216,0.00490467250347137,-0.193195670843124,0.974324226379395,0.00263641937635839,-0.225134089589119,0.929459035396576,0.00980576407164335,-0.368794977664948,0.917307078838348,-0,-0.398180782794952,0.954525053501129,0.0106588546186686,-0.297940105199814,0.95460045337677,0.0104699973016977,-0.297705113887787,0.954675793647766,0.0102811437100172,-0.297470062971115,0.95460057258606,0.0104700094088912,-0.297705113887787,0.10581561177969,0.975222587585449,0.194278031587601,0.206385314464569,0.902118563652039,0.378929078578949,0.0703435614705086,0.989127039909363,0.129149660468102,1.90942228073254e-006,1,-1.03996387679217e-006,2.09796371564153e-006,1,-6.93792856054642e-007,0.616621494293213,1.51770291267894e-006,-0.787259757518768,0.61661958694458,-3.3602918847464e-007,-0.787261247634888,0.616617798805237,-2.15000818570843e-006,-0.787262797355652,0.61661958694458,-3.21431627980928e-007,-0.787261247634888,0.0854286924004555,-0.00285320891998708,-0.996340215206146,0.0862824395298958,-0.00220420653931797,-0.996268272399902,0.0854287073016167,-0.00285321497358382,-0.996340215206146,0.084574855864048,-0.003502216655761,-0.996410965919495,0.954675197601318,0.00969186052680016,-0.297491788864136,0.954615712165833,0.0095351655036211,-0.297687649726868,0.954556167125702,0.00937850400805473,-0.297883570194244,0.954615712165833,0.0095351692289114,-0.297687649726868,-0.0649213343858719,0.27710622549057,0.95864349603653,0.00497526489198208,-0.0201623160392046,0.999784350395203,-0.00472301989793777,0.314952880144119,-0.949095547199249,-0.0738331153988838,-0.0202141497284174,0.997065663337708,-0.675454199314117,-0.238766476511955,0.697676301002502,-0.667345762252808,-0.120823107659817,0.734881937503815,-0.929497003555298,0,0.368829935789108,-0.910645484924316,-0.120304055511951,0.395286947488785,0.999983549118042,0.00535916769877076,0.00205380213446915,0.95504504442215,0.00587828643620014,-0.296402454376221,
- 0.974066734313965,0.00974841974675655,-0.226050838828087,0.0738481879234314,-0.000917615718208253,-0.997269034385681,0.154374286532402,-0.054513119161129,-0.986507475376129,0.182483449578285,-0.0723525807261467,-0.98054313659668,0.0675673186779022,0,-0.997714698314667,0.154374286532402,-0.054513119161129,-0.986507475376129,0.554830551147461,0.0270682238042355,-0.831522881984711,0.528263568878174,0.0334841683506966,-0.848419904708862,0.182483449578285,-0.0723525807261467,-0.98054313659668,0.554830551147461,0.0270682238042355,-0.831522881984711,0.670058906078339,0.0815839692950249,-0.737811028957367,0.695574522018433,1.3206149560574e-006,-0.718453943729401,0.528263568878174,0.0334841683506966,-0.848419904708862,0.929466307163239,0.00810671783983707,-0.368817836046219,0.974066734313965,0.00974841974675655,-0.226050838828087,0.95504504442215,0.00587828643620014,-0.296402454376221,0.917307794094086,-7.41413750802167e-005,-0.39817887544632,-0.327841550111771,-2.49463152357521e-008,0.944732666015625,-0.577949285507202,0,0.816072702407837,-0.327841550111771,0,0.944732666015625,-0.0517991967499256,-2.57895536037722e-008,0.998657524585724,0.221154376864433,8.86832163260465e-010,-0.975238800048828,0.0812536403536797,2.63183785875754e-008,-0.996693551540375,0.083975113928318,2.57330068365036e-008,-0.9964679479599,0.222478032112122,-9.9145147647306e-010,-0.974937677383423,0.532790720462799,9.86947745751365e-010,-0.84624707698822,0.221154376864433,8.86832163260465e-010,-0.975238800048828,0.222478032112122,-9.9145147647306e-010,-0.974937677383423,0.445200383663177,-1.28541666200022e-009,-0.895431041717529,0.61421674489975,1.7586081924037e-008,-0.789137363433838,0.532790720462799,9.86947745751365e-010,-0.84624707698822,0.445200383663177,-1.28541666200022e-009,-0.895431041717529,0.614201009273529,1.68885652129802e-008,-0.789149761199951,-0.821597337722778,1.26497958774507e-008,0.570068299770355,-0.821600079536438,-1.27040005182266e-008,0.57006448507309,-0.821602761745453,-1.21998491309228e-008,0.570060610771179,-0.821600079536438,1.21417667031665e-008,0.57006448507309,
- -0.999988973140717,6.05473560177927e-010,-0.00470192730426788,-0.999989032745361,6.08209760333267e-010,-0.00470234686508775,-0.999989032745361,2.15439860395961e-010,-0.00470276642590761,-0.999989032745361,1.9971409248587e-010,-0.00470234686508775,0.972191095352173,-6.71398092677578e-009,-0.23418901860714,0.994622230529785,1.33959705550524e-008,-0.103570349514484,0.994677782058716,1.3267902332359e-008,-0.103034570813179,0.985612154006958,-5.04028552228419e-009,-0.169022545218468,0.954660832881927,-6.34059826865041e-009,-0.297695577144623,0.972191095352173,-6.71398092677578e-009,-0.23418901860714,0.985612154006958,-5.04028552228419e-009,-0.169022545218468,0.954658806324005,-6.60600019131152e-009,-0.297702133655548,-0.00497070094570518,-0.0277275629341602,-0.999603152275085,-0.0049558337777853,-0.027736209332943,-0.999603033065796,-0.00494096707552671,-0.0277448557317257,-0.999602854251862,-0.00495583331212401,-0.027736209332943,-0.999603033065796,-0.655418276786804,-0.0672197118401527,0.75226879119873,-0.546787142753601,-0.631787121295929,0.549425899982452,0.338040351867676,-0.940944135189056,0.0187810007482767,0.456708341836929,-0.889551818370819,-0.0107258474454284,-0.546787142753601,-0.631787121295929,0.549425899982452,0.275168478488922,-0.743012607097626,0.610093832015991,0.269944965839386,-0.962693214416504,0.0187531001865864,0.338040351867676,-0.940944135189056,0.0187810007482767,0.275168478488922,-0.743012607097626,0.610093832015991,0.747404158115387,0.283411413431168,0.600887000560761,0.982834756374359,0.176826670765877,0.0526128485798836,0.269944965839386,-0.962693214416504,0.0187531001865864,0.747404158115387,0.283411413431168,0.600887000560761,-0.458121776580811,0.633195579051971,0.623849153518677,-0.183272987604141,-0.982931613922119,-0.0160141289234161,0.982834756374359,0.176826670765877,0.0526128485798836,-0.458121776580811,0.633195579051971,0.623849153518677,-0.655418276786804,-0.0672197118401527,0.75226879119873,0.456708341836929,-0.889551818370819,-0.0107258474454284,-0.183272987604141,-0.982931613922119,-0.0160141289234161,
- 0.671891510486603,0.0259726922959089,0.740194082260132,0.551960825920105,0.102479070425034,0.827548921108246,0.615205526351929,-4.76998638987425e-006,0.788366794586182,0.60988450050354,0.134725406765938,0.780954539775848,0.973915457725525,-0.00106407806742936,0.22690849006176,0.926036715507507,-0.0771350115537643,0.369467318058014,0.953448355197906,-0.00161700614262372,0.301552355289459,0.953444540500641,-0.00323400762863457,0.301551133394241,-0.554812490940094,0.000185569690074772,-0.831975400447845,-0.528050124645233,-9.87875750979583e-007,-0.849213182926178,-0.174875915050507,0,-0.984590470790863,-0.146223053336143,-9.91899355540227e-007,-0.989251673221588,-0.999958395957947,0.00889077596366405,-0.00200715125538409,-0.980494379997253,6.05800523771904e-005,-0.19654768705368,-0.973825395107269,0.0136923603713512,-0.226884618401527,0.974324226379395,0.00263641937635839,-0.225134089589119,0.981147944927216,0.00490467250347137,-0.193195670843124,-0.3534976541996,-1.42119400692309e-008,-0.93543541431427,-0.353499501943588,-1.42119302992683e-008,-0.935434699058533,-0.353501379489899,-1.42119214174841e-008,-0.935434103012085,-0.353499501943588,-1.42119302992683e-008,-0.935434699058533,0.694382548332214,0.0466662459075451,0.718091249465942,0.671891510486603,0.0259726922959089,0.740194082260132,0.926036715507507,-0.0771350115537643,0.369467318058014,0.911992132663727,-0.10238266736269,0.39722552895546,0.821242868900299,-0,0.570578753948212,0.82123851776123,-0,0.570585072040558,0.821234107017517,-0,0.570591390132904,0.82123851776123,-0,0.570585072040558,-5.05428268127162e-008,-1,-2.77939182780074e-008,-5.05428268127162e-008,-1,-2.77939182780074e-008,-5.05428197072888e-008,-1,-2.77939129489369e-008,5.05428197072888e-008,1,2.779391117258e-008,-5.05428197072888e-008,-1,-2.77939129489369e-008,-0.999325454235077,0.0365660302340984,0.00342987012118101,-0.999440908432007,0.0333895459771156,-0.00178332079667598,-0.999519050121307,0.0302118100225925,-0.00699644349515438,-0.999440908432007,0.0333895459771156,-0.00178331986535341,1.93312484952912e-006,-1,3.81339168598061e-006,
- 1.93312484952912e-006,-1,3.81339168598061e-006,0.183460980653763,-0.978618264198303,-0.092997319996357,0.359074503183365,-0.915387153625488,-0.18202169239521,0.122008971869946,-0.990600347518921,-0.0618452504277229,0.615192294120789,-5.08492303197272e-006,0.788377225399017,0.553029596805573,0.0815832167863846,0.829157650470734,0.671917259693146,0.0270661897957325,0.740131437778473,0.611567080020905,0.112670429050922,0.783129036426544,0.528050124645233,0,0.849213242530823,0.551960825920105,0.102479070425034,0.827548921108246,0.671891510486603,0.0259726922959089,0.740194082260132,0.694382548332214,0.0466662459075451,0.718091249465942,0.61398983001709,6.17777914158069e-006,0.789313912391663,0.613984227180481,7.49025048207841e-007,0.789318323135376,0.613978624343872,-4.70464965474093e-006,0.789322674274445,0.613984227180481,7.05419552105013e-007,0.789318263530731,0.953448832035065,-0.0013408528175205,0.30155211687088,0.927415490150452,-0.0547563843429089,0.3700031042099,0.973637104034424,-0.000876108941156417,0.228100880980492,0.953446209430695,-0.00268170307390392,0.301551282405853,0.911992132663727,-0.10238266736269,0.39722552895546,0.926036715507507,-0.0771350115537643,0.369467318058014,0.973915457725525,-0.00106407806742936,0.22690849006176,0.980494379997253,3.37367382599041e-005,0.19654768705368,0.953443884849548,-0.00307880248874426,0.301555126905441,0.953421652317047,-0.00313454167917371,0.30162450671196,0.953443884849548,-0.00307878293097019,0.301555126905441,0.953465938568115,-0.00302302837371826,0.301485687494278,0.0199511162936687,0.999650835990906,0.0173262227326632,-0.0199476443231106,-0.999650835990906,-0.0173302236944437,0.0199595615267754,0.999650835990906,0.0173165015876293,0.0199764482676983,0.999650835990906,0.0172970555722713,0.0199655219912529,0.999650835990906,0.0173096433281899,0.0276217125356197,0.967773914337158,-0.250301331281662,0.0773260220885277,0.709243357181549,-0.700710117816925,0.027621740475297,0.967773854732513,-0.250301599502563,1.62029785144568e-008,1,1.78805947825822e-009,-4.87644484792327e-008,1,5.90507738706947e-007,
- -7.05814429124985e-008,1,7.88208240010135e-007,0.146216556429863,0.00941689591854811,0.989207863807678,0.068629153072834,-0.121115989983082,0.990263104438782,0.0786392614245415,0.0105689968913794,0.996847093105316,0.0786376744508743,0.0123307025060058,0.996827006340027,0.014136222191155,-8.49416551318427e-007,0.999900102615356,0.0141362212598324,9.67888453828891e-008,0.999900102615356,0.0138952312991023,-0.175235420465469,0.984428524971008,0.068629153072834,-0.121115989983082,0.990263104438782,0.0637330934405327,-0.127326533198357,0.98981112241745,0.0238220971077681,-0.0364178605377674,0.999052703380585,0.0141332652419806,-0.0422925837337971,0.999005377292633,0.00444261962547898,-0.0481618791818619,0.998829662799835,0.0141332652419806,-0.0422925837337971,0.999005377292633,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,-1,0,0.0840983092784882,0.00936959125101566,0.99641340970993,0.0748905763030052,-0.0822962149977684,0.993790149688721,0.153772443532944,0.0083242217078805,0.988071203231812,0.0840969607234001,0.0109314266592264,0.996397614479065,0.0637330934405327,-0.127326533198357,0.98981112241745,0.068629153072834,-0.121115989983082,0.990263104438782,0.146216556429863,0.00941689591854811,0.989207863807678,0.174875915050507,-0,0.984590470790863,0.0801070556044579,0.0102229621261358,0.996733844280243,0.0793411955237389,0.00964025501161814,0.996800899505615,0.0801070556044579,0.0102229611948133,0.996733844280243,0.0808728411793709,0.0108056552708149,0.996665835380554,-3.81579695840628e-007,1,9.88478845442842e-008,0,1,0,-2.54386463893752e-007,1,6.58985896961894e-008,0,1,0,-3.81579695840628e-007,1,9.88478845442842e-008,0.522474348545074,0.852601230144501,0.00957505218684673,0.891766726970673,0.45083811879158,0.0386918112635612,0.190608337521553,0.981606304645538,0.0108421631157398,0.087257906794548,-0.996180236339569,0.00330979842692614,0.444667905569077,0.895609974861145,-0.0123812016099691,0.613974928855896,-1.36389382987545e-006,0.789325535297394,0.613974094390869,-4.24276208832453e-007,0.789326190948486,0.613973081111908,4.40595897543972e-007,0.789326965808868,
- 0.613974034786224,-4.42962573288241e-007,0.789326190948486,0.953446626663208,-0.00280295731499791,0.301549106836319,0.953428506851196,-0.00275684799998999,0.301606565713882,0.953446626663208,-0.00280296034179628,0.301549106836319,0.953464567661285,-0.00284906104207039,0.301491618156433,0.0818742588162422,0.0103864567354321,0.99658864736557,0.0828252211213112,0.00966460350900888,0.996517300605774,0.0837760642170906,0.00894274190068245,0.996444582939148,0.0828252211213112,0.00966461095958948,0.996517300605774,-0.973862767219543,0.022580211982131,0.226012080907822,-0.973575174808502,0.0113773606717587,-0.228083521127701,-0.980227470397949,7.35646244720556e-005,-0.1978739798069,-0.999937236309052,0.0110213495790958,-0.00203676288947463,-0.512785315513611,-0.238769367337227,-0.824645638465881,-0.550846874713898,-0.120823852717876,-0.825814366340637,-0.153777748346329,0,-0.988105475902557,-0.181278645992279,-0.119883105158806,-0.976097285747528,0.0138847241178155,-0.149525344371796,0.988660454750061,0.0835556015372276,0.00612103054299951,0.996484279632568,0.0748905763030052,-0.0822962149977684,0.993790149688721,0.0140144880861044,-0.227941900491714,0.973573863506317,0.0144237540662289,5.02336696683869e-008,0.999895989894867,0.0138847241178155,-0.149525344371796,0.988660454750061,0.0748905763030052,-0.0822962149977684,0.993790149688721,0.973637104034424,-0.000876108941156417,0.228100880980492,0.927415490150452,-0.0547563843429089,0.3700031042099,0.914397418498993,-0.0725989565253258,0.398254722356796,0.980227470397949,4.03566991735715e-005,0.197874039411545,0.927415490150452,-0.0547563843429089,0.3700031042099,0.671917259693146,0.0270661897957325,0.740131437778473,0.694757163524628,0.0334839522838593,0.718464612960815,0.914397418498993,-0.0725989565253258,0.398254722356796,0.671917259693146,0.0270661897957325,0.740131437778473,0.553029596805573,0.0815832167863846,0.829157650470734,0.528056502342224,1.08786014152429e-006,0.849209249019623,0.694757163524628,0.0334839522838593,0.718464612960815,0.153772443532944,0.0083242217078805,0.988071203231812,
- 0.0748905763030052,-0.0822962149977684,0.993790149688721,0.0835556015372276,0.00612103054299951,0.996484279632568,0.182595551013947,-7.60984112275764e-005,0.983188211917877,0.874088227748871,0,0.485767155885696,0.953449666500092,-1.28072858984751e-008,0.301552563905716,0.953449726104736,-1.38145068717677e-008,0.301552355289459,0.918602645397186,0,0.395182341337204,0.691555321216583,0,0.722323536872864,0.874088227748871,0,0.485767155885696,0.918602645397186,0,0.395182341337204,0.760529696941376,0,0.649303078651428,0.616397798061371,0,0.787434935569763,0.691555321216583,0,0.722323536872864,0.760529696941376,0,0.649303078651428,0.616404116153717,0,0.787429988384247,-0.353501379489899,0,-0.935434103012085,-0.353499501943588,0,-0.935434699058533,-0.3534976541996,0,-0.93543541431427,-0.353499501943588,0,-0.935434699058533,0.00771514978259802,0,0.999970316886902,0.014811092056334,0,0.999890327453613,0.0148546444252133,0,0.999889671802521,0.00744930515065789,0,0.999972283840179,0.0546664483845234,0,0.998504638671875,0.00771514978259802,0,0.999970316886902,0.00744930515065789,0,0.999972283840179,0.0266161188483238,0,0.9996457695961,0.0840872973203659,0,0.996458411216736,0.0546664483845234,0,0.998504638671875,0.0266161188483238,0,0.9996457695961,0.0813657641410828,0,0.996684312820435,0.0237789023667574,-0.0481653586030006,0.998556315898895,0.0140740517526865,-0.0422934256494045,0.99900609254837,0.00436738925054669,-0.0364160463213921,0.999327182769775,0.0140740508213639,-0.0422934256494045,0.99900609254837,-0.999336659908295,0.0363737680017948,-0.00180546834599227,-0.99942535161972,0.0338114909827709,0.002398592652753,-0.999336659908295,0.0363737680017948,-0.00180546741466969,-0.99922376871109,0.0389351584017277,-0.00600948464125395,0.300761342048645,-0.754021227359772,0.583947479724884,0.76421582698822,0.31652495265007,0.561948537826538,0.891766726970673,0.45083811879158,0.0386918112635612,0.522474348545074,0.852601230144501,0.00957505218684673,0.76421582698822,0.31652495265007,0.561948537826538,-0.482153654098511,0.652252078056335,0.584888815879822,
- 0.190608337521553,0.981606304645538,0.0108421631157398,0.891766726970673,0.45083811879158,0.0386918112635612,-0.482153654098511,0.652252078056335,0.584888815879822,-0.68937748670578,-0.0924447849392891,0.718479335308075,0.944434344768524,-0.327801823616028,-0.024285027757287,0.190608337521553,0.981606304645538,0.0108421631157398,-0.68937748670578,-0.0924447849392891,0.718479335308075,-0.540375173091888,-0.661486685276031,0.520028829574585,0.444667905569077,0.895609974861145,-0.0123812016099691,0.944434344768524,-0.327801823616028,-0.024285027757287,-0.540375173091888,-0.661486685276031,0.520028829574585,0.300761342048645,-0.754021227359772,0.583947479724884,0.522474348545074,0.852601230144501,0.00957505218684673,0.444667905569077,0.895609974861145,-0.0123812016099691
- }
- TangentsW: *1676 {
- 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *2098 {
- a: 0.55615234375,0.91436767578125,0.439697265625,0.987724304199219,0.42138671875,0.91290283203125,0.55859375,0.989501953125,0.2386474609375,0.987907409667969,0.382080078125,0.9150390625,0.376953125,0.985389709472656,0.2333984375,0.91204833984375,0.42041015625,0.988349914550781,0.55615234375,0.9144287109375,0.5556640625,0.988189697265625,0.42138671875,0.9129638671875,0.234375,0.987335205078125,0.38232421875,0.91552734375,0.37890625,0.986625671386719,0.23095703125,0.91339111328125,0.42041015625,0.988334655761719,0.55615234375,0.988128662109375,0.381591796875,0.91534423828125,0.2364501953125,0.988395690917969,0.231201171875,0.9134521484375,0.3828125,0.988349914550781,0.4208984375,0.989387512207031,0.5556640625,0.91455078125,0.55615234375,0.987968444824219,0.421875,0.91339111328125,0.3818359375,0.91534423828125,0.2265625,0.991172790527344,0.38232421875,0.988616943359375,0.469482421875,0.015625,0.2401123046875,0.087890625,0.2398681640625,0.0166015625,0.61962890625,0.0654296875,0.72509765625,0.01513671875,0.98291015625,0.015625,0.98193359375,0.0751953125,0.2734375,0.2109375,0.982421875,0.18603515625,0.55029296875,0.2421875,0.98095703125,0.2431640625,0.98291015625,0.35302734375,0.72607421875,0.357421875,0.240478515625,0.2431640625,0.472900390625,0.35498046875,0.23828125,0.35546875,0.5283203125,0.01513671875,0.239501953125,0.0751953125,0.5703125,0.07421875,0.75927734375,0.01611328125,0.2406005859375,0.185546875,0.9814453125,0.0146484375,0.98095703125,0.0771484375,0.66650390625,0.1875,0.9814453125,0.1865234375,0.66259765625,0.244140625,0.982421875,0.3544921875,0.76220703125,0.35595703125,0.240966796875,0.24365234375,0.52880859375,0.357421875,0.239990234375,0.0166015625,0.453857421875,0.0166015625,0.2393798828125,0.07568359375,0.66650390625,0.0732421875,0.75439453125,0.0146484375,0.982421875,0.0146484375,0.98291015625,0.07177734375,0.9677734375,0.18798828125,0.578125,0.18603515625,0.2388916015625,0.18505859375,0.2403564453125,0.2431640625,0.62255859375,0.2431640625,0.98046875,0.24267578125,0.9833984375,
- 0.3544921875,0.7578125,0.3564453125,0.458251953125,0.3583984375,0.2384033203125,0.35546875,0.239501953125,0.07568359375,0.4736328125,0.01611328125,0.66015625,0.07421875,0.74609375,0.01611328125,0.984375,0.07373046875,0.6025390625,0.1884765625,0.65234375,0.244140625,0.98291015625,0.3544921875,0.74853515625,0.3564453125,0.477294921875,0.35546875,0.440673828125,0.98614501953125,0.446533203125,0.8280029296875,0.55322265625,0.992244720458984,0.44091796875,0.985923767089844,0.442626953125,0.8255615234375,0.55322265625,0.992221832275391,0.505859375,0.746337890625,0.394287109375,0.7535400390625,0.49853515625,0.583251953125,0.44091796875,0.985694885253906,0.443359375,0.8233642578125,0.548828125,0.993190765380859,0.50537109375,0.58251953125,0.505859375,0.74609375,0.39111328125,0.7550048828125,0.362548828125,0.00341796875,0.354736328125,0.15966796875,0.325439453125,0.11474609375,0.345947265625,-0.005859375,0.307861328125,0.1494140625,0.355712890625,0.15771484375,0.353515625,-0.0048828125,0.35302734375,0.171875,0.3271484375,0.1416015625,0.356201171875,0.0224609375,0.353515625,0.16015625,0.311279296875,0.1259765625,0.35498046875,0.0224609375,0.308349609375,0.1318359375,0.35546875,0.15625,0.34912109375,-0.025390625,0.353759765625,0.15966796875,0.30859375,0.1416015625,0.35498046875,0.02197265625,0.3173828125,0.11962890625,0.35498046875,0.15673828125,0.75830078125,0.40185546875,0.7001953125,0.30810546875,0.7333984375,0.29052734375,0.35546875,0.02001953125,0.316650390625,0.12353515625,0.35546875,0.15673828125,0.34521484375,-0.0400390625,0.354248046875,0.15966796875,0.309326171875,0.14208984375,0.354736328125,0.02197265625,0.318603515625,0.11962890625,0.355224609375,0.1572265625,0.75732421875,0.21435546875,0.73486328125,0.32421875,0.4404296875,0.986152648925781,0.55322265625,0.992256164550781,0.292236328125,1.1925048828125,0.1922607421875,1.15966796875,0.292724609375,1.09765625,0.5009765625,0.5859375,0.50634765625,0.746337890625,0.39111328125,0.7548828125,0.440673828125,0.9857177734375,0.447509765625,0.8253173828125,0.55078125,0.994606018066406,
- 0.448486328125,0.8245849609375,0.54736328125,0.993671417236328,0.5048828125,0.582763671875,0.390625,0.755126953125,0.357421875,-0.015625,0.327880859375,0.125,0.35302734375,-0.009765625,0.315185546875,0.14794921875,0.345458984375,-0.013671875,0.336669921875,0.1337890625,0.363037109375,0.150390625,0.3251953125,0.13916015625,0.328857421875,-0.02734375,0.355712890625,0.1650390625,0.32861328125,-0.03125,0.3251953125,0.138671875,0.360595703125,0.15625,0.310791015625,0.1435546875,0.32958984375,-0.0244140625,0.354248046875,0.15869140625,0.31982421875,0.12109375,0.354736328125,0.15771484375,0.75048828125,0.208984375,0.73291015625,0.3232421875,0.7001953125,0.30859375,0.35546875,0.0205078125,0.316650390625,0.123046875,0.35546875,0.1572265625,0.349365234375,-0.025390625,0.353759765625,0.16015625,0.317138671875,0.11962890625,0.355224609375,0.15625,0.73388671875,0.2900390625,0.446533203125,0.82861328125,0.55322265625,0.992271423339844,0.299072265625,1.1995849609375,0.9873046875,0.43994140625,0.974609375,0.47119140625,0.927734375,0.44091796875,0.9892578125,0.665771484375,0.9267578125,0.54345703125,0.92724609375,0.659423828125,0.97998046875,0.46875,0.9892578125,0.66650390625,0.9267578125,0.543212890625,0.4013671875,0.37060546875,0.35546875,0.16943359375,0.347900390625,0.34619140625,0.787109375,0.21728515625,0.79150390625,0.3671875,0.369384765625,0.1953125,0.78515625,0.083984375,0.377197265625,0.06298828125,0.73486328125,0.530517578125,0.837890625,0.528564453125,0.8349609375,0.585205078125,0.7353515625,0.583740234375,0.2265625,0.712158203125,0.37109375,0.653076171875,0.388671875,0.717529296875,0.2271728515625,0.653076171875,0.470458984375,0.605224609375,0.505859375,0.604248046875,0.39453125,0.7540283203125,0.7353515625,0.53076171875,0.73486328125,0.583984375,0.390869140625,0.719970703125,0.2269287109375,0.7119140625,0.2269287109375,0.652587890625,0.370849609375,0.653076171875,0.470458984375,0.60546875,0.505859375,0.6044921875,0.83251953125,0.529541015625,0.8359375,0.58544921875,0.377197265625,0.712158203125,0.22705078125,0.711669921875,
- 0.2264404296875,0.65234375,0.36962890625,0.653076171875,0.505859375,0.60546875,0.50634765625,0.74658203125,0.39501953125,0.753662109375,0.471435546875,0.596923828125,0.440673828125,0.985725402832031,0.4404296875,0.840576171875,0.50439453125,0.90008544921875,0.546875,0.991264343261719,0.83447265625,0.529296875,0.7353515625,0.583984375,0.73486328125,0.5302734375,0.8369140625,0.585693359375,0.392333984375,0.64453125,0.226806640625,0.712158203125,0.2266845703125,0.652587890625,0.369873046875,0.71142578125,0.439453125,0.8472900390625,0.54833984375,0.993690490722656,0.440185546875,0.98583984375,0.47705078125,0.8468017578125,0.833984375,0.529541015625,0.8291015625,0.584228515625,0.393310546875,0.719970703125,0.370849609375,0.6533203125,0.2271728515625,0.711669921875,0.451416015625,0.613525390625,0.4033203125,0.74560546875,0.83837890625,0.5859375,0.83447265625,0.52978515625,0.3916015625,0.645263671875,0.22705078125,0.653076171875,0.37060546875,0.711669921875,0.477783203125,0.8477783203125,0.4404296875,0.986228942871094,0.439697265625,0.8468017578125,0.54931640625,0.991775512695313,0.3603515625,0.01904296875,0.328125,0.1396484375,0.364990234375,0.15087890625,0.326904296875,0.0234375,0.322509765625,0.142578125,0.321533203125,0.03662109375,0.3544921875,0.02880859375,0.353271484375,0.1640625,0.357666015625,0.01904296875,0.32666015625,0.134765625,0.358642578125,0.154296875,0.327392578125,0.02099609375,0.69970703125,0.38525390625,0.7509765625,0.30078125,0.77685546875,0.3017578125,0.71728515625,0.2060546875,0.30859375,0.13818359375,0.31982421875,0.01611328125,0.355224609375,0.0224609375,0.35400390625,0.15966796875,0.7158203125,0.20703125,0.771484375,0.30126953125,0.7470703125,0.30078125,0.7001953125,0.38427734375,0.7353515625,0.530517578125,0.83837890625,0.585693359375,0.37060546875,0.712158203125,0.226806640625,0.711669921875,0.226806640625,0.652587890625,0.388427734375,0.6474609375,0.44091796875,0.986000061035156,0.54931640625,0.991737365722656,0.439208984375,0.846923828125,0.8369140625,0.58544921875,0.2265625,0.652587890625,0.3701171875,
- 0.65283203125,0.468017578125,0.593505859375,0.50537109375,0.60498046875,0.392333984375,0.753173828125,0.50439453125,0.9000244140625,0.546875,0.991249084472656,0.8369140625,0.52783203125,0.83447265625,0.58447265625,0.392578125,0.719970703125,0.369873046875,0.653076171875,0.50537109375,0.605224609375,0.39697265625,0.7535400390625,0.470458984375,0.605712890625,0.82861328125,0.584228515625,0.3935546875,0.719970703125,0.450927734375,0.613525390625,0.40380859375,0.7470703125,0.83837890625,0.58642578125,0.391357421875,0.644287109375,0.370361328125,0.711669921875,0.4404296875,0.986160278320313,0.477783203125,0.84765625,0.54931640625,0.992057800292969,0.439697265625,0.846923828125,0.3251953125,0.14404296875,0.323486328125,0.0263671875,0.351318359375,0.02783203125,0.35546875,0.02197265625,0.329345703125,0.13671875,0.330810546875,0.021484375,0.3544921875,0.029296875,0.325927734375,0.15234375,0.322998046875,0.0244140625,0.351806640625,0.1728515625,0.70654296875,0.38916015625,0.77294921875,0.3037109375,0.724609375,0.20361328125,0.319580078125,0.01708984375,0.35302734375,0.0234375,0.7001953125,0.3857421875,0.77197265625,0.30126953125,0.71533203125,0.20654296875,0.22705078125,0.65283203125,0.387939453125,0.718017578125,0.92041015625,0.43896484375,0.9873046875,0.439453125,0.98681640625,0.47509765625,0.92529296875,0.66796875,0.98828125,0.662841796875,0.919921875,0.43701171875,0.98681640625,0.43994140625,0.98876953125,0.49560546875,0.9267578125,0.66162109375,0.98828125,0.65234375,0.927734375,0.43994140625,0.9951171875,0.4384765625,0.92822265625,0.47607421875,0.9892578125,0.670654296875,0.9267578125,0.6611328125,0.79296875,0.0966796875,0.5634765625,0.06201171875,0.55810546875,0.20263671875,0.78515625,0.22021484375,0.55517578125,0.365234375,0.791015625,0.36767578125,0.5634765625,0.06396484375,0.77978515625,0.08837890625,0.5546875,0.201171875,0.7890625,0.22265625,0.56298828125,0.36376953125,0.791015625,0.36474609375,0.79443359375,0.0576171875,0.654296875,0.15869140625,0.794921875,0.1884765625,0.66455078125,0.36474609375,0.66015625,0.04736328125,
- 0.79248046875,0.10107421875,0.65966796875,0.2041015625,0.7890625,0.22216796875,0.66552734375,0.36328125,0.791015625,0.365234375,0.56298828125,0.0615234375,0.787109375,0.0966796875,0.5556640625,0.19970703125,0.7861328125,0.22412109375,0.564453125,0.36279296875,0.9208984375,0.4384765625,0.986328125,0.47607421875,0.92529296875,0.66943359375,0.98828125,0.661376953125,0.98876953125,0.49609375,0.98828125,0.652587890625,0.99462890625,0.4384765625,0.92822265625,0.4755859375,0.98974609375,0.670654296875,0.376708984375,0.0634765625,0.7861328125,0.068359375,0.388427734375,0.19921875,0.79296875,0.19970703125,0.390869140625,0.23193359375,0.447509765625,0.3642578125,0.79150390625,0.365234375,0.347900390625,0.345703125,0.34228515625,0.21923828125,0.7802734375,0.05908203125,0.371337890625,0.07373046875,0.76220703125,0.19482421875,0.380859375,0.2080078125,0.77587890625,0.2265625,0.7705078125,0.36474609375,0.38134765625,0.36669921875,0.3427734375,0.3447265625,0.65869140625,0.15283203125,0.79345703125,0.09912109375,0.66552734375,0.3623046875,0.791015625,0.3662109375,0.787109375,0.09716796875,0.7861328125,0.224609375,0.564453125,0.36328125,0.65966796875,0.046875,0.7919921875,0.10107421875,0.6591796875,0.2041015625,0.6669921875,0.36279296875,0.9228515625,0.44287109375,0.9873046875,0.43896484375,0.9287109375,0.47509765625,0.98974609375,0.667236328125,0.9267578125,0.662353515625,0.92822265625,0.43994140625,0.79345703125,0.06640625,0.387451171875,0.19873046875,0.376953125,0.0634765625,0.78955078125,0.19580078125,0.387451171875,0.228515625,0.38623046875,0.35791015625,0.34814453125,0.345703125,0.341064453125,0.2197265625,0.404296875,0.1943359375,0.7626953125,0.06689453125,0.39599609375,0.06103515625,0.77294921875,0.1943359375,0.39453125,0.220703125,0.76611328125,0.3671875,0.399169921875,0.3623046875,0.342529296875,0.357421875,0.3388671875,0.2255859375,0.35205078125,0.2197265625,0.392822265625,0.36328125,0.359619140625,0.33740234375,0.39013671875,0.2080078125,0.7587890625,0.36669921875,0.394287109375,0.22314453125,0.76220703125,0.2197265625,
- 0.76123046875,0.18798828125,0.389892578125,0.181640625,0.401611328125,0.05615234375,0.76806640625,0.06494140625,0.38671875,0.06494140625,0.76806640625,0.18603515625,0.77197265625,0.06689453125,0.393798828125,0.20703125,0.7744140625,0.224609375,0.7724609375,0.35888671875,0.460693359375,0.3720703125,0.35107421875,0.359375,0.7783203125,0.1923828125,0.7939453125,0.06884765625,0.55517578125,0.20458984375,0.5546875,0.36474609375,0.79052734375,0.36767578125,0.6591796875,0.154296875,0.7939453125,0.1005859375,0.66650390625,0.36279296875,0.7900390625,0.365234375,0.9892578125,0.67041015625,0.9931640625,0.443359375,0.92724609375,0.439453125,0.390869140625,0.06689453125,0.76513671875,0.19091796875,0.7666015625,0.06689453125,0.389404296875,0.20849609375,0.75732421875,0.2109375,0.5048828125,0.375,0.79248046875,0.3671875,0.339599609375,0.35791015625,0.7646484375,0.18505859375,0.405029296875,0.0556640625,0.7666015625,0.06494140625,0.37890625,0.18798828125,0.78955078125,0.22265625,0.49560546875,0.3701171875,0.79248046875,0.365234375,0.3564453125,0.337890625,0.767578125,0.056640625,0.382080078125,0.18994140625,0.37548828125,0.0654296875,0.7890625,0.1953125,0.388427734375,0.22802734375,0.765625,0.36669921875,0.380859375,0.36474609375,0.343505859375,0.3427734375,0.34423828125,0.21923828125,0.78662109375,0.2119140625,0.79052734375,0.06298828125,0.55859375,0.20068359375,0.78662109375,0.3642578125,0.5654296875,0.3671875,0.79736328125,0.205078125,0.5556640625,0.2001953125,0.7783203125,0.3642578125,0.5654296875,0.36376953125,0.6611328125,0.0478515625,0.80126953125,0.20947265625,0.7900390625,0.060546875,0.65625,0.20166015625,0.791015625,0.36669921875,0.66552734375,0.365234375,0.77734375,0.19287109375,0.7939453125,0.0693359375,0.5576171875,0.20361328125,0.7841796875,0.22265625,0.5556640625,0.365234375,0.65673828125,0.15966796875,0.794921875,0.18896484375,0.66552734375,0.36474609375,0.791015625,0.3681640625,0.9228515625,0.443359375,0.7724609375,0.18408203125,0.399658203125,0.0546875,0.77294921875,0.064453125,0.385009765625,0.1826171875,0.39013671875,
- 0.22265625,0.783203125,0.22412109375,0.765625,0.365234375,0.4580078125,0.3671875,0.361083984375,0.3408203125,0.35498046875,0.21826171875,0.66162109375,0.046875,0.80029296875,0.20654296875,0.791015625,0.0615234375,0.65771484375,0.20458984375,0.66650390625,0.365234375,0.7900390625,0.3681640625,0.376953125,0.06298828125,0.3583984375,0.189453125,0.77880859375,0.07080078125,0.791015625,0.19873046875,0.4599609375,0.3720703125,0.34765625,0.34619140625,0.55615234375,0.91436767578125,0.55615234375,0.91436767578125,0.42138671875,0.91290283203125,0.23095703125,0.91339111328125,0.2398681640625,0.0166015625,0.98095703125,0.2431640625,0.98095703125,0.2431640625,0.23828125,0.35546875,0.2398681640625,0.0166015625,0.9814453125,0.0146484375,0.9814453125,0.0146484375,0.2388916015625,0.18505859375,0.9814453125,0.1865234375,0.240478515625,0.2431640625,0.2388916015625,0.18505859375,0.9814453125,0.1865234375,0.240478515625,0.2431640625,0.9814453125,0.1865234375,0.98095703125,0.2431640625,0.98095703125,0.2431640625,0.240478515625,0.2431640625,0.240478515625,0.2431640625,0.23828125,0.35546875,0.7001953125,0.30810546875,0.446533203125,0.8280029296875,0.44091796875,0.985923767089844,0.442626953125,0.8255615234375,0.55322265625,0.992221832275391,0.440673828125,0.9857177734375,0.505859375,0.74609375,0.354736328125,0.15966796875,0.355712890625,0.15771484375,0.354736328125,0.02197265625,0.30859375,0.1416015625,0.35498046875,0.02197265625,0.75830078125,0.40185546875,0.7001953125,0.30859375,0.4404296875,0.986152648925781,0.1922607421875,1.15966796875,0.292724609375,1.09765625,0.9873046875,0.43994140625,0.927734375,0.44091796875,0.92724609375,0.659423828125,0.505859375,0.74609375,0.505859375,0.74609375,0.837890625,0.528564453125,0.8349609375,0.585205078125,0.8349609375,0.585205078125,0.50634765625,0.746337890625,0.50634765625,0.746337890625,0.39453125,0.7540283203125,0.73486328125,0.583984375,0.7353515625,0.53076171875,0.73486328125,0.583984375,0.73486328125,0.583984375,0.7353515625,0.53076171875,0.73486328125,0.583984375,0.2264404296875,0.65234375,
- 0.2264404296875,0.65234375,0.50634765625,0.74658203125,0.505859375,0.604248046875,0.50634765625,0.74658203125,0.7353515625,0.583740234375,0.73486328125,0.5302734375,0.73486328125,0.5302734375,0.2265625,0.712158203125,0.2265625,0.712158203125,0.837890625,0.528564453125,0.73486328125,0.530517578125,0.8349609375,0.585205078125,0.73486328125,0.530517578125,0.7353515625,0.583740234375,0.8349609375,0.585205078125,0.2265625,0.712158203125,0.37109375,0.653076171875,0.2271728515625,0.653076171875,0.37109375,0.653076171875,0.2265625,0.712158203125,0.388671875,0.717529296875,0.470458984375,0.605224609375,0.505859375,0.74609375,0.505859375,0.604248046875,0.505859375,0.74609375,0.470458984375,0.605224609375,0.39453125,0.7540283203125,0.83447265625,0.52978515625,0.73486328125,0.583984375,0.477783203125,0.8477783203125,0.477783203125,0.8477783203125,0.8349609375,0.585205078125,0.7353515625,0.53076171875,0.837890625,0.528564453125,0.7353515625,0.53076171875,0.8349609375,0.585205078125,0.73486328125,0.583984375,0.390869140625,0.719970703125,0.2269287109375,0.7119140625,0.2269287109375,0.652587890625,0.390869140625,0.719970703125,0.2269287109375,0.652587890625,0.370849609375,0.653076171875,0.50634765625,0.746337890625,0.470458984375,0.60546875,0.505859375,0.6044921875,0.470458984375,0.60546875,0.50634765625,0.746337890625,0.39453125,0.7540283203125,0.83251953125,0.529541015625,0.73486328125,0.583984375,0.7353515625,0.53076171875,0.73486328125,0.583984375,0.83251953125,0.529541015625,0.377197265625,0.712158203125,0.22705078125,0.711669921875,0.377197265625,0.712158203125,0.50634765625,0.74658203125,0.50634765625,0.74658203125,0.440673828125,0.985725402832031,0.4404296875,0.840576171875,0.440673828125,0.985725402832031,0.73486328125,0.583984375,0.73486328125,0.583984375,0.7353515625,0.530517578125,0.22705078125,0.711669921875,0.2264404296875,0.65234375,0.2264404296875,0.65234375,0.50634765625,0.74658203125,0.73486328125,0.583984375,0.833984375,0.529541015625,0.833984375,0.529541015625,0.73486328125,0.583984375,0.7353515625,0.530517578125,
- 0.22705078125,0.711669921875,0.2264404296875,0.65234375,0.2264404296875,0.65234375,0.370849609375,0.6533203125,0.50634765625,0.74658203125,0.505859375,0.604248046875,0.50634765625,0.74658203125,0.7353515625,0.583740234375,0.73486328125,0.530517578125,0.73486328125,0.530517578125,0.83447265625,0.52978515625,0.2265625,0.712158203125,0.2265625,0.712158203125,0.22705078125,0.653076171875,0.35400390625,0.15966796875,0.35546875,0.15673828125,0.7509765625,0.30078125,0.7509765625,0.30078125,0.30859375,0.13818359375,0.35400390625,0.15966796875,0.30859375,0.13818359375,0.7470703125,0.30078125,0.7470703125,0.30078125,0.7353515625,0.583740234375,0.8349609375,0.585205078125,0.73486328125,0.530517578125,0.73486328125,0.530517578125,0.8349609375,0.585205078125,0.837890625,0.528564453125,0.2265625,0.712158203125,0.37109375,0.653076171875,0.37109375,0.653076171875,0.2265625,0.712158203125,0.505859375,0.74609375,0.470458984375,0.60546875,0.39453125,0.7540283203125,0.470458984375,0.60546875,0.505859375,0.74609375,0.505859375,0.604248046875,0.791015625,0.36767578125,0.791015625,0.365234375,0.92041015625,0.43896484375,0.9873046875,0.439453125,0.98681640625,0.47509765625,0.92529296875,0.66796875,0.92041015625,0.43896484375,0.98681640625,0.47509765625,0.92529296875,0.66796875,0.98681640625,0.47509765625,0.98828125,0.662841796875,0.9873046875,0.43994140625,0.919921875,0.43701171875,0.98681640625,0.43994140625,0.9267578125,0.6611328125,0.919921875,0.43701171875,0.9267578125,0.6611328125,0.927734375,0.43994140625,0.9267578125,0.66162109375,0.7890625,0.22216796875,0.7890625,0.22216796875,0.7890625,0.22216796875,0.56298828125,0.0615234375,0.5556640625,0.19970703125,0.5556640625,0.19970703125,0.5556640625,0.19970703125,0.791015625,0.365234375,0.7890625,0.22216796875,0.7890625,0.22216796875,0.7890625,0.22216796875,0.791015625,0.36474609375,0.98681640625,0.47509765625,0.98828125,0.662841796875,0.92529296875,0.66796875,0.98681640625,0.47509765625,0.92529296875,0.66796875,0.98681640625,0.47509765625,0.99462890625,0.4384765625,0.99462890625,0.4384765625,
- 0.79150390625,0.365234375,0.5634765625,0.06396484375,0.5634765625,0.06396484375,0.7890625,0.22265625,0.7890625,0.22265625,0.7890625,0.22265625,0.7890625,0.22216796875,0.7890625,0.22216796875,0.7890625,0.22216796875,0.98681640625,0.47509765625,0.92529296875,0.66796875,0.98828125,0.662841796875,0.92529296875,0.66796875,0.98681640625,0.47509765625,0.9228515625,0.44287109375,0.9228515625,0.44287109375,0.98681640625,0.47509765625,0.9873046875,0.43896484375,0.92822265625,0.47607421875,0.9267578125,0.6611328125,0.92822265625,0.47607421875,0.92822265625,0.47607421875,0.5634765625,0.06201171875,0.5634765625,0.06201171875,0.5634765625,0.06396484375,0.5634765625,0.06396484375,0.5634765625,0.06396484375,0.5634765625,0.06396484375,0.791015625,0.36767578125,0.79443359375,0.0576171875,0.98681640625,0.47509765625,0.92529296875,0.66796875,0.98828125,0.662841796875,0.92529296875,0.66796875,0.98681640625,0.47509765625,0.98681640625,0.47509765625,0.9873046875,0.43896484375,0.79150390625,0.3671875,0.782789349555969,0.331559300422668,1.21203172206879,0.331560134887695,1.21203148365021,0.551352858543396,0.789514064788818,0.55135190486908,0.120379865169525,0.331557840108871,0.552824020385742,0.33155882358551,0.552823543548584,0.544939756393433,0.120379388332367,0.546221137046814,1.2120326757431,0.000191375613212585,1.44946491718292,0.000191910192370415,1.44946396350861,0.331560701131821,2.95042991638184e-005,0.000188706442713737,0.120380580425262,0.000188916921615601,2.85506248474121e-005,0.338360905647278,3.24069690704346,0.330814629793167,3.11978387832642,0.38800972700119,2.99890422821045,0.330451726913452,2.99811887741089,0.00927308201789856,3.24147272109985,0.00890752673149109,-0.323439061641693,-0.107554316520691,-0.323439061641693,0.10165473818779,-0.560871362686157,0.101654678583145,-0.560871362686157,-0.107554495334625,0.782790064811707,0.000190528109669685,0.552824735641479,0.000190010294318199,-0.553404331207275,-0.160541534423828,-0.553404331207275,-0.369750678539276,-0.323439061641693,-0.369750618934631,-0.323439121246338,-0.160541594028473,
- 2.03792142868042,1.3315589427948,2.29909706115723,0.331561088562012,2.29909610748291,0.544942259788513,2.16850709915161,1.62346506118774,2.03791904449463,1.54493999481201,-0.42804354429245,-0.420993030071259,-0.42804354429245,-0.541344165802002,-0.323439002037048,-0.543089151382446,-0.323439002037048,-0.422738015651703,1.21496319770813,1.33156204223633,1.47614097595215,0.331561207771301,1.47614145278931,0.551353871822357,1.3455536365509,1.629878282547,1.21496415138245,1.55135464668274,2.01200771331787,0.331586927175522,2.00361347198486,1.55132818222046,1.21203124523163,0.629876911640167,0.789513945579529,0.629876017570496,2.83896160125732,0.331561267375946,2.83896112442017,1.54622459411621,0.552823305130005,0.623463928699493,0.120379269123077,0.62474524974823,2.2646689414978,1.55770075321198,2.13114356994629,1.63298892974854,2.27306079864502,1.33801102638245,3.10013723373413,1.54622578620911,2.96954870223999,1.62474942207336,2.96954917907715,1.39243137836456,3.10013914108276,1.33156251907349,1.88191783428192,0.337377905845642,1.88191735744476,0.551354467868805,1.44946372509003,0.546991586685181,0.378677368164063,1.33737790584564,0.509264945983887,1.4034149646759,0.639854431152344,1.33737730979919,0.639854431152344,0.551353991031647,0.509266376495361,1.62987804412842,0.378677845001221,1.55135440826416,1.17973017692566,0.331561237573624,1.17973041534424,1.54699206352234,1.88191878795624,0.000192824751138687,1.88191735744476,0.629878401756287,1.44946348667145,0.625515580177307,1.4409077167511,1.54699182510376,1.31031966209412,1.6255156993866,1.44090723991394,1.33156085014343,1.47614121437073,0.629878103733063,2.00361251831055,0.629878103733063,2.29909706115723,0.623466193675995,2.83896160125732,0.624748587608337,0.639854431152344,0.629878103733063,1.17973017692566,0.625516176223755,2.83896160125732,0.000192493200302124,3.00000023841858,-0.000232726335525513,3.00000023841858,0.337088942527771,1.47614121437073,0.000192403793334961,1.17973017692566,0.000192373991012573,0.632469654083252,0.000192433595657349,0.639854431152344,
- 0.000192433595657349,2.29909706115723,0.000192403793334961,2.01210594177246,0.000192403793334961,1.6039742231369,0.708725214004517,1.724325299263,0.708725214004517,1.724325299263,0.91793429851532,1.60397446155548,0.91793429851532,1.17153024673462,0.708725214004517,1.17153024673462,0.917934238910675,0.941564917564392,0.708725214004517,0.941642999649048,0.91793429851532,0.512322425842285,0.708725214004517,0.512322425842285,0.91793429851532,0.274890005588531,0.708725214004517,0.274890005588531,0.91793429851532,-0.163478851318359,0.708725214004517,-0.163478851318359,0.91793429851532,1.60397446155548,0.91793429851532,1.6039742231369,0.708725214004517,-0.157563745975494,0.91793429851532,-0.157563745975494,0.708725214004517,-0.532648086547852,-0.543089151382446,-0.532648086547852,-0.422738015651703,3.25038433074951,0.337513953447342,3.11979722976685,0.398999929428101,3.25038385391235,-0.000658243894577026,0.782789349555969,0.331559300422668,1.21203172206879,0.331560134887695,1.21203148365021,0.551352858543396,0.789514064788818,0.55135190486908,0.120379865169525,0.331557840108871,0.552824020385742,0.33155882358551,0.552823543548584,0.544939756393433,0.120379388332367,0.546221137046814,1.2120326757431,0.000191375613212585,1.44946491718292,0.000191910192370415,1.44946396350861,0.331560701131821,1.88783395290375,0.000192837789654732,0.120380580425262,0.000188916921615601,-0.323439061641693,-0.107554316520691,-0.323439061641693,0.10165473818779,-0.560871362686157,0.101654678583145,-0.560871362686157,-0.107554495334625,0.782790064811707,0.000190528109669685,0.552824735641479,0.000190010294318199,-0.553404331207275,-0.160541534423828,-0.553404331207275,-0.369750678539276,-0.323439061641693,-0.369750618934631,-0.323439121246338,-0.160541594028473,-0.458778142929077,1.33155870437622,-0.197602033615112,0.331560879945755,-0.197603225708008,0.544942080974579,-0.328193306922913,1.62346482276917,-0.458780527114868,1.54493963718414,0.464137017726898,0.486813545227051,0.53593510389328,0.485584825277328,0.532383561134338,0.515234649181366,
- 0.468843996524811,0.515964508056641,-1.28173661231995,1.33156156539917,-1.02055871486664,0.331560790538788,-1.02055823802948,0.551353454589844,-1.15114617347717,1.62987792491913,-1.28173589706421,1.55135416984558,-0.484692692756653,0.33158665895462,-0.493086576461792,1.55132782459259,1.21203124523163,0.629876911640167,0.789513945579529,0.629876017570496,0.342262029647827,0.331561207771301,0.342261075973511,1.54622447490692,0.552823305130005,0.623463928699493,0.120379269123077,0.62474524974823,-0.232031106948853,1.5577005147934,-0.365556240081787,1.63298869132996,-0.223639488220215,1.33801078796387,0.603437423706055,1.54622578620911,0.472848653793335,1.62474942207336,0.472849607467651,1.39243125915527,0.603439092636108,1.33156251907349,1.88191783428192,0.337377905845642,1.88191735744476,0.551354467868805,1.44946372509003,0.546991586685181,1.88783395290375,0.000192837789654732,1.99994707107544,0.000193215906620026,1.99994611740112,0.334963411092758,1.88191878795624,0.000192824751138687,-0.789704561233521,-0.674832582473755,-0.685099899768829,-0.673482120037079,-0.685099899768829,-0.555454015731812,-0.789704561233521,-0.556804537773132,-2.11802220344543,1.3373771905899,-1.98743510246277,1.40341424942017,-1.8568457365036,0.337376683950424,-1.85684597492218,0.551353394985199,-1.98743414878845,1.62987732887268,-2.11802196502686,1.55135369300842,-1.316969871521,0.331560760736465,-1.316969871521,1.54699158668518,1.88191735744476,0.629878401756287,1.44946348667145,0.625515580177307,-1.05579257011414,1.5469913482666,-1.18638014793396,1.62551522254944,-1.05579280853271,1.33156037330627,-2.25832438468933,0.331035405397415,-2.25884342193604,0.00815555453300476,-2.01071715354919,0.00775048136711121,-2.0112316608429,0.331443428993225,-2.13478636741638,0.392861813306808,-1.02055871486664,0.629877686500549,-0.493087530136108,0.629877805709839,-0.19760262966156,0.623466014862061,0.342261552810669,0.624748528003693,-1.85684597492218,0.629877507686615,-1.31697010993958,0.625515699386597,0.342261552810669,0.000192433595657349,-1.02055871486664,
- 0.000191986560821533,-1.316969871521,0.00019189715385437,-1.86423015594482,0.000191807746887207,-1.8568457365036,0.000191807746887207,-2.00026798248291,0.336237788200378,-2.00026798248291,0.000617057085037231,-0.197602391242981,0.000192195177078247,-0.484593987464905,0.000192135572433472,1.17153024673462,0.708725214004517,1.17153024673462,0.917934238910675,0.941564917564392,0.708725214004517,0.941642999649048,0.91793429851532,0.512322425842285,0.708725214004517,0.512322425842285,0.91793429851532,0.274890005588531,0.708725214004517,0.274890005588531,0.91793429851532,-0.163478851318359,0.91793429851532,-0.275591790676117,0.91793429851532,-0.275591790676117,0.708725214004517,-0.163478851318359,0.708725214004517,-0.157563745975494,0.91793429851532,-0.157563745975494,0.708725214004517,-0.580495357513428,-0.674832582473755,-0.580495357513428,-0.556804537773132,0.466456085443497,0.481146633625031,0.534313976764679,0.480741769075394,0.537423133850098,0.517979860305786,0.462576419115067,0.519258677959442,-2.26536893844604,0.335812211036682,-2.26536893844604,0.00104200839996338,-2.13477897644043,0.401847064495087,-1.316969871521,0.546991527080536,-1.85684597492218,1.55135345458984,-1.8568457365036,1.33737671375275,-1.316969871521,1.33156073093414,0.342261075973511,0.546224474906921,-0.493086576461792,0.55132782459259,-0.197603225708008,1.54494214057922,-0.197602033615112,1.33156085014343,-1.02055823802948,1.55135345458984,-1.02055871486664,1.33156085014343,0.342262029647827,1.3315612077713,-0.484692692756653,1.33158659934998,1.17973041534424,0.546992003917694,0.639854431152344,1.551353931427,0.639854431152344,0.337377309799194,1.17973017692566,1.3315612077713,2.83896112442017,0.546224534511566,2.00361347198486,0.551328122615814,2.29909610748291,1.54494225978851,2.29909706115723,1.33156108856201,1.47614145278931,1.551353931427,1.47614097595215,1.3315612077713,2.83896160125732,1.33156132698059,2.01200771331787,1.33158695697784
- }
- UVIndex: *1676 {
- a: 0,1,2,1,0,3,4,5,6,5,4,7,8,9,10,9,8,11,12,13,14,13,12,15,16,545,17,546,16,547,18,19,20,19,18,21,22,23,24,23,22,25,26,27,548,27,26,28,29,30,31,32,30,29,32,29,33,34,32,33,35,32,34,30,32,36,32,35,36,36,35,37,37,38,36,37,39,38,40,38,39,38,40,41,38,42,36,38,41,43,43,42,38,42,43,44,549,45,46,46,45,47,47,45,48,46,47,49,48,50,51,47,48,51,52,47,51,49,47,52,52,51,53,49,52,54,53,54,52,54,53,550,55,54,551,54,55,56,57,49,54,54,56,58,58,57,54,57,58,552,59,60,61,62,61,60,62,60,63,64,62,63,64,65,62,62,65,66,61,62,67,62,66,67,67,68,61,68,67,69,66,70,67,70,69,67,70,66,71,72,70,71,70,72,73,70,73,74,74,69,70,69,74,75,76,553,77,76,77,78,77,79,78,554,78,79,555,80,78,81,76,78,78,80,81,76,81,556,81,80,557,558,559,81,560,82,81,561,81,82,82,562,563,83,82,564,82,83,84,82,84,85,85,565,82,566,85,567,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,568,569,136,137,138,139,140,141,142,143,570,571,572,144,145,146,573,147,148,149,574,150,151,575,152,153,154,576,155,156,157,158,159,160,161,162,163,164,165,166,577,167,168,169,170,171,172,173,174,175,176,578,579,177,178,580,581,179,180,582,181,182,583,584,183,184,185,186,187,184,188,187,186,585,189,586,190,191,189,587,191,190,192,193,194,195,192,196,197,192,195,198,197,195,199,197,198,200,201,202,200,202,203,204,205,206,205,204,207,588,208,209,208,589,210,211,590,591,211,592,212,213,214,215,215,216,213,593,217,218,217,594,595,219,596,597,598,219,220,221,222,223,223,224,221,225,226,227,225,227,228,229,230,231,229,231,232,233,234,235,234,233,236,237,238,239,238,237,240,241,242,243,242,241,244,245,599,600,601,245,246,247,602,248,603,247,249,604,250,605,250,606,251,252,607,608,252,609,253,254,610,255,611,254,256,257,258,259,258,257,260,261,262,263,262,261,264,265,266,267,267,268,265,269,270,271,270,269,272,273,274,275,276,275,274,277,278,279,279,280,277,281,282,283,284,283,282,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,
- 285,630,286,285,286,631,287,288,289,287,289,290,291,632,292,633,291,293,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,294,657,658,295,659,295,296,660,297,298,297,661,299,662,663,300,664,300,301,665,302,303,302,666,667,304,668,669,304,670,305,306,671,307,306,307,308,672,673,309,674,675,676,310,677,678,679,680,310,681,311,682,683,312,311,313,684,685,686,687,313,688,314,315,314,689,690,316,317,318,317,316,319,320,321,322,322,691,320,323,324,692,324,323,325,326,327,328,327,326,329,330,693,331,694,332,331,695,333,334,334,696,697,335,698,336,337,336,699,700,701,702,703,704,705,706,707,338,708,709,339,710,711,712,713,714,715,340,341,342,343,340,342,342,344,343,345,346,347,347,348,345,348,347,349,350,351,352,353,352,351,352,353,354,355,356,357,357,358,355,357,359,358,359,360,358,361,362,363,362,364,363,364,365,363,365,364,366,367,368,369,369,368,370,369,370,716,371,372,373,373,372,374,374,375,373,375,374,376,377,378,379,380,379,378,381,379,380,381,380,717,718,719,720,721,722,723,724,725,726,382,727,383,384,382,383,384,383,385,728,729,386,386,730,731,732,386,387,733,388,389,390,389,388,389,390,734,391,392,393,392,394,393,395,393,394,396,394,397,394,396,395,398,395,396,399,395,398,400,401,402,402,401,403,404,402,403,403,405,404,403,406,405,403,407,406,408,409,735,736,410,408,410,737,411,738,412,739,413,740,412,414,741,413,414,413,742,415,416,417,417,416,743,744,418,417,418,745,746,747,748,749,419,750,751,420,752,419,421,422,423,422,421,753,754,421,424,425,426,427,425,428,426,426,428,429,430,428,755,428,430,429,429,430,431,432,429,431,433,434,435,434,433,436,436,433,437,438,436,439,436,437,439,437,440,439,437,441,440,442,443,444,443,442,445,446,443,447,448,446,447,447,449,448,449,447,450,451,449,450,449,451,452,453,454,455,453,456,454,457,454,456,456,458,457,458,456,459,456,460,459,756,461,462,461,757,463,461,463,758,464,759,463,760,464,465,761,466,467,762,468,466,468,763,469,764,765,766,767,768,769,770,771,772,773,470,774,470,775,471,776,472,471,473,474,475,474,473,476,474,476,477,
- 477,476,478,477,478,479,476,480,478,481,482,483,482,481,484,485,484,481,485,486,484,486,485,487,484,486,488,489,490,491,490,489,492,493,490,492,492,494,493,493,494,495,493,495,496,497,493,496,777,498,499,498,778,500,500,501,498,501,500,502,503,779,499,780,503,504,503,505,504,504,505,506,507,508,509,508,507,510,510,511,508,511,510,512,781,513,514,513,782,515,516,513,515,515,517,516,516,517,783,518,519,784,519,518,520,519,520,521,785,786,787,522,788,789,522,790,791,523,524,525,524,523,526,527,526,523,523,528,527,529,527,528,527,529,530,527,530,531,532,527,531,533,534,535,534,533,536,537,534,536,534,537,538,539,540,541,542,541,540,542,540,543,542,543,792,540,544,543,793,794,795,796,797,798,799,800,794,801,802,803,804,805,797,806,807,808,809,810,811,812,813,814,815,816,793,798,817,818,819,820,821,822,1044,1043,825,826,827,828,829,830,831,1046,1045,834,835,833,832,836,1042,801,794,793,816,796,795,838,839,824,823,840,1041,817,798,797,805,800,799,842,843,844,845,837,1048,846,847,848,841,1047,849,850,803,851,852,853,854,855,856,1038,858,859,857,1039,860,1037,862,851,803,802,853,852,863,864,865,866,861,1040,867,868,833,1042,869,870,824,1041,871,872,857,1037,873,874,875,876,840,877,832,860,878,879,880,1039,840,823,881,874,823,836,882,881,836,832,877,882,860,1039,880,878,883,884,885,886,887,883,886,888,889,887,888,890,891,889,890,892,893,891,892,894,895,896,897,898,899,896,895,900,894,899,900,893,901,828,827,902,903,904,808,807,904,876,809,808,876,875,810,809,875,905,811,810,905,903,807,811,906,907,908,909,910,911,912,913,907,914,915,916,917,918,910,851,862,919,920,921,922,923,906,911,924,925,926,927,928,929,1032,1031,932,933,934,935,936,937,938,1034,1033,941,942,940,939,943,1030,914,907,906,923,909,908,945,946,931,930,947,1029,924,911,910,918,913,912,949,950,951,952,944,1036,953,954,955,948,1035,956,957,916,958,959,960,961,962,963,958,964,965,966,967,968,969,970,1027,1026,973,974,972,971,975,1025,964,958,916,915,960,959,977,978,979,980,976,1028,981,982,983,984,985,986,987,940,1030,988,989,931,1029,990,991,972,1025,992,1039,
- 947,993,879,994,939,975,995,996,997,971,998,999,996,971,947,930,1000,993,930,943,1001,1000,943,939,994,1001,975,971,997,995,1002,898,897,1003,1004,1002,1003,1005,1006,1004,1005,1007,1008,1006,1007,1009,1010,1011,1012,1013,1014,1010,1013,1015,1009,1014,1015,1008,967,966,1016,1017,1018,1019,1020,1021,1022,1023,983,982,1023,999,984,983,999,998,985,984,998,1024,986,985,1024,1022,982,986
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *348 {
- a: 0.256357073783875,0.650109648704529,0.464532971382141,0.631471514701843,0.46335107088089,0.687386274337769,0.257686764001846,0.687386214733124,0.0322238691151142,0.631471395492554,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0331103429198265,0.687386214733124,0.46335107088089,0.53827977180481,0.0322238691151142,0.53827977180481,0.0322238691151142,0.631471395492554,0.0246833004057407,0.53827977180481,0.0322238691151142,0.53827977180481,0.0246833004057407,0.650109648704529,0.0658344030380249,0.784571528434753,0.0455010756850243,0.747540593147278,0.0658344030380249,0.711149871349335,0.177664279937744,0.714673936367035,0.177664339542389,0.784571588039398,0.968883454799652,0.984991610050201,0.968883454799652,0.91157054901123,0.53450608253479,0.91157054901123,0.5345059633255,0.984991610050201,0.256800293922424,0.53827977180481,0.239366367459297,0.53827977180481,0.759082496166229,0.91157066822052,0.759082436561584,0.984991669654846,0.744898676872253,0.984991669654846,0.744898736476898,0.91157066822052,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,0.527755498886108,0.948281168937683,0.534956812858582,0.948281109333038,0.5345059633255,0.984991610050201,0.52785187959671,0.984991610050201,0.96651965379715,0.984991610050201,0.96651965379715,0.948281049728394,0.96651965379715,0.91157054901123,0.954463660717011,0.0164063796401024,0.956236481666565,0.0723212584853172,0.747469663619995,0.0536829642951488,0.748799324035645,0.0164063796401024,0.760855376720428,0.911570608615875,0.760855317115784,0.948281168937683,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.536279022693634,0.911570608615875,0.536278963088989,0.948281109333038,0.760855317115784,0.984991669654846,0.536278903484344,0.984991610050201,0.53450608253479,0.91157054901123,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0331103429198265,
- 0.687386214733124,0.744898736476898,0.91157066822052,0.7442467212677,0.948281168937683,0.744898676872253,0.984991669654846,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.239366367459297,0.53827977180481,0.536279022693634,0.911570608615875,0.536278963088989,0.948281109333038,0.536278903484344,0.984991610050201,0.499765485525131,0.183403864502907,0.499567270278931,0.195224672555923,0.515795946121216,0.0536829642951488,0.956827461719513,0.165512904524803,0.500652015209198,0.183403864502907,0.709271728992462,0.183403834700584,0.706923544406891,0.18339204788208,0.708089828491211,0.183403864502907,0.724425435066223,0.183403879404068,0.932074546813965,0.183403864502907,0.177664339542389,0.784571588039398,0.241730079054832,0.53827977180481,0.499765485525131,0.183403864502907,0.0322238691151142,0.53827977180481,0.527851998806,0.911570608615875,0.0658344030380249,0.784571528434753,0.0455010756850243,0.747540593147278,0.0658344030380249,0.711149871349335,0.177664279937744,0.714673936367035,0.256357073783875,0.650109648704529,0.464532971382141,0.631471514701843,0.46335107088089,0.687386274337769,0.257686764001846,0.687386214733124,0.0322238691151142,0.631471395492554,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0331103429198265,0.687386214733124,0.46335107088089,0.53827977180481,0.0322238691151142,0.53827977180481,0.0322238691151142,0.631471395492554,0.968883454799652,0.984991610050201,0.968883454799652,0.91157054901123,0.53450608253479,0.91157054901123,0.5345059633255,0.984991610050201,0.256800293922424,0.53827977180481,0.239366367459297,0.53827977180481,0.759082496166229,0.91157066822052,0.759082436561584,0.984991669654846,0.744898676872253,0.984991669654846,0.744898736476898,0.91157066822052,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,
- 0.534956812858582,0.948281109333038,0.5345059633255,0.984991610050201,0.96651965379715,0.984991610050201,0.96651965379715,0.948281049728394,0.96651965379715,0.91157054901123,0.954463660717011,0.0164063796401024,0.956236481666565,0.0723212584853172,0.747469663619995,0.0536829642951488,0.748799324035645,0.0164063796401024,0.760855376720428,0.911570608615875,0.760855317115784,0.948281168937683,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.536279022693634,0.911570608615875,0.536278963088989,0.948281109333038,0.760855317115784,0.984991669654846,0.536278903484344,0.984991610050201,0.53450608253479,0.91157054901123,0.240548223257065,0.631471395492554,0.239366367459297,0.687386214733124,0.0331103429198265,0.687386214733124,0.241730079054832,0.53827977180481,0.248343527317047,0.53827977180481,0.248343527317047,0.650109648704529,0.239366367459297,0.53827977180481,0.751512169837952,0.91157066822052,0.751436412334442,0.948281109333038,0.7442467212677,0.948281168937683,0.744898736476898,0.91157066822052,0.744898676872253,0.984991669654846,0.742534935474396,0.984991669654846,0.742534995079041,0.948281168937683,0.742534995079041,0.91157066822052,0.730478942394257,0.0164063796401024,0.731660842895508,0.0723212584853172,0.52333652973175,0.0723212584853172,0.52422297000885,0.0164063796401024,0.536279022693634,0.911570608615875,0.536278963088989,0.948281109333038,0.536278903484344,0.984991610050201,0.248343527317047,0.650109648704529,0,0,0.703966081142426,0.157569140195847,0.739456176757813,0.0536829642951488,0.521895349025726,0.405771225690842,0.956827461719513,0.165512904524803,0.500652015209198,0.183403864502907,0.709271728992462,0.183403834700584,0.706923544406891,0.18339204788208,0.739456176757813,0.0536829642951488,0.715885281562805,0.183403834700584,0.708089828491211,0.183403864502907,0.724425435066223,0.183403879404068,0.932074546813965,0.183403864502907,0.751512110233307,0.984991669654846,0,0,0.703966081142426,0.157569140195847,
- 0.521895349025726,0.405771225690842
- }
- UVIndex: *1676 {
- 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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,-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,1,2,3,4,5,6,7,1,8,9,10,11,12,4,13,14,15,16,17,18,19,20,21,22,23,0,5,24,25,26,27,28,28,27,29,30,31,32,33,34,35,20,19,36,37,38,39,40,41,42,8,1,0,23,43,38,37,44,45,46,47,48,24,5,4,12,49,31,30,50,43,44,51,26,25,49,50,52,34,33,53,10,54,55,56,57,58,59,60,61,62,63,64,65,66,67,54,10,9,68,62,61,69,68,69,70,22,21,37,36,
- 51,44,30,29,52,50,61,60,70,69,71,72,73,47,74,40,65,75,76,77,64,47,46,78,71,46,41,79,78,41,40,80,79,65,64,77,75,12,81,72,71,24,12,71,78,23,24,78,79,8,23,79,80,9,8,80,75,82,76,83,84,77,76,82,67,75,77,67,9,53,33,32,85,86,87,15,14,87,88,16,15,88,89,17,16,89,81,18,17,81,86,14,18,90,91,92,93,94,95,96,97,91,98,99,100,82,84,94,54,67,101,102,103,104,105,90,95,106,107,108,109,110,110,109,111,112,113,58,114,115,59,102,101,116,117,118,119,120,121,122,98,91,90,105,123,118,117,124,125,126,127,128,106,95,94,84,129,113,112,130,123,124,131,108,107,129,130,132,115,114,133,100,134,135,136,137,138,139,134,140,141,142,143,144,144,143,145,146,147,148,149,150,151,152,140,134,100,99,153,148,147,154,153,154,155,104,103,156,157,158,159,160,117,116,131,124,112,111,132,130,147,146,155,154,64,127,83,76,161,120,151,162,163,164,150,165,166,163,150,127,126,167,83,126,121,168,167,121,120,169,168,151,150,164,162,106,84,83,167,105,106,167,168,98,105,168,169,99,98,169,162,163,166,138,137,164,163,137,140,162,164,140,99,143,142,170,145,57,133,114,58,139,171,157,156,171,172,158,157,172,165,159,158,165,173,160,159,173,139,156,160
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *838 {
- 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- Layer: 1 {
- Version: 100
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 1
- }
- }
- }
- Geometry: 2267733804192, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 356.373046875,-111.398559570313,-464.682739257813,465.7685546875,180.600463867188,-301.664306640625,282.8525390625,-187.547973632813,-395.412353515625,369.7802734375,180.600463867188,-262.379760742188,465.7685546875,-111.398559570313,-301.664306640625,356.373046875,180.600463867188,-464.682739257813,369.7802734375,-187.547973632813,-262.379760742188,282.8525390625,180.600463867188,-395.412353515625,316.2470703125,-187.547973632813,-426.877075195313,413.3828125,-187.547973632813,-280.224243164063
- }
- PolygonVertexIndex: *30 {
- a: 1,4,0,-6,3,7,2,-7,1,5,7,-4,0,4,9,-9,9,4,1,3,-7,2,7,5,0,-9,8,9,6,-3
- }
- Edges: *15 {
- a: 1,3,0,4,11,25,20,2,9,7,6,5,15,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: 0.24194148182869,-0.115239776670933,-0.963423132896423,0.968940675258636,0.246299386024475,0.0221479255706072,-0.989458322525024,-0.115345992147923,0.0875638574361801,-0.459181040525436,0.260453552007675,0.849303662776947,0.978740155696869,-0.115141071379185,0.169736266136169,0.366976529359818,0.249456375837326,-0.896158337593079,-0.47245466709137,-0.114738240838051,0.873854577541351,-0.96137672662735,0.261756032705307,0.0850787684321404,-0.406268954277039,-0.340280145406723,-0.848030030727386,0.601426899433136,-0.333605229854584,0.725943028926849
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0.24651563167572,0.954915702342987,0.165427327156067,0.13145723938942,0.987389028072357,-0.0882159993052483,0.128153502941132,0.98801863193512,-0.0859989747405052,-0.246040225028992,0.955093443393707,0.165108278393745,-0.0174103006720543,0.953231930732727,-0.301737934350967,0.246021911501884,0.955839931964874,-0.160758540034294,-0.109259612858295,0.991446137428284,0.0713937059044838,-0.0502789877355099,0.993384003639221,0.103248983621597,-0.0695557817816734,0.357382982969284,-0.931364357471466,-0.0296367034316063,-0.959748327732086,-0.27929362654686,-0.133491009473801,-0.173116073012352,-0.975813031196594,-0.0328489765524864,0.950421988964081,-0.309223204851151,0.759602725505829,-0.595297336578369,0.261963129043579,-0.146995544433594,0.183358907699585,0.971993744373322,-0.376876890659332,0.68272590637207,0.625978648662567,0.31525531411171,-0.923286080360413,0.219446793198586,-0.0892770886421204,0.874892055988312,0.476018369197845,-0.120806291699409,0.345158189535141,0.930737197399139,-0.239090517163277,0.910160601139069,0.338295161724091,-0.0174103006720543,0.953231930732727,-0.301737934350967,-0.0502789877355099,0.993384003639221,0.103248983621597,-0.1264528632164,0.982851922512054,-0.134208530187607,0.275231719017029,0.915923595428467,0.29211550951004,-0.411186009645462,0.907647490501404,0.0842739790678024,-0.900893270969391,0.342080056667328,-0.267156422138214,-0.477480292320251,0.870342493057251,-0.120484933257103,0.31525531411171,-0.923286080360413,0.219446793198586,-0.376876890659332,0.68272590637207,0.625978648662567,0.0149911530315876,0.990300297737122,0.138132780790329,0.125383287668228,-0.379775166511536,0.916542410850525
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: -0.0195952784270048,0.165749073028564,-0.985973358154297,0.157438576221466,-0.108653604984283,-0.981533348560333,-0.96179062128067,0.102659344673157,-0.253811091184616,-0.897102236747742,-0.1599001288414,-0.411873161792755,0.888172149658203,0.153338968753815,0.433171480894089,0.123401291668415,0.133618265390396,0.98332005739212,0.0950498729944229,-0.061073899269104,0.993597269058228,0.879919707775116,-0.00484393816441298,0.475097805261612,0.237309917807579,-0.900896191596985,-0.363414466381073,0.929758012294769,-0.129053384065628,0.344812035560608,0.240697056055069,0.949481070041656,-0.201371908187866,0.887735188007355,0.169888183474541,0.427860110998154,0.603711843490601,0.795198678970337,0.056490670889616,0.14303894340992,0.976279735565186,-0.16253550350666,0.704449832439423,0.650071501731873,-0.284881561994553,0.857647716999054,0.178191557526588,-0.482377588748932,0.79392397403717,0.351100325584412,-0.496400266885757,0.165751844644547,0.931455016136169,-0.323910385370255,-0.0631636008620262,0.333083301782608,-0.940779387950897,0.888172149658203,0.153338968753815,0.433171480894089,0.879919707775116,-0.00484393816441298,0.475097805261612,0.0705817639827728,0.143866434693336,0.987076818943024,0.00146245770156384,-0.304249405860901,0.952591300010681,-0.834418475627899,-0.337561190128326,-0.43565833568573,-0.360354870557785,-0.932577610015869,0.0210553742945194,-0.77907520532608,-0.355968326330185,0.516070187091827,0.857647716999054,0.178191557526588,-0.482377588748932,0.704449832439423,0.650071501731873,-0.284881561994553,0.881227433681488,-0.0783615633845329,0.466151982545853,0.0724657103419304,-0.917859435081482,-0.390234231948853
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *52 {
- a: 0.00959655176848173,0.990196049213409,0.00959655176848173,0.00980386231094599,0.215432330965996,0.00980386231094599,0.215432330965996,0.990196049213409,0.355288296937943,0.990196049213409,0.23879012465477,0.990196049213409,0.23879012465477,0.00980386231094599,0.355288296937943,0.00980386231094599,0.772254645824432,0.0484199374914169,0.634124636650085,0.254255712032318,0.563217580318451,0.183349058032036,0.679715752601624,0.00980386231094599,0.831113576889038,0.273798108100891,0.969243586063385,0.479633897542953,0.918738782405853,0.500709295272827,0.792414724826813,0.312496721744537,0.397322356700897,0.00980386137962341,0.447827160358429,0.00980386231094599,0.447827160358429,0.990196049213409,0.54061359167099,0.00980386231094599,0.54061359167099,0.990196049213409,0.469706922769547,0.990196049213409,0.469706922769547,0.00980386231094599,0.50840550661087,0.00980386137962341,0.876704692840576,0.518249988555908,0.760206520557404,0.344704777002335
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,4,7,19,20,21,22,23,15,14,24,25
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733793952, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 192.884765625,-111.398559570313,-573.836303710938,355.7255859375,180.600463867188,-465.327270507813,153.0947265625,-187.547973632813,-484.399536132813,282.4091796875,180.600463867188,-395.86181640625,355.7255859375,-111.398559570313,-465.327270507813,192.884765625,180.600463867188,-573.836303710938,282.4091796875,-187.547973632813,-395.86181640625,153.0947265625,180.600463867188,-484.399536132813,171.1669921875,-187.547973632813,-525.0244140625,315.712890625,-187.547973632813,-427.415283203125
- }
- PolygonVertexIndex: *30 {
- a: 1,4,0,-6,3,7,2,-7,1,5,7,-4,0,4,9,-9,9,4,1,3,-7,2,7,5,0,-9,8,9,6,-3
- }
- Edges: *15 {
- a: 1,3,0,4,11,25,20,2,9,7,6,5,15,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.133886635303497,-0.112583987414837,-0.984580755233765,0.903106689453125,0.238207742571831,-0.357288926839828,-0.877683460712433,-0.112789005041122,0.465779304504395,-0.111229665577412,0.256182134151459,0.960207581520081,0.969218254089355,-0.112842299044132,-0.218820780515671,0.00975392945110798,0.242300912737846,-0.970152080059052,-0.114340364933014,-0.112412892282009,0.987061202526093,-0.85365229845047,0.256992161273956,0.453026175498962,-0.695945024490356,-0.339556396007538,-0.632741689682007,0.828465580940247,-0.33258119225502,0.450593501329422
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0.114784471690655,0.935670852661133,0.333683460950851,0.171221494674683,0.947591006755829,0.269730567932129,0.082847036421299,0.98877626657486,-0.124329552054405,-0.158426553010941,0.958318710327148,0.237752646207809,0.16212685406208,0.957936763763428,-0.236795634031296,0.26895734667778,0.962357401847839,-0.0391197241842747,-0.119232088327408,0.992741942405701,0.0157206319272518,-0.0716612040996552,0.99192225933075,0.104665324091911,-0.271038562059402,0.961561858654022,-0.0440127067267895,-0.894025027751923,-0.432470053434372,-0.117000356316566,-0.303191989660263,-0.95242440700531,-0.0310245417058468,-0.989604115486145,0.060085617005825,-0.130665704607964,-0.976682007312775,0.183248654007912,0.111858576536179,-0.243524163961411,-0.570142388343811,-0.784623384475708,0.000834941980428994,-0.803839564323425,-0.594845712184906,-0.540711462497711,0.827620267868042,0.150585442781448,0.0894152671098709,0.872802972793579,0.479812443256378,0.171221494674683,0.947591006755829,0.269730567932129,-0.114784471690655,0.935670852661133,0.333683460950851,-0.262458026409149,0.92432689666748,-0.277012139558792,0.119364202022552,0.984824776649475,0.125985249876976,-0.119232088327408,0.992741942405701,0.0157206319272518,0.26895734667778,0.962357401847839,-0.0391197241842747,-0.359527111053467,0.90616899728775,0.222706094384193,-0.940870583057404,0.326421678066254,0.0906173884868622,-0.491094142198563,0.867924988269806,0.0743827074766159,-0.540711462497711,0.827620267868042,0.150585442781448,0.000834941980428994,-0.803839564323425,-0.594845712184906,-0.972799718379974,-0.18882018327713,-0.134192392230034,-0.134634092450142,0.990799784660339,-0.0137721952050924
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: -0.413790792226791,0.260340541601181,-0.872353136539459,-0.176915630698204,0.298894584178925,-0.937743484973907,-0.98752760887146,0.0982156693935394,0.123056717216969,-0.987322688102722,-0.151378825306892,-0.0477343201637268,0.980480909347534,-0.129336729645729,0.148085027933121,0.446026533842087,-0.0884500667452812,0.890638470649719,0.464171797037125,0.0417381040751934,0.884761273860931,0.990853667259216,0.0587665289640427,0.121472291648388,-0.333071202039719,-0.136587232351303,-0.932956337928772,0.447910994291306,-0.868481338024139,-0.212405025959015,-0.423500061035156,0.163838058710098,-0.890957236289978,0.0911689028143883,0.964759171009064,-0.246835827827454,-0.167829602956772,-0.976598501205444,0.134493246674538,0.0362202934920788,-0.813759386539459,0.580072224140167,-0.560039341449738,-0.49318540096283,0.665675640106201,-0.472537577152252,-0.446929812431335,0.759580075740814,0.552855968475342,0.357218146324158,-0.752825081348419,-0.176915630698204,0.298894584178925,-0.937743484973907,-0.413790792226791,0.260340541601181,-0.872353136539459,0.958511233329773,0.282826125621796,0.0355754271149635,0.98624461889267,-0.13222499191761,0.0991873666644096,0.464171797037125,0.0417381040751934,0.884761273860931,0.446026533842087,-0.0884500667452812,0.890638470649719,-0.933083713054657,-0.346623778343201,-0.0959523022174835,-0.31118643283844,-0.938495457172394,0.149630427360535,-0.52391517162323,-0.362501978874207,0.770782172679901,-0.472537577152252,-0.446929812431335,0.759580075740814,-0.560039341449738,-0.49318540096283,0.665675640106201,-0.201461836695671,0.975556612014771,0.087763786315918,0.459940612316132,0.0747973918914795,0.884793758392334
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.0800928771495819,0.990196049213409,0.0800928771495819,0.00980386231094599,0.217102289199829,0.00980386231094599,0.217102289199829,0.990196049213409,0.446460396051407,0.990196049213409,0.330960839986801,0.990196049213409,0.330960839986801,0.00980386231094599,0.446460396051407,0.00980386231094599,0.538629770278931,0.00980386231094599,0.675639569759369,0.215418145060539,0.582994878292084,0.253790348768234,0.467492431402206,0.0804868787527084,0.696673929691315,0.215418145060539,0.833683729171753,0.00980386231094599,0.872508227825165,0.0483804121613503,0.747236490249634,0.236360460519791,0.0412700846791267,0.00980386137962341,0.00895867496728897,0.990196049213409,0.00895867496728897,0.00980386231094599,0.238316774368286,0.990196049213409,0.238316774368286,0.00980386231094599,0.288878977298737,0.00980386137962341,0.9048210978508,0.0804868787527084,0.7893186211586,0.253790348768234
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,0,17,18,6,5,19,20,21,15,14,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733788320, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -0.25390625,-111.398559570313,-612.003540039063,191.818359375,180.600463867188,-574.130249023438,-0.2392578125,-187.547973632813,-515.490112304688,152.2841796875,180.600463867188,-484.601318359375,191.818359375,-111.398559570313,-574.130249023438,-0.25390625,180.600463867188,-612.003540039063,152.2841796875,-187.547973632813,-484.601318359375,-0.2392578125,180.600463867188,-515.490112304688,-0.24609375,-187.547973632813,-559.32958984375,170.2421875,-187.547973632813,-525.268310546875
- }
- PolygonVertexIndex: *30 {
- a: 1,4,0,-6,3,7,2,-7,1,5,7,-4,0,4,9,-9,9,4,1,3,-7,2,7,5,0,-9,8,9,6,-3
- }
- Edges: *15 {
- a: 1,3,0,4,11,25,20,2,9,7,6,5,15,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.503842651844025,-0.110852472484112,-0.856652975082397,0.685972571372986,0.233568727970123,-0.689120650291443,-0.620609521865845,-0.110879689455032,0.776240587234497,0.26282462477684,0.253183573484421,0.931032299995422,0.801580905914307,-0.111046530306339,-0.587483286857605,-0.361434161663055,0.235432162880898,-0.902184545993805,0.270004153251648,-0.110780313611031,0.956465125083923,-0.604078829288483,0.253398805856705,0.755564510822296,-0.891175806522369,-0.33787402510643,-0.3027323782444,0.938398599624634,-0.334952265024185,0.0849413424730301
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0.053673654794693,-0.960741877555847,-0.272202849388123,-0.0290371440351009,-0.988671541213989,0.14726023375988,-0.0285471603274345,-0.989052712917328,0.144775331020355,0.0536762326955795,-0.960738003253937,-0.272215962409973,0.0560358874499798,0.959322512149811,-0.276695370674133,0.0560740754008293,0.959265947341919,-0.27688392996788,-0.0247033573687077,0.992225050926209,0.121980831027031,-0.0246853586286306,0.992236375808716,0.121891960501671,-0.353081881999969,0.934953212738037,-0.0345783531665802,-0.505310416221619,-0.862639725208282,-0.0226746071130037,-0.386762201786041,-0.922179579734802,5.86956812185235e-005,-0.63934201002121,0.768395185470581,-0.0284739919006824,-0.830706834793091,0.334041178226471,0.445356845855713,-0.570191085338593,-0.437577277421951,-0.695275723934174,-0.214856222271919,-0.758086919784546,-0.615744292736053,-0.417546629905701,0.871800184249878,0.256162971258163,0.272829383611679,0.86902517080307,0.41274631023407,0.589446842670441,0.311291128396988,0.745419561862946,0.0979634076356888,0.908810257911682,0.405545651912689,-0.34750759601593,0.925035417079926,-0.153453558683395,0.157609716057777,0.985045790672302,0.0695983693003654,-0.175844341516495,0.984418034553528,2.74181365966797e-005,0.386761367321014,0.922179937362671,-5.95003439229913e-005,-0.252106606960297,0.906879425048828,0.337656557559967,-0.836008727550507,0.312096923589706,0.451314747333527,-0.419903308153152,0.866931676864624,0.26853421330452,-0.417546629905701,0.871800184249878,0.256162971258163,-0.214856222271919,-0.758086919784546,-0.615744292736053,-0.332773596048355,-0.942883193492889,-0.0152673050761223,-0.175844341516495,0.984418034553528,2.74181365966797e-005
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.725645065307617,-0.149736061692238,0.671579003334045,0.597180783748627,0.100982144474983,0.795724630355835,0.863323628902435,-0.0973989963531494,-0.495162397623062,0.930851340293884,0.146814003586769,-0.334606349468231,0.963215053081512,-0.124893561005592,-0.237946152687073,0.794949352741241,0.124892130494118,0.593681275844574,0.783730566501617,-0.0565267093479633,0.618523359298706,0.962542653083801,0.0565220192074776,-0.265173316001892,-0.636219143867493,-0.267035812139511,-0.72382116317749,0.783598482608795,-0.447687834501266,-0.430753916501999,-0.696780920028687,0.292188286781311,-0.655074298381805,0.72260981798172,0.587764382362366,-0.363824397325516,-0.236788481473923,-0.936017274856567,0.260390102863312,0.179861351847649,-0.892297506332397,0.414071351289749,-0.2706378698349,-0.559563398361206,0.783354222774506,-0.177371293306351,-0.354691058397293,0.918005228042603,0.212066486477852,0.364146053791046,-0.906876802444458,-0.100102052092552,0.943804264068604,-0.31498110294342,-0.721002578735352,0.34570175409317,-0.600537657737732,0.900089859962463,0.283209413290024,-0.331105500459671,0.949872076511383,-0.131956338882446,-0.283426433801651,0.764148235321045,0.136480495333672,0.630436837673187,0.696781396865845,-0.29218715429306,0.655074298381805,-0.897667825222015,-0.349487364292145,0.268423408269882,-0.217329412698746,-0.94356095790863,0.24992136657238,-0.171717569231987,-0.366429537534714,0.914462983608246,-0.177371293306351,-0.354691058397293,0.918005228042603,-0.2706378698349,-0.559563398361206,0.783354222774506,-0.903526186943054,0.314164102077484,0.291446954011917,0.764148235321045,0.136480495333672,0.630436837673187
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *56 {
- a: 0.246304228901863,0.00956071261316538,0.246304228901863,0.965637862682343,0.00980119127780199,0.965637862682343,0.00980119127780199,0.00956071261316538,0.468636512756348,0.965637862682343,0.2692990899086,0.965637862682343,0.2692990899086,0.00956071261316538,0.468636512756348,0.00956071261316538,0.815962791442871,0.00956071261316538,0.862595856189728,0.246063753962517,0.764808475971222,0.246063753962517,0.725512683391571,0.0467263422906399,0.853104174137115,0.502531051635742,0.899743258953094,0.266027987003326,0.949108004570007,0.286311805248261,0.906476676464081,0.502531051635742,0.532642960548401,0.00956071261316538,0.58200865983963,0.00956071261316538,0.58200865983963,0.965637862682343,0.491557031869888,0.965637862682343,0.491557031869888,0.00956071261316538,0.702426016330719,0.00956071261316538,0.702426016330719,0.965637862682343,0.604635834693909,0.965637862682343,0.604635834693909,0.00956071261316538,0.658006548881531,0.00956071261316538,0.990193367004395,0.303193628787994,0.950897574424744,0.502531051635742
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,15,14,26,27
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733805216, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -193.1376953125,-111.398559570313,-573.586303710938,-1.0478515625,180.600463867188,-612.002563476563,-153.330078125,-187.547973632813,-484.157104492188,-0.830078125,180.600463867188,-515.489135742188,-1.0478515625,-111.398559570313,-612.002563476563,-193.1376953125,180.600463867188,-573.586303710938,-0.830078125,-187.547973632813,-515.489135742188,-153.330078125,180.600463867188,-484.157104492188,-171.4130859375,-187.547973632813,-524.77880859375,-0.9296875,-187.547973632813,-559.328857421875
- }
- PolygonVertexIndex: *30 {
- a: 1,4,0,-6,3,7,2,-7,1,5,7,-4,0,4,9,-9,9,4,1,3,-7,2,7,5,0,-9,8,9,6,-3
- }
- Edges: *15 {
- a: 1,3,0,4,11,25,20,2,9,7,6,5,15,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.803066313266754,-0.111069589853287,-0.585446894168854,0.358758360147476,0.235435619950294,-0.903251051902771,-0.26718670129776,-0.110802836716175,0.957253336906433,0.605987966060638,0.253484547138214,0.754005372524261,0.501310169696808,-0.110883943736553,-0.858133316040039,-0.687714040279388,0.233565807342529,-0.687383830547333,0.622583031654358,-0.110913142561913,0.774653851985931,-0.260078519582748,0.253244072198868,0.931786775588989,-0.938114047050476,-0.335067570209503,0.0875885114073753,0.890304386615753,-0.338067144155502,-0.30507156252861
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0.0544038042426109,-0.960749328136444,-0.272031158208847,0.0289401076734066,-0.989051342010498,0.144706979393959,0.0294365957379341,-0.988670229911804,0.147189542651176,-0.0544024929404259,-0.960751295089722,-0.272024601697922,-0.0568663254380226,0.959248900413513,-0.276781141757965,-0.0568260364234447,0.959307849407196,-0.276585012674332,0.0250325351953506,0.992234230041504,0.121838942170143,0.0250513553619385,0.992222428321838,0.121930532157421,-0.507206201553345,0.86151510477066,0.0231019724160433,-0.352320432662964,-0.935235738754272,0.0347063839435577,-0.642007052898407,-0.76614898443222,0.0290307104587555,-0.386152327060699,0.922435104846954,0.000239551096456125,-0.568277955055237,0.438353836536407,0.696352005004883,-0.83227276802063,-0.333054274320602,-0.443167060613632,-0.418506801128387,-0.871511995792389,-0.255575597286224,-0.21334470808506,0.758334159851074,0.615965485572815,0.42080345749855,0.866822898387909,0.267474323511124,0.837406396865845,0.311817437410355,0.44891020655632,0.252963483333588,0.906933724880219,0.33686900138855,-0.386825799942017,0.922152400016785,0.000875860452651978,0.175870403647423,0.984413325786591,-0.000399604497943074,-0.157425582408905,0.985041260719299,0.0700789913535118,0.347114086151123,0.92500638961792,-0.154515475034714,-0.0968180745840073,0.908869028091431,0.405688762664795,-0.587576985359192,0.31113076210022,0.746961176395416,-0.271757662296295,0.868969738483429,0.413569182157516,-0.21334470808506,0.758334159851074,0.615965485572815,-0.418506801128387,-0.871511995792389,-0.255575597286224,-0.175523191690445,-0.984475255012512,0.000111676738015376,-0.334836423397064,0.942147314548492,0.0155954007059336
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.93184369802475,-0.146733745932579,0.331868231296539,0.864783585071564,0.0973775386810303,0.492612421512604,0.595162212848663,-0.100969403982162,-0.79723733663559,0.723940432071686,0.149679735302925,-0.67342871427536,0.793438613414764,-0.124848514795303,-0.595708012580872,0.963913977146149,0.124883584678173,0.235104531049728,0.963319599628448,-0.0565162152051926,0.262338072061539,0.782152652740479,0.0565057545900345,-0.620519399642944,-0.783603370189667,-0.449846476316452,-0.428490221500397,0.634759724140167,-0.266047418117523,-0.725464582443237,-0.721239328384399,0.590663433074951,-0.361843377351761,0.695460200309753,0.291306048631668,-0.65686821937561,-0.1792893409729,-0.891913414001465,0.415145576000214,0.236664861440659,-0.936365127563477,0.259249210357666,0.179471805691719,-0.355214625597,0.917394399642944,0.272811412811279,-0.559159278869629,0.78288871049881,-0.174018740653992,0.36650875210762,-0.91399610042572,-0.217803999781609,0.943649649620056,-0.249172225594521,-0.89849978685379,0.349344164133072,-0.265813559293747,0.695085823535919,0.292199492454529,-0.656867682933807,0.762535154819489,-0.136487454175949,-0.63238537311554,0.950698912143707,0.131971970200539,0.280633151531219,0.901038825511932,-0.283250153064728,0.328478872776031,-0.71949702501297,-0.345548927783966,0.602428376674652,-0.0991858616471291,-0.943854451179504,0.315120548009872,0.214685365557671,-0.364172160625458,0.906249821186066,0.272811412811279,-0.559159278869629,0.78288871049881,0.179471805691719,-0.355214625597,0.917394399642944,-0.762615263462067,0.136039257049561,0.632385551929474,0.903601586818695,0.316356390714645,0.288830190896988
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *56 {
- a: 0.246294885873795,0.00955893658101559,0.246294885873795,0.965458512306213,0.00980543810874224,0.965458512306213,0.00980543810874224,0.00955893658101559,0.468573749065399,0.965458512306213,0.269303679466248,0.965458512306213,0.269303679466248,0.00955893658101559,0.468573749065399,0.00955893658101559,0.863139450550079,0.00976523943245411,0.815847635269165,0.246254697442055,0.725517451763153,0.208828985691071,0.76537024974823,0.00955893658101559,0.899867415428162,0.502914786338806,0.852575540542603,0.266425311565399,0.905934810638428,0.266312718391418,0.949166715145111,0.482488989830017,0.535970270633698,0.00955893658101559,0.589331269264221,0.00955893658101559,0.589331269264221,0.965458512306213,0.491559028625488,0.965458512306213,0.491559028625488,0.00955893658101559,0.702765822410584,0.00955893658101559,0.702765822410584,0.965458512306213,0.612436354160309,0.965458512306213,0.612436354160309,0.00955893658101559,0.66173529624939,0.00955893658101559,0.950344741344452,0.266219019889832,0.990197539329529,0.465489059686661
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,15,14,26,27
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733787808, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -356.8759765625,-111.398559570313,-464.18212890625,-193.91015625,180.600463867188,-573.200317382813,-283.3212890625,-187.547973632813,-394.92822265625,-154.056640625,180.600463867188,-483.783569335938,-193.91015625,-111.398559570313,-573.200317382813,-356.8759765625,180.600463867188,-464.18212890625,-154.056640625,-187.547973632813,-483.783569335938,-283.3212890625,180.600463867188,-394.92822265625,-316.732421875,-187.547973632813,-426.385620117188,-172.16015625,-187.547973632813,-524.3994140625
- }
- PolygonVertexIndex: *30 {
- a: 1,4,0,-6,3,7,2,-7,1,5,7,-4,0,4,9,-9,9,4,1,3,-7,2,7,5,0,-9,8,9,6,-3
- }
- Edges: *15 {
- a: 1,3,0,4,11,25,20,2,9,7,6,5,15,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.969497382640839,-0.112914353609085,-0.217543214559555,-0.0122024044394493,0.242214173078537,-0.970146059989929,0.11677460372448,-0.11248617619276,0.986767709255219,0.854143559932709,0.257231801748276,0.451963007450104,0.131499096751213,-0.112653940916061,-0.984894454479218,-0.90354973077774,0.238104954361916,-0.35623574256897,0.878238916397095,-0.112864725291729,0.464712858200073,0.113591395318508,0.256414711475372,0.959869027137756,-0.827198207378387,-0.332995474338531,0.45261150598526,0.694949746131897,-0.340026587247849,-0.633582532405853
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0.158732503652573,0.958384871482849,0.237281262874603,-0.083078607916832,0.988774418830872,-0.124190054833889,-0.210280954837799,0.839175522327423,0.501564145088196,0.128901079297066,0.94392192363739,0.303967118263245,-0.302352100610733,0.952750563621521,0.0291491970419884,-0.162661105394363,0.9578857421875,-0.236635491251946,0.0718784332275391,0.991917014122009,0.104567043483257,0.103618510067463,0.993576526641846,0.0454860180616379,-0.896801829338074,0.426473617553711,0.117756590247154,-0.270790755748749,-0.961628377437592,0.0440843813121319,-0.989974141120911,-0.0524264425039291,0.131158992648125,-0.303309470415115,0.952382326126099,0.0311680845916271,-0.242514759302139,0.570525586605072,0.784657418727875,-0.977165937423706,-0.181998908519745,-0.109649866819382,-0.541492998600006,-0.827216148376465,-0.149996131658554,0.00172425806522369,0.803979098796844,0.59465503692627,0.491685807704926,0.867651283740997,0.0736643075942993,0.941374540328979,0.325561821460724,0.0884501710534096,0.359753251075745,0.906313121318817,0.22175221145153,-0.302352100610733,0.952750563621521,0.0291491970419884,0.103618510067463,0.993576526641846,0.0454860180616379,-0.118954300880432,0.984828650951386,0.126342251896858,0.261626780033112,0.924303531646729,-0.277874976396561,0.128901079297066,0.94392192363739,0.303967118263245,-0.210280954837799,0.839175522327423,0.501564145088196,-0.0884009525179863,0.872577428817749,0.48041033744812,0.00172425806522369,0.803979098796844,0.59465503692627,-0.541492998600006,-0.827216148376465,-0.149996131658554,-0.134652584791183,-0.990796267986298,0.0138390585780144,-0.975530624389648,0.173374906182289,0.13520859181881
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: -0.987246215343475,0.151098310947418,0.0501418747007847,-0.9878289103508,-0.0981545448303223,-0.120663814246655,-0.125923171639442,-0.532010316848755,0.837322175502777,-0.408634781837463,-0.228730216622353,0.883572340011597,0.423109918832779,0.16154956817627,-0.891560316085815,0.980121612548828,0.129253596067429,-0.150516241788864,0.990553975105286,-0.0587165355682373,-0.123916059732437,0.466861575841904,-0.00820526853203774,-0.884292364120483,-0.442264080047607,-0.871465802192688,-0.212014213204384,0.332069665193558,-0.136297762393951,-0.933355569839478,-0.0839535966515541,0.965144157409668,-0.247888550162315,0.422424107789993,0.163706675171852,-0.891492009162903,-0.0355148762464523,-0.813480734825134,0.580506503582001,0.166897222399712,-0.976824164390564,0.134014263749123,0.473107039928436,-0.447320252656937,0.758995592594147,0.561907649040222,-0.492677956819534,0.664475858211517,-0.524680852890015,0.362716495990753,-0.770160257816315,-0.310679823160172,0.938785791397095,-0.148860648274422,-0.932967662811279,0.346307307481766,0.0981964915990829,0.423109918832779,0.16154956817627,-0.891560316085815,0.466861575841904,-0.00820526853203774,-0.884292364120483,0.986008942127228,0.132133826613426,-0.101622216403484,0.95846152305603,-0.282691657543182,-0.0379080325365067,-0.408634781837463,-0.228730216622353,0.883572340011597,-0.125923171639442,-0.532010316848755,0.837322175502777,0.554912984371185,-0.357383221387863,0.751231491565704,0.561907649040222,-0.492677956819534,0.664475858211517,0.473107039928436,-0.447320252656937,0.758995592594147,-0.458873838186264,0.074728786945343,0.885353267192841,0.186289891600609,0.97841089963913,0.0894882529973984
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.00896450877189636,0.990196049213409,0.00896450877189636,0.00980386231094599,0.146616280078888,0.00980386231094599,0.146616280078888,0.990196049213409,0.354299753904343,0.990196049213409,0.238385215401649,0.990196049213409,0.238385215401649,0.00980386231094599,0.354299753904343,0.00980386231094599,0.676180958747864,0.0481885112822056,0.538530170917511,0.253952145576477,0.467623144388199,0.183038875460625,0.58354252576828,0.00980386231094599,0.834517657756805,0.253952145576477,0.696866869926453,0.0481885112822056,0.74742591381073,0.0272393859922886,0.873216450214386,0.215249925851822,0.396381556987762,0.00980386137962341,0.446943670511246,0.00980386231094599,0.446943670511246,0.990196049213409,0.217522948980331,0.00980386231094599,0.217522948980331,0.990196049213409,0.185314893722534,0.00980386137962341,0.789505302906036,0.00980386231094599,0.90542471408844,0.183038875460625
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,4,7,19,20,3,2,21,15,14,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733810336, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -466.275390625,-111.398559570313,-300.448120117188,-357.45703125,180.600463867188,-463.603393554688,-370.1787109375,-187.547973632813,-261.3876953125,-283.8701171875,180.600463867188,-394.367919921875,-357.45703125,-111.398559570313,-463.603393554688,-466.275390625,180.600463867188,-300.448120117188,-283.8701171875,-187.547973632813,-394.367919921875,-370.1787109375,180.600463867188,-261.3876953125,-413.830078125,-187.547973632813,-279.130249023438,-317.296875,-187.547973632813,-425.816772460938
- }
- PolygonVertexIndex: *30 {
- a: 1,4,0,-6,3,7,2,-7,1,5,7,-4,0,4,9,-9,9,4,1,3,-7,2,7,5,0,-9,8,9,6,-3
- }
- Edges: *15 {
- a: 1,3,0,4,11,25,20,2,9,7,6,5,15,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.978168427944183,-0.115051232278347,0.173059925436974,-0.368498086929321,0.249158829450607,-0.89561665058136,0.474130839109421,-0.114682115614414,0.872953534126282,0.961626648902893,0.261873960494995,0.0818302631378174,-0.243109241127968,-0.115215890109539,-0.963131904602051,-0.9689040184021,0.246126994490623,0.0254242531955242,0.989746987819672,-0.11535719037056,0.0842231959104538,0.46081081032753,0.260425359010696,0.848429143428802,-0.599409759044647,-0.333067208528519,0.727855980396271,0.405874371528625,-0.339896589517593,-0.8483726978302
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0.246397033333778,0.955134451389313,0.164337441325188,-0.128553822636604,0.987989127635956,-0.0857405140995979,-0.131674095988274,0.987395226955414,-0.0878216102719307,0.246902376413345,0.954945921897888,0.16467447578907,-0.246660724282265,0.955787301063538,-0.160091012716293,-0.0506613999605179,0.962138295173645,-0.267812460660934,0.0210258048027754,0.992672860622406,0.118990115821362,0.109506666660309,0.991441786289215,0.071073479950428,0.0295847840607166,-0.959782361984253,-0.27918216586113,0.0690814852714539,0.367740005254745,-0.927359282970428,0.0328379943966866,0.950320482254028,-0.309536337852478,0.133110746741295,-0.184510916471481,-0.97377473115921,0.150005340576172,0.185437396168709,0.971139192581177,-0.759820580482483,-0.594597220420837,0.262919813394547,-0.315391451120377,-0.923335731029511,0.219042122364044,0.378329813480377,0.683448493480682,0.624311506748199,0.477135717868805,0.870528697967529,-0.120504319667816,0.900646507740021,0.341885626316071,-0.268235474824905,0.411274760961533,0.907696962356567,0.0833020880818367,-0.274357944726944,0.916347742080688,0.291607201099396,0.125958830118179,0.982960045337677,-0.133880719542503,0.0210258048027754,0.992672860622406,0.118990115821362,-0.0506613999605179,0.962138295173645,-0.267812460660934,0.24004852771759,0.910077512264252,0.337839812040329,0.123896941542625,0.345715969800949,0.930123627185822,0.0907500311732292,0.875176429748535,0.475216329097748,0.378329813480377,0.683448493480682,0.624311506748199,-0.315391451120377,-0.923335731029511,0.219042122364044,-0.124025970697403,-0.401658892631531,0.907352089881897,-0.014979999512434,0.990286529064178,0.138232588768005
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: -0.896380364894867,0.160119250416756,0.413357079029083,-0.961442530155182,-0.102969974279404,0.255000859498978,0.160774558782578,0.108691833913326,0.980988085269928,-0.0162521228194237,-0.165831059217453,0.986020267009735,0.120136007666588,-0.13376347720623,-0.983704566955566,0.886051177978516,-0.0804282650351524,-0.456557214260101,0.880203306674957,0.0380623266100883,-0.473068058490753,0.0917012840509415,0.0611217655241489,-0.993909060955048,0.929157733917236,0.129374727606773,-0.346306711435318,0.237598061561584,0.896765649318695,0.373307585716248,0.886890709400177,-0.17049840092659,-0.429366081953049,0.239907756447792,-0.94730019569397,0.212288871407509,0.143822565674782,-0.97589772939682,0.164130732417107,0.602968156337738,-0.795725762844086,-0.0570086687803268,0.857784450054169,-0.178665906190872,0.481958746910095,0.705389618873596,-0.64958792924881,0.283656418323517,0.77949184179306,-0.355879306793213,0.515502154827118,0.360185980796814,-0.932651877403259,0.0206532813608646,0.833703815937042,-0.337647795677185,-0.436957627534866,0.00137938023544848,-0.302868008613586,0.953031539916992,-0.0673438534140587,0.143116697669029,0.987412095069885,0.880203306674957,0.0380623266100883,-0.473068058490753,0.886051177978516,-0.0804282650351524,-0.456557214260101,-0.0600132010877132,-0.333437472581863,0.940860211849213,0.166841477155685,-0.931259274482727,0.323913991451263,0.79528135061264,-0.350902229547501,0.494363456964493,0.705389618873596,-0.64958792924881,0.283656418323517,0.857784450054169,-0.178665906190872,0.481958746910095,0.0708411559462547,0.908494770526886,0.411847978830338,0.880327045917511,0.0786171779036522,-0.467807441949844
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.00893942173570395,0.990196049213409,0.00893942173570395,0.00980386231094599,0.214948296546936,0.00980386231094599,0.214948296546936,0.990196049213409,0.444721788167953,0.990196049213409,0.329051315784454,0.990196049213409,0.329051315784454,0.00980386231094599,0.444721788167953,0.00980386231094599,0.602890431880951,0.254187256097794,0.465488582849503,0.0481784008443356,0.558133244514465,0.00980386231094599,0.673803746700287,0.183280602097511,0.694570541381836,0.215812727808952,0.831972360610962,0.00980386231094599,0.870674610137939,0.0485024675726891,0.74513304233551,0.236756324768066,0.0476380288600922,0.00980386137962341,0.0798460841178894,0.990196049213409,0.0798460841178894,0.00980386231094599,0.23640663921833,0.990196049213409,0.23640663921833,0.00980386231094599,0.286969155073166,0.00980386137962341,0.902885675430298,0.0807105302810669,0.787215173244476,0.254187256097794
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,0,17,18,6,5,19,20,21,15,14,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733784736, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -466.46875,180.600463867188,-299.67578125,-504.693359375,180.600463867188,-107.310302734375,-370.357421875,180.600463867188,-260.640014648438,-400.6826171875,180.600463867188,-103.865844726563,-466.46875,-111.398559570313,-299.67578125,-504.693359375,-111.398559570313,-107.310302734375,-370.357421875,-187.547973632813,-260.640014648438,-400.6826171875,-187.547973632813,-103.865844726563,-414.015625,-187.547973632813,-278.371337890625,-447.9267578125,-187.547973632813,-105.430419921875
- }
- PolygonVertexIndex: *30 {
- a: 0,4,5,-2,2,3,7,-7,3,2,0,-2,6,7,9,-9,8,4,0,2,-7,7,3,1,5,-10,8,9,5,-5
- }
- Edges: *15 {
- a: 1,3,0,4,11,9,15,24,2,7,6,5,16,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.669056951999664,0.251207232475281,-0.69946962594986,-0.887273967266083,0.252213031053543,0.386177897453308,0.920757353305817,0.264193415641785,-0.287067264318466,0.740085899829865,0.262219995260239,0.619284689426422,-0.574838697910309,-0.116795115172863,-0.809888482093811,-0.845843911170959,-0.115948416292667,0.520676553249359,0.948158085346222,-0.116665504872799,-0.295610070228577,0.761767685413361,-0.115742191672325,0.637427449226379,0.0781244114041328,-0.338106572628021,-0.937859535217285,-0.305552184581757,-0.335109382867813,0.891257226467133
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0.296351730823517,0.953261733055115,0.0588875412940979,-0.156699642539024,0.987155437469482,-0.0311375223100185,-0.154241189360619,0.987557768821716,-0.0306490026414394,0.296599388122559,0.953181684017181,0.05893674492836,-0.291569530963898,0.954885601997375,-0.0563989728689194,-0.291226506233215,0.954994142055511,-0.0563326254487038,0.129627451300621,0.991245746612549,0.0250741429626942,0.129791811108589,0.991223454475403,0.0251059308648109,0.0133581906557083,0.914938986301422,-0.403371036052704,0.0353893227875233,-0.789340496063232,-0.6129350066185,0.0307839810848236,-0.930970668792725,-0.363793909549713,0.0288807488977909,0.865991652011871,-0.499223947525024,-0.0186920762062073,-0.949042022228241,0.314594894647598,-0.00615194439888,0.982574939727783,0.185765027999878,0.242973729968071,0.877593696117401,0.413271307945251,-0.59488844871521,-0.770707786083221,0.228292226791382,-0.397768020629883,-0.873184144496918,0.281656175851822,-0.73984295129776,-0.348637074232101,0.57539963722229,-0.409628182649612,-0.909932196140289,0.0650250315666199,0.14904773235321,-0.918210089206696,-0.366981089115143,-0.0684476941823959,-0.983316659927368,0.168532475829124,-0.00615194439888,0.982574939727783,0.185765027999878,0.0133582819253206,0.914939045906067,-0.403371155261993,0.354264140129089,0.90879887342453,0.220412462949753,0.453355371952057,0.35810986161232,0.816226840019226,0.249412730336189,0.875172257423401,0.414568364620209,-0.59488844871521,-0.770707786083221,0.228292226791382,0.242973729968071,0.877593696117401,0.413271307945251,0.450347602367401,0.367918878793716,0.813524961471558,-0.687086164951324,-0.4686179459095,0.55525666475296
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: -0.681570589542389,0.167889922857285,0.712232053279877,-0.803122460842133,-0.109010174870491,0.585756838321686,0.510644495487213,0.106234043836594,0.85320371389389,0.35323303937912,-0.166833162307739,0.920539677143097,-0.259216099977493,-0.135629817843437,-0.956248700618744,0.606184780597687,0.138661131262779,-0.783143103122711,0.634749352931976,-0.0635274276137352,-0.770102262496948,-0.290086597204208,0.0621721521019936,-0.954978764057159,0.672379672527313,-0.306801736354828,-0.673630654811859,0.388527452945709,-0.554205238819122,0.736140608787537,0.742573320865631,0.264931321144104,-0.615139245986938,0.460337787866592,0.431795239448547,0.77565586566925,0.317248970270157,0.292760133743286,0.90202260017395,0.647821068763733,0.145431220531464,-0.747781813144684,0.920652806758881,-0.342828035354614,0.186727851629257,0.800002753734589,-0.540086627006531,0.261346787214279,0.914153754711151,-0.351046234369278,0.202704936265945,0.349561005830765,-0.929952204227448,-0.114000022411346,0.620135068893433,-0.330027878284454,-0.711698055267334,0.360542207956314,-0.295113801956177,0.884826183319092,0.310340404510498,0.139561608433723,0.940325260162354,0.647821068763733,0.145431220531464,-0.747781813144684,0.672379672527313,-0.306801855564117,-0.673630595207214,0.295367389917374,-0.332375288009644,0.895703554153442,0.281099617481232,-0.926452100276947,0.250339239835739,0.9189293384552,-0.348963171243668,0.183830231428146,0.800002753734589,-0.540086627006531,0.261346787214279,0.920652806758881,-0.342828035354614,0.186727851629257,0.285893648862839,-0.922600567340851,0.258984863758087,0.444379508495331,-0.875646114349365,-0.189131394028664
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *56 {
- a: 0.00980384275317192,0.965264081954956,0.00980384275317192,0.00955701246857643,0.246579900383949,0.00955701246857643,0.246579900383949,0.965264081954956,0.468666881322861,0.965264081954956,0.269299119710922,0.965264081954956,0.269299119710922,0.00955701246857643,0.468666881322861,0.00955701246857643,0.823260426521301,0.00955701246857643,0.862874627113342,0.208924755454063,0.772562682628632,0.246333062648773,0.725510895252228,0.00955701246857643,0.990198373794556,0.303705483675003,0.95058411359787,0.503073215484619,0.906183183193207,0.503073215484619,0.949175775051117,0.286713421344757,0.54084575176239,0.965264081954956,0.491556346416473,0.965264081954956,0.491556346416473,0.00955701246857643,0.581868350505829,0.00955701246857643,0.581868350505829,0.965264081954956,0.702385425567627,0.00955701246857643,0.702385425567627,0.965264081954956,0.604635894298553,0.965264081954956,0.604635894298553,0.00955701246857643,0.657984495162964,0.00955701246857643,0.852834582328796,0.503073215484619,0.8998863697052,0.266297161579132
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,15,14,26,27
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733801632, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: -504.693359375,-111.398559570313,-106.731201171875,-505.037109375,-111.398559570313,0.6439208984375,-400.6826171875,-187.547973632813,-103.30517578125,-400.6826171875,-187.547973632813,0.623291015625,-504.693359375,180.600463867188,-106.731201171875,-505.037109375,180.600463867188,0.6439208984375,-400.6826171875,180.600463867188,-103.30517578125,-400.6826171875,180.600463867188,0.623291015625,-447.9267578125,-187.547973632813,-104.861206054688,-448.0849609375,-187.547973632813,0.632568359375
- }
- PolygonVertexIndex: *30 {
- a: 4,0,1,-6,6,7,3,-3,4,5,7,-7,1,0,8,-10,8,0,4,6,-3,3,7,5,1,-10,9,8,2,-4
- }
- Edges: *15 {
- a: 1,0,6,4,13,25,2,11,3,9,7,5,20,15,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: -0.54300332069397,-0.0867072865366936,-0.835242033004761,-0.563092350959778,-0.0863018035888672,0.821875274181366,0.734190702438354,-0.0941523015499115,-0.672383427619934,0.72280889749527,-0.0936077907681465,0.684678673744202,-0.623671889305115,0.223286584019661,-0.749117195606232,-0.638525903224945,0.223735705018044,0.736360669136047,0.721713364124298,0.205587893724442,-0.66095644235611,0.710663080215454,0.204438656568527,0.673173606395721,-0.124384708702564,-0.209281265735626,-0.969912230968475,-0.153274476528168,-0.208260834217072,0.965988755226135
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0.335922688245773,0.941888928413391,0.00107543158810586,-0.156929656863213,0.987609624862671,-0.00050240004202351,-0.152189821004868,0.988351225852966,-0.000487223325762898,0.331772267818451,0.943358898162842,0.00106212496757507,-0.273962259292603,0.961740493774414,0,-0.276461094617844,0.96102511882782,0,0.128433048725128,0.991718232631683,7.45058059692383e-009,0.127197936177254,0.991877436637878,0,0.00965133309364319,-0.956062257289886,-0.293005049228668,0.0282373577356339,0.962975859642029,-0.268104761838913,0.0657998025417328,0.933339357376099,-0.352913618087769,0.0280463397502899,-0.962775588035584,-0.268843114376068,0.667889475822449,0.538165688514709,0.514102458953857,-0.697404265403748,-0.507461726665497,0.506072998046875,-0.580847799777985,-0.777152180671692,0.242178589105606,0.261109411716461,0.934261858463287,0.242851227521896,-0.291765689849854,-0.926573932170868,0.237347006797791,-0.697404265403748,-0.507461726665497,0.506072998046875,-0.431479543447495,-0.897447288036346,0.0917262807488441,0.00947126746177673,-0.957718014717102,-0.287552535533905,-0.00441167457029223,-0.99097865819931,0.133947253227234,2.6509165763855e-005,0.990786910057068,0.135430261492729,-5.71608616155572e-005,0.956864833831787,-0.290533572435379,0.429384708404541,0.89761221408844,0.0996051877737045,0.683210909366608,0.510895609855652,0.521736145019531,0.283720999956131,0.927107453346252,0.244896590709686,0.261109411716461,0.934261858463287,0.242851227521896,-0.580847799777985,-0.777152180671692,0.242178589105606,-0.0129773840308189,-0.992103219032288,0.124751627445221,-0.0312715768814087,0.985337495803833,0.167726323008537
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: -0.705825388431549,0.250974774360657,0.662436604499817,-0.82493668794632,-0.13080145418644,0.549882233142853,0.812259316444397,0.125355392694473,0.569667279720306,0.694414794445038,-0.244982242584229,0.676588356494904,-0.635668575763702,-0.181077107787132,-0.750424385070801,0.6469367146492,0.186106294393539,-0.739484488964081,0.679008305072784,-0.0879353657364845,-0.728845059871674,-0.66692191362381,0.085525780916214,-0.740203022956848,0.781626641750336,0.189969003200531,-0.594114124774933,0.769082129001617,0.150398954749107,0.621202707290649,0.70044881105423,-0.295097380876541,-0.649837791919708,0.691623628139496,-0.175490275025368,0.700614035129547,0.486673057079315,-0.838409066200256,0.245396912097931,0.467733651399612,-0.857300758361816,-0.215083420276642,0.804452776908875,-0.593494713306427,0.0248947273939848,0.953062832355499,-0.289451628923416,0.088819645345211,0.948367655277252,-0.312509447336197,-0.0541905239224434,0.467733651399612,-0.857300758361816,-0.215083420276642,0.651811897754669,-0.380435824394226,-0.656056344509125,0.692127227783203,-0.201270401477814,0.693145096302032,0.678928971290588,0.0953764989972115,0.727982759475708,0.691047966480255,0.0978720486164093,-0.71615207195282,0.703532516956329,-0.206432998180389,-0.680020153522491,0.638681054115295,-0.379782468080521,0.66921728849411,0.46491926908493,-0.855299770832062,0.228719085454941,0.946577727794647,-0.311607658863068,0.0830139145255089,0.953062832355499,-0.289451628923416,0.088819645345211,0.804452776908875,-0.593494713306427,0.0248947273939848,0.678819239139557,0.0828657075762749,0.729614794254303,0.690340042114258,0.142645061016083,-0.709283471107483
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *56 {
- a: 0.00980395171791315,0.964938998222351,0.00980395171791315,0.00955379288643599,0.246737912297249,0.00955379288643599,0.246737912297249,0.964938998222351,0.468838959932327,0.964938998222351,0.269300520420074,0.964938998222351,0.269300520420074,0.00955379288643599,0.468838959932327,0.00955379288643599,0.725515186786652,0.246487751603127,0.772787630558014,0.00955379288643599,0.863069176673889,0.046949315816164,0.823231756687164,0.246487751603127,0.89991682767868,0.503385901451111,0.852644383907318,0.266451954841614,0.905974984169006,0.266451954841614,0.94918966293335,0.48297655582428,0.544891238212585,0.964938998222351,0.491560578346252,0.964938998222351,0.491560578346252,0.00955379288643599,0.58927720785141,0.00955379288643599,0.58927720785141,0.964938998222351,0.702718913555145,0.00955379288643599,0.702718913555145,0.964938998222351,0.61243736743927,0.964938998222351,0.61243736743927,0.00955379288643599,0.661710143089294,0.00955379288643599,0.950361013412476,0.266451954841614,0.990198373794556,0.465990364551544
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,15,14,26,27
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733785248, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 503.74609375,180.600463867188,0.6439208984375,504.6923828125,180.600463867188,-107.310180664063,400.681640625,180.600463867188,0.623291015625,400.681640625,180.600463867188,-103.865600585938,503.74609375,-111.398559570313,0.6439208984375,504.6923828125,-111.398559570313,-107.310180664063,400.681640625,-187.547973632813,0.623291015625,400.681640625,-187.547973632813,-103.865600585938,447.49609375,-187.547973632813,0.632568359375,447.9267578125,-187.547973632813,-105.43017578125
- }
- PolygonVertexIndex: *30 {
- a: 0,4,5,-2,2,3,7,-7,3,2,0,-2,6,7,9,-9,8,4,0,2,-7,7,3,1,5,-10,8,9,5,-5
- }
- Edges: *15 {
- a: 1,3,0,4,11,9,15,24,2,7,6,5,16,13,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: 0.641028344631195,0.224903091788292,0.733826518058777,0.629645049571991,0.222241997718811,-0.744416177272797,-0.716559052467346,0.204838559031487,0.666771531105042,-0.723595201969147,0.204849943518639,-0.659125626087189,0.566360712051392,-0.0865645408630371,0.819598793983459,0.547654509544373,-0.0865772366523743,-0.832213222980499,-0.728854477405548,-0.0938013568520546,0.678212642669678,-0.736012697219849,-0.0938067436218262,-0.670436799526215,0.155747473239899,-0.210823446512222,0.965036869049072,0.125553876161575,-0.209259673953056,-0.96976625919342
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0.328127920627594,0.944628953933716,-0.00287625193595886,0.149238586425781,0.988800406455994,0.00130818039178848,0.158203601837158,0.98740553855896,0.00138676166534424,-0.335931718349457,0.941881775856018,-0.0029446636326611,0.274854362010956,0.961485862731934,0,0.272394925355911,0.962185621261597,0,-0.126429885625839,0.991975545883179,-3.72529074255112e-009,-0.127644211053848,0.99182003736496,7.45058059692383e-009,-0.0284029766917229,-0.962971925735474,-0.268101394176483,-0.0682767480611801,0.930720686912537,-0.359301179647446,-0.0288614928722382,0.962491512298584,-0.269772589206696,-0.0097232311964035,-0.955879688262939,-0.293597608804703,0.0325224027037621,0.98470938205719,0.171142742037773,0.0131406113505363,-0.992145895957947,0.12439401447773,0.582320988178253,-0.775852143764496,0.24280820786953,-0.261696189641953,0.933243632316589,0.246113047003746,-0.285044938325882,0.925806701183319,0.248256608843803,-0.684084534645081,0.505240678787231,0.526080012321472,-0.431244313716888,0.896454930305481,0.101964607834816,5.84721565246582e-005,0.955926299095154,-0.293606817722321,-2.71424687525723e-005,0.990574717521667,0.136973962187767,0.00443077879026532,-0.990999162197113,0.13379530608654,-0.0095123490318656,-0.957812547683716,-0.287236213684082,0.430440247058868,-0.8974848985672,0.0961367413401604,0.695487260818481,-0.505852818489075,0.510304391384125,0.291738003492355,-0.926493942737579,0.23769299685955,-0.261696189641953,0.933243632316589,0.246113047003746,0.582320988178253,-0.775852143764496,0.24280820786953,0.695487260818481,-0.505852818489075,0.510304391384125,-0.667292237281799,0.535480082035065,0.517669975757599
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.693840682506561,0.238945215940475,-0.679330766201019,0.810532867908478,-0.121574863791466,-0.572936356067657,-0.821611881256104,0.132418602705002,-0.554454028606415,-0.700497508049011,-0.251927077770233,-0.667709529399872,0.641091406345367,-0.183265060186386,0.745262205600739,-0.634201169013977,0.179542481899261,0.752032816410065,-0.665056884288788,-0.0847632363438606,0.741966664791107,0.672664880752563,0.0865699201822281,0.734865725040436,0.689639925956726,0.175275757908821,-0.702620208263397,0.69417679309845,0.302985519170761,0.652930617332459,0.76697438955307,-0.151752546429634,-0.62347537279129,0.77682226896286,-0.192100405693054,0.599703967571259,0.683895885944366,-0.146795257925987,0.714659154415131,0.676840245723724,-0.0827456265687943,-0.731464684009552,0.803205192089081,0.595200717449188,-0.0244450401514769,0.952500820159912,0.290877938270569,-0.0901786386966705,0.945775926113129,0.313744246959686,-0.0840978845953941,0.459634512662888,0.858625888824463,-0.226931020617485,0.634910225868225,0.38182070851326,-0.671641230583191,0.697526454925537,0.21034762263298,0.68498957157135,0.684668660163879,-0.099815659224987,0.721987307071686,0.676953256130219,-0.0955044701695442,-0.729803502559662,0.690159022808075,0.201572924852371,-0.695017218589783,0.646736681461334,0.380958735942841,0.6607586145401,0.465158194303513,0.858264267444611,0.216819196939468,0.948222100734711,0.312760949134827,0.0552759058773518,0.952500820159912,0.290877938270569,-0.0901786386966705,0.803205192089081,0.595200717449188,-0.0244450401514769,0.465158194303513,0.858264267444611,0.216819196939468,0.483690649271011,0.840099811553955,-0.245511040091515
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *56 {
- a: 0.00980386137962341,0.96522855758667,0.00980386137962341,0.00955666042864323,0.246571391820908,0.00955666042864323,0.246571391820908,0.96522855758667,0.468660801649094,0.96522855758667,0.269300013780594,0.96522855758667,0.269300013780594,0.00955666042864323,0.468660801649094,0.00955666042864323,0.765363872051239,0.246324181556702,0.725520610809326,0.0469634048640728,0.815823197364807,0.00955666042864323,0.863109827041626,0.246324181556702,0.852609097957611,0.465649098157883,0.892452418804169,0.266288310289383,0.936851739883423,0.266288310289383,0.893627405166626,0.482640385627747,0.532580852508545,0.00955666042864323,0.581865131855011,0.00955666042864323,0.581865131855011,0.96522855758667,0.491562515497208,0.96522855758667,0.491562515497208,0.00955666042864323,0.604644000530243,0.96522855758667,0.604644000530243,0.00955666042864323,0.702389895915985,0.00955666042864323,0.702389895915985,0.96522855758667,0.649043321609497,0.96522855758667,0.990198314189911,0.266288310289383,0.942911684513092,0.503055810928345
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,15,14,26,27
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2267733778592, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 466.0224609375,-111.398559570313,-300.698120117188,504.6923828125,-111.398559570313,-107.889404296875,369.943359375,-187.547973632813,-261.62939453125,400.681640625,-187.547973632813,-104.426391601563,466.0224609375,180.600463867188,-300.698120117188,504.6923828125,180.600463867188,-107.889404296875,369.943359375,180.600463867188,-261.62939453125,400.681640625,180.600463867188,-104.426391601563,447.9267578125,-187.547973632813,-105.999389648438,413.5859375,-187.547973632813,-279.375732421875
- }
- PolygonVertexIndex: *30 {
- a: 5,1,0,-5,7,6,2,-4,5,4,6,-8,0,1,8,-10,8,1,5,7,-4,2,6,4,0,-10,9,8,3,-3
- }
- Edges: *15 {
- a: 1,0,6,4,13,25,2,9,3,11,7,5,20,15,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *30 {
- a: 0.575196146965027,-0.116881430149078,-0.80962210893631,0.847202241420746,-0.116106629371643,0.518428027629852,-0.948963761329651,-0.116723015904427,-0.292991012334824,-0.761588454246521,-0.115867681801319,0.637618780136108,0.669047176837921,0.251459270715714,-0.699388384819031,0.88831239938736,0.252327471971512,0.383708089590073,-0.921522796154022,0.264281958341599,-0.28451868891716,-0.739873826503754,0.262454479932785,0.619438827037811,0.306552708148956,-0.33601176738739,0.890573680400848,-0.0778436288237572,-0.338869243860245,-0.93760758638382
- }
- NormalsW: *10 {
- a: 1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: -0.296440124511719,0.953199148178101,0.0594543516635895,0.154273942112923,0.98754358291626,-0.0309413522481918,0.156437158584595,0.987189471721649,-0.0313752070069313,-0.296189337968826,0.95328027009964,0.0594040527939796,0.291108548641205,0.954995214939117,-0.0569211691617966,0.291445523500443,0.954888522624969,-0.0569870322942734,-0.129754036664963,0.99122154712677,0.025371115654707,-0.12959249317646,0.991243600845337,0.025339525192976,-0.029116440564394,0.864793121814728,-0.501283586025238,-0.0309330709278584,-0.930788159370422,-0.364248216152191,-0.035688728094101,-0.787221074104309,-0.615637421607971,-0.0134396255016327,0.914812207221985,-0.403655976057053,0.686895489692688,-0.468451052904129,0.555633127689362,-0.448487997055054,0.366799831390381,0.815056085586548,-0.242637515068054,0.877126634120941,0.414458751678467,0.594839632511139,-0.770508527755737,0.229090675711632,-0.249108836054802,0.874690115451813,0.415767014026642,-0.451516270637512,0.356880307197571,0.817783296108246,-0.353573650121689,0.908972144126892,0.220806494355202,-0.0134395360946655,0.914812207221985,-0.403655886650085,0.00619080569595099,0.98254132270813,0.185941249132156,0.0687408894300461,-0.983207285404205,0.169050619006157,-0.149605393409729,-0.917745411396027,-0.367915332317352,0.409581124782562,-0.90998113155365,0.064636342227459,0.739746034145355,-0.34815725684166,0.575814604759216,0.398114323616028,-0.872789263725281,0.282389760017395,0.594839632511139,-0.770508527755737,0.229090675711632,-0.242637515068054,0.877126634120941,0.414458751678467,0.00619080569595099,0.98254132270813,0.185941249132156,0.0188839063048363,-0.948355495929718,0.31664714217186
- }
- BinormalsW: *30 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *90 {
- a: 0.350748211145401,0.166560500860214,-0.921538531780243,0.50837779045105,-0.106193512678146,-0.854561388492584,-0.802917659282684,0.108608096837997,-0.586112380027771,-0.681650757789612,-0.167407259345055,-0.712268948554993,0.606500327587128,-0.138209462165833,0.782978594303131,-0.25662299990654,0.135436549782753,0.956975221633911,-0.287457704544067,-0.0620930455625057,0.955778479576111,0.634971499443054,0.0633323043584824,0.769935190677643,0.45831573009491,-0.434124141931534,-0.775553226470947,0.742575943470001,-0.265333443880081,0.614962697029114,0.386680692434311,0.557169795036316,-0.73487401008606,0.672611355781555,0.30697950720787,0.673318326473236,0.444211572408676,0.875723898410797,0.189165875315666,0.284792691469193,0.923026084899902,-0.258681207895279,0.920408844947815,0.343140006065369,-0.187356486916542,0.800066292285919,0.539892852306366,-0.261551976203918,0.918678522109985,0.349304258823395,-0.184435099363327,0.279966801404953,0.926906526088715,-0.249925762414932,0.293064475059509,0.331814229488373,-0.89666748046875,0.672611355781555,0.306979417800903,0.673318386077881,0.648031413555145,-0.145558089017868,0.747574865818024,0.307802706956863,-0.140282467007637,-0.941051721572876,0.358348965644836,0.2964768409729,-0.885261297225952,0.620176732540131,0.329701006412506,0.71181321144104,0.349177896976471,0.930121123790741,0.113796070218086,0.914027035236359,0.351292759180069,-0.202849790453911,0.800066292285919,0.539892852306366,-0.261551976203918,0.920408844947815,0.343140006065369,-0.187356486916542,0.648031413555145,-0.145558089017868,0.747574865818024,0.314819037914276,-0.294953852891922,-0.902159154415131
- }
- TangentsW: *30 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *56 {
- a: 0.00980398803949356,0.964513778686523,0.00980398803949356,0.00954958330839872,0.246940791606903,0.00954958330839872,0.246940791606903,0.964513778686523,0.469058007001877,0.964513778686523,0.269300252199173,0.964513778686523,0.269300252199173,0.00954958330839872,0.469058007001877,0.00954958330839872,0.8633131980896,0.00954958330839872,0.815752446651459,0.246686384081841,0.725516736507416,0.209307342767715,0.765639662742615,0.00954958330839872,0.942637741565704,0.266650497913361,0.990198493003845,0.503787279129028,0.936891317367554,0.503787279129028,0.893389940261841,0.287050783634186,0.535928606987,0.00954958330839872,0.589235723018646,0.00954958330839872,0.589235723018646,0.964513778686523,0.491562187671661,0.964513778686523,0.491562187671661,0.00954958330839872,0.612440228462219,0.964514136314392,0.612440228462219,0.00954996142536402,0.702675938606262,0.00954996142536402,0.702675938606262,0.964514136314392,0.653428137302399,0.964514136314392,0.89252495765686,0.503787279129028,0.852402031421661,0.304029524326324
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,15,14,26,27
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Model: 2268726009008, "Model::SM_Wall_Thick_Curved_Crenelation_01", "Null" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2268726018288, "Model::LOD_Group_SM_Wall_Thick_Curved_Crenelation_01", "LodGroup" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2268726011328, "Model::SM_Wall_Thick_Curved_Crenelation_01_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726020608, "Model::SM_Wall_Thick_Curved_Crenelation_01_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726027568, "Model::SM_Wall_Thick_Curved_Crenelation_01_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726022928, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_010", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726029888, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726002048, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268725999728, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_03", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726041488, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_04", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726048448, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_05", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726057728, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_06", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726062368, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_07", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726050768, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_08", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268726053088, "Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_09", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,-6.82121026329696e-013,9.09494701772928e-013
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Material: 2267913056960, "Material::MI_Wall_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2267913054560, "Material::MI_Trim_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2267913048320, "Material::MI_Battlement_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2267913030560, "Material::M_Collision_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Video: 2268161698752, "Video::file4", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- }
- Video: 2268161676752, "Video::file89", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_01_BC.png"
- }
- Video: 2268161678752, "Video::file83", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Battlement_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Battlement_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Battlement_01_BC.png"
- }
- Video: 2268161718752, "Video::file24", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- }
- Video: 2268161719152, "Video::file90", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_01_N.png"
- }
- Video: 2268161712752, "Video::file84", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Battlement_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Battlement_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Battlement_01_N.png"
- }
- Texture: 2267913052160, "Texture::file4", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file4"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file4"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913044480, "Texture::file89", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file89"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file89"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913046400, "Texture::file83", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file83"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file83"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Battlement_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Battlement_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913029600, "Texture::file24", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file24"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file24"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913048800, "Texture::file90", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file90"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file90"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Trim_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Trim_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267913049280, "Texture::file84", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file84"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file84"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Battlement_01_N.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Battlement_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2268125379120, "AnimStack::Take 001", "" {
- Properties70: {
- P: "LocalStart", "KTime", "Time", "",1539538600
- P: "LocalStop", "KTime", "Time", "",46186158000
- P: "ReferenceStart", "KTime", "Time", "",1539538600
- P: "ReferenceStop", "KTime", "Time", "",46186158000
- }
- }
- AnimationLayer: 2270587936832, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Wall_Thick_Curved_Crenelation_01, Model::RootNode
- C: "OO",2268726009008,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2270587936832,2268125379120
-
- ;NodeAttribute::, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2267387865856,2268726009008
-
- ;Model::LOD_Group_SM_Wall_Thick_Curved_Crenelation_01, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726018288,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_010, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726022928,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_01, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726029888,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_02, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726002048,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_03, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268725999728,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_04, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726041488,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_05, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726048448,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_06, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726057728,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_07, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726062368,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_08, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726050768,2268726009008
-
- ;Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_09, Model::SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726053088,2268726009008
-
- ;NodeAttribute::, Model::LOD_Group_SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268362751104,2268726018288
-
- ;Model::SM_Wall_Thick_Curved_Crenelation_01_LOD0, Model::LOD_Group_SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726011328,2268726018288
-
- ;Model::SM_Wall_Thick_Curved_Crenelation_01_LOD1, Model::LOD_Group_SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726020608,2268726018288
-
- ;Model::SM_Wall_Thick_Curved_Crenelation_01_LOD2, Model::LOD_Group_SM_Wall_Thick_Curved_Crenelation_01
- C: "OO",2268726027568,2268726018288
-
- ;Texture::file4, Material::MI_Wall_01
- C: "OP",2267913052160,2267913056960, "DiffuseColor"
-
- ;Texture::file24, Material::MI_Wall_01
- C: "OP",2267913029600,2267913056960, "NormalMap"
-
- ;Texture::file89, Material::MI_Trim_01
- C: "OP",2267913044480,2267913054560, "DiffuseColor"
-
- ;Texture::file90, Material::MI_Trim_01
- C: "OP",2267913048800,2267913054560, "NormalMap"
-
- ;Texture::file83, Material::MI_Battlement_01
- C: "OP",2267913046400,2267913048320, "DiffuseColor"
-
- ;Texture::file84, Material::MI_Battlement_01
- C: "OP",2267913049280,2267913048320, "NormalMap"
-
- ;Video::file4, Texture::file4
- C: "OO",2268161698752,2267913052160
-
- ;Video::file89, Texture::file89
- C: "OO",2268161676752,2267913044480
-
- ;Video::file83, Texture::file83
- C: "OO",2268161678752,2267913046400
-
- ;Video::file24, Texture::file24
- C: "OO",2268161718752,2267913029600
-
- ;Video::file90, Texture::file90
- C: "OO",2268161719152,2267913048800
-
- ;Video::file84, Texture::file84
- C: "OO",2268161712752,2267913049280
-
- ;Geometry::, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD0
- C: "OO",2267733796000,2268726011328
-
- ;Material::MI_Wall_01, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD0
- C: "OO",2267913056960,2268726011328
-
- ;Material::MI_Trim_01, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD0
- C: "OO",2267913054560,2268726011328
-
- ;Material::MI_Battlement_01, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD0
- C: "OO",2267913048320,2268726011328
-
- ;Geometry::, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD1
- C: "OO",2267733801120,2268726020608
-
- ;Material::MI_Trim_01, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD1
- C: "OO",2267913054560,2268726020608
-
- ;Material::MI_Battlement_01, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD1
- C: "OO",2267913048320,2268726020608
-
- ;Material::MI_Wall_01, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD1
- C: "OO",2267913056960,2268726020608
-
- ;Geometry::, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD2
- C: "OO",2267733802144,2268726027568
-
- ;Material::MI_Wall_01, Model::SM_Wall_Thick_Curved_Crenelation_01_LOD2
- C: "OO",2267913056960,2268726027568
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_010
- C: "OO",2267733804192,2268726022928
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_010
- C: "OO",2267913030560,2268726022928
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_01
- C: "OO",2267733793952,2268726029888
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_01
- C: "OO",2267913030560,2268726029888
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_02
- C: "OO",2267733788320,2268726002048
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_02
- C: "OO",2267913030560,2268726002048
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_03
- C: "OO",2267733805216,2268725999728
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_03
- C: "OO",2267913030560,2268725999728
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_04
- C: "OO",2267733787808,2268726041488
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_04
- C: "OO",2267913030560,2268726041488
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_05
- C: "OO",2267733810336,2268726048448
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_05
- C: "OO",2267913030560,2268726048448
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_06
- C: "OO",2267733784736,2268726057728
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_06
- C: "OO",2267913030560,2268726057728
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_07
- C: "OO",2267733801632,2268726062368
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_07
- C: "OO",2267913030560,2268726062368
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_08
- C: "OO",2267733785248,2268726050768
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_08
- C: "OO",2267913030560,2268726050768
-
- ;Geometry::, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_09
- C: "OO",2267733778592,2268726053088
-
- ;Material::M_Collision_01, Model::UCX_SM_Wall_Thick_Curved_Crenelation_01_LOD0_09
- C: "OO",2267913030560,2268726053088
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|